diff --git a/README.md b/README.md index 9e4b3e4..841b6a6 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,63 @@ -# maps-api-for-javascript-examples -Self-contained examples for Maps API for JavaScript +# Maps API for JavaScript + +This repository holds a series of JavaScript based examples using the **HERE Maps API for JavaScript**. More information about the API can be found on [developer.here.com](https://developer.here.com/). + +This set of self-contained, use-case based examples is designed to be cloned by developers for their own use. + + +**Note:** In order to get the sample code to work, you **must** replace all instances of `{YOUR_APP_ID}` and `{YOUR_APP_CODE}` within the code and use your own HERE credentials. + +You can obtain a set of credentials from the [Plans Page](https://developer.here.com/plans/api/consumer-mapping) on developer.here.com. + +## Maps API for JavaScript + +All of the following examples use **version 3.0** of the API + +* [Adding Meta Information layer to the Map](tree/master/meta-info-layer) - Retrieve meta information of city labels, transit stations, etc. +* [Adding Venues layer to the Map](tree/master/venues-layer) - Display venue objects (e.g. shops, airports etc) on the map +* [Adding a Ground Overlay to the Map](tree/master/ground-overlay) - Display an image over a specified geographical area. +* [Adding an Overlay to the Map](tree/master/custom-tile-overlay) - Display custom map tiles as an overlay +* [Calculating a Location from a Mouse Click](tree/master/position-on-mouse-click) - Obtain the latitude and longitude of a location within the map +* [Changing from the Metric System](tree/master/map-scale-bar-changing-from-the-metric-system) - Display a map including a scale bar in miles or yards +* [Circle on the Map](tree/master/circle-on-the-map) - Display a map highlighting a circular region +* [DOM Marker](tree/master/map-with-dom-marker) - Display a marker that is capable of receiving DOM events +* [Detailed Place Information](tree/master/get-place-details) - Request detailed information about a place marked on the map selected using a mouse click +* [Display Interactive KML Objects](tree/master/map-with-interactive-kml-objects) - Parse a KML file and display and interact with the data on a map +* [Display KML Data](tree/master/display-kml-on-map) - Parse a KML file and display the data on a map +* [Draggable Marker](tree/master/draggable-marker) - Display a moveable marker on a map +* [Explore Nearby Places](tree/master/identify-places-at-location) - Request a list of places close to a location and display them on a map +* [Explore Popular Places by Category](tree/master/explore-places) - Request a list of places within a category around a location and display them on a map. +* [Finding the Nearest Marker](tree/master/finding-the-nearest-marker) - Find a marker nearest to the click location +* [Map Objects Event Delegation](tree/master/map-objects-event-delegation) - Use event delegation on map objects +* [Map Objects Events](tree/master/map-object-events-displayed) - Handle events on various map objects +* [Map UI Components](tree/master/moved-map-components) - Display a map with the standard UI components in an altered location +* [Map at a specified location](tree/master/map-at-specified-location) - Display a map at a specified location and zoom level +* [Map using View Bounds](tree/master/map-using-view-bounds) - Display a map of a given area +* [Map with Driving Route from A to B](tree/master/map-with-route-from-a-to-b) - Request a driving route from A to B and display it on the map. +* [Map with Pedestrian Route from A to B](tree/master/map-with-pedestrian-route-from-a-to-b) - Request a walking route from A to B and display it on the map. +* [Map with Route from A to B using Public Transport](tree/master/map-with-route-from-a-to-b-using-public-transport) - Request a route from A to B using public transport and display it on the map. +* [Map with Truck Route from A to B](tree/master/map-with-truck-route-from-a-to-b) - Request a truck route from A to B and display it on the map. +* [Marker Clustering](tree/master/marker-clustering) - Cluster multiple markers together to better visualize the data +* [Marker Clustering with Custom Theme](tree/master/custom-cluster-theme) - Cluster multiple markers and customize the theme +* [Marker on the Map](tree/master/markers-on-the-map) - Display a map highlighting points of interest +* [Multi-language support](tree/master/map-multi-language-support) - Display a map with labels in a foreign language +* [One-Box Search](tree/master/search-for-places) - Request a list of nearby places based on a query string and display them on a map +* [Opening an Infobubble on a Mouse Click](tree/master/open-infobubble) - Open an infobubble when a marker is clicked +* [Ordering Overlapping Markers](tree/master/ordering-overlapping-markers) - Arrange the order in which a series of map objects are displayed +* [Panning the Map](tree/master/panning-the-map) - Programmatically pan the map so that it is continually in motion +* [Polygon on the Map](tree/master/polygon-on-the-map) - Display a map highlighting a region or area +* [Polyline on the Map](tree/master/polyline-on-the-map) - Display a map with a line showing a known route +* [Rectangle on the map](tree/master/rectangle-on-the-map) - Display a map highlighting a retangular region or area +* [Restrict Map Movement](tree/master/restrict-map) - Restrict a moveable map to a given rectangular area +* [SVG Graphic Markers](tree/master/map-with-svg-graphic-markers) - Display a map with custom SVG markers +* [Search for a Landmark](tree/master/search-for-landmark) - Request the location of a landmark and display it on the map. +* [Search for a Location based on an Address](tree/master/geocode-a-location-from-address) - Request a location using a free-form text input and display it on the map. +* [Search for a Location given a Structured Address](tree/master/geocode-a-location-from-structured-address) - Request a location from a structured address and display it on the map. +* [Search for the Address of a Known Location](tree/master/reverse-geocode-an-address-from-location) - Request address details for a given location and display it on the map. +* [Store map tiles for offline usage](tree/master/offline-map) - Store map tiles for offline usage +* [Synchronising Two Maps](tree/master/synchronising-two-maps) - Synchronise a static map with an interactive map +* [Take a Snapshot of the Map](tree/master/capture-map-area) - Capture an area on the map +* [Terrain Map](tree/master/terrain-map) - Display a topographical map +* [Traffic Information](tree/master/showing-traffic-information) - Display traffic information on the map +* [Zoom into Bounds](tree/master/custom-zooming-into-bounds) - Zoom into bounds limiting maximum level +* [Zooming to a Set of Markers](tree/master/zoom-to-set-of-markers) - Alter the viewport to ensure a group of objects are visible diff --git a/capture-map-area/index.html b/capture-map-area/index.html new file mode 100644 index 0000000..03ee9b4 --- /dev/null +++ b/capture-map-area/index.html @@ -0,0 +1,21 @@ + + + + + + + Take a Snapshot of the Map + + + + + + + +

Take a Snapshot of the Map

+

This example demonstrates how to take a snapshot of the map. It specifies area to be captured with top/left and bottom/right view port coordinates

+
+
+ + + diff --git a/capture-map-area/js/app.js b/capture-map-area/js/app.js new file mode 100644 index 0000000..c21cfa5 --- /dev/null +++ b/capture-map-area/js/app.js @@ -0,0 +1,79 @@ +/** + * Takes a snapshot of the map. + * + * @param {Element} resultContainer Reference to DOM Element to show the captured map area + * @param {H.Map} map Reference to initialized map object + * @param {H.ui.UI} ui Reference to UI component + */ +function capture(resultContainer, map, ui) { + // Capturing area of the map is asynchronous, callback function receives HTML5 canvas + // element with desired map area rendered on it. + // We also pass an H.ui.UI reference in order to see the ScaleBar in the output. + // If dimensions are omitted, whole veiw port will be captured + map.capture(function(canvas) { + if (canvas) { + resultContainer.innerHTML = ''; + resultContainer.appendChild(canvas); + } else { + // For example when map is in Panorama mode + resultContainer.innerHTML = 'Capturing is not supported'; + } + }, [ui], 50, 50, 500, 200); +} + + + +/** + * Boilerplate map initialization code starts below: + */ +// Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useHTTPS: true, + useCIT: true +}); +var defaultLayers = platform.createDefaultLayers(); + +var mapContainer = document.getElementById('map'); + +// Step 2: initialize a map +var map = new H.Map(mapContainer, defaultLayers.normal.map, { + // initial center and zoom level of the map + zoom: 16, + // Champs-Elysees + center: {lat: 48.869145, lng: 2.314298} +}); + +// Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Step 4: Create the default UI +var ui = H.ui.UI.createDefault(map, defaultLayers, 'en-US'); + + +// Step 6: Create "Capture" button and place for showing the captured area +var resultContainer = document.getElementById('panel'); + +// Create container for the "Capture" button +var containerNode = document.createElement('div'); +containerNode.setAttribute('style', + 'position:absolute;top:0;left:0;background-color:#fff; padding:10px;'); +containerNode.className = 'btn-group'; + +// Create the "Capture" button +var captureBtn = document.createElement('input'); +captureBtn.value = 'Capture'; +captureBtn.type = 'button'; +captureBtn.className = 'btn btn-sm btn-default'; + +// Add both button and container to the DOM +containerNode.appendChild(captureBtn); +mapContainer.appendChild(containerNode); + +// Step 7: Handle capture button click event +captureBtn.onclick = function() { + capture(resultContainer, map, ui); +}; \ No newline at end of file diff --git a/capture-map-area/thumb.jpg b/capture-map-area/thumb.jpg new file mode 100644 index 0000000..c2e7ae1 Binary files /dev/null and b/capture-map-area/thumb.jpg differ diff --git a/circle-on-the-map/circle-on-map.png b/circle-on-the-map/circle-on-map.png new file mode 100644 index 0000000..1115a8e Binary files /dev/null and b/circle-on-the-map/circle-on-map.png differ diff --git a/circle-on-the-map/index.html b/circle-on-the-map/index.html new file mode 100644 index 0000000..a3d7abf --- /dev/null +++ b/circle-on-the-map/index.html @@ -0,0 +1,20 @@ + + + + + + + Circle on the Map + + + + + + + +

Circle on the Map

+

This example shows a circle with a radius of 1000 meters centered over a location in New Delhi (28.6071°N, 77.2127°E) and displayed on a moveable map.

+
+ + + diff --git a/circle-on-the-map/js/app.js b/circle-on-the-map/js/app.js new file mode 100644 index 0000000..7a8a78d --- /dev/null +++ b/circle-on-the-map/js/app.js @@ -0,0 +1,56 @@ + +/** + * Adds a circle over New Delhi with a radius of 1000 metres onto the map + * + * @param {H.Map} map A HERE Map instance within the application + */ +function addCircleToMap(map){ + map.addObject(new H.map.Circle( + // The central point of the circle + {lat:28.6071, lng:77.2127}, + // The radius of the circle in meters + 1000, + { + style: { + strokeColor: 'rgba(55, 85, 170, 0.6)', // Color of the perimeter + lineWidth: 2, + fillColor: 'rgba(0, 128, 0, 0.7)' // Color of the circle + } + } + )); +} + + + + + +/** + * Boilerplate map initialization code starts below: + */ + +//Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +//Step 2: initialize a map - this map is centered over New Delhi +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map,{ + center: {lat:28.6071, lng:77.2127}, + zoom: 13 +}); + +//Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Create the default UI components +var ui = H.ui.UI.createDefault(map, defaultLayers); + +// Now use the map as required... +addCircleToMap(map); \ No newline at end of file diff --git a/custom-cluster-theme/custom-cluster-theme.jpg b/custom-cluster-theme/custom-cluster-theme.jpg new file mode 100644 index 0000000..49914d8 Binary files /dev/null and b/custom-cluster-theme/custom-cluster-theme.jpg differ diff --git a/custom-cluster-theme/data/photos.json b/custom-cluster-theme/data/photos.json new file mode 100644 index 0000000..65b6d06 --- /dev/null +++ b/custom-cluster-theme/data/photos.json @@ -0,0 +1 @@ +[{"url":"//commons.wikimedia.org/wiki/File:11-09-fotofluege-cux-allg-25a.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/11-09-fotofluege-cux-allg-25a.jpg/120px-11-09-fotofluege-cux-allg-25a.jpg","width":120,"height":120,"title":"File:11-09-fotofluege-cux-allg-25a.jpg","author":"Ralf Roletschek","license":null,"latitude":54.02211298361111,"longitude":8.735668746666667,"pageid":"16338452","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/11-09-fotofluege-cux-allg-25a.jpg/300px-11-09-fotofluege-cux-allg-25a.jpg"},{"url":"//commons.wikimedia.org/wiki/File:12-07-12-wikimania-wdc-by-RalfR-010.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/b/bd/12-07-12-wikimania-wdc-by-RalfR-010.jpg/120px-12-07-12-wikimania-wdc-by-RalfR-010.jpg","width":120,"height":78,"title":"File:12-07-12-wikimania-wdc-by-RalfR-010.jpg","author":"Ralf Roletschek","license":null,"latitude":38.8973488,"longitude":-77.0271517,"pageid":"20260531","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/b/bd/12-07-12-wikimania-wdc-by-RalfR-010.jpg/300px-12-07-12-wikimania-wdc-by-RalfR-010.jpg"},{"url":"//commons.wikimedia.org/wiki/File:2012-07-22_15-37-00-fort-giromagny.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/4/4c/2012-07-22_15-37-00-fort-giromagny.jpg/120px-2012-07-22_15-37-00-fort-giromagny.jpg","width":120,"height":118,"title":"File:2012-07-22 15-37-00-fort-giromagny.jpg","license":null,"latitude":47.73076364,"longitude":6.8130120601,"pageid":"20384058","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/4/4c/2012-07-22_15-37-00-fort-giromagny.jpg/300px-2012-07-22_15-37-00-fort-giromagny.jpg","author":"ComputerHotline"},{"url":"//commons.wikimedia.org/wiki/File:2012-09-14_15-01-04-PA00101784-egl-st-maimboeuf.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/3/38/2012-09-14_15-01-04-PA00101784-egl-st-maimboeuf.jpg/120px-2012-09-14_15-01-04-PA00101784-egl-st-maimboeuf.jpg","width":120,"height":88,"title":"File:2012-09-14 15-01-04-PA00101784-egl-st-maimboeuf.jpg","license":null,"latitude":47.5097876,"longitude":6.79173678,"pageid":"21399576","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/3/38/2012-09-14_15-01-04-PA00101784-egl-st-maimboeuf.jpg/300px-2012-09-14_15-01-04-PA00101784-egl-st-maimboeuf.jpg","author":"ComputerHotline"},{"url":"//commons.wikimedia.org/wiki/File:30_St_Mary_Axe_-_The_Gherkin_from_Leadenhall_St_-_Nov_2006.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/3/34/30_St_Mary_Axe_-_The_Gherkin_from_Leadenhall_St_-_Nov_2006.jpg/62px-30_St_Mary_Axe_-_The_Gherkin_from_Leadenhall_St_-_Nov_2006.jpg","width":62,"height":120,"title":"File:30 St Mary Axe - The Gherkin from Leadenhall St - Nov 2006.jpg","author":"Diliff","license":null,"latitude":51.51356305555556,"longitude":-0.082,"pageid":"1357915","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/3/34/30_St_Mary_Axe_-_The_Gherkin_from_Leadenhall_St_-_Nov_2006.jpg/300px-30_St_Mary_Axe_-_The_Gherkin_from_Leadenhall_St_-_Nov_2006.jpg"},{"url":"//commons.wikimedia.org/wiki/File:4_cilindros_y_museo_BMW,_M%C3%BAnich,_Alemania_2012-04-28,_DD_02.JPG","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/7/71/4_cilindros_y_museo_BMW%2C_M%C3%BAnich%2C_Alemania_2012-04-28%2C_DD_02.JPG/74px-4_cilindros_y_museo_BMW%2C_M%C3%BAnich%2C_Alemania_2012-04-28%2C_DD_02.JPG","width":74,"height":120,"title":"File:4 cilindros y museo BMW, Múnich, Alemania 2012-04-28, DD 02.JPG","author":"Poco a poco","license":null,"latitude":48.176874999999995,"longitude":11.56015,"pageid":"19268325","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/7/71/4_cilindros_y_museo_BMW%2C_M%C3%BAnich%2C_Alemania_2012-04-28%2C_DD_02.JPG/300px-4_cilindros_y_museo_BMW%2C_M%C3%BAnich%2C_Alemania_2012-04-28%2C_DD_02.JPG"},{"url":"//commons.wikimedia.org/wiki/File:4_Cilindros,_M%C3%BAnich,_Alemania,_2013-02-11,_DD_04.JPG","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/c/cd/4_Cilindros%2C_M%C3%BAnich%2C_Alemania%2C_2013-02-11%2C_DD_04.JPG/120px-4_Cilindros%2C_M%C3%BAnich%2C_Alemania%2C_2013-02-11%2C_DD_04.JPG","width":120,"height":71,"title":"File:4 Cilindros, Múnich, Alemania, 2013-02-11, DD 04.JPG","author":null,"license":null,"latitude":48.176874999999995,"longitude":11.56015,"pageid":"25385549","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/c/cd/4_Cilindros%2C_M%C3%BAnich%2C_Alemania%2C_2013-02-11%2C_DD_04.JPG/300px-4_Cilindros%2C_M%C3%BAnich%2C_Alemania%2C_2013-02-11%2C_DD_04.JPG"},{"url":"//commons.wikimedia.org/wiki/File:A_Swift%27s_Call_To_Prayer.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/e/e3/A_Swift%27s_Call_To_Prayer.jpg/80px-A_Swift%27s_Call_To_Prayer.jpg","width":80,"height":120,"title":"File:A Swift's Call To Prayer.jpg","author":"Dcubillas","license":null,"latitude":5.95917,"longitude":116.067488,"pageid":"6201140","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/e/e3/A_Swift%27s_Call_To_Prayer.jpg/300px-A_Swift%27s_Call_To_Prayer.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Aarhus_R%C3%A5dhus_t%C3%A5rn.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/8/89/Aarhus_R%C3%A5dhus_t%C3%A5rn.jpg/83px-Aarhus_R%C3%A5dhus_t%C3%A5rn.jpg","width":83,"height":120,"title":"File:Aarhus Rådhus tårn.jpg","author":"Villy Fink Isaksen","license":null,"latitude":56.15195,"longitude":10.20303611111111,"pageid":"21380005","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/8/89/Aarhus_R%C3%A5dhus_t%C3%A5rn.jpg/300px-Aarhus_R%C3%A5dhus_t%C3%A5rn.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Ajanta_Cave_16.JPG","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/6/68/Ajanta_Cave_16.JPG/120px-Ajanta_Cave_16.JPG","width":120,"height":78,"title":"File:Ajanta Cave 16.JPG","license":null,"latitude":19.86175,"longitude":75.35348611111111,"pageid":"25862598","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/6/68/Ajanta_Cave_16.JPG/300px-Ajanta_Cave_16.JPG","author":"Dey.sandip"},{"url":"//commons.wikimedia.org/wiki/File:Alamo_pano.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/1/1e/Alamo_pano.jpg/120px-Alamo_pano.jpg","width":120,"height":54,"title":"File:Alamo pano.jpg","author":"Dschwen","license":null,"latitude":29.425556,"longitude":-98.486111,"pageid":"7306209","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/1/1e/Alamo_pano.jpg/300px-Alamo_pano.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Alatskivi_m%C3%B5isa_peahoone.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/f/f7/Alatskivi_m%C3%B5isa_peahoone.jpg/120px-Alatskivi_m%C3%B5isa_peahoone.jpg","width":120,"height":45,"title":"File:Alatskivi mõisa peahoone.jpg","author":"Iifar","license":null,"latitude":58.603299626956,"longitude":27.129300593336,"pageid":"21181149","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/f/f7/Alatskivi_m%C3%B5isa_peahoone.jpg/300px-Alatskivi_m%C3%B5isa_peahoone.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Alberta_iel%C4%81_12_20120728-05.JPG","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/1/1e/Alberta_iel%C4%81_12_20120728-05.JPG/120px-Alberta_iel%C4%81_12_20120728-05.JPG","width":120,"height":80,"title":"File:Alberta iela 12 20120728-05.JPG","license":null,"latitude":56.959915,"longitude":24.1081933333,"pageid":"21092476","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/1/1e/Alberta_iel%C4%81_12_20120728-05.JPG/300px-Alberta_iel%C4%81_12_20120728-05.JPG","author":null},{"url":"//commons.wikimedia.org/wiki/File:Alcazaba_Antequera.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/8/82/Alcazaba_Antequera.jpg/120px-Alcazaba_Antequera.jpg","width":120,"height":80,"title":"File:Alcazaba Antequera.jpg","author":"Jebulon","license":null,"latitude":37.010812,"longitude":-4.562352,"pageid":"21417501","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/8/82/Alcazaba_Antequera.jpg/300px-Alcazaba_Antequera.jpg"},{"url":"//commons.wikimedia.org/wiki/File:AlexanderNevskyCathedral-Sofia-6.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/a/ad/AlexanderNevskyCathedral-Sofia-6.jpg/120px-AlexanderNevskyCathedral-Sofia-6.jpg","width":120,"height":76,"title":"File:AlexanderNevskyCathedral-Sofia-6.jpg","author":"MrPanyGoff","license":null,"latitude":42.695005555555554,"longitude":23.33281388888889,"pageid":"12314234","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/a/ad/AlexanderNevskyCathedral-Sofia-6.jpg/300px-AlexanderNevskyCathedral-Sofia-6.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Aqueduc_Luynes.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Aqueduc_Luynes.jpg/120px-Aqueduc_Luynes.jpg","width":120,"height":72,"title":"File:Aqueduc Luynes.jpg","author":"Myrabella","license":null,"latitude":47.39757,"longitude":0.5683,"pageid":"21699263","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Aqueduc_Luynes.jpg/300px-Aqueduc_Luynes.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Archeological_Museum_of_Macedonia_by_night.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/4/45/Archeological_Museum_of_Macedonia_by_night.jpg/120px-Archeological_Museum_of_Macedonia_by_night.jpg","width":120,"height":81,"title":"File:Archeological Museum of Macedonia by night.jpg","author":"Pudelek","license":null,"latitude":41.99665,"longitude":21.432630555555555,"pageid":"22395952","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/4/45/Archeological_Museum_of_Macedonia_by_night.jpg/300px-Archeological_Museum_of_Macedonia_by_night.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Arussaare_%C3%B5igeusu_kirik.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/2/2d/Arussaare_%C3%B5igeusu_kirik.jpg/120px-Arussaare_%C3%B5igeusu_kirik.jpg","width":120,"height":82,"title":"File:Arussaare õigeusu kirik.jpg","author":"Iifar","license":null,"latitude":58.63816,"longitude":25.68361,"pageid":"21062508","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/2/2d/Arussaare_%C3%B5igeusu_kirik.jpg/300px-Arussaare_%C3%B5igeusu_kirik.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Aschaffenburger_Schloss,_edit.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/2/2f/Aschaffenburger_Schloss%2C_edit.jpg/120px-Aschaffenburger_Schloss%2C_edit.jpg","width":120,"height":76,"title":"File:Aschaffenburger Schloss, edit.jpg","author":"Rainer Lippert","license":null,"latitude":49.971851,"longitude":9.140785,"pageid":"22054920","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/2/2f/Aschaffenburger_Schloss%2C_edit.jpg/300px-Aschaffenburger_Schloss%2C_edit.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Athenry_Priory_East_Window_2009_09_13.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Athenry_Priory_East_Window_2009_09_13.jpg/120px-Athenry_Priory_East_Window_2009_09_13.jpg","width":120,"height":80,"title":"File:Athenry Priory East Window 2009 09 13.jpg","license":null,"latitude":53.29816666666667,"longitude":-8.743277777777777,"pageid":"8036452","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Athenry_Priory_East_Window_2009_09_13.jpg/300px-Athenry_Priory_East_Window_2009_09_13.jpg","author":null},{"url":"//commons.wikimedia.org/wiki/File:Ayuntamiento_de_Oporto,_Portugal,_2012-05-09,_DD_03.JPG","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/5/5e/Ayuntamiento_de_Oporto%2C_Portugal%2C_2012-05-09%2C_DD_03.JPG/120px-Ayuntamiento_de_Oporto%2C_Portugal%2C_2012-05-09%2C_DD_03.JPG","width":120,"height":85,"title":"File:Ayuntamiento de Oporto, Portugal, 2012-05-09, DD 03.JPG","author":"Poco a poco","license":null,"latitude":41.14893333333333,"longitude":-8.610858333333333,"pageid":"20080758","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/5/5e/Ayuntamiento_de_Oporto%2C_Portugal%2C_2012-05-09%2C_DD_03.JPG/300px-Ayuntamiento_de_Oporto%2C_Portugal%2C_2012-05-09%2C_DD_03.JPG"},{"url":"//commons.wikimedia.org/wiki/File:Barn_Pano(9467)-Relic38.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/8/87/Barn_Pano%289467%29-Relic38.jpg/120px-Barn_Pano%289467%29-Relic38.jpg","width":120,"height":37,"title":"File:Barn Pano(9467)-Relic38.jpg","author":"Relic38","license":null,"latitude":44.079605,"longitude":-79.486229,"pageid":"4479573","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/8/87/Barn_Pano%289467%29-Relic38.jpg/300px-Barn_Pano%289467%29-Relic38.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Basilica_of_the_Sacred_Heart.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Basilica_of_the_Sacred_Heart.jpg/120px-Basilica_of_the_Sacred_Heart.jpg","width":120,"height":82,"title":"File:Basilica of the Sacred Heart.jpg","author":null,"license":null,"latitude":50.8658,"longitude":4.3187,"pageid":"4473848","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Basilica_of_the_Sacred_Heart.jpg/300px-Basilica_of_the_Sacred_Heart.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Bas%C3%ADlica_de_nuestra_se%C3%B1ora_de_la_Chiquinquira.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/a/a1/Bas%C3%ADlica_de_nuestra_se%C3%B1ora_de_la_Chiquinquira.jpg/120px-Bas%C3%ADlica_de_nuestra_se%C3%B1ora_de_la_Chiquinquira.jpg","width":120,"height":85,"title":"File:Basílica de nuestra señora de la Chiquinquira.jpg","author":"Wilfredor","license":null,"latitude":10.642590939997,"longitude":-71.615678069927,"pageid":"23303365","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/a/a1/Bas%C3%ADlica_de_nuestra_se%C3%B1ora_de_la_Chiquinquira.jpg/300px-Bas%C3%ADlica_de_nuestra_se%C3%B1ora_de_la_Chiquinquira.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Birnau-Seefelden-4922.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Birnau-Seefelden-4922.jpg/79px-Birnau-Seefelden-4922.jpg","width":79,"height":120,"title":"File:Birnau-Seefelden-4922.jpg","author":"DKrieger","license":null,"latitude":47.74511,"longitude":9.2182,"pageid":"21357456","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Birnau-Seefelden-4922.jpg/300px-Birnau-Seefelden-4922.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Brandenburger_Tor_nachts_2012-07.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/0/01/Brandenburger_Tor_nachts_2012-07.jpg/120px-Brandenburger_Tor_nachts_2012-07.jpg","width":120,"height":60,"title":"File:Brandenburger Tor nachts 2012-07.jpg","license":null,"latitude":52.51638333333333,"longitude":13.379405555555556,"pageid":"20220123","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/0/01/Brandenburger_Tor_nachts_2012-07.jpg/300px-Brandenburger_Tor_nachts_2012-07.jpg","author":"Der Wolf im Wald"},{"url":"//commons.wikimedia.org/wiki/File:Brazilian_National_Congress.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Brazilian_National_Congress.jpg/120px-Brazilian_National_Congress.jpg","width":120,"height":76,"title":"File:Brazilian National Congress.jpg","author":"Zimbres","license":null,"latitude":-15.79888888888889,"longitude":-47.86555555555556,"pageid":"524093","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Brazilian_National_Congress.jpg/300px-Brazilian_National_Congress.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Brussels_Cinquantenaire_R03.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/5/54/Brussels_Cinquantenaire_R03.jpg/120px-Brussels_Cinquantenaire_R03.jpg","width":120,"height":83,"title":"File:Brussels Cinquantenaire R03.jpg","author":null,"license":null,"latitude":50.84081666666667,"longitude":4.391369444444445,"pageid":"20053078","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/5/54/Brussels_Cinquantenaire_R03.jpg/300px-Brussels_Cinquantenaire_R03.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Burg-Anholt-Ostfassade-2012.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/1/17/Burg-Anholt-Ostfassade-2012.jpg/120px-Burg-Anholt-Ostfassade-2012.jpg","width":120,"height":81,"title":"File:Burg-Anholt-Ostfassade-2012.jpg","author":"Tuxyso","license":null,"latitude":51.844775000000006,"longitude":6.42562,"pageid":"20473008","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/1/17/Burg-Anholt-Ostfassade-2012.jpg/300px-Burg-Anholt-Ostfassade-2012.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Burg-Vondern-Westen-vom-Weg-2013.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Burg-Vondern-Westen-vom-Weg-2013.jpg/120px-Burg-Vondern-Westen-vom-Weg-2013.jpg","width":120,"height":67,"title":"File:Burg-Vondern-Westen-vom-Weg-2013.jpg","author":"Tuxyso","license":null,"latitude":51.498653,"longitude":6.906074,"pageid":"25580487","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Burg-Vondern-Westen-vom-Weg-2013.jpg/300px-Burg-Vondern-Westen-vom-Weg-2013.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Cabines_de_bain_Berck.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/4/41/Cabines_de_bain_Berck.jpg/120px-Cabines_de_bain_Berck.jpg","width":120,"height":79,"title":"File:Cabines de bain Berck.jpg","author":"Gzzz","license":null,"latitude":50.405944,"longitude":1.558194,"pageid":"20452978","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/4/41/Cabines_de_bain_Berck.jpg/300px-Cabines_de_bain_Berck.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Canal_Grande_Chiesa_della_Salute_e_Dogana_dal_ponte_dell_Accademia.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/a/a3/Canal_Grande_Chiesa_della_Salute_e_Dogana_dal_ponte_dell_Accademia.jpg/120px-Canal_Grande_Chiesa_della_Salute_e_Dogana_dal_ponte_dell_Accademia.jpg","width":120,"height":81,"title":"File:Canal Grande Chiesa della Salute e Dogana dal ponte dell Accademia.jpg","license":null,"latitude":45.43172,"longitude":12.32896,"pageid":"23198817","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/a/a3/Canal_Grande_Chiesa_della_Salute_e_Dogana_dal_ponte_dell_Accademia.jpg/300px-Canal_Grande_Chiesa_della_Salute_e_Dogana_dal_ponte_dell_Accademia.jpg","author":"Moroder"},{"url":"//commons.wikimedia.org/wiki/File:Casa_barrio_El_Empedrao_I.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/6/6d/Casa_barrio_El_Empedrao_I.jpg/120px-Casa_barrio_El_Empedrao_I.jpg","width":120,"height":80,"title":"File:Casa barrio El Empedrao I.jpg","author":"Rjcastillo","license":null,"latitude":10.647765509989,"longitude":-71.603919270005,"pageid":"23311051","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/6/6d/Casa_barrio_El_Empedrao_I.jpg/300px-Casa_barrio_El_Empedrao_I.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Casa_Mil%C3%A0_-_Barcelona,_Spain_-_Jan_2007.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/3/3c/Casa_Mil%C3%A0_-_Barcelona%2C_Spain_-_Jan_2007.jpg/120px-Casa_Mil%C3%A0_-_Barcelona%2C_Spain_-_Jan_2007.jpg","width":120,"height":112,"title":"File:Casa Milà - Barcelona, Spain - Jan 2007.jpg","author":"Diliff","license":null,"latitude":41.395181944444445,"longitude":2.1617688888888886,"pageid":"1584133","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/3/3c/Casa_Mil%C3%A0_-_Barcelona%2C_Spain_-_Jan_2007.jpg/300px-Casa_Mil%C3%A0_-_Barcelona%2C_Spain_-_Jan_2007.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Catedral_de_Alejandro_Nevsky,_Tallin,_Estonia,_2012-08-05,_DD_20.JPG","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Catedral_de_Alejandro_Nevsky%2C_Tallin%2C_Estonia%2C_2012-08-05%2C_DD_20.JPG/120px-Catedral_de_Alejandro_Nevsky%2C_Tallin%2C_Estonia%2C_2012-08-05%2C_DD_20.JPG","width":120,"height":84,"title":"File:Catedral de Alejandro Nevsky, Tallin, Estonia, 2012-08-05, DD 20.JPG","author":"Poco a poco","license":null,"latitude":59.435833,"longitude":24.739361,"pageid":"21529421","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Catedral_de_Alejandro_Nevsky%2C_Tallin%2C_Estonia%2C_2012-08-05%2C_DD_20.JPG/300px-Catedral_de_Alejandro_Nevsky%2C_Tallin%2C_Estonia%2C_2012-08-05%2C_DD_20.JPG"},{"url":"//commons.wikimedia.org/wiki/File:Catedral_de_Alejandro_Nevsky,_Tallin,_Estonia,_2012-08-11,_DD_46.JPG","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Catedral_de_Alejandro_Nevsky%2C_Tallin%2C_Estonia%2C_2012-08-11%2C_DD_46.JPG/120px-Catedral_de_Alejandro_Nevsky%2C_Tallin%2C_Estonia%2C_2012-08-11%2C_DD_46.JPG","width":120,"height":81,"title":"File:Catedral de Alejandro Nevsky, Tallin, Estonia, 2012-08-11, DD 46.JPG","author":"Poco a poco","license":null,"latitude":59.435833,"longitude":24.739361,"pageid":"21529439","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Catedral_de_Alejandro_Nevsky%2C_Tallin%2C_Estonia%2C_2012-08-11%2C_DD_46.JPG/300px-Catedral_de_Alejandro_Nevsky%2C_Tallin%2C_Estonia%2C_2012-08-11%2C_DD_46.JPG"},{"url":"//commons.wikimedia.org/wiki/File:Catedral_de_Santa_Mar%C3%ADa_de_Segovia_-_01.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/7/7e/Catedral_de_Santa_Mar%C3%ADa_de_Segovia_-_01.jpg/120px-Catedral_de_Santa_Mar%C3%ADa_de_Segovia_-_01.jpg","width":120,"height":80,"title":"File:Catedral de Santa María de Segovia - 01.jpg","author":"Kadellar","license":null,"latitude":40.952289,"longitude":-4.132149,"pageid":"23147243","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/7/7e/Catedral_de_Santa_Mar%C3%ADa_de_Segovia_-_01.jpg/300px-Catedral_de_Santa_Mar%C3%ADa_de_Segovia_-_01.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Catherine_Palace_in_Tsarskoe_Selo.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Catherine_Palace_in_Tsarskoe_Selo.jpg/120px-Catherine_Palace_in_Tsarskoe_Selo.jpg","width":120,"height":79,"title":"File:Catherine Palace in Tsarskoe Selo.jpg","license":null,"latitude":59.715189,"longitude":30.396334,"pageid":"24575167","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Catherine_Palace_in_Tsarskoe_Selo.jpg/300px-Catherine_Palace_in_Tsarskoe_Selo.jpg","author":null},{"url":"//commons.wikimedia.org/wiki/File:Chicago_Theatre_blend.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/2/26/Chicago_Theatre_blend.jpg/120px-Chicago_Theatre_blend.jpg","width":120,"height":90,"title":"File:Chicago Theatre blend.jpg","author":"Dschwen","license":null,"latitude":41.8851,"longitude":-87.62799388888888,"pageid":"7429653","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/2/26/Chicago_Theatre_blend.jpg/300px-Chicago_Theatre_blend.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Chichen_Itza_3.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Chichen_Itza_3.jpg/120px-Chichen_Itza_3.jpg","width":120,"height":64,"title":"File:Chichen Itza 3.jpg","author":"Dschwen","license":null,"latitude":20.683694444444445,"longitude":-88.56916666666666,"pageid":"7647000","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Chichen_Itza_3.jpg/300px-Chichen_Itza_3.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Clock_Tower_-_Palace_of_Westminster,_London_-_September_2006-2.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Clock_Tower_-_Palace_of_Westminster%2C_London_-_September_2006-2.jpg/56px-Clock_Tower_-_Palace_of_Westminster%2C_London_-_September_2006-2.jpg","width":56,"height":120,"title":"File:Clock Tower - Palace of Westminster, London - September 2006-2.jpg","author":"Diliff","license":null,"latitude":51.50083333333333,"longitude":-0.12722222222222224,"pageid":"3668596","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Clock_Tower_-_Palace_of_Westminster%2C_London_-_September_2006-2.jpg/300px-Clock_Tower_-_Palace_of_Westminster%2C_London_-_September_2006-2.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Colosseum_in_Rome-April_2007-1-_copie_2B.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/d/d8/Colosseum_in_Rome-April_2007-1-_copie_2B.jpg/120px-Colosseum_in_Rome-April_2007-1-_copie_2B.jpg","width":120,"height":70,"title":"File:Colosseum in Rome-April 2007-1- copie 2B.jpg","author":"Diliff","license":null,"latitude":41.89069444444444,"longitude":12.490777777777778,"pageid":"2127844","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/d/d8/Colosseum_in_Rome-April_2007-1-_copie_2B.jpg/300px-Colosseum_in_Rome-April_2007-1-_copie_2B.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Dharmaraya_Swamy_Temple_Bangalore_edit1.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/d/d6/Dharmaraya_Swamy_Temple_Bangalore_edit1.jpg/116px-Dharmaraya_Swamy_Temple_Bangalore_edit1.jpg","width":116,"height":120,"title":"File:Dharmaraya Swamy Temple Bangalore edit1.jpg","license":null,"latitude":12.965395,"longitude":77.58325,"pageid":"9845125","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/d/d6/Dharmaraya_Swamy_Temple_Bangalore_edit1.jpg/300px-Dharmaraya_Swamy_Temple_Bangalore_edit1.jpg","author":"Muhammad Mahdi Karim"},{"url":"//commons.wikimedia.org/wiki/File:Douves_forteresse_Rhodes.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/b/b6/Douves_forteresse_Rhodes.jpg/120px-Douves_forteresse_Rhodes.jpg","width":120,"height":101,"title":"File:Douves forteresse Rhodes.jpg","author":"Jebulon","license":null,"latitude":36.445249999999994,"longitude":28.22233333333333,"pageid":"16947678","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/b/b6/Douves_forteresse_Rhodes.jpg/300px-Douves_forteresse_Rhodes.jpg"},{"url":"//commons.wikimedia.org/wiki/File:East_Banqueting_StJames_Chipping_Campden.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/d/d6/East_Banqueting_StJames_Chipping_Campden.jpg/120px-East_Banqueting_StJames_Chipping_Campden.jpg","width":120,"height":86,"title":"File:East Banqueting StJames Chipping Campden.jpg","author":"Saffron Blaze","license":null,"latitude":52.052075,"longitude":-1.773799,"pageid":"18943051","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/d/d6/East_Banqueting_StJames_Chipping_Campden.jpg/300px-East_Banqueting_StJames_Chipping_Campden.jpg"},{"url":"//commons.wikimedia.org/wiki/File:El_Palau_de_les_Arts_Reina_Sof%C3%ADa,_Valencia_-_Jan_2007.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/9/9b/El_Palau_de_les_Arts_Reina_Sof%C3%ADa%2C_Valencia_-_Jan_2007.jpg/120px-El_Palau_de_les_Arts_Reina_Sof%C3%ADa%2C_Valencia_-_Jan_2007.jpg","width":120,"height":69,"title":"File:El Palau de les Arts Reina Sofía, Valencia - Jan 2007.jpg","author":"Diliff","license":null,"latitude":39.45696347651799,"longitude":-0.35540342330932617,"pageid":"1544987","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/9/9b/El_Palau_de_les_Arts_Reina_Sof%C3%ADa%2C_Valencia_-_Jan_2007.jpg/300px-El_Palau_de_les_Arts_Reina_Sof%C3%ADa%2C_Valencia_-_Jan_2007.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Frauenkirche_Munich_March_2013.JPG","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/8/89/Frauenkirche_Munich_March_2013.JPG/120px-Frauenkirche_Munich_March_2013.JPG","width":120,"height":80,"title":"File:Frauenkirche Munich March 2013.JPG","author":"Martin Falbisoner","license":null,"latitude":48.136611,"longitude":11.575727,"pageid":"24951843","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/8/89/Frauenkirche_Munich_March_2013.JPG/300px-Frauenkirche_Munich_March_2013.JPG"},{"url":"//commons.wikimedia.org/wiki/File:Gammelg%C3%A5rden_Ljungdalen_Mars_2013.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/8/81/Gammelg%C3%A5rden_Ljungdalen_Mars_2013.jpg/120px-Gammelg%C3%A5rden_Ljungdalen_Mars_2013.jpg","width":120,"height":80,"title":"File:Gammelgården Ljungdalen Mars 2013.jpg","author":"ArildV","license":null,"latitude":62.850325,"longitude":12.796438888888888,"pageid":"25374233","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/8/81/Gammelg%C3%A5rden_Ljungdalen_Mars_2013.jpg/300px-Gammelg%C3%A5rden_Ljungdalen_Mars_2013.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Gatineau_-_QC_-_Museum_of_Civilisation3.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/9/9c/Gatineau_-_QC_-_Museum_of_Civilisation3.jpg/120px-Gatineau_-_QC_-_Museum_of_Civilisation3.jpg","width":120,"height":88,"title":"File:Gatineau - QC - Museum of Civilisation3.jpg","author":"Taxiarchos228","license":null,"latitude":45.43017222222222,"longitude":-75.70935555555556,"pageid":"12113382","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/9/9c/Gatineau_-_QC_-_Museum_of_Civilisation3.jpg/300px-Gatineau_-_QC_-_Museum_of_Civilisation3.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Glarus_Stadtkirche_Langhaus.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Glarus_Stadtkirche_Langhaus.jpg/120px-Glarus_Stadtkirche_Langhaus.jpg","width":120,"height":90,"title":"File:Glarus Stadtkirche Langhaus.jpg","author":"Ikiwaner","license":null,"latitude":47.040258888888886,"longitude":9.065523055555555,"pageid":"502710","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Glarus_Stadtkirche_Langhaus.jpg/300px-Glarus_Stadtkirche_Langhaus.jpg"},{"url":"//commons.wikimedia.org/wiki/File:GrazerRathaus-edit.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/0/0c/GrazerRathaus-edit.jpg/120px-GrazerRathaus-edit.jpg","width":120,"height":79,"title":"File:GrazerRathaus-edit.jpg","license":null,"latitude":47.070655,"longitude":15.438452,"pageid":"740590","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/0/0c/GrazerRathaus-edit.jpg/300px-GrazerRathaus-edit.jpg","author":null},{"url":"//commons.wikimedia.org/wiki/File:Grot_pavilion_in_Tsarskoe_Selo.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/7/77/Grot_pavilion_in_Tsarskoe_Selo.jpg/120px-Grot_pavilion_in_Tsarskoe_Selo.jpg","width":120,"height":80,"title":"File:Grot pavilion in Tsarskoe Selo.jpg","license":null,"latitude":59.713125,"longitude":30.396026,"pageid":"21033892","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/7/77/Grot_pavilion_in_Tsarskoe_Selo.jpg/300px-Grot_pavilion_in_Tsarskoe_Selo.jpg","author":null},{"url":"//commons.wikimedia.org/wiki/File:Grubenlampe,_Halde_Rheinpreu%C3%9Fen,_Blaue_Stunde,_2010-10-09,_I.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/1/18/Grubenlampe%2C_Halde_Rheinpreu%C3%9Fen%2C_Blaue_Stunde%2C_2010-10-09%2C_I.jpg/120px-Grubenlampe%2C_Halde_Rheinpreu%C3%9Fen%2C_Blaue_Stunde%2C_2010-10-09%2C_I.jpg","width":120,"height":80,"title":"File:Grubenlampe, Halde Rheinpreußen, Blaue Stunde, 2010-10-09, I.jpg","author":null,"license":null,"latitude":51.479075,"longitude":6.650972222222222,"pageid":"11764723","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/1/18/Grubenlampe%2C_Halde_Rheinpreu%C3%9Fen%2C_Blaue_Stunde%2C_2010-10-09%2C_I.jpg/300px-Grubenlampe%2C_Halde_Rheinpreu%C3%9Fen%2C_Blaue_Stunde%2C_2010-10-09%2C_I.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Hall_in_the_main_building_of_the_University_of_Z%C3%BCrich.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/2/24/Hall_in_the_main_building_of_the_University_of_Z%C3%BCrich.jpg/109px-Hall_in_the_main_building_of_the_University_of_Z%C3%BCrich.jpg","width":109,"height":120,"title":"File:Hall in the main building of the University of Zürich.jpg","author":"Ximeg","license":null,"latitude":47.374531,"longitude":8.548608,"pageid":"23181008","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/2/24/Hall_in_the_main_building_of_the_University_of_Z%C3%BCrich.jpg/300px-Hall_in_the_main_building_of_the_University_of_Z%C3%BCrich.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Hasfield_Court_Gloucestershire.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/4/45/Hasfield_Court_Gloucestershire.jpg/120px-Hasfield_Court_Gloucestershire.jpg","width":120,"height":86,"title":"File:Hasfield Court Gloucestershire.jpg","author":"Saffron Blaze","license":null,"latitude":51.945508,"longitude":-2.253572,"pageid":"18492297","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/4/45/Hasfield_Court_Gloucestershire.jpg/300px-Hasfield_Court_Gloucestershire.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Hrad_Levice_(L%C3%A9va_v%C3%A1ra).jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/4/4a/Hrad_Levice_%28L%C3%A9va_v%C3%A1ra%29.jpg/120px-Hrad_Levice_%28L%C3%A9va_v%C3%A1ra%29.jpg","width":120,"height":57,"title":"File:Hrad Levice (Léva vára).jpg","author":"Pudelek","license":null,"latitude":48.221875,"longitude":18.601403,"pageid":"20157775","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/4/4a/Hrad_Levice_%28L%C3%A9va_v%C3%A1ra%29.jpg/300px-Hrad_Levice_%28L%C3%A9va_v%C3%A1ra%29.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Image-Disney_Concert_Hall_by_Carol_Highsmith_edit.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/2/2e/Image-Disney_Concert_Hall_by_Carol_Highsmith_edit.jpg/120px-Image-Disney_Concert_Hall_by_Carol_Highsmith_edit.jpg","width":120,"height":94,"title":"File:Image-Disney Concert Hall by Carol Highsmith edit.jpg","license":null,"latitude":34.055166666666665,"longitude":-118.24894444444445,"pageid":"4205549","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/2/2e/Image-Disney_Concert_Hall_by_Carol_Highsmith_edit.jpg/300px-Image-Disney_Concert_Hall_by_Carol_Highsmith_edit.jpg","author":null},{"url":"//commons.wikimedia.org/wiki/File:IvanVazov_National_Theatre_7.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/1/16/IvanVazov_National_Theatre_7.jpg/120px-IvanVazov_National_Theatre_7.jpg","width":120,"height":87,"title":"File:IvanVazov National Theatre 7.jpg","author":"MrPanyGoff","license":null,"latitude":42.69475277777777,"longitude":23.325530555555556,"pageid":"13306648","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/1/16/IvanVazov_National_Theatre_7.jpg/300px-IvanVazov_National_Theatre_7.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Josephskirche_Rheinfelden.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/5/57/Josephskirche_Rheinfelden.jpg/120px-Josephskirche_Rheinfelden.jpg","width":120,"height":86,"title":"File:Josephskirche Rheinfelden.jpg","author":"Taxiarchos228","license":null,"latitude":47.56111111111111,"longitude":7.791111111111111,"pageid":"2436133","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/5/57/Josephskirche_Rheinfelden.jpg/300px-Josephskirche_Rheinfelden.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Kastellet_cph.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/4/4a/Kastellet_cph.jpg/120px-Kastellet_cph.jpg","width":120,"height":36,"title":"File:Kastellet cph.jpg","license":null,"latitude":55.691380555555554,"longitude":12.59518888888889,"pageid":"204753","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/4/4a/Kastellet_cph.jpg/300px-Kastellet_cph.jpg","author":null},{"url":"//commons.wikimedia.org/wiki/File:Kikin_palace_SPB.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/6/67/Kikin_palace_SPB.jpg/120px-Kikin_palace_SPB.jpg","width":120,"height":80,"title":"File:Kikin palace SPB.jpg","license":null,"latitude":59.949343,"longitude":30.387324,"pageid":"21033885","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/6/67/Kikin_palace_SPB.jpg/300px-Kikin_palace_SPB.jpg","author":null},{"url":"//commons.wikimedia.org/wiki/File:King%27s_Cross_Station_Euston_Road_2012-05-27.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/5/5e/King%27s_Cross_Station_Euston_Road_2012-05-27.jpg/120px-King%27s_Cross_Station_Euston_Road_2012-05-27.jpg","width":120,"height":52,"title":"File:King's Cross Station Euston Road 2012-05-27.jpg","author":"Colin","license":null,"latitude":51.53,"longitude":-0.12439722222222223,"pageid":"19781393","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/5/5e/King%27s_Cross_Station_Euston_Road_2012-05-27.jpg/300px-King%27s_Cross_Station_Euston_Road_2012-05-27.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Koppelpoort_Amersfoort_Cropped.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/3/39/Koppelpoort_Amersfoort_Cropped.jpg/120px-Koppelpoort_Amersfoort_Cropped.jpg","width":120,"height":58,"title":"File:Koppelpoort Amersfoort Cropped.jpg","license":null,"latitude":52.15894,"longitude":5.385274,"pageid":"11420059","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/3/39/Koppelpoort_Amersfoort_Cropped.jpg/300px-Koppelpoort_Amersfoort_Cropped.jpg","author":null},{"url":"//commons.wikimedia.org/wiki/File:Korbach,_Hartwigsches_Haus,_2011-08_CN-02.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/0/0c/Korbach%2C_Hartwigsches_Haus%2C_2011-08_CN-02.jpg/120px-Korbach%2C_Hartwigsches_Haus%2C_2011-08_CN-02.jpg","width":120,"height":81,"title":"File:Korbach, Hartwigsches Haus, 2011-08 CN-02.jpg","author":null,"license":null,"latitude":51.271889,"longitude":8.871476,"pageid":"16156486","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/0/0c/Korbach%2C_Hartwigsches_Haus%2C_2011-08_CN-02.jpg/300px-Korbach%2C_Hartwigsches_Haus%2C_2011-08_CN-02.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Kose_kirik_suvi_2012.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/2/29/Kose_kirik_suvi_2012.jpg/120px-Kose_kirik_suvi_2012.jpg","width":120,"height":69,"title":"File:Kose kirik suvi 2012.jpg","author":"Iifar","license":null,"latitude":59.1873596,"longitude":25.1662548,"pageid":"21307514","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/2/29/Kose_kirik_suvi_2012.jpg/300px-Kose_kirik_suvi_2012.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Krishna_Pushkarani_-_Hampi_Ruins.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Krishna_Pushkarani_-_Hampi_Ruins.jpg/120px-Krishna_Pushkarani_-_Hampi_Ruins.jpg","width":120,"height":76,"title":"File:Krishna Pushkarani - Hampi Ruins.jpg","license":null,"latitude":15.332877777777778,"longitude":76.46696666666666,"pageid":"23300957","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Krishna_Pushkarani_-_Hampi_Ruins.jpg/300px-Krishna_Pushkarani_-_Hampi_Ruins.jpg","author":"Dey.sandip"},{"url":"//commons.wikimedia.org/wiki/File:Laeken_Se1aJPG.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/f/f9/Laeken_Se1aJPG.jpg/120px-Laeken_Se1aJPG.jpg","width":120,"height":80,"title":"File:Laeken Se1aJPG.jpg","license":null,"latitude":50.888305555555554,"longitude":4.3603555555555555,"pageid":"2181461","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/f/f9/Laeken_Se1aJPG.jpg/300px-Laeken_Se1aJPG.jpg","author":"Jean-Pol GRANDMONT"},{"url":"//commons.wikimedia.org/wiki/File:Laufener_H%C3%BCtte_(Juni_2012).JPG","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/2/22/Laufener_H%C3%BCtte_%28Juni_2012%29.JPG/120px-Laufener_H%C3%BCtte_%28Juni_2012%29.JPG","width":120,"height":80,"title":"File:Laufener Hütte (Juni 2012).JPG","author":null,"license":null,"latitude":47.5204250338,"longitude":13.3364099264,"pageid":"19836398","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/2/22/Laufener_H%C3%BCtte_%28Juni_2012%29.JPG/300px-Laufener_H%C3%BCtte_%28Juni_2012%29.JPG"},{"url":"//commons.wikimedia.org/wiki/File:Le_Mans_-_Cathedrale_St_Julien_ext_autumn.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/0/05/Le_Mans_-_Cathedrale_St_Julien_ext_autumn.jpg/120px-Le_Mans_-_Cathedrale_St_Julien_ext_autumn.jpg","width":120,"height":79,"title":"File:Le Mans - Cathedrale St Julien ext autumn.jpg","author":"Selbymay","license":null,"latitude":48.009167,"longitude":0.19889,"pageid":"24632078","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/0/05/Le_Mans_-_Cathedrale_St_Julien_ext_autumn.jpg/300px-Le_Mans_-_Cathedrale_St_Julien_ext_autumn.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Le_Stade_Olympique_de_Montr%C3%A9al_Nuit_Arriere_Edit_1.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/6/64/Le_Stade_Olympique_de_Montr%C3%A9al_Nuit_Arriere_Edit_1.jpg/120px-Le_Stade_Olympique_de_Montr%C3%A9al_Nuit_Arriere_Edit_1.jpg","width":120,"height":75,"title":"File:Le Stade Olympique de Montréal Nuit Arriere Edit 1.jpg","author":"Acarpentier","license":null,"latitude":45.56121944444444,"longitude":-73.55262222222223,"pageid":"3064069","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/6/64/Le_Stade_Olympique_de_Montr%C3%A9al_Nuit_Arriere_Edit_1.jpg/300px-Le_Stade_Olympique_de_Montr%C3%A9al_Nuit_Arriere_Edit_1.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Liceum_building_in_Tsarskoe_Selo_02.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/3/37/Liceum_building_in_Tsarskoe_Selo_02.jpg/120px-Liceum_building_in_Tsarskoe_Selo_02.jpg","width":120,"height":79,"title":"File:Liceum building in Tsarskoe Selo 02.jpg","license":null,"latitude":59.717792,"longitude":30.395143,"pageid":"21312490","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/3/37/Liceum_building_in_Tsarskoe_Selo_02.jpg/300px-Liceum_building_in_Tsarskoe_Selo_02.jpg","author":null},{"url":"//commons.wikimedia.org/wiki/File:Lille_ND_Treille_Ste_Chapelle.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Lille_ND_Treille_Ste_Chapelle.jpg/120px-Lille_ND_Treille_Ste_Chapelle.jpg","width":120,"height":116,"title":"File:Lille ND Treille Ste Chapelle.jpg","author":"Velvet","license":null,"latitude":50.64,"longitude":3.0622222,"pageid":"9520877","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Lille_ND_Treille_Ste_Chapelle.jpg/300px-Lille_ND_Treille_Ste_Chapelle.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Loppem_kasteel_03.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/1/16/Loppem_kasteel_03.jpg/89px-Loppem_kasteel_03.jpg","width":89,"height":120,"title":"File:Loppem kasteel 03.jpg","author":null,"license":null,"latitude":51.156575,"longitude":3.2032861111111113,"pageid":"2132951","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/1/16/Loppem_kasteel_03.jpg/300px-Loppem_kasteel_03.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Luc_Viatour_Bruxelles_Catedrale_ST-Michel.JPG","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Luc_Viatour_Bruxelles_Catedrale_ST-Michel.JPG/80px-Luc_Viatour_Bruxelles_Catedrale_ST-Michel.JPG","width":80,"height":120,"title":"File:Luc Viatour Bruxelles Catedrale ST-Michel.JPG","author":"Lviatour","license":null,"latitude":50.84788888888889,"longitude":4.358111111111111,"pageid":"764515","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Luc_Viatour_Bruxelles_Catedrale_ST-Michel.JPG/300px-Luc_Viatour_Bruxelles_Catedrale_ST-Michel.JPG"},{"url":"//commons.wikimedia.org/wiki/File:Lutheran_Cathedral_Helsinki_edit.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/8/8b/Lutheran_Cathedral_Helsinki_edit.jpg/108px-Lutheran_Cathedral_Helsinki_edit.jpg","width":108,"height":120,"title":"File:Lutheran Cathedral Helsinki edit.jpg","author":null,"license":null,"latitude":60.169402777777776,"longitude":24.951541666666667,"pageid":"11991277","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/8/8b/Lutheran_Cathedral_Helsinki_edit.jpg/300px-Lutheran_Cathedral_Helsinki_edit.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Malla_m%C3%B5isa_peahoone_2012.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/0/05/Malla_m%C3%B5isa_peahoone_2012.jpg/120px-Malla_m%C3%B5isa_peahoone_2012.jpg","width":120,"height":50,"title":"File:Malla mõisa peahoone 2012.jpg","author":"Iifar","license":null,"latitude":59.500647741867,"longitude":26.589831249913,"pageid":"21349521","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/0/05/Malla_m%C3%B5isa_peahoone_2012.jpg/300px-Malla_m%C3%B5isa_peahoone_2012.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Mission_Santa_Clara.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Mission_Santa_Clara.jpg/120px-Mission_Santa_Clara.jpg","width":120,"height":90,"title":"File:Mission Santa Clara.jpg","author":"JaGa","license":null,"latitude":37.349473,"longitude":-121.940861,"pageid":"4644707","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Mission_Santa_Clara.jpg/300px-Mission_Santa_Clara.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Montreal_City_Hall_Jan_2006.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/a/a9/Montreal_City_Hall_Jan_2006.jpg/120px-Montreal_City_Hall_Jan_2006.jpg","width":120,"height":101,"title":"File:Montreal City Hall Jan 2006.jpg","author":null,"license":null,"latitude":45.508888,"longitude":-73.553435,"pageid":"496266","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/a/a9/Montreal_City_Hall_Jan_2006.jpg/300px-Montreal_City_Hall_Jan_2006.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Musiktheater_im_Revier.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/8/8a/Musiktheater_im_Revier.jpg/120px-Musiktheater_im_Revier.jpg","width":120,"height":80,"title":"File:Musiktheater im Revier.jpg","license":null,"latitude":51.513666666666666,"longitude":7.0921666666666665,"pageid":"115636","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/8/8a/Musiktheater_im_Revier.jpg/300px-Musiktheater_im_Revier.jpg","author":null},{"url":"//commons.wikimedia.org/wiki/File:Neues_Rathaus_Hannover_abends.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/6/68/Neues_Rathaus_Hannover_abends.jpg/120px-Neues_Rathaus_Hannover_abends.jpg","width":120,"height":87,"title":"File:Neues Rathaus Hannover abends.jpg","license":null,"latitude":52.36532777777778,"longitude":9.736458333333333,"pageid":"23199579","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/6/68/Neues_Rathaus_Hannover_abends.jpg/300px-Neues_Rathaus_Hannover_abends.jpg","author":"Der Wolf im Wald"},{"url":"//commons.wikimedia.org/wiki/File:New_Clairvaux,_Sacred_Stones.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/9/98/New_Clairvaux%2C_Sacred_Stones.jpg/120px-New_Clairvaux%2C_Sacred_Stones.jpg","width":120,"height":77,"title":"File:New Clairvaux, Sacred Stones.jpg","author":"Frank Schulenburg","license":null,"latitude":39.937252,"longitude":-122.063007,"pageid":"23837330","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/9/98/New_Clairvaux%2C_Sacred_Stones.jpg/300px-New_Clairvaux%2C_Sacred_Stones.jpg"},{"url":"//commons.wikimedia.org/wiki/File:North_transepts_-_Basilique_Saint-Sernin_-_fixed_perspective_(cropped).jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/9/96/North_transepts_-_Basilique_Saint-Sernin_-_fixed_perspective_%28cropped%29.jpg/120px-North_transepts_-_Basilique_Saint-Sernin_-_fixed_perspective_%28cropped%29.jpg","width":120,"height":86,"title":"File:North transepts - Basilique Saint-Sernin - fixed perspective (cropped).jpg","author":"PierreSelim","license":null,"latitude":43.60813888888889,"longitude":1.4413055555555556,"pageid":"23289788","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/9/96/North_transepts_-_Basilique_Saint-Sernin_-_fixed_perspective_%28cropped%29.jpg/300px-North_transepts_-_Basilique_Saint-Sernin_-_fixed_perspective_%28cropped%29.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Oratoire_Saint-Joseph_du_Mont-Royal_3.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/c/c7/Oratoire_Saint-Joseph_du_Mont-Royal_3.jpg/120px-Oratoire_Saint-Joseph_du_Mont-Royal_3.jpg","width":120,"height":88,"title":"File:Oratoire Saint-Joseph du Mont-Royal 3.jpg","author":"Acarpentier","license":null,"latitude":45.49646666666667,"longitude":-73.60024722222222,"pageid":"3111397","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/c/c7/Oratoire_Saint-Joseph_du_Mont-Royal_3.jpg/300px-Oratoire_Saint-Joseph_du_Mont-Royal_3.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Orleans_-_Cathedral_int_01.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/e/e6/Orleans_-_Cathedral_int_01.jpg/120px-Orleans_-_Cathedral_int_01.jpg","width":120,"height":120,"title":"File:Orleans - Cathedral int 01.jpg","author":"Selbymay","license":null,"latitude":47.9018,"longitude":1.9103,"pageid":"24380043","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/e/e6/Orleans_-_Cathedral_int_01.jpg/300px-Orleans_-_Cathedral_int_01.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Partal_pavilion_bassin_detail_1_edit.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/0/07/Partal_pavilion_bassin_detail_1_edit.jpg/120px-Partal_pavilion_bassin_detail_1_edit.jpg","width":120,"height":79,"title":"File:Partal pavilion bassin detail 1 edit.jpg","author":"Jebulon","license":null,"latitude":37.177112,"longitude":-3.588485,"pageid":"22022215","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/0/07/Partal_pavilion_bassin_detail_1_edit.jpg/300px-Partal_pavilion_bassin_detail_1_edit.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Phaeno_Suedseite_RB.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/e/ea/Phaeno_Suedseite_RB.jpg/120px-Phaeno_Suedseite_RB.jpg","width":120,"height":47,"title":"File:Phaeno Suedseite RB.jpg","license":null,"latitude":52.42914444444444,"longitude":10.788980555555556,"pageid":"25934991","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/e/ea/Phaeno_Suedseite_RB.jpg/300px-Phaeno_Suedseite_RB.jpg","author":"Richard Bartz"},{"url":"//commons.wikimedia.org/wiki/File:Pikaj%C3%A4rve_m%C3%B5isa_peahoone2.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Pikaj%C3%A4rve_m%C3%B5isa_peahoone2.jpg/120px-Pikaj%C3%A4rve_m%C3%B5isa_peahoone2.jpg","width":120,"height":63,"title":"File:Pikajärve mõisa peahoone2.jpg","author":"Iifar","license":null,"latitude":58.0698,"longitude":26.59333,"pageid":"21282144","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Pikaj%C3%A4rve_m%C3%B5isa_peahoone2.jpg/300px-Pikaj%C3%A4rve_m%C3%B5isa_peahoone2.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Portal_Casa_de_Colon_01.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/d/d8/Portal_Casa_de_Colon_01.jpg/78px-Portal_Casa_de_Colon_01.jpg","width":78,"height":120,"title":"File:Portal Casa de Colon 01.jpg","license":null,"latitude":28.101158333333334,"longitude":-15.414150000000001,"pageid":"17180243","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/d/d8/Portal_Casa_de_Colon_01.jpg/300px-Portal_Casa_de_Colon_01.jpg","author":null},{"url":"//commons.wikimedia.org/wiki/File:Prasat_Sikhoraphum_-_Sikhoraphum_edit1.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/1/16/Prasat_Sikhoraphum_-_Sikhoraphum_edit1.jpg/120px-Prasat_Sikhoraphum_-_Sikhoraphum_edit1.jpg","width":120,"height":62,"title":"File:Prasat Sikhoraphum - Sikhoraphum edit1.jpg","author":"JJ Harrison","license":null,"latitude":14.944539,"longitude":103.798879,"pageid":"24421687","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/1/16/Prasat_Sikhoraphum_-_Sikhoraphum_edit1.jpg/300px-Prasat_Sikhoraphum_-_Sikhoraphum_edit1.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Rathaus_Gro%C3%9Fbottwar_neu_edit.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/3/3c/Rathaus_Gro%C3%9Fbottwar_neu_edit.jpg/64px-Rathaus_Gro%C3%9Fbottwar_neu_edit.jpg","width":64,"height":120,"title":"File:Rathaus Großbottwar neu edit.jpg","author":"Felix Koenig","license":null,"latitude":49.001389,"longitude":9.293056,"pageid":"12515242","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/3/3c/Rathaus_Gro%C3%9Fbottwar_neu_edit.jpg/300px-Rathaus_Gro%C3%9Fbottwar_neu_edit.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Ripon_Building_panorama.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/b/b3/Ripon_Building_panorama.jpg/120px-Ripon_Building_panorama.jpg","width":120,"height":54,"title":"File:Ripon Building panorama.jpg","license":null,"latitude":13.081302,"longitude":80.271561,"pageid":"2194021","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/b/b3/Ripon_Building_panorama.jpg/300px-Ripon_Building_panorama.jpg","author":"PlaneMad"},{"url":"//commons.wikimedia.org/wiki/File:Rogers_Center-restitched.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/7/73/Rogers_Center-restitched.jpg/80px-Rogers_Center-restitched.jpg","width":80,"height":120,"title":"File:Rogers Center-restitched.jpg","author":"MarcusObal","license":null,"latitude":43.64111111111111,"longitude":-79.39,"pageid":"2866151","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/7/73/Rogers_Center-restitched.jpg/300px-Rogers_Center-restitched.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Sangaste_m%C3%B5isa_peahoone1.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/5/57/Sangaste_m%C3%B5isa_peahoone1.jpg/120px-Sangaste_m%C3%B5isa_peahoone1.jpg","width":120,"height":72,"title":"File:Sangaste mõisa peahoone1.jpg","author":"Iifar","license":null,"latitude":57.901393786197,"longitude":26.279973267515,"pageid":"21193263","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/5/57/Sangaste_m%C3%B5isa_peahoone1.jpg/300px-Sangaste_m%C3%B5isa_peahoone1.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Schloss-Borbeck-Komplettansicht-Sonnenuntergang-2012.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Schloss-Borbeck-Komplettansicht-Sonnenuntergang-2012.jpg/120px-Schloss-Borbeck-Komplettansicht-Sonnenuntergang-2012.jpg","width":120,"height":80,"title":"File:Schloss-Borbeck-Komplettansicht-Sonnenuntergang-2012.jpg","author":"Tuxyso","license":null,"latitude":51.468971666667,"longitude":6.9428083333333,"pageid":"23441307","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Schloss-Borbeck-Komplettansicht-Sonnenuntergang-2012.jpg/300px-Schloss-Borbeck-Komplettansicht-Sonnenuntergang-2012.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Seebr%C3%BCcke_Sellin_abends.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/7/7a/Seebr%C3%BCcke_Sellin_abends.jpg/120px-Seebr%C3%BCcke_Sellin_abends.jpg","width":120,"height":81,"title":"File:Seebrücke Sellin abends.jpg","license":null,"latitude":54.383075,"longitude":13.698325,"pageid":"20594659","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/7/7a/Seebr%C3%BCcke_Sellin_abends.jpg/300px-Seebr%C3%BCcke_Sellin_abends.jpg","author":"Der Wolf im Wald"},{"url":"//commons.wikimedia.org/wiki/File:Sint_Anna_ter_Muiden_Kerk_R02.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/5/56/Sint_Anna_ter_Muiden_Kerk_R02.jpg/120px-Sint_Anna_ter_Muiden_Kerk_R02.jpg","width":120,"height":99,"title":"File:Sint Anna ter Muiden Kerk R02.jpg","author":null,"license":null,"latitude":51.31526944444444,"longitude":3.3635361111111113,"pageid":"21684025","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/5/56/Sint_Anna_ter_Muiden_Kerk_R02.jpg/300px-Sint_Anna_ter_Muiden_Kerk_R02.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Speicher_Zillergr%C3%BCndl_08.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/c/c1/Speicher_Zillergr%C3%BCndl_08.jpg/120px-Speicher_Zillergr%C3%BCndl_08.jpg","width":120,"height":49,"title":"File:Speicher Zillergründl 08.jpg","license":null,"latitude":47.121805555555554,"longitude":12.055644444444445,"pageid":"24348717","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/c/c1/Speicher_Zillergr%C3%BCndl_08.jpg/300px-Speicher_Zillergr%C3%BCndl_08.jpg","author":"Böhringer"},{"url":"//commons.wikimedia.org/wiki/File:St_Georgenberg_Stans_Suedwestblick.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/3/3a/St_Georgenberg_Stans_Suedwestblick.jpg/80px-St_Georgenberg_Stans_Suedwestblick.jpg","width":80,"height":120,"title":"File:St Georgenberg Stans Suedwestblick.jpg","license":null,"latitude":47.37730555555556,"longitude":11.694638888888889,"pageid":"21933877","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/3/3a/St_Georgenberg_Stans_Suedwestblick.jpg/300px-St_Georgenberg_Stans_Suedwestblick.jpg","author":"Richard Bartz"},{"url":"//commons.wikimedia.org/wiki/File:Stanford_Memorial_Church_May_2011_HDR.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/b/b5/Stanford_Memorial_Church_May_2011_HDR.jpg/120px-Stanford_Memorial_Church_May_2011_HDR.jpg","width":120,"height":80,"title":"File:Stanford Memorial Church May 2011 HDR.jpg","author":"King of Hearts","license":null,"latitude":37.427569444444444,"longitude":-122.17021666666668,"pageid":"20986023","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/b/b5/Stanford_Memorial_Church_May_2011_HDR.jpg/300px-Stanford_Memorial_Church_May_2011_HDR.jpg"},{"url":"//commons.wikimedia.org/wiki/File:State_Library_of_Victoria_La_Trobe_Reading_room_5th_floor_view.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/c/cd/State_Library_of_Victoria_La_Trobe_Reading_room_5th_floor_view.jpg/85px-State_Library_of_Victoria_La_Trobe_Reading_room_5th_floor_view.jpg","width":85,"height":120,"title":"File:State Library of Victoria La Trobe Reading room 5th floor view.jpg","author":"Diliff","license":null,"latitude":-37.809815739206265,"longitude":144.96505826711655,"pageid":"397272","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/c/cd/State_Library_of_Victoria_La_Trobe_Reading_room_5th_floor_view.jpg/300px-State_Library_of_Victoria_La_Trobe_Reading_room_5th_floor_view.jpg"},{"url":"//commons.wikimedia.org/wiki/File:StSophiaChurch-Sofia-10.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/3/3f/StSophiaChurch-Sofia-10.jpg/120px-StSophiaChurch-Sofia-10.jpg","width":120,"height":89,"title":"File:StSophiaChurch-Sofia-10.jpg","author":"MrPanyGoff","license":null,"latitude":42.696577777777776,"longitude":23.331222222222223,"pageid":"11644984","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/3/3f/StSophiaChurch-Sofia-10.jpg/300px-StSophiaChurch-Sofia-10.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Sultan_Omar_Ali_Saifuddin_Mosque_02.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/5/59/Sultan_Omar_Ali_Saifuddin_Mosque_02.jpg/120px-Sultan_Omar_Ali_Saifuddin_Mosque_02.jpg","width":120,"height":80,"title":"File:Sultan Omar Ali Saifuddin Mosque 02.jpg","license":null,"latitude":4.8882666666666665,"longitude":114.9391138888889,"pageid":"3994525","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/5/59/Sultan_Omar_Ali_Saifuddin_Mosque_02.jpg/300px-Sultan_Omar_Ali_Saifuddin_Mosque_02.jpg","author":null},{"url":"//commons.wikimedia.org/wiki/File:Sydney_Opera_House_-_Dec_2008.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Sydney_Opera_House_-_Dec_2008.jpg/120px-Sydney_Opera_House_-_Dec_2008.jpg","width":120,"height":66,"title":"File:Sydney Opera House - Dec 2008.jpg","author":"Diliff","license":null,"latitude":-33.852575108085,"longitude":151.21072947978973,"pageid":"5420726","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Sydney_Opera_House_-_Dec_2008.jpg/300px-Sydney_Opera_House_-_Dec_2008.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Taagepera_m%C3%B5isa_peahoone2.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/9/91/Taagepera_m%C3%B5isa_peahoone2.jpg/120px-Taagepera_m%C3%B5isa_peahoone2.jpg","width":120,"height":92,"title":"File:Taagepera mõisa peahoone2.jpg","author":"Iifar","license":null,"latitude":57.993408110738,"longitude":25.665869596601,"pageid":"21208633","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/9/91/Taagepera_m%C3%B5isa_peahoone2.jpg/300px-Taagepera_m%C3%B5isa_peahoone2.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Taj_Mahal_N-UP-A28-a.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/1/1f/Taj_Mahal_N-UP-A28-a.jpg/120px-Taj_Mahal_N-UP-A28-a.jpg","width":120,"height":68,"title":"File:Taj Mahal N-UP-A28-a.jpg","author":"Asitjain","license":null,"latitude":27.173244444444446,"longitude":78.04210277777777,"pageid":"21455975","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/1/1f/Taj_Mahal_N-UP-A28-a.jpg/300px-Taj_Mahal_N-UP-A28-a.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Taj_Mahal,_Agra,_India_edit2.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/7/74/Taj_Mahal%2C_Agra%2C_India_edit2.jpg/120px-Taj_Mahal%2C_Agra%2C_India_edit2.jpg","width":120,"height":79,"title":"File:Taj Mahal, Agra, India edit2.jpg","author":"Yann","license":null,"latitude":27.173253,"longitude":78.042111,"pageid":"11293223","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/7/74/Taj_Mahal%2C_Agra%2C_India_edit2.jpg/300px-Taj_Mahal%2C_Agra%2C_India_edit2.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Tartu_Toomkiriku_varemed_2012.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/a/a1/Tartu_Toomkiriku_varemed_2012.jpg/120px-Tartu_Toomkiriku_varemed_2012.jpg","width":120,"height":71,"title":"File:Tartu Toomkiriku varemed 2012.jpg","author":"Iifar","license":null,"latitude":58.380008,"longitude":26.71395,"pageid":"21406209","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/a/a1/Tartu_Toomkiriku_varemed_2012.jpg/300px-Tartu_Toomkiriku_varemed_2012.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Thyssen-Krupp-Quartier-Essen-Q1-2013.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/5/59/Thyssen-Krupp-Quartier-Essen-Q1-2013.jpg/104px-Thyssen-Krupp-Quartier-Essen-Q1-2013.jpg","width":104,"height":120,"title":"File:Thyssen-Krupp-Quartier-Essen-Q1-2013.jpg","author":"Tuxyso","license":null,"latitude":51.461006,"longitude":6.992637,"pageid":"24408930","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/5/59/Thyssen-Krupp-Quartier-Essen-Q1-2013.jpg/300px-Thyssen-Krupp-Quartier-Essen-Q1-2013.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Toit_salle_Abencerrages_Alhambra_Espagne.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/a/a8/Toit_salle_Abencerrages_Alhambra_Espagne.jpg/120px-Toit_salle_Abencerrages_Alhambra_Espagne.jpg","width":120,"height":80,"title":"File:Toit salle Abencerrages Alhambra Espagne.jpg","author":"Jebulon","license":null,"latitude":37.176599,"longitude":-3.589447,"pageid":"21888703","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/a/a8/Toit_salle_Abencerrages_Alhambra_Espagne.jpg/300px-Toit_salle_Abencerrages_Alhambra_Espagne.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Tongerloo_abbey-Panorama-v2.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/7/7e/Tongerloo_abbey-Panorama-v2.jpg/120px-Tongerloo_abbey-Panorama-v2.jpg","width":120,"height":25,"title":"File:Tongerloo abbey-Panorama-v2.jpg","license":null,"latitude":51.102987,"longitude":4.905585,"pageid":"7435200","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/7/7e/Tongerloo_abbey-Panorama-v2.jpg/300px-Tongerloo_abbey-Panorama-v2.jpg","author":"JH-man"},{"url":"//commons.wikimedia.org/wiki/File:Tootsi_jaamahoone.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/2/2c/Tootsi_jaamahoone.jpg/120px-Tootsi_jaamahoone.jpg","width":120,"height":55,"title":"File:Tootsi jaamahoone.jpg","author":"Iifar","license":null,"latitude":58.564390719722,"longitude":24.811145798333,"pageid":"20870086","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/2/2c/Tootsi_jaamahoone.jpg/300px-Tootsi_jaamahoone.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Torre_Agbar_-_Barcelona,_Spain_-_Jan_2007.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/e/e6/Torre_Agbar_-_Barcelona%2C_Spain_-_Jan_2007.jpg/48px-Torre_Agbar_-_Barcelona%2C_Spain_-_Jan_2007.jpg","width":48,"height":120,"title":"File:Torre Agbar - Barcelona, Spain - Jan 2007.jpg","author":"Diliff","license":null,"latitude":41.40331307854107,"longitude":2.188430428504944,"pageid":"1556533","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/e/e6/Torre_Agbar_-_Barcelona%2C_Spain_-_Jan_2007.jpg/300px-Torre_Agbar_-_Barcelona%2C_Spain_-_Jan_2007.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Torre_del_Oro_flag_Seville_Spain.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Torre_del_Oro_flag_Seville_Spain.jpg/80px-Torre_del_Oro_flag_Seville_Spain.jpg","width":80,"height":120,"title":"File:Torre del Oro flag Seville Spain.jpg","author":"Jebulon","license":null,"latitude":37.381239,"longitude":-5.995684,"pageid":"22980217","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Torre_del_Oro_flag_Seville_Spain.jpg/300px-Torre_del_Oro_flag_Seville_Spain.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Tulum_-_01.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/6/69/Tulum_-_01.jpg/120px-Tulum_-_01.jpg","width":120,"height":90,"title":"File:Tulum - 01.jpg","author":"Kadellar","license":null,"latitude":20.215942,"longitude":-87.428256,"pageid":"21409673","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/6/69/Tulum_-_01.jpg/300px-Tulum_-_01.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Upplandsmuseet_September_2012.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Upplandsmuseet_September_2012.jpg/120px-Upplandsmuseet_September_2012.jpg","width":120,"height":96,"title":"File:Upplandsmuseet September 2012.jpg","author":"ArildV","license":null,"latitude":59.85950833333334,"longitude":17.634216666666667,"pageid":"21935819","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Upplandsmuseet_September_2012.jpg/300px-Upplandsmuseet_September_2012.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Villa_Felseck_Kastelruth_North.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/8/88/Villa_Felseck_Kastelruth_North.jpg/85px-Villa_Felseck_Kastelruth_North.jpg","width":85,"height":120,"title":"File:Villa Felseck Kastelruth North.jpg","license":null,"latitude":46.567698,"longitude":11.557065,"pageid":"19823357","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/8/88/Villa_Felseck_Kastelruth_North.jpg/300px-Villa_Felseck_Kastelruth_North.jpg","author":"Moroder"},{"url":"//commons.wikimedia.org/wiki/File:Ville_de_Qu%C3%A9bec01.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Ville_de_Qu%C3%A9bec01.jpg/120px-Ville_de_Qu%C3%A9bec01.jpg","width":120,"height":90,"title":"File:Ville de Québec01.jpg","license":null,"latitude":46.80647222222222,"longitude":-71.18641666666667,"pageid":"3652144","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Ville_de_Qu%C3%A9bec01.jpg/300px-Ville_de_Qu%C3%A9bec01.jpg","author":"Bgag"},{"url":"//commons.wikimedia.org/wiki/File:Vyborg_06-2012_Castle_06.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/1/13/Vyborg_06-2012_Castle_06.jpg/120px-Vyborg_06-2012_Castle_06.jpg","width":120,"height":91,"title":"File:Vyborg 06-2012 Castle 06.jpg","license":null,"latitude":60.716972222222225,"longitude":28.725583333333333,"pageid":"21234206","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/1/13/Vyborg_06-2012_Castle_06.jpg/300px-Vyborg_06-2012_Castle_06.jpg","author":null},{"url":"//commons.wikimedia.org/wiki/File:Washington_Dulles_International_Airport_at_Dusk.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/9/92/Washington_Dulles_International_Airport_at_Dusk.jpg/120px-Washington_Dulles_International_Airport_at_Dusk.jpg","width":120,"height":71,"title":"File:Washington Dulles International Airport at Dusk.jpg","author":"Jovianeye","license":null,"latitude":38.9538,"longitude":-77.452015,"pageid":"16279816","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/9/92/Washington_Dulles_International_Airport_at_Dusk.jpg/300px-Washington_Dulles_International_Airport_at_Dusk.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Wilhelma_Maurisches_Landhaus_qtl1.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wilhelma_Maurisches_Landhaus_qtl1.jpg/120px-Wilhelma_Maurisches_Landhaus_qtl1.jpg","width":120,"height":69,"title":"File:Wilhelma Maurisches Landhaus qtl1.jpg","author":"Quartl","license":null,"latitude":48.806616,"longitude":9.205073,"pageid":"19519088","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wilhelma_Maurisches_Landhaus_qtl1.jpg/300px-Wilhelma_Maurisches_Landhaus_qtl1.jpg"},{"url":"//commons.wikimedia.org/wiki/File:W%C3%BCrzburger_Residenz,_Gartenfront.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/c/c2/W%C3%BCrzburger_Residenz%2C_Gartenfront.jpg/120px-W%C3%BCrzburger_Residenz%2C_Gartenfront.jpg","width":120,"height":29,"title":"File:Würzburger Residenz, Gartenfront.jpg","author":"Rainer Lippert","license":null,"latitude":49.792429,"longitude":9.940427,"pageid":"9974450","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/c/c2/W%C3%BCrzburger_Residenz%2C_Gartenfront.jpg/300px-W%C3%BCrzburger_Residenz%2C_Gartenfront.jpg"},{"url":"//commons.wikimedia.org/wiki/File:%C4%8Cerven%C3%BD_Kostelec_(Rothkosteletz)_-_church_of_Saint_James.JPG","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/3/30/%C4%8Cerven%C3%BD_Kostelec_%28Rothkosteletz%29_-_church_of_Saint_James.JPG/74px-%C4%8Cerven%C3%BD_Kostelec_%28Rothkosteletz%29_-_church_of_Saint_James.JPG","width":74,"height":120,"title":"File:Cervený Kostelec (Rothkosteletz) - church of Saint James.JPG","author":null,"license":null,"latitude":50.47666666666667,"longitude":16.09236111111111,"pageid":"21133650","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/3/30/%C4%8Cerven%C3%BD_Kostelec_%28Rothkosteletz%29_-_church_of_Saint_James.JPG/300px-%C4%8Cerven%C3%BD_Kostelec_%28Rothkosteletz%29_-_church_of_Saint_James.JPG"},{"url":"//commons.wikimedia.org/wiki/File:%D0%A6%D0%B5%D1%80%D0%BA%D0%BE%D0%B2%D1%8C-%D0%98%D0%B2%D0%B5%D1%80%D1%81%D0%BA%D0%BE%D0%B9-%D0%91%D0%BE%D0%B6%D0%B8%D0%B5%D0%B9-%D0%9C%D0%B0%D1%82%D0%B5%D1%80%D0%B8.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/e/e0/%D0%A6%D0%B5%D1%80%D0%BA%D0%BE%D0%B2%D1%8C-%D0%98%D0%B2%D0%B5%D1%80%D1%81%D0%BA%D0%BE%D0%B9-%D0%91%D0%BE%D0%B6%D0%B8%D0%B5%D0%B9-%D0%9C%D0%B0%D1%82%D0%B5%D1%80%D0%B8.jpg/82px-%D0%A6%D0%B5%D1%80%D0%BA%D0%BE%D0%B2%D1%8C-%D0%98%D0%B2%D0%B5%D1%80%D1%81%D0%BA%D0%BE%D0%B9-%D0%91%D0%BE%D0%B6%D0%B8%D0%B5%D0%B9-%D0%9C%D0%B0%D1%82%D0%B5%D1%80%D0%B8.jpg","width":82,"height":120,"title":"File:???????-????????-??????-??????.jpg","author":null,"license":null,"latitude":55.608024,"longitude":38.084949,"pageid":"17124102","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/e/e0/%D0%A6%D0%B5%D1%80%D0%BA%D0%BE%D0%B2%D1%8C-%D0%98%D0%B2%D0%B5%D1%80%D1%81%D0%BA%D0%BE%D0%B9-%D0%91%D0%BE%D0%B6%D0%B8%D0%B5%D0%B9-%D0%9C%D0%B0%D1%82%D0%B5%D1%80%D0%B8.jpg/300px-%D0%A6%D0%B5%D1%80%D0%BA%D0%BE%D0%B2%D1%8C-%D0%98%D0%B2%D0%B5%D1%80%D1%81%D0%BA%D0%BE%D0%B9-%D0%91%D0%BE%D0%B6%D0%B8%D0%B5%D0%B9-%D0%9C%D0%B0%D1%82%D0%B5%D1%80%D0%B8.jpg"},{"url":"//commons.wikimedia.org/wiki/File:01_Chateau_Peles.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/f/f9/01_Chateau_Peles.jpg/120px-01_Chateau_Peles.jpg","width":120,"height":86,"title":"File:01 Chateau Peles.jpg","author":"Myrabella","license":null,"latitude":45.35871,"longitude":25.54376,"pageid":"21585631","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/f/f9/01_Chateau_Peles.jpg/300px-01_Chateau_Peles.jpg"},{"url":"//commons.wikimedia.org/wiki/File:ACF_60L_Green_Building_Carlton.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/e/e4/ACF_60L_Green_Building_Carlton.jpg/120px-ACF_60L_Green_Building_Carlton.jpg","width":120,"height":81,"title":"File:ACF 60L Green Building Carlton.jpg","author":"Elekhh","license":null,"latitude":-37.804815,"longitude":144.960103,"pageid":"12782238","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/e/e4/ACF_60L_Green_Building_Carlton.jpg/300px-ACF_60L_Green_Building_Carlton.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Altes_Rathaus_Stuttgart_Heumaden_side_2011_01.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Altes_Rathaus_Stuttgart_Heumaden_side_2011_01.jpg/120px-Altes_Rathaus_Stuttgart_Heumaden_side_2011_01.jpg","width":120,"height":90,"title":"File:Altes Rathaus Stuttgart Heumaden side 2011 01.jpg","license":null,"latitude":48.745644444444444,"longitude":9.239116666666666,"pageid":"15646044","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Altes_Rathaus_Stuttgart_Heumaden_side_2011_01.jpg/300px-Altes_Rathaus_Stuttgart_Heumaden_side_2011_01.jpg","author":"Julian Herzog"},{"url":"//commons.wikimedia.org/wiki/File:Ancienne_abbaye_Val-de-Grace_cloitre_jardin.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/3/35/Ancienne_abbaye_Val-de-Grace_cloitre_jardin.jpg/120px-Ancienne_abbaye_Val-de-Grace_cloitre_jardin.jpg","width":120,"height":85,"title":"File:Ancienne abbaye Val-de-Grace cloitre jardin.jpg","author":"Myrabella","license":null,"latitude":48.83979,"longitude":2.34194,"pageid":"16646538","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/3/35/Ancienne_abbaye_Val-de-Grace_cloitre_jardin.jpg/300px-Ancienne_abbaye_Val-de-Grace_cloitre_jardin.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Aqueduc_Luynes.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Aqueduc_Luynes.jpg/120px-Aqueduc_Luynes.jpg","width":120,"height":72,"title":"File:Aqueduc Luynes.jpg","author":"Myrabella","license":null,"latitude":47.39757,"longitude":0.5683,"pageid":"21699263","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Aqueduc_Luynes.jpg/300px-Aqueduc_Luynes.jpg"},{"url":"//commons.wikimedia.org/wiki/File:ATC_Inveresk_Tasmania_2010.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/7/76/ATC_Inveresk_Tasmania_2010.jpg/120px-ATC_Inveresk_Tasmania_2010.jpg","width":120,"height":81,"title":"File:ATC Inveresk Tasmania 2010.jpg","author":"Elekhh","license":null,"latitude":-41.42777777777778,"longitude":147.13966666666667,"pageid":"12569699","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/7/76/ATC_Inveresk_Tasmania_2010.jpg/300px-ATC_Inveresk_Tasmania_2010.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Barry_St_Student_Housing_Melbourne_2011.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/8/82/Barry_St_Student_Housing_Melbourne_2011.jpg/120px-Barry_St_Student_Housing_Melbourne_2011.jpg","width":120,"height":81,"title":"File:Barry St Student Housing Melbourne 2011.jpg","author":"Elekhh","license":null,"latitude":-37.80277777777778,"longitude":144.95944444444444,"pageid":"13637400","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/8/82/Barry_St_Student_Housing_Melbourne_2011.jpg/300px-Barry_St_Student_Housing_Melbourne_2011.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Boulevard_Saint-Michel_(Paris),_num%C3%A9ro_4.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Boulevard_Saint-Michel_%28Paris%29%2C_num%C3%A9ro_4.jpg/120px-Boulevard_Saint-Michel_%28Paris%29%2C_num%C3%A9ro_4.jpg","width":120,"height":80,"title":"File:Boulevard Saint-Michel (Paris), numéro 4.jpg","license":null,"latitude":48.853025,"longitude":2.3437972222222223,"pageid":"17147885","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Boulevard_Saint-Michel_%28Paris%29%2C_num%C3%A9ro_4.jpg/300px-Boulevard_Saint-Michel_%28Paris%29%2C_num%C3%A9ro_4.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Boulevard_Saint-Michel_(Paris),_num%C3%A9ro_6,_porte.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/a/a1/Boulevard_Saint-Michel_%28Paris%29%2C_num%C3%A9ro_6%2C_porte.jpg/63px-Boulevard_Saint-Michel_%28Paris%29%2C_num%C3%A9ro_6%2C_porte.jpg","width":63,"height":120,"title":"File:Boulevard Saint-Michel (Paris), numéro 6, porte.jpg","license":null,"latitude":48.85298888888889,"longitude":2.3437916666666667,"pageid":"17147925","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/a/a1/Boulevard_Saint-Michel_%28Paris%29%2C_num%C3%A9ro_6%2C_porte.jpg/300px-Boulevard_Saint-Michel_%28Paris%29%2C_num%C3%A9ro_6%2C_porte.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Briqueterie_de_la_Bret%C3%AAche_-_vieux_four.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/0/06/Briqueterie_de_la_Bret%C3%AAche_-_vieux_four.jpg/80px-Briqueterie_de_la_Bret%C3%AAche_-_vieux_four.jpg","width":80,"height":120,"title":"File:Briqueterie de la Bretêche - vieux four.jpg","license":null,"latitude":47.686495803104016,"longitude":1.8053841590881348,"pageid":"6656315","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/0/06/Briqueterie_de_la_Bret%C3%AAche_-_vieux_four.jpg/300px-Briqueterie_de_la_Bret%C3%AAche_-_vieux_four.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Camp_celtique_de_la_Bure_-_baraque_1.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Camp_celtique_de_la_Bure_-_baraque_1.jpg/120px-Camp_celtique_de_la_Bure_-_baraque_1.jpg","width":120,"height":80,"title":"File:Camp celtique de la Bure - baraque 1.jpg","license":null,"latitude":48.326055555555556,"longitude":6.937833333333334,"pageid":"6748372","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Camp_celtique_de_la_Bure_-_baraque_1.jpg/300px-Camp_celtique_de_la_Bure_-_baraque_1.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Caserne_Verines_-_Place_de_la_Republique_3.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/8/87/Caserne_Verines_-_Place_de_la_Republique_3.jpg/80px-Caserne_Verines_-_Place_de_la_Republique_3.jpg","width":80,"height":120,"title":"File:Caserne Verines - Place de la Republique 3.jpg","license":null,"latitude":48.86802222222222,"longitude":2.3635472222222225,"pageid":"18976237","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/8/87/Caserne_Verines_-_Place_de_la_Republique_3.jpg/300px-Caserne_Verines_-_Place_de_la_Republique_3.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Cathedrale_de_Viviers_-_voute_3e_travee.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/0/01/Cathedrale_de_Viviers_-_voute_3e_travee.jpg/120px-Cathedrale_de_Viviers_-_voute_3e_travee.jpg","width":120,"height":77,"title":"File:Cathedrale de Viviers - voute 3e travee.jpg","license":null,"latitude":44.48196388888889,"longitude":4.6904055555555555,"pageid":"4846659","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/0/01/Cathedrale_de_Viviers_-_voute_3e_travee.jpg/300px-Cathedrale_de_Viviers_-_voute_3e_travee.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Cath%C3%A9drale_Notre-Dame_de_Laon,_tours_occidentales_01.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/3/3c/Cath%C3%A9drale_Notre-Dame_de_Laon%2C_tours_occidentales_01.jpg/120px-Cath%C3%A9drale_Notre-Dame_de_Laon%2C_tours_occidentales_01.jpg","width":120,"height":88,"title":"File:Cathédrale Notre-Dame de Laon, tours occidentales 01.jpg","license":null,"latitude":49.564255555555555,"longitude":3.6238833333333336,"pageid":"10305315","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/3/3c/Cath%C3%A9drale_Notre-Dame_de_Laon%2C_tours_occidentales_01.jpg/300px-Cath%C3%A9drale_Notre-Dame_de_Laon%2C_tours_occidentales_01.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Chapelle_des_templiers_de_Laon,_arri%C3%A8re.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Chapelle_des_templiers_de_Laon%2C_arri%C3%A8re.jpg/120px-Chapelle_des_templiers_de_Laon%2C_arri%C3%A8re.jpg","width":120,"height":105,"title":"File:Chapelle des templiers de Laon, arrière.jpg","license":null,"latitude":49.56295833333333,"longitude":3.627338888888889,"pageid":"10306815","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Chapelle_des_templiers_de_Laon%2C_arri%C3%A8re.jpg/300px-Chapelle_des_templiers_de_Laon%2C_arri%C3%A8re.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Chartres,_H%C3%B4tel_Montescot_06_entr%C3%A9e_principale_sur_cour.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/5/54/Chartres%2C_H%C3%B4tel_Montescot_06_entr%C3%A9e_principale_sur_cour.jpg/49px-Chartres%2C_H%C3%B4tel_Montescot_06_entr%C3%A9e_principale_sur_cour.jpg","width":49,"height":120,"title":"File:Chartres, Hôtel Montescot 06 entrée principale sur cour.jpg","license":null,"latitude":48.443977777777775,"longitude":1.489086111111111,"pageid":"15833849","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/5/54/Chartres%2C_H%C3%B4tel_Montescot_06_entr%C3%A9e_principale_sur_cour.jpg/300px-Chartres%2C_H%C3%B4tel_Montescot_06_entr%C3%A9e_principale_sur_cour.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Chartres,_Maison_15_rue_Saint-Brice,_lucarne_03.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/8/89/Chartres%2C_Maison_15_rue_Saint-Brice%2C_lucarne_03.jpg/80px-Chartres%2C_Maison_15_rue_Saint-Brice%2C_lucarne_03.jpg","width":80,"height":120,"title":"File:Chartres, Maison 15 rue Saint-Brice, lucarne 03.jpg","license":null,"latitude":48.44027777777777,"longitude":1.4913888888888889,"pageid":"17546199","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/8/89/Chartres%2C_Maison_15_rue_Saint-Brice%2C_lucarne_03.jpg/300px-Chartres%2C_Maison_15_rue_Saint-Brice%2C_lucarne_03.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Chateau_de_la_Ferriere_Vaux-sur-Aure.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Chateau_de_la_Ferriere_Vaux-sur-Aure.jpg/120px-Chateau_de_la_Ferriere_Vaux-sur-Aure.jpg","width":120,"height":79,"title":"File:Chateau de la Ferriere Vaux-sur-Aure.jpg","author":"Myrabella","license":null,"latitude":49.30296,"longitude":-0.70269,"pageid":"25180449","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Chateau_de_la_Ferriere_Vaux-sur-Aure.jpg/300px-Chateau_de_la_Ferriere_Vaux-sur-Aure.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Chateau_du_Lude_facade_est.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Chateau_du_Lude_facade_est.jpg/120px-Chateau_du_Lude_facade_est.jpg","width":120,"height":80,"title":"File:Chateau du Lude facade est.jpg","author":"Myrabella","license":null,"latitude":47.64762,"longitude":0.15995,"pageid":"21442860","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Chateau_du_Lude_facade_est.jpg/300px-Chateau_du_Lude_facade_est.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Chateau_Sainte-Marie-du-Mont.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/d/da/Chateau_Sainte-Marie-du-Mont.jpg/120px-Chateau_Sainte-Marie-du-Mont.jpg","width":120,"height":80,"title":"File:Chateau Sainte-Marie-du-Mont.jpg","author":"Myrabella","license":null,"latitude":49.37813,"longitude":-1.22389,"pageid":"25193928","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/d/da/Chateau_Sainte-Marie-du-Mont.jpg/300px-Chateau_Sainte-Marie-du-Mont.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Ch%C3%A2teau_de_Chambord_-_escalier_hors-%C5%93uvre.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/9/92/Ch%C3%A2teau_de_Chambord_-_escalier_hors-%C5%93uvre.jpg/57px-Ch%C3%A2teau_de_Chambord_-_escalier_hors-%C5%93uvre.jpg","width":57,"height":120,"title":"File:Château de Chambord - escalier hors-œuvre.jpg","license":null,"latitude":47.61601431670302,"longitude":1.516563892364502,"pageid":"6637067","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/9/92/Ch%C3%A2teau_de_Chambord_-_escalier_hors-%C5%93uvre.jpg/300px-Ch%C3%A2teau_de_Chambord_-_escalier_hors-%C5%93uvre.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Facciata_del_duomo.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/0/0c/Facciata_del_duomo.jpg/120px-Facciata_del_duomo.jpg","width":120,"height":79,"title":"File:Facciata del duomo.jpg","author":"Archaeodontosaurus","license":null,"latitude":45.666525,"longitude":12.242291,"pageid":"15213008","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/0/0c/Facciata_del_duomo.jpg/300px-Facciata_del_duomo.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Fen%C3%AAtre_communs_du_ch%C3%A2teau_de_Chambord.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/9/90/Fen%C3%AAtre_communs_du_ch%C3%A2teau_de_Chambord.jpg/80px-Fen%C3%AAtre_communs_du_ch%C3%A2teau_de_Chambord.jpg","width":80,"height":120,"title":"File:Fenêtre communs du château de Chambord.jpg","license":null,"latitude":47.616158961804075,"longitude":1.517486572265625,"pageid":"6641518","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/9/90/Fen%C3%AAtre_communs_du_ch%C3%A2teau_de_Chambord.jpg/300px-Fen%C3%AAtre_communs_du_ch%C3%A2teau_de_Chambord.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Fondaco_dei_Tedeschi_2012-05-13.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/6/66/Fondaco_dei_Tedeschi_2012-05-13.jpg/120px-Fondaco_dei_Tedeschi_2012-05-13.jpg","width":120,"height":81,"title":"File:Fondaco dei Tedeschi 2012-05-13.jpg","author":"Archaeodontosaurus","license":null,"latitude":45.438186,"longitude":12.335876,"pageid":"19424130","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/6/66/Fondaco_dei_Tedeschi_2012-05-13.jpg/300px-Fondaco_dei_Tedeschi_2012-05-13.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Fontaine_rue_Charlemagne.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/f/fc/Fontaine_rue_Charlemagne.jpg/80px-Fontaine_rue_Charlemagne.jpg","width":80,"height":120,"title":"File:Fontaine rue Charlemagne.jpg","license":null,"latitude":48.85398333333333,"longitude":2.361138888888889,"pageid":"10276922","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/f/fc/Fontaine_rue_Charlemagne.jpg/300px-Fontaine_rue_Charlemagne.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Fontevraud,_chapiteau_de_la_salle_capitulaire.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/4/40/Fontevraud%2C_chapiteau_de_la_salle_capitulaire.jpg/80px-Fontevraud%2C_chapiteau_de_la_salle_capitulaire.jpg","width":80,"height":120,"title":"File:Fontevraud, chapiteau de la salle capitulaire.jpg","license":null,"latitude":47.18111111111111,"longitude":0.052138888888888894,"pageid":"10825511","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/4/40/Fontevraud%2C_chapiteau_de_la_salle_capitulaire.jpg/300px-Fontevraud%2C_chapiteau_de_la_salle_capitulaire.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Fontevraud,_clo%C3%AEtre_du_Grand-Mo%C3%BBtier.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/e/e1/Fontevraud%2C_clo%C3%AEtre_du_Grand-Mo%C3%BBtier.jpg/120px-Fontevraud%2C_clo%C3%AEtre_du_Grand-Mo%C3%BBtier.jpg","width":120,"height":74,"title":"File:Fontevraud, cloître du Grand-Moûtier.jpg","license":null,"latitude":47.181061111111106,"longitude":0.051430555555555556,"pageid":"10844779","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/e/e1/Fontevraud%2C_clo%C3%AEtre_du_Grand-Mo%C3%BBtier.jpg/300px-Fontevraud%2C_clo%C3%AEtre_du_Grand-Mo%C3%BBtier.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Fontevraud,_fa%C3%A7ade_abbatiale.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/8/81/Fontevraud%2C_fa%C3%A7ade_abbatiale.jpg/67px-Fontevraud%2C_fa%C3%A7ade_abbatiale.jpg","width":67,"height":120,"title":"File:Fontevraud, façade abbatiale.jpg","license":null,"latitude":47.18170833333333,"longitude":0.05123333333333334,"pageid":"10824749","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/8/81/Fontevraud%2C_fa%C3%A7ade_abbatiale.jpg/300px-Fontevraud%2C_fa%C3%A7ade_abbatiale.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Foug%C3%A8res,_32_rue_Nationale,_porte.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/d/d8/Foug%C3%A8res%2C_32_rue_Nationale%2C_porte.jpg/120px-Foug%C3%A8res%2C_32_rue_Nationale%2C_porte.jpg","width":120,"height":81,"title":"File:Fougères, 32 rue Nationale, porte.jpg","license":null,"latitude":48.35299166666667,"longitude":-1.204086111111111,"pageid":"11465034","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/d/d8/Foug%C3%A8res%2C_32_rue_Nationale%2C_porte.jpg/300px-Foug%C3%A8res%2C_32_rue_Nationale%2C_porte.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Foug%C3%A8res,_37_rue_Nationale,_porte.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Foug%C3%A8res%2C_37_rue_Nationale%2C_porte.jpg/102px-Foug%C3%A8res%2C_37_rue_Nationale%2C_porte.jpg","width":102,"height":120,"title":"File:Fougères, 37 rue Nationale, porte.jpg","license":null,"latitude":48.35313333333333,"longitude":-1.2041083333333333,"pageid":"11464995","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Foug%C3%A8res%2C_37_rue_Nationale%2C_porte.jpg/300px-Foug%C3%A8res%2C_37_rue_Nationale%2C_porte.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Galerie_V%C3%A9ro-Dodat_03.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/2/28/Galerie_V%C3%A9ro-Dodat_03.jpg/80px-Galerie_V%C3%A9ro-Dodat_03.jpg","width":80,"height":120,"title":"File:Galerie Véro-Dodat 03.jpg","license":null,"latitude":48.86311388888889,"longitude":2.339436111111111,"pageid":"13255733","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/2/28/Galerie_V%C3%A9ro-Dodat_03.jpg/300px-Galerie_V%C3%A9ro-Dodat_03.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Galerie_V%C3%A9ro-Dodat_04.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/f/fd/Galerie_V%C3%A9ro-Dodat_04.jpg/80px-Galerie_V%C3%A9ro-Dodat_04.jpg","width":80,"height":120,"title":"File:Galerie Véro-Dodat 04.jpg","license":null,"latitude":48.86311388888889,"longitude":2.339436111111111,"pageid":"13255740","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/f/fd/Galerie_V%C3%A9ro-Dodat_04.jpg/300px-Galerie_V%C3%A9ro-Dodat_04.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Gare_de_l%27Est,_Paris_-_Strasbourg,_Seine,_Rhin.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/8/84/Gare_de_l%27Est%2C_Paris_-_Strasbourg%2C_Seine%2C_Rhin.jpg/120px-Gare_de_l%27Est%2C_Paris_-_Strasbourg%2C_Seine%2C_Rhin.jpg","width":120,"height":73,"title":"File:Gare de l'Est, Paris - Strasbourg, Seine, Rhin.jpg","license":null,"latitude":48.87629722222222,"longitude":2.358166666666667,"pageid":"14665086","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/8/84/Gare_de_l%27Est%2C_Paris_-_Strasbourg%2C_Seine%2C_Rhin.jpg/300px-Gare_de_l%27Est%2C_Paris_-_Strasbourg%2C_Seine%2C_Rhin.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Guirlande_Panth%C3%A9on_de_Paris.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/6/6c/Guirlande_Panth%C3%A9on_de_Paris.jpg/120px-Guirlande_Panth%C3%A9on_de_Paris.jpg","width":120,"height":90,"title":"File:Guirlande Panthéon de Paris.jpg","license":null,"latitude":48.84641747361601,"longitude":2.346482276916504,"pageid":"4517799","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/6/6c/Guirlande_Panth%C3%A9on_de_Paris.jpg/300px-Guirlande_Panth%C3%A9on_de_Paris.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Haillainville,_cimeti%C3%A8re,_portail_01.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/5/52/Haillainville%2C_cimeti%C3%A8re%2C_portail_01.jpg/80px-Haillainville%2C_cimeti%C3%A8re%2C_portail_01.jpg","width":80,"height":120,"title":"File:Haillainville, cimetière, portail 01.jpg","license":null,"latitude":48.39532777777778,"longitude":6.484466666666667,"pageid":"17456998","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/5/52/Haillainville%2C_cimeti%C3%A8re%2C_portail_01.jpg/300px-Haillainville%2C_cimeti%C3%A8re%2C_portail_01.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Hotel_Pince_Angers.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/1/1e/Hotel_Pince_Angers.jpg/63px-Hotel_Pince_Angers.jpg","width":63,"height":120,"title":"File:Hotel Pince Angers.jpg","license":null,"latitude":47.471833333333336,"longitude":-0.5516944444444445,"pageid":"4939514","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/1/1e/Hotel_Pince_Angers.jpg/300px-Hotel_Pince_Angers.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:H%C3%A9d%C3%A9_-_%C3%89glise_Notre-Dame_02.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/c/c7/H%C3%A9d%C3%A9_-_%C3%89glise_Notre-Dame_02.jpg/80px-H%C3%A9d%C3%A9_-_%C3%89glise_Notre-Dame_02.jpg","width":80,"height":120,"title":"File:Hédé - Église Notre-Dame 02.jpg","license":null,"latitude":48.296388888888885,"longitude":-1.8010972222222223,"pageid":"10949140","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/c/c7/H%C3%A9d%C3%A9_-_%C3%89glise_Notre-Dame_02.jpg/300px-H%C3%A9d%C3%A9_-_%C3%89glise_Notre-Dame_02.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:H%C3%A9d%C3%A9_-_%C3%89glise_Notre-Dame_03.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/8/8e/H%C3%A9d%C3%A9_-_%C3%89glise_Notre-Dame_03.jpg/46px-H%C3%A9d%C3%A9_-_%C3%89glise_Notre-Dame_03.jpg","width":46,"height":120,"title":"File:Hédé - Église Notre-Dame 03.jpg","license":null,"latitude":48.296499999999995,"longitude":-1.8010777777777778,"pageid":"10949153","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/8/8e/H%C3%A9d%C3%A9_-_%C3%89glise_Notre-Dame_03.jpg/300px-H%C3%A9d%C3%A9_-_%C3%89glise_Notre-Dame_03.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:H%C3%A9d%C3%A9_-_%C3%89glise_Notre-Dame_06.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/a/ac/H%C3%A9d%C3%A9_-_%C3%89glise_Notre-Dame_06.jpg/120px-H%C3%A9d%C3%A9_-_%C3%89glise_Notre-Dame_06.jpg","width":120,"height":104,"title":"File:Hédé - Église Notre-Dame 06.jpg","license":null,"latitude":48.296794444444444,"longitude":-1.8014972222222223,"pageid":"10949176","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/a/ac/H%C3%A9d%C3%A9_-_%C3%89glise_Notre-Dame_06.jpg/300px-H%C3%A9d%C3%A9_-_%C3%89glise_Notre-Dame_06.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Industriskolan_Borl%C3%A4nge_01.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Industriskolan_Borl%C3%A4nge_01.jpg/120px-Industriskolan_Borl%C3%A4nge_01.jpg","width":120,"height":80,"title":"File:Industriskolan Borlänge 01.jpg","author":null,"license":null,"latitude":60.492222222222225,"longitude":15.435166666666667,"pageid":"21091704","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Industriskolan_Borl%C3%A4nge_01.jpg/300px-Industriskolan_Borl%C3%A4nge_01.jpg"},{"url":"//commons.wikimedia.org/wiki/File:La_Loggia_dei_Cavalieri.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/e/ef/La_Loggia_dei_Cavalieri.jpg/120px-La_Loggia_dei_Cavalieri.jpg","width":120,"height":104,"title":"File:La Loggia dei Cavalieri.jpg","author":"Archaeodontosaurus","license":null,"latitude":45.666525,"longitude":12.242291,"pageid":"15337944","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/e/ef/La_Loggia_dei_Cavalieri.jpg/300px-La_Loggia_dei_Cavalieri.jpg"},{"url":"//commons.wikimedia.org/wiki/File:La_Pitie-Salpetriere_under_snow_2013-03-12.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/d/d5/La_Pitie-Salpetriere_under_snow_2013-03-12.jpg/120px-La_Pitie-Salpetriere_under_snow_2013-03-12.jpg","width":120,"height":42,"title":"File:La Pitie-Salpetriere under snow 2013-03-12.jpg","license":null,"latitude":48.84019444444445,"longitude":2.363166666666667,"pageid":"25096959","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/d/d5/La_Pitie-Salpetriere_under_snow_2013-03-12.jpg/300px-La_Pitie-Salpetriere_under_snow_2013-03-12.jpg","author":"Jastrow"},{"url":"//commons.wikimedia.org/wiki/File:Le_Vesinet_villa_Berthe_La_Hublotiere_Guimard_porche_porte.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/1/1f/Le_Vesinet_villa_Berthe_La_Hublotiere_Guimard_porche_porte.jpg/80px-Le_Vesinet_villa_Berthe_La_Hublotiere_Guimard_porche_porte.jpg","width":80,"height":120,"title":"File:Le Vesinet villa Berthe La Hublotiere Guimard porche porte.jpg","author":"Myrabella","license":null,"latitude":48.89937,"longitude":2.1188,"pageid":"23645059","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/1/1f/Le_Vesinet_villa_Berthe_La_Hublotiere_Guimard_porche_porte.jpg/300px-Le_Vesinet_villa_Berthe_La_Hublotiere_Guimard_porche_porte.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Le_Vesinet_villa_Berthe_La_Hublotiere_Hector_Guimard.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/0/06/Le_Vesinet_villa_Berthe_La_Hublotiere_Hector_Guimard.jpg/120px-Le_Vesinet_villa_Berthe_La_Hublotiere_Hector_Guimard.jpg","width":120,"height":85,"title":"File:Le Vesinet villa Berthe La Hublotiere Hector Guimard.jpg","author":"Myrabella","license":null,"latitude":48.89915,"longitude":2.11878,"pageid":"23588537","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/0/06/Le_Vesinet_villa_Berthe_La_Hublotiere_Hector_Guimard.jpg/300px-Le_Vesinet_villa_Berthe_La_Hublotiere_Hector_Guimard.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Lindau_Harbor_Lake_Constance_01.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/1/13/Lindau_Harbor_Lake_Constance_01.jpg/120px-Lindau_Harbor_Lake_Constance_01.jpg","width":120,"height":80,"title":"File:Lindau Harbor Lake Constance 01.jpg","license":null,"latitude":47.54355833333333,"longitude":9.681463888888889,"pageid":"24890930","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/1/13/Lindau_Harbor_Lake_Constance_01.jpg/300px-Lindau_Harbor_Lake_Constance_01.jpg","author":"Julian Herzog"},{"url":"//commons.wikimedia.org/wiki/File:Lindau_Harbor_Lake_Constance_MS_Schwaben_01.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/e/e3/Lindau_Harbor_Lake_Constance_MS_Schwaben_01.jpg/120px-Lindau_Harbor_Lake_Constance_MS_Schwaben_01.jpg","width":120,"height":80,"title":"File:Lindau Harbor Lake Constance MS Schwaben 01.jpg","license":null,"latitude":47.54306944444444,"longitude":9.683813888888888,"pageid":"24890948","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/e/e3/Lindau_Harbor_Lake_Constance_MS_Schwaben_01.jpg/300px-Lindau_Harbor_Lake_Constance_MS_Schwaben_01.jpg","author":"Julian Herzog"},{"url":"//commons.wikimedia.org/wiki/File:Mairie_du_10e_arrondissement_de_Paris_-_clocheton.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/2/29/Mairie_du_10e_arrondissement_de_Paris_-_clocheton.jpg/80px-Mairie_du_10e_arrondissement_de_Paris_-_clocheton.jpg","width":80,"height":120,"title":"File:Mairie du 10e arrondissement de Paris - clocheton.jpg","license":null,"latitude":48.871722222222225,"longitude":2.3570111111111114,"pageid":"4555291","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/2/29/Mairie_du_10e_arrondissement_de_Paris_-_clocheton.jpg/300px-Mairie_du_10e_arrondissement_de_Paris_-_clocheton.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Maison_Adam_Angers.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/0/01/Maison_Adam_Angers.jpg/80px-Maison_Adam_Angers.jpg","width":80,"height":120,"title":"File:Maison Adam Angers.jpg","license":null,"latitude":47.47016666666667,"longitude":-0.5543611111111112,"pageid":"5020424","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/0/01/Maison_Adam_Angers.jpg/300px-Maison_Adam_Angers.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Maison_des_Arts_de_Malakoff,_d%C3%A9tail_03.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/0/04/Maison_des_Arts_de_Malakoff%2C_d%C3%A9tail_03.jpg/120px-Maison_des_Arts_de_Malakoff%2C_d%C3%A9tail_03.jpg","width":120,"height":70,"title":"File:Maison des Arts de Malakoff, détail 03.jpg","license":null,"latitude":48.81796944444445,"longitude":2.3080555555555553,"pageid":"8972266","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/0/04/Maison_des_Arts_de_Malakoff%2C_d%C3%A9tail_03.jpg/300px-Maison_des_Arts_de_Malakoff%2C_d%C3%A9tail_03.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Melbourne_terrace.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Melbourne_terrace.jpg/120px-Melbourne_terrace.jpg","width":120,"height":83,"title":"File:Melbourne terrace.jpg","author":"Elekhh","license":null,"latitude":-37.808783,"longitude":144.957832,"pageid":"12782107","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Melbourne_terrace.jpg/300px-Melbourne_terrace.jpg"},{"url":"//commons.wikimedia.org/wiki/File:Nisserska_huset_Falun_01.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/c/c2/Nisserska_huset_Falun_01.jpg/120px-Nisserska_huset_Falun_01.jpg","width":120,"height":80,"title":"File:Nisserska huset Falun 01.jpg","license":null,"latitude":60.60733333333334,"longitude":15.641583333333333,"pageid":"24998781","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/c/c2/Nisserska_huset_Falun_01.jpg/300px-Nisserska_huset_Falun_01.jpg","author":null},{"url":"//commons.wikimedia.org/wiki/File:Palais_de_Justice,_34_quai_des_Orf%C3%A8vres,_porte_01.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/5/55/Palais_de_Justice%2C_34_quai_des_Orf%C3%A8vres%2C_porte_01.jpg/80px-Palais_de_Justice%2C_34_quai_des_Orf%C3%A8vres%2C_porte_01.jpg","width":80,"height":120,"title":"File:Palais de Justice, 34 quai des Orfèvres, porte 01.jpg","license":null,"latitude":48.85498333333334,"longitude":2.3436861111111114,"pageid":"17244958","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/5/55/Palais_de_Justice%2C_34_quai_des_Orf%C3%A8vres%2C_porte_01.jpg/300px-Palais_de_Justice%2C_34_quai_des_Orf%C3%A8vres%2C_porte_01.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Palais_de_Justice,_34_quai_des_Orf%C3%A8vres,_porte_02.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/9/97/Palais_de_Justice%2C_34_quai_des_Orf%C3%A8vres%2C_porte_02.jpg/120px-Palais_de_Justice%2C_34_quai_des_Orf%C3%A8vres%2C_porte_02.jpg","width":120,"height":61,"title":"File:Palais de Justice, 34 quai des Orfèvres, porte 02.jpg","license":null,"latitude":48.85498333333334,"longitude":2.3436861111111114,"pageid":"17244984","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/9/97/Palais_de_Justice%2C_34_quai_des_Orf%C3%A8vres%2C_porte_02.jpg/300px-Palais_de_Justice%2C_34_quai_des_Orf%C3%A8vres%2C_porte_02.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Palais_de_Justice,_pavillon_d%27angle_quai_des_Orf%C3%A8vres-boulevard_du_Palais,_lucarne.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/c/c9/Palais_de_Justice%2C_pavillon_d%27angle_quai_des_Orf%C3%A8vres-boulevard_du_Palais%2C_lucarne.jpg/120px-Palais_de_Justice%2C_pavillon_d%27angle_quai_des_Orf%C3%A8vres-boulevard_du_Palais%2C_lucarne.jpg","width":120,"height":80,"title":"File:Palais de Justice, pavillon d'angle quai des Orfèvres-boulevard du Palais, lucarne.jpg","license":null,"latitude":48.85412777777778,"longitude":2.3448722222222225,"pageid":"17245624","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/c/c9/Palais_de_Justice%2C_pavillon_d%27angle_quai_des_Orf%C3%A8vres-boulevard_du_Palais%2C_lucarne.jpg/300px-Palais_de_Justice%2C_pavillon_d%27angle_quai_des_Orf%C3%A8vres-boulevard_du_Palais%2C_lucarne.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Palais_de_Justice,_pavillon_d%27angle_quai_des_Orf%C3%A8vres-boulevard_du_Palais,_porte.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Palais_de_Justice%2C_pavillon_d%27angle_quai_des_Orf%C3%A8vres-boulevard_du_Palais%2C_porte.jpg/80px-Palais_de_Justice%2C_pavillon_d%27angle_quai_des_Orf%C3%A8vres-boulevard_du_Palais%2C_porte.jpg","width":80,"height":120,"title":"File:Palais de Justice, pavillon d'angle quai des Orfèvres-boulevard du Palais, porte.jpg","license":null,"latitude":48.85412777777778,"longitude":2.3448722222222225,"pageid":"17245645","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Palais_de_Justice%2C_pavillon_d%27angle_quai_des_Orf%C3%A8vres-boulevard_du_Palais%2C_porte.jpg/300px-Palais_de_Justice%2C_pavillon_d%27angle_quai_des_Orf%C3%A8vres-boulevard_du_Palais%2C_porte.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Palais_de_Justice,_pavillon_d%27angle_quai_des_Orf%C3%A8vres-boulevard_du_Palais.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/9/98/Palais_de_Justice%2C_pavillon_d%27angle_quai_des_Orf%C3%A8vres-boulevard_du_Palais.jpg/80px-Palais_de_Justice%2C_pavillon_d%27angle_quai_des_Orf%C3%A8vres-boulevard_du_Palais.jpg","width":80,"height":120,"title":"File:Palais de Justice, pavillon d'angle quai des Orfèvres-boulevard du Palais.jpg","license":null,"latitude":48.85412777777778,"longitude":2.3448722222222225,"pageid":"17245667","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/9/98/Palais_de_Justice%2C_pavillon_d%27angle_quai_des_Orf%C3%A8vres-boulevard_du_Palais.jpg/300px-Palais_de_Justice%2C_pavillon_d%27angle_quai_des_Orf%C3%A8vres-boulevard_du_Palais.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Paris,_caserne_Ch%C3%A2teau-Landon_01.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/6/6c/Paris%2C_caserne_Ch%C3%A2teau-Landon_01.jpg/120px-Paris%2C_caserne_Ch%C3%A2teau-Landon_01.jpg","width":120,"height":101,"title":"File:Paris, caserne Château-Landon 01.jpg","license":null,"latitude":48.88131111111111,"longitude":2.361816666666667,"pageid":"18937753","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/6/6c/Paris%2C_caserne_Ch%C3%A2teau-Landon_01.jpg/300px-Paris%2C_caserne_Ch%C3%A2teau-Landon_01.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Paris,_caserne_Ch%C3%A2teau-Landon_02.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/e/e7/Paris%2C_caserne_Ch%C3%A2teau-Landon_02.jpg/80px-Paris%2C_caserne_Ch%C3%A2teau-Landon_02.jpg","width":80,"height":120,"title":"File:Paris, caserne Château-Landon 02.jpg","license":null,"latitude":48.88131111111111,"longitude":2.361816666666667,"pageid":"18937771","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/e/e7/Paris%2C_caserne_Ch%C3%A2teau-Landon_02.jpg/300px-Paris%2C_caserne_Ch%C3%A2teau-Landon_02.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Paris,_caserne_Ch%C3%A2teau-Landon_03.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/8/84/Paris%2C_caserne_Ch%C3%A2teau-Landon_03.jpg/92px-Paris%2C_caserne_Ch%C3%A2teau-Landon_03.jpg","width":92,"height":120,"title":"File:Paris, caserne Château-Landon 03.jpg","license":null,"latitude":48.88131111111111,"longitude":2.361816666666667,"pageid":"18937839","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/8/84/Paris%2C_caserne_Ch%C3%A2teau-Landon_03.jpg/300px-Paris%2C_caserne_Ch%C3%A2teau-Landon_03.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Paris,_caserne_Ch%C3%A2teau-Landon_14.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Paris%2C_caserne_Ch%C3%A2teau-Landon_14.jpg/120px-Paris%2C_caserne_Ch%C3%A2teau-Landon_14.jpg","width":120,"height":97,"title":"File:Paris, caserne Château-Landon 14.jpg","license":null,"latitude":48.88168611111111,"longitude":2.3619083333333335,"pageid":"18938348","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Paris%2C_caserne_Ch%C3%A2teau-Landon_14.jpg/300px-Paris%2C_caserne_Ch%C3%A2teau-Landon_14.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Paris,_caserne_Ch%C3%A2teau-Landon_15.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Paris%2C_caserne_Ch%C3%A2teau-Landon_15.jpg/80px-Paris%2C_caserne_Ch%C3%A2teau-Landon_15.jpg","width":80,"height":120,"title":"File:Paris, caserne Château-Landon 15.jpg","license":null,"latitude":48.881727777777776,"longitude":2.3617944444444445,"pageid":"18938379","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Paris%2C_caserne_Ch%C3%A2teau-Landon_15.jpg/300px-Paris%2C_caserne_Ch%C3%A2teau-Landon_15.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Paris,_Gare_de_l%27Est,_Strasbourg_(statue)_et_drapeau_russe.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/2/24/Paris%2C_Gare_de_l%27Est%2C_Strasbourg_%28statue%29_et_drapeau_russe.jpg/80px-Paris%2C_Gare_de_l%27Est%2C_Strasbourg_%28statue%29_et_drapeau_russe.jpg","width":80,"height":120,"title":"File:Paris, Gare de l'Est, Strasbourg (statue) et drapeau russe.jpg","license":null,"latitude":48.876325,"longitude":2.3585722222222225,"pageid":"11977055","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/2/24/Paris%2C_Gare_de_l%27Est%2C_Strasbourg_%28statue%29_et_drapeau_russe.jpg/300px-Paris%2C_Gare_de_l%27Est%2C_Strasbourg_%28statue%29_et_drapeau_russe.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Pavillon_Aubette.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/e/ef/Pavillon_Aubette.jpg/120px-Pavillon_Aubette.jpg","width":120,"height":80,"title":"File:Pavillon Aubette.jpg","license":null,"latitude":48.58327777777778,"longitude":7.745694444444444,"pageid":"5670419","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/e/ef/Pavillon_Aubette.jpg/300px-Pavillon_Aubette.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Petit_Trianon,_fa%C3%A7ade_est_01.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/9/96/Petit_Trianon%2C_fa%C3%A7ade_est_01.jpg/120px-Petit_Trianon%2C_fa%C3%A7ade_est_01.jpg","width":120,"height":80,"title":"File:Petit Trianon, façade est 01.jpg","license":null,"latitude":48.81594722222222,"longitude":2.1111555555555555,"pageid":"15932808","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/9/96/Petit_Trianon%2C_fa%C3%A7ade_est_01.jpg/300px-Petit_Trianon%2C_fa%C3%A7ade_est_01.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Petit_Trianon,_th%C3%A9%C3%A2tre_de_la_Reine,_entr%C3%A9e.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/9/98/Petit_Trianon%2C_th%C3%A9%C3%A2tre_de_la_Reine%2C_entr%C3%A9e.jpg/80px-Petit_Trianon%2C_th%C3%A9%C3%A2tre_de_la_Reine%2C_entr%C3%A9e.jpg","width":80,"height":120,"title":"File:Petit Trianon, théâtre de la Reine, entrée.jpg","license":null,"latitude":48.815838888888884,"longitude":2.1083444444444446,"pageid":"15831088","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/9/98/Petit_Trianon%2C_th%C3%A9%C3%A2tre_de_la_Reine%2C_entr%C3%A9e.jpg/300px-Petit_Trianon%2C_th%C3%A9%C3%A2tre_de_la_Reine%2C_entr%C3%A9e.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Pfaffenwaldring_32_Universit%C3%A4t_Stuttgart.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/9/91/Pfaffenwaldring_32_Universit%C3%A4t_Stuttgart.jpg/72px-Pfaffenwaldring_32_Universit%C3%A4t_Stuttgart.jpg","width":72,"height":120,"title":"File:Pfaffenwaldring 32 Universität Stuttgart.jpg","license":null,"latitude":48.75073611111111,"longitude":9.102794444444443,"pageid":"24884866","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/9/91/Pfaffenwaldring_32_Universit%C3%A4t_Stuttgart.jpg/300px-Pfaffenwaldring_32_Universit%C3%A4t_Stuttgart.jpg","author":"Julian Herzog"},{"url":"//commons.wikimedia.org/wiki/File:Pfaffenwaldring_Gastdozentenhaus_Universit%C3%A4t_Stuttgart_Panorama.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/e/e0/Pfaffenwaldring_Gastdozentenhaus_Universit%C3%A4t_Stuttgart_Panorama.jpg/120px-Pfaffenwaldring_Gastdozentenhaus_Universit%C3%A4t_Stuttgart_Panorama.jpg","width":120,"height":43,"title":"File:Pfaffenwaldring Gastdozentenhaus Universität Stuttgart Panorama.jpg","license":null,"latitude":48.745844444444444,"longitude":9.102727777777778,"pageid":"24884888","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/e/e0/Pfaffenwaldring_Gastdozentenhaus_Universit%C3%A4t_Stuttgart_Panorama.jpg/300px-Pfaffenwaldring_Gastdozentenhaus_Universit%C3%A4t_Stuttgart_Panorama.jpg","author":"Julian Herzog"},{"url":"//commons.wikimedia.org/wiki/File:Pf%C3%A4nder_radio_tower.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/c/c1/Pf%C3%A4nder_radio_tower.jpg/76px-Pf%C3%A4nder_radio_tower.jpg","width":76,"height":120,"title":"File:Pfänder radio tower.jpg","license":null,"latitude":47.50808055555556,"longitude":9.779908333333335,"pageid":"24890470","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/c/c1/Pf%C3%A4nder_radio_tower.jpg/300px-Pf%C3%A4nder_radio_tower.jpg","author":"Julian Herzog"},{"url":"//commons.wikimedia.org/wiki/File:Place_Martin-Nadaud_(Paris),_num%C3%A9ro_3_sous_la_neige_01.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/e/e7/Place_Martin-Nadaud_%28Paris%29%2C_num%C3%A9ro_3_sous_la_neige_01.jpg/120px-Place_Martin-Nadaud_%28Paris%29%2C_num%C3%A9ro_3_sous_la_neige_01.jpg","width":120,"height":80,"title":"File:Place Martin-Nadaud (Paris), numéro 3 sous la neige 01.jpg","license":null,"latitude":48.865097222222225,"longitude":2.3945527777777778,"pageid":"24879994","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/e/e7/Place_Martin-Nadaud_%28Paris%29%2C_num%C3%A9ro_3_sous_la_neige_01.jpg/300px-Place_Martin-Nadaud_%28Paris%29%2C_num%C3%A9ro_3_sous_la_neige_01.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Place_T10_(Paris),_pignon_%C3%A9cole.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/1/1f/Place_T10_%28Paris%29%2C_pignon_%C3%A9cole.jpg/51px-Place_T10_%28Paris%29%2C_pignon_%C3%A9cole.jpg","width":51,"height":120,"title":"File:Place T10 (Paris), pignon école.jpg","license":null,"latitude":48.88257,"longitude":2.361972,"pageid":"20307594","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/1/1f/Place_T10_%28Paris%29%2C_pignon_%C3%A9cole.jpg/300px-Place_T10_%28Paris%29%2C_pignon_%C3%A9cole.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Porte_Saint-Denis_01.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Porte_Saint-Denis_01.jpg/120px-Porte_Saint-Denis_01.jpg","width":120,"height":90,"title":"File:Porte Saint-Denis 01.jpg","license":null,"latitude":48.86942777777778,"longitude":2.3524527777777777,"pageid":"16505127","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Porte_Saint-Denis_01.jpg/300px-Porte_Saint-Denis_01.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Porte_Saint-Denis,_intrados.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/0/07/Porte_Saint-Denis%2C_intrados.jpg/120px-Porte_Saint-Denis%2C_intrados.jpg","width":120,"height":80,"title":"File:Porte Saint-Denis, intrados.jpg","license":null,"latitude":48.86978733360305,"longitude":2.3526473343372345,"pageid":"6188057","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/0/07/Porte_Saint-Denis%2C_intrados.jpg/300px-Porte_Saint-Denis%2C_intrados.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Porte,_8_rue_Jean-Poulmarch_(Paris).jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/6/69/Porte%2C_8_rue_Jean-Poulmarch_%28Paris%29.jpg/80px-Porte%2C_8_rue_Jean-Poulmarch_%28Paris%29.jpg","width":80,"height":120,"title":"File:Porte, 8 rue Jean-Poulmarch (Paris).jpg","license":null,"latitude":48.872258333333335,"longitude":2.363777777777778,"pageid":"11396752","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/6/69/Porte%2C_8_rue_Jean-Poulmarch_%28Paris%29.jpg/300px-Porte%2C_8_rue_Jean-Poulmarch_%28Paris%29.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Provins_-_H%C3%B4tel-Dieu_03.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/1/17/Provins_-_H%C3%B4tel-Dieu_03.jpg/80px-Provins_-_H%C3%B4tel-Dieu_03.jpg","width":80,"height":120,"title":"File:Provins - Hôtel-Dieu 03.jpg","license":null,"latitude":48.561163888888885,"longitude":3.2952,"pageid":"18906728","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/1/17/Provins_-_H%C3%B4tel-Dieu_03.jpg/300px-Provins_-_H%C3%B4tel-Dieu_03.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Provins_-_%C3%A9glise_Sainte-Croix_-_portail_occidental,_vaisseau_central_01.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Provins_-_%C3%A9glise_Sainte-Croix_-_portail_occidental%2C_vaisseau_central_01.jpg/80px-Provins_-_%C3%A9glise_Sainte-Croix_-_portail_occidental%2C_vaisseau_central_01.jpg","width":80,"height":120,"title":"File:Provins - église Sainte-Croix - portail occidental, vaisseau central 01.jpg","license":null,"latitude":48.56126944444444,"longitude":3.297919444444444,"pageid":"18905140","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Provins_-_%C3%A9glise_Sainte-Croix_-_portail_occidental%2C_vaisseau_central_01.jpg/300px-Provins_-_%C3%A9glise_Sainte-Croix_-_portail_occidental%2C_vaisseau_central_01.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Raumfahrtzentrum_Baden-W%C3%BCrttemberg_Panorama.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Raumfahrtzentrum_Baden-W%C3%BCrttemberg_Panorama.jpg/120px-Raumfahrtzentrum_Baden-W%C3%BCrttemberg_Panorama.jpg","width":120,"height":67,"title":"File:Raumfahrtzentrum Baden-Württemberg Panorama.jpg","license":null,"latitude":48.750785,"longitude":9.104002,"pageid":"19917179","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Raumfahrtzentrum_Baden-W%C3%BCrttemberg_Panorama.jpg/300px-Raumfahrtzentrum_Baden-W%C3%BCrttemberg_Panorama.jpg","author":"Julian Herzog"},{"url":"//commons.wikimedia.org/wiki/File:Rommetravets_spelkassor.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/d/d9/Rommetravets_spelkassor.jpg/120px-Rommetravets_spelkassor.jpg","width":120,"height":68,"title":"File:Rommetravets spelkassor.jpg","license":null,"latitude":60.44916666666666,"longitude":15.5,"pageid":"24640841","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/d/d9/Rommetravets_spelkassor.jpg/300px-Rommetravets_spelkassor.jpg","author":null},{"url":"//commons.wikimedia.org/wiki/File:Rotonde_de_la_Villette_01.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/6/65/Rotonde_de_la_Villette_01.jpg/120px-Rotonde_de_la_Villette_01.jpg","width":120,"height":82,"title":"File:Rotonde de la Villette 01.jpg","license":null,"latitude":48.883430555555556,"longitude":2.3695666666666666,"pageid":"18490602","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/6/65/Rotonde_de_la_Villette_01.jpg/300px-Rotonde_de_la_Villette_01.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Rotonde_de_la_Villette_02.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/1/18/Rotonde_de_la_Villette_02.jpg/120px-Rotonde_de_la_Villette_02.jpg","width":120,"height":80,"title":"File:Rotonde de la Villette 02.jpg","license":null,"latitude":48.883430555555556,"longitude":2.3695666666666666,"pageid":"18490619","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/1/18/Rotonde_de_la_Villette_02.jpg/300px-Rotonde_de_la_Villette_02.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Rue_de_l%27%C3%89chiquier_(Paris),_num%C3%A9ro_29,_porte.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/2/2f/Rue_de_l%27%C3%89chiquier_%28Paris%29%2C_num%C3%A9ro_29%2C_porte.jpg/80px-Rue_de_l%27%C3%89chiquier_%28Paris%29%2C_num%C3%A9ro_29%2C_porte.jpg","width":80,"height":120,"title":"File:Rue de l'Échiquier (Paris), numéro 29, porte.jpg","license":null,"latitude":48.871525,"longitude":2.350366666666667,"pageid":"16533654","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/2/2f/Rue_de_l%27%C3%89chiquier_%28Paris%29%2C_num%C3%A9ro_29%2C_porte.jpg/300px-Rue_de_l%27%C3%89chiquier_%28Paris%29%2C_num%C3%A9ro_29%2C_porte.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Rue_de_Turenne_(Paris),_num%C3%A9ro_64,_porte.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/6/66/Rue_de_Turenne_%28Paris%29%2C_num%C3%A9ro_64%2C_porte.jpg/80px-Rue_de_Turenne_%28Paris%29%2C_num%C3%A9ro_64%2C_porte.jpg","width":80,"height":120,"title":"File:Rue de Turenne (Paris), numéro 64, porte.jpg","license":null,"latitude":48.859436111111116,"longitude":2.3644861111111113,"pageid":"18877329","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/6/66/Rue_de_Turenne_%28Paris%29%2C_num%C3%A9ro_64%2C_porte.jpg/300px-Rue_de_Turenne_%28Paris%29%2C_num%C3%A9ro_64%2C_porte.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Rue_des_Petites-%C3%89curies_(Paris),_num%C3%A9ro_44,_porte_de_garage_sous_tenture.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/2/2e/Rue_des_Petites-%C3%89curies_%28Paris%29%2C_num%C3%A9ro_44%2C_porte_de_garage_sous_tenture.jpg/120px-Rue_des_Petites-%C3%89curies_%28Paris%29%2C_num%C3%A9ro_44%2C_porte_de_garage_sous_tenture.jpg","width":120,"height":80,"title":"File:Rue des Petites-Écuries (Paris), numéro 44, porte de garage sous tenture.jpg","license":null,"latitude":48.873847222222224,"longitude":2.349766666666667,"pageid":"17364501","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/2/2e/Rue_des_Petites-%C3%89curies_%28Paris%29%2C_num%C3%A9ro_44%2C_porte_de_garage_sous_tenture.jpg/300px-Rue_des_Petites-%C3%89curies_%28Paris%29%2C_num%C3%A9ro_44%2C_porte_de_garage_sous_tenture.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Rue_des_Petites-%C3%89curies_(Paris),_num%C3%A9ro_58,_porte.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Rue_des_Petites-%C3%89curies_%28Paris%29%2C_num%C3%A9ro_58%2C_porte.jpg/80px-Rue_des_Petites-%C3%89curies_%28Paris%29%2C_num%C3%A9ro_58%2C_porte.jpg","width":80,"height":120,"title":"File:Rue des Petites-Écuries (Paris), numéro 58, porte.jpg","license":null,"latitude":48.873980555555555,"longitude":2.348227777777778,"pageid":"17364744","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Rue_des_Petites-%C3%89curies_%28Paris%29%2C_num%C3%A9ro_58%2C_porte.jpg/300px-Rue_des_Petites-%C3%89curies_%28Paris%29%2C_num%C3%A9ro_58%2C_porte.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Rue_des_Tournelles_(Paris),_num%C3%A9ro_18,_porte.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Rue_des_Tournelles_%28Paris%29%2C_num%C3%A9ro_18%2C_porte.jpg/120px-Rue_des_Tournelles_%28Paris%29%2C_num%C3%A9ro_18%2C_porte.jpg","width":120,"height":80,"title":"File:Rue des Tournelles (Paris), numéro 18, porte.jpg","license":null,"latitude":48.854705555555554,"longitude":2.3672333333333335,"pageid":"18877411","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Rue_des_Tournelles_%28Paris%29%2C_num%C3%A9ro_18%2C_porte.jpg/300px-Rue_des_Tournelles_%28Paris%29%2C_num%C3%A9ro_18%2C_porte.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Rue_du_Faubourg-Poissonni%C3%A8re_(Paris),_num%C3%A9ro_53,_porte.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/3/3f/Rue_du_Faubourg-Poissonni%C3%A8re_%28Paris%29%2C_num%C3%A9ro_53%2C_porte.jpg/80px-Rue_du_Faubourg-Poissonni%C3%A8re_%28Paris%29%2C_num%C3%A9ro_53%2C_porte.jpg","width":80,"height":120,"title":"File:Rue du Faubourg-Poissonnière (Paris), numéro 53, porte.jpg","license":null,"latitude":48.874608333333335,"longitude":2.348027777777778,"pageid":"17364791","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/3/3f/Rue_du_Faubourg-Poissonni%C3%A8re_%28Paris%29%2C_num%C3%A9ro_53%2C_porte.jpg/300px-Rue_du_Faubourg-Poissonni%C3%A8re_%28Paris%29%2C_num%C3%A9ro_53%2C_porte.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Rue_Marcadet_(Paris)_%C3%A9cole.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/6/68/Rue_Marcadet_%28Paris%29_%C3%A9cole.jpg/120px-Rue_Marcadet_%28Paris%29_%C3%A9cole.jpg","width":120,"height":80,"title":"File:Rue Marcadet (Paris) école.jpg","license":null,"latitude":48.890335,"longitude":2.352791,"pageid":"16347387","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/6/68/Rue_Marcadet_%28Paris%29_%C3%A9cole.jpg/300px-Rue_Marcadet_%28Paris%29_%C3%A9cole.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Rue_Marcel-Gromaire_(Paris),_c%C3%B4t%C3%A9_nord,_d%C3%A9tail_03.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Rue_Marcel-Gromaire_%28Paris%29%2C_c%C3%B4t%C3%A9_nord%2C_d%C3%A9tail_03.jpg/120px-Rue_Marcel-Gromaire_%28Paris%29%2C_c%C3%B4t%C3%A9_nord%2C_d%C3%A9tail_03.jpg","width":120,"height":80,"title":"File:Rue Marcel-Gromaire (Paris), côté nord, détail 03.jpg","license":null,"latitude":48.86025,"longitude":2.3678055555555555,"pageid":"19048172","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Rue_Marcel-Gromaire_%28Paris%29%2C_c%C3%B4t%C3%A9_nord%2C_d%C3%A9tail_03.jpg/300px-Rue_Marcel-Gromaire_%28Paris%29%2C_c%C3%B4t%C3%A9_nord%2C_d%C3%A9tail_03.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Rue_Scarron_(Paris),_c%C3%B4t%C3%A9_nord,_d%C3%A9tail_02.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/1/13/Rue_Scarron_%28Paris%29%2C_c%C3%B4t%C3%A9_nord%2C_d%C3%A9tail_02.jpg/120px-Rue_Scarron_%28Paris%29%2C_c%C3%B4t%C3%A9_nord%2C_d%C3%A9tail_02.jpg","width":120,"height":80,"title":"File:Rue Scarron (Paris), côté nord, détail 02.jpg","license":null,"latitude":48.85865833333334,"longitude":2.368202777777778,"pageid":"19104826","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/1/13/Rue_Scarron_%28Paris%29%2C_c%C3%B4t%C3%A9_nord%2C_d%C3%A9tail_02.jpg/300px-Rue_Scarron_%28Paris%29%2C_c%C3%B4t%C3%A9_nord%2C_d%C3%A9tail_02.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Strasbourg,_ancienne_Maison_Baer,_mascaron_01.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/b/be/Strasbourg%2C_ancienne_Maison_Baer%2C_mascaron_01.jpg/80px-Strasbourg%2C_ancienne_Maison_Baer%2C_mascaron_01.jpg","width":80,"height":120,"title":"File:Strasbourg, ancienne Maison Baer, mascaron 01.jpg","license":null,"latitude":48.58077777777778,"longitude":7.743972222222222,"pageid":"16139899","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/b/be/Strasbourg%2C_ancienne_Maison_Baer%2C_mascaron_01.jpg/300px-Strasbourg%2C_ancienne_Maison_Baer%2C_mascaron_01.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Strasbourg,_ancienne_Maison_Baer,_mascaron_02.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Strasbourg%2C_ancienne_Maison_Baer%2C_mascaron_02.jpg/120px-Strasbourg%2C_ancienne_Maison_Baer%2C_mascaron_02.jpg","width":120,"height":80,"title":"File:Strasbourg, ancienne Maison Baer, mascaron 02.jpg","license":null,"latitude":48.58077777777778,"longitude":7.743972222222222,"pageid":"16139911","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Strasbourg%2C_ancienne_Maison_Baer%2C_mascaron_02.jpg/300px-Strasbourg%2C_ancienne_Maison_Baer%2C_mascaron_02.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Th%C3%A9%C3%A2tre_de_la_Renaissance_02.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/3/3f/Th%C3%A9%C3%A2tre_de_la_Renaissance_02.jpg/63px-Th%C3%A9%C3%A2tre_de_la_Renaissance_02.jpg","width":63,"height":120,"title":"File:Théâtre de la Renaissance 02.jpg","license":null,"latitude":48.86910555555556,"longitude":2.3559833333333335,"pageid":"13255778","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/3/3f/Th%C3%A9%C3%A2tre_de_la_Renaissance_02.jpg/300px-Th%C3%A9%C3%A2tre_de_la_Renaissance_02.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Tour_Sud_-_Ch%C3%A2teau_de_Chambord.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/f/fb/Tour_Sud_-_Ch%C3%A2teau_de_Chambord.jpg/59px-Tour_Sud_-_Ch%C3%A2teau_de_Chambord.jpg","width":59,"height":120,"title":"File:Tour Sud - Château de Chambord.jpg","license":null,"latitude":47.61614449731197,"longitude":1.5175294876098633,"pageid":"6635306","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/f/fb/Tour_Sud_-_Ch%C3%A2teau_de_Chambord.jpg/300px-Tour_Sud_-_Ch%C3%A2teau_de_Chambord.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Viaduc_de_la_rue_de_l%27Aqueduc_(Paris)_04.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Viaduc_de_la_rue_de_l%27Aqueduc_%28Paris%29_04.jpg/120px-Viaduc_de_la_rue_de_l%27Aqueduc_%28Paris%29_04.jpg","width":120,"height":80,"title":"File:Viaduc de la rue de l'Aqueduc (Paris) 04.jpg","license":null,"latitude":48.880338888888886,"longitude":2.3606694444444445,"pageid":"19823278","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Viaduc_de_la_rue_de_l%27Aqueduc_%28Paris%29_04.jpg/300px-Viaduc_de_la_rue_de_l%27Aqueduc_%28Paris%29_04.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:Zentrum_f%C3%BCr_virtuelles_Engineering,_Fraunhofer_IAO,_Stuttgart_01.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Zentrum_f%C3%BCr_virtuelles_Engineering%2C_Fraunhofer_IAO%2C_Stuttgart_01.jpg/120px-Zentrum_f%C3%BCr_virtuelles_Engineering%2C_Fraunhofer_IAO%2C_Stuttgart_01.jpg","width":120,"height":52,"title":"File:Zentrum für virtuelles Engineering, Fraunhofer IAO, Stuttgart 01.jpg","license":null,"latitude":48.740036,"longitude":9.096127,"pageid":"25359447","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Zentrum_f%C3%BCr_virtuelles_Engineering%2C_Fraunhofer_IAO%2C_Stuttgart_01.jpg/300px-Zentrum_f%C3%BCr_virtuelles_Engineering%2C_Fraunhofer_IAO%2C_Stuttgart_01.jpg","author":"Julian Herzog"},{"url":"//commons.wikimedia.org/wiki/File:Zentrum_f%C3%BCr_virtuelles_Engineering,_Fraunhofer_IAO,_Stuttgart_02.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/0/05/Zentrum_f%C3%BCr_virtuelles_Engineering%2C_Fraunhofer_IAO%2C_Stuttgart_02.jpg/120px-Zentrum_f%C3%BCr_virtuelles_Engineering%2C_Fraunhofer_IAO%2C_Stuttgart_02.jpg","width":120,"height":118,"title":"File:Zentrum für virtuelles Engineering, Fraunhofer IAO, Stuttgart 02.jpg","license":null,"latitude":48.740036,"longitude":9.096127,"pageid":"25359357","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/0/05/Zentrum_f%C3%BCr_virtuelles_Engineering%2C_Fraunhofer_IAO%2C_Stuttgart_02.jpg/300px-Zentrum_f%C3%BCr_virtuelles_Engineering%2C_Fraunhofer_IAO%2C_Stuttgart_02.jpg","author":"Julian Herzog"},{"url":"//commons.wikimedia.org/wiki/File:%C3%89glise_Saint-Jacques-et-Saint-Christophe_de_la_Villette,_fa%C3%A7ade_01.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/d/d1/%C3%89glise_Saint-Jacques-et-Saint-Christophe_de_la_Villette%2C_fa%C3%A7ade_01.jpg/85px-%C3%89glise_Saint-Jacques-et-Saint-Christophe_de_la_Villette%2C_fa%C3%A7ade_01.jpg","width":85,"height":120,"title":"File:Église Saint-Jacques-et-Saint-Christophe de la Villette, façade 01.jpg","license":null,"latitude":48.88896944444444,"longitude":2.3791861111111112,"pageid":"18479324","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/d/d1/%C3%89glise_Saint-Jacques-et-Saint-Christophe_de_la_Villette%2C_fa%C3%A7ade_01.jpg/300px-%C3%89glise_Saint-Jacques-et-Saint-Christophe_de_la_Villette%2C_fa%C3%A7ade_01.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:%C3%89glise_Saint-Jean-Baptiste_de_Belleville_-_vitrail_d%27une_chapelle.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/d/d1/%C3%89glise_Saint-Jean-Baptiste_de_Belleville_-_vitrail_d%27une_chapelle.jpg/58px-%C3%89glise_Saint-Jean-Baptiste_de_Belleville_-_vitrail_d%27une_chapelle.jpg","width":58,"height":120,"title":"File:Église Saint-Jean-Baptiste de Belleville - vitrail d'une chapelle.jpg","license":null,"latitude":48.87581388888889,"longitude":2.3892777777777776,"pageid":"10743824","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/d/d1/%C3%89glise_Saint-Jean-Baptiste_de_Belleville_-_vitrail_d%27une_chapelle.jpg/300px-%C3%89glise_Saint-Jean-Baptiste_de_Belleville_-_vitrail_d%27une_chapelle.jpg","author":"Coyau"},{"url":"//commons.wikimedia.org/wiki/File:%C3%89glise_Sainte-Foy_de_Chartres,_fa%C3%A7ade_occidentale.jpg","thumbnail":"//upload.wikimedia.org/wikipedia/commons/thumb/f/f9/%C3%89glise_Sainte-Foy_de_Chartres%2C_fa%C3%A7ade_occidentale.jpg/92px-%C3%89glise_Sainte-Foy_de_Chartres%2C_fa%C3%A7ade_occidentale.jpg","width":92,"height":120,"title":"File:Église Sainte-Foy de Chartres, façade occidentale.jpg","license":null,"latitude":48.44568888888889,"longitude":1.4844583333333334,"pageid":"15221902","fullurl":"//upload.wikimedia.org/wikipedia/commons/thumb/f/f9/%C3%89glise_Sainte-Foy_de_Chartres%2C_fa%C3%A7ade_occidentale.jpg/300px-%C3%89glise_Sainte-Foy_de_Chartres%2C_fa%C3%A7ade_occidentale.jpg","author":"Coyau"}] diff --git a/custom-cluster-theme/img/wikimedia-logo.png b/custom-cluster-theme/img/wikimedia-logo.png new file mode 100644 index 0000000..c388b9d Binary files /dev/null and b/custom-cluster-theme/img/wikimedia-logo.png differ diff --git a/custom-cluster-theme/index.html b/custom-cluster-theme/index.html new file mode 100644 index 0000000..9df5389 --- /dev/null +++ b/custom-cluster-theme/index.html @@ -0,0 +1,21 @@ + + + + + + + Marker Clustering with Custom Theme + + + + + + + + +

Marker Clustering with Custom Theme

+

This example displays a map showing geo-tagged clusters of photographs taken from locations around the world. The Wikimedia Commons website was used to provide a source of data of geo-tagged images.

+
+ + + diff --git a/custom-cluster-theme/js/app.js b/custom-cluster-theme/js/app.js new file mode 100644 index 0000000..1c41b62 --- /dev/null +++ b/custom-cluster-theme/js/app.js @@ -0,0 +1,199 @@ +/** + * Make clustering of markers with a custom theme + * + * Note that the maps clustering module http://js.api.here.com/v3/3.0/mapsjs-clustering.js + * must be loaded to use the Clustering + * + * @param {H.Map} map A HERE Map instance within the application + * @param {H.ui.UI} ui Default ui component + * @param {Function} getBubbleContent Function returning detailed information about photo + * @param {Array.} data Raw data containing information about each photo + */ +function startClustering(map, ui, getBubbleContent, data) { + // First we need to create an array of DataPoint objects for the ClusterProvider + var dataPoints = data.map(function (item) { + // Note that we pass "null" as value for the "altitude" + // Last argument is a reference to the original data to associate with our DataPoint + // We will need it later on when handling events on the clusters/noise points for showing + // details of that point + return new H.clustering.DataPoint(item.latitude, item.longitude, null, item); + }); + + // Create a clustering provider with a custom theme + var clusteredDataProvider = new H.clustering.Provider(dataPoints, { + clusteringOptions: { + // Maximum radius of the neighborhood + eps: 64, + // minimum weight of points required to form a cluster + minWeight: 3 + }, + theme: CUSTOM_THEME + }); + + // Create a layer that will consume objects from our clustering provider + var layer = new H.map.layer.ObjectLayer(clusteredDataProvider); + + // To make objects from clustering provider visible, + // we need to add our layer to the map + map.addLayer(layer); +} + +// Custom clustering theme description object. +// Object should implement H.clustering.ITheme interface +var CUSTOM_THEME = { + getClusterPresentation: function (cluster) { + // Get random DataPoint from our cluster + var randomDataPoint = getRandomDataPoint(cluster), + // Get a reference to data object that DataPoint holds + data = randomDataPoint.getData(); + + // Create a marker from a random point in the cluster + var clusterMarker = new H.map.Marker(cluster.getPosition(), { + icon: new H.map.Icon(data.thumbnail, { + size: {w: 50, h: 50}, + anchor: {x: 25, y: 25} + }), + + // Set min/max zoom with values from the cluster, + // otherwise clusters will be shown at all zoom levels: + min: cluster.getMinZoom(), + max: cluster.getMaxZoom() + }); + + // Link data from the random point from the cluster to the marker, + // to make it accessible inside onMarkerClick + clusterMarker.setData(data) + // Show a bubble on marker click/tap + .addEventListener('tap', onMarkerClick); + + return clusterMarker; + }, + getNoisePresentation: function (noisePoint) { + // Get a reference to data object our noise points + var data = noisePoint.getData(), + // Create a marker for the noisePoint + noiseMarker = new H.map.Marker(noisePoint.getPosition(), { + // Use min zoom from a noise point + // to show it correctly at certain zoom levels: + min: noisePoint.getMinZoom(), + icon: new H.map.Icon(data.thumbnail, { + size: {w: 20, h: 20}, + anchor: {x: 10, y: 10} + }) + }); + + // Link a data from the point to the marker + // to make it accessible inside onMarkerClick + noiseMarker.setData(data); + + // Show a bubble on marker click/tap + noiseMarker.addEventListener('tap', onMarkerClick); + + return noiseMarker; + } +}; + + +/** + * Boilerplate map initialization code starts below: + */ +// Helper function for getting a random point from a cluster object +function getRandomDataPoint(cluster) { + var dataPoints = []; + + // Iterate through all points which fall into the cluster and store references to them + cluster.forEachDataPoint(dataPoints.push.bind(dataPoints)); + + // Randomly pick an index from [0, dataPoints.length) range + // Note how we use bitwise OR ("|") operator for that instead of Math.floor + return dataPoints[Math.random() * dataPoints.length | 0]; +} + +/** + * CLICK/TAP event handler for our markers. That marker can represent either a single photo or + * a cluster (group of photos) + * @this {H.map.Marker} + */ +function onMarkerClick() { + // Get position of the "clicked" marker + var position = this.getPosition(), + // Get the data associated with that marker + data = this.getData(), + // Merge default template with the data and get HTML + bubbleContent = getBubbleContent(data), + bubble = onMarkerClick.bubble; + + // For all markers create only one bubble, if not created yet + if (!bubble) { + bubble = new H.ui.InfoBubble(position, { + content: bubbleContent + }); + ui.addBubble(bubble); + // Cache the bubble object + onMarkerClick.bubble = bubble; + } else { + // Reuse existing bubble object + bubble.setPosition(position); + bubble.setContent(bubbleContent); + bubble.open(); + } + + // Move map's center to a clicked marker + map.setCenter(position, true); +} + +// Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useHTTPS: true, + useCIT: true +}); +var defaultLayers = platform.createDefaultLayers(); + +// Step 2: initialize a map +var map = new H.Map(document.getElementById('map'), defaultLayers.normal.map, { + center: new H.geo.Point(50.426467222414374, 6.3054632497803595), + zoom: 6 +}); + +// Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Step 4: create the default UI component, for displaying bubbles +var ui = H.ui.UI.createDefault(map, defaultLayers); + +/** + * Merges given data with default bubble template and returns resulting HTML string + * @param {Object} data Data holding single picture information + */ +function getBubbleContent(data) { + return [ + '
', + '', + '', + '', + // Author info may be missing + data.author ? ['Photo by: ', '', + data.author, ''].join(''):'', + '
', + '', + '', + '', + 'Photos provided by Wikimedia Commons are
under the copyright of their owners.', + '
', + '
', + '
', + '
' + ].join(''); +} + +// Step 5: request data that will be visualized on a map +jQuery.getJSON('data/photos.json', function (data) { + startClustering(map, ui, getBubbleContent, data); +}); \ No newline at end of file diff --git a/custom-tile-overlay/berlin.png b/custom-tile-overlay/berlin.png new file mode 100644 index 0000000..28304ef Binary files /dev/null and b/custom-tile-overlay/berlin.png differ diff --git a/custom-tile-overlay/index.html b/custom-tile-overlay/index.html new file mode 100644 index 0000000..5d70e90 --- /dev/null +++ b/custom-tile-overlay/index.html @@ -0,0 +1,20 @@ + + + + + + + Adding an Overlay to the Map + + + + + + + +

Adding an Overlay to the Map

+

This example displays a movable map initially centered on the historical centre of Berlin (52.515, °N, 13.405°E) with an overlay of a historical map from 1789 on top of the base map. A public domain image was used as a source, and split it into individual map tiles. Additional tiles are only downloaded when the zoom level or location changes.

+
+ + + diff --git a/custom-tile-overlay/js/app.js b/custom-tile-overlay/js/app.js new file mode 100644 index 0000000..64cacd7 --- /dev/null +++ b/custom-tile-overlay/js/app.js @@ -0,0 +1,77 @@ +/** + * This example overlays a historical map of Berlin + * from 1789 on top of the base map. + * + * @param {H.Map} map A HERE Map instance within the application + */ +function overlayHistoricalBerlin(map) { + // Create a tile provider from our images of historical Berlin + var tileProvider = new H.map.provider.ImageTileProvider({ + // We have tiles only for zoom levels 12–15, + // so on all other zoom levels only base map will be visible + min: 12, + max: 15, + getURL: function (column, row, zoom) { + // If Berlin is not displayed, return a blank tile. + if (((zoom == 12) && (row != 1343 || column != 2200)) || + ((zoom == 13) && (row < 2686 || column < 4400 || row > 2687 || column > 4401)) || + ((zoom == 14) && (row < 5372 || column < 8800 || row > 5375 || column > 8803)) || + ((zoom == 15) && (row < 10744 || column < 17601 || row > 10750 || column > 17607))) { + return 'tiles/blank.png'; + } else { + // The Old Berlin Map Tiler follows the TMS URL specification. + // By specification, tiles should be accessible in the following format: + // http://server_address/zoom_level/x/y.png + return 'tiles/'+ zoom+ '/'+ row + '/'+ column+ '.png'; + } + } + }); + // Unless you own the map tile source, + // you need to comply with the licensing agreement of the map tile provider. + // Often this means giving attribution or copyright acknowledgment to the owner, + // even if the tiles are offered free of charge. + tileProvider.getCopyrights = function (bounds, level) { + // We should return an array of objects that implement H.map.ICopyright interface + return [{ + label: "Overlay derived from WikiMedia Commons", + alt: 'Overlay Based on a WikiMedia Commons Image in the Public Domain' + }]; + }; + // Now let's create a layer that will consume tiles from our provider + var overlayLayer = new H.map.layer.TileLayer(tileProvider, { + // Let's make it semi-transparent + opacity: 0.5 + }); + + // Finally add our layer containing old Berlin to a map + map.addLayer(overlayLayer); +} +/** + * Boilerplate map initialization code starts below: + */ + +// Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useHTTPS: true, + useCIT: true +}); +var defaultLayers = platform.createDefaultLayers(); + +// Step 2: initialize a map +var map = new H.Map(document.getElementById('map'), defaultLayers.normal.map, { + center: new H.geo.Point(52.515, 13.405), + zoom: 14 +}); + +// Step 3: make the map interactive +// mapEvents enables the event system +// behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Step 4: create the default UI component, for displaying bubbles +var ui = H.ui.UI.createDefault(map, defaultLayers); + +// Step 5: Main logic goes here +overlayHistoricalBerlin(map); \ No newline at end of file diff --git a/custom-tile-overlay/tiles/12/1343/2200.png b/custom-tile-overlay/tiles/12/1343/2200.png new file mode 100644 index 0000000..f9c642a Binary files /dev/null and b/custom-tile-overlay/tiles/12/1343/2200.png differ diff --git a/custom-tile-overlay/tiles/13/2686/4400.png b/custom-tile-overlay/tiles/13/2686/4400.png new file mode 100644 index 0000000..92b5ae3 Binary files /dev/null and b/custom-tile-overlay/tiles/13/2686/4400.png differ diff --git a/custom-tile-overlay/tiles/13/2686/4401.png b/custom-tile-overlay/tiles/13/2686/4401.png new file mode 100644 index 0000000..2333158 Binary files /dev/null and b/custom-tile-overlay/tiles/13/2686/4401.png differ diff --git a/custom-tile-overlay/tiles/13/2687/4400.png b/custom-tile-overlay/tiles/13/2687/4400.png new file mode 100644 index 0000000..270dc54 Binary files /dev/null and b/custom-tile-overlay/tiles/13/2687/4400.png differ diff --git a/custom-tile-overlay/tiles/13/2687/4401.png b/custom-tile-overlay/tiles/13/2687/4401.png new file mode 100644 index 0000000..2fef36b Binary files /dev/null and b/custom-tile-overlay/tiles/13/2687/4401.png differ diff --git a/custom-tile-overlay/tiles/14/5372/8800.png b/custom-tile-overlay/tiles/14/5372/8800.png new file mode 100644 index 0000000..9abc409 Binary files /dev/null and b/custom-tile-overlay/tiles/14/5372/8800.png differ diff --git a/custom-tile-overlay/tiles/14/5372/8801.png b/custom-tile-overlay/tiles/14/5372/8801.png new file mode 100644 index 0000000..a4eb4ea Binary files /dev/null and b/custom-tile-overlay/tiles/14/5372/8801.png differ diff --git a/custom-tile-overlay/tiles/14/5372/8802.png b/custom-tile-overlay/tiles/14/5372/8802.png new file mode 100644 index 0000000..d28cdce Binary files /dev/null and b/custom-tile-overlay/tiles/14/5372/8802.png differ diff --git a/custom-tile-overlay/tiles/14/5372/8803.png b/custom-tile-overlay/tiles/14/5372/8803.png new file mode 100644 index 0000000..907632e Binary files /dev/null and b/custom-tile-overlay/tiles/14/5372/8803.png differ diff --git a/custom-tile-overlay/tiles/14/5373/8800.png b/custom-tile-overlay/tiles/14/5373/8800.png new file mode 100644 index 0000000..aedc79c Binary files /dev/null and b/custom-tile-overlay/tiles/14/5373/8800.png differ diff --git a/custom-tile-overlay/tiles/14/5373/8801.png b/custom-tile-overlay/tiles/14/5373/8801.png new file mode 100644 index 0000000..14b94d8 Binary files /dev/null and b/custom-tile-overlay/tiles/14/5373/8801.png differ diff --git a/custom-tile-overlay/tiles/14/5373/8802.png b/custom-tile-overlay/tiles/14/5373/8802.png new file mode 100644 index 0000000..bc5f620 Binary files /dev/null and b/custom-tile-overlay/tiles/14/5373/8802.png differ diff --git a/custom-tile-overlay/tiles/14/5373/8803.png b/custom-tile-overlay/tiles/14/5373/8803.png new file mode 100644 index 0000000..abb5e86 Binary files /dev/null and b/custom-tile-overlay/tiles/14/5373/8803.png differ diff --git a/custom-tile-overlay/tiles/14/5374/8800.png b/custom-tile-overlay/tiles/14/5374/8800.png new file mode 100644 index 0000000..13480d7 Binary files /dev/null and b/custom-tile-overlay/tiles/14/5374/8800.png differ diff --git a/custom-tile-overlay/tiles/14/5374/8801.png b/custom-tile-overlay/tiles/14/5374/8801.png new file mode 100644 index 0000000..5e70794 Binary files /dev/null and b/custom-tile-overlay/tiles/14/5374/8801.png differ diff --git a/custom-tile-overlay/tiles/14/5374/8802.png b/custom-tile-overlay/tiles/14/5374/8802.png new file mode 100644 index 0000000..1d4cc4d Binary files /dev/null and b/custom-tile-overlay/tiles/14/5374/8802.png differ diff --git a/custom-tile-overlay/tiles/14/5374/8803.png b/custom-tile-overlay/tiles/14/5374/8803.png new file mode 100644 index 0000000..831942b Binary files /dev/null and b/custom-tile-overlay/tiles/14/5374/8803.png differ diff --git a/custom-tile-overlay/tiles/14/5375/8800.png b/custom-tile-overlay/tiles/14/5375/8800.png new file mode 100644 index 0000000..1970491 Binary files /dev/null and b/custom-tile-overlay/tiles/14/5375/8800.png differ diff --git a/custom-tile-overlay/tiles/14/5375/8801.png b/custom-tile-overlay/tiles/14/5375/8801.png new file mode 100644 index 0000000..aa1750f Binary files /dev/null and b/custom-tile-overlay/tiles/14/5375/8801.png differ diff --git a/custom-tile-overlay/tiles/14/5375/8802.png b/custom-tile-overlay/tiles/14/5375/8802.png new file mode 100644 index 0000000..aff6935 Binary files /dev/null and b/custom-tile-overlay/tiles/14/5375/8802.png differ diff --git a/custom-tile-overlay/tiles/14/5375/8803.png b/custom-tile-overlay/tiles/14/5375/8803.png new file mode 100644 index 0000000..2703585 Binary files /dev/null and b/custom-tile-overlay/tiles/14/5375/8803.png differ diff --git a/custom-tile-overlay/tiles/15/10744/17601.png b/custom-tile-overlay/tiles/15/10744/17601.png new file mode 100644 index 0000000..50d9017 Binary files /dev/null and b/custom-tile-overlay/tiles/15/10744/17601.png differ diff --git a/custom-tile-overlay/tiles/15/10744/17602.png b/custom-tile-overlay/tiles/15/10744/17602.png new file mode 100644 index 0000000..e24a46d Binary files /dev/null and b/custom-tile-overlay/tiles/15/10744/17602.png differ diff --git a/custom-tile-overlay/tiles/15/10744/17603.png b/custom-tile-overlay/tiles/15/10744/17603.png new file mode 100644 index 0000000..93f5c3a Binary files /dev/null and b/custom-tile-overlay/tiles/15/10744/17603.png differ diff --git a/custom-tile-overlay/tiles/15/10744/17604.png b/custom-tile-overlay/tiles/15/10744/17604.png new file mode 100644 index 0000000..41ad7a8 Binary files /dev/null and b/custom-tile-overlay/tiles/15/10744/17604.png differ diff --git a/custom-tile-overlay/tiles/15/10744/17605.png b/custom-tile-overlay/tiles/15/10744/17605.png new file mode 100644 index 0000000..3e56aa3 Binary files /dev/null and b/custom-tile-overlay/tiles/15/10744/17605.png differ diff --git a/custom-tile-overlay/tiles/15/10744/17606.png b/custom-tile-overlay/tiles/15/10744/17606.png new file mode 100644 index 0000000..2095f80 Binary files /dev/null and b/custom-tile-overlay/tiles/15/10744/17606.png differ diff --git a/custom-tile-overlay/tiles/15/10744/17607.png b/custom-tile-overlay/tiles/15/10744/17607.png new file mode 100644 index 0000000..2095f80 Binary files /dev/null and b/custom-tile-overlay/tiles/15/10744/17607.png differ diff --git a/custom-tile-overlay/tiles/15/10745/17601.png b/custom-tile-overlay/tiles/15/10745/17601.png new file mode 100644 index 0000000..be1419f Binary files /dev/null and b/custom-tile-overlay/tiles/15/10745/17601.png differ diff --git a/custom-tile-overlay/tiles/15/10745/17602.png b/custom-tile-overlay/tiles/15/10745/17602.png new file mode 100644 index 0000000..294a17b Binary files /dev/null and b/custom-tile-overlay/tiles/15/10745/17602.png differ diff --git a/custom-tile-overlay/tiles/15/10745/17603.png b/custom-tile-overlay/tiles/15/10745/17603.png new file mode 100644 index 0000000..4c7de9a Binary files /dev/null and b/custom-tile-overlay/tiles/15/10745/17603.png differ diff --git a/custom-tile-overlay/tiles/15/10745/17604.png b/custom-tile-overlay/tiles/15/10745/17604.png new file mode 100644 index 0000000..f37083f Binary files /dev/null and b/custom-tile-overlay/tiles/15/10745/17604.png differ diff --git a/custom-tile-overlay/tiles/15/10745/17605.png b/custom-tile-overlay/tiles/15/10745/17605.png new file mode 100644 index 0000000..63e8ba3 Binary files /dev/null and b/custom-tile-overlay/tiles/15/10745/17605.png differ diff --git a/custom-tile-overlay/tiles/15/10745/17606.png b/custom-tile-overlay/tiles/15/10745/17606.png new file mode 100644 index 0000000..48ddb0f Binary files /dev/null and b/custom-tile-overlay/tiles/15/10745/17606.png differ diff --git a/custom-tile-overlay/tiles/15/10745/17607.png b/custom-tile-overlay/tiles/15/10745/17607.png new file mode 100644 index 0000000..2901d9f Binary files /dev/null and b/custom-tile-overlay/tiles/15/10745/17607.png differ diff --git a/custom-tile-overlay/tiles/15/10746/17601.png b/custom-tile-overlay/tiles/15/10746/17601.png new file mode 100644 index 0000000..e1de21f Binary files /dev/null and b/custom-tile-overlay/tiles/15/10746/17601.png differ diff --git a/custom-tile-overlay/tiles/15/10746/17602.png b/custom-tile-overlay/tiles/15/10746/17602.png new file mode 100644 index 0000000..ac0e09f Binary files /dev/null and b/custom-tile-overlay/tiles/15/10746/17602.png differ diff --git a/custom-tile-overlay/tiles/15/10746/17603.png b/custom-tile-overlay/tiles/15/10746/17603.png new file mode 100644 index 0000000..b26a249 Binary files /dev/null and b/custom-tile-overlay/tiles/15/10746/17603.png differ diff --git a/custom-tile-overlay/tiles/15/10746/17604.png b/custom-tile-overlay/tiles/15/10746/17604.png new file mode 100644 index 0000000..9bd12d2 Binary files /dev/null and b/custom-tile-overlay/tiles/15/10746/17604.png differ diff --git a/custom-tile-overlay/tiles/15/10746/17605.png b/custom-tile-overlay/tiles/15/10746/17605.png new file mode 100644 index 0000000..3a57ff9 Binary files /dev/null and b/custom-tile-overlay/tiles/15/10746/17605.png differ diff --git a/custom-tile-overlay/tiles/15/10746/17606.png b/custom-tile-overlay/tiles/15/10746/17606.png new file mode 100644 index 0000000..92faf48 Binary files /dev/null and b/custom-tile-overlay/tiles/15/10746/17606.png differ diff --git a/custom-tile-overlay/tiles/15/10746/17607.png b/custom-tile-overlay/tiles/15/10746/17607.png new file mode 100644 index 0000000..b13c18d Binary files /dev/null and b/custom-tile-overlay/tiles/15/10746/17607.png differ diff --git a/custom-tile-overlay/tiles/15/10747/17601.png b/custom-tile-overlay/tiles/15/10747/17601.png new file mode 100644 index 0000000..b03dc26 Binary files /dev/null and b/custom-tile-overlay/tiles/15/10747/17601.png differ diff --git a/custom-tile-overlay/tiles/15/10747/17602.png b/custom-tile-overlay/tiles/15/10747/17602.png new file mode 100644 index 0000000..fbd597e Binary files /dev/null and b/custom-tile-overlay/tiles/15/10747/17602.png differ diff --git a/custom-tile-overlay/tiles/15/10747/17603.png b/custom-tile-overlay/tiles/15/10747/17603.png new file mode 100644 index 0000000..76aaa4f Binary files /dev/null and b/custom-tile-overlay/tiles/15/10747/17603.png differ diff --git a/custom-tile-overlay/tiles/15/10747/17604.png b/custom-tile-overlay/tiles/15/10747/17604.png new file mode 100644 index 0000000..cdb9ad3 Binary files /dev/null and b/custom-tile-overlay/tiles/15/10747/17604.png differ diff --git a/custom-tile-overlay/tiles/15/10747/17605.png b/custom-tile-overlay/tiles/15/10747/17605.png new file mode 100644 index 0000000..e67095c Binary files /dev/null and b/custom-tile-overlay/tiles/15/10747/17605.png differ diff --git a/custom-tile-overlay/tiles/15/10747/17606.png b/custom-tile-overlay/tiles/15/10747/17606.png new file mode 100644 index 0000000..d316195 Binary files /dev/null and b/custom-tile-overlay/tiles/15/10747/17606.png differ diff --git a/custom-tile-overlay/tiles/15/10747/17607.png b/custom-tile-overlay/tiles/15/10747/17607.png new file mode 100644 index 0000000..b09580d Binary files /dev/null and b/custom-tile-overlay/tiles/15/10747/17607.png differ diff --git a/custom-tile-overlay/tiles/15/10748/17601.png b/custom-tile-overlay/tiles/15/10748/17601.png new file mode 100644 index 0000000..b97add6 Binary files /dev/null and b/custom-tile-overlay/tiles/15/10748/17601.png differ diff --git a/custom-tile-overlay/tiles/15/10748/17602.png b/custom-tile-overlay/tiles/15/10748/17602.png new file mode 100644 index 0000000..9ad4873 Binary files /dev/null and b/custom-tile-overlay/tiles/15/10748/17602.png differ diff --git a/custom-tile-overlay/tiles/15/10748/17603.png b/custom-tile-overlay/tiles/15/10748/17603.png new file mode 100644 index 0000000..422ce05 Binary files /dev/null and b/custom-tile-overlay/tiles/15/10748/17603.png differ diff --git a/custom-tile-overlay/tiles/15/10748/17604.png b/custom-tile-overlay/tiles/15/10748/17604.png new file mode 100644 index 0000000..6c15b66 Binary files /dev/null and b/custom-tile-overlay/tiles/15/10748/17604.png differ diff --git a/custom-tile-overlay/tiles/15/10748/17605.png b/custom-tile-overlay/tiles/15/10748/17605.png new file mode 100644 index 0000000..15ef01b Binary files /dev/null and b/custom-tile-overlay/tiles/15/10748/17605.png differ diff --git a/custom-tile-overlay/tiles/15/10748/17606.png b/custom-tile-overlay/tiles/15/10748/17606.png new file mode 100644 index 0000000..42c6d72 Binary files /dev/null and b/custom-tile-overlay/tiles/15/10748/17606.png differ diff --git a/custom-tile-overlay/tiles/15/10748/17607.png b/custom-tile-overlay/tiles/15/10748/17607.png new file mode 100644 index 0000000..8755842 Binary files /dev/null and b/custom-tile-overlay/tiles/15/10748/17607.png differ diff --git a/custom-tile-overlay/tiles/15/10749/17601.png b/custom-tile-overlay/tiles/15/10749/17601.png new file mode 100644 index 0000000..b9a5fa8 Binary files /dev/null and b/custom-tile-overlay/tiles/15/10749/17601.png differ diff --git a/custom-tile-overlay/tiles/15/10749/17602.png b/custom-tile-overlay/tiles/15/10749/17602.png new file mode 100644 index 0000000..8902058 Binary files /dev/null and b/custom-tile-overlay/tiles/15/10749/17602.png differ diff --git a/custom-tile-overlay/tiles/15/10749/17603.png b/custom-tile-overlay/tiles/15/10749/17603.png new file mode 100644 index 0000000..8677091 Binary files /dev/null and b/custom-tile-overlay/tiles/15/10749/17603.png differ diff --git a/custom-tile-overlay/tiles/15/10749/17604.png b/custom-tile-overlay/tiles/15/10749/17604.png new file mode 100644 index 0000000..bf7a7e5 Binary files /dev/null and b/custom-tile-overlay/tiles/15/10749/17604.png differ diff --git a/custom-tile-overlay/tiles/15/10749/17605.png b/custom-tile-overlay/tiles/15/10749/17605.png new file mode 100644 index 0000000..d4d876f Binary files /dev/null and b/custom-tile-overlay/tiles/15/10749/17605.png differ diff --git a/custom-tile-overlay/tiles/15/10749/17606.png b/custom-tile-overlay/tiles/15/10749/17606.png new file mode 100644 index 0000000..054ecee Binary files /dev/null and b/custom-tile-overlay/tiles/15/10749/17606.png differ diff --git a/custom-tile-overlay/tiles/15/10749/17607.png b/custom-tile-overlay/tiles/15/10749/17607.png new file mode 100644 index 0000000..d0f3f7e Binary files /dev/null and b/custom-tile-overlay/tiles/15/10749/17607.png differ diff --git a/custom-tile-overlay/tiles/15/10750/17601.png b/custom-tile-overlay/tiles/15/10750/17601.png new file mode 100644 index 0000000..b87645a Binary files /dev/null and b/custom-tile-overlay/tiles/15/10750/17601.png differ diff --git a/custom-tile-overlay/tiles/15/10750/17602.png b/custom-tile-overlay/tiles/15/10750/17602.png new file mode 100644 index 0000000..07a05a8 Binary files /dev/null and b/custom-tile-overlay/tiles/15/10750/17602.png differ diff --git a/custom-tile-overlay/tiles/15/10750/17603.png b/custom-tile-overlay/tiles/15/10750/17603.png new file mode 100644 index 0000000..8ee9a1f Binary files /dev/null and b/custom-tile-overlay/tiles/15/10750/17603.png differ diff --git a/custom-tile-overlay/tiles/15/10750/17604.png b/custom-tile-overlay/tiles/15/10750/17604.png new file mode 100644 index 0000000..276bfe4 Binary files /dev/null and b/custom-tile-overlay/tiles/15/10750/17604.png differ diff --git a/custom-tile-overlay/tiles/15/10750/17605.png b/custom-tile-overlay/tiles/15/10750/17605.png new file mode 100644 index 0000000..e7e2c6e Binary files /dev/null and b/custom-tile-overlay/tiles/15/10750/17605.png differ diff --git a/custom-tile-overlay/tiles/15/10750/17606.png b/custom-tile-overlay/tiles/15/10750/17606.png new file mode 100644 index 0000000..e29c234 Binary files /dev/null and b/custom-tile-overlay/tiles/15/10750/17606.png differ diff --git a/custom-tile-overlay/tiles/15/10750/17607.png b/custom-tile-overlay/tiles/15/10750/17607.png new file mode 100644 index 0000000..99dca14 Binary files /dev/null and b/custom-tile-overlay/tiles/15/10750/17607.png differ diff --git a/custom-tile-overlay/tiles/blank.png b/custom-tile-overlay/tiles/blank.png new file mode 100644 index 0000000..4b5b302 Binary files /dev/null and b/custom-tile-overlay/tiles/blank.png differ diff --git a/custom-zooming-into-bounds/custom-zooming-into-bounds.png b/custom-zooming-into-bounds/custom-zooming-into-bounds.png new file mode 100644 index 0000000..3e131f2 Binary files /dev/null and b/custom-zooming-into-bounds/custom-zooming-into-bounds.png differ diff --git a/custom-zooming-into-bounds/index.html b/custom-zooming-into-bounds/index.html new file mode 100644 index 0000000..a65ad71 --- /dev/null +++ b/custom-zooming-into-bounds/index.html @@ -0,0 +1,20 @@ + + + + + + + Zoom into Bounds + + + + + + + +

Zoom into Bounds

+

This example displays circles on the map, which denote cities' population. By clicking on each circle you can zoom into it, but with different maximum zoom levels, depending on the circle size.

+
+ + + diff --git a/custom-zooming-into-bounds/js/app.js b/custom-zooming-into-bounds/js/app.js new file mode 100644 index 0000000..926bd73 --- /dev/null +++ b/custom-zooming-into-bounds/js/app.js @@ -0,0 +1,84 @@ +/** + * Shows how to create a custom zooming strategy, + * using getCameraDataForBounds method for precomputing best zoom level and position. + * + * @param {H.Map} map A HERE Map instance within the application + */ +function setUpCustomZooming(map) { + // create several circles to denote cities' population + var clevelandCircle = new H.map.Circle( + new H.geo.Point(41.4822, -81.6697), //center + 11703, // Radius proportional to 390,113 population + {style: {fillColor: 'rgba(0, 255, 221, 0.66)'}} + ); + var torontoCircle = new H.map.Circle( + new H.geo.Point(43.7000, -79.4000), //center + 75090, // Radius proportional to 2.503 million population + {style: {fillColor: 'rgba(0, 255, 221, 0.66)'}} + ); + var chicagoCircle = new H.map.Circle( + new H.geo.Point(41.8369, -87.6847), //center + 81570, // Radius proportional to 2.719 million population + {style: {fillColor: 'rgba(0, 221, 255, 0.66)'}} + ); + var newYorkCircle = new H.map.Circle( + new H.geo.Point(40.7127, -74.0059), //center + 252180, // Radius proportional to 8.406 million population + {style: {fillColor: 'rgba(221, 0, 255, 0.66)'}} + ); + // define maximum zoom level for each circle + clevelandCircle.setData({maxZoom: 7}); + torontoCircle.setData({maxZoom: 5}); + chicagoCircle.setData({maxZoom: 5}); + newYorkCircle.setData({maxZoom: 4}); + + // create container for objects + var container = new H.map.Group({ + objects: [clevelandCircle, torontoCircle, chicagoCircle, newYorkCircle] + }); + + // use the event delegation to handle 'tap' events on objects + container.addEventListener('tap', function (evt) { + var target = evt.target; + // retrieve maximum zoom level + var maxZoom = target.getData().maxZoom; + // calculate best camera data to fit object's bounds + var cameraData = map.getCameraDataForBounds(target.getBounds()); + + // we set new zoom level taking into acount 'maxZoom' value + map.setZoom(Math.min(cameraData.zoom, maxZoom), true); + map.setCenter(cameraData.position, true); + }); + + // add objects to the map + map.addObject(container); +} + + +/** + * Boilerplate map initialization code starts below: + */ + +// Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +// Step 2: initialize a map +var map = new H.Map(document.getElementById('map'), defaultLayers.normal.map, { + // initial center and zoom level of the map + center: new H.geo.Point(41.4822, -81.6697), + zoom: 4 +}); + +// Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Step 4: main logic goes here +setUpCustomZooming(map); \ No newline at end of file diff --git a/display-kml-on-map/data/us-states.kml b/display-kml-on-map/data/us-states.kml new file mode 100644 index 0000000..1a12dfd --- /dev/null +++ b/display-kml-on-map/data/us-states.kml @@ -0,0 +1,585 @@ + + +gz_2010_us_040_00_20m + + + + + + + + + + + Arizona + + + Arizona + 0400000US04 + 04 + 113594.084000000002561 + + -112.54029447377934,37.002032435824461,187.958812421187758 -112.536245946819136,37.002043262640555,187.950294739566743 -112.370645262316899,37.002486120521169,187.602112350985408 -112.359389115825181,37.002386286975288,187.578119164332747 -111.414470769716729,37.002852427681994,185.594578119926155 -111.407555689885811,37.002855838618011,185.580115981400013 -111.407203685553824,37.002871842774255,185.579421983100474 -111.191571791537712,37.002336932720944,185.127139117568731 -110.752367896607495,37.004581034334102,184.217238432727754 -110.49693340900221,37.005262605839988,183.687900924123824 -110.33272201585153,36.999606217982254,183.331788978539407 -110.002344403695403,36.999362878311381,182.646666400134563 -109.382884642382791,37.000551495535852,181.371656582690775 -109.379697596389803,37.000538540748309,181.365062600001693 -109.271754048007779,37.000671041521805,181.14338814932853 -109.26987002035996,37.000647069075029,181.139449400827289 -109.26504695136272,37.000668135307599,181.129590925760567 -109.24857371585783,37.000751360916574,181.095953091047704 -109.235504525756369,37.000671547490477,181.068872662261128 -109.182851766108911,37.000677281869564,180.960693730972707 -109.046876793534096,37.000492187247318,180.681008109822869 -109.046897153394369,36.970898729565462,180.600286518223584 -109.046925140436826,36.970280761401888,180.598656538873911 -109.04705811721368,36.87641266110478,180.342166102491319 -109.047084108787345,36.876003682127624,180.341098874807358 -109.047605742348168,36.003798829497597,177.913573480211198 -109.047642170073843,35.927360925876087,177.697096912190318 -109.047685169949972,35.927324927223232,177.697084245271981 -109.047685407961197,35.890187920668417,177.591655655764043 -109.047654224688571,35.881267400221041,177.566244808956981 -109.047919868908011,35.617998587787618,176.815053570084274 -109.047920823095325,35.615732710338968,176.808554226532578 -109.04813245711145,35.547925378620825,176.614193486981094 -109.048104454414926,35.547811385174967,176.613807051442564 -109.04769787376199,35.176171123653866,175.536715986207128 -109.047462792256241,34.961235420017125,174.907145221717656 -109.047760417838276,34.580829440569957,173.782374622300267 -109.047785329560952,34.524094592906287,173.613258667290211 -109.047785326495315,34.523934601802999,173.612781123258173 -109.048216636651716,33.77981616066662,171.362808702513576 -109.048451921603927,33.37426041462529,170.111181157641113 -109.048626862966515,33.370886605209733,170.101064363494515 -109.048490793943088,33.367176818975793,170.089233921840787 -109.048408787412995,33.366878837052553,170.088131075724959 -109.048815975803691,33.210580781532073,169.60149150621146 -109.048693702142302,33.139614857158051,169.378985982388258 -109.048694694355589,33.139178882194614,169.377621058374643 -109.048589895111689,33.094539449610679,169.237311220727861 -109.04848187601641,33.09355350768304,169.233982193283737 -109.049029482112786,33.071050795335658,169.164458589628339 -109.049056464531205,33.070043852939286,169.161351612769067 -109.048688310961353,32.779210648626801,168.241678325459361 -109.048688317135856,32.779209648722933,168.241675162687898 -109.04920784267668,32.695084519432385,167.975249625742435 -109.049214782381839,32.691633719604248,167.964272975921631 -109.049222718437136,32.687972931966499,167.952628161758184 -109.049222631882699,32.683025219145868,167.936863928101957 -109.049490745392603,32.428036934024654,167.121306857094169 -109.049845432389048,32.090794811245871,166.031435676850379 -109.049855347263417,32.08577410634323,166.01512320805341 -109.050289405079951,32.029858391009604,165.833962880074978 -109.050157157462223,32.015336247738787,165.78632132243365 -109.050145748776771,31.872484673407357,165.319212613627315 -109.050324593205403,31.86307722697239,165.288761807605624 -109.050317744410023,31.812473218419772,165.122675511054695 -109.050749512124071,31.798249054555459,165.07688526250422 -109.051362585676955,31.501243673147354,164.09714930690825 -109.051392585870389,31.501230673557931,164.097171870991588 -109.051590845735731,31.334227629686552,163.541519257239997 -109.428482951832478,31.335753988718835,164.375128633342683 -110.46173795530926,31.334759521922621,166.656955015845597 -110.762566549410565,31.334469966071115,167.325016222894192 -110.978400114241367,31.334262214752812,167.805338709615171 -111.099670766446025,31.34153628902698,168.099908068776131 -111.368214017482345,31.427571895873449,168.982194514945149 -111.581112363053535,31.49578004098673,169.681173593737185 -112.247696086800616,31.705859065034396,171.855560230091214 -112.868678804074563,31.897132714794541,173.863178818486631 -113.127570191963102,31.974416774250752,174.691305682063103 -113.3354068626778,32.040151495033982,175.367350651882589 -113.494811492222908,32.090568095049683,175.885536075569689 -114.25240326684029,32.325511203790931,178.329874378629029 -114.815250557515924,32.495860638511594,180.128891906701028 -114.811032743586395,32.618695298142448,180.494984463788569 -114.809029798460912,32.622908071015239,180.503305470570922 -114.800941778886099,32.626690949223082,180.496548424474895 -114.783511586768697,32.626626180716308,180.456924575380981 -114.754750878004273,32.659878558634603,180.493286224082112 -114.749639929258265,32.665758272362261,180.49965119920671 -114.721273615455203,32.720334368649652,180.601708247326314 -114.68027249084696,32.738184835204862,180.563412714749575 -114.678731466604447,32.737788879099519,180.558730031363666 -114.660480221575412,32.73540126100292,180.510270551778376 -114.659900214608214,32.73537027044906,180.508867107331753 -114.617224645297938,32.730018149397182,180.39626856520772 -114.617372664890567,32.730999088692471,180.399587600491941 -114.49846704618372,32.823687099841933,180.413193626329303 -114.497924043946156,32.823894094588873,180.412598802708089 -114.467355749744769,32.880756100478209,180.516200182959437 -114.467355753963574,32.880985086816658,180.516893899999559 -114.464531208718,32.907360550778677,180.590402557514608 -114.4702474892308,32.973208552271942,180.802294256165624 -114.512986925971759,33.025010906762596,181.054568418301642 -114.518555580559536,33.028426844309251,181.077371620573103 -114.525222201625894,33.032516299104536,181.104668497107923 -114.573297841714009,33.038178328629812,181.22977804299444 -114.57993189223032,33.036929315475312,181.240935139358044 -114.58640983147923,33.029785655129473,181.234005109407008 -114.591422849948614,33.027782708241688,181.239250031299889 -114.607927023393344,33.027257521935027,181.274785122834146 -114.625515274521931,33.030274110504692,181.323418539948761 -114.676750191726143,33.049084315147446,181.495216534473002 -114.709466365029598,33.092651291319321,181.699584619142115 -114.707822612362349,33.106883466845233,181.738559249788523 -114.698476992120874,33.132756052866611,181.795065014623106 -114.688722089488721,33.143742529317294,181.806036802940071 -114.681007328001058,33.161064602850935,181.840543207712471 -114.677008769839716,33.187033114619354,181.909218760207295 -114.673738103589983,33.260038830144872,182.119789906777442 -114.701754969367016,33.342579573018945,182.428252138197422 -114.722886259895404,33.39844299030446,182.64137951284647 -114.666930988136372,33.416888646800253,182.57067087944597 -114.628777908460094,33.435084081699365,182.539136545732617 -114.624571297975123,33.458089781231259,182.597833377309144 -114.596187712678145,33.496585891751515,182.648183717392385 -114.560552013901827,33.533344204046756,182.677093126811087 -114.537318458355614,33.570311340916021,182.734256909228861 -114.53761946870749,33.570677315384749,182.736008598469198 -114.541954735917102,33.582137584008166,182.779480435885489 -114.542271945573759,33.592933945513849,182.812004869803786 -114.532004511172673,33.68076192937113,183.047427965328097 -114.525615566724326,33.687395626206687,183.052653703838587 -114.520769562097556,33.689989539164024,183.049459430389106 -114.498145469716462,33.69841734870235,183.023741659708321 -114.495853655492013,33.709437733926777,183.050975097343326 -114.505997701001149,33.757893761403579,183.215634882450104 -114.525023873352154,33.807629597465748,183.403531858697534 -114.527198525303064,33.840121669964155,183.50327274762094 -114.520094973346772,33.919021162267931,183.71740931738168 -114.501544624260603,33.963289833626256,183.804881148040295 -114.465271830658253,33.994930482123564,183.816158168017864 -114.439928112648417,34.024107128142511,183.844524989835918 -114.436611371039163,34.039281291236954,183.881159066222608 -114.437092195498153,34.081221849299638,184.003703973256052 -114.435043342129617,34.089907372981401,184.024290062487125 -114.422162490724858,34.104959674136552,184.039251180365682 -114.413344519287449,34.111524412829702,184.038673945702612 -114.403015433917616,34.113145458724567,184.020452152006328 -114.392228280879323,34.11157769571814,183.991995759308338 -114.36818417414031,34.12006852909505,183.963233764283359 -114.323281045761263,34.139586006388875,183.92013212479651 -114.314255067588988,34.145945760331813,183.918514451012015 -114.245853976812171,34.181116651703114,183.868641240522265 -114.227524201961131,34.20326461960947,183.892013528384268 -114.166139479298977,34.253155570781452,183.900136191397905 -114.134927254489696,34.259950602248075,183.85073459893465 -114.133152271970587,34.261875515288381,183.852359747514129 -114.139946194216719,34.30471595291516,183.990725075826049 -114.178574548107861,34.350788773712033,184.208441977389157 -114.201148045970996,34.362854771819258,184.292915369383991 -114.265984580779687,34.402807589182338,184.550580364651978 -114.341296437233368,34.452909679957955,184.860109744593501 -114.454221766819558,34.654955541050136,185.683551696129143 -114.46728269597952,34.693719143151071,185.821941399015486 -114.554360192709382,34.768324679356553,186.224163891747594 -114.634732196453214,34.871417686084165,186.690617449581623 -114.636857322949197,34.876449369840977,186.709388261660933 -114.638406627734341,34.890552544568216,186.752283920533955 -114.632558931547095,34.908707591116247,186.790215530432761 -114.630698522097845,34.987588128234194,187.006425400264561 -114.630873641578063,34.993326799592957,187.022811013273895 -114.63469689381094,35.003524167004308,187.059636627323925 -114.635227698069158,35.017082394275164,187.098575437441468 -114.637153320343614,35.02970328612421,187.137948775663972 -114.623641627301708,35.096111850568086,187.292913453653455 -114.600805952934081,35.122482888322352,187.316000291146338 -114.58598586564321,35.126431870788601,187.294445254839957 -114.580209877171811,35.130182738708747,187.292182088829577 -114.574433016982695,35.140157254299019,187.3071797080338 -114.571255482644872,35.164483921722059,187.367647806182504 -114.570924900732095,35.18490977095577,187.423496363684535 -114.597621144660792,35.326655396370981,187.873251925222576 -114.606004830715534,35.355003682014711,187.969575486145914 -114.628829258170342,35.410920215233837,188.173029756173491 -114.653697952797572,35.43057976105122,188.281291507184505 -114.663818383687541,35.445654771613292,188.344702729955316 -114.679337514487017,35.491152997667662,188.503060953691602 -114.678427775652708,35.500473555581365,188.526535771787167 -114.676675510937073,35.51197360472171,188.554111772216856 -114.672842123103024,35.52204987067455,188.573243448510766 -114.655502552722254,35.60089517972542,188.750258618965745 -114.655102786673311,35.612193552896159,188.780124201439321 -114.659202991878743,35.619693075438228,188.809463103301823 -114.67840469082573,35.642391534963899,188.913028488866985 -114.691105056207888,35.65281377301649,188.969026607461274 -114.702007218285857,35.701785882133002,189.125598270446062 -114.709411674872356,35.813277558662797,189.443077368661761 -114.707313440960576,35.850274528681233,189.538212211802602 -114.705913491227008,35.853374376033713,189.543513492681086 -114.707832744993141,35.880100522636248,189.619611967355013 -114.733000797112737,35.946541813755481,189.852777342312038 -114.745281766526119,35.985103499490606,189.982794888317585 -114.75732613621328,36.088542598529372,190.285304570570588 -114.746565262581314,36.10006911443665,190.292681861668825 -114.737873285947657,36.105742924652141,190.288946843706071 -114.63342390922854,36.143681318327559,190.16359097417444 -114.573738423258533,36.152985656026615,190.059098791331053 -114.514962735741662,36.15259351552826,189.93080457765609 -114.383150999750811,36.143043919565812,189.620118762366474 -114.367539646244396,36.135101579522335,189.565137780271471 -114.330480604731193,36.106882662475236,189.409526824951172 -114.312559706335506,36.085170318718831,189.312629923224449 -114.308938058498526,36.077927880938752,189.285391429439187 -114.305316354421592,36.067840172472863,189.250519159249961 -114.294365011120163,36.052503176238922,189.185692684724927 -114.264847124869618,36.027323985689321,189.054220080375671 -114.254351878820529,36.021580451840308,189.016074600629508 -114.240499595932349,36.015948959399843,188.970959446392953 -114.234989525669576,36.015677052551361,188.958303426392376 -114.215390324836477,36.017001257284839,188.919449931941926 -114.155829804006245,36.025250646079847,188.812783717177808 -114.15047381520364,36.028698531670763,188.810472553595901 -114.139901991327577,36.042671910405197,188.825180388055742 -114.127496625289709,36.078917087579008,188.895726585760713 -114.121894091449875,36.103612806387119,188.94988482631743 -114.064723247216122,36.188322958900791,189.053352663293481 -114.062004267499347,36.19074386457271,189.053962706588209 -114.04854021030232,36.195449797562361,189.037510445341468 -114.048809438505373,36.251968691905553,189.189064119942486 -114.050219302596233,36.290973533886138,189.296093311160803 -114.048109070385394,36.373244061863787,189.510368017479777 -114.048196294825487,36.474814515996229,189.779724318534136 -114.052274373100317,36.657614516586591,190.270168209448457 -114.052293462703091,36.801520705346377,190.646943795494735 -114.052299166685074,36.844486589682909,190.759018384851515 -114.052320059543575,37.00173293559201,191.167551374994218 -113.967626038252845,37.001363182470229,190.985899602063 -113.967626037149785,37.001314185101982,190.985772594809532 -112.968177806173927,37.001571595463595,188.862289815209806 -112.901071871561925,37.001673019430818,188.720481971278787 -112.611489325126115,37.002110689279178,188.109348193742335 -112.560675678325936,37.002050421147523,188.001887081190944 -112.546795502721551,37.002092617892053,187.972694589756429 -112.542069441140271,37.002027689098604,187.962546850554645 -112.54029447377934,37.002032435824461,187.958812421187758 + + + Arkansas + + + Arkansas + 0400000US05 + 05 + 52035.476999999998952 + + -94.044280807088967,33.021020557855913,139.16531883366406 -94.044353705766227,33.081283368928908,139.375416902825236 -94.044187899863317,33.094524670766823,139.421204221434891 -94.044325517426003,33.13568549500966,139.564595865085721 -94.044395582733785,33.139957268734527,139.579567832872272 -94.044503664419125,33.145270987077787,139.598226689733565 -94.044194501453276,33.201577020111635,139.793151498772204 -94.044211545016665,33.204457868067891,139.803175059147179 -94.044195733053769,33.217010206663943,139.846677732653916 -94.044050129653982,33.243612806770145,139.938620317727327 -94.044324260128377,33.251917366553073,139.967881361022592 -94.044370423147114,33.262692798771347,140.005282166413963 -94.044310577257704,33.27301525609959,140.040912829339504 -94.044310598505291,33.273031422996645,140.040968832559884 -94.044388472299758,33.332283138381442,140.246039326302707 -94.04438872682428,33.349135252933792,140.304260374978185 -94.044388798539686,33.353881003645938,140.32065090816468 -94.044449900459085,33.360540653221825,140.343757108785212 -94.044191082846524,33.372953004214082,140.386142393574119 -94.044375185664435,33.379498658623561,140.409062929451466 -94.044209826160596,33.422005430205672,140.555360758677125 -94.044310992032862,33.432803862933845,140.592753860168159 -94.044311064865539,33.437603611315609,140.609290318563581 -94.044511592975908,33.472101801529327,140.728435955941677 -94.044602909768173,33.492806716372755,140.799834299832582 -94.044332934783,33.494815614093305,140.806260099634528 -94.04469969313611,33.544089032350335,140.976257133297622 -94.044752833237837,33.553198555537712,141.007632578723133 -94.044774846328593,33.554026512021956,141.010514598339796 -94.068171582527455,33.570681391067239,141.109550775028765 -94.086569062749902,33.577317847187722,141.165250218473375 -94.18313331938846,33.594986888170133,141.398808038793504 -94.253985665914328,33.587913496925552,141.501657186076045 -94.259130715717106,33.58427763176519,141.498436251655221 -94.357276123947742,33.544950635017436,141.540006781928241 -94.410661601172379,33.570033747222546,141.721973332576454 -94.465670195719582,33.600585555292703,141.925525007769465 -94.4722974408309,33.607706111205289,141.961803851649165 -94.479701319676238,33.622612160114564,142.026083528064191 -94.487210237875274,33.63963128035099,142.097744099795818 -94.486912470206036,33.655073476269727,142.149938101880252 -94.486863624894795,33.665150950124655,142.184248506091535 -94.485855983419242,33.689670680100519,142.266088432632387 -94.485952042367188,33.693353486737848,142.278820519335568 -94.485176332094781,33.713092464613233,142.344716994091868 -94.48521041645607,33.718493182375688,142.363182978704572 -94.484206920486685,33.752322428508229,142.476596480235457 -94.484198923674995,33.752538417332318,142.477317368611693 -94.48411396629109,33.755396269238382,142.486892807297409 -94.4840190054488,33.758044132211438,142.49573474097997 -94.483179496602915,33.790764436065928,142.605539563111961 -94.482880594839585,33.797475089745987,142.627818785607815 -94.482698698913197,33.804404730811648,142.651048109866679 -94.482692702493225,33.804642718483009,142.651846252381802 -94.481912111200188,33.831920306899626,142.743122457526624 -94.481292428389011,33.853083212560946,142.813861726783216 -94.480332874845303,33.882948670123959,142.913462216965854 -94.480180876227607,33.88323665680727,142.914166024886072 -94.478726726522893,33.939507749944788,143.102222583256662 -94.478657894795248,33.942681001005006,143.112841803580523 -94.478377971287472,33.955585919404427,143.156017584726214 -94.478297024912919,33.959112737314953,143.167806362733245 -94.476235960588639,34.021399530998245,143.374672826379538 -94.476236994938077,34.023582417923429,143.382046963088214 -94.476236995551403,34.023621415903555,143.382178672589362 -94.471635880814205,34.191599784231776,143.939842557534575 -94.467193044441643,34.353800484533068,144.47569786105305 -94.46677115523633,34.36127510528376,144.499941936694086 -94.465522820369685,34.40443790365773,144.641954358667135 -94.465163001296489,34.41618930489367,144.680551277473569 -94.465018080398892,34.42130904395647,144.697383726015687 -94.462497440488661,34.509176571388572,144.985813028179109 -94.461407027402103,34.546981650271306,145.109668329358101 -94.461401069312856,34.549586517206841,145.11832029838115 -94.458850424703925,34.636658100488674,145.402960432693362 -94.458880555259384,34.644673691468789,145.429597784765065 -94.455928036637076,34.730670762019379,145.709167278371751 -94.451586866420044,34.857114971880108,146.118932365439832 -94.45149391824387,34.860395806586581,146.129578942433 -94.451418959962083,34.863036673547668,146.138147762045264 -94.450984179082681,34.876953973033004,146.183223658241332 -94.45041241824056,34.892256204152844,146.23259751778096 -94.450440477837944,34.895852021712223,146.244484305381775 -94.450607509487284,34.897568932895439,146.250431783497334 -94.449243935985322,34.935639135461685,146.37325553316623 -94.442590037376334,35.12141271932628,146.970616334117949 -94.442112178173673,35.130494267518685,146.999464209191501 -94.440908821686932,35.170723257228168,147.12877257168293 -94.440867866915255,35.173493118425291,147.137744066305459 -94.440415220049545,35.195273028818669,147.208032212220132 -94.440443282429584,35.198982842107107,147.220185659825802 -94.439829457739464,35.210271281933885,147.255924377590418 -94.439606493178715,35.212676163652716,147.263373836874962 -94.439133955037704,35.240953749306215,147.354719790630043 -94.438937999879982,35.243884604428267,147.363923693075776 -94.437172449178263,35.272981164745929,147.455570566467941 -94.437066496574303,35.275948017179829,147.465041589923203 -94.436676515627411,35.277573940047176,147.469646238721907 -94.436640708774831,35.28916535939733,147.507306423038244 -94.436530773563661,35.293174159723627,147.520155865699053 -94.435476002646894,35.308172420112754,147.567081909626722 -94.43317690043321,35.364567623078621,147.746278264559805 -94.434047219592841,35.382481717453942,147.805956795811653 -94.435104764152143,35.388142527237875,147.826186713762581 -94.435277355990749,35.389066374416409,147.82948793284595 -94.432577415598658,35.395965060064043,147.847112073563039 -94.433151676736699,35.399334060547105,147.859050641767681 -94.464684270748478,35.584325306641176,148.512805306352675 -94.465463365277813,35.588930068824411,148.529023431241512 -94.465823400743943,35.590573983001036,148.534956769086421 -94.466638504941486,35.595701718811583,148.552921167574823 -94.474014416819259,35.640218423228717,148.709293549880385 -94.488954225208872,35.727804909084654,149.017115603201091 -94.489579291239323,35.730897748748397,149.028142188675702 -94.494301755555639,35.760822054872932,149.132451865822077 -94.494731958538736,35.763548073312094,149.141949653625488 -94.495919093351731,35.769958742511463,149.164590066298842 -94.500415619338924,35.795114446778875,149.253107309341431 -94.50101769121234,35.798564269311804,149.265215839259326 -94.50189680810918,35.80429597587419,149.285118306055665 -94.502134833339554,35.805473914920164,149.289308700710535 -94.502532886533047,35.808083781350007,149.29836570750922 -94.504382110605761,35.818863227421097,149.336126029491425 -94.505809298049286,35.828021758544672,149.367946547456086 -94.507013448195252,35.835280386177246,149.39328801818192 -94.509002701183931,35.847552757288859,149.43603961635381 -94.524031541364664,35.935897227668676,149.744583837687969 -94.524031550861579,35.936446200620964,149.746335086412728 -94.524007551966434,35.93653919631376,149.746589709073305 -94.524283579126575,35.937774132312214,149.751012541353703 -94.525717746334564,35.945696725615399,149.778793341480196 -94.526013781575756,35.947373639629291,149.784659490920603 -94.529536200822392,35.96731061757248,149.854385673068464 -94.529679210566002,35.96769959678597,149.855875734239817 -94.53344566758193,35.989496480935976,149.93191137816757 -94.535020855994262,35.998448022527818,149.963173377327621 -94.536226983290021,36.004321719813156,149.983984028920531 -94.537099090663745,36.009450457602561,150.001835484988987 -94.549091551104993,36.078910907592352,150.243658701889217 -94.549247571987365,36.079920856231453,150.247139086946845 -94.553561391600724,36.103873855145544,150.33072614390403 -94.562543140809879,36.153746083632143,150.504574647173285 -94.56418134395922,36.163384592721165,150.537973550148308 -94.564206325996309,36.163530762947708,150.538480223156512 -94.567033696253603,36.180073742803344,150.595809375867248 -94.567966809370276,36.185408470953945,150.6143281115219 -94.572632383290482,36.212534090146399,150.708308103494346 -94.573185444898996,36.215380944553083,150.718277811072767 -94.575774784713118,36.231628120377721,150.774169527925551 -94.576259843149529,36.23437298062278,150.783692604862154 -94.576450863704366,36.235313932430962,150.787000190466642 -94.577382995586561,36.241701609514884,150.808814747259021 -94.579279202139773,36.251179124574243,150.842069923877716 -94.579263211158178,36.2517110987704,150.843722510151565 -94.587581264798459,36.301597567319213,151.015711004845798 -94.594779224446029,36.347368252544598,151.172532791271806 -94.601106098137294,36.389211141708955,151.315271444618702 -94.60336740331185,36.40374340839341,151.364915911108255 -94.604006472855687,36.40690624712699,151.375973956659436 -94.606791827171435,36.423571404359514,151.433208305388689 -94.612993660964861,36.463148409147976,151.568299336358905 -94.615214969646829,36.477867668606272,151.618353212252259 -94.616696156520646,36.486611226964683,151.648357682861388 -94.619304468392485,36.501032496834327,151.698116953484714 -94.56067423155541,36.501115173406887,151.596316833980381 -94.520861384847194,36.500833648861914,151.526182434521616 -94.112847709638558,36.500221394911556,150.81698105391115 -94.112047692404701,36.500211404613417,150.815567185170949 -94.101626471656886,36.500294520664319,150.79782229475677 -94.099962436275973,36.500300539544163,150.794966285116971 -94.078462978631819,36.500354784567065,150.757999151013792 -93.965291561189318,36.500343087364001,150.562676344998181 -93.960561460043166,36.50034314173935,150.554521852172911 -93.923210661041452,36.50034457091995,150.490154944360256 -93.907498324744438,36.500344751408647,150.46308764629066 -93.868127578714166,36.5004157142466,150.395515928044915 -93.7293885109992,36.500665778867791,150.157733009196818 -93.728918501219155,36.500683783382172,150.156982476823032 -93.720259317354817,36.50080687661697,150.142498103901744 -93.711322125341738,36.500807978911354,150.127153523266315 -93.701536914279131,36.500764093072313,150.110213148407638 -93.585645416322407,36.500526432264593,149.910665436647832 -93.585644416465243,36.500526430214094,149.910663716495037 -93.515873912285528,36.500512227819655,149.791111316531897 -93.508769759566093,36.500542307463647,149.779045292176306 -93.428349017637942,36.500217240504519,149.640446982346475 -93.397438351056195,36.500301588728675,149.587883268482983 -93.396077319010445,36.500151611463913,149.585083450190723 -93.316694599576081,36.50004152067752,149.449181384406984 -93.316682007006875,36.500041508359828,149.449159855023026 -93.297474046456159,36.50002271959589,149.416326653212309 -93.090340684074306,36.499820102470999,149.062900411896408 -93.088987655608292,36.499875115165231,149.060774138197303 -93.070864261481603,36.499878320465086,149.02997334394604 -93.069807238626581,36.499886332060676,149.028202001005411 -93.015092629480591,36.499766607614873,148.934860101900995 -92.895684437898566,36.499505321209099,148.731436085887253 -92.895349430292129,36.499488325812351,148.730814315378666 -92.855397027126685,36.499621399056856,148.663538516499102 -92.840223229678671,36.499671939781486,148.637998922728002 -92.839968224904041,36.499717940451085,148.637713091447949 -92.773686449119012,36.499411738803886,148.52455326821655 -92.77367877037571,36.499411703330416,148.524540167301893 -92.530485462136923,36.499381761686152,148.113854457624257 -92.319750797318562,36.499355807499548,147.75930301938206 -92.310759602091338,36.499538899392654,147.744789930060506 -92.21774555698741,36.500062914800736,147.590420012362301 -92.215476506063112,36.500017942316916,147.586473111063242 -92.212782446908079,36.500040971326648,147.5820307508111 -92.200729179692757,36.499997108133236,147.561689720489085 -92.151627234979784,36.500280358272065,147.480340260080993 -92.139072821815262,36.500352779757243,147.459551646374166 -92.121746416742965,36.500509978065743,147.431051060557365 -92.121637438534535,36.500510966798643,147.430871824733913 -92.099686951373158,36.500450214634398,147.393948040902615 -92.076264431722421,36.50040847788631,147.354636501520872 -92.058508036620523,36.500317680216853,147.324656156823039 -92.057119005829222,36.500317695701547,147.322333966381848 -92.030176407947167,36.500289997321701,147.277212426066399 -92.020704195831556,36.500172108502774,147.261008621193469 -91.990079515867308,36.500146450845619,147.209771735593677 -91.987130449267113,36.500079486887003,147.204633241519332 -91.867320793068785,36.500432802767811,147.005895300768316 -91.865710757356041,36.500438820372239,147.003231402486563 -91.807305460802013,36.500637459602466,146.906582999043167 -91.80336437262676,36.500613504498553,146.899945362471044 -91.800824315870059,36.500602533219386,146.895681873895228 -91.786036988567844,36.500724691511977,146.871459641493857 -91.767434574764778,36.500764896006416,146.840634129941463 -91.727985696950711,36.500860328965437,146.775329284369946 -91.688936829014963,36.50104875276412,146.711030332371593 -91.687347793161621,36.501025771467191,146.708316643722355 -91.673664489261938,36.501114918798159,146.685870106332004 -91.643910822724166,36.500987254388548,146.636050680652261 -91.632759571312405,36.500850384368597,146.617100525647402 -91.60263690067417,36.500995710783656,146.567576608620584 -91.597532783513486,36.500814775884884,146.558529591187835 -91.550481731302412,36.500814296208283,146.480503732338548 -91.540677511177535,36.500769406714483,146.464109574444592 -91.538188456158807,36.500809432313524,146.460112592205405 -91.531092295085102,36.500675517119717,146.447924081236124 -91.451321454698132,36.499192682601176,146.311074971221387 -91.447600398850611,36.499123513060304,146.304695639759302 -91.437818178024926,36.499031625369888,146.288215197622776 -91.434614104251338,36.498916666197815,146.282545801252127 -91.408576518048093,36.498777959981503,146.239033967256546 -91.408452515080825,36.49876696187313,146.238793654367328 -91.406456471207818,36.498819981354885,146.235662853345275 -91.406230465377547,36.498774985991815,146.235144898295403 -91.22870948573302,36.499273916644768,145.943640155717731 -91.219956287870843,36.49922101537971,145.929041053168476 -91.218671258058421,36.499168032026738,145.926752869971097 -91.127838215623697,36.499370019976929,145.777797682210803 -91.097585536560132,36.499551343250296,145.728605320677161 -91.097188527219345,36.499528348699066,145.72787844017148 -91.019280772160187,36.499721193453048,145.60043709538877 -91.009864562977498,36.499929286686104,145.585639636032283 -90.964368537377425,36.500077777687487,145.511425018310547 -90.961953482915021,36.500085803733477,145.507487617433071 -90.880523639884615,36.500038696403607,145.373803427442908 -90.878170587365503,36.500083719975272,145.370092395693064 -90.877870578729457,36.499973728481585,145.369247009977698 -90.875078511508079,36.499734770347118,145.363903364166617 -90.851736990848906,36.500209002788786,145.327190647833049 -90.785699731822177,36.500185439742872,145.219016536138952 -90.783755449656184,36.50018474598243,145.215833533555269 -90.766973068523171,36.500155930401306,145.188289949670434 -90.712525829874338,36.499980532232776,145.098721444606781 -90.694304419276762,36.500172721602063,145.069573044776917 -90.65454451550994,36.500151155534276,145.004583071917295 -90.649792406809254,36.500110209199256,144.996694883331656 -90.613851591448253,36.500222594898403,144.93841605540365 -90.606747428183496,36.500122676904688,144.926507351920009 -90.595597174511624,36.5001227981478,144.908324791118503 -90.586638971307707,36.500160893734979,144.893841804936528 -90.577476317949987,36.500110369012994,144.878742258995771 -90.577408760397162,36.500109996486877,144.878630937077105 -90.501455029790947,36.500063823709809,144.754756885580719 -90.496321912337464,36.500035880752982,144.746311121620238 -90.495869901985415,36.500032885801168,144.745565719902515 -90.341183369101429,36.499879569742667,144.49362931214273 -90.230231823808637,36.4994387904188,144.312277680262923 -90.22202062332714,36.499525558445207,144.299256032332778 -90.221990636544604,36.499525875316507,144.299208482727408 -90.218611558152588,36.499464914701605,144.293538104742765 -90.195231023042908,36.499491165932668,144.255759980529547 -90.153768074924997,36.499620607282758,144.189071056433022 -90.155696100592678,36.498500639513217,144.188570964150131 -90.157655995231281,36.48941704854856,144.162382171489298 -90.135278659115869,36.439577651889905,143.964930471032858 -90.074180519349753,36.394681439493866,143.720584379509091 -90.065797147661584,36.383760048103532,143.671597597189248 -90.065261839371075,36.304716811496966,143.414015493355691 -90.077582756260213,36.282387742491942,143.36135193053633 -90.085012789411039,36.274012061813323,143.346141239628196 -90.116204392948177,36.267275048439792,143.374785702675581 -90.200018171240814,36.203064048684254,143.301796778105199 -90.221708482679077,36.18644677474721,143.2829156126827 -90.320452187522164,36.091662253646419,143.134525992907584 -90.365713975918339,36.015314433886005,142.958858939819038 -90.370001784483946,35.997502244304457,142.907574356533587 -90.343899193278688,35.997585519586657,142.86519015301019 -90.340717123259935,35.99772354698834,142.860443270765245 -90.293658060137972,35.998088032627997,142.784787363372743 -90.290229032353508,35.998109163590897,142.77925934176892 -90.290081979222578,35.9981100697877,142.779022279195487 -90.160091037043316,35.999067411421954,142.570226659066975 -90.12860932395283,35.999327734504263,142.519827489741147 -90.127628300965426,35.99928874683097,142.518103028647602 -89.973837813855866,36.000688316298763,142.272741679102182 -89.966601645579644,36.000507401877385,142.260404310189188 -89.962349553580765,36.000829431608487,142.254560953006148 -89.961167524714355,36.000714449684665,142.252265591174364 -89.960651512920364,36.000714455167113,142.25142830517143 -89.960649854883343,36.000714465013658,142.251425648108125 -89.902456187688898,36.001060056600096,142.158182071521878 -89.897781081800616,36.001127103004407,142.15082442946732 -89.876858605084735,36.001257318773057,142.117347170598805 -89.876357593874189,36.001273323320888,142.116587989032269 -89.875862582495643,36.001270328716132,142.115776154212654 -89.87028245580926,36.00133538479345,142.106949520297348 -89.771525207408217,36.002220389065435,141.9500129846856 -89.771243201134268,36.00223239147644,141.949596386402845 -89.738917460200724,36.002263732183295,141.897441059350967 -89.738833457552317,36.002218735228595,141.897157442755997 -89.734364356394238,36.002304778400699,141.890217774547637 -89.721238639108776,35.976318162917018,141.783577737398446 -89.688191450797262,35.949415802491146,141.641658553853631 -89.689205528844084,35.907085985035692,141.503870896995068 -89.689407668915408,35.898648227180409,141.476385591551661 -89.716201431474616,35.907948497641335,141.550366276875138 -89.734877834854544,35.906400374862073,141.57547798845917 -89.757304222948704,35.898518516832326,141.585801837034523 -89.766957356026282,35.893000680130996,141.583247251808643 -89.772994309699968,35.881426172923447,141.554874545894563 -89.774832223842679,35.873399539580717,141.531389445997775 -89.773735093592592,35.866800868608991,141.507853464223444 -89.770680967300166,35.863261071158362,141.49123190715909 -89.750691372729136,35.854658696010077,141.430477384477854 -89.730783832198526,35.849336162085017,141.380678350105882 -89.710527229601212,35.840615795281096,141.319101640023291 -89.704149007898891,35.835858091485278,141.29306919965893 -89.702310871672665,35.82993239610844,141.270525379106402 -89.705140810333333,35.82198674887961,141.248861974105239 -89.822483485626876,35.758423577284134,141.229018211364746 -89.866899338831203,35.748284598658927,141.267636069096625 -89.890291935727319,35.752265159719677,141.318819393403828 -89.906807447493748,35.760769574765959,141.373781785368919 -89.91126555446084,35.761102511636018,141.382131195627153 -89.951548140725521,35.74020009616121,141.378578410483897 -89.957524195781488,35.735093279889668,141.371423151344061 -89.960152104005118,35.725541713892376,141.344118047505617 -89.957022506035486,35.692330353369741,141.229136674664915 -89.938651693361706,35.667421752769066,141.116726899519563 -89.924017195376578,35.657004411396905,141.058372970670462 -89.907414751709325,35.652856787078811,141.017589843831956 -89.891777415437929,35.654119890495551,140.996319949626923 -89.886199330976083,35.656818818504036,140.996188030578196 -89.911063050660204,35.539631241172366,140.647607250139117 -89.934838518749302,35.535015715798046,140.671037041582167 -89.958613986574932,35.530400190401494,140.694485854357481 -90.018580778573337,35.557711232609009,140.883165911771357 -90.029889023555739,35.556964149897368,140.899157363921404 -90.034207093073988,35.555155192351556,140.900204045698047 -90.041013162482272,35.549756383095719,140.893392705358565 -90.036243995065178,35.482423708907419,140.661713223904371 -90.03528156826907,35.470540793521963,140.620583362877369 -90.048947664026528,35.460974971357111,140.611089549958706 -90.060336180738489,35.459608330003341,140.625175345689058 -90.069066511794574,35.467943069290634,140.667213588953018 -90.073422681622404,35.472470802919553,140.68941470887512 -90.075688760715025,35.474236693072328,140.699001133441925 -90.108992584655553,35.47865312768301,140.768222883343697 -90.153655875217396,35.438508358789981,140.707790388725698 -90.170272106208543,35.423573168853395,140.68530238699168 -90.180534763277237,35.386915850980188,140.57997874263674 -90.179610693792867,35.383814012244528,140.568118952214718 -90.167515305392996,35.376467498313822,140.52376292552799 -90.144901794253428,35.376467735809804,140.486652373336256 -90.136778640690665,35.37839072714884,140.479740177281201 -90.094856953182372,35.395055353329475,140.466586555354297 -90.090879556680406,35.381565135548463,140.415065385401249 -90.087958798074737,35.37165873810082,140.377219374291599 -90.116160037763564,35.305613502416428,140.202860615216196 -90.154661887318113,35.304314162499033,140.261735490523279 -90.160180981519616,35.302363200157814,140.264280071482062 -90.165080021604751,35.297841370217014,140.257212921045721 -90.170138915682543,35.283724008670312,140.218323205597699 -90.167861748821352,35.276315395527625,140.189802255481482 -90.160132387290545,35.264305065104502,140.136917578056455 -90.153361131907943,35.257717458932902,140.103743101470172 -90.141660810225218,35.254017762806875,140.072131965309381 -90.117759324955912,35.257516841466085,140.044580540619791 -90.10635904413185,35.256017034266669,140.020837193354964 -90.099212815776355,35.251712320015805,139.994689032435417 -90.078674971240019,35.22720973607975,139.878883552737534 -90.075526788982955,35.220047120278807,139.849707308225334 -90.074618498716035,35.212735653463355,139.823704450391233 -90.065875368241706,35.142356035739773,139.573132108896971 -90.066655340582443,35.13942617162057,139.564570091664791 -90.084683499980187,35.123405771371871,139.540366940200329 -90.091873609946148,35.12002286280191,139.540819059126079 -90.101856810472327,35.118426837227112,139.551872725598514 -90.110657042905231,35.120626637249565,139.573741378262639 -90.144059046372718,35.136825491994301,139.683120684698224 -90.16132333862366,35.130564619697807,139.690508055500686 -90.175859478239957,35.118417065608028,139.673636161722243 -90.195124061989347,35.063383574973145,139.520350913517177 -90.296863016405396,35.041830576094931,139.615735914558172 -90.31114386890205,35.011488924811047,139.53721115924418 -90.310563639250063,34.997433625140289,139.488916722126305 -90.255233771212175,34.956730213632099,139.260251937434077 -90.245740291082029,34.939339172524008,139.185879671014845 -90.251358952928683,34.909064612209399,139.092939671128988 -90.295181723002585,34.862309669326898,139.007418458350003 -90.30864830157013,34.847942045346265,138.981124103069305 -90.40923027062297,34.834513852524907,139.102458018809557 -90.416130487083819,34.833592639273242,139.110794111154974 -90.425145730861345,34.83635240839115,139.135090546682477 -90.437698196626158,34.856804774274885,139.225063518621027 -90.462718766439068,34.858472425410305,139.27223822940141 -90.475228958316734,34.854302499025678,139.278926203027368 -90.479398747387833,34.834287448281927,139.218208730220795 -90.468555757615917,34.78425006143096,139.030906922183931 -90.481065809220198,34.770906604986287,139.006523038260639 -90.496078135548089,34.769238537028009,139.025841230526567 -90.502592470434607,34.771679816110108,139.044944246299565 -90.521098908246572,34.784249514340637,139.118284933269024 -90.538613317086217,34.78591725975572,139.153073402121663 -90.551123285582293,34.765068168435498,139.103325830772519 -90.556126865399406,34.729207902919441,138.990184291265905 -90.534442048960614,34.709193141048303,138.886205721646547 -90.511089271444732,34.691680264022814,138.787897906266153 -90.510255106604646,34.680838815438811,138.74971108045429 -90.522765120486611,34.664993477799825,138.716751380823553 -90.540279472096046,34.660823501041676,138.731778414919972 -90.551121745871157,34.664159227474642,138.761179217137396 -90.565300099417811,34.667494903044187,138.796143271028996 -90.577810243320187,34.659155199586962,138.788691953755915 -90.577053166421607,34.643503059420816,138.734271774068475 -90.571398183109665,34.526589337433101,138.327019915916026 -90.56707282999669,34.43716486511218,138.014616259373724 -90.576599736673757,34.416917783392819,137.961347003467381 -90.615208225284761,34.392489612027553,137.942428031004965 -90.659806987324146,34.377471906322562,137.965770065784454 -90.765410137711498,34.365162433377229,138.100834986194968 -90.857633954815057,34.24069983905742,137.829651217907667 -90.87004214961776,34.2300175043762,137.813909748569131 -90.896012299276734,34.231748435454172,137.863620503805578 -90.912748480389311,34.224823419506428,137.868084105663002 -90.914479660056742,34.212127834152092,137.827441722154617 -90.897165953177904,34.193661676548537,137.734844719059765 -90.882160820916738,34.182120404905454,137.669896511361003 -90.881583533769202,34.17115604341901,137.631249334663153 -90.894279860418621,34.157306182966515,137.605064425617456 -90.919672842870426,34.156151780472904,137.6439513489604 -90.935831664440656,34.131914599260263,137.587902327999473 -90.934382792589133,34.126264758396218,137.566022063605487 -90.933236354304753,34.121794249889234,137.548706633038819 -90.930060185449207,34.1094088556288,137.500723750330508 -90.91332369826543,34.097290521609096,137.430737336166203 -90.889661926134522,34.089211761106469,137.362956579774618 -90.880427761711928,34.067283124087872,137.271807849407196 -90.888677907545301,34.034286895444787,137.171964844688773 -90.965974539186945,34.009734019340598,137.217958204448223 -91.020157355315305,34.004933034164246,137.293134473264217 -91.090387439411629,33.974435862865192,137.306959349662066 -91.089432231875847,33.961861513263116,137.261929058469832 -91.038087301723891,33.916442202858519,137.017866237089038 -91.068777010887857,33.842232829491259,136.813073459081352 -91.141135656883776,33.77890932532928,136.716541635803878 -91.145948364515419,33.751901659089697,136.630988694727421 -91.137383867780869,33.730426831960095,136.541811591014266 -91.128070150894615,33.709610263113717,136.453596575185657 -91.129165665920794,33.697558481245395,136.413552531041205 -91.134096198071504,33.689889128055796,136.395274481736124 -91.141218140557768,33.685506598002831,136.392162361182272 -91.149435785336991,33.681124056762449,136.390918359160423 -91.177376080678272,33.686054033465368,136.455695854499936 -91.187237265411781,33.681123669567953,136.455361003056169 -91.189976360712876,33.671263105278264,136.42572757601738 -91.194358942846904,33.658663484741666,136.389356259256601 -91.187784621800461,33.647707404558844,136.33999971114099 -91.158748419058739,33.627986640696328,136.221780318766832 -91.131708944507963,33.607835198349939,136.105427491478622 -91.135306854375713,33.596290755169441,136.071302783675492 -91.15341207655716,33.584523175481387,136.061138764023781 -91.225386416582438,33.569171230019201,136.130473649129272 -91.22955270756988,33.561739596685563,136.111662717536092 -91.233560381410058,33.554590897244864,136.093564420007169 -91.216935680177528,33.531227270680162,135.983575943857431 -91.126370891522313,33.474650110746012,135.631031236611307 -91.119756404161265,33.450925401991043,135.536664487794042 -91.133146419284145,33.431873249191987,135.492789610289037 -91.185689407886557,33.421386256214845,135.545865708962083 -91.142475723222361,33.300213963050602,135.046518607065082 -91.111819305746323,33.247749992498619,134.809365507215261 -91.08724142524936,33.223465500576381,134.6817079288885 -91.088845368216028,33.147002454759694,134.414556689560413 -91.126911672054959,33.040106634535853,134.101566601544619 -91.158918278642588,33.013048435643142,134.060608956031501 -91.167329060930598,33.005938009413214,134.049844422377646 -91.266276209807288,33.006914961922739,134.223446730524302 -91.285656626452635,33.006837770568247,134.256531294435263 -91.313275225136252,33.007092478722221,134.304990866221488 -91.323765452201613,33.007171368768581,134.323339563794434 -91.326296507037085,33.007194342030694,134.327781128697097 -91.32765553647458,33.00720632769179,134.330164829269052 -91.331026609707749,33.007251291327364,134.336131798103452 -91.334270681097379,33.007359252953336,134.342103467322886 -91.377276610533755,33.007623804975587,134.41716424562037 -91.426727677212824,33.007845293780029,134.503247944638133 -91.437043900142399,33.00792818516684,134.521345178596675 -91.461632521261308,33.008075204584159,134.564313285984099 -91.560758566782823,33.008667894483743,134.737712632864714 -91.573590842918335,33.008735760917645,134.760149459354579 -91.58090399348437,33.00829970960239,134.771258900873363 -91.581066997635389,33.008345705545899,134.771703651174903 -91.610266623988579,33.008383407579643,134.82236984744668 -91.618880810845823,33.008544311816827,134.837851448915899 -91.627936003707404,33.008466224064392,134.853253488428891 -91.951273921976409,33.009343889681517,135.41775372158736 -91.953230962329215,33.009251874542613,135.420836068689823 -92.070380464841023,33.009985640180886,135.627585196867585 -92.224103739918178,33.010901019330376,135.899313233792782 -92.293944233614297,33.011923249771165,136.025127311237156 -92.337174151649634,33.012168793314821,136.101709155365825 -92.364146725890791,33.01244750176609,136.149960295297205 -92.371571884098245,33.012536420844555,136.163289716467261 -92.471046003000609,33.013828330526465,136.342368001118302 -92.502667671993294,33.013977997271105,136.398435086011887 -92.505060722455113,33.013978972587836,136.402642847038805 -92.712578119767272,33.016122720190957,136.775390087626874 -92.71717321758176,33.016213667944889,136.783810514956713 -92.724842377585972,33.016143592404163,136.79708568379283 -92.726032232379936,33.016162570147394,136.799250358715653 -92.726283408174183,33.016166576308194,136.799707319587469 -92.734486580320748,33.016162491768291,136.814158141613007 -92.832089646376076,33.017475413400248,136.991027220152318 -92.84536492993476,33.017848256378556,137.015786643140018 -92.845577934921664,33.017884252279806,137.016289353370667 -92.855459142794061,33.017946146727127,137.033964564092457 -92.868802421195582,33.017876012253588,137.057297274470329 -92.947847085918809,33.01862015399881,137.199693874455988 -92.972431605425811,33.01900487877441,137.244555982761085 -92.990002788370532,33.019110593416571,137.276036525145173 -93.071982692658395,33.019603813720082,137.423027290962636 -93.074463745960358,33.019709782359385,137.427798093296587 -93.082724918695675,33.019739694939418,137.442552167922258 -93.102278324317339,33.019597499199357,137.476734491065145 -93.102740333275051,33.019551496820078,137.477392760105431 -93.155649437394572,33.019666940497444,137.571695296093822 -93.198701335005723,33.019761487440832,137.648489625193179 -93.239907192709822,33.019802056151356,137.721865378320217 -93.309482640797498,33.019965322283987,137.846200494095683 -93.309699645641501,33.019988318807869,137.846667263656855 -93.34165531131265,33.020145977112129,137.904109361581504 -93.37843707282795,33.020042598625686,137.969265036284924 -93.468346941280132,33.020418639325058,138.130894602276385 -93.490811403760205,33.020250413266133,138.170396881178021 -93.491825400282352,33.020249671642127,138.172204241156578 -93.492198432446727,33.020249398811103,138.172869145870209 -93.522277057228933,33.020423074935159,138.227179615758359 -93.522300057054679,33.020423197117992,138.227221117354929 -93.526222139121359,33.020444032540766,138.234298432245851 -93.532805275332848,33.020449963324936,138.246076955460012 -93.80624194970089,33.02115127419205,138.737976845353842 -93.815865122774724,33.021175955498023,138.755326713435352 -94.025791428327281,33.021008753544798,139.131992029957473 -94.029299499157489,33.020940720140281,139.1380694527179 -94.037155660112788,33.020946636946618,139.152232812717557 -94.042760775509592,33.020989575534692,139.162473983131349 -94.044280807088967,33.021020557855913,139.16531883366406 + + + California + + + California + 0400000US06 + 06 + 155779.220000000001164 + + -120.250202700131695,34.000748585099444,196.915873091667891 -120.249111743063878,34.00333044490602,196.920462044887245 -120.240375784856241,34.009011225017446,196.916002430953085 -120.231719764089334,34.011555192864947,196.90310818143189 -120.223005696199934,34.011786300728012,196.883726960979402 -120.210196494578454,34.007074763251623,196.841356602497399 -120.197498361107307,34.005704023144986,196.808422419242561 -120.169024202663735,34.009639184135658,196.753847204148769 -120.153381271453796,34.019545806754493,196.74516267888248 -120.14936537296893,34.026250459657518,196.754370017908514 -120.142080335036056,34.027393492726546,196.740787093527615 -120.137571299562794,34.027506548937254,196.730746862478554 -120.1167759999758,34.021286213504908,196.665911311283708 -120.091899790051016,34.021226564592382,196.608647219836712 -120.075326744912829,34.025897515306632,196.58345683477819 -120.064495788511991,34.03258126491238,196.576981930062175 -120.063670838303494,34.035396107287553,196.582828436046839 -120.059354869793339,34.038759965465815,196.582173582166433 -120.05682485634172,34.039148977443105,196.577438224107027 -120.044976717822252,34.0372262585012,196.544968649744987 -120.0457215027362,34.026240908192513,196.516464824788272 -120.049515462311376,34.022648071132409,196.515286527574062 -120.052099325062699,34.014752509642072,196.499490383081138 -120.05064324369657,34.011319736340262,196.486700749024749 -120.04829202475527,34.001424364126819,196.454061405733228 -120.043027869899262,33.995929768015216,196.426845856010914 -120.027369557955254,33.986976524965108,196.366235713474452 -120.012839321714878,33.981318067995943,196.317285294644535 -120.005531253090936,33.980971190794435,196.299554106779397 -119.986032176898178,33.985372198100514,196.266934927552938 -119.980592113506532,33.98450532610422,196.252059761434793 -119.981628851908226,33.971048120970856,196.217320752330124 -119.978572566502677,33.958118941376959,196.174622856080532 -119.972856391941065,33.951827399604952,196.144128900952637 -119.971975263294468,33.945785775453466,196.125419869087636 -119.975406254625142,33.943907840670846,196.128109904937446 -120.002675466262247,33.942980516534668,196.188163409009576 -120.019430503479214,33.937792595402605,196.212313443422318 -120.048596412839515,33.921024198983886,196.232987419702113 -120.050030256878699,33.919052541127094,196.230833715759218 -120.050326350802607,33.917202405137502,196.226401484571397 -120.051397335524584,33.915990463240888,196.225512993521988 -120.079508457926508,33.910313413817988,196.274419697932899 -120.100316611746777,33.909280186274387,196.319386299699545 -120.107204597891297,33.905707305716945,196.325345607474446 -120.110852525284756,33.900556565449996,196.319496810436249 -120.123532563012731,33.897139594905632,196.339202233590186 -120.170690425525706,33.920515528443666,196.512172074988484 -120.180765688164357,33.929418851274242,196.559898287989199 -120.191557173737337,33.949126513049194,196.63904039002955 -120.194056246043971,33.951689323766594,196.651846333406866 -120.200319337312166,33.95363411921106,196.671599123626947 -120.201802443949049,33.958326815784183,196.687935303896666 -120.211089832306357,33.973797754231718,196.751877510920167 -120.226179293557465,33.990479538964692,196.832445844076574 -120.250202700131695,34.000748585099444,196.915873091667891-119.79151399823337,34.058682510546028,196.022937532514334 -119.772444790446883,34.056473909176447,195.973171629942954 -119.767796757046966,34.056792954929094,195.963403638452291 -119.765403772500818,34.058577881321582,195.96283948700875 -119.757236693637537,34.058139021634169,195.942923964001238 -119.741187406552456,34.05072269024398,195.885727128013968 -119.728152266618366,34.04933195551358,195.852037826552987 -119.714291054034845,34.044689427230502,195.807490462437272 -119.706342873311655,34.039105872861853,195.773886167444289 -119.688221357859035,34.021231197427902,195.683047197759151 -119.639455804309705,34.014605274464373,195.553050084970891 -119.62105671149132,34.01789533357168,195.520005479454994 -119.61393974618295,34.022683145712328,195.516938120126724 -119.606000884665633,34.032987638727242,195.527227574959397 -119.610511997770175,34.036671355086824,195.547728505916893 -119.610953043920063,34.038776222804827,195.554550402797759 -119.594954152403361,34.0510507104891,195.551814754493535 -119.575123990341496,34.051535957935386,195.507770123891532 -119.568413999405237,34.054877851354306,195.501640308648348 -119.531316429925582,34.042582104877319,195.382792786695063 -119.522353213421212,34.035689642591976,195.34323554020375 -119.523483182745963,34.03367474753442,195.340252077206969 -119.534126128594906,34.026377036429473,195.34443520847708 -119.540560165178363,34.025416004373689,195.356504331342876 -119.544162138074071,34.022510128311936,195.356714800000191 -119.549992962480616,34.011247722059323,195.338916756212711 -119.548784864661187,34.006897999616648,195.324118403717875 -119.55618477534334,33.999249355127766,195.319897986017168 -119.562176781356982,33.996959409008277,195.327281400561333 -119.577348922467934,33.997438169049261,195.363349225372076 -119.591912922224395,33.991141343922607,195.379279732704163 -119.59858995791221,33.990040317003114,195.39152605086565 -119.620795122138972,33.988657090810754,195.43856184091419 -119.622830175074398,33.990418956769808,195.448097966611385 -119.64942338045995,33.989214658703112,195.50568878557533 -119.664538472695298,33.98731756204797,195.535073098726571 -119.691823433466638,33.97365400229981,195.559805003926158 -119.708665517140474,33.970606950764193,195.589979194104671 -119.714076488302737,33.966851100988649,195.591992020606995 -119.716409428479651,33.962868307728222,195.586320115253329 -119.722919447162525,33.961012328586044,195.596109237521887 -119.744679719918224,33.965305767705516,195.657878082245588 -119.752151781592389,33.965187670754752,195.674683701246977 -119.759854756403541,33.960640836672233,195.679769778624177 -119.797652154282915,33.964357087010029,195.776726530864835 -119.844462702408535,33.971766989598599,195.904569986276329 -119.875073164478849,33.98180095997143,196.002494771033525 -119.878772304041561,33.987182585001158,196.025834703817964 -119.884748657209457,34.002226597798412,196.08104804623872 -119.886611834156795,34.010238090584195,196.10741288587451 -119.884246871569857,34.013097951816157,196.109874057583511 -119.878632062292269,34.024950318454437,196.129666958004236 -119.878045229612312,34.033509812798691,196.151903632096946 -119.894537640645353,34.046950775823177,196.226721586659551 -119.91793309788865,34.059771679689909,196.315627257339656 -119.925054380425124,34.070780919660002,196.362222565338016 -119.920872504724116,34.07869950310964,196.374403244815767 -119.914574455833247,34.078927577458408,196.360596769489348 -119.892847177260606,34.074276160074106,196.298020041547716 -119.859020857802946,34.072718726102643,196.216228217817843 -119.827581357614974,34.061215855033701,196.112542657181621 -119.820458159798861,34.054419362101598,196.077509573660791 -119.809541048985494,34.053549566681738,196.050100823864341 -119.79151399823337,34.058682510546028,196.022937532514334-120.464301341464477,34.044040983764909,197.526650942862034 -120.441969042816439,34.03833264018283,197.459685567766428 -120.420489172772733,34.053507027292788,197.451867951080203 -120.417008020792721,34.056373752931883,197.451716022565961 -120.413035127109083,34.054283084952928,197.436863475479186 -120.405334014661022,34.051856338842981,197.412522858940065 -120.397908948345361,34.051601458136801,197.394763269461691 -120.392626941325929,34.053408423332606,197.387574686668813 -120.375932019150937,34.064072015430824,197.378415213897824 -120.370534395539593,34.069193908571023,197.380036565475166 -120.370305525779116,34.07262771159499,197.388908918946981 -120.371897233520301,34.076320335164134,197.402669738046825 -120.369999249363232,34.077878268052018,197.402573215775192 -120.363972130644228,34.074469557479674,197.379402505233884 -120.356702791616954,34.060670489313004,197.324928985908628 -120.36201076603092,34.057234621715097,197.327712866477668 -120.360328639306033,34.051649981292641,197.308551664464176 -120.34866646905094,34.047991364676534,197.271735365502536 -120.332881389435471,34.05051243389962,197.242381570860744 -120.320752145325258,34.043395031874063,197.195010894909501 -120.31489498776773,34.037992438915303,197.166742585599422 -120.303841633890826,34.024991375969442,197.105684976093471 -120.306262605488854,34.022588486752191,197.104653322137892 -120.318771662013802,34.020254452339586,197.126990022137761 -120.349425941272983,34.021530946795821,197.200933915562928 -120.357039959793511,34.019330972779194,197.212397065013647 -120.359649923164781,34.016446110005667,197.210481153801084 -120.37686314075016,34.020191643692989,197.260318037122488 -120.411088693591466,34.033613356585988,197.375777395442128 -120.416945742739102,34.033660271793828,197.389368207193911 -120.420741707433947,34.030364417156093,197.3890624307096 -120.429128705274977,34.026840512034973,197.398685087449849 -120.455854978407672,34.029495978058073,197.467402778565884 -120.461356093320703,34.032951692896013,197.489515678025782 -120.467050279596506,34.039862196945982,197.521529953926802 -120.464301341464477,34.044040983764909,197.526650942862034-119.545540537951453,33.281801871794592,193.280053557828069 -119.534639529279048,33.286200752719914,193.267428619787097 -119.529839491817128,33.286401806064276,193.256921073421836 -119.506738058347239,33.274302858870314,193.169085482135415 -119.484477694811119,33.26544770247483,193.09242645278573 -119.467414455780172,33.260714223888954,193.039522256702185 -119.460163304550505,33.256136601831351,193.009709693491459 -119.431255542478382,33.229644611045515,192.867249366827309 -119.445965496566899,33.220667957810143,192.87553549464792 -119.466421600958213,33.216909908084958,192.912024547345936 -119.477725700322651,33.216997748583147,192.938383747823536 -119.502381010571142,33.222046104367074,193.009769125841558 -119.513356152654595,33.224503804728435,193.04214670881629 -119.519211274755321,33.228213498549437,193.066275227814913 -119.547569647735628,33.234881704811237,193.150834751315415 -119.566669083226387,33.248914588133296,193.235024675726891 -119.567339139051427,33.251503421094938,193.243961702100933 -119.567712472505804,33.254113652125994,193.252273565158248 -119.572340330971329,33.259202883262212,193.277484447695315 -119.580640806838915,33.280100495822822,193.356248866766691 -119.563740516389785,33.272602183815806,193.295844331383705 -119.556940502439062,33.274902136530649,193.286701002158225 -119.549340570640112,33.281800819932272,193.288823950104415 -119.545540537951453,33.281801871794592,193.280053557828069-119.424683761476686,34.005798793087642,195.037043767049909 -119.429301152021665,34.007875803428107,195.05336135905236 -119.439446003503264,34.011430250298389,195.086416303180158 -119.442828081736678,34.013856057917202,195.100871090777218 -119.442938115795869,34.015504957622042,195.105687838047743 -119.435624090030757,34.017404945646312,195.094214101321995 -119.423087961105495,34.016442177816089,195.06286893133074 -119.413028798606248,34.009435608964921,195.020452408120036 -119.397962558740488,34.00734907207444,194.980205021798611 -119.391694507466866,34.007530148448517,194.966367860324681 -119.368302516769788,34.018215834141841,194.942467333748937 -119.359173419268998,34.017350013016326,194.919190816581249 -119.378107506141504,34.011982461294544,194.947624276392162 -119.393262449115994,34.003936341868538,194.959996654652059 -119.41623920065517,34.006424761510175,195.019457067362964 -119.424683761476686,34.005798793087642,195.037043767049909-118.526213151944091,32.896998171153534,189.816735479980707 -118.537505458637185,32.907789360064754,189.874316787347198 -118.552817333674227,32.946661780590929,190.023098999634385 -118.562570663686103,32.95939687201794,190.082717365585268 -118.575205992591108,32.97068801279292,190.144748378545046 -118.5886128568347,33.009783447784713,190.28944549523294 -118.597722074027942,33.016858893520528,190.331009669229388 -118.608244156750359,33.016191792114476,190.353317014873028 -118.607219457776921,33.03249981204177,190.398348114453256 -118.595718447731144,33.037451665688693,190.386236444115639 -118.576845238516356,33.035462041839757,190.336979219689965 -118.570698091130765,33.030652417875373,190.308842409402132 -118.56612996900455,33.026415737688126,190.286004841327667 -118.566211850347301,33.020139119033452,190.267945584841073 -118.560855566938201,33.007793943699639,190.219699791632593 -118.541752911612448,32.98243774724299,190.101870604790747 -118.530911622996911,32.972426503933846,190.047719026915729 -118.498493625183926,32.935355202301821,189.864869957789779 -118.486970325162446,32.925053986126095,189.808224964886904 -118.480721207974312,32.921872264438065,189.784524499438703 -118.462304834682257,32.911020174678853,189.71035538893193 -118.448452441984173,32.896935220916156,189.637232058681548 -118.371663680216017,32.840788682108347,189.295690234750509 -118.355183203245076,32.823478961114887,189.206878497265279 -118.358220143615597,32.818828204662793,189.200225774198771 -118.362209229296994,32.821437991621544,189.217090141028166 -118.381647494469391,32.826061448220258,189.275498067028821 -118.38905457703072,32.826843301040668,189.29487806558609 -118.39624461747367,32.825494287033536,189.307503939606249 -118.402947610322926,32.821854419631578,189.312283311970532 -118.427313461762893,32.802112300196768,189.310539230704308 -118.431109587332188,32.806945953582719,189.333494102582335 -118.430051604804916,32.808388879509401,189.335289356298745 -118.446600014054894,32.822108818310099,189.413745010271668 -118.477754696723665,32.843268106171678,189.547679188661277 -118.489588857991905,32.846103773847496,189.583294574171305 -118.497979066016967,32.853085234301346,189.623106680810452 -118.50858348192574,32.870015056943664,189.697142456658185 -118.50977654596889,32.872832868695909,189.708141529001296 -118.508874631070071,32.877775578774738,189.720524140633643 -118.526323109232834,32.894685310963027,189.810227890498936 -118.526213151944091,32.896998171153534,189.816735479980707-118.501904546614256,33.451068862355143,191.362665119580925 -118.501361508367509,33.449355973113491,191.356523376889527 -118.487262346750725,33.447690266055638,191.319449862465262 -118.479338316370161,33.449869242750893,191.307523064315319 -118.447503645853615,33.430385852616119,191.178827172145247 -118.425267409385498,33.428737255353099,191.123153895139694 -118.383727689966975,33.411363869954677,190.978197013959289 -118.37201357032923,33.410766065659082,190.949643796309829 -118.369991509542089,33.408591224446994,190.938775186426938 -118.366784117233451,33.389856398888504,190.877684683538973 -118.326148976659468,33.350267342609904,190.670834510587156 -118.317771786193461,33.34441381014809,190.634799039922655 -118.311901594249647,33.337281320878631,190.600824851542711 -118.304862229595386,33.321751355012566,190.539988745003939 -118.306772055665604,33.311810929906187,190.51574148517102 -118.318474986911241,33.302625326280619,190.516116715967655 -118.326932025347389,33.300563336091912,190.529571236111224 -118.344937310264598,33.306721719062558,190.588605654425919 -118.362020662468794,33.316816876464486,190.656851387582719 -118.376456886858705,33.321551393955183,190.703586101531982 -118.404630162411152,33.322386960379468,190.770611156709492 -118.441736459817676,33.320123592682833,190.849228101782501 -118.457998670459887,33.323305179055168,190.89568929746747 -118.467057835294639,33.327540799616237,190.928651513531804 -118.483576335585639,33.345606482249188,191.018453799188137 -118.490460640737595,33.35813163122846,191.070205707103014 -118.484299840812255,33.371395913374002,191.094134545885026 -118.480156120318711,33.387800978585609,191.131678022444248 -118.486640679800203,33.413610331444048,191.220497480593622 -118.490441863849057,33.421304815058939,191.251242361031473 -118.505644088654208,33.425712341613085,191.298706965520978 -118.517606162940581,33.423895288124925,191.320930085144937 -118.517959217736859,33.426553122844751,191.329344999976456 -118.524922391253639,33.432210686291995,191.361494186334312 -118.539072595901956,33.436085259289534,191.405015432275832 -118.560407767785634,33.434896039886404,191.450529841706157 -118.565134829627254,33.435857917289233,191.464118490926921 -118.572619994462855,33.44082751507198,191.495487309060991 -118.577594212935651,33.449736909318894,191.532352274283767 -118.595662745880034,33.468672519694998,191.627850539982319 -118.602878863307708,33.471327260895592,191.651969822123647 -118.605724019343995,33.478013818560044,191.677571977488697 -118.605069043693973,33.479571733519606,191.680515342392027 -118.600476998740987,33.479412805873736,191.669536110945046 -118.587629801411012,33.475293229991863,191.628333566710353 -118.546223429059623,33.475593777651525,191.534294310025871 -118.532395184946893,33.469546331327876,191.485337452031672 -118.501904546614256,33.451068862355143,191.362665119580925-122.420519967653433,37.853882117458141,211.442619546316564 -122.436224706580575,37.853598921958621,211.476683009415865 -122.445124011900361,37.85661285424797,211.503147639334202 -122.44813840620472,37.862210359418853,211.522432744503021 -122.44038764590681,37.869530358973591,211.521812256425619 -122.432780328053269,37.87340570648611,211.513742367736995 -122.423261255853873,37.871132799048993,211.4875892335549 -122.42316335934828,37.87110942390359,211.48732026387006 -122.420292434192959,37.86292842618753,211.46252737659961 -122.420292211632173,37.853886224465505,211.442125567235053 -122.420519967653433,37.853882117458141,211.442619546316564-123.015738123942569,37.701518778455402,212.417047630995512 -123.015719771664564,37.705642036900699,212.426304773427546 -123.01401658938552,37.707912901088115,212.427644894458354 -123.006311454572142,37.707426412748333,212.409448321908712 -123.002012722882952,37.704101318917665,212.392409903928638 -122.999011657272987,37.699073074294333,212.374407499097288 -123.002499052432952,37.691368381497071,212.364763612858951 -123.007365425674365,37.690557291565931,212.373735203407705 -123.013286267418792,37.693071344747281,212.392550637945533 -123.01612510242478,37.697369679089476,212.408548582345247 -123.015738123942569,37.701518778455402,212.417047630995512-122.380320932118323,37.827671936971136,211.294585871510208 -122.379699508720535,37.831815172850732,211.302578336559236 -122.371762086071882,37.833303476836463,211.288401990197599 -122.365064645887387,37.825118585834467,211.255096266046166 -122.360599598277773,37.815445479159138,211.223347324877977 -122.364480809459181,37.808745610158098,211.216764887794852 -122.374242029070345,37.812468910681524,211.246766746975482 -122.374490206779825,37.817677538735758,211.25909844879061 -122.380320932118323,37.827671936971136,211.294585871510208-124.067452263050512,41.465687489608385,222.386057369410992 -124.067988652491806,41.471205739476638,222.397328685037792 -124.077849656879053,41.502702999454051,222.475945362821221 -124.083359976882065,41.512173433774024,222.504929134622216 -124.083921068503159,41.548704600874068,222.572997746989131 -124.094338315485189,41.554558133661295,222.605659546330571 -124.103057840685949,41.570134210221873,222.652499107643962 -124.10333812112637,41.579465740349299,222.670129121281207 -124.099320294012202,41.586192472759059,222.673942320048809 -124.10289683413842,41.603439553405366,222.71293742954731 -124.116349354289213,41.617707616435972,222.767270290292799 -124.117973727022502,41.629787987824436,222.79268706869334 -124.122162100551719,41.641292344886253,222.822438273578882 -124.137489714913329,41.65824424349119,222.885518684983253 -124.141292171430123,41.672588466351208,222.919571472331882 -124.140311381495366,41.679817123695628,222.930627970956266 -124.14541832993838,41.710218527806269,222.996492937207222 -124.149351617892961,41.718889031115324,223.020467733033001 -124.156185991521369,41.729734377659561,223.054468235000968 -124.166656404952363,41.741058639195856,223.096962509676814 -124.179330662295001,41.74668814598401,223.133780946955085 -124.187303524661573,41.740283328953616,223.138967161998153 -124.192980465454028,41.73701139537485,223.144988887012005 -124.196893513559544,41.737710294620747,223.154479367658496 -124.205783883849293,41.74796663575475,223.191700110211968 -124.241661847695454,41.771729851384663,223.309991613030434 -124.2442299026103,41.772963746822143,223.317613052204251 -124.250645929472299,41.772388666875671,223.330061574466527 -124.257936328271086,41.783942971032019,223.366198812611401 -124.246969533019183,41.793228696457291,223.359874346293509 -124.232621231024694,41.819608633197305,223.377199845388532 -124.221535993925698,41.847358448395269,223.403795230202377 -124.210384182212522,41.88911657463543,223.455315948463976 -124.205348750259034,41.941886057818969,223.539211924187839 -124.206896054335061,41.984360940483178,223.618291163817048 -124.213553558482943,41.999379088833443,223.659005174413323 -124.102868741491264,41.997877041140796,223.424587586894631 -124.102163733080445,41.99776305870418,223.422908280044794 -124.089774647805285,41.997812266495693,223.397062831558287 -124.088608638963493,41.997790287359187,223.394582903012633 -123.823417717118929,41.996398852902438,222.837259035557508 -123.626498427508949,42.000765975559723,222.433475484140217 -123.520018391809998,42.00136723131542,222.212110890075564 -123.503940551552049,42.00145801722919,222.178694298490882 -123.500839527128576,42.001405072324751,222.172122125513852 -123.50077352819487,42.001456070946475,222.172076338902116 -123.349504365468235,42.000041700536002,221.853677593171597 -123.232705268027146,42.00478037877798,221.618524135090411 -123.232703635709868,42.004780445003043,221.618520847521722 -123.15684919129032,42.00897252324873,221.46790281124413 -123.047194207090186,42.003987620436476,221.230194329284132 -123.003091868727196,42.003939368164176,221.13817027490586 -122.636676081801767,42.005803465212125,220.378376044332981 -122.503071134527431,42.009407544060963,220.106998960487545 -122.380128185063953,42.010467565780814,219.853286242112517 -122.291467515081536,42.008715265889549,219.66576618142426 -122.291461418503644,42.008715145396032,219.665753288194537 -122.163261374983961,42.008590311339503,219.399160710163414 -122.162371367732391,42.008590326329347,219.397312059998512 -122.158599329333498,42.008337402126259,219.389009590260684 -122.157341320442384,42.008382421131657,219.386479776352644 -122.003050952590002,42.004973184109907,219.059788051061332 -121.710128416532982,42.001776265660418,218.44614820741117 -121.706974388514297,42.001727321040768,218.439517668448389 -121.691088249259622,42.001545596833679,218.40624310541898 -121.677277125815849,42.001312840201365,218.377177079208195 -121.582793275651596,41.999631508985203,218.17820673622191 -121.522177739409173,41.998947560120129,218.051333851180971 -121.449467498219519,41.998134624244486,217.899200642481446 -121.441537022935819,41.998045957648017,217.882610243745148 -121.436903981472426,41.997988038219347,217.87290679384023 -121.378027475814861,41.997993026203027,217.751000693999231 -121.362179328890164,41.997647308846162,217.717541144229472 -121.342443144838711,41.997187662203956,217.675821064040065 -121.33766011254653,41.997485728080484,217.666478903964162 -121.336311105032962,41.997622744105783,217.663943430408835 -121.156271532260632,41.997322778263381,217.290838754735887 -121.037118395772296,41.994295921127438,217.038742975331843 -120.881403031038687,41.994756507118723,216.717810226604342 -120.695861366778246,41.994654617305251,216.33447942789644 -120.694139351297224,41.994655646063443,216.330927021801472 -120.327921996551439,41.994106793489834,215.574639243073761 -120.288340629155954,41.994043457457522,215.492969039827585 -120.00108199375137,41.995530179228247,214.904454506002367 -120.001756208343267,41.185003467792178,213.319359471090138 -120.00123933465764,40.874145835032351,212.693366965278983 -120.001113173670817,40.868499117541013,212.681665894575417 -120.001112129660058,40.866944194794236,212.678513791412115 -119.997796837996361,40.500964536895808,211.923667324706912 -119.998020915875273,40.322910509261348,211.555581561289728 -119.99802089968739,40.322322538987123,211.55435935780406 -119.998046313258854,40.264607459149374,211.434280845336616 -119.998047283869539,40.263536513377943,211.432050679810345 -119.998984569486112,40.127445406498587,211.149459835141897 -119.999093623363308,40.092675174533923,211.076693701557815 -119.999034232544744,40.078329906221434,211.046416693367064 -119.999150085630845,40.072888181645048,211.035219232551754 -120.002458261048744,39.781879026561519,210.426066738553345 -120.002353238041692,39.781056070560112,210.424088985659182 -120.003168706123546,39.723523019084176,210.303011140786111 -120.003168729871419,39.72351933937896,210.30300332698971 -120.004958364999567,39.446230338632972,209.710287542082369 -120.004959531012489,39.446162116464635,209.710142323747277 -120.007156801953954,39.317602795316418,209.435666715726256 -120.007159003136081,39.317474007803355,209.435390927828848 -120.007251938479655,39.314972136862544,209.430140508338809 -120.007252925322163,39.314469163089242,209.429046995006502 -120.007579716394176,39.229792581599845,209.244933265261352 -120.00758262639981,39.226338762229751,209.237385903485119 -120.006339484327967,39.166730582866705,209.104163262993097 -120.005236062435003,39.113821750562948,208.985608577728271 -120.004293502620556,39.068626084289555,208.884109613485634 -120.00284473655968,39.000714680302082,208.731131880544126 -119.906143159904175,38.934469687770978,208.37632964272052 -119.58949869495072,38.715896185430658,207.205668928101659 -119.588885679451394,38.715507215578747,207.203471793793142 -119.587256635746982,38.714374300953935,207.197409433312714 -119.496000191237158,38.651019078657043,206.857710445299745 -119.495839186769047,38.650901087417516,206.857096469029784 -119.452428033928157,38.621133341131397,206.696104694157839 -119.452439034055217,38.621134340907602,206.696130683645606 -119.330311073869368,38.535824165152121,206.238857445307076 -119.158670854429118,38.415928138681011,205.594160592183471 -119.127789321674712,38.394356428642325,205.477914034388959 -118.7483950929023,38.126132597336515,204.036005302332342 -118.430369818163385,37.896837197457543,202.807659553363919 -118.041575894493505,37.616517789447947,201.294342180714011 -118.041626894331827,37.616489790195871,201.294385342858732 -117.834498270775043,37.46618505570784,200.480613254010677 -117.5026721964296,37.221556332527989,199.15985166374594 -117.167940633324093,36.972154838411406,197.811205537989736 -117.002644492306047,36.848996137966388,197.141557500697672 -116.489968371190116,36.46042807186096,195.032282039523125 -116.098940560225458,36.159699425863323,193.396032503806055 -116.095325465753803,36.157158619377121,193.381466681137681 -115.914577454541714,36.016723045013386,192.616504929959774 -115.894693905206879,36.001332189181269,192.53231889847666 -115.847797500357004,35.964964146285631,192.333435118198395 -115.691015279220181,35.843379931759479,191.667034807614982 -115.649741022079084,35.811008640469005,191.490245423279703 -115.649395123420874,35.810737353061121,191.488763152621686 -115.648914110373141,35.810374380247019,191.486740018241107 -115.407784399398565,35.620006487435745,190.447262017987669 -115.406242360994725,35.618998565924777,190.441161744296551 -115.395701069398626,35.61073817951911,190.395756799727678 -115.39323999826378,35.608665330892286,190.384764972142875 -115.39057059430111,35.60656558463576,190.373243135400116 -115.305445565699841,35.539606457151464,190.005462895147502 -115.273043667373756,35.514061352835114,189.865131742320955 -115.226972943384496,35.477311441374312,189.6642622994259 -115.162297578111691,35.425720892219765,189.381923940964043 -115.161766568339729,35.425536910067429,189.380257358774543 -115.148486200853526,35.415070687291113,189.32257841154933 -115.147511179927349,35.414590728080562,189.319129944778979 -114.927172040437739,35.238475769340575,188.352883864194155 -114.927073039015028,35.238460771573443,188.352625206112862 -114.806718681532615,35.14171293164253,187.821298980154097 -114.80593766044106,35.14111797625575,187.817937284708023 -114.63469689381094,35.003524167004308,187.059636627323925 -114.630873641578063,34.993326799592957,187.022811013273895 -114.630698522097845,34.987588128234194,187.006425400264561 -114.632558931547095,34.908707591116247,186.790215530432761 -114.638406627734341,34.890552544568216,186.752283920533955 -114.636857322949197,34.876449369840977,186.709388261660933 -114.634732196453214,34.871417686084165,186.690617449581623 -114.554360192709382,34.768324679356553,186.224163891747594 -114.46728269597952,34.693719143151071,185.821941399015486 -114.454221766819558,34.654955541050136,185.683551696129143 -114.341296437233368,34.452909679957955,184.860109744593501 -114.265984580779687,34.402807589182338,184.550580364651978 -114.201148045970996,34.362854771819258,184.292915369383991 -114.178574548107861,34.350788773712033,184.208441977389157 -114.139946194216719,34.30471595291516,183.990725075826049 -114.133152271970587,34.261875515288381,183.852359747514129 -114.134927254489696,34.259950602248075,183.85073459893465 -114.166139479298977,34.253155570781452,183.900136191397905 -114.227524201961131,34.20326461960947,183.892013528384268 -114.245853976812171,34.181116651703114,183.868641240522265 -114.314255067588988,34.145945760331813,183.918514451012015 -114.323281045761263,34.139586006388875,183.92013212479651 -114.36818417414031,34.12006852909505,183.963233764283359 -114.392228280879323,34.11157769571814,183.991995759308338 -114.403015433917616,34.113145458724567,184.020452152006328 -114.413344519287449,34.111524412829702,184.038673945702612 -114.422162490724858,34.104959674136552,184.039251180365682 -114.435043342129617,34.089907372981401,184.024290062487125 -114.437092195498153,34.081221849299638,184.003703973256052 -114.436611371039163,34.039281291236954,183.881159066222608 -114.439928112648417,34.024107128142511,183.844524989835918 -114.465271830658253,33.994930482123564,183.816158168017864 -114.501544624260603,33.963289833626256,183.804881148040295 -114.520094973346772,33.919021162267931,183.71740931738168 -114.527198525303064,33.840121669964155,183.50327274762094 -114.525023873352154,33.807629597465748,183.403531858697534 -114.505997701001149,33.757893761403579,183.215634882450104 -114.495853655492013,33.709437733926777,183.050975097343326 -114.498145469716462,33.69841734870235,183.023741659708321 -114.520769562097556,33.689989539164024,183.049459430389106 -114.525615566724326,33.687395626206687,183.052653703838587 -114.532004511172673,33.68076192937113,183.047427965328097 -114.542271945573759,33.592933945513849,182.812004869803786 -114.541954735917102,33.582137584008166,182.779480435885489 -114.53761946870749,33.570677315384749,182.736008598469198 -114.537318458355614,33.570311340916021,182.734256909228861 -114.560552013901827,33.533344204046756,182.677093126811087 -114.596187712678145,33.496585891751515,182.648183717392385 -114.624571297975123,33.458089781231259,182.597833377309144 -114.628777908460094,33.435084081699365,182.539136545732617 -114.666930988136372,33.416888646800253,182.57067087944597 -114.722886259895404,33.39844299030446,182.64137951284647 -114.701754969367016,33.342579573018945,182.428252138197422 -114.673738103589983,33.260038830144872,182.119789906777442 -114.677008769839716,33.187033114619354,181.909218760207295 -114.681007328001058,33.161064602850935,181.840543207712471 -114.688722089488721,33.143742529317294,181.806036802940071 -114.698476992120874,33.132756052866611,181.795065014623106 -114.707822612362349,33.106883466845233,181.738559249788523 -114.709466365029598,33.092651291319321,181.699584619142115 -114.676750191726143,33.049084315147446,181.495216534473002 -114.625515274521931,33.030274110504692,181.323418539948761 -114.607927023393344,33.027257521935027,181.274785122834146 -114.591422849948614,33.027782708241688,181.239250031299889 -114.58640983147923,33.029785655129473,181.234005109407008 -114.57993189223032,33.036929315475312,181.240935139358044 -114.573297841714009,33.038178328629812,181.22977804299444 -114.525222201625894,33.032516299104536,181.104668497107923 -114.518555580559536,33.028426844309251,181.077371620573103 -114.512986925971759,33.025010906762596,181.054568418301642 -114.4702474892308,32.973208552271942,180.802294256165624 -114.464531208718,32.907360550778677,180.590402557514608 -114.467355753963574,32.880985086816658,180.516893899999559 -114.467355749744769,32.880756100478209,180.516200182959437 -114.497924043946156,32.823894094588873,180.412598802708089 -114.49846704618372,32.823687099841933,180.413193626329303 -114.617372664890567,32.730999088692471,180.399587600491941 -114.617224645297938,32.730018149397182,180.39626856520772 -114.659900214608214,32.73537027044906,180.508867107331753 -114.660480221575412,32.73540126100292,180.510270551778376 -114.678731466604447,32.737788879099519,180.558730031363666 -114.68027249084696,32.738184835204862,180.563412714749575 -114.721273615455203,32.720334368649652,180.601708247326314 -115.466811728754408,32.668664702919429,182.133341678418219 -115.8774934844337,32.637985158137774,182.974543988704681 -116.107812810994247,32.619887437847538,183.444912550039589 -116.391747028080118,32.59757683500743,184.026051629334688 -117.120527467512446,32.536211842384105,185.511713610030711 -117.126524206926618,32.535706902988913,185.523976094089448 -117.135026054533853,32.57717325969184,185.667876457795501 -117.134626446334096,32.598600958016661,185.731145333498716 -117.138327883648813,32.62029958610124,185.804585737176239 -117.14112806456319,32.628599043161479,185.835838037542999 -117.161529886117222,32.662194725844522,185.983058634214103 -117.170531183537591,32.673493918286013,186.037446443922818 -117.182031475747451,32.683193175052217,186.092776680365205 -117.194632711877247,32.689291636448502,186.139881108887494 -117.198432769353758,32.690391519025155,186.151880738325417 -117.214733907795519,32.689291369538282,186.186008253134787 -117.225533925710366,32.684591512316018,186.19678146019578 -117.237904828986956,32.672894060549865,186.190292181447148 -117.247734887459671,32.67089305195428,186.206890773959458 -117.256835545988409,32.701590061413569,186.319286803714931 -117.259237052809283,32.727587446981268,186.402203777804971 -117.257037392565636,32.746985296033287,186.454861556179821 -117.254237505047186,32.754484877136179,186.470737206749618 -117.256638162423158,32.788481778303606,186.577242213301361 -117.262738524265686,32.804680712717946,186.639303960837424 -117.282640074774363,32.823778287350642,186.741559613496065 -117.283839410077249,32.841077220871583,186.795565186999738 -117.282839465865109,32.844577021732533,186.803639029152691 -117.275539552133608,32.852976609254995,186.811782674863935 -117.26663941871972,32.850476879727857,186.783986302092671 -117.262339446143088,32.854176712547883,186.785089133307338 -117.257839529682187,32.860976359965662,186.794910280033946 -117.253339765032209,32.875874516187409,186.828692913986742 -117.2561402762462,32.901672914359679,186.911396226845682 -117.262140918876028,32.932769949544749,187.01698661968112 -117.264217921124782,32.941066287924308,187.046226134523749 -117.282442644381561,33.013862768866055,187.302408843301237 -117.295043188298507,33.036160251578423,187.396791611798108 -117.311445102812414,33.076055620403082,187.551443220116198 -117.3169525157425,33.095018401088865,187.619644068181515 -117.330034180646791,33.123354514587028,187.732556954026222 -117.361160122827044,33.165740736605187,187.927653728984296 -117.364248399057303,33.169946243385354,187.946996540762484 -117.393157333735459,33.204268784745558,188.113223011605442 -117.403603641799563,33.215103990951441,188.168676670640707 -117.447262114441884,33.270019094299691,188.428249797783792 -117.471473883168272,33.297917088087878,188.564584723673761 -117.507330952163642,33.335560338752899,188.755631288513541 -117.549374962183492,33.366985880124936,188.942585006356239 -117.573404453602706,33.38048174336155,189.036453512497246 -117.597562833378063,33.388121956691016,189.113664196804166 -117.609588328563476,33.40780861073339,189.197972726076841 -117.633366024389957,33.432017833983487,189.322079354897141 -117.647266354949664,33.442217032809786,189.38319465983659 -117.647275891720412,33.442222215845362,189.383231353014708 -117.686269139030955,33.46341423032019,189.533225689083338 -117.690969149794753,33.46164227279592,189.538845118135214 -117.693669107419012,33.458114447877144,189.534846604801714 -117.693069051401352,33.455515612056956,189.525994077324867 -117.717034407158962,33.462042894405926,189.599460582248867 -117.728171956519674,33.48491237021932,189.690661202184856 -117.763073928063065,33.517808921538105,189.86477929726243 -117.786575641833707,33.543006090387202,189.990661812014878 -117.802975891552947,33.547804579153699,190.041814299300313 -117.815876129237665,33.553704049596014,190.088136734440923 -117.841977792282663,33.575001417022584,190.208640648052096 -117.878479505641238,33.593798792387005,190.345635958015919 -117.901479866378324,33.601098040934332,190.418941538780928 -117.928781240358589,33.606996314565706,190.498045259155333 -117.942281651292845,33.621495261450079,190.570224164053798 -117.958804665087456,33.63093906564373,190.634843939915299 -118.002284889207758,33.655790386841979,190.804818485863507 -118.031386596545232,33.677887665523265,190.934073311276734 -118.066588606815273,33.712485112849407,191.112666700966656 -118.090590201918658,33.731282659316335,191.220733797177672 -118.102791401162975,33.735582234771137,191.260739754885435 -118.118397743969226,33.745013905050456,191.32305511366576 -118.134393073651921,33.754680658977954,191.386908111162484 -118.158595440433615,33.7617799021412,191.462178490124643 -118.177195679699551,33.765079449350232,191.513915852643549 -118.182526718888553,33.764534408696214,191.524524032138288 -118.189396510462672,33.750681142782106,191.500954436138272 -118.185395215301654,33.737581981333392,191.454717096872628 -118.183061824874329,33.718832135384673,191.396235308609903 -118.209171059940402,33.718369804748015,191.454473478719592 -118.260382279120975,33.705205890207495,191.533978596329689 -118.27890351739687,33.708555435362584,191.58574178814888 -118.29879972660072,33.709783088700924,191.634628779254854 -118.318901001807802,33.714281543221354,191.693255076184869 -118.356401733291463,33.733778860173743,191.834056982770562 -118.362201875626354,33.738278510968101,191.860027684830129 -118.386703193108502,33.74287789873221,191.92896078992635 -118.398303192126619,33.737378068716502,191.93988423421979 -118.412908446648629,33.743445504472952,191.990383899770677 -118.430105250751964,33.776173308085738,192.122101656161249 -118.425105348620107,33.783472939958585,192.131297307088971 -118.406705537867296,33.801672104291889,192.140669176355004 -118.396074590337591,33.805745540798277,192.127909382805228 -118.396005519842063,33.805772006386213,192.127826488576829 -118.393205713267662,33.816871381170422,192.152741813100874 -118.393806223187767,33.842369848668092,192.225965779274702 -118.414408265882926,33.885364996274888,192.393906733952463 -118.444111661045909,33.941760220696636,192.619908303953707 -118.462313402668499,33.970557252008177,192.742050040513277 -118.484431729447181,33.997356793780988,192.867404697462916 -118.48591519091606,33.999154221220721,192.875808276236057 -118.504516717920808,34.016951903439704,192.967899840325117 -118.521218111687404,34.02895095744524,193.039430283941329 -118.544819549000962,34.039948975423584,193.123851991258562 -118.570939851924038,34.043080426786076,193.192053159698844 -118.605277115374392,34.040488104973448,193.263011300936341 -118.611357118638836,34.037864176944922,193.269541630521417 -118.670063705398007,34.040326215937405,193.410121931694448 -118.677135741841411,34.038918201721344,193.422309686429799 -118.681071693259483,34.034694398827234,193.419507162645459 -118.707920860817467,34.030822257147925,193.469894644804299 -118.73409716660214,34.034181693687785,193.538906536996365 -118.746658268133032,34.033541557545625,193.565751496702433 -118.7851394065368,34.022981653309358,193.624060141853988 -118.788800399788371,34.02098372169079,193.626842243596911 -118.806820197093742,34.002678563971592,193.616932516917586 -118.823285600699407,34.015397576468814,193.689920336939394 -118.842087042489126,34.028964506002538,193.770568637177348 -118.856360305548066,34.035651908858995,193.821725493296981 -118.897866780462536,34.040643034624175,193.930266879498959 -118.929756201007876,34.04728219544355,194.021456686779857 -118.939789241933028,34.04481820306119,194.037496791221201 -118.946595578525105,34.046774667023037,194.058459331281483 -118.956430487572277,34.049601686349121,194.088748381473124 -118.979459928362914,34.061255670816244,194.17364293243736 -118.998689223849965,34.067376038241413,194.234494261443615 -119.006353298379665,34.067663914473357,194.252777320332825 -119.039203931836497,34.084542450444097,194.3745212610811 -119.071669370177872,34.091900559595047,194.468974044546485 -119.090246693812958,34.099739833279628,194.533064838498831 -119.099926800814103,34.100763637397286,194.557984589599073 -119.11149480806408,34.095995760746717,194.571182624436915 -119.131880101117517,34.101531146555637,194.633019390515983 -119.161265871282424,34.121080615402846,194.754135590977967 -119.190352404937343,34.140431011226568,194.873954716138542 -119.20485264460379,34.145930481025388,194.922219135798514 -119.21295372453767,34.146330344163331,194.941806714981794 -119.218153794864207,34.147530200063912,194.956982797011733 -119.229456101483223,34.163152487453985,195.025859773159027 -119.238855578143983,34.177227140730302,195.086095945909619 -119.258757513086678,34.214724628750353,195.23471381329 -119.267642023427655,34.236028236116226,195.313537751324475 -119.27185943181918,34.254321088432157,195.373396248556674 -119.280359791215645,34.268319136658455,195.431190938688815 -119.292661062502603,34.276318488603877,195.481170612387359 -119.303847117861793,34.274177459313115,195.500794713385403 -119.31475027364921,34.277105132466879,195.533674833364785 -119.339191791951279,34.291990904673852,195.630180601030588 -119.350904176113943,34.30579691953767,195.694681806489825 -119.37207367010997,34.320898724885481,195.784249608404934 -119.377497751101473,34.32253055180697,195.801073491573334 -119.389966785017222,34.318810598066101,195.819316846318543 -119.392166820660165,34.31961051965056,195.826518699526787 -119.429488858507597,34.354425926609842,196.006696733646095 -119.432784933994427,34.356706744808228,196.020432949997485 -119.437606987369477,34.357248644897091,196.032899611629546 -119.462755580099511,34.375472209001877,196.139912880957127 -119.474397714035476,34.377035952521808,196.170702416449785 -119.479985219887936,34.378605179658045,196.187711192294955 -119.512375264300189,34.387701785155926,196.286301020532846 -119.538677682161023,34.396900868888231,196.371284094639122 -119.561180244870442,34.414799489345192,196.4712541308254 -119.618583900009725,34.422398230112549,196.622715692967176 -119.640585982353613,34.41709923509999,196.658465385437012 -119.650386102171211,34.418798996147068,196.685421308502555 -119.673588276498592,34.417498746700993,196.734780742786825 -119.689889343750565,34.413899731027144,196.762170498259366 -119.686388227394772,34.40970002990931,196.742780702188611 -119.693471183251901,34.404557235863564,196.744960053823888 -119.71078917395883,34.396800453220521,196.763378296978772 -119.731091359385033,34.397300137713671,196.811041664332151 -119.747192641618156,34.404300494749286,196.866780799813569 -119.787594257869756,34.417398146907601,196.994484562426805 -119.796494367174304,34.418997926389679,197.019125802442431 -119.837494682034034,34.417196455769499,197.107776243239641 -119.855494676196429,34.40939666608211,197.127698350697756 -119.875694865381902,34.410195333908959,197.175963312387466 -119.926951818944943,34.435329116030701,197.36103033926338 -119.958158112592741,34.436685595128367,197.435923003591597 -119.973676436809001,34.446037819828504,197.496641526930034 -120.009803068724352,34.46184236982301,197.621815248392522 -120.040554390844406,34.464828757932075,197.700070286169648 -120.052408454482602,34.463045696573083,197.722314354963601 -120.09031774516464,34.461602246990445,197.804964235052466 -120.09893885088097,34.463203029953085,197.828969407826662 -120.120138196815262,34.471320247434313,197.899276429787278 -120.142892460080816,34.474797718938703,197.960611930117011 -120.185232753399717,34.471764300981746,198.049127589911222 -120.227226109794017,34.471978694538358,198.145628459751606 -120.239730163115709,34.469489665943826,198.167488219216466 -120.259498315008955,34.468842424974802,198.210910623893142 -120.284729544213818,34.46974501442255,198.270996286533773 -120.296779691451704,34.472013708871678,198.304642756469548 -120.300897707374602,34.471121703758435,198.311651724390686 -120.303550674760132,34.468467824320427,198.310568527318537 -120.343097832914907,34.460179758835139,198.378645204007626 -120.443704516080345,34.45290176967837,198.589114435017109 -120.453154502999141,34.448483899504417,198.598843005485833 -120.473105682972772,34.449235572419958,198.646507822908461 -120.478340288887168,34.476518871193321,198.731840370222926 -120.482102442254984,34.482446464540423,198.75637049600482 -120.492253712048168,34.491461783385056,198.803797960281372 -120.51315256377049,34.524337528340979,198.939784361980855 -120.526507846151901,34.532674842390215,198.992660449817777 -120.58302584168564,34.55834051214611,199.190572753548622 -120.610088056885274,34.558037146068266,199.251629571430385 -120.613738022613333,34.554945278392864,199.251706192269921 -120.624308118385443,34.555398101378124,199.277085367590189 -120.639538495874731,34.56760015843598,199.344526597298682 -120.647472868149322,34.582414163707618,199.402238447219133 -120.641978308884688,34.605783850976117,199.452054643072188 -120.626861811213729,34.635865276925756,199.497721271589398 -120.603705822594407,34.693468184749214,199.59817236661911 -120.602186072103365,34.706012461913168,199.6280477065593 -120.603408188266357,34.711093143031704,199.6443365002051 -120.616588735013252,34.732079710230686,199.730139510706067 -120.628056982956878,34.739442110072474,199.775840369984508 -120.639152446881269,34.757263895133129,199.848410318605602 -120.624708112768616,34.794666885179971,199.9145343657583 -120.618034541101622,34.817673618429609,199.960183885879815 -120.611637044434929,34.844115145431481,200.015484178438783 -120.612005372088248,34.859543227824062,200.057060716673732 -120.618064601995243,34.868101635181731,200.093448871746659 -120.641023078266699,34.881774498466584,200.181802835315466 -120.643952391758816,34.895505645112237,200.224661798216403 -120.649068581064512,34.902493159028147,200.25471880286932 -120.664629709506585,34.902542933226776,200.290287061594427 -120.672575836373241,34.905474646207296,200.316102406010032 -120.650647193668135,34.975749028435992,200.450936121866107 -120.641732674592646,35.004317256431349,200.505614554509521 -120.635313261032152,35.034437574402979,200.569952772930264 -120.631674835234932,35.062865953379998,200.63609314430505 -120.631327190744003,35.079711967370926,200.67935477104038 -120.632701704109735,35.103289561266934,200.744077323935926 -120.637532209893109,35.125152206928533,200.812109428457916 -120.646056617312965,35.1409621554442,200.872692985460162 -120.652879847416997,35.149113578425776,200.909428254701197 -120.66422105990884,35.154702086832089,200.949735404923558 -120.669740076849664,35.153375085216453,200.958809493109584 -120.676820156950015,35.154405922643662,200.977569351904094 -120.688720417913302,35.162052302111434,201.024496963247657 -120.700652739810096,35.172535514581654,201.078867791220546 -120.705949826258831,35.174549319970254,201.096132096834481 -120.715931967681485,35.177341012117438,201.126054973341525 -120.735978184530126,35.1798145777489,201.17799842171371 -120.750617289615235,35.179137406324628,201.20947618316859 -120.756570272005476,35.176043502114339,201.214950800873339 -120.758609171136342,35.17055079526466,201.205300441011786 -120.757832977710919,35.16180232030748,201.18078584689647 -120.762238997638335,35.161053300769879,201.188844415359199 -120.780745344959485,35.170239494246886,201.254763135686517 -120.787823590237707,35.179007877137693,201.293627176433802 -120.807005902782947,35.186314171255873,201.356169508770108 -120.848422656084296,35.205768431002355,201.500714542344213 -120.857795776237765,35.207826174815075,201.527336529456079 -120.874795325891199,35.227025802191868,201.615700416266918 -120.898539994636067,35.249213157034625,201.727051125839353 -120.898626126699455,35.255325797214226,201.743059990927577 -120.891104578253206,35.279153508815533,201.787592886947095 -120.881320851248546,35.295517691382543,201.807668403722346 -120.868951461453861,35.328485939681613,201.864699830301106 -120.864435848200486,35.34810685679544,201.905047160573304 -120.863885145787592,35.362093046586409,201.939831882715225 -120.86785187596368,35.394373101731645,202.03189979121089 -120.870962122663869,35.404603458759048,202.065250662155449 -120.886510832121516,35.431521660606478,202.169620404019952 -120.898616191606777,35.443567781371023,202.227950358763337 -120.90969142952585,35.45039322195764,202.270538663491607 -120.948300691012676,35.448038798279001,202.351948070339859 -120.952496753259567,35.449343661091589,202.364797537215054 -120.957617918889184,35.455066252498234,202.391063425689936 -120.97119116868825,35.461519678363004,202.438339865766466 -120.977877197271823,35.460350649394648,202.450489754788578 -121.005114453440072,35.462032155116113,202.516493830829859 -121.02737715197523,35.485918436720553,202.628037950955331 -121.054836871906247,35.508848698836708,202.748820221982896 -121.061669973428479,35.510989474418665,202.769760283641517 -121.10335316134686,35.550129584241581,202.96396282594651 -121.127786323923431,35.594370649712353,203.131848292425275 -121.135315546046854,35.601767109009714,203.167683048173785 -121.145320748465878,35.607357637343227,203.204524380154908 -121.168472576656399,35.63670859043382,203.331396232359111 -121.190657923462894,35.644446815791518,203.401200202293694 -121.197051921704428,35.64204286221208,203.409571369178593 -121.252795714423641,35.657948121328822,203.575967184267938 -121.274084104618467,35.668017223897301,203.649607148952782 -121.286735367534192,35.675414608312884,203.696934939362109 -121.291556742634199,35.690732646644626,203.746556207537651 -121.298235958305199,35.698128118726693,203.78034377284348 -121.30634613194303,35.703097710945627,203.811234734021127 -121.316395465102033,35.71461289419549,203.863024548627436 -121.317550338814144,35.753820599031599,203.964474471285939 -121.326682782663156,35.770646488016212,204.027475820854306 -121.334214146312419,35.784404578852907,204.079105571843684 -121.348128357350163,35.796480317930822,204.140901913866401 -121.358502804640978,35.805483999007912,204.186961753293872 -121.389819479128164,35.824778419647892,204.306142857298255 -121.408590095720058,35.845916917930843,204.401541089639068 -121.4149133827746,35.856609205116847,204.442607297562063 -121.428722597739593,35.861395724536436,204.485778484493494 -121.441351849110546,35.868242141912773,204.531435343436897 -121.464032442126197,35.886908726444155,204.629336018115282 -121.462995685001673,35.898196087886113,204.655202481895685 -121.465220869559658,35.905705620220346,204.678984337486327 -121.474204284564848,35.921178592025782,204.737890666350722 -121.487970517756906,35.971633470106639,204.89471204020083 -121.50488331967118,36.001582489456567,205.007358401082456 -121.513361527019029,36.007881000345279,205.042130254209042 -121.533647859766504,36.015650251845067,205.10717474296689 -121.555488152145074,36.021079615498167,205.16990434192121 -121.571384315307611,36.022820280026217,205.210071744397283 -121.576374435263389,36.026436997339253,205.230298644863069 -121.592168123410644,36.051642308180462,205.3284000325948 -121.590956190481009,36.055054129132301,205.334120230749249 -121.594626472344231,36.06634042336465,205.370345268398523 -121.60861873862622,36.073342812194234,205.419218369759619 -121.620446183446091,36.089043731185207,205.484715078026056 -121.623783477540826,36.100970993782745,205.52171896211803 -121.631408868831031,36.115727029940437,205.575352191925049 -121.681921418867518,36.167089321281118,205.815783367492259 -121.718953368269013,36.196415083019119,205.971316264010966 -121.781629582507151,36.2286732952942,206.191629312001169 -121.798837869270415,36.235476648018704,206.247051169164479 -121.808757916147499,36.234172575555142,206.266188343055546 -121.815512998232677,36.23550039870937,206.284651384688914 -121.82820426863924,36.24312477128742,206.331905234605074 -121.837564542078482,36.252012120774516,206.374741896055639 -121.84112979014786,36.261741508120402,206.406581784598529 -121.853747280912927,36.279093322594584,206.477422018535435 -121.876577711260552,36.290325336977673,206.556251551024616 -121.890272128668911,36.304070343029373,206.620632812380791 -121.89649551744796,36.319065388757437,206.671224039979279 -121.894699018721482,36.341686116491438,206.722329627722502 -121.907228521323191,36.359525905621929,206.793956741690636 -121.904451628485205,36.365157623887264,206.801420302130282 -121.903596032139873,36.383134605409346,206.843231004662812 -121.90497831044064,36.394857912526788,206.874839286319911 -121.907440434457641,36.399460611883775,206.89155875518918 -121.916161641523686,36.405598129803835,206.926070970483124 -121.919246904383385,36.416062483955386,206.958415790461004 -121.916524136977173,36.42714288974522,206.979191284626722 -121.92728486109263,36.455169123803302,207.071325730532408 -121.938990376370725,36.473737885846106,207.14258910343051 -121.943385710856205,36.486851069755033,207.184193005785346 -121.941001951867889,36.498144459443218,207.206155154854059 -121.940549167206441,36.50767092145373,207.228168920613825 -121.945464328414474,36.513049540333917,207.252200274728239 -121.946452567179591,36.523107950556145,207.278716309927404 -121.93055547500154,36.524394115165364,207.246144625358284 -121.927723499878951,36.526420041809068,207.244682503864169 -121.934295350202561,36.561179957845745,207.343312782235444 -121.94432057675219,36.567679436471124,207.381469503045082 -121.951446658210131,36.568846263003643,207.400266283191741 -121.953247589210079,36.56525344112211,207.39564707968384 -121.959122645067964,36.565726326029242,207.409966175444424 -121.974381966594578,36.574613589790872,207.465608881786466 -121.980380176548721,36.581731093517611,207.496203485876322 -121.972215166396623,36.583997086671182,207.48334539309144 -121.94345476109784,36.619300504495889,207.503802048042417 -121.94034010346742,36.635148647947119,207.534916371107101 -121.938219152813772,36.637986518089036,207.536982121877372 -121.931455105847817,36.63819960753284,207.522336165420711 -121.92565500584864,36.635799831373184,207.503571666777134 -121.891952162421092,36.610501779110585,207.367192264646292 -121.890851980856809,36.603002223178279,207.346671128645539 -121.888551956240931,36.602702274788065,207.340793239884079 -121.873151909234366,36.605802329098424,207.313740364275873 -121.862391978127718,36.612379115666187,207.305462057702243 -121.844051273641654,36.631301312816696,207.309911685064435 -121.833783536315934,36.646097624386393,207.322504392825067 -121.826840768280306,36.658448025640958,207.336649429984391 -121.816251280098797,36.684097725519166,207.374562309123576 -121.808851948268753,36.715395057691516,207.433102873153985 -121.807433774994436,36.751475029997557,207.516378290019929 -121.790069891013133,36.805227242639049,207.606101145967841 -121.793336177205632,36.81641855922107,207.640124818310142 -121.811156096400978,36.849884395076565,207.759759302251041 -121.812345010482147,36.851878513764575,207.767166906967759 -121.829457955806745,36.880581381560056,207.873728238977492 -121.864061446410929,36.93277690754622,208.074985861778259 -121.88196302131152,36.951374586129738,208.159033837728202 -121.896463408137706,36.963073706008103,208.219104460440576 -121.908264666067893,36.970172126587165,208.262241134420037 -121.931866064380301,36.979371249951825,208.3366639893502 -121.94126713446127,36.979271113295475,208.357401022687554 -121.953467073205459,36.97267130133077,208.369010297581553 -121.974567828915639,36.955372959285462,208.375169240869582 -121.977667850376719,36.955272918030026,208.381851992569864 -121.985693021848917,36.959948532354467,208.410829301923513 -122.014170377073214,36.965770772300232,208.488165021874011 -122.025170404894965,36.96337074142064,208.507044690661132 -122.028971175498626,36.95237130566634,208.489515534602106 -122.051919289223534,36.949744106906273,208.534540356136858 -122.068218407732701,36.949491874478241,208.570340719074011 -122.081153947673386,36.952003070872692,208.605165499262512 -122.107773889587975,36.957170841380041,208.676827945746481 -122.142376599404287,36.97616824303001,208.798959079198539 -122.156876848291375,36.982067689787279,208.845256412401795 -122.188678621573686,37.004665930384512,208.969526892527938 -122.207980015103132,37.015164044443587,209.037335437722504 -122.253982436716569,37.060659776793599,209.246947344392538 -122.262282809082393,37.073758911378199,209.296204664744437 -122.2866846841398,37.102955893372922,209.419070584699512 -122.294776492874661,37.108526745131087,209.450162995606661 -122.307942190920755,37.117590744862909,209.500740005634725 -122.315710291445626,37.119368526472634,209.522225026041269 -122.324774295445479,37.116667540902007,209.536125150509179 -122.332266348768655,37.116545433829003,209.552551855333149 -122.338874446802564,37.118589218057146,209.572072177194059 -122.340659542540834,37.122060995129615,209.584171743132174 -122.338888765137384,37.132001461636392,209.603457359597087 -122.339636892775872,37.137142160483343,209.617137814871967 -122.345833133061362,37.14530460615233,209.650021846406162 -122.361595523781219,37.156778719646205,209.711955632083118 -122.36359472936023,37.164797237474062,209.735121223144233 -122.368889988356699,37.174020637324055,209.768436272628605 -122.381075277279194,37.182330983698066,209.814970869570971 -122.392404406263523,37.18419070635013,209.844559306278825 -122.398870556011389,37.188451367902047,209.86889844480902 -122.406878819227487,37.196992764954175,209.906637891195714 -122.408987399139946,37.220665400556499,209.966412580572069 -122.410788550745352,37.22645804721212,209.983893246389925 -122.417628782680836,37.234038516479309,210.016751257702708 -122.420920013243745,37.2426689809107,210.044132400304079 -122.4202591766594,37.249719594574394,210.059032554738224 -122.41349353997407,37.267041724262057,210.084166305139661 -122.403132166295592,37.338202887998634,210.225937235169113 -122.402659695865339,37.360417649846099,210.276234739460051 -122.41106813302676,37.375996648229162,210.330911292694509 -122.425096664373967,37.393732440049092,210.403024053201079 -122.445498861849146,37.437128698548641,210.548331190831959 -122.447799496532383,37.462727231763587,210.612301344051957 -122.453900000898528,37.481725076407294,210.669485657475889 -122.469701544299497,37.499323850728416,210.744957852177322 -122.474201635922881,37.50172364760401,210.760453792288899 -122.478256668872973,37.499951779590624,210.765395883470774 -122.484164618142572,37.497370270039013,210.772596649825573 -122.487701593942504,37.495824769839246,210.776907856576145 -122.488562901393337,37.495574042067702,210.778245801106095 -122.488953008240813,37.495460481433398,210.778851793147624 -122.495602597201525,37.493524777037251,210.78918166551739 -122.496242398509722,37.493873723048878,210.791402864269912 -122.501102710702867,37.496524524999217,210.808275668881834 -122.518503469345291,37.522521805759212,210.906476883217692 -122.52134787717992,37.538482871060076,210.949317560531199 -122.518404040389868,37.546119490150467,210.96024885494262 -122.51660405608736,37.547319450865622,210.958997490815818 -122.515503195807781,37.553419127483593,210.970500345341861 -122.519903808508076,37.577316727082952,211.034865368157625 -122.519003153979867,37.591814932821556,211.065960989333689 -122.503202254984629,37.600814674528067,211.051446303725243 -122.498602524597231,37.613313049191419,211.069751003757119 -122.495902280917107,37.645210315292729,211.136441410519183 -122.498602335004975,37.687605916270265,211.238852420821786 -122.504245787956009,37.709304610047951,211.300628558732569 -122.508302318806045,37.724901695021991,211.344997905194759 -122.51121658093858,37.750009884127834,211.408357189968228 -122.513803520553736,37.772297980407934,211.464539940468967 -122.516303777065119,37.781996404097448,211.492011016234756 -122.507130892130306,37.789479131125397,211.488636595197022 -122.494703789835953,37.789096344395986,211.460278884507716 -122.48760380296963,37.791796304516062,211.450678257271647 -122.479904241204608,37.811994304758272,211.479303751140833 -122.472157329421108,37.809837935834835,211.457299621775746 -122.465613510292542,37.805819739425452,211.433746597729623 -122.427763271331457,37.812146426608749,211.364355377852917 -122.409272521541638,37.812608273850408,211.324519768357277 -122.399959117009814,37.806798177111283,211.290787956677377 -122.38714283425287,37.79189266339813,211.228714966215193 -122.377672569821641,37.736150761350174,211.081375137902796 -122.371912180490924,37.73350341404285,211.062617220915854 -122.369515089548472,37.736115110453916,211.063244114629924 -122.367296821154724,37.735793159511992,211.057604733854532 -122.358602542007006,37.730677303006601,211.026747199706733 -122.363566953995999,37.716182934681612,211.004795789718628 -122.372229404580551,37.718745475872893,211.029791906476021 -122.393191882667139,37.709504325508817,211.055188016965985 -122.395007602353672,37.708703879186636,211.057388071902096 -122.389443579877693,37.680234609683396,210.980312315747142 -122.376107547185498,37.663382272105849,210.9123987974599 -122.377416322494767,37.65356523726679,210.892925497144461 -122.37970705640177,37.65160179146492,210.893524340353906 -122.389197395450211,37.649638247492518,210.910072830505669 -122.387888105315071,37.638839547976815,210.882549846544862 -122.367270803703022,37.627386673520832,210.810734598897398 -122.357125654807632,37.616915343183955,210.76434419862926 -122.36039809241106,37.612334018756698,210.761132022365928 -122.372179327955749,37.615606176576499,210.794716206379235 -122.375124601028347,37.614951665349857,210.799749163910747 -122.380360485548735,37.606770735606709,210.792669075541198 -122.362033901007067,37.593681661490024,210.722130830399692 -122.319490749556067,37.592046156434492,210.624086046591401 -122.317199886712046,37.588446622868496,210.610772538930178 -122.317527052973858,37.584847049073517,210.603260454721749 -122.307709213639427,37.576666344634475,210.562769383192062 -122.264511548950708,37.574049132175261,210.461018650792539 -122.253711988214434,37.567504613797936,210.422081548720598 -122.246184924313511,37.559323886798808,210.386638537049294 -122.244645022260869,37.558319706281999,210.380921742878854 -122.238136044607742,37.554075158047908,210.356755590997636 -122.226947821365457,37.546779242208324,210.315209160558879 -122.216077024127188,37.539690322017059,210.274832444265485 -122.198405257040989,37.538381648827475,210.232647676952183 -122.196768626141932,37.523656153901072,210.195180483162403 -122.170260554413062,37.505331459545602,210.094248075038195 -122.157497558762444,37.502386549427356,210.059165016748011 -122.151443398398328,37.503859196754043,210.049129603430629 -122.141953136913642,37.509095094463142,210.040139079093933 -122.13278989343371,37.504841194218443,210.010027180425823 -122.129517269815977,37.501241663175236,209.994480984285474 -122.117923398271543,37.506574748647814,209.981056286022067 -122.113154730117515,37.50876829676006,209.975535126402974 -122.113809738918405,37.530038491023191,210.025944724678993 -122.130500501474287,37.561779913406568,210.135892760939896 -122.13573662835401,37.564070482740846,210.1527542732656 -122.139336536053506,37.568651714243821,210.171248371712863 -122.146209231150806,37.583049884390988,210.219514164142311 -122.14882743191751,37.589594528872468,210.240323815494776 -122.147191459000439,37.602029444971997,210.265207094140351 -122.148173390213131,37.608574138253182,210.282378483563662 -122.154719276123885,37.641951905524337,210.373279332183301 -122.164864832612608,37.66911217088802,210.457813310436904 -122.172719145274073,37.677292894219541,210.493873541243374 -122.180900614303965,37.681219577071651,210.520938995294273 -122.199227174980578,37.693981426762839,210.590600246563554 -122.205787824251843,37.698946128991075,210.61643420625478 -122.215590046063099,37.699871381689704,210.640228714793921 -122.22344433326731,37.706743173080696,210.673263980075717 -122.248643327700393,37.723104486548181,210.766261818818748 -122.257806794416155,37.736848170468306,210.81779561471194 -122.259770418685832,37.740774949244852,210.83106717467308 -122.25895242295087,37.746174340206018,210.841532818041742 -122.254043663173192,37.748792288131824,210.836628714576364 -122.246755887080965,37.751467597422426,210.826595030725002 -122.244456337374757,37.754916866751664,210.829349853098392 -122.255571412227056,37.762390033497908,210.870902971364558 -122.265919853765425,37.765839107721661,210.901614693924785 -122.277226443119574,37.768521669484372,210.93270224891603 -122.287958115394915,37.770629365928528,210.961212656460702 -122.295815222473706,37.771587365806198,210.980758054181933 -122.306163673339498,37.775802933919053,211.013202059082687 -122.320728125804109,37.780210064132078,211.055398010648787 -122.330978925720075,37.784342992481669,211.087431470863521 -122.332609682492361,37.785000482721586,211.092527227476239 -122.332782459746127,37.78720453125819,211.097904857248068 -122.333567714034473,37.797221697127831,211.122338784858584 -122.337370359360492,37.800707105596643,211.138639299198985 -122.337494852364188,37.800821212733155,211.139172919094563 -122.335531579473553,37.810965499521551,211.157803754322231 -122.32538701431389,37.824382249920298,211.16575138643384 -122.319496524469287,37.827981911052582,211.160880737006664 -122.308042631262666,37.828636560559495,211.137055803090334 -122.305751901027236,37.831254473222792,211.137918401509523 -122.303134306182457,37.848925137918165,211.172101268544793 -122.312298077839259,37.875103732021351,211.251481166109443 -122.311807638692997,37.893919717323044,211.292860358953476 -122.315080292706966,37.898173709712431,211.309678845107555 -122.315318522938696,37.89837469586864,211.310657945461571 -122.325552665296172,37.907008868435931,211.352712813764811 -122.336352152603268,37.909953807124587,211.383185532875359 -122.358932710950711,37.909953457448083,211.433025875128806 -122.364168668849061,37.905372100207323,211.434263391420245 -122.369404731668595,37.905044784436377,211.445085005834699 -122.380531425647888,37.906353547710154,211.472596754319966 -122.387731090956478,37.909298543644375,211.495123418979347 -122.39100368842459,37.911261897919275,211.506768852472305 -122.392313022574157,37.923696773748219,211.537647472694516 -122.39689469925645,37.928277978994402,211.558066979050636 -122.403112556948187,37.929586818262678,211.574734840542078 -122.415548463944987,37.938421948128173,211.622047969140112 -122.419195274505924,37.944672585461525,211.644144345074892 -122.431911822703938,37.964273183866801,211.716224883683026 -122.431584619417976,37.96656382717093,211.720644276589155 -122.417185364986381,37.964273412264966,211.683733959682286 -122.41358549124989,37.961655596732257,211.66991398576647 -122.410206888093299,37.958703024177062,211.655829227529466 -122.401656602631803,37.957168592679821,211.633517869748175 -122.36940656725227,37.979326921884578,211.612137152813375 -122.363729401662511,37.991148818860609,211.626150363124907 -122.364825697411661,37.995533275804924,211.638404324650764 -122.368752562498244,37.999615456846676,211.656218701973557 -122.370716319570406,38.009105206849775,211.681826069951057 -122.369734665903792,38.013686498970415,211.689930826425552 -122.365480402798354,38.015322737146036,211.684220284223557 -122.36131828946364,38.011098190929367,211.665576575323939 -122.341917817403612,38.00485161641771,211.608803989365697 -122.333736485083293,38.006487915506931,211.594440195709467 -122.32293728223874,38.014014464834048,211.587518775835633 -122.31737396738923,38.014669030187434,211.5767259048298 -122.302647456439288,38.012051368041426,211.538399961777031 -122.285303247759231,38.023832069349368,211.526606270112097 -122.264686728860624,38.045757099642039,211.530343525111675 -122.264686899502806,38.052629018788934,211.545741206035018 -122.268494642648747,38.061226068033704,211.573381334543228 -122.274832363942451,38.07553525303625,211.619364945217967 -122.284650223389889,38.084043189092839,211.660010798834264 -122.30363154015258,38.106294815599597,211.751521576195955 -122.316394729827977,38.116438878469793,211.802259773947299 -122.368101598924497,38.142616807610651,211.974416812881827 -122.398209235281186,38.151124428062573,212.05961122456938 -122.405342772113585,38.151772789251275,212.076751505956054 -122.405408850728506,38.151778795081263,212.076910279691219 -122.4116263294341,38.137380385824031,212.05854007974267 -122.441406023686866,38.118073108976979,212.081092622131109 -122.452205396201677,38.117418474494428,212.103413471952081 -122.456787037660462,38.120036281486399,212.119333262555301 -122.486239842178591,38.11610901195975,212.175445754081011 -122.491803099351159,38.113163807573763,212.181139492429793 -122.492556068905643,38.110904859236548,212.177767008543015 -122.493112015936688,38.109236988868993,212.175276690162718 -122.491802724161289,38.098111055400537,212.147604339756072 -122.488530016754453,38.091239177702079,212.125077155418694 -122.485584258920767,38.072914108362291,212.077713851816952 -122.494092495857927,38.057533972638822,212.062134529463947 -122.501291492719773,38.033318537142947,212.023907856084406 -122.499654901423128,38.020556431653127,211.991764428094029 -122.496382253326175,38.016302442071208,211.975031463429332 -122.483291896463527,38.00877625609688,211.929319472052157 -122.464638264752182,38.00452250377662,211.878655335865915 -122.454820452173209,37.997323504877038,211.840876850299537 -122.450238694102865,37.989469957674203,211.813171911984682 -122.450238604923314,37.985870396349362,211.805103067308664 -122.458419818666243,37.979980047632637,211.809945317916572 -122.464310474094248,37.982597833959133,211.828809848055243 -122.473800856262343,37.982924926154709,211.850480520166457 -122.490490475169693,37.967871892646038,211.853558943606913 -122.49212670099709,37.965908468535524,211.852766807191074 -122.492126563317697,37.960345486493047,211.840289198793471 -122.489508275324056,37.949874042060863,211.811014167033136 -122.482308576756168,37.946601797227018,211.787776593118906 -122.48099947787459,37.942675020198749,211.77607044018805 -122.487544453157028,37.938748108735744,211.781700972467661 -122.501289196206045,37.940384061151931,211.815718648955226 -122.504888927590201,37.937766134151246,211.817788507789373 -122.504888733491839,37.929912520670023,211.800151596777141 -122.495398177193152,37.923040747334284,211.763757011853158 -122.488198584960756,37.923040858924146,211.747859262861311 -122.48001714468802,37.919768648396897,211.722438710741699 -122.473799092250502,37.911587891975891,211.690313753671944 -122.474126171073223,37.903734273660262,211.673370405100286 -122.460381258435959,37.895226394538284,211.623865993693471 -122.450236348318697,37.894572085480526,211.599985952489078 -122.441072987537112,37.885082439322829,211.558374472893775 -122.440091147737363,37.882137347254357,211.549570583738387 -122.451872074320491,37.872320143930018,211.553473660722375 -122.463980433554099,37.87002931545603,211.575063284486532 -122.476088998868605,37.875592109311761,211.614351158961654 -122.482634072377436,37.874610302412066,211.626600842922926 -122.485251988432765,37.870028986170169,211.622064497321844 -122.484924607572751,37.865120482489807,211.610280664637685 -122.478357801579193,37.833977386173494,211.525527821853757 -122.478294789725965,37.833678552257417,211.524714016355574 -122.480972927063107,37.826593479987032,211.51464063115418 -122.481681407952792,37.826806079449618,211.516687070950866 -122.485304672331267,37.827893341040443,211.527152681723237 -122.494295472573455,37.826004832310971,211.542768417857587 -122.507204723112608,37.82329325696395,211.565192339010537 -122.524658334813083,37.82588180245493,211.60963072348386 -122.52540692545756,37.82599282594753,211.611536684446037 -122.539107162917205,37.831492309517415,211.65424015186727 -122.55080839524345,37.837390801915191,211.693416753783822 -122.563309872288784,37.852989745041924,211.756211778149009 -122.586112224194395,37.860388982549196,211.823287507519126 -122.603113742317589,37.876286839671096,211.896642964333296 -122.628937204076877,37.887239833729659,211.978347709402442 -122.641801577489218,37.898508011196945,212.032092374749482 -122.658343876984233,37.905677358330131,212.084747653454542 -122.680299090804979,37.907761902636118,212.137951519340277 -122.683996114309849,37.90760785382421,212.145777710713446 -122.695394068080049,37.902328969010718,212.159131469205022 -122.704464953493186,37.894978234970573,212.162693548947573 -122.729122401970386,37.905783254902879,212.241442451253533 -122.734723828660279,37.921381305399116,212.288780198432505 -122.738723996549979,37.92698093374073,212.310163538902998 -122.75643236673119,37.936682122637755,212.371019662357867 -122.767964512726522,37.939158806730781,212.402049114927649 -122.785070968236326,37.952487804469236,212.469661697745323 -122.793566478669121,37.970574673255143,212.528842925094068 -122.799232699569856,37.977809185652717,212.557513398118317 -122.823211373298861,37.997885704446809,212.655268920585513 -122.858402126792072,38.017866054396627,212.777505988255143 -122.883943525748776,38.026421184930747,212.852953555062413 -122.941541109529922,38.033054922434282,212.994918753392994 -122.958641154190346,38.029866832211724,213.025609329342842 -122.974208056153842,38.021394057678577,213.041175273247063 -122.983605847463792,38.010266525978892,213.037209219299257 -122.984215301480887,38.005421744765741,213.027784479781985 -122.981976969846926,38.001978534339095,213.015180415473878 -122.978593477316366,37.996828346402388,212.9962462419644 -122.976219379408747,37.993577562971566,212.983766045421362 -123.025895798785825,37.996025654856638,213.099023494869471 -123.022391889462185,38.000691451491193,213.101650346070528 -123.01813331984691,38.002838787272644,213.097010049968958 -123.013362921132568,38.004585376799817,213.090347874909639 -122.994250736313077,38.042903558211293,213.133222358301282 -122.962721283825303,38.11410412426229,213.221390110440552 -122.953918859885633,38.139702852425273,213.258580496534705 -122.950907225808592,38.155200046870092,213.28617843799293 -122.951459479717997,38.165180489392256,213.309434313327074 -122.955462800108506,38.176808787591746,213.343923527747393 -122.967242172441289,38.188250974725818,213.395126746036112 -122.968204465374029,38.199651333286994,213.42237476631999 -122.969946576220295,38.203565091064156,213.434837181121111 -122.993788521510581,38.23432002953836,213.555066181346774 -122.995794647075186,38.238736755735133,213.569197164848447 -122.995070694224253,38.240820652686409,213.572183351032436 -122.988984596116509,38.238672865753315,213.55405343323946 -122.970404595618632,38.244013863261571,213.524866268970072 -122.969038782164546,38.251825456065312,213.53902982454747 -122.978918286992155,38.269035357624922,213.598594210110605 -122.988155486502762,38.274296924562655,213.63048567995429 -122.996439796758921,38.284228250435639,213.670518619008362 -122.998942975231643,38.290589862563984,213.689982317388058 -123.004748376131019,38.296839784098893,213.71646561101079 -123.005959216512338,38.29814333875499,213.721988506615162 -123.026170704915003,38.311703279221291,213.796187587082386 -123.040579884895067,38.31470588896395,213.834479098208249 -123.05289890112077,38.311822853883221,213.855286159552634 -123.055313793115573,38.306852088417166,213.849720531143248 -123.053858694916755,38.303376301692467,213.838906237855554 -123.0553416334525,38.300515435254852,213.835906052961946 -123.060076641641587,38.299485417534726,213.844075841829181 -123.065508777260916,38.3033081229106,213.864407282322645 -123.076522371483932,38.323702832811158,213.933282613754272 -123.07027564565287,38.336338238713246,213.947159751318395 -123.070104267819701,38.360991891899701,214.000639929436147 -123.087412168975987,38.391649943359077,214.105588405393064 -123.10554693397718,38.416664291291731,214.199945118278265 -123.124220621159921,38.43843580850853,214.288348096422851 -123.130667000520148,38.451538991657117,214.330985880456865 -123.147167348040753,38.460542240692448,214.386797073297203 -123.168270894524824,38.476066061457239,214.466848619282246 -123.204120644568818,38.495431440668632,214.587576401419938 -123.251641410492624,38.512160779863414,214.728175045922399 -123.289001421382807,38.54133660035825,214.873255354352295 -123.298996574934421,38.544565266811283,214.902174131013453 -123.333745386388372,38.566653515126355,215.026096222922206 -123.345185093851015,38.591118002103549,215.103864177130163 -123.351459312451453,38.597914533026291,215.132251761853695 -123.373723737357039,38.608343613785181,215.203536381945014 -123.381151167425642,38.623060695542911,215.251437251456082 -123.400014944999029,38.648150032734918,215.346637725830078 -123.404859040990715,38.65055482540091,215.362419009208679 -123.407512246848867,38.657834387659314,215.383833819068968 -123.434570219864597,38.688234307594357,215.508232696913183 -123.443624608535757,38.700846479242628,215.555039876140654 -123.463142190735653,38.718102233297195,215.634674631990492 -123.491872785026771,38.733312952621212,215.730098998174071 -123.516636210431017,38.743065031039059,215.805160863325 -123.527004588807188,38.754899224596521,215.853079437278211 -123.53538802514376,38.769505299423756,215.902520093135536 -123.543690299382206,38.777860714682447,215.938473389483988 -123.573841064677438,38.799284075027522,216.050026947632432 -123.581710239937237,38.803929698378525,216.077122642658651 -123.588234285974536,38.803951593655029,216.091462416574359 -123.60207567421989,38.815208763938038,216.145651494152844 -123.603423810038308,38.820083478427691,216.158934048376977 -123.607171934051095,38.823858214428057,216.175140765495598 -123.640492713372737,38.844956542524109,216.292777537368238 -123.644531745042684,38.84509647077698,216.3019192609936 -123.649242815836232,38.846563316498582,216.315338803455234 -123.654068086013467,38.855672746616641,216.345162917859852 -123.656552390662966,38.866728108729724,216.373960419557989 -123.661702605599828,38.873618653976109,216.39978750795126 -123.689956349566131,38.894682065168418,216.506077806465328 -123.712398016375019,38.914316646363432,216.596563634462655 -123.727225228462473,38.918524182899638,216.637870132923126 -123.729488558730267,38.930585494932913,216.668199096806347 -123.728173728875873,38.93745214481698,216.679762208834291 -123.740745080923062,38.955203489109216,216.74456839542836 -123.734751260713139,38.956078033931284,216.73329412844032 -123.730912277935957,38.957751004747074,216.728410788811743 -123.723206413211898,38.964962738138276,216.726702189072967 -123.713008694074915,38.978399175435079,216.732609339989722 -123.698760304352135,39.00548294176847,216.758272063918412 -123.692600704246743,39.022374129602255,216.780208912678063 -123.691955958379722,39.032237608488032,216.799457600340247 -123.695830672892257,39.058442135611131,216.862751649692655 -123.715255149923209,39.109498079079309,217.011765765026212 -123.723368651345808,39.126402040969275,217.064700778573751 -123.737800128588745,39.140718041158557,217.125996015965939 -123.739777242423528,39.144515805569135,217.138212238438427 -123.74408583808443,39.165957585474217,217.192198904231191 -123.762875673668916,39.19266585170449,217.288636771962047 -123.76775676189736,39.194727662957284,217.303556847386062 -123.77686431224879,39.213152529134881,217.361615941859782 -123.779234994228673,39.23828214452157,217.41882819775492 -123.789760785924599,39.26539352400296,217.497831501066685 -123.800859049008579,39.272420969841896,217.536525090225041 -123.805716279416018,39.279836495073155,217.562418068759143 -123.803625391422528,39.284595274002982,217.567688489332795 -123.804949618891754,39.292811813208623,217.58752915263176 -123.813256236636931,39.313888552822057,217.649076943285763 -123.810641525823726,39.325430977895273,217.667166457511485 -123.819238969409298,39.339862068765093,217.715589793398976 -123.823955136636627,39.344918722889638,217.736257752403617 -123.827201611069341,39.361874765292733,217.778190206736326 -123.82817682842601,39.369770328158971,217.796537683345377 -123.824196101983958,39.381046790419312,217.811042362824082 -123.823758815513656,39.407867367069862,217.865133627317846 -123.816562828986662,39.447594366374908,217.930891281925142 -123.797512922197058,39.493269243206441,217.982917260378599 -123.786044304850904,39.510472513764206,217.993152290582657 -123.780395589800321,39.522530964286297,218.005503212101758 -123.768350349001238,39.553854495835616,218.043238480575383 -123.76908554391666,39.560903110040634,218.059192736633122 -123.789293889351384,39.605600414250311,218.193935386836529 -123.785416996516503,39.610565213874089,218.195617729797959 -123.784199311344281,39.62253359970164,218.217282455414534 -123.788238379077697,39.660977499955074,218.303999011404812 -123.794538078002304,39.685166119163974,218.366615660488605 -123.810087907076706,39.711757462544576,218.454039711505175 -123.826624222851905,39.719169803306855,218.504800941795111 -123.831425390312944,39.724112464548234,218.525169267319143 -123.833479609839898,39.731670032262237,218.544864607974887 -123.83697285519348,39.739808546080404,218.568838469684124 -123.839970246842455,39.753448777741198,218.602818345651031 -123.839031888732279,39.777270536644764,218.648759970441461 -123.841679435768867,39.796674471056441,218.693516626954079 -123.853597511522608,39.833076360705164,218.792390144430101 -123.855647581939508,39.835135219060156,218.800951027311385 -123.883342082646237,39.846456173562451,218.883496538735926 -123.909548744797377,39.864060821625714,218.975379519164562 -123.9170271325128,39.87634505403166,219.016113323159516 -123.917738296242447,39.882145737475746,219.029249286279082 -123.931933177256411,39.910727004597007,219.117002707906067 -123.956838696227834,39.92340193363507,219.196063223294914 -123.964542168151127,39.938663006908492,219.24311036337167 -123.981918969624076,39.963484421315087,219.330025444738567 -123.997748369362796,39.974070608137481,219.385231722146273 -124.025827488689103,40.002308091382019,219.501880457624793 -124.037793752753259,40.014341844160789,219.551553873345256 -124.058298195764522,40.025326934181166,219.617540510371327 -124.066959268053935,40.025806767759747,219.637169206514955 -124.070798198234769,40.022328887360899,219.638561483472586 -124.074399260013507,40.023678757889755,219.649001197889447 -124.081873507303627,40.030794263155137,219.679206907749176 -124.082600516270517,40.067129348831195,219.752620668150485 -124.088977900853394,40.079460599515869,219.79071684088558 -124.112441761704901,40.10478189202135,219.891219751909375 -124.141845310182347,40.117365753633024,219.979352143593132 -124.17266073680868,40.125221839191909,220.061195896938443 -124.189768028237751,40.131556228370805,220.110503970645368 -124.216790053942958,40.161914200358439,220.228316793218255 -124.232990460071193,40.172592377620227,220.284140614792705 -124.260300997069407,40.185287267723218,220.367813799530268 -124.298393936225821,40.209824363250711,220.497817500494421 -124.322809596110488,40.227624034636996,220.585131305269897 -124.329588941565149,40.238376362845898,220.620698779821396 -124.344968228852451,40.244984766117355,220.666677840985358 -124.354613474070419,40.251458270478835,220.700047095306218 -124.365312839458085,40.26197854669207,220.743556166999042 -124.365533267082512,40.27721574931757,220.77368326485157 -124.349753237725736,40.315636008781802,220.814426920376718 -124.35502474378751,40.332426049094977,220.85834720171988 -124.358495867718673,40.336016805389711,220.872772448696196 -124.364697331015947,40.35104592238212,220.915236274711788 -124.367259045220791,40.375853591754826,220.968782847747207 -124.375501608481628,40.393920518368269,221.021431381814182 -124.380984811272981,40.399825121756372,221.044618047773838 -124.393399125472172,40.408043491066692,221.087149527855217 -124.404526623868477,40.423100526940182,221.140103405341506 -124.41149512062411,40.439070584246842,221.18585885502398 -124.410505258631233,40.444195334954124,221.193611844442785 -124.398546713027017,40.463112551982256,221.204395019449294 -124.386845417861849,40.490812311049382,221.232604222372174 -124.385129690196493,40.500843820418787,221.248213527724147 -124.388928859946972,40.505945493921729,221.266163730062544 -124.384722229539193,40.519990837147326,221.284127663820982 -124.381002314163069,40.523855698760208,221.283576344139874 -124.365451942408498,40.549687620955972,221.299829381518066 -124.331312637683041,40.617416691857699,221.356450344435871 -124.31705019935464,40.640511738460546,221.370082314126194 -124.314467233446194,40.642318688168935,221.368009654805064 -124.291029167547904,40.680614106331966,221.390996816568077 -124.250317479414022,40.736147929085377,221.409825717099011 -124.230156322843996,40.770370508945099,221.431870854459703 -124.203834168605042,40.806090116743661,221.44354794267565 -124.178629103393831,40.844595566375702,221.462824556045234 -124.160236911903723,40.877045214911071,221.485076654702425 -124.138982198918001,40.926706036193423,221.533679937012494 -124.120064906810498,40.990234118384421,221.613194822333753 -124.114083994133352,41.029142241711995,221.673648389056325 -124.127367676162592,41.049471988871339,221.740040250122547 -124.134865788572384,41.053449659279927,221.763430746272206 -124.14013646533931,41.055309677737753,221.778115636669099 -124.144787007865034,41.054999582550849,221.787413360551 -124.149135953189671,41.05385140406576,221.794499146752059 -124.150858923835784,41.052434447243954,221.795502454042435 -124.153185929182285,41.052068427045022,221.799759776331484 -124.155542016559195,41.054517263556654,221.809356809593737 -124.155948495585875,41.060889751119753,221.822165779769421 -124.156434000622042,41.088124544710141,221.8742043254897 -124.162477387401282,41.099975843480252,221.909207675606012 -124.160987046200518,41.122920706455886,221.94893005490303 -124.16733631932307,41.130785202466527,221.977091173641384 -124.165910567970641,41.139637778317358,221.9905900740996 -124.160461657434979,41.143983649412228,221.987138958647847 -124.151596532926149,41.141807907432103,221.964270510710776 -124.145722604676465,41.145648811195379,221.958977439440787 -124.12460077599107,41.190686887868623,221.998155298642814 -124.108910838173003,41.230637134221787,222.039248282089829 -124.108314156858782,41.241640589474031,222.058435742743313 -124.094210440390782,41.288651457788198,222.115829544141889 -124.080943099235057,41.348088692033677,222.19780117738992 -124.074222870522661,41.375796413885524,222.234782923012972 -124.065006721809894,41.440528324453403,222.33462873287499 -124.067452263050512,41.465687489608385,222.386057369410992 + + + Colorado + + + Colorado + 0400000US08 + 08 + 103641.888000000006286 + + -107.319516488054788,41.00419505953348,187.50353879109025 -107.002323257202548,41.004686361179516,186.900198578834534 -106.859486833174444,41.00432615939993,186.627703859470785 -106.455567158431435,41.003307547696338,185.859139703214169 -106.441270917333995,41.003228763100523,185.831888447515666 -106.439126876748944,41.003045803142612,185.827386908233166 -106.432657767422484,41.003002900929523,185.815039461478591 -106.393559098047731,41.002427506103047,185.739662082865834 -106.388063005154422,41.002395588939528,185.729187256656587 -106.322870859786889,41.000375645344796,185.600996588356793 -106.192253730900021,40.999310536218182,185.351623777300119 -106.062882423385972,40.998255583596162,185.104935657233 -105.73211679539439,40.998147462575673,184.48194938711822 -105.72649969999506,40.998171544124283,184.471450969576836 -105.278826027686506,40.999441057729655,183.635102075524628 -105.278548014796925,40.999441304579811,183.634582559578121 -105.258214670929334,40.999459358710531,183.596590065397322 -105.256466641108688,40.999478383449272,183.593367228284478 -104.945053216645931,40.99946286295291,183.011784901842475 -104.884133149672323,40.999459825047701,182.898232568986714 -104.498823450054019,41.003107270329288,182.190799784846604 -104.498732447858814,41.003084272678286,182.190573896281421 -104.216361418438439,41.002940374812631,181.667030652053654 -104.215860407239688,41.002851386035573,181.665882396511734 -104.213142359245978,41.002874424372898,181.660911289975047 -104.125253787454255,41.002910694991151,181.498485818505287 -104.106257444926754,41.002827973500779,181.463173592463136 -104.087735113313684,41.002848240510708,181.429000739939511 -104.068627769038073,41.002789519444441,181.393557325005531 -104.054915520455324,41.002691722062295,181.367987344972789 -104.040904271293854,41.002787920334185,181.342352435924113 -104.025048996177986,41.003173132360914,181.314037437550724 -104.019888896660206,41.002903218955545,181.303838015533984 -103.974307076986989,41.002901877616118,181.219704766757786 -103.973038051863028,41.002810899996511,181.217136196792126 -103.955189732439479,41.002883154574789,181.184385693632066 -103.897870703587074,41.003037975244489,181.079059703275561 -103.87963037266266,41.002961241899762,181.045241616666317 -103.860112020638027,41.002969523159727,181.00928708165884 -103.576179876033677,41.003013611267335,180.486932432278991 -103.499103470018525,41.002928723134694,180.345170931890607 -103.488353280961945,41.003207865226472,180.32613807823509 -103.423630101756842,41.003301790731179,180.207618660293519 -103.423580099892618,41.003263793134323,180.207431582733989 -103.384147177888238,41.003178687758378,180.134907408617437 -103.366968061622259,41.003141611170662,180.103321746923029 -103.364633018839569,41.00313964476446,180.099036694504321 -103.079452790549595,41.00359771015367,179.578291400335729 -103.078184766039371,41.003552730281697,179.575861235149205 -103.061186455291477,41.003667968299254,179.545096538029611 -103.059646426871254,41.003667990322121,179.542283333837986 -103.045092157624936,41.003644199495497,179.515638655982912 -103.040352067790977,41.00355127138085,179.506747171282768 -103.003673396055234,41.003786785276553,179.440366650000215 -103.001749358351233,41.003700816576632,179.436637419275939 -102.984337030379734,41.003458076136205,179.404241197742522 -102.983130006938282,41.003413095372068,179.40192470792681 -102.965315679258751,41.003487346602846,179.369600859470665 -102.964168655198904,41.003373368028647,179.367220263928175 -102.962352621273226,41.003360394544842,179.363873683847487 -102.961270602147749,41.003396408409067,179.36199011746794 -102.946476333514937,41.003604610521734,179.335522030480206 -102.944755295384681,41.003352646242519,179.331746457144618 -102.927213976274331,41.003581886613887,179.300325762480497 -102.925674944335981,41.003443914689704,179.29717037640512 -102.908192623786519,41.003578158365784,179.265624538995326 -102.906441589621693,41.003509186412828,179.262257225811481 -102.889052266573458,41.003480435912351,179.230476473458111 -102.887391234608074,41.003433461696758,179.22732943855226 -102.869466903483811,41.003485715197471,179.194784740917385 -102.867428860828994,41.003290752896021,179.190577441826463 -102.850907562053266,41.003603974790366,179.161256113089621 -102.848099508816958,41.003559016839461,179.156025076285005 -102.83194721131278,41.003654243053056,179.12683227006346 -102.8289241500066,41.003446295361037,179.120798823423684 -102.775189158134751,41.003718049585643,179.02360952924937 -102.768366027778995,41.003579152980294,179.010834665037692 -102.75625980469303,41.003665321724988,178.98901145812124 -102.741266522407273,41.003534541166154,178.961387648247182 -102.655103919224956,41.003637763791346,178.804891874082386 -102.622673320461374,41.003903213665694,178.746602267958224 -102.580335521827905,41.003597829478473,178.668887950479984 -102.577377465955678,41.003574872564386,178.663455464877188 -102.577135459746046,41.003506879005542,178.662843550555408 -102.567687283077575,41.003507013373806,178.645679243840277 -102.558428110370713,41.003526144202155,178.628908228129148 -102.489592827172601,41.003753112647665,178.50449872482568 -102.472174499116619,41.00369036288339,178.472728646360338 -102.470860475519373,41.003732379698263,178.470450749620795 -102.381228789932379,41.003610657696512,178.307579460553825 -102.365701494911704,41.003483883611565,178.27911314368248 -102.294467155130718,41.003517892415815,178.150145864114165 -102.294256151724056,41.003540894394447,178.149822196923196 -102.294187149856143,41.003517896385254,178.149638803675771 -102.292988127269325,41.003517913382851,178.14746752101928 -102.273733765401744,41.003556184631833,178.112700865603983 -102.269445687984756,41.003694239330471,178.105288371443748 -102.233564009920954,41.003638750216204,178.040200307965279 -102.2138326408718,41.003774023766923,178.004841353744268 -102.210993586782138,41.003754064856501,177.999654144048691 -102.192842241161642,41.003638327006541,177.966524084098637 -102.126602989249477,41.003651264051122,177.846788972616196 -102.072227961791199,41.003737029418382,177.748760004527867 -102.053347127343358,41.003691549224527,177.71454390604049 -102.053243600856604,41.003691299849599,177.714356314390898 -102.05291540791238,40.75091646591838,177.067101305350661 -102.052915418527846,40.750911212612408,177.067087828181684 -102.053020578303688,40.698869591720999,176.933466186746955 -102.053343293837486,40.539173885402249,176.521984499879181 -102.053136863185671,40.521429681289845,176.47568775806576 -102.053080940805941,40.441347267005995,176.267997737973928 -102.053454904794393,40.397737218150212,176.155400992371142 -102.053186820545136,40.394421370764199,176.146292716264725 -102.053283111661258,40.350556525297897,176.032349688000977 -102.053533074227488,40.236692466873194,175.735799115151167 -102.053504927958301,40.230541744941398,175.719671883620322 -102.053518354981875,40.164025751335586,175.545636597089469 -102.053610018822738,40.149711397967003,175.508295848965645 -102.053349598604484,40.004436994766451,175.126137867569923 -102.053171018924672,39.851170987952351,174.721124831587076 -102.052964867881116,39.844837280458144,174.703977983444929 -102.052919631018256,39.834677745834853,174.676990681327879 -102.05285529738903,39.820359401987353,174.638939552940428 -102.052191969038546,39.676967990429993,174.256838499568403 -102.051550042607019,39.593708833756025,174.033662528730929 -102.051401620760004,39.575436678719619,173.984587354585528 -102.051359315461312,39.569558951415033,173.968804700300097 -102.051148811530069,39.540312303951431,173.890226785093546 -102.051267762456376,39.53807140584928,173.8844522126019 -102.051273065013135,39.507564815941585,173.802816803567111 -102.050961170294983,39.424718656855191,173.580099143087864 -102.050962053766426,39.419595894419984,173.566344591788948 -102.050758717728698,39.404983575090647,173.526717189699411 -102.050551035112107,39.375099965278345,173.446000373922288 -102.050038426720505,39.304529253858028,173.255026231519878 -102.048835663183382,39.138419023970883,172.803742497228086 -102.04877418445065,39.13454576851332,172.793127916753292 -102.048719496915112,39.131100368123612,172.783684712834656 -102.048154636984577,39.048441250481282,172.558195484802127 -102.046966428591816,38.814806273497943,171.918252618983388 -102.046912120301059,38.800877932987973,171.879975476302207 -102.047025769447771,38.784868688985398,171.83628620300442 -102.046948473084811,38.771480323838212,171.799409929662943 -102.046864151549087,38.756945013384012,171.759355229325593 -102.046952126999756,38.755756068520547,171.756255044601858 -102.046787876528569,38.698986762501022,171.599933572113514 -102.046731677800835,38.689975190990147,171.575035659596324 -102.046702637134331,38.688145278252456,171.569945990107954 -102.046735385522098,38.676641824026134,171.538345703855157 -102.046677378431454,38.676366837866972,171.537480346858501 -102.04664926113422,38.671038091337572,171.522757032886147 -102.0468620753594,38.616672673000942,171.373330617323518 -102.046861889201608,38.616592118395758,171.373108071275055 -102.046784339440052,38.583034275410462,171.280346472747624 -102.04676184023424,38.560158365684366,171.217109675519168 -102.046795515524565,38.5452240772265,171.175890780985355 -102.046684077926102,38.52521203331812,171.120332013815641 -102.046833683806824,38.506960902424964,171.070100215263665 -102.04683468084761,38.506823908952072,171.069722824729979 -102.046513053686212,38.38585369957444,170.733545019291341 -102.046180492968148,38.313762162616534,170.532293742522597 -102.046134556688159,38.270259253989607,170.410908094607294 -102.046133923390613,38.270189374559422,170.410711918026209 -102.046076490948735,38.263852146399131,170.392919214442372 -102.045964149885933,38.251456160807614,170.358104838058352 -102.045403286871945,37.929558734032319,169.453465572558343 -102.045404245352316,37.927591829598519,169.447916427627206 -102.044777006682665,37.869388668757217,169.282307939603925 -102.044590082454008,37.825607803874313,169.158063732087612 -102.044509648200815,37.804997809854768,169.099527168087661 -102.044224333014157,37.790221534477375,169.05710446741432 -102.043713724519236,37.761628936995862,168.975034650415182 -102.043545234734012,37.740006623896384,168.913331976160407 -102.043430960113824,37.725341713834176,168.871458182111382 -102.043128047543831,37.681904842805459,168.74737760797143 -102.043247742040322,37.667150563647411,168.70561186876148 -102.043135506913103,37.655965113013814,168.673550480976701 -102.043138294254334,37.645752613366525,168.644466951489449 -102.043170537308313,37.609340398291913,168.540733017027378 -102.043445506598104,37.55945184392025,168.398840926587582 -102.043450158696743,37.542661668973757,168.350867059081793 -102.043567038082799,37.53673695869243,168.334150899201632 -102.043336429735945,37.507543397594603,168.250204398296773 -102.043350674252224,37.470967198135128,168.145490173250437 -102.043303959117353,37.436335905507235,168.046112633310258 -102.043217955197278,37.436220912304499,168.045619360171258 -102.043224443715729,37.411380137537407,167.974342020228505 -102.043373845339261,37.390674487688898,167.915158776566386 -102.043636278025105,37.354303950918478,167.811101970262825 -102.04352127172649,37.354097962604307,167.810290718451142 -102.043363384811556,37.310977097372231,167.685864903964102 -102.043210139650768,37.299137685405597,167.651461881585419 -102.043508337635004,37.259653637366988,167.538172676227987 -102.04354496699473,37.143239416572399,167.201681387610734 -102.043677629876186,37.126517246661138,167.153483009897172 -102.043634629104218,37.126517247220661,167.153400979936123 -102.043351359322287,37.113469900202311,167.115038018673658 -102.043525252500842,37.108048167822389,167.099648130126297 -102.04346080493471,37.036583729946557,166.892032160423696 -102.043289788009389,37.035897766386434,166.889711490832269 -102.0434617462668,37.033678874846728,166.883589498698711 -102.043490719052812,37.032305942965188,166.879653419367969 -102.043492596641414,37.026243245437101,166.862029237672687 -102.043779963020199,36.994585822100547,166.770474525168538 -102.056043183276813,36.994611661700432,166.793986645527184 -102.185813513950635,36.995093952493363,167.043604594655335 -102.209858945896869,36.995230633142633,167.090035050176084 -102.356833578994809,36.996004682294526,167.37393142003566 -102.356912581795257,36.996073677813563,167.374283229000866 -102.572445413125635,36.99663183989712,167.789785701781511 -102.877035865560558,37.001119631810099,168.389386021532118 -102.981169666422645,37.000039321107309,168.587278323248029 -102.987363775135137,37.000061238767849,168.599305745214224 -102.988532794607764,37.000014225795944,168.601428137160838 -103.003756092818563,37.00159394676939,168.635395593941212 -103.087663410620806,37.001353207884442,168.796879848465323 -103.734816694188126,36.99949642285015,170.047485926188529 -103.735933713826199,36.999521406817415,170.049733160063624 -104.009429341159958,36.99771587572252,170.578044356778264 -104.733617460409988,36.994914375267534,171.990288505330682 -104.733706462659441,36.99495137220007,171.990568877197802 -105.002144907421098,36.994727790741869,172.519152855500579 -105.122392934326768,36.996890068064609,172.76282196585089 -105.156635767194786,36.996800759343003,172.830266653560102 -105.222207568655449,36.996629741096591,172.95948404353112 -105.420907832816411,36.997314034174103,173.354981110431254 -105.444057213071943,36.997451715493511,173.401273345574737 -105.448853291703657,36.99747464974493,173.410849700681865 -105.4667805831793,36.997448409662567,173.446333209052682 -105.510435291611046,36.997351826522113,173.532674051821232 -105.514084348483138,36.997233783374256,173.539582649245858 -105.535521699030824,36.997331489506919,173.582406979054213 -105.629071213084387,36.997134238185751,173.767635460942984 -105.666321820503711,36.997328725654427,173.842210464179516 -105.718073657056337,36.997303028387385,173.945028910413384 -105.720072363432237,36.997299921596408,173.948994982987642 -105.997766149318608,36.996868268862201,174.50080811791122 -105.999079170338788,36.996867251135896,174.503423798829317 -106.008241315581813,36.99679313086498,174.521488517522812 -106.249316140697132,36.9957129178134,174.99985755328089 -106.250286156585986,36.995734903520642,175.001858521252871 -106.477842720613836,36.994916085246288,175.455033697187901 -106.61877595474644,36.994408960823066,175.736214053817093 -106.618741954995201,36.994445959386532,175.736249168403447 -106.630269139789263,36.994616793579837,175.759857662022114 -106.630350140765728,36.994602793195178,175.759981112554669 -106.662961654705569,36.994684344643268,175.825663701631129 -106.677243876318641,36.994564156162625,175.854000688530505 -106.871416899025448,36.993864543072853,176.242260253056884 -107.002215095767482,37.001445365742569,176.526619682088494 -107.422542580524848,37.001435606796115,177.374751688912511 -107.422544583149531,37.001435605729455,177.374755735509098 -107.48336749462743,37.001403209887187,177.497677018865943 -108.289728672351643,37.000973676588686,179.133899588137865 -108.290042676274766,37.000938674058233,179.134443387389183 -108.322107153051377,37.000917231339571,179.199745944701135 -108.322364157111053,37.000928227211254,179.200300115160644 -108.380846977912185,37.000876365131965,179.319420511834323 -108.621336576378269,37.000663096472685,179.809922915883362 -108.621956586327869,37.00070108589199,179.811294418759644 -108.956056469680561,37.000315461383728,180.494240272790194 -108.960520534810598,37.000322398871425,180.503412187099457 -109.046876793534096,37.000492187247318,180.681008109822869 -109.046821390767917,37.074146354247524,180.881521977484226 -109.046713430911112,37.076065255979714,180.886520318686962 -109.046650685875321,37.087832645120152,180.918392414227128 -109.046844902809795,37.097674130947667,180.945543112233281 -109.046829189759208,37.110866445786478,180.981357056647539 -109.046859244505043,37.113360315831187,180.988193020224571 -109.046812246130415,37.113466310982382,180.988384637981653 -109.047472019106237,37.376381696737425,181.700430362485349 -109.044717746328814,37.486543774332816,181.990551522001624 -109.043580409854457,37.532033745100613,182.110007046721876 -109.043530410746726,37.532106742059369,182.110100417397916 -109.04347304581033,37.605547977693561,182.306149424053729 -109.043798351715083,37.619038282346324,182.34278691187501 -109.043756488069732,37.625170969011599,182.359050156548619 -109.043401439718309,37.71258550543871,182.590953870676458 -109.043429484279969,37.71455340457404,182.596239148639143 -109.043426244194151,37.837191154929691,182.921302799135447 -109.043395384276195,37.843415838751355,182.937700279988348 -109.043809823555648,37.882523240907901,183.041866562329233 -109.044796399890785,37.975618108014196,183.289227470755577 -109.044494914139221,37.998424957230007,183.348597435280681 -109.044495964967339,38.000657844169751,183.354469181969762 -109.0437534383083,38.154372065649305,183.75587129406631 -109.043741522002264,38.156838966426882,183.762294546701014 -109.061744547950553,38.276831672453525,184.111500352621078 -109.061649755769579,38.501318438702079,184.692826176062226 -109.061233908881036,38.721208513485664,185.256902006454766 -109.055640198744413,38.905725478679983,185.716186432167888 -109.055494217283965,38.906595437945725,185.718105161562562 -109.054931094978656,38.943776615578095,185.81139271799475 -109.054990105660991,38.944187594497471,185.812553507275879 -109.053218442678315,39.126282685797754,186.269513727165759 -109.053125071799244,39.367966174943042,186.875692690722644 -109.053074495249149,39.498956561057433,187.201948420144618 -109.052936368350302,39.661746762571461,187.605029521510005 -109.052598446169924,40.060170674910886,188.581215816549957 -109.052538462009267,40.060834644276454,188.582713582552969 -109.052672528587166,40.181961902176766,188.877058080397546 -109.052701532503477,40.182098895264687,188.877446859143674 -109.052584042593892,40.223910007282818,188.97841654997319 -109.051692711181047,40.541134030782558,189.739317601546645 -109.0518117248035,40.541591007637031,189.740642055869102 -109.049989631386168,40.654828753355098,190.007121758535504 -109.050037248065067,40.663829047632404,190.028628059662879 -109.051825757558447,41.001870664272332,190.831116801127791 -108.252386301865258,41.001337781035069,189.285114378668368 -107.920153082172206,41.003264692775403,188.651001204736531 -107.319516488054788,41.00419505953348,187.50353879109025 + + + Connecticut + + + Connecticut + 0400000US09 + 09 + 4842.354999999999563 + + -72.398321294862725,42.034908430651491,138.802474606782198 -72.199714111835107,42.032590607688064,138.605560248717666 -72.136599637794205,42.031854035024764,138.543256293982267 -72.136571629059759,42.031853708150763,138.543228673748672 -72.103043447754246,42.030570943825978,138.507403853349388 -72.060634226104469,42.028948396789289,138.462141439318657 -71.801524101037401,42.025180514213794,138.20605758856982 -71.800115844858027,42.009677080407243,138.156292193569243 -71.797694982119054,41.930167450093592,137.905312201939523 -71.796961713366585,41.906084302448775,137.829204089008272 -71.795032411536283,41.842719123161849,137.628761711530387 -71.795032398512134,41.841759157801562,137.625750390812755 -71.793656929153713,41.810289304540774,137.525702334009111 -71.793637905958761,41.808620364986972,137.520445303991437 -71.790547698227698,41.726356365769462,137.259049629792571 -71.79054727780823,41.726190372085682,137.258527180179954 -71.790333142489089,41.641642634429502,136.992170218378305 -71.790223970111668,41.598537013915752,136.856178820133209 -71.790226642161869,41.598479176345819,136.855998926796019 -71.798539519072222,41.418543952153996,136.29522689525038 -71.798548824135082,41.418342540979452,136.29459794331342 -71.819256502349774,41.421232279024885,136.32337323948741 -71.840516059643164,41.413752393432361,136.319855523295701 -71.843430119542958,41.411488454595933,136.315452603623271 -71.844339094102921,41.407463595545252,136.303570666350424 -71.842997913527014,41.396992990259555,136.269137313589454 -71.834309501365055,41.386158453838775,136.226568734273314 -71.832479264060865,41.372533968507803,136.181658810004592 -71.832105832659593,41.346281030073079,136.098077548667789 -71.833396337617756,41.342839784302924,136.088390094228089 -71.840647917637696,41.336325963255554,136.07461941614747 -71.860436200020217,41.324035688239725,136.054442811757326 -71.869101436790629,41.332577262780255,136.089776353910565 -71.887169221412876,41.338046232893348,136.124307952821255 -71.917578487595819,41.333852595463199,136.139964302070439 -71.922960572362641,41.336153625570731,136.152387801557779 -71.924150616953085,41.336748594671256,136.155408063903451 -71.937153055596525,41.339594391681977,136.176822012290359 -71.946521342243457,41.339434326827082,136.185246465727687 -71.957616744976946,41.33150631424656,136.1706966413185 -71.97182515255713,41.326161632345979,136.167311489582062 -71.980317350985587,41.331622677809698,136.192732084542513 -71.983063872266513,41.331496388978017,136.19495434500277 -71.989023731631491,41.322212341915282,136.171213878318667 -72.022768967369259,41.318473185765534,136.191614959388971 -72.085360712229019,41.321268716012717,136.260407401248813 -72.09531631505881,41.315799534529546,136.252618751488626 -72.100693679741426,41.308633295172804,136.235061759129167 -72.112693943471371,41.300733495681328,136.221533257514238 -72.13509563651121,41.301033314467212,136.243992336094379 -72.162455623294036,41.31189691313795,136.304712327197194 -72.17479810093397,41.319231340807676,136.339816845022142 -72.17849828035294,41.32413113184483,136.358896567486227 -72.184998500356372,41.32563102701247,136.369898974895477 -72.191898701833153,41.324831003977238,136.374002680182457 -72.202298921105452,41.317331201513163,136.360254903323948 -72.203898936793166,41.314831281597179,136.353875771164894 -72.204898778639873,41.30073179457581,136.310165766626596 -72.21380084733488,41.293000453601955,136.294237866997719 -72.226153363770806,41.300681688528591,136.330480063334107 -72.236408764655465,41.302047505840228,136.344691250473261 -72.249038794343775,41.301121983690727,136.353936017490923 -72.252772852469562,41.300254416761433,136.354788608849049 -72.251393144237994,41.296020614198369,136.340043646283448 -72.252201110206627,41.29163177020429,136.326916148886085 -72.262365327609245,41.284560953996561,136.31431542057544 -72.318640332774564,41.27941678255273,136.352377598173916 -72.328475312509838,41.280094950553909,136.364038704894483 -72.334774486947722,41.284550072443082,136.384247866459191 -72.342340898019557,41.281744313064657,136.382680372335017 -72.349523564487782,41.279080852981203,136.381194225512445 -72.348948808050238,41.271332781675511,136.3560875877738 -72.387510884800406,41.263432778819578,136.368415676057339 -72.399570475096453,41.279806080534264,136.431982610374689 -72.406812700285499,41.280032016653372,136.439722252078354 -72.452809117403135,41.280518645687799,136.485914907418191 -72.473423630831732,41.271736812325805,136.478140765801072 -72.48657804450815,41.272514682429609,136.493397773243487 -72.50041940093773,41.267499761661476,136.490985071286559 -72.507519540583957,41.26173292060453,136.47963335365057 -72.519546326500745,41.262886997913242,136.495000623166561 -72.522198514824638,41.267233227902167,136.511347327381372 -72.530302226246576,41.26605452197937,136.515509649179876 -72.534133055710328,41.264323357550964,136.513760726898909 -72.537632304370078,41.257840788301017,136.49664225615561 -72.538662568235665,41.257280165829165,136.495871010236442 -72.547719607154704,41.252351739515213,136.489092321135104 -72.548121654468162,41.252132963756708,136.488791467621922 -72.571542586905494,41.269376956899464,136.566239244304597 -72.571963687166232,41.269686997927707,136.567631592042744 -72.572023624535461,41.269731127664294,136.567829773761332 -72.584224046910364,41.273330900269883,136.591130752116442 -72.586069153238668,41.272954358157733,136.591739928349853 -72.586821667612668,41.272800787955362,136.591988415457308 -72.587562060258591,41.272649691507922,136.592232916504145 -72.588814263970747,41.272394146651244,136.592646481469274 -72.590706024359037,41.272008083558255,136.593271383084357 -72.59185497300993,41.271773610591509,136.593650978058577 -72.598924456361871,41.270330897950409,136.595987692475319 -72.608751772010194,41.272019685815323,136.610931687988341 -72.611124878341826,41.272427495361818,136.614540757611394 -72.618126088960935,41.273630627505327,136.625189205631614 -72.618410277215773,41.273572156559567,136.625281873159111 -72.618872124909046,41.273477132676696,136.625432482920587 -72.632252444244713,41.270724169036583,136.629799197427928 -72.641891060316254,41.268741050452959,136.632948878221214 -72.642427764936144,41.268630624961965,136.633124359883368 -72.643701143627013,41.268516639771079,136.63400914799422 -72.651586757225388,41.267810767127493,136.639489641413093 -72.6547281264003,41.267529570671201,136.641673507168889 -72.654820920399516,41.267563591949084,136.641871971078217 -72.655605085989322,41.267851092387431,136.643549108877778 -72.663093883509887,41.270596727482747,136.659566222690046 -72.66372844662834,41.270829378820849,136.66092346701771 -72.668066833512171,41.269824836733257,136.661991573870182 -72.672564154330786,41.268783493906042,136.663099540397525 -72.673229707446808,41.268629386829176,136.663263568654656 -72.675209552384189,41.267152429275662,136.660528748296201 -72.685829965171649,41.259229637673343,136.645859527401626 -72.686305114640959,41.2542401902896,136.630534199997783 -72.686429897926118,41.252929866568977,136.626509197056293 -72.690337461277835,41.249261712971574,136.618727727793157 -72.691127708086654,41.248519883240938,136.617154040373862 -72.691329985297301,41.248329999211059,136.616751224733889 -72.694331978493466,41.247125766988212,136.615881622768939 -72.695635093487738,41.246603029938335,136.615504237823188 -72.696360894346824,41.246580589237936,136.616144651547074 -72.702697308966577,41.246384676564873,136.62173639331013 -72.707127551213063,41.246247699947467,136.62564680352807 -72.708103424901907,41.246217527358127,136.626508262008429 -72.709549454293068,41.24617281824063,136.627784813754261 -72.709854286241324,41.246163393281812,136.628053926862776 -72.71008406932296,41.246156288724315,136.628256787545979 -72.711486571515636,41.246112925403523,136.629495006985962 -72.711712621704109,41.246445262296078,136.630768625997007 -72.714565700560357,41.250639832387364,136.646842775866389 -72.712099287478068,41.252650812291627,136.650788236409426 -72.713351522706418,41.25580004345548,136.661982414312661 -72.723331183705767,41.260770453643417,136.687498121522367 -72.733705142998531,41.256359822309484,136.683720829896629 -72.75533727450572,41.26854515159944,136.743504404090345 -72.758370006026524,41.268545128069711,136.746482296846807 -72.787036157608384,41.266427586244859,136.767949200235307 -72.819632300099954,41.253875638875456,136.760311918333173 -72.820267352835913,41.255693009038673,136.76668527815491 -72.827778255518098,41.258386168211061,136.782596597447991 -72.848662950499559,41.25832115035891,136.802958842366934 -72.851105960701418,41.257175097748622,136.801741590723395 -72.85495099959067,41.249371690839894,136.780851570889354 -72.862240188793663,41.246928724765397,136.780309517867863 -72.882341765604608,41.244228668466199,136.791593161411583 -72.896342208014019,41.245328518572613,136.808886542916298 -72.901700738265916,41.247495813598576,136.821029498241842 -72.905242528930771,41.248928315592657,136.829055696725845 -72.906142570086999,41.249928271463922,136.833106165751815 -72.903942564519099,41.254428121624734,136.845162367448211 -72.903705296653925,41.25452531151123,136.845235452055931 -72.895642357664855,41.25782806017434,136.847720142453909 -72.895626923229045,41.257891512254034,136.847905520349741 -72.894742380827722,41.261527929932427,136.858529217541218 -72.8972679769374,41.265580215087247,136.873831292614341 -72.904026745638191,41.276424568949139,136.914775072596967 -72.908859907522057,41.284179312410693,136.944048198871315 -72.909098341298105,41.284561876207476,136.945492210797966 -72.917725099997995,41.283663247081506,136.951167318969965 -72.917935293696317,41.283534801393898,136.950968989171088 -72.920960108529542,41.281686390027062,136.948115021921694 -72.921556196943271,41.273204390264688,136.921901884488761 -72.921612035556763,41.272409838530088,136.919446113519371 -72.921744328471917,41.270527385559241,136.913627726025879 -72.932785317817476,41.262769216220427,136.900013078935444 -72.93437087130107,41.261655095736465,136.898058126680553 -72.936544637693316,41.260127655830836,136.895378003828228 -72.957882793751551,41.254551039552517,136.898843887262046 -72.960532210724764,41.253858628178179,136.899275384843349 -72.962244347340899,41.25341117015946,136.899554369971156 -72.962946348728039,41.253227705740144,136.899668789468706 -72.984650800465246,41.236994972676641,136.869829885661602 -72.985995005545277,41.235989643337049,136.867982149124146 -72.987146838680147,41.235128188741001,136.866398868151009 -72.998848047369393,41.224328498565185,136.84383818693459 -73.004538912682989,41.216918842242286,136.826042907312512 -73.00844816864668,41.211828888195093,136.813817796297371 -73.014365401544921,41.20711131580503,136.804760850965977 -73.014888518695884,41.206694255488706,136.803960190154612 -73.015848313303508,41.205929049756769,136.80249116756022 -73.021049469051505,41.205729016531279,136.80701622273773 -73.021067753675467,41.205869174290505,136.807477734982967 -73.021095027858564,41.206078240027743,136.808166150003672 -73.021110931871945,41.206200149610474,136.808567570522428 -73.021154961579867,41.206537652050081,136.809678894467652 -73.021349509723606,41.208028928642861,136.814589229412377 -73.023449584685238,41.208828882468623,136.819202451966703 -73.02568319726258,41.209067304008151,136.822171985171735 -73.046503722999518,41.211289740302085,136.849859458394349 -73.05155148207119,41.211828551029015,136.856573973782361 -73.055848770472835,41.210099830618951,136.855373033322394 -73.060251699067734,41.208328613091879,136.854143220931292 -73.078511786002082,41.196808034294989,136.835844562388957 -73.080352137149006,41.195646927536238,136.834000771865249 -73.092121965473922,41.185785644308702,136.814505649730563 -73.092902170158723,41.185131954286256,136.813213388435543 -73.093049203250445,41.185008763453325,136.812969860620797 -73.105230417006467,41.174802803384253,136.792794699780643 -73.106385343953747,41.173835154470822,136.790881918743253 -73.106395630427798,41.173826536007596,136.790864884853363 -73.108889658894228,41.170370645219968,136.782410600222647 -73.111254606802575,41.161329963605553,136.756151295267045 -73.110854557593626,41.158630067380663,136.747206931933761 -73.109253971844339,41.155351212029771,136.735234081745148 -73.111954506026947,41.152430289903123,136.72867557220161 -73.131156035235293,41.148430288580144,136.735136304982007 -73.165274422553679,41.160197572336919,136.806391612626612 -73.170978566685918,41.162164906872107,136.818306208588183 -73.171605906391292,41.166577185319866,136.832892920821905 -73.178679040159665,41.168329065608773,136.845491144806147 -73.203561392110174,41.159728298867698,136.843114785850048 -73.22920128757535,41.144235063460641,136.819706833921373 -73.235964182840206,41.145628570030901,136.830878126434982 -73.248864332512497,41.128029125525373,136.788078838959336 -73.263264647371571,41.119129344630672,136.774317509494722 -73.28766653149215,41.129528764046533,136.831675255671144 -73.297266792648017,41.127328770575645,136.834332467056811 -73.312768133641683,41.117928999579597,136.820122349075973 -73.331568617328188,41.111629086797983,136.81904225051403 -73.373205614436841,41.105653163814118,136.841944548301399 -73.393072175074764,41.089329435383014,136.810245559550822 -73.401064603124198,41.087932579447497,136.813864585012197 -73.414580598490787,41.074892223141426,136.786178245209157 -73.435974047355373,41.058330257202222,136.755274626426399 -73.451275516305913,41.058730121217039,136.771967822685838 -73.469150846133232,41.052980842853223,136.771789103746414 -73.478276042552963,41.037631698637611,136.73237291444093 -73.494239808307171,41.049807186979905,136.787065419368446 -73.517816754051523,41.040371800716287,136.781001952476799 -73.517679145156961,41.031131630504198,136.75158925820142 -73.523579182744896,41.020931966590496,136.725235684774816 -73.529779330220833,41.018032026339924,136.722317260690033 -73.53208209813485,41.023553559094189,136.742144414223731 -73.531102526480907,41.030410777671662,136.762880548834801 -73.533699824300356,41.033303998835287,136.774673983454704 -73.536251521538318,41.033554574947281,136.778049157001078 -73.55240773698209,41.025971012272393,136.770373637787998 -73.562882336772105,41.018431748876985,136.757092028856277 -73.568582427529222,41.012531925232452,136.744170436635613 -73.57098237152546,41.003232255561819,136.717128666117787 -73.584882781973306,41.002532171578885,136.728998236358166 -73.585903198121983,41.012171397849151,136.760580199770629 -73.596614251680734,41.017629396986763,136.788732399232686 -73.604867289295512,41.016688258180992,136.794119938276708 -73.644394522739134,41.003805471225363,136.793423151597381 -73.652091733988271,40.996863850701807,136.779247531667352 -73.658252780727835,40.986806179918261,136.75363480951637 -73.655588067821284,41.013331203963155,136.834971758536994 -73.656288104220138,41.01443115706514,136.839167107827961 -73.671389800487248,41.03173038708595,136.909294095821679 -73.68089125008413,41.043429872185072,136.955985051579773 -73.688091591377116,41.052329480818976,136.991467502899468 -73.69519192555876,41.060928101621457,137.025890147313476 -73.728695515207264,41.1023262824556,137.190848281607032 -73.640590419504619,41.143124458992709,137.230290451087058 -73.633071239671139,41.14655039087576,137.233491575345397 -73.615324937281287,41.154629756283853,137.241034054197371 -73.515532423893902,41.200062328974866,137.283638593740761 -73.510402301439953,41.202442281030294,137.285977575927973 -73.48362365535904,41.214388048630148,137.296694335527718 -73.551878882390369,41.297046430537868,137.626031456515193 -73.545646689320847,41.367996848474995,137.842984168790281 -73.544560028636795,41.378399001752626,137.874588940292597 -73.538592426089025,41.435524406875501,138.048022219911218 -73.538388447890938,41.437509335181815,138.054047917015851 -73.537888506119558,41.442713146974675,138.069879001937807 -73.536986623196043,41.452949776210012,138.101097620092332 -73.536905645148536,41.454678713033907,138.106441367417574 -73.536804672807961,41.45685463352352,138.113167290575802 -73.53677667863667,41.457327616289497,138.114623192697763 -73.536688696439853,41.458777563477312,138.119084044359624 -73.535288918584286,41.477511883489392,138.176444069482386 -73.535188922608285,41.478011865849922,138.177911631762981 -73.535188929918462,41.478528846784158,138.179532961919904 -73.535069942541142,41.479677805364801,138.183016643859446 -73.534974952487573,41.480585772642115,138.185768600553274 -73.534888960120711,41.481310746596471,138.187955689616501 -73.530987513735482,41.528810027961221,138.332913538441062 -73.522378518590628,41.618041818650838,138.603532955981791 -73.518395305495801,41.668256954064404,138.756450891494751 -73.511094654140351,41.760294070665445,139.036284383386374 -73.505931981752511,41.825378378745782,139.233824368566275 -73.50586798715328,41.825890360641388,139.235353830270469 -73.488240703788776,42.051235345227525,139.917349696159363 -73.295340730278696,42.048582993291063,139.717944801785052 -73.294017688901391,42.048539005488522,139.71650136820972 -73.23197474904461,42.046544574472932,139.649087316356599 -73.230716709303564,42.046476586990856,139.647636219859123 -73.128191597026742,42.043564640027149,139.537700386717916 -73.054167193437593,42.041462176418712,139.458535482175648 -73.00965111730747,42.040957321594114,139.413371131755412 -72.864640309442123,42.039312756819832,139.266699079424143 -72.864526305904107,42.039311757756948,139.266584957018495 -72.814446740371508,42.03809719696239,139.214082473888993 -72.817646287483868,41.999199571186651,139.096247770823538 -72.77566083961527,42.003733852621856,139.069536556489766 -72.767642818290014,42.00459977081259,139.064442631788552 -72.767042866259629,42.009299606399161,139.078480762429535 -72.759054805676087,42.022469195533105,139.111687821336091 -72.758370785680114,42.02255119796996,139.11127894744277 -72.756741951285207,42.037798662613632,139.157109485939145 -72.715036823737009,42.038211761273587,139.117957236245275 -72.69682910556358,42.038392112666656,139.100882338359952 -72.51008284613151,42.036212726667266,138.913855247199535 -72.398321294862725,42.034908430651491,138.802474606782198 + + + District of Columbia + + + District of Columbia + 0400000US11 + 11 + 61.048000000000002 + + -77.033971656419098,38.84119223672861,133.51737526524812 -77.032683924055561,38.852203639411691,133.551973558962345 -77.041585461967827,38.872902711095463,133.630155019462109 -77.069186639177957,38.901500299974657,133.755912713706493 -77.091188323090833,38.905899932676689,133.795923219062388 -77.102188730207757,38.912799555533802,133.831309637986124 -77.120852863786808,38.93595289297209,133.928775782696903 -77.120889581784027,38.935998442591099,133.928967481479049 -77.101689240924543,38.950597005100491,133.954334836453199 -77.055287429162362,38.986795911404521,134.018659538589418 -77.041987191056435,38.996795613701387,134.035873129963875 -77.037287010474614,38.993395793004154,134.019310558214784 -77.016585203824093,38.977596616656044,133.943657536990941 -77.014785131947107,38.976096693459354,133.936666295863688 -77.009284916271682,38.971796916512027,133.916229254566133 -77.003622266386344,38.967208635479565,133.894659360870719 -77.003484686561507,38.967097158536063,133.894135280512273 -76.94270619652211,38.919708836132621,133.668614662252367 -76.910378042123639,38.894502928170837,133.548599503934383 -76.911778066666514,38.893402961647283,133.546617656946182 -76.920278216738851,38.886803161701351,133.534842910245061 -76.921178232610529,38.886103182935699,133.533592364750803 -76.950679750508542,38.863003885749201,133.492098365910351 -76.954679825271754,38.860203967419416,133.487561631947756 -77.002381666505613,38.823206091102698,133.421645459719002 -77.025376613130646,38.804663168262017,133.387556188739836 -77.039583306008566,38.793207016146766,133.366497366689146 -77.033971656419098,38.84119223672861,133.51737526524812 + + + Georgia + + + Georgia + 0400000US13 + 13 + 57513.485000000000582 + + -84.811614431934018,34.989401680814169,130.825970534235239 -84.81032146397682,34.989363520790945,130.823917862027884 -84.809264438448011,34.989386529588181,130.822428152896464 -84.776989109089087,34.989594437114455,130.775239722803235 -84.732157558796061,34.989883227522171,130.709748959168792 -84.72856947002019,34.989815264346959,130.70419360883534 -84.622615878512249,34.990125239273247,130.548388175666332 -84.511016135838972,34.989807294647413,130.382427179254591 -84.510182115674866,34.989830301306753,130.381276734173298 -84.396030310266752,34.989828362665996,130.213061102665961 -84.395062286978586,34.989866369831212,130.211768804118037 -84.322994518182284,34.990207022135479,130.106977402232587 -84.130675764538083,34.989304844533159,129.821839208714664 -84.13057555647913,34.989304661356201,129.821691947989166 -84.031072301539083,34.989122771726151,129.675624585710466 -84.022475090485486,34.989231845685666,129.663454519584775 -84.0065744876038,34.989242315064615,129.640284905210137 -83.937761995653247,34.989287622442042,129.540108753368258 -83.937528987508671,34.989287293289337,129.53976811747998 -83.674730468370171,34.988916050970978,129.156700141727924 -83.621293207572535,34.993896300996873,129.096754844300449 -83.550487451864342,34.994297927650102,128.995810206048191 -83.484168658360318,34.995543895164928,128.904453501105309 -83.109809304808707,35.002577172730398,128.391496228985488 -83.109630559085687,35.002580530909398,128.391252416186035 -83.14435641619454,34.926568844513795,128.174373908899724 -83.244059281756051,34.879563192424961,128.152321071363986 -83.268390291136271,34.834564127525901,128.029133383184671 -83.284248534945476,34.823144531730811,128.011781042441726 -83.325158121295772,34.790508727788954,127.955848866142333 -83.340226868395732,34.743085868903705,127.810560904443264 -83.353520259931116,34.717932425819221,127.741075210273266 -83.353582866461622,34.717813963216223,127.740747863426805 -83.352489818970056,34.716277046966006,127.73375188652426 -83.352073792597039,34.715064109038785,127.728874829597771 -83.352390648043041,34.703524661152301,127.6886369837448 -83.339291140475481,34.689746441956054,127.62112792301923 -83.338964186740995,34.6895037469532,127.619799812324345 -83.292778529000103,34.655220522076092,127.43214269541204 -83.241762880510095,34.626333371270725,127.256514984183013 -83.24176987805977,34.626133380842397,127.255817858502269 -83.168614744588766,34.602252186789947,127.066004418767989 -83.172069809322181,34.600626234229246,127.065220072865486 -83.171369708167674,34.594226548929285,127.041557155549526 -83.107963336572993,34.535885155947518,126.743610357865691 -83.088277642441824,34.517771978975283,126.651043779216707 -83.073834132173403,34.506182667238932,126.589145143516362 -83.053248828370883,34.494896857733742,126.519487956538796 -83.035798914348931,34.485330012930838,126.460435771383345 -83.007934102114731,34.476211701171763,126.388019856065512 -82.996369816264746,34.476384795563298,126.372035402804613 -82.993756809749428,34.480907600295147,126.384360197000206 -82.993301235426415,34.481033805948798,126.384154953062534 -82.980653530250805,34.484537541376113,126.378459881991148 -82.940151565898987,34.48803773197784,126.332824863493443 -82.903748654053103,34.487738069400919,126.27960944082588 -82.883947070815154,34.480839577985179,126.226732268929482 -82.874913748587062,34.473345019886771,126.18714929651469 -82.875946740568196,34.470728137101673,126.179319985210896 -82.849732505663894,34.425683545497336,125.981472897343338 -82.767156011318448,34.29535556693849,125.398245999589562 -82.756105276662439,34.277914526698382,125.320065259002149 -82.743056367021751,34.232045867572737,125.13722016941756 -82.744537367640305,34.229192993121664,125.129121793434024 -82.745491360506691,34.22676310276357,125.121783711016178 -82.742996109510258,34.211913846022142,125.065012784674764 -82.742567188113043,34.210559605012513,125.059546019881964 -82.732956456828205,34.18021547481797,124.937005101703107 -82.718581745595174,34.152357955771812,124.816476163454354 -82.705214292371366,34.142861534888873,124.763250268995762 -82.678393505886575,34.13351222450401,124.691296984441578 -82.669186131182641,34.12201586460634,124.636826205998659 -82.660149696252489,34.105400752601312,124.564187518320978 -82.659633678020413,34.104974777854075,124.561918115243316 -82.655091529877396,34.10220295251743,124.54545658454299 -82.653247475832316,34.101560999884825,124.54051111638546 -82.642324067607149,34.090771620801952,124.486092202365398 -82.641773046655516,34.090198653523927,124.483243556693196 -82.598148736487431,34.014251885532275,124.147422902286053 -82.56565048702511,33.957674782247885,123.896867498755455 -82.565551858535429,33.957609263878446,123.896489945240319 -82.430227993196809,33.867714354386401,123.378189803101122 -82.423866808746112,33.865624511595158,123.361546936444938 -82.409417480418412,33.868190510698525,123.350229430943727 -82.404944358460966,33.867347590550757,123.340798285789788 -82.325540816340933,33.821906499548511,123.062962877564132 -82.302517017925922,33.803738587565718,122.964267902076244 -82.248530064912359,33.754468466341244,122.708499112166464 -82.21970553337033,33.688179967011358,122.42633549682796 -82.197638302671621,33.632465894239182,122.191906643100083 -82.18090870725274,33.617829756988648,122.114715002477169 -82.136099287097622,33.592930364144465,121.960107443854213 -82.130133124723784,33.591811470004011,121.947541234083474 -82.12589403539738,33.593160439682734,121.946442951448262 -82.117683287025102,33.591609656405815,121.929111984558403 -82.099868326542861,33.588244903044306,121.891514357179403 -82.070090450447125,33.577269696411712,121.809133772738278 -82.047385743883396,33.565718457927957,121.734690489247441 -82.029288063542538,33.54682354200412,121.639918399974704 -82.015342417056047,33.532202988086759,121.566644375212491 -82.008687288394952,33.525225780698108,121.531669422984123 -82.008187269878434,33.524725809572267,121.529130216687918 -81.968084760253234,33.482529229281838,121.317715886048973 -81.95898156936299,33.47052567558184,121.260811124928296 -81.913617538422926,33.410708234126894,120.977021529339254 -81.903781365707886,33.333143152087935,120.677915459498763 -81.853178108156612,33.249449722691843,120.297796616330743 -81.853016881980352,33.249313658041928,120.297066126018763 -81.773290388755044,33.182029562216741,119.935643497854471 -81.697970691606542,33.118464521191932,119.593840007670224 -81.621321531272159,33.097323209042102,119.407173870131373 -81.616790130145461,33.09444982941114,119.390122357755899 -81.542862991186055,33.047572333565775,119.111865252256393 -81.512720992120137,33.026425635165587,118.990817891433835 -81.497667450026213,33.012144470454693,118.916523880325258 -81.492525186166731,33.00049309309896,118.86595703382045 -81.495766039734804,32.980920041397439,118.797722307965159 -81.500859990686777,32.965738755976908,118.748412659391761 -81.424798322684978,32.812445035362806,118.069411781616509 -81.405974124962029,32.748961366847595,117.805377683602273 -81.406158806869726,32.746898604769846,117.797914622351527 -81.415785117649492,32.639379782444955,117.408362365327775 -81.419455177841968,32.636643889904541,117.403273738920689 -81.419684123034799,32.631332154821884,117.38365135807544 -81.41292982988584,32.620350761543804,117.332865446805954 -81.390361006889293,32.597378099837179,117.21466448623687 -81.390280561315976,32.597327039739646,117.214358946308494 -81.349176684979909,32.571237749079231,117.05822226125747 -81.329774110492338,32.563172312335858,117.000499199144542 -81.319275832012451,32.561666473332593,116.980024807155132 -81.287795946969425,32.546776708145998,116.879589151591063 -81.27643453575638,32.541402840157637,116.843340393155813 -81.200045819475832,32.469236091064303,116.463663862086833 -81.169046939259744,32.370346327733621,116.046271327883005 -81.141946052375005,32.351349504892575,115.936204376630485 -81.135345802151434,32.343649946789142,115.897755456157029 -81.123346099109497,32.307353877052094,115.743323605507612 -81.121345831368544,32.287755883918997,115.666186408139765 -81.129046917459405,32.278257302535529,115.64099445939064 -81.126469719768906,32.229092501691667,115.450710734352469 -81.123045499695408,32.163769149126857,115.197518182918429 -81.118244892714202,32.119573429920727,115.022473409771919 -81.114344747330563,32.115173684413698,115.000210617668927 -81.062859189893175,32.089905378028263,114.831325247883797 -81.043841679543092,32.086478703514139,114.791471321135759 -81.005122669202734,32.074196500835384,114.690114863216877 -80.886521219664189,32.036574487815031,114.379787995480001 -80.860114443287742,32.025668251035185,114.301052244380116 -80.853279305609675,32.028651153542661,114.302868489176035 -80.844133051146883,32.026201350373881,114.280677637085319 -80.841551846140348,32.013282027338121,114.227658648043871 -80.842915785792911,32.004619456889905,114.196439037099481 -80.849443792009851,31.990256135613205,114.150643876753747 -80.863816943821831,31.971323985070306,114.098354217596352 -80.883817329728998,31.961053349680345,114.087115756236017 -80.89869059080884,31.951043741660104,114.069681761786342 -80.912210869400695,31.94574790443259,114.068402408622205 -80.930105327219295,31.946942702100497,114.098138451576233 -80.931283484244446,31.958683095004712,114.144748126156628 -80.949495942643495,31.959207924160392,114.172373397275805 -80.973397362767273,31.943248547686398,114.144909581169486 -80.976719253019255,31.925581421485216,114.081921524368227 -80.969498989096593,31.91780187506723,114.041947931982577 -80.955473596682879,31.913748192584624,114.00666700489819 -80.942363284218331,31.914964234251332,113.992874636314809 -80.935512072694678,31.911160482251521,113.968655277974904 -80.948298249499999,31.898191042324559,113.936932830139995 -80.972438650648243,31.879922783180881,113.900876015424728 -80.993694957969623,31.859623650943441,113.852961498312652 -81.001322137481253,31.858726636450907,113.860274164937437 -81.015483605268003,31.869455976912182,113.921408812515438 -81.042554371550494,31.878179317582497,113.993058369494975 -81.066261969233665,31.879076084102483,114.029965182766318 -81.059602594500646,31.859793121062889,113.946609878912568 -81.060076522558433,31.852088510682336,113.917720993049443 -81.063796556505309,31.846722755244723,113.902386644855142 -81.077184794866113,31.838115088932003,113.888269199058414 -81.076818708712892,31.831014454563729,113.860497731715441 -81.058187178168126,31.82467092602225,113.809819094836712 -81.051952020336017,31.824366990847533,113.799844535999 -81.048945972913316,31.826864886996386,113.805189630948007 -81.040813750938014,31.824984047365994,113.78648370783776 -81.037963642979321,31.821542245730303,113.769242890179157 -81.037878566786901,31.814705595722142,113.742866739630699 -81.048350719565988,31.804850016663227,113.719799897633493 -81.069121864690331,31.770721597738532,113.617994384840131 -81.07806300519978,31.763242909752176,113.60188268031925 -81.098408420946114,31.75511316509035,113.599402734078467 -81.131640914125015,31.724680460796939,113.529383641667664 -81.139455088388075,31.722922489120226,113.533690449781716 -81.155693877288883,31.72819066989425,113.576977154240012 -81.161677715920334,31.730131944186198,113.592928856611252 -81.193792565105994,31.735232428897351,113.65809566155076 -81.19940281108822,31.728057768476237,113.638458322733641 -81.204580682308119,31.72143605037456,113.620331971906126 -81.187311061437271,31.703498106301453,113.526789750903845 -81.162091328906655,31.693390823703908,113.452096856199205 -81.155631195935513,31.695863747952746,113.452458036132157 -81.152895177308025,31.700400537011209,113.466047457419336 -81.150376124678715,31.701293511136463,113.46591410599649 -81.140400884670711,31.701906558486481,113.454133739694953 -81.132143635761693,31.697763835998131,113.426478703506291 -81.136614613733954,31.685481430328004,113.385510508902371 -81.13741454009417,31.676822867976863,113.353287808597088 -81.132734205056295,31.656475948489948,113.268236991018057 -81.134498913465421,31.625341532382325,113.150670493021607 -81.150975999288207,31.595470936653133,113.058768668211997 -81.161370008439462,31.572432038780452,112.984555071219802 -81.17408516632122,31.55790468560421,112.946490788832307 -81.179828303984593,31.557526659841109,112.953190410509706 -81.184258461908414,31.562054392138194,112.976979819126427 -81.187120618169558,31.570027959629179,113.01184961758554 -81.19538709750249,31.570096470057948,113.023862509988248 -81.205322068890979,31.570178808496959,113.038303188979626 -81.215543207321787,31.559597272102838,113.011962533928454 -81.241706795703337,31.554309337911441,113.028756345622241 -81.255226168003034,31.557936044758829,113.06201012711972 -81.261084230048155,31.550276392623484,113.040760235860944 -81.264913155678798,31.53457617037666,112.985543726012111 -81.264445126451832,31.532929258833445,112.978511686436832 -81.259816992290837,31.531057391658646,112.964684813283384 -81.218954965975612,31.52928180490175,112.899654554203153 -81.214525866079654,31.530149795097628,112.896709113381803 -81.200524622111885,31.53959341937162,112.913302620872855 -81.19402244282135,31.53783056124556,112.897242785431445 -81.182598073780824,31.529695069728458,112.849547727033496 -81.179315936158432,31.524408367593164,112.824438495561481 -81.178259852940315,31.519072650500917,112.80230104457587 -81.190649014047352,31.505587247286392,112.767749323509634 -81.205889063721557,31.475124696480631,112.671529063954949 -81.247917560971814,31.424786961570298,112.536383091472089 -81.25962265308749,31.406428816961551,112.481897799298167 -81.279804752745264,31.369219579898989,112.366339838132262 -81.28034459462269,31.353133406829556,112.304664711467922 -81.28392942053361,31.328498652161166,112.214103303849697 -81.27551921106712,31.328244731221066,112.201107387430966 -81.269033030120781,31.326225886444334,112.184002892114222 -81.255825612195409,31.317460443180344,112.131086349487305 -81.261963640504078,31.305918992041519,112.094984408468008 -81.270911685954559,31.296498345138506,112.071132711134851 -81.275693824500991,31.291463632410604,112.058384129777551 -81.277867509623633,31.256745412656052,111.926412740722299 -81.283847546275524,31.246341904709688,111.894459878094494 -81.290141593316193,31.227499539807663,111.830081640742719 -81.289408123093494,31.213078689174253,111.772851676680148 -81.294364402286917,31.208345791529108,111.761497028172016 -81.305962685314796,31.208186709120334,111.777468273416162 -81.315188930446013,31.209951545481953,111.797546439804137 -81.340034317662472,31.188932441297528,111.751196062192321 -81.355886497959148,31.169219340255278,111.697043302468956 -81.361797523433879,31.15791888064588,111.661438265815377 -81.360355416898315,31.151182241683713,111.633089412003756 -81.369247501440626,31.138550828167311,111.596547463908792 -81.38783692191501,31.135230855336928,111.610253081656992 -81.400684246172403,31.136129708202095,111.632195245474577 -81.403103213202613,31.127400142830862,111.601595731452107 -81.404739060400601,31.109133079388368,111.532624116167426 -81.402215777414654,31.088162189418,111.447083703242242 -81.40227363802444,31.074800883899929,111.394950955174863 -81.416129492365783,31.028740173053816,111.234720220789313 -81.421480517997992,31.018725652875162,111.203219853341579 -81.425738590362229,31.015700777232812,111.197501948103309 -81.4334817725275,31.015013752641611,111.205946881324053 -81.435716844534625,31.016663649265592,111.215618924237788 -81.435929882997982,31.019826482855404,111.228304031305015 -81.444177506920255,31.018683788315482,111.235693881288171 -81.452451262954241,31.017537473204282,111.243109690025449 -81.458802362966054,31.012281697460441,111.231677575036883 -81.460247350271601,31.007714924131044,111.21588134393096 -81.470305494542018,30.998051349255661,111.192526582628489 -81.491593898341463,30.986975760503277,111.179814340546727 -81.494658895200232,30.979552123662597,111.155155515298247 -81.48797364862304,30.971626589117655,111.114477931521833 -81.476796337483705,30.96800086536491,111.08417209610343 -81.473328293932099,30.971923687821153,111.094547299668193 -81.467821169979644,30.972934678032555,111.090577981434762 -81.454574790266989,30.967598059562,111.050596958957613 -81.448394546506108,30.958757568770334,111.00705393217504 -81.427935045222796,30.958640734172519,110.977153231389821 -81.421114061517855,30.976100876857238,111.03576921671629 -81.416830989467115,30.979216747779141,111.041818058118224 -81.409489815460276,30.979742777520766,111.033323284238577 -81.404414483797353,30.959939849472576,110.94841624982655 -81.40615800635851,30.910231429423607,110.755937114357948 -81.429581828719094,30.838368002038951,110.50734147708863 -81.43183982988657,30.833188255371571,110.490226663649082 -81.441134954849616,30.823401695103605,110.465131434611976 -81.447932006427337,30.812423216700818,110.431741712614894 -81.456292007922357,30.792964170194718,110.367220567539334 -81.461065905868637,30.771947233537233,110.291359755210578 -81.462069761796357,30.75572007567769,110.228889621794224 -81.460474601416976,30.744015701240198,110.180467903614044 -81.450379081825588,30.717639161787137,110.061912117525935 -81.445127892845363,30.71175251101613,110.031116471625865 -81.545624371404855,30.714673579804643,110.187829581089318 -81.607228927870864,30.720171813473886,110.298678172752261 -81.625306555620014,30.738229725918195,110.396019147709012 -81.638230845444454,30.735870749174122,110.405456420965493 -81.720937968863822,30.746668539133509,110.567968125455081 -81.733638332838837,30.751968162174471,110.607274941168725 -81.742289676299237,30.76471442623782,110.670002989470959 -81.760350206095623,30.77340982936617,110.730451148934662 -81.807665547202689,30.791714500060362,110.87121685128659 -81.828028033779788,30.790964380150498,110.897892650216818 -81.841389331396854,30.788415409275661,110.907320159487426 -81.869623083532048,30.794784854302506,110.973466532304883 -81.907030300669348,30.824205018839063,111.143530903384089 -82.000854219028611,30.790378056290606,111.147608275525272 -82.024231718224513,30.784017206438048,111.156791561283171 -82.051450265343263,30.67830154748971,110.780781942419708 -82.050419020563112,30.657332658866491,110.696658231317997 -82.038626504848224,30.635308910478482,110.592563797719777 -82.01430652392672,30.597705081098827,110.408580132760108 -82.006492999587138,30.565536837404071,110.270098590292037 -82.018005818317945,30.521402075408609,110.112505382858217 -82.01711856821278,30.49940024358569,110.024159788154066 -82.05104567961682,30.364542395929494,109.539385247044265 -82.051083989399942,30.364390117301998,109.538836907595396 -82.125851834463134,30.368615312392311,109.665570900775492 -82.166209717804705,30.360086450040544,109.691154856234789 -82.17252588880018,30.361920303705777,109.707741217687726 -82.190601493117967,30.37826329718402,109.799232438206673 -82.205170104301644,30.403378853655198,109.920309241861105 -82.211310493762383,30.426637574687305,110.021537053398788 -82.207059713105608,30.457552972514154,110.137706762179732 -82.213350323808754,30.501601594982521,110.321251582354307 -82.21540607798822,30.568998020450636,110.590545219369233 -82.215868478999695,30.569048940083423,110.591426895931363 -82.25086297336243,30.572902536206982,110.658171060495079 -82.259122179642631,30.573598434640058,110.673086105845869 -82.288365903948815,30.575497104732211,110.723683188669384 -82.375869068370406,30.581042123695177,110.874707855284214 -82.419941521617503,30.583782693690022,110.950661666691303 -82.460571160413778,30.586309177836775,111.020737871527672 -82.460818976693503,30.58632402740232,111.021163248457015 -82.525927771711608,30.590225454786939,111.132991621270776 -82.53726205120023,30.590921328421331,111.152538805268705 -82.546084268025012,30.591397233516005,111.167497532442212 -82.554188468617966,30.591970139151851,111.181775812990963 -82.566505771524362,30.592658005363145,111.202760465443134 -82.570266865413714,30.593000957484335,111.209692726843059 -82.585032155350675,30.593831580643425,111.234880045987666 -82.690303815490381,30.599753649323368,111.414662780240178 -82.690571769296895,30.599768352413751,111.415119393728673 -82.699651044902197,30.600266548015494,111.430592458695173 -82.699935052120651,30.600305543699985,111.431168682873249 -82.87829643516217,30.611056556136468,111.739471671171486 -82.879816472118094,30.61111454094797,111.741971216164529 -83.137659582866789,30.626376029810288,112.188382604159415 -83.157214267514647,30.627533452507915,112.222325425595045 -83.164353441771809,30.627924374486778,112.234596352092922 -83.175455712098938,30.628473256258641,112.253450527787209 -83.188436029581908,30.629252110742303,112.27603751514107 -83.257265177248513,30.633307778355416,112.395605525933206 -83.310297073385328,30.636432612944528,112.48783462215215 -83.310297653411396,30.636432647121744,112.487835632637143 -83.310503011406027,30.636444747569932,112.488192948512733 -83.312695065245862,30.636604721430992,112.492128046229482 -83.341900484935621,30.638363796338794,112.543110416270792 -83.342059782315204,30.638373390996666,112.54338856600225 -83.358752234200324,30.639386473016213,112.57257014978677 -83.380509721055745,30.640706957121797,112.610619735904038 -83.391111979932674,30.641359836931635,112.629203421063721 -83.430527939461754,30.643545402694993,112.697375836782157 -83.430634941753141,30.643522403048149,112.697447526268661 -83.441072195197322,30.644049290755692,112.715304546058178 -83.449946410000919,30.644436198497257,112.730250695720315 -83.612722364850995,30.653279410879893,113.011697445064783 -83.612775367307535,30.653282376747146,113.011789564043283 -83.675114879804028,30.656770718852037,113.120200422592461 -83.677829945768408,30.656928688399393,113.124948509968817 -83.744787567453969,30.660419343152508,113.240532159805298 -83.811596184209876,30.663902229094376,113.356002017855644 -83.821946436665399,30.664634105829524,113.374656263738871 -83.856277266955601,30.666433730116445,113.434098140336573 -83.881281872663138,30.667853450536793,113.477842207066715 -83.881378874678973,30.667828451070196,113.477892623282969 -84.008455939960214,30.674117077393703,113.696892407722771 -84.008518941481341,30.674120433735993,113.697002043016255 -84.040772720061412,30.675838721038819,113.753146888688207 -84.042875770234119,30.675897700657295,113.756601508706808 -84.047670886684912,30.676219644232848,113.765211467631161 -84.058294142361689,30.676724530270253,113.783474600873888 -84.084819551851297,30.677973734408528,113.829047235660255 -84.282281524234591,30.687273127257978,114.169011561200023 -84.283633729623631,30.687333132665103,114.171329575590789 -84.381793112442253,30.69168904822655,114.339755806140602 -84.536119597337105,30.698537428500522,114.605181035585701 -84.540447701382419,30.698789379189247,114.612869346514344 -84.607328299575059,30.701885659100185,114.728643234819174 -84.607465302699026,30.701878658333829,114.728828550316393 -84.864550769084204,30.713497399568634,115.174083240330219 -84.865778459364449,30.713552883872438,115.176214568316936 -84.897208629125501,30.752599543005786,115.377102493308485 -84.943014244852293,30.889988859432261,115.981522339396179 -84.960715913304711,30.912586511661747,116.096600474789739 -84.98461775273168,30.937483989985111,116.230191036127508 -84.999719512667369,30.973381960107645,116.39247633703053 -85.003459933406049,31.002676377062958,116.511411757208407 -85.000520014868897,31.015836705268867,116.557606218382716 -85.02321435121938,31.077470320604021,116.830577405169606 -85.030829662524781,31.098152095170612,116.922082584351301 -85.03670893752161,31.110180409733108,116.97754121106118 -85.077723453881447,31.15891248770885,117.228885876946151 -85.084677647182872,31.161615285869324,117.250119190663099 -85.09320185362094,31.162278178333498,117.265966424718499 -85.101303102367581,31.167474835068148,117.298570455051959 -85.108612514297178,31.18843466673075,117.390458427369595 -85.112968446644601,31.260367837233286,117.673114543780684 -85.102658495048487,31.285340610105521,117.752688067033887 -85.088748463510257,31.310654396618414,117.827906675636768 -85.069163387907736,31.429557316250758,118.251717415638268 -85.047957921261641,31.519417655079149,118.561176275834441 -85.04240408659858,31.542952603023366,118.642103781923652 -85.058573377122698,31.620585403834959,118.962193869054317 -85.060634461843009,31.623678224462612,118.977131385356188 -85.066336626537591,31.626312037697474,118.995976202189922 -85.088130333168735,31.642925981786707,119.092837392352521 -85.126632873331275,31.696921830077795,119.357260042801499 -85.127633154756154,31.71871968420081,119.441337736323476 -85.123333124973513,31.724719408495869,119.457369229756296 -85.120033164851932,31.734618920847939,119.489705587737262 -85.125604370815651,31.76503427323204,119.613374195992947 -85.126333720593379,31.769016073519154,119.629556957632303 -85.131834911393227,31.7742157549512,119.657744318246841 -85.139772566667602,31.78237727570092,119.700900627300143 -85.142435289564602,31.785115095295183,119.715376089327037 -85.142935976053494,31.841810139812665,119.930179899558425 -85.134036344509639,31.890206700984365,120.098831932060421 -85.107735047908861,31.917104532575348,120.159398123621941 -85.083234824614493,31.946602214662711,120.232507991604507 -85.073434834654265,31.966701257390486,120.292958959937096 -85.063350873383584,31.993798940416529,120.379246417433023 -85.051317026594148,32.026136370057259,120.482139483094215 -85.057134630575845,32.064993308068303,120.636968951672316 -85.048971389947724,32.143967297076884,120.920326706953347 -84.997034681649296,32.186784541191159,121.000492545776069 -84.96593306915436,32.196884292176293,120.990382391959429 -84.924742961157079,32.233470099576024,121.063802387565374 -84.922754419311531,32.235236358856966,121.067346243187785 -84.910156860853817,32.265469430609429,121.160921886563301 -84.917715809746227,32.283105251142167,121.238367282785475 -84.939785731968428,32.302635075170876,121.345134529285133 -85.002981485734679,32.323940425436852,121.521709728986025 -85.008210686642059,32.330287053208977,121.553401824086905 -85.009203811389241,32.338601617040887,121.585904969833791 -84.988493864308666,32.383123511612688,121.719823762774467 -84.988385773613487,32.383545306094092,121.721227164380252 -84.980539055082446,32.414164988255678,121.823063601739705 -84.984939567761757,32.447562236628471,121.953937981277704 -84.99934020526868,32.471759869505306,122.065903758630157 -85.001888936605198,32.508463724434755,122.205996492877603 -85.002139537463876,32.512072585016725,122.21976360771805 -85.002161770790948,32.512392763394509,122.220984964631498 -85.002433807902023,32.514888633218277,122.23065690509975 -85.008210078679795,32.525783024587916,122.279909743927419 -85.023619678247826,32.544836913491615,122.374166326597333 -85.045717406023712,32.561411870300297,122.469475116580725 -85.070695299196942,32.585841400075573,122.598245889879763 -85.081047778700167,32.60479933936174,122.684263123199344 -85.08140079556928,32.605487301076359,122.687349060550332 -85.083567036604521,32.608931882715069,122.703411728143692 -85.105903858429059,32.644450093461742,122.868965171277523 -85.115851628846784,32.687539805882068,123.043288624845445 -85.138252012270598,32.747070149500743,123.297095046378672 -85.137892329415649,32.74841419155856,123.301492363214493 -85.13315596332032,32.766112770535855,123.359382444061339 -85.124536913158437,32.774149314709121,123.375734834000468 -85.185249583657779,32.872420774735765,123.830031792633235 -85.222989814362663,33.057424056482482,124.565056784078479 -85.224382936788317,33.064465687724244,124.592897221446037 -85.233500731404391,33.109960305527316,124.772825290448964 -85.237631757121903,33.131443731862724,124.857449293136597 -85.295030464350205,33.429945958735217,126.028365192003548 -85.305568262268181,33.484747796871886,126.242343079298735 -85.31512909996836,33.531668360823843,126.426127060316503 -85.315221107510183,33.532079339422019,126.427748463116586 -85.316124202959003,33.537759047031976,126.449591629207134 -85.323627750753744,33.576025875452288,126.598840679973364 -85.339106744182033,33.654966119484406,126.906253882683814 -85.361625328360049,33.769807054195873,127.352342034690082 -85.362978439687993,33.775799743657785,127.375854688696563 -85.387829635403492,33.903539401952621,127.870097383856773 -85.399974844394649,33.965967965328517,128.111041562631726 -85.422870581501513,34.082653527636886,128.560633001849055 -85.456200037746072,34.252513305983364,129.21265300642699 -85.456514074561383,34.254678196626458,129.220776153728366 -85.459214313663523,34.267559538298244,129.270363318733871 -85.459836378689459,34.271260350630094,129.284373182803392 -85.463447473832616,34.288187842520678,129.349599636159837 -85.503463210766753,34.47576691854308,130.070464601740241 -85.503601221928747,34.476339889235582,130.072685036808252 -85.509531730083225,34.50302352945112,130.175302304327488 -85.513256053355946,34.520062662168293,130.240697245113552 -85.51484727141812,34.525943761838846,130.263725189492106 -85.514857173088032,34.525980358147741,130.263868475332856 -85.515078192432298,34.527002306170978,130.267785531468689 -85.528276122213157,34.590491071808415,130.51012078858912 -85.535573224362864,34.625593845991943,130.643934214487672 -85.542414661877643,34.658504638514145,130.769279845990241 -85.542417663083185,34.658586634495542,130.769570738077164 -85.553605643482598,34.709939031422735,130.965713922865689 -85.553633646693868,34.710122022264549,130.966394434683025 -85.584299502385676,34.862164356749624,131.54186222795397 -85.596318685599286,34.925961156561193,131.781362122856081 -85.596346688518963,34.92612114856211,131.781959011219442 -85.606321776976955,34.986465139358486,132.006020769476891 -85.475625152043719,34.985760525096929,131.806457307189703 -85.365069916648764,34.985164494829895,131.638067132793367 -85.309406579816113,34.986164973959653,131.557937894947827 -85.30660651323366,34.986264995651425,131.55408198852092 -85.302637416867043,34.986265033226942,131.548125392757356 -85.295649249645535,34.986441090896619,131.538249173201621 -85.278704842669597,34.986765235642096,131.513952466659248 -85.277004801377714,34.986765251727526,131.511402598582208 -85.266203540401392,34.986865349095915,131.495550733990967 -85.256103296415915,34.986965439811662,131.480753554031253 -85.236702829174988,34.98726560880376,131.45271459966898 -85.231501702765769,34.987265657970774,131.44492076896131 -85.223001496154666,34.9872657383128,131.432185153476894 -85.2217014659483,34.98736574578291,131.430584283545613 -85.219001401707445,34.987465766483517,131.426886183209717 -85.217701370103967,34.987465778768865,131.424938755109906 -85.187051629306097,34.987786052902941,131.380151154473424 -85.181699500248257,34.987866099592594,131.372416984289885 -85.046326215640079,34.988675337176851,131.172883535735309 -85.046195212113886,34.98865133956523,131.172604728490114 -84.981001633533651,34.989439915082883,131.078106949105859 -84.978114937860482,34.989461736468336,131.073880404233932 -84.956764044740652,34.989623134125573,131.04262787848711 -84.945560771812865,34.989657237766878,131.026059216819704 -84.940446647716897,34.989709283314809,131.018623873591423 -84.86245274131079,34.989585021450367,130.902145381085575 -84.859170660490435,34.989540054395583,130.89711002074182 -84.832937022910755,34.98979828795477,130.859020544216037 -84.825147828387145,34.989501375234113,130.846417425200343 -84.821615744885278,34.989707398432451,130.841886667534709 -84.818416664457345,34.989547436100096,130.836579274386168 -84.811879502710312,34.989409503983211,130.826391360722482 -84.811614431934018,34.989401680814169,130.825970534235239 + + + Hawaii + + + Hawaii + 0400000US15 + 15 + 6422.627999999999702 + + -155.779715464604152,20.247784799521682,241.392275206744671 -155.774215513309116,20.247450875640236,241.377016605809331 -155.748374632828671,20.234368256071477,241.259871958754957 -155.738485635459909,20.224817188034354,241.197079889476299 -155.73730354855212,20.214462117969752,241.153171247802675 -155.734185511426972,20.207437768354836,241.117501137778163 -155.655447891373854,20.169409810446364,240.767267215996981 -155.631863919314753,20.148967825101337,240.626397007144988 -155.626046964273115,20.147962963323618,240.607645033858716 -155.609279046378617,20.140039808307684,240.533649795688689 -155.602391003178724,20.128626880203701,240.47087683249265 -155.599515010889206,20.126593085078632,240.455501340329647 -155.59240505807378,20.12455132625319,240.4293401716277 -155.58316215494051,20.125671304459342,240.410310652107 -155.56985034448013,20.132598800998217,240.403994495980442 -155.560415442158785,20.13362378931367,240.384097058326006 -155.525143662042098,20.1220831110506,240.248676492832601 -155.51827768074503,20.117285594896945,240.212177254259586 -155.504043803040588,20.116210810034666,240.171737377531826 -155.469694029355054,20.106352974299792,240.045262767933309 -155.445440169854066,20.097375975354389,239.947914592921734 -155.406942370768462,20.080831767928192,239.784199066460133 -155.403883368683779,20.077601080500195,239.763559621758759 -155.389061426578195,20.0691799527415,239.692329146899283 -155.331693687465645,20.040580973600367,239.432381454855204 -155.296963875176061,20.026503514763473,239.287808900699019 -155.284112970218786,20.024034841677423,239.245235173031688 -155.271800013579679,20.01659160572639,239.184164615347981 -155.242417055145012,19.992242013761818,239.012037680484354 -155.205970195106488,19.971509159601496,238.836246240884066 -155.196077182128306,19.960440225133755,238.766725256107748 -155.181423232088122,19.95144514631443,238.69335004221648 -155.150699265311431,19.924947755735129,238.508809972554445 -155.145878287395988,19.922599004541407,238.487095429562032 -155.132719279448366,19.90887833269792,238.398481168784201 -155.126102251101088,19.899366232554645,238.343415330164135 -155.123234172999361,19.888178249988606,238.291162212379277 -155.109025175542143,19.874547578901435,238.200132995843887 -155.100200212569803,19.869892065867994,238.158897964283824 -155.096516246763798,19.869963090250113,238.149783249013126 -155.087825209733808,19.857481271114111,238.077400342561305 -155.085841175133453,19.851818790522568,238.049551932141185 -155.087158059529912,19.840667769954724,238.008026871830225 -155.090462918711836,19.828740801871454,237.968429580330849 -155.095897760283606,19.816995800043053,237.934979361481965 -155.093553637904535,19.80149619653179,237.86650899797678 -155.092699432317943,19.778457250705223,237.771370294503868 -155.095000369423502,19.77392163466666,237.758934154175222 -155.094870055665268,19.739843664394055,237.620910956524312 -155.088601022792062,19.730106581771867,237.565520906820893 -155.080909075908039,19.728286807174616,237.538512869738042 -155.065455241411712,19.731010692959181,237.510058134794235 -155.046865510819373,19.741916877623787,237.506681829690933 -155.007906858938213,19.741379248076651,237.404974116943777 -154.998761842854947,19.73067427494783,237.338298862800002 -154.988651749276556,19.710620140534395,237.231275696307421 -154.982585639740478,19.692784775605688,237.143507204949856 -154.986201436505155,19.674260392068188,237.077638430520892 -154.985261164523223,19.643749111948061,236.951390202157199 -154.975825172244697,19.635303940502613,236.892952886410058 -154.965416214892798,19.629708523715699,236.843593899160624 -154.951842326909457,19.628564737254575,236.804226816631854 -154.949357329040907,19.626353954257429,236.78888385090977 -154.949201309318681,19.624051160249053,236.779123140498996 -154.952497203155417,19.61571887382626,236.753673085942864 -154.948589158125827,19.606961684549479,236.70805430598557 -154.935423209483957,19.599611446393528,236.644461116753519 -154.92968821717318,19.594808920555103,236.610239218920469 -154.925905194949536,19.588660498310315,236.575526523403823 -154.90502523714801,19.572731086260969,236.457203031517565 -154.876483367358986,19.558907549839859,236.327791426330805 -154.854101498643388,19.551283411527276,236.239389766938984 -154.838867536466864,19.540466498269126,236.156239915639162 -154.828215625304608,19.539738650439361,236.125988709740341 -154.815900666816475,19.532203421400638,236.063682584092021 -154.81104463989692,19.524491146856469,236.019745976664126 -154.81086261149656,19.521200440892017,236.005836923606694 -154.824451145376457,19.483407689820552,235.886134787462652 -154.840027845270811,19.465761131744966,235.853817004710436 -154.870022344476212,19.440247156208684,235.826152633875608 -154.889299065239726,19.428547039848873,235.827579782344401 -154.930253436293839,19.399770267001486,235.814453857019544 -154.945666154681476,19.383977547419118,235.789100861176848 -154.96609982415157,19.367772824029831,235.774878550320864 -154.982341530092867,19.351419148417378,235.749264052137733 -155.022017009838407,19.333446427152616,235.776973959058523 -155.063208505028314,19.318766400985865,235.822062713094056 -155.114750803819589,19.292745302720789,235.846898511052132 -155.135178488042641,19.278232431386204,235.839399072341621 -155.161113182993319,19.270508910384514,235.873961473815143 -155.173891072853991,19.271193745980373,235.909497456625104 -155.188904910105975,19.268289883601575,235.935959625989199 -155.197737786071542,19.263429245783385,235.938528592698276 -155.207369694796768,19.263041202560249,235.961582942865789 -155.245438440596246,19.273445966632899,236.101899463683367 -155.266096277771254,19.276345540941598,236.166703439317644 -155.298237912629816,19.268421988250275,236.216279967688024 -155.305284808196802,19.263968328795649,236.215950941666961 -155.314846620907957,19.252832245520917,236.194500674493611 -155.342744216112777,19.236174507464284,236.197153152897954 -155.350623998375795,19.219892897653878,236.150110590271652 -155.362106814187285,19.211067593228371,236.143041186966002 -155.380113590816421,19.204573028265806,236.162274970673025 -155.392176468633096,19.20330904407141,236.187906608916819 -155.418844104595195,19.189997018657309,236.201106563210487 -155.428567941033663,19.181685683016674,236.191620410420001 -155.433993811650026,19.172763436597823,236.16860562004149 -155.454990452120057,19.154093936328572,236.145068670623004 -155.46713729575805,19.149106284633131,236.155489560216665 -155.506754849438238,19.140050776378413,236.219306163489819 -155.516213714003925,19.134644183923189,236.2211046628654 -155.513613699678501,19.130317591581036,236.196540292352438 -155.513610665324961,19.126439938297896,236.180471958592534 -155.521125531379312,19.119169528175533,236.169566868804395 -155.527609461324772,19.118033577832172,236.181438250467181 -155.530375416425471,19.115854750518984,236.179481970146298 -155.546279068707065,19.093205648810496,236.126250992529094 -155.552601989990251,19.090926802083366,236.132965803146362 -155.559289869238313,19.08427734340431,236.12248179782182 -155.556798779640019,19.071525504004576,236.063194302842021 -155.556649644677861,19.056081886795436,235.998686562292278 -155.558843559368029,19.048715528341241,235.973695366643369 -155.567918351576026,19.034682711574288,235.938582371920347 -155.578071212373544,19.029564088697025,235.943265985697508 -155.583375117649581,19.02439250924769,235.935324802994728 -155.5975037806692,19.00098749157619,235.874078261666 -155.597992616418225,18.982810114870265,235.799636824987829 -155.60333748710363,18.973728885396898,235.775471788831055 -155.615437364498149,18.972555894292022,235.801531155593693 -155.626727185547225,18.96410856099736,235.795198854058981 -155.626471170239881,18.962091743624118,235.786136815324426 -155.639524889379317,18.943882270741277,235.743585113435984 -155.659956551603699,18.926995621288476,235.725372777320445 -155.673475708432875,18.919627311486831,235.729186475276947 -155.6832950916382,18.920854557951333,235.759422097355127 -155.689186757783688,18.925518339524441,235.793957391753793 -155.691641675806409,18.934355039260176,235.837113110348582 -155.69458756151846,18.94270082636686,235.879462258890271 -155.72751331264493,18.971593090552936,236.084061136469245 -155.765068070487473,18.98399168167677,236.231657852418721 -155.807578954554572,19.016118465695332,236.473886316642165 -155.855412591754941,19.025912207837219,236.636718301102519 -155.883019445469813,19.038792834072144,236.760677703656256 -155.885546444757125,19.041414579040914,236.778010769747198 -155.887747569214014,19.057907083767489,236.852066116407514 -155.905162625688774,19.08292170383432,237.000209155492485 -155.909824584948183,19.083282634326522,237.013597932644188 -155.922858815646663,19.123323943256398,237.21261222101748 -155.918762162077002,19.158100861234061,237.345912770368159 -155.904809842499105,19.219924437768917,237.565377710387111 -155.906380937618337,19.232278319350083,237.620266845449805 -155.904036211680165,19.260555807398188,237.730664444155991 -155.89690642354816,19.276766414185758,237.779147415421903 -155.892313683623485,19.301030280290092,237.867126435041428 -155.888828058373605,19.339222892052781,238.01494756154716 -155.89017314367436,19.350151903734172,238.063168853521347 -155.9002643173379,19.380102143768283,238.211519804783165 -155.915321383074115,19.4032229544651,238.34443184081465 -155.910559557169307,19.417569710344406,238.390943965874612 -155.923179573938626,19.432663258619858,238.48471868596971 -155.925741624038352,19.44090650090876,238.524891360662878 -155.926638879850145,19.47019087598407,238.646626928821206 -155.924081999160961,19.480719955735893,238.683032888919115 -155.925597010104724,19.483514693647358,238.698275144211948 -155.931995981384063,19.487029327496892,238.728875636123121 -155.93711393937528,19.487736222690916,238.74477721657604 -155.937875898510725,19.48401354920243,238.731551107950509 -155.940617869609497,19.483685556218223,238.737191473133862 -155.952962798646666,19.488757002546496,238.789257761090994 -155.954369804822193,19.490912798421682,238.801617152988911 -155.955135989372451,19.512108897862493,238.889848552644253 -155.961930256856505,19.548714571559696,239.055953873321414 -155.963737286630902,19.553881095213704,239.081535280682147 -155.966684285632937,19.556846806199605,239.101073416881263 -155.970823257467543,19.558064663616282,239.116543210111558 -155.972442518054805,19.588426937958086,239.243871794082224 -155.979679648128212,19.610255928974954,239.350751842372119 -155.999201778820691,19.64490967420231,239.540656011551619 -156.03045554829194,19.652190767840285,239.649505111388862 -156.034401545516488,19.655997395524196,239.674919445067644 -156.036467575675346,19.661451891446713,239.70221612136811 -156.034799681711206,19.671321023755219,239.737861062400043 -156.028900764543437,19.674244811049512,239.734690559096634 -156.030754808656923,19.680998192783459,239.766677556559443 -156.037552847749168,19.692341124139897,239.829739535227418 -156.049433814158988,19.70102625107441,239.894959249533713 -156.053125822134717,19.705736800144592,239.923337735235691 -156.05395895177881,19.720753452544066,239.986010025255382 -156.065837949528031,19.732851274782341,240.064922532066703 -156.058694125589227,19.74462028291158,240.094196332618594 -156.053789303626871,19.758919046955995,240.139313501305878 -156.051125546111791,19.782532961387769,240.227546764537692 -156.023207012161066,19.804279251339743,240.244094382971525 -156.007742301052531,19.819658007145858,240.266611541621387 -155.984296783056919,19.847726697632179,240.319744980894029 -155.978126886760009,19.852605313662266,240.323651093058288 -155.966293042148834,19.85725799677601,240.312272751703858 -155.950727206981611,19.859108960648626,240.280185746029019 -155.946773211275911,19.855518313514946,240.255752416327596 -155.941787248034984,19.854380456245863,240.238533167168498 -155.927319446430943,19.861002985679693,240.228360863402486 -155.928414540566649,19.872294970032979,240.276402303948998 -155.926966598538314,19.877073556093983,240.291874287649989 -155.917138803993566,19.889198556918451,240.31549555528909 -155.903464164970359,19.914151446834499,240.380661790259182 -155.895576342293623,19.925204527583549,240.404850052669644 -155.895951373974242,19.92899618666679,240.420962560921907 -155.894010440996681,19.93423073647255,240.436962470412254 -155.868396888036415,19.956238989231689,240.459890621714294 -155.858066122720629,19.970950765119337,240.492410783655941 -155.842186347939133,19.979017179201783,240.484300310723484 -155.840170353692997,19.977592322869587,240.473497603088617 -155.836790390746131,19.978143301985412,240.46711749304086 -155.833426484956732,19.984839733832995,240.485298589803278 -155.830443632243316,19.997605622234197,240.528644033707678 -155.826951949259922,20.028004945551942,240.640918112359941 -155.829661012363886,20.037484079295709,240.685532228089869 -155.851864056187338,20.064563483774862,240.849583042785525 -155.868410051066036,20.080707908650581,240.955706563778222 -155.885669151424054,20.108803264177052,241.111006860621274 -155.900628376250836,20.147777671383732,241.303418583236635 -155.907514871489298,20.207201328610811,241.555908620357513 -155.902932204662505,20.237828644269936,241.665204707533121 -155.892143491271014,20.257280006343148,241.714584026485682 -155.884111641249405,20.265065382253077,241.724925495684147 -155.875401768558902,20.2697830365926,241.721454313024879 -155.854774000047797,20.273586872912297,241.684191536158323 -155.812940289182961,20.262360223927054,241.533960829488933 -155.784723423541948,20.248436699309085,241.407540686428547 -155.779715464604152,20.247784799521682,241.392275206744671-160.557215775283623,21.670161063945056,258.630268635228276 -160.552485623906449,21.671974830994849,258.625362348742783 -160.544764737038008,21.669001608360368,258.595865108072758 -160.543849030745406,21.649956541154172,258.524636505171657 -160.550761154480597,21.647229217146883,258.531520294956863 -160.555567658704462,21.65142115158903,258.558377253822982 -160.557215775283623,21.670161063945056,258.630268635228276-160.126452815464233,21.960941542936823,258.631364420056343 -160.123714885475152,21.964732228657343,258.638277088291943 -160.114199324196818,21.997093423649364,258.730859079398215 -160.097903575057842,22.003337010763477,258.713580803945661 -160.073576873174005,22.005182061766067,258.66107623372227 -160.059996958097571,21.998228802712031,258.603242322802544 -160.053445903850275,21.985530994043909,258.541937784291804 -160.054182861184756,21.982171287383327,258.531715331599116 -160.05778979557337,21.979789468025309,258.531962987035513 -160.062002734940762,21.978579538706178,258.537873747758567 -160.06480271936789,21.980204368869309,258.550488787703216 -160.067264672885159,21.978412507008944,258.550063128583133 -160.079846310754874,21.957005306754162,258.50403883587569 -160.087239942952266,21.929149728831433,258.422222377732396 -160.081464841972803,21.912664252268563,258.349067617207766 -160.080517703566386,21.897937576123688,258.293914343230426 -160.100349360870837,21.886569416801017,258.301304094493389 -160.125734989176692,21.878647900812872,258.334555166773498 -160.149060680861623,21.874673050472332,258.376965031027794 -160.163071438149586,21.866605648131518,258.382023053243756 -160.176247106517167,21.848784125355071,258.349964375607669 -160.191232687150688,21.824313181768222,258.298314148560166 -160.206661173202946,21.79091903334427,258.21547185909003 -160.201877202409662,21.788345305585324,258.194561592303216 -160.207301069949807,21.781384880741729,258.182635870762169 -160.219493972080699,21.785621394723218,258.227554111741483 -160.236229896456734,21.797283204457145,258.310275312513113 -160.251059923937561,21.817008309518833,258.41737332008779 -160.246393318483172,21.85080332765191,258.527640415355563 -160.232478856033424,21.88812011342808,258.627899927087128 -160.230415908698745,21.890973876487912,258.633132305927575 -160.215281185210074,21.901049109284937,258.632528493180871 -160.206979365100068,21.909362439479107,258.642184065654874 -160.20416744729792,21.914277025071094,258.652976791374385 -160.191609705219918,21.925446137825439,258.662513665854931 -160.168923060537452,21.934716509900209,258.640629730187356 -160.138502570652491,21.950484370267816,258.623206381686032 -160.128754752596393,21.957359842429135,258.624138343147933 -160.126452815464233,21.960941542936823,258.631364420056343-159.433170365450877,22.221849489900009,257.873593447729945 -159.40878374805277,22.232388773247724,257.851501018740237 -159.38958295829832,22.225086838676965,257.778798194602132 -159.387440877509874,22.221843901772484,257.762074799276888 -159.369027030511575,22.216741520568064,257.699067858047783 -159.361306116040879,22.216666596686597,257.679969533346593 -159.358691175492197,22.219579361560719,257.683924094773829 -159.355259213065978,22.219504399100256,257.675286729820073 -159.341428272633351,22.210355335967513,257.609083095565438 -159.317077319413727,22.188655481981396,257.472603028640151 -159.310319071116197,22.157396319112049,257.344949012622237 -159.299272134189295,22.151589934069495,257.297312554903328 -159.29733910194949,22.146389413396438,257.274076993577182 -159.296734962372312,22.132233676414184,257.22217802144587 -159.298606770371975,22.115660132236492,257.167669371701777 -159.318914205162201,22.082791871596331,257.099966843612492 -159.323129977676899,22.065260392465674,257.047626403160393 -159.32623789425628,22.060519786176105,257.038271527737379 -159.334729758111592,22.056489068672999,257.044602088630199 -159.339458622470175,22.048425743449751,257.027315877377987 -159.342863403729439,22.030830277932274,256.972669137641788 -159.334685921125981,21.974862330065896,256.752058015204966 -159.334570832067612,21.966034116710638,256.720080179162323 -159.336175782706079,21.962957376236552,256.712953059002757 -159.352289497934208,21.952676147903599,256.715401356108487 -159.358074318262055,21.941406099668473,256.689034556038678 -159.383809877281578,21.92634021228449,256.697753373533487 -159.409744315476985,21.89964435953798,256.665049556642771 -159.42732198408558,21.886391384255951,256.660264831036329 -159.448058621156861,21.873512348003246,256.664519377984107 -159.473421451869513,21.884784118833814,256.767107846215367 -159.492373300325141,21.890761418219149,256.834930600598454 -159.519432018191196,21.89285899147405,256.908564786426723 -159.556873601377049,21.893217627738903,257.001269769854844 -159.57644943448139,21.898446988160678,257.067874354310334 -159.57924244274713,21.902347615715446,257.088726389221847 -159.585730355026413,21.900899687291581,257.09935075044632 -159.611699055749824,21.900217518028075,257.160266208462417 -159.639306935979278,21.919025596653075,257.295248261652887 -159.649589980913134,21.934828096792682,257.377098666504025 -159.673329958235655,21.958893741080598,257.521349851973355 -159.682950880305782,21.961909386890394,257.555617593228817 -159.706712646082167,21.965281875348367,257.625624752603471 -159.72159755277761,21.972643087047135,257.688280922360718 -159.759675222566813,21.982546866115118,257.816524122841656 -159.767192197558302,21.988445273560181,257.855951752513647 -159.789596268467506,22.020260238692575,258.024306657724082 -159.792389367345407,22.033025076247572,258.076713448390365 -159.788000750193817,22.065535218620543,258.182059944607317 -159.781553914423284,22.074411485350989,258.198018224909902 -159.749617562438942,22.102230292666238,258.219400210306048 -159.742681798171503,22.11750699442559,258.25689475890249 -159.73491616510367,22.144594652601743,258.33431563898921 -159.727502346179136,22.154008881073793,258.349721727892756 -159.701437776395579,22.167088950484768,258.332741549238563 -159.671300174564095,22.17261872846888,258.279019412584603 -159.610255247819623,22.209711977233216,258.261987616308033 -159.593057561769257,22.221289102521947,258.261141804978251 -159.585426722692489,22.2285125290446,258.268149916082621 -159.561105022818282,22.231017525013602,258.217797801829875 -159.555628074431439,22.230044660700592,258.201013958081603 -159.550056116982319,22.228095883964588,258.18054074794054 -159.542612588302035,22.218597748027211,258.128755612298846 -159.536056203489295,22.221236619343017,258.122137594036758 -159.525231306630047,22.219435876647406,258.089386033825576 -159.520872335392539,22.217480089616966,258.071834330447018 -159.519810301082231,22.213016495813914,258.053422614000738 -159.517036299397404,22.209842802771973,258.035410538315773 -159.509273365746878,22.207822052089906,258.009329495020211 -159.502517494285541,22.212898661669517,258.010870962403715 -159.50228364695451,22.227371377821871,258.061602158471942 -159.490020863931477,22.235002810115851,258.0587616590783 -159.481620953571678,22.234547926087828,258.036683112382889 -159.468470037057131,22.228362593847237,257.982720407657325 -159.457653182130741,22.23064448844432,257.964445020072162 -159.443272317611275,22.228154838959878,257.920570615679026 -159.433170365450877,22.221849489900009,257.873593447729945-157.016031152968594,21.187451193298479,248.125995684415102 -157.000586670742678,21.184169182850439,248.075048110447824 -156.992796781665078,21.187457959359428,248.067962205037475 -156.989246855493519,21.191297649946421,248.073543841950595 -156.98382209354844,21.209744061929353,248.129388402216136 -156.985943094815269,21.212008842568373,248.143205104395747 -156.985511120415765,21.214143657093999,248.150152946822345 -156.975481283889337,21.220448186087935,248.148792985826731 -156.970543318633219,21.218963360980126,248.130872067995369 -156.964326332299834,21.214076848612901,248.096963321790099 -156.95313324071725,21.193609761034779,247.991987048648298 -156.952287159404534,21.184584568593394,247.955894006416202 -156.947638139632062,21.17791220085758,247.91914264112711 -156.919727348740594,21.170229479857586,247.820412144064903 -156.904945450095937,21.166160616191018,247.768110898323357 -156.899653520194903,21.16789050911574,247.761396951973438 -156.897609576620226,21.17151120601908,247.769931725226343 -156.898016598869134,21.174157967827874,247.780924004502594 -156.869423808054449,21.166470899401418,247.680434559471905 -156.843072104819555,21.169876828089087,247.627351652830839 -156.823424367951532,21.176643400399772,247.603700362145901 -156.772975923321269,21.182003367292452,247.497657332569361 -156.743712175785475,21.178164963686243,247.409937362186611 -156.739822172645944,21.173971369247717,247.384386507794261 -156.738129088547993,21.16383228227895,247.34190430957824 -156.720867279978393,21.165863253503684,247.306345471180975 -156.714177322780529,21.16349952147122,247.280675143003464 -156.715639215698786,21.15419133324966,247.249206954613328 -156.727513900432996,21.134314990396529,247.203884666785598 -156.75041243747944,21.110556895780284,247.171431120485067 -156.777474981949382,21.091709330336492,247.167904572561383 -156.792294754808552,21.083644916104589,247.174493143334985 -156.795615663504464,21.077755409392793,247.160511612892151 -156.836830130355082,21.065320153113312,247.216616834513843 -156.86727377197289,21.059761381110668,247.27177582681179 -156.878615574866416,21.051261036559225,247.267959939315915 -156.893424452028341,21.053791683140112,247.314617642201483 -156.896648458736649,21.057731305513311,247.3376125972718 -156.95519699161548,21.069719732046703,247.529512466862798 -157.004427651386493,21.085238926090742,247.711359633132815 -157.027647474855485,21.090971215099493,247.791090371087193 -157.033522436365587,21.093049979423217,247.813635719008744 -157.039144446793472,21.099819329619034,247.853272794745862 -157.081173102653793,21.107789256023484,247.988422118127346 -157.096849949864776,21.108314072852771,248.029576373286545 -157.126476613822035,21.104554148598567,248.089396583847702 -157.14495936819057,21.098586517551535,248.113029567524791 -157.255536188855075,21.092555091165231,248.366366700269282 -157.299528804181307,21.098870147481989,248.500001188367605 -157.31481773588186,21.107707229252458,248.571495148353279 -157.300662144180222,21.134437977538131,248.63696726039052 -157.300946175760032,21.137921665598331,248.650802301242948 -157.295249334231528,21.148075813278176,248.674840418621898 -157.285821545295022,21.159702862805595,248.695099952630699 -157.277949679048589,21.165122450171729,248.695861721411347 -157.275979694981373,21.164709504027542,248.689393360167742 -157.261386963392454,21.176821555876437,248.698563094250858 -157.25618508074021,21.183322024150765,248.71003580186516 -157.252483213402627,21.19289720642757,248.73680280148983 -157.251736387765447,21.209682722963574,248.798014237545431 -157.258411398751434,21.217607961164781,248.84442572016269 -157.262933372647495,21.219603744477698,248.863196521997452 -157.264639387253567,21.222815444496998,248.879507955163717 -157.262166460248125,21.227626039173202,248.891396997496486 -157.258561512645059,21.229209930144062,248.888351215980947 -157.243010607943177,21.22291162516056,248.825927190482616 -157.227921753311875,21.222127826724098,248.785348374396563 -157.213558915561833,21.223790804823505,248.755763194523752 -157.20360199114188,21.221241118192012,248.721349529922009 -157.193915973381166,21.209588236946278,248.6534124603495 -157.187030022830726,21.207546478348835,248.62855804990977 -157.158580262112196,21.202651161529943,248.539158474653959 -157.14960235329454,21.202690236580644,248.516896206885576 -157.146104406657599,21.204500106596388,248.514968254603446 -157.129684561984647,21.203433344865765,248.469969506375492 -157.114915670232733,21.199320838892852,248.417635167017579 -157.099448832655156,21.199957917669735,248.381411927752197 -157.065742083583075,21.191023005070225,248.263624751009047 -157.054531193275722,21.19070113167751,248.234410697594285 -157.049235266323137,21.192686001955611,248.228650126606226 -157.041465346206195,21.192856054846672,248.209880290552974 -157.016031152968594,21.187451193298479,248.125995684415102-156.545645743152818,20.524812676081677,244.411830807104707 -156.551492291378622,20.522284316929387,244.416726117953658 -156.561470579369768,20.523902622324396,244.44813387747854 -156.587714224397445,20.513722304810639,244.474635865539312 -156.605320172908876,20.52638202847514,244.568133905529976 -156.6326188142597,20.516953635264692,244.600203370675445 -156.643822640288533,20.510296132541598,244.602525906637311 -156.648939625683539,20.514027756879308,244.629901358857751 -156.670284345844351,20.506749223322203,244.655319763347507 -156.684414226124119,20.508785921905794,244.698780880309641 -156.705148217643398,20.529245924160364,244.830394797027111 -156.703740281509965,20.534459472029969,244.847090388648212 -156.698137424956769,20.543653701303668,244.86867690179497 -156.681575735828062,20.559027474067364,244.886653601191938 -156.653043099082112,20.567579956195033,244.848051063716412 -156.616074669861263,20.589113355909074,244.838501085527241 -156.61221077195691,20.595773796494019,244.854575123637915 -156.57834822784568,20.608572947519995,244.818941975943744 -156.568617307189442,20.606898179586263,244.787978682667017 -156.555081341996527,20.59673319905928,244.71456400398165 -156.544510880886179,20.582120407851729,244.631351320073009 -156.544284841567986,20.575680424806027,244.605820703320205 -156.550386316801479,20.570596166503528,244.601465197280049 -156.557497843640789,20.544666009306383,244.518767273053527 -156.554495143453408,20.541390661768208,244.498494111001492 -156.541665517132969,20.536750656050408,244.44818127527833 -156.541119511177016,20.529654009248382,244.419243744574487 -156.545645743152818,20.524812676081677,244.411830807104707-156.613492962221898,21.026735519592425,246.510593179613352 -156.613545986421059,21.029238297284181,246.520231859758496 -156.607719113983165,21.03633571895735,246.532568559981883 -156.593737237006593,21.034844972899073,246.491838973946869 -156.581929227731052,21.02213820194855,246.413952805101871 -156.564254362086643,21.018133710778816,246.354390690103173 -156.551294378667308,21.006906818636804,246.279189650900662 -156.547772414691025,21.007049836617021,246.270895037800074 -156.529727223943297,20.96972830169857,246.083552504889667 -156.520188188635331,20.95663454535336,246.009707795456052 -156.513707218928943,20.953252901439665,245.980543069541454 -156.51187212948733,20.942331885600474,245.934288146905601 -156.509394129478437,20.93986012625945,245.918636335991323 -156.500961179614052,20.936551492800778,245.884834485128522 -156.497364150266606,20.929980106648532,245.850722691975534 -156.494744058107301,20.917987192756819,245.798354956321418 -156.482536002827118,20.900176877917538,245.699642259627581 -156.476277028258181,20.896524256063895,245.669954471290112 -156.424149705572432,20.913608193284645,245.604255695827305 -156.387527140838813,20.921539808035448,245.542509998194873 -156.375779334520445,20.929592196414955,245.543735447339714 -156.372211418989792,20.934644779674546,245.554059866815805 -156.354131681133538,20.943389161962546,245.541993077844381 -156.347137751002009,20.943571206615097,245.525105937384069 -156.34384775487257,20.940712488474574,245.505922518670559 -156.334299923703469,20.948424888212674,245.51135625038296 -156.326061040606334,20.952158629097696,245.504891036078334 -156.308681136188426,20.944714439608351,245.432780076749623 -156.287815387678251,20.949676181560161,245.399248855188489 -156.276599394656984,20.9393371947891,245.331567546352744 -156.264590545847625,20.942863986841235,245.314829899929464 -156.244038714953348,20.939814435610035,245.251485561020672 -156.23164277684964,20.933913065987689,245.197756270878017 -156.231572639018623,20.919842312714561,245.143804987892509 -156.228240659585708,20.918655446777578,245.130883294157684 -156.223545721070138,20.920287343040961,245.125308103859425 -156.219436743738555,20.918551532468204,245.108331857249141 -156.21782466551349,20.909014391126963,245.067803061567247 -156.174586787369236,20.878908432901401,244.843717651441693 -156.171941790103773,20.876587661401455,244.828166656196117 -156.168229737982671,20.867629487063393,244.784490656107664 -156.13415302446549,20.863353161304833,244.682275618426502 -156.130864920223729,20.849498416935099,244.620854178443551 -156.117218853504255,20.829288325338261,244.508898800238967 -156.101607015412895,20.83048935413737,244.474173138849437 -156.091775142929436,20.833859140815541,244.462338105775416 -156.061272226925496,20.812529294147151,244.303508245386183 -156.034771458575023,20.810235726658693,244.227880329824984 -156.005016619206742,20.797536108869124,244.104002689942718 -156.004431564879155,20.791409656509437,244.078951676376164 -155.989428582591614,20.778544925639057,243.991581185720861 -155.98607152620653,20.769489756680002,243.948232647031546 -155.988335417477856,20.760571527066698,243.919577991589904 -155.986897291373737,20.746240808971088,243.860698332078755 -155.988700064302975,20.724714700570832,243.782188829034567 -155.993017934778493,20.715652466336358,243.758095228113234 -156.00335368427136,20.700063758749874,243.723958739079535 -156.015633446444127,20.68768175048282,243.70708913821727 -156.021527401482672,20.688857595517664,243.726508996449411 -156.032185256673358,20.684452894245346,243.736374605447054 -156.041824069852538,20.674720674127332,243.723060912452638 -156.045268960982554,20.666904337527299,243.701515623368323 -156.054867766371871,20.656323193275036,243.684788612648845 -156.061235683277403,20.654047340379556,243.692048157565296 -156.082954497721346,20.656389946014638,243.755918517708778 -156.090847365097176,20.650522398619596,243.753120253793895 -156.122466917719834,20.635689442951684,243.775455911643803 -156.13137977239802,20.629527913147314,243.774072558619082 -156.144146611704258,20.625610151265668,243.791099821217358 -156.146069597334787,20.626037096888641,243.797604939900339 -156.149566612403163,20.631071620161116,243.825930397026241 -156.158253534326946,20.6316434948994,243.850056895986199 -156.171213387455907,20.629362586147582,243.873908776789904 -156.174874320672217,20.626104843859576,243.870521997101605 -156.186037267454225,20.631723249516529,243.920437222346663 -156.194419206474748,20.633772995717749,243.949512124061584 -156.211739007936103,20.630522135714532,243.980595047585666 -156.226818808409149,20.624944501522261,243.997013528831303 -156.237625636451696,20.617955029381061,243.997183132916689 -156.267401210252757,20.603635045806236,244.016753135249019 -156.285870981875121,20.598494344232993,244.043383235111833 -156.289516903559388,20.594036708924154,244.035289890132844 -156.294933819777356,20.590789950945975,244.036353726871312 -156.304171705361455,20.588206101430327,244.04961814545095 -156.324423529025637,20.590279744034572,244.108702462166548 -156.353195237212873,20.588976613767983,244.176153624430299 -156.361113112176611,20.583983989650577,244.176743901334703 -156.372203973401071,20.580767180679729,244.192212842404842 -156.379111903035806,20.580434151239821,244.20832584798336 -156.416791610250613,20.588105147571813,244.332989165559411 -156.419001623692338,20.591733806214773,244.352621062658727 -156.41722468260312,20.596049437898277,244.364871199242771 -156.41927770731823,20.600687008242996,244.388011455535889 -156.424619688024137,20.604083660733366,244.41462348215282 -156.429186612598414,20.600877906550519,244.413705468177795 -156.433350564969544,20.600147935816619,244.421363359317183 -156.439863532260915,20.603341596318291,244.450136051513255 -156.445720538825242,20.609944959416801,244.490458553656936 -156.444362609003747,20.615845446702281,244.509885436855257 -156.452129807197196,20.644212859708539,244.639189600944519 -156.447372921855305,20.651270273481416,244.654498388059437 -156.445152008792604,20.658017693113862,244.674984839744866 -156.450135432142844,20.70673432353388,244.875569219700992 -156.452517610116729,20.727462462532461,244.961447547189891 -156.454374648501755,20.733279930055541,244.988526076078415 -156.459917646725557,20.738668403967942,245.02321888320148 -156.463721777549353,20.755942837655677,245.099269642494619 -156.463537960590855,20.774560186664939,245.170400059781969 -156.465523029804331,20.78365536230368,245.210345680825412 -156.475042025323432,20.792743473639486,245.269192781299353 -156.490975943370643,20.800325663282035,245.338367343880236 -156.50316783955131,20.801919416664397,245.375134005211294 -156.507505792480146,20.801449420961863,245.384234220720828 -156.517473643835189,20.79622079909732,245.389217422343791 -156.52669442275635,20.78280891020988,245.360888533294201 -156.539231276325239,20.780396016410531,245.383131659589708 -156.633272769331256,20.82322340309566,245.783733531832695 -156.680112788882923,20.872519621898487,246.090033289976418 -156.690447864229014,20.890649923071766,246.185259660705924 -156.689282895788722,20.892696751459461,246.190155670046806 -156.689611045442405,20.908300363639395,246.250562611036003 -156.692813073741831,20.914414793239533,246.281932646408677 -156.698897052106389,20.918342391971652,246.31218169350177 -156.701369069453904,20.922602992430608,246.334636777639389 -156.695589441614402,20.95467919618785,246.442411780357361 -156.682384843239902,20.982230866648727,246.51418489497155 -156.66699425936028,21.009020624521554,246.57746063824743 -156.653899407844108,21.01096056641585,246.551996078342199 -156.647446525051947,21.016382141858625,246.55641532689333 -156.644072612839011,21.021901681865714,246.568923378363252 -156.645647620746871,21.024277457528569,246.581897041760385 -156.644289686199329,21.029548002100498,246.598507889546454 -156.621061917452778,21.029758185743542,246.541056366637349 -156.613492962221898,21.026735519592425,246.510593179613352-157.011477070049864,20.93172749815232,247.1464555375278 -156.991289295674704,20.93409746215444,247.104946522042155 -156.973080420548285,20.92822514142464,247.036995800212026 -156.939005751883229,20.927245523182535,246.947940157726407 -156.919926915821009,20.924517930528282,246.889764349907637 -156.898646058243827,20.91736774976297,246.809205032885075 -156.838524150436825,20.865552872313287,246.460748537443578 -156.826714142475907,20.852710115251309,246.382036478258669 -156.811053057224314,20.828017444322661,246.248269827105105 -156.809946013250681,20.822377954991268,246.223897006362677 -156.810939894009351,20.811151944046394,246.183384345844388 -156.818903673143183,20.796590169698899,246.147545629180968 -156.839797173579797,20.766561659520818,246.084751566872001 -156.847889050643374,20.762187978890125,246.088259288109839 -156.852956998950532,20.762055947095714,246.100465654395521 -156.871228765009107,20.75668826749985,246.125687741674483 -156.891770464903715,20.746842966800791,246.139396483078599 -156.910556226042303,20.741521278993559,246.166066393256187 -156.950483822300868,20.740984984233595,246.264126947149634 -156.969364595646766,20.737068170851341,246.296415565535426 -156.98622163631444,20.758663104741824,246.421593128703535 -156.99547583476101,20.788654357030602,246.559809084050357 -156.990408165737193,20.817476836901147,246.657508208416402 -156.993309244791647,20.828582824238389,246.707276296801865 -157.007718324495926,20.851580655058587,246.831304788589478 -157.012386325211253,20.856453181572753,246.861613878048956 -157.056027109090394,20.879193783267027,247.057710295543075 -157.061138130127347,20.886608079916368,247.098792057484388 -157.06260317401501,20.892608533747705,247.125345943495631 -157.063986294486398,20.906357299430084,247.181224738247693 -157.060605416700668,20.915378526643163,247.207140158861876 -157.037264784997348,20.929048513267183,247.200796330347657 -157.027101911023721,20.931498383403298,247.184690319001675 -157.011477070049864,20.93172749815232,247.1464555375278-158.045954468867876,21.307938931074741,251.140441146679223 -158.089768620031322,21.30072830978823,251.222161293029785 -158.10476845294636,21.299828259025301,251.255975961685181 -158.114168393523158,21.303827820929996,251.294168378226459 -158.122568453949299,21.318826412366221,251.370836050249636 -158.123968493861668,21.324325910582157,251.394775147549808 -158.113417647217801,21.328547626953895,251.384350979700685 -158.11566466828944,21.33304820673246,251.406663367524743 -158.120895647619847,21.336518852111766,251.432531777769327 -158.126927540849209,21.332189184788479,251.431365123949945 -158.1347087468815,21.361129540986283,251.558233516290784 -158.141768817775812,21.375721180704346,251.629908821545541 -158.151187832026096,21.387128083221491,251.695566241629422 -158.163211815403514,21.398200992655124,251.766405142843723 -158.180668710721022,21.406218126368522,251.839334015734494 -158.182742741969065,21.411543634348615,251.86420477181673 -158.182468857235847,21.422784636629959,251.905174360610545 -158.184116931841999,21.43198880334311,251.943336814641953 -158.193821008859942,21.449954120078647,252.033829210326076 -158.206851988450012,21.461705960355431,252.109519424848258 -158.220914939368868,21.47169194862304,252.181205148808658 -158.234468974216099,21.489510244739652,252.280526700429618 -158.232640357809629,21.525764037048724,252.409730988554657 -158.233219443968011,21.534941216050317,252.444977298378944 -158.235783487400369,21.541963569176442,252.477179450914264 -158.252140487915966,21.559276885951729,252.581329670734704 -158.280979366757748,21.57769599434079,252.720310141332448 -158.279148416445963,21.580690744302611,252.726795035414398 -158.25589470314145,21.584585603348049,252.683669881895185 -158.192174412252228,21.587793880865256,252.538019221276045 -158.171470595487733,21.584202382798424,252.473645532503724 -158.127081110257251,21.588641380623123,252.38022773899138 -158.108191409376957,21.598478673913654,252.369681272655725 -158.108160474872619,21.604925101728234,252.393292786553502 -158.110971472215454,21.60760083926246,252.410073145292699 -158.10965650418666,21.609387692224306,252.413385735824704 -158.081367011684534,21.630000112548682,252.419121962971985 -158.068272307978361,21.645597844066231,252.443971841596067 -158.068183396522528,21.654237078120815,252.475432302802801 -158.065372487664575,21.660296565301781,252.49069541040808 -158.03867303233551,21.686194504412974,252.519555991515517 -158.019600392563831,21.701848285337427,252.529695139266551 -157.993773746436403,21.709892801511366,252.495266095735133 -157.988503847659786,21.714386449913832,252.498671107925475 -157.970102043386703,21.714596594959296,252.453932494856417 -157.948648033381232,21.691462836920902,252.316200279630721 -157.940473910113951,21.670896733302978,252.220626077614725 -157.931573863365429,21.657098036094411,252.14800373557955 -157.926064880388367,21.653081441225261,252.119634628295898 -157.924273746126431,21.637999794825145,252.059848313219845 -157.925273666679033,21.631200389107509,252.037355304695666 -157.912270619432888,21.613085111413636,251.93860297370702 -157.902047672912602,21.607787671952824,251.893814389593899 -157.878823606386732,21.577182592981575,251.72367343865335 -157.880074440735427,21.562087921387715,251.67116341739893 -157.87400147788307,21.55947520694264,251.646488909609616 -157.86837359870259,21.565606712596377,251.65514263138175 -157.857613680512856,21.562568077387091,251.617285791784525 -157.85404368603875,21.559421388177853,251.596841837279499 -157.83841857099938,21.531854972592573,251.456436297856271 -157.838845386483683,21.513996553889733,251.391548889689147 -157.851052233923298,21.511509666923459,251.412619843147695 -157.854097679233149,21.501883234921749,251.384597039781511 -157.846962845484711,21.468662507206126,251.244027875363827 -157.842462819488674,21.461399191839636,251.205977263860404 -157.826362946294267,21.457295697995168,251.150853521190584 -157.817772983882236,21.452117233475221,251.110364494845271 -157.815372909524427,21.442218133694109,251.067725085653365 -157.807372890581803,21.4320191098594,251.010063446126878 -157.787985947486703,21.417553565092241,250.908292417414486 -157.781319492569878,21.419229659360077,250.897970669902861 -157.775928616113504,21.423272564484524,250.899596735835075 -157.773682498382612,21.43315516023441,250.930687224492431 -157.776378182406233,21.455615527269416,251.020640798844397 -157.77368276453663,21.459658417554131,251.028932205401361 -157.766045675494126,21.463252153668336,251.023297198116779 -157.755713074377155,21.463252244696427,250.997661169618368 -157.739091067699519,21.461006350268342,250.948095614090562 -157.733250886071943,21.457861947974347,250.921951638534665 -157.732801522878134,21.446631756301311,250.87921092659235 -157.737293893528687,21.440342800629047,250.867040894925594 -157.742235415991132,21.425968108027181,250.825979622080922 -157.742684571721298,21.416534751839489,250.792080579325557 -157.740073332281241,21.406221992634915,250.747302977368236 -157.731664689208344,21.40379324500817,250.717406317591667 -157.729694721148547,21.404026251032722,250.713381161913276 -157.727894217915377,21.404767595732526,250.711665065959096 -157.725797156872261,21.405233591998325,250.708189756609499 -157.725267595038929,21.405212415898113,250.706796337850392 -157.724759215606042,21.405148877691921,250.705298139713705 -157.724208470096357,21.405042978759102,250.70353738963604 -157.724017827095764,21.404958257005465,250.702749345451593 -157.72331879089424,21.403517967725737,250.695663204416633 -157.722556200059728,21.401463435272941,250.686136720702052 -157.720373454728048,21.398022893895902,250.667933020740747 -157.710373430338137,21.38522411837971,250.595525491982698 -157.710173392377186,21.381224475352443,250.58015497494489 -157.714073247862842,21.370825364741339,250.551155686378479 -157.712073164628833,21.360426306000395,250.507485724054277 -157.710273132331963,21.355326774788058,250.484028815291822 -157.698573083864943,21.33832838746077,250.391644264571369 -157.69527308313377,21.334828727299861,250.370402622967958 -157.663373215988997,21.315030765705156,250.217302940785885 -157.653273328476303,21.315830783097198,250.195185578428209 -157.654102158319944,21.310639766882204,250.17787428945303 -157.655173190175077,21.303931823614402,250.155497629195452 -157.696072486928614,21.275833962804573,250.152199681848288 -157.695872415405546,21.268434622268774,250.124043399468064 -157.701572331485721,21.265934794681094,250.128864239901304 -157.711172213090776,21.264034879709421,250.145620129071176 -157.715372186440845,21.265734691903976,250.162413943558931 -157.715672210170681,21.268434449274963,250.173252809792757 -157.712872293894151,21.273933984853855,250.186851156875491 -157.713672379108658,21.283333142365173,250.2239606147632 -157.715772388179886,21.2864328484815,250.240758091211319 -157.722772339456753,21.288832573967461,250.267114667221904 -157.758671878187442,21.2799330512733,250.323065765202045 -157.766471806083047,21.280832903104617,250.345803624950349 -157.779671615158179,21.275433267874156,250.358421016484499 -157.79457132999471,21.262334302597431,250.346479586325586 -157.811071131441764,21.259634398695006,250.377369268797338 -157.822571040471303,21.262534040416423,250.416768512688577 -157.825571048944511,21.2665336584869,250.439165933057666 -157.826771103998396,21.273333043265854,250.467549934983253 -157.833371115720411,21.281432265303074,250.514187665656209 -157.847171076236322,21.291931211022302,250.587642714381218 -157.891470777868193,21.308429356563021,250.759136525914073 -157.895988554957114,21.321560320804569,250.819290170446038 -157.900440299158248,21.329318293252872,250.859237326309085 -157.906291077700075,21.331098769109502,250.88038385938853 -157.920409123813698,21.32054266111291,250.876084187999368 -157.919391549723514,21.31570981201736,250.855550817213953 -157.914939854995197,21.312911877798182,250.834078540094197 -157.912395995562292,21.30769749668125,250.808328906074166 -157.953732915285968,21.308460221270686,250.913717440329492 -157.952206688611028,21.314437718765806,250.932209807448089 -157.953351465185762,21.320669553239586,250.958268374204636 -157.969441175454904,21.32991276395536,251.032595458440483 -157.974804113624742,21.329352766868649,251.04380857758224 -157.990893850783095,21.319911466114981,251.048542775213718 -158.025969395940109,21.311227932286663,251.103155163116753 -158.045954468867876,21.307938931074741,251.140441146679223 + + + Illinois + + + Illinois + 0400000US17 + 17 + 55518.930000000000291 + + -89.367414076727414,42.501693752013658,160.883654395118356 -89.362943957755732,42.501431816020677,160.876394227147102 -89.292277141621582,42.500273712693264,160.769899853505194 -89.252139104756935,42.499415229192152,160.708917001262307 -89.24835201166583,42.499551269572621,160.703763377852738 -89.229658535484461,42.499468497807904,160.676251760683954 -89.227649482516867,42.499378525444946,160.673072095029056 -89.168105955152996,42.498678268639985,160.584301718510687 -89.166282910835676,42.49876928706599,160.58189541939646 -89.126487890924921,42.498379780293597,160.522837642580271 -89.121741771030614,42.498414835966827,160.516021811403334 -89.1183256823779,42.498332880147728,160.510820704512298 -89.10038821722604,42.497922111341062,160.483569242060184 -89.072516501822989,42.497631457094514,160.442200996913016 -89.044272784034447,42.497678794172337,160.401245274581015 -89.015178039748733,42.497521149136581,160.358508099801838 -89.015041036040543,42.497511151162534,160.358281353488564 -88.994350528135527,42.497450340069726,160.328044611960649 -88.994032499532437,42.497449405356896,160.327579943463206 -88.944636220616729,42.496539031970848,160.253325848840177 -88.941763145871704,42.496471068975197,160.24896743055433 -88.941760139650953,42.496471050188916,160.248963016085327 -88.777863554389427,42.495446835434677,160.0085807768628 -88.708746161115499,42.495014908507265,159.907423693686724 -88.70874386911305,42.495014923351128,159.907420423813164 -88.508273049661071,42.496313244101309,159.621819149702787 -88.471956800374443,42.496102246248924,159.56896143220365 -88.462756874668685,42.49604879452108,159.555576721206307 -88.418754743500074,42.496049316396167,159.492301684804261 -88.306047845816863,42.496205346858709,159.330899260006845 -88.273045996346355,42.496251033796021,159.283704463392496 -88.218253607197227,42.497356639075228,159.208275803364813 -88.201525177557556,42.497449833066291,159.184584583155811 -88.200874473020917,42.497446825176056,159.183644754812121 -88.051131276771045,42.496754632758673,158.967672460712492 -87.991527717030309,42.495955364544947,158.88041795603931 -87.972626216822306,42.495455605824468,158.852081632241607 -87.901587354479702,42.494457478352892,158.748119746334851 -87.84493786971764,42.493745170119709,158.665546072646976 -87.817215141834026,42.493358509830706,158.62506197579205 -87.801903744261182,42.49335868923945,158.603307424113154 -87.801819742079729,42.493358690223587,158.603188090026379 -87.801659816635691,42.492016403130386,158.599216740578413 -87.800313570365702,42.480717081124247,158.565780473873019 -87.799572035121699,42.474493222747604,158.547358934767544 -87.79941324778811,42.473160487836076,158.543413878418505 -87.802093790606108,42.44730743344239,158.47504763957113 -87.804711294833083,42.422062375119147,158.408245038241148 -87.804870694355017,42.419200240449328,158.40047322306782 -87.805091544786166,42.415234710163006,158.38970429636538 -87.806710582239901,42.38616372360525,158.310724067501724 -87.807470416090709,42.384800119762687,158.30799128767103 -87.816910448989134,42.367858962408228,158.274033550173044 -87.817910445057194,42.366064361635885,158.270435688085854 -87.822198491598002,42.363027427750694,158.268043563701212 -87.822211346105959,42.362987743311763,158.267950814217329 -87.828057038171309,42.344940922467707,158.225763559341431 -87.831985697518903,42.332812365866275,158.197400884702802 -87.832326089751717,42.331761507039467,158.194943057373166 -87.832560871594694,42.329974245153387,158.190272262319922 -87.836108576881117,42.302967567183856,158.11966734752059 -87.834807501210946,42.296337435707436,158.099228944629431 -87.834077788426981,42.292618903473475,158.087764419615269 -87.833869059395113,42.291555244374649,158.084484868682921 -87.832625522318523,42.285218322587149,158.064944492653012 -87.829907747233165,42.271368852945642,158.022227169945836 -87.829373146107585,42.270119598245998,158.0179603099823 -87.829058393637979,42.269384085386307,158.015448081307113 -87.828282805016471,42.267571691643973,158.009257439523935 -87.826651599189816,42.263759893525759,157.996236431412399 -87.813799020170691,42.233726014737378,157.893596542999148 -87.813759587129326,42.233633867689221,157.893281512893736 -87.813652637396501,42.233383947778165,157.892427079379559 -87.813604520351291,42.233271507968119,157.892042667604983 -87.809732710365196,42.225720083204045,157.86530941631645 -87.805209742539745,42.216898665887562,157.834073691628873 -87.801402702795272,42.209473566257479,157.807776748202741 -87.799926073332557,42.207456262318011,157.800000156275928 -87.799636740005539,42.207060988299894,157.798476351425052 -87.79883358356588,42.205963752538693,157.794246369972825 -87.798780905189162,42.205891785738643,157.793968923389912 -87.79827304298847,42.205197967521855,157.791294108144939 -87.798115666518441,42.204982966953366,157.790465223602951 -87.78964876728287,42.193415874626787,157.745864816941321 -87.788577028845538,42.191951714349919,157.740218424238265 -87.776629970240265,42.175630186477783,157.67726260330528 -87.760661043574942,42.153814165078977,157.593074803240597 -87.757724388751853,42.149802240761375,157.57758803665638 -87.757160020248548,42.149031226167054,157.574611607007682 -87.756101357784885,42.147584929631883,157.569028166122735 -87.755778141981224,42.147143366892543,157.567323473282158 -87.755691999850015,42.14702568342846,157.566869142465293 -87.751730205035713,42.141613259421412,157.545972435735166 -87.749819798333888,42.139003348606153,157.535894925706089 -87.747754790348594,42.13618222853647,157.525001171045005 -87.742995515208975,42.129680323088174,157.499891261570156 -87.742651165824697,42.129265143933026,157.498230010271072 -87.74212082713008,42.128625719030964,157.495671456679702 -87.742051410474986,42.128542023953919,157.495336559601128 -87.741068263133926,42.127356651475772,157.490593374706805 -87.740862662730478,42.127108760798897,157.489601440727711 -87.735262460614834,42.120356644199177,157.4625806780532 -87.731795632149414,42.116176718252653,157.445851241238415 -87.730720021871306,42.114879863976711,157.440660477615893 -87.730710536301743,42.114868427305169,157.440614700317383 -87.729667984195146,42.113611430987746,157.435583316721022 -87.729524257605974,42.113438141046373,157.434889678843319 -87.728581228555242,42.112301138840095,157.430338456295431 -87.728338177646037,42.112008094400018,157.429165426641703 -87.726529136726214,42.109826948953291,157.420434282161295 -87.725993646194738,42.109181312515219,157.41784970741719 -87.725935499295346,42.109128696355867,157.417618372477591 -87.725056071257526,42.108332916593497,157.414119552820921 -87.72363898897575,42.107050622473253,157.408481544815004 -87.723552836560629,42.106972664589776,157.40813877619803 -87.722832128227594,42.106320507640007,157.405271299183369 -87.721739917234359,42.105332184128883,157.400925658643246 -87.721635569276074,42.105237761401781,157.400510479696095 -87.719397015404112,42.103212131337308,157.391603527590632 -87.718836357468774,42.102704801321849,157.389372676610947 -87.718608166195338,42.102498314844048,157.388464699499309 -87.718501491789553,42.10240178695323,157.388040237128735 -87.713537939074399,42.097910350872198,157.368289173580706 -87.712292032548746,42.096782950831638,157.363331152126193 -87.707746403648812,42.093668330779593,157.3480582870543 -87.705925840701212,42.092420899017242,157.341941155493259 -87.705213657969821,42.091932918438943,157.339548171497881 -87.70370186831687,42.090897055089478,157.334468387067318 -87.683689883551537,42.077185040581568,157.267217648215592 -87.683509454891336,42.076897044547856,157.266147267073393 -87.682080289387514,42.074615843786113,157.257668578065932 -87.681174017698197,42.073169273975317,157.252291770651937 -87.672792572213325,42.059791005348927,157.202556488104165 -87.671842586418848,42.054437539465624,157.186079989187419 -87.672028808597275,42.05376247404125,157.184438831172884 -87.672449221451316,42.052238454814464,157.18073367420584 -87.672513653971833,42.052004883460356,157.180165805853903 -87.67322411300826,42.049429431236426,157.173904077149928 -87.672424377253293,42.044259190738416,157.158155400305986 -87.670311565838333,42.030599999300932,157.11653877235949 -87.632279588836482,41.934594166194863,156.790479583665729 -87.632196535643331,41.934246409763155,156.78937519248575 -87.628364417906667,41.918200745774143,156.738406992517412 -87.626088668057676,41.908671832089816,156.708128661848605 -87.625459368963888,41.906036860199215,156.699754636734724 -87.625377812396238,41.905695370331358,156.698669329285622 -87.624269503991997,41.903483058684643,156.690809245221317 -87.621178086529781,41.902855895246141,156.684612307697535 -87.618758656853259,41.899495914838468,156.671621619723737 -87.615487944737225,41.894881547763305,156.65385364741087 -87.613616250668315,41.894798888052918,156.650944518856704 -87.612983748346906,41.893679966661239,156.646865200251341 -87.612983717173918,41.892171844483819,156.642584917135537 -87.614005383944999,41.890712359470236,156.639902521856129 -87.615513586676229,41.889885308026599,156.639710416086018 -87.614881026052174,41.885944738586382,156.627621297724545 -87.614978982701857,41.88587626219114,156.627566915936768 -87.617058846798045,41.884422337456954,156.626412290148437 -87.617862275169614,41.883860702500797,156.62596629653126 -87.617575881617526,41.87039783541654,156.587333088740706 -87.61077421722176,41.846698838088031,156.510287208482623 -87.601872608542379,41.828299658786648,156.445259462110698 -87.588445553587079,41.812888937102215,156.382230510935187 -87.588376538581244,41.812809726057381,156.381906482391059 -87.582270640181861,41.805801763259538,156.353236970491707 -87.582243118071247,41.80569231328866,156.352886189706624 -87.581872397772955,41.804218032247,156.348161086440086 -87.577669145426484,41.787502531442897,156.294574652798474 -87.561967330150324,41.767503494271295,156.215163501910865 -87.544165586351852,41.753605242820413,156.150101042352617 -87.532065194558925,41.749705534523486,156.121681557036936 -87.525460527982247,41.725461559830606,156.043100206181407 -87.525363205320957,41.709807174462505,155.998294839635491 -87.526263111997693,41.70410738760598,155.983314740471542 -87.526162884673411,41.693107820159767,155.951771008782089 -87.525959722987849,41.636410049064096,155.789480519481003 -87.526059674646334,41.633910146203078,155.782475234940648 -87.525959470513968,41.624010536651326,155.754019224084914 -87.525957267314951,41.564812867683578,155.584558092989028 -87.526983557926329,41.471764134411416,155.319134475663304 -87.526985406465684,41.471596537152728,155.31865581125021 -87.526937072184381,41.455101190486346,155.271203195676208 -87.528078976793225,41.299665348675141,154.825334253720939 -87.528078786619446,41.299539956945829,154.824972221627831 -87.527878675562107,41.167590287224428,154.443337810225785 -87.527875291371004,41.165358712454577,154.436871960759163 -87.52796821867706,41.161583862478928,154.426076022908092 -87.528027207418873,41.160941887504677,154.424302197061479 -87.52800109760922,41.155452107560585,154.408366749063134 -87.528004003554827,41.15071629714123,154.394654708914459 -87.528007813635057,41.14115268011075,154.366956018842757 -87.528018453099293,41.122980408146589,154.314309923909605 -87.52782553488295,41.026336291106247,154.033537234179676 -87.527651249050933,41.012082866608388,153.991855745203793 -87.527611788275763,41.011854805535009,153.991135665215552 -87.52761024332888,41.011845876611275,153.991107470355928 -87.52738730004539,40.913417847962855,153.704257995821536 -87.527739961521277,40.895713559383317,153.653151238337159 -87.527264682888401,40.882123114239128,153.612822614610195 -87.527415668791178,40.881208149537372,153.61037212703377 -87.527085163822662,40.855863178780396,153.535927599295974 -87.52742888065066,40.738460937699173,153.193151214160025 -87.527428931894192,40.738396019639659,153.192961173132062 -87.527587981847986,40.536928159408276,152.601598876528442 -87.52764797762481,40.536630170939212,152.600808878429234 -87.527671140315988,40.493094955041876,152.472584418021142 -87.527674081909637,40.492757679825736,152.471594480797648 -87.527796866454835,40.478679545090131,152.430265772156417 -87.527805608111791,40.478400589510635,152.429455889388919 -87.527843838846877,40.477180606082264,152.425913884304464 -87.528103586388198,40.463692156905694,152.386507291346788 -87.531344629578555,40.25220183806028,151.765554971061647 -87.531282615954581,40.25156686502423,151.76358038932085 -87.532117532692027,40.193345267193287,151.591931093484163 -87.532422128060688,40.171564167235047,151.527635567821562 -87.532726382018311,40.149658389629323,151.462931016460061 -87.532727719723724,40.149562077143145,151.462646448984742 -87.533047656839102,40.145808229476607,151.451946954242885 -87.532849439016402,40.13454069973767,151.418127325363457 -87.533594171930773,40.01312774681589,151.057282074354589 -87.533594170147708,40.013032750779807,151.056998420506716 -87.533572954681716,40.001578229074084,151.022759767249227 -87.533616913376122,39.999317322968849,151.016071147285402 -87.533827725270768,39.989003751270012,150.985569626092911 -87.533968545681262,39.979233157820303,150.956579619087279 -87.53407549813484,39.976552268637946,150.948724242858589 -87.534061424105985,39.97261943312148,150.936948340386152 -87.534510791617308,39.884673108765988,150.674412566237152 -87.534510639690083,39.88454611544433,150.674031838774681 -87.534424445830084,39.812496138842903,150.457816055975854 -87.534338313163445,39.805471435013999,150.436598602682352 -87.53434017060232,39.797792757778822,150.413542671129107 -87.53434790166412,39.783293367433153,150.370000124908984 -87.533982730366716,39.666423297373932,150.017779215238988 -87.533723377899562,39.647658093013149,149.960825223475695 -87.533644376368571,39.647682092869076,149.960781001485884 -87.533474880961919,39.60886372666922,149.843414265662432 -87.533285857328266,39.565572571753648,149.712378966622055 -87.533216522467356,39.547413342352719,149.6573830191046 -87.533242176429269,39.528498144465772,149.600213591940701 -87.532968594474923,39.49707848146177,149.504718363285065 -87.532903523029773,39.493260644368512,149.493062034249306 -87.5329392574412,39.478683263458521,149.448964844457805 -87.532939207664469,39.478673418513843,149.448934946209192 -87.532900115024731,39.470941593004625,149.425452912226319 -87.532884057037165,39.467788727241462,149.415875883772969 -87.532764748271575,39.451038441018461,149.36493182554841 -87.532630530728923,39.439296942153909,149.329132786020637 -87.532630511106134,39.438220987951709,149.325869881547987 -87.532919903130178,39.349456768783284,149.056790574453771 -87.538545119316993,39.353657527866986,149.077896695584059 -87.545287301848376,39.354475419133109,149.090376212261617 -87.58612703406223,39.338897637112922,149.103598986752331 -87.590359075672851,39.335399740199072,149.099246619269252 -87.605318078554959,39.315095444230387,149.059718406759202 -87.611324660098674,39.283802717286832,148.973435878753662 -87.606817165878311,39.26269367055373,148.902471099048853 -87.605349898303544,39.261030272879992,148.895224705338478 -87.594759619356438,39.24902438811219,148.842914503999054 -87.588780504092128,39.250854375077147,148.83960566483438 -87.606445797447492,39.187471900971161,148.672601555474102 -87.629999867822065,39.159002866969836,148.620752947404981 -87.643447194883137,39.15867273426872,148.63976997602731 -87.652992314159363,39.152177909272496,148.634156445041299 -87.660019224989995,39.137573460770732,148.600022803992033 -87.616152539598303,39.104233374843794,148.43275781814009 -87.573857678951285,39.058866790837229,148.230904102325439 -87.513453347748978,38.956002890119564,147.825345224700868 -87.520091956915522,38.924792168934204,147.73929482512176 -87.529175915094939,38.909796719970856,147.706715511158109 -87.529374249455145,38.909614851518583,147.706451793201268 -87.542070023803646,38.897973092568833,147.689570308662951 -87.55464974834571,38.864933389226358,147.606637989170849 -87.551780610419357,38.861149584538822,147.590701305307448 -87.538513177034474,38.855181987310623,147.552513180300593 -87.533328558975228,38.854093546551653,147.541421174071729 -87.529458919745636,38.853281167890387,147.533142737112939 -87.527157811627575,38.850385318520964,147.520785680040717 -87.496473892244751,38.784653506907595,147.272238570265472 -87.499777549356409,38.760577518935882,147.202813680283725 -87.520870982510303,38.69879498377275,147.043317444622517 -87.532493037706999,38.685633432707768,147.019971256144345 -87.541314169101341,38.680740551107021,147.018025589175522 -87.580660020909889,38.674072417531058,147.056290397420526 -87.594941283293409,38.668999484895913,147.061982303857803 -87.601443356504404,38.664059630502507,147.056434673257172 -87.621383443549732,38.641087419384981,147.015199998393655 -87.628608055381974,38.608836752614039,146.926117392256856 -87.652791965081605,38.569767203374916,146.841272491030395 -87.671334019043428,38.54683900900374,146.797984392382205 -87.670494937331654,38.543344171419548,146.785875221714377 -87.657406265361246,38.523271193728881,146.703872215934098 -87.74126346457443,38.417305059854293,146.500587492249906 -87.75129049756606,38.404634402854832,146.476255060173571 -87.864295124205071,38.281783616256675,146.263953641988337 -87.925222305899524,38.260020803243748,146.28832071274519 -87.952979460555753,38.241244676066948,146.271783569827676 -87.956608302204884,38.231620530865946,146.247222639620304 -87.962367588417891,38.216346178874161,146.208229841664433 -87.960326419800921,38.205325595072935,146.170676049776375 -87.952570466232174,38.194713257876096,146.125709057785571 -87.941957095581316,38.182876428393236,146.07256007194519 -87.930119260342011,38.178386679756301,146.040534938685596 -87.916928558451772,38.174937792356488,146.009714612737298 -87.912054342357351,38.169282096269718,145.984609812498093 -87.912296253889792,38.163810337042293,145.96784402243793 -87.929092306356026,38.143162075343838,145.928676525130868 -87.943438486395195,38.133376356860886,145.91981302946806 -87.97553509752683,38.123598447374398,145.937966962344944 -88.014381722448661,38.10514485213919,145.939240300096571 -88.043395442098543,38.047965092301204,145.804094505496323 -88.042795272933461,38.038965500881211,145.774929825216532 -88.013835537852145,37.978685508011843,145.541357858106494 -88.014711139463927,37.89557822402633,145.281008054502308 -88.01833314647395,37.890849397522537,145.271630195900798 -88.022377224429931,37.889684406529632,145.274132275022566 -88.056634106968843,37.892864896855642,145.336483458988369 -88.072710573605619,37.897439519194968,145.375466221012175 -88.050713179334608,37.846816029254015,145.182207080535591 -88.029048368671724,37.829928020484715,145.095779542811215 -88.029288880734072,37.800855326222369,145.004306927323341 -88.040258820077568,37.777086270382469,144.9459468415007 -88.046266666818198,37.764068802061395,144.913970396853983 -88.052227644015815,37.754232181882266,144.891975852660835 -88.060846682757486,37.744241540422749,144.873558672145009 -88.07379683727207,37.734919822692824,144.863889487460256 -88.123671639835933,37.711319355449561,144.865622460842133 -88.152905758642717,37.676733606346815,144.800937897525728 -88.159466738095034,37.666178013737358,144.777562568895519 -88.161446668297273,37.659228307045439,144.758575861342251 -88.158086168914778,37.634438465134373,144.674807094968855 -88.141230982610153,37.588090745212895,144.501790571026504 -88.134673353090022,37.575917571658572,144.453038581646979 -88.134650618914378,37.575875369355799,144.452869541011751 -88.134563604391488,37.575830906662645,144.452594530768692 -88.134492387097424,37.57579451603975,144.452369449660182 -88.122774231357766,37.569806771163449,144.415333453565836 -88.073497386213717,37.530469080995594,144.214514034800231 -88.064565952464918,37.517398769561254,144.159186405129731 -88.062565936994773,37.506976371498602,144.12292246799916 -88.062546727754452,37.506876269096658,144.122574119828641 -88.063816493181761,37.491029975867512,144.074041057378054 -88.084649731357146,37.47532846869855,144.056019055657089 -88.256451569745352,37.458392412598606,144.266639941371977 -88.282926134235979,37.454240319757467,144.294269723817706 -88.313844673100377,37.442235537458707,144.303773922845721 -88.331881915648836,37.430960859359359,144.295723881572485 -88.359696170967794,37.406505678846706,144.260790678672493 -88.410069715802223,37.426860212473791,144.403596684336662 -88.416157198187904,37.425105311138608,144.407430911436677 -88.440595297077152,37.418060288277147,144.422836000099778 -88.457262561750127,37.410126472585482,144.423387283459306 -88.471486695980445,37.397899879215807,144.406481936573982 -88.477854690544504,37.388520239857314,144.386466172523797 -88.51592299219223,37.292597224819573,144.139486014842987 -88.517200907302964,37.285692527804805,144.119411704130471 -88.510589384307707,37.263780603450328,144.039100418798625 -88.473012791068811,37.221807930556579,143.846408545970917 -88.460022371861101,37.215189372763923,143.805028969421983 -88.449022943763822,37.205180949566952,143.755880258977413 -88.425660540352794,37.154084547439517,143.555751397274435 -88.4458621304871,37.100259812314007,143.414334516972303 -88.460205061712699,37.075455804189019,143.356932933442295 -88.484113519280399,37.068773859088608,143.372676869854331 -88.491554525219229,37.068329004050021,143.382836683653295 -88.515614236005831,37.066890611956708,143.415699327364564 -88.532834677047589,37.068851338740977,143.44884292408824 -88.546662051559167,37.071662062233685,143.479434177279472 -88.561291497906183,37.077668629640819,143.521547552198172 -88.56541179798171,37.080098692815994,143.535780373029411 -88.577978056511625,37.087509998175193,143.579185499809682 -88.590467581283363,37.101312228587567,143.642983792349696 -88.627150779452379,37.121113925057919,143.763758790679276 -88.810473283045269,37.190885753332829,144.273659203201532 -88.918204417038424,37.225938985087453,144.554328182712197 -88.929291689843012,37.227929207769009,144.578055632300675 -88.943382087666791,37.230458506853189,144.608213295228779 -88.934655817677367,37.226652775722329,144.582388787530363 -88.934669481237421,37.226654771489734,144.582416572608054 -88.968102689573698,37.231538191750801,144.650418684817851 -88.984532057166334,37.230332070842579,144.672340433113277 -89.002240403111983,37.226048077912033,144.68645846657455 -89.042535991998761,37.204528636555899,144.681062244810164 -89.087799432609287,37.167250869823192,144.633201906457543 -89.169360819647963,37.075870218718357,144.469526859000325 -89.173154358905236,37.069836436457479,144.456199679523706 -89.176998795836425,37.063721699402386,144.442691780626774 -89.182642664862769,37.047958369279428,144.40112582128495 -89.183782540783028,37.038928775638972,144.374003906734288 -89.180248184976762,37.022582571630601,144.316049640998244 -89.174867899958471,37.01306407093162,144.277045175433159 -89.167719597669944,37.004992522132717,144.239879905246198 -89.133956453387441,36.983856865024038,144.118781170807779 -89.171280130967588,36.971955017929808,144.139514252543449 -89.186763547629994,36.975174702431922,144.174307432956994 -89.208286433204435,36.984093193876618,144.236931203864515 -89.227521027203167,36.986942330926091,144.276472875848413 -89.246755537938384,36.984805120454496,144.300032828934491 -89.262428140755645,36.98409261294028,144.32253818679601 -89.272401662793385,36.986941849199432,144.347452975809574 -89.279902982501156,36.990324999274449,144.370168270543218 -89.293405357369878,36.993843690764827,144.402814808301628 -89.3240091705906,37.010686614664117,144.505223893560469 -89.379555166597143,37.041256562441568,144.691046418622136 -89.385215413608847,37.048092184244197,144.721878323704004 -89.386712594373321,37.056780764995352,144.752035311423242 -89.415751449235614,37.126697211389299,145.02134455461055 -89.468914267078063,37.219842329051581,145.402270273305476 -89.492506464310864,37.250269743675446,145.536366691812873 -89.518317505216672,37.2835588529096,145.682964480482042 -89.51967866354282,37.290992495417299,145.708715184591711 -89.513127875613165,37.312462577213026,145.766471319831908 -89.490290724556445,37.33500478737627,145.801836183294654 -89.485883966281506,37.336469082335071,145.799511009827256 -89.475854467881334,37.339801723477329,145.794221461750567 -89.448840873719604,37.34211191063644,145.758856358937919 -89.437324671105529,37.346077853255565,145.753239405341446 -89.434120640472983,37.348692767769606,145.756469851359725 -89.429469686417079,37.35779439970738,145.777979091741145 -89.422339056405718,37.389303029070398,145.86655845772475 -89.427225509317438,37.409105066586257,145.936967883259058 -89.44105534252482,37.438832551930091,146.052842199802399 -89.452255825971179,37.451700839812155,146.111198928207159 -89.476812768235632,37.473018594996077,146.217306202277541 -89.493339544730375,37.495637378437856,146.314802868291736 -89.518340876322895,37.538905124840525,146.490723439492285 -89.522987330962479,37.558951157228314,146.561219412833452 -89.522813900381692,37.567833273421989,146.588921966962516 -89.522698013430599,37.573768338053938,146.607429089024663 -89.522564694462659,37.580596172493493,146.628716308623552 -89.519297703830873,37.585586980191593,146.639275813475251 -89.513226571507317,37.586189019072435,146.63159865885973 -89.507854144739881,37.62667322958189,146.750502203591168 -89.516728155666144,37.672991020640502,146.910026959143579 -89.672553081897831,37.80275740550892,147.562102950178087 -89.675602302879966,37.804791829029227,147.57326868455857 -89.741173497678986,37.848540570274494,147.813291945494711 -89.846089994495301,37.907178751017163,148.161631003953516 -89.852352113418419,37.905586753774955,148.166565811261535 -89.864253267939205,37.898512942508994,148.163346415385604 -89.882779397172314,37.881198522330543,148.138714944012463 -89.903136702288265,37.871429739937604,148.140481417998672 -89.924490217815219,37.872279464693889,148.17690790630877 -89.938688621490812,37.876300124801155,148.211894733831286 -89.939496369652659,37.876717867189981,148.214473637752235 -89.951900051666414,37.883132668224327,148.254073568619788 -89.974949230506425,37.9192657737199,148.402953214012086 -89.976225420753309,37.928323349045229,148.433128013275564 -89.998411587772722,37.964827449072423,148.581625840626657 -90.073594305472398,38.018600179033022,148.867389626801014 -90.127845015759334,38.043263458785852,149.029680873267353 -90.205162554067783,38.090347451210981,149.297799434512854 -90.244433014992453,38.114261948434851,149.433910214342177 -90.255428958861302,38.123582538823939,149.480110163800418 -90.335578537052086,38.191520442718279,149.816602482460439 -90.355223428462295,38.215442144840466,149.921364386565983 -90.365248069894605,38.237941019832974,150.006429060362279 -90.375252128571873,38.283436862517618,150.162000449374318 -90.373842849599342,38.324936016002589,150.287034368142486 -90.372142995366204,38.335135577832666,150.315597442910075 -90.352242285116318,38.376632943430643,150.411161503754556 -90.347442296616947,38.383432693271018,150.424374441616237 -90.341621139784635,38.388577366176769,150.430904406122863 -90.29663992453591,38.428331259341078,150.481362053193152 -90.286538992432142,38.445030627536923,150.516451617702842 -90.280539381665179,38.474029401029618,150.595576531253755 -90.264388485982067,38.521794588345912,150.715877246111631 -90.261638961260147,38.529926123509874,150.736341810785234 -90.259097554126669,38.533581738684681,150.743481448851526 -90.250237993952013,38.546325522526793,150.76836646720767 -90.22583696861588,38.57622346896229,150.821025461889803 -90.203835707695859,38.59022309587332,150.829020105302334 -90.19733566114175,38.596022911811346,150.83645124360919 -90.185834704453228,38.613122282742601,150.870416909456253 -90.183949749295053,38.619559827815493,150.887047559022903 -90.179334959616924,38.635320371357871,150.927750806324184 -90.179035118238161,38.644319975629514,150.954657962545753 -90.182435507935992,38.661119192379168,151.011092908680439 -90.182724334506702,38.661947421886566,151.01406511105597 -90.187735913233382,38.676318458837741,151.065626672469079 -90.196536357048856,38.689117792156765,151.118350399658084 -90.203536631131186,38.695017451519732,151.14727524574846 -90.210536968080191,38.704316960402792,151.186519291251898 -90.213337200499694,38.713316530319375,151.218240888789296 -90.211237415437324,38.727615921536227,151.258333259262145 -90.172636253778265,38.768113570002235,151.320518872700632 -90.166409128804986,38.772182710222495,151.323079471476376 -90.1244336979655,38.799611727213737,151.340360453352332 -90.119033712981917,38.807311448976485,151.355222280137241 -90.116033814494841,38.816611073059676,151.378688416443765 -90.110434097729083,38.839010149716195,151.437731675803661 -90.11073421813569,38.845109877668897,151.456662675365806 -90.114654417938809,38.850867579592837,151.480225574225187 -90.208365255677634,38.900512593092451,151.777131782844663 -90.227181191458939,38.910480675674648,151.836726355366409 -90.251579963162641,38.920900939246401,151.906435012817383 -90.277265099319123,38.928009159268285,151.968171027489007 -90.387087085376905,38.958401787906745,152.232203383930027 -90.407703460623878,38.964107255745304,152.281781108118594 -90.452129606460389,38.969316517865884,152.367316836491227 -90.452146749017032,38.969310510271477,152.367325727827847 -90.469121895066266,38.963361584781609,152.376138524152339 -90.473459941440751,38.960390665638947,152.374028032645583 -90.483756913774656,38.946013179781325,152.346976174972951 -90.484062737815819,38.93626560506263,152.31811891309917 -90.488311673925779,38.927535940501834,152.298528983257711 -90.508788720245022,38.904321727969467,152.260878368280828 -90.54536806081849,38.876605530383429,152.235046764835715 -90.557031255027042,38.872340584829935,152.240596020594239 -90.567895474021341,38.870402545808098,152.251901989802718 -90.584726872927845,38.870585344807601,152.279025135561824 -90.626462221592263,38.890208000557806,152.404048091731966 -90.658595570786261,38.921822237986234,152.549948536790907 -90.664713860819361,38.92959382528651,152.582985420711339 -90.667211874152812,38.935746722901342,152.605430703610182 -90.712925238067982,39.048344048685763,153.015519727952778 -90.714974422411615,39.055522710012646,153.040257005020976 -90.713886455419782,39.058609587119307,153.047784698195755 -90.684089348761546,39.089892559188129,153.094432545825839 -90.682431542379547,39.10213404197841,153.128449197858572 -90.720344618542626,39.226511499949353,153.559597069397569 -90.728330497211758,39.252709930959206,153.650224710814655 -90.73130965790061,39.257430690641876,153.668972939252853 -90.800698391179182,39.314620394486091,153.948347276076674 -90.843528955615383,39.343463641656399,154.101469190791249 -90.884061302090529,39.363784286280953,154.225624931044877 -90.941340176135256,39.395083136888474,154.408679607324302 -90.995148091031041,39.424485353488379,154.580574809573591 -91.043711798300251,39.45358652280521,154.743237504735589 -91.159971502077184,39.554566785136856,155.224558060057461 -91.169784965514253,39.566446155989567,155.275012156926095 -91.179378844118503,39.599712605306948,155.387978789396584 -91.230685494768949,39.622368022854062,155.535554804839194 -91.314533320315249,39.686418312560839,155.85585640091449 -91.350412111747147,39.713825665439686,155.992793555371463 -91.36912688226991,39.730537724345687,156.071256815455854 -91.371383004566184,39.734032547186274,156.085040968842804 -91.371327251847489,39.746550009094285,156.121539457701147 -91.369336040978666,39.760631562238402,156.159535373561084 -91.366770785534939,39.778772677270126,156.208462947979569 -91.434296632219784,39.842057158690281,156.49971572495997 -91.447763545032984,39.871895719069201,156.60787155199796 -91.457267404463579,39.947036583176761,156.84131343383342 -91.461668078475356,39.981829850045536,156.949238582514226 -91.496248042528904,40.038915001964718,157.16922608204186 -91.511707240192422,40.129483962228768,157.455471657216549 -91.514360381298033,40.182549677298944,157.612763457931578 -91.511718486715921,40.202628910389677,157.666480076499283 -91.507355301312685,40.235790504846875,157.755128792487085 -91.502822263062455,40.250359064031059,157.789933577179909 -91.491255978699357,40.287531509269343,157.878677846863866 -91.463528478220752,40.34389546265961,157.99707689229399 -91.446221494862414,40.364650795572416,158.029503086581826 -91.420810203619624,40.379744464906224,158.032973069697618 -91.389747605282494,40.386409557146933,158.003425613977015 -91.377133449234364,40.39335941605291,158.003611174412072 -91.373941564965335,40.402680062266654,158.025352881290019 -91.365299189681508,40.491598432212257,158.266583383083344 -91.365600401444368,40.501519012748332,158.295438030734658 -91.370448774210331,40.514007431169055,158.338734643533826 -91.385921521735909,40.53242247379012,158.415559438057244 -91.405516155703864,40.540600895530439,158.469554394483566 -91.408242394786669,40.54903050987798,158.497893005609512 -91.406632503216017,40.556114232857389,158.515605042688549 -91.361264403139984,40.603276808063484,158.579351933673024 -91.350124302001475,40.611166612866889,158.584474413655698 -91.341110166382762,40.614959563138193,158.581230998039246 -91.307914641164729,40.627702431285002,158.565815512090921 -91.254463611965548,40.63943358560833,158.516009729355574 -91.219825796492671,40.639908982488471,158.46345436014235 -91.199294258781137,40.637579326429879,158.42486587446183 -91.18836802289259,40.638769408186697,158.411268305033445 -91.186802989176954,40.639524183978821,158.410988441668451 -91.139442344186321,40.662365013670403,158.402554638683796 -91.123808173495547,40.672146794536964,158.406180838122964 -91.113645766413555,40.69768882240313,158.46324485912919 -91.113327469260454,40.698488825301339,158.465031560510397 -91.096117154021371,40.799299851008257,158.725349727086723 -91.098420305860728,40.803937631292285,158.742101770825684 -91.098942442694565,40.809899378257633,158.759856272488832 -91.094382597320802,40.822544909978497,158.788730203174055 -91.010925256513303,40.902028633041354,158.885340113192797 -90.999889149503375,40.909583454592251,158.889730944298208 -90.970383670753705,40.920590356490031,158.875416463240981 -90.96430464661303,40.926420189612834,158.88257357198745 -90.953621998946275,40.955509121166905,158.948569067753851 -90.94364345237193,41.03616092919173,159.161516987718642 -90.946940100890998,41.063187781654129,159.242988797836006 -90.949914417117839,41.071705447959957,159.271630194969475 -90.950774079377339,41.074167296536132,159.279907134361565 -90.950774424754229,41.074168285605545,159.279910456389189 -90.948018862939193,41.098088339760167,159.343216306529939 -90.991057150323371,41.157169404366499,159.576015002094209 -90.999300494254598,41.164017024975962,159.607980250380933 -91.006897742300467,41.167074808149223,159.628275540657341 -91.020431053519644,41.166362673328116,159.647086477838457 -91.051204073770052,41.179484764774301,159.731371144764125 -91.115046960669986,41.242849406172546,160.007727113552392 -91.115585157664341,41.25147704822502,160.032774982042611 -91.081056675911142,41.335172065277533,160.214370525442064 -91.080082328814157,41.337533825905851,160.219489388167858 -91.049219999342569,41.412342325254841,160.381472503766418 -91.041272970886155,41.419965113618019,160.390599420294166 -91.029187787622178,41.425045055304302,160.386276867240667 -90.991376051794674,41.433404177608693,160.351721320301294 -90.84885509003891,41.456461979092047,160.198267366737127 -90.787677557605804,41.454331807627433,160.098939842544496 -90.773067156743465,41.452205070640048,160.070703105069697 -90.738931312737336,41.451571510069705,160.016885849647224 -90.657231579959443,41.463577015753209,159.926085888408124 -90.607329049803155,41.495676327352641,159.94009327609092 -90.500864958349581,41.519499657225815,159.845197431743145 -90.475721379071871,41.521177893642282,159.81178340408951 -90.462821144602586,41.524977896873352,159.802879191935062 -90.399318630913868,41.573676710506803,159.843102904967964 -90.343038305006459,41.622926419084386,159.895838340744376 -90.344550914291332,41.649582335660156,159.972627039067447 -90.33591437722275,41.680999186056624,160.047344131395221 -90.318430886908033,41.730542575396136,160.159225617535412 -90.316610080244828,41.73570223981568,160.170869417488575 -90.311216142734906,41.74475894466363,160.18799418117851 -90.304172113984521,41.75146876296224,160.196090551093221 -90.280022892815637,41.768795366229213,160.20803146995604 -90.24413641017162,41.785203883758449,160.199782529845834 -90.223652058766973,41.794570024314268,160.195092506706715 -90.209829279731039,41.798612718541264,160.185590772889555 -90.189357428501651,41.804600040918984,160.171530378051102 -90.183361364725926,41.80850695842468,160.173413291573524 -90.153493830407584,41.930379781123186,160.467607690952718 -90.152990296788758,41.932434422886345,160.472559456713498 -90.14200443808069,41.997428994234404,160.636452751234174 -90.142558733597326,42.010360478605001,160.673124226741493 -90.152308422696251,42.030868553776855,160.744514803402126 -90.155613583968588,42.034501370860227,160.759516048245132 -90.165930100458098,42.046434776646073,160.807976403273642 -90.167888357403314,42.055970378238726,160.83729413151741 -90.169751868041459,42.077205521809255,160.89882330596447 -90.164799004125356,42.089039117625198,160.924144938588142 -90.162513315122467,42.10582948692759,160.96714205481112 -90.163619572183478,42.116305062882631,160.997739505022764 -90.168927870541978,42.123899700778324,161.02664508856833 -90.212724650491182,42.155432933180748,161.179092425853014 -90.236316487355239,42.166853198974088,161.245829300954938 -90.307930815231899,42.191859347688023,161.421766609884799 -90.317669394594589,42.195020141897807,161.445032080635428 -90.350563177801604,42.205696286162443,161.523617584258318 -90.358365397000654,42.206864145193137,161.538504150696099 -90.37653105426736,42.216229557111284,161.591448376886547 -90.392510686148057,42.226890945106518,161.644677464850247 -90.420730027797418,42.255883467556636,161.766571844927967 -90.432288841643057,42.279645398856282,161.849099626764655 -90.432139970816422,42.285626167447653,161.865287182852626 -90.425731014502929,42.294740890632035,161.880703538656235 -90.417605435448053,42.322727899978808,161.945296083576977 -90.417940528222189,42.326522748139787,161.95619888510555 -90.420432665641016,42.32991858540953,161.96923163998872 -90.476242212927957,42.382884188703599,162.197686694562435 -90.478687343932108,42.385204720635009,162.207689639180899 -90.560862431673527,42.432102889168135,162.458739697001874 -90.625741672952003,42.460309995635335,162.632788945920765 -90.648141520304137,42.473309215383438,162.701755375601351 -90.655441849719139,42.479907869566198,162.730663251131773 -90.657742021589243,42.485007643585092,162.747997244819999 -90.657942152754075,42.49060742420199,162.763545732945204 -90.6573421942484,42.493107334789819,162.769454173743725 -90.642342196915735,42.509705877436197,162.792186632752419 -90.619145616864955,42.509481172523166,162.756868165917695 -90.616003538423072,42.509457212234231,162.752102821134031 -90.5668543091206,42.509004836124049,162.677383980713785 -90.557275069348094,42.508913957763617,162.662821065634489 -90.552577956866656,42.509096008636206,162.656298413872719 -90.546211799341464,42.509118086267918,162.64684700127691 -90.545759787985887,42.509112092072073,162.646155368536711 -90.533666484739129,42.508978246316282,162.627725414000452 -90.493127479002467,42.509029743795736,162.56733541470021 -90.480857169421938,42.508821902940575,162.548456142656505 -90.476366059336783,42.508889955609327,162.541939885355532 -90.438421108396312,42.508553435665114,162.48442095797509 -90.427787777303209,42.508465998624821,162.468327804468572 -90.407336329376619,42.508297827917488,162.437383535318077 -90.372081456811372,42.508518252815243,162.385458617471159 -90.36928238718599,42.508521287097665,162.381297969259322 -90.364060255672229,42.508455353818746,162.373340793885291 -90.305229799411748,42.508877060076635,162.286925919353962 -90.274270028869594,42.508939437611005,162.241051164455712 -90.270740945221064,42.509134473376285,162.236336723901331 -90.26854888866437,42.509050503510373,162.232848442159593 -90.254526532103995,42.508748687162445,162.211179800331593 -90.252027473809633,42.508929710822144,162.207959872670472 -90.22459479467868,42.509174037741687,162.167865198105574 -90.207477366938292,42.509156248222489,162.142392014153302 -90.182975762218476,42.509477536007857,162.106891170144081 -90.165766336838402,42.509681738894677,162.081907138228416 -90.144324798280323,42.509561006061645,162.049764693714678 -90.096405594065445,42.509295602609726,161.977985855191946 -90.094427550724518,42.509570616193159,161.975806311704218 -90.020064669741615,42.508699558612392,161.863283894956112 -90.018427625143957,42.508538584812271,161.860420337878168 -90.000713176594459,42.508325809325783,161.833623052574694 -89.998612120402527,42.508166841105577,161.83007918857038 -89.987043823278157,42.507842994806481,161.812078227289021 -89.986470809652758,42.507876000528221,161.811320940963924 -89.927881325442883,42.507199741343015,161.722844981588423 -89.927771322705468,42.507200742645672,161.722685172222555 -89.927621300733392,42.507200329906063,161.722462351433933 -89.838982550633844,42.506956466604635,161.590915151871741 -89.803291188898413,42.506858271893847,161.538004885427654 -89.801098133252793,42.506835299457371,161.534708463586867 -89.795350989756614,42.506880367631879,161.526359098032117 -89.781695643775862,42.506763538208979,161.505910302512348 -89.771036375080101,42.506736668854671,161.490127941593528 -89.743787690848606,42.50679699774858,161.450150525197387 -89.694878453249899,42.50651460271515,161.377371741458774 -89.69147936967839,42.506606640441973,161.372622599825263 -89.668986797921534,42.506375922341959,161.338899198919535 -89.651714354958585,42.506029145266474,161.312545714899898 -89.645566197931885,42.505936223426396,161.303250779397786 -89.614799409407524,42.505358618759502,161.256442250683904 -89.60491215151329,42.504973753422711,161.240857685916126 -89.601390065217288,42.505088791688898,161.235999254509807 -89.596167928968072,42.504884862825527,161.227767647244036 -89.565795143974654,42.50404526311474,161.180856740102172 -89.523929070587428,42.503306798421029,161.117384051904082 -89.494602321416423,42.502932167675198,161.073341333307326 -89.493998306153358,42.502932174981424,161.072455696761608 -89.48568609414987,42.502844278901307,161.060026974417269 -89.426546583337853,42.502145020658389,160.971448443830013 -89.42531055409863,42.502237032055241,160.969891462475061 -89.423951516672602,42.50209905377622,160.967521631158888 -89.42237547479273,42.502008076312059,160.964963374659419 -89.402815976429693,42.501852318542817,160.935897409915924 -89.402800369062632,42.501852248636887,160.935874368064106 -89.367414076727414,42.501693752013658,160.883654395118356 + + + Indiana + + + Indiana + 0400000US18 + 18 + 35826.108999999996740 + + -84.805340928553264,40.354313202506326,148.19414502568543 -84.805138565753637,40.311672999792847,148.065184622071683 -84.805139074502819,40.311651575352684,148.065120633691549 -84.805319433301634,40.304056307798056,148.042433740571141 -84.806847056352012,40.225220504428236,147.806212581694126 -84.807394610628862,40.199557546451459,147.729282289743423 -84.807559513420401,40.193889776253975,147.71234589535743 -84.807566512260621,40.193814779244327,147.712128442712128 -84.807985306156283,40.181691270262469,147.67598410975188 -84.809509432548225,40.130592344756103,147.523181853815913 -84.809523397045837,40.128583426875423,147.517106714658439 -84.809924054190773,40.108782233846362,147.457573879510164 -84.810954043092664,40.050497614066622,147.281954630278051 -84.811315790966049,40.035783214690667,147.237717327661812 -84.811886234018644,40.006644368566043,147.149861929006875 -84.813407951470111,39.928913592121951,146.915173181332648 -84.813571857200301,39.923337820393641,146.898396402597427 -84.813625772946935,39.918490019827438,146.883684853091836 -84.813625784129954,39.918489031324995,146.883681852370501 -84.813912333181207,39.89316006238424,146.806792946532369 -84.814001322182236,39.892405092630092,146.804612262174487 -84.814264013838894,39.874533828144124,146.750414687208831 -84.814677677570359,39.854837638006444,146.690826279111207 -84.814762635972158,39.852349740001294,146.683342795819044 -84.814887505424451,39.84475005302582,146.660292870365083 -84.814916504174136,39.844636057438095,146.659984841942787 -84.815006219921386,39.828348730446145,146.610322056338191 -84.815065183646411,39.826198818818661,146.603830642998219 -84.815392009159382,39.815790246328312,146.572455606423318 -84.815332958161036,39.812976363470717,146.563766869716346 -84.815421755912624,39.801333844790477,146.528274147771299 -84.815391528580562,39.788432379731397,146.488751723431051 -84.815401506303033,39.78714843284596,146.484835834242404 -84.815340536892833,39.728202127360845,146.304191612638533 -84.815340470444156,39.728137882015524,146.303994576446712 -84.815740674556352,39.682012795232879,146.163072519004345 -84.815829480409718,39.670758262619671,146.128649425692856 -84.815914779744546,39.630439940923658,146.004923796281219 -84.816364739363564,39.569939460404711,145.819470201618969 -84.816244915523896,39.569283816014334,145.817284572869539 -84.816163715042904,39.568839508436149,145.815803430043161 -84.816163697681304,39.567839550202045,145.812725263647735 -84.816363387046607,39.549640308514576,145.756968139670789 -84.816562939818851,39.523541397724962,145.676841099746525 -84.816562957322446,39.523540443026718,145.676838179118931 -84.816762756259934,39.512642851646014,145.643527892418206 -84.816762754528582,39.512542855830674,145.643219627439976 -84.816961142670493,39.478950318943298,145.539894361980259 -84.81696117844929,39.478944260627152,145.539875718764961 -84.81865874610763,39.393348834492258,145.27785752620548 -84.82055638169787,39.311053277846305,145.02575986739248 -84.820655279215885,39.306752819600682,145.01257089804858 -84.820655310525964,39.306751458112835,145.012566721998155 -84.820825740256538,39.273190871596569,144.908745574764907 -84.82083657402508,39.263456282294364,144.878559944219887 -84.821062394599153,39.252619737434657,144.845248349942267 -84.821004338205654,39.249407873658598,144.835197770036757 -84.821016279188811,39.245936020154247,144.824437552131712 -84.821003800407709,39.159218688039303,144.554922502487898 -84.821027569176451,39.158109713674683,144.551505510695279 -84.821186660017773,39.150687047587496,144.528632120229304 -84.821357923835052,39.107087894485154,144.393115195445716 -84.832398148307732,39.103527931820743,144.397558115422726 -84.890075032482301,39.067984847026764,144.368025615811348 -84.898566098664034,39.058987142005684,144.351945713162422 -84.89837300941798,39.054016355363835,144.336173777468503 -84.890266604278239,39.042429931700298,144.288604821078479 -84.879814828526321,39.031906089153061,144.241031561978161 -84.850644908905124,39.002535037653018,144.108205350115895 -84.814379845591816,38.932198319029986,143.837145665660501 -84.790717409648778,38.886304611825629,143.660030798986554 -84.78630721734956,38.8816058578536,143.639082845300436 -84.786995059196755,38.871114299374263,143.607160282321274 -84.792274444693248,38.857477598036915,143.571842123754323 -84.814545576934407,38.799951064286653,143.422724281437695 -84.845608186935422,38.788699228877533,143.431283848360181 -84.945494551331834,38.776804715849778,143.535322059877217 -84.974631359636746,38.780467259681551,143.588126004673541 -84.985826650344677,38.780692135115459,143.604708812199533 -84.997138901429494,38.778376118423985,143.613485497422516 -85.025404903544072,38.764931559869581,143.61139627918601 -85.102164752702336,38.728421186924578,143.605845699086785 -85.108103803855869,38.72241038458241,143.595415618270636 -85.139882253869331,38.700789988953233,143.572732403874397 -85.157360584451382,38.693873107278669,143.575899767689407 -85.173730932601401,38.689704118598442,143.58613396435976 -85.190565353858929,38.689200967092539,143.608560303226113 -85.202701834502008,38.693196264431485,143.638427503407001 -85.214461095450247,38.697067382016641,143.667367529124022 -85.227266590046938,38.707076818726186,143.71708007901907 -85.247710554381499,38.733440472334792,143.829014496877789 -85.260051969004692,38.739373089595738,143.865242878906429 -85.276660450189539,38.742790771074517,143.89967479929328 -85.290432822298996,38.744028575618209,143.923225027509034 -85.334493151784955,38.742098559672492,143.980133946053684 -85.412134833489091,38.73869754724592,144.080567027442157 -85.423231078047451,38.736451529183618,144.089420541189611 -85.435275293808772,38.731072636336691,144.089817906729877 -85.453324413835404,38.71096631651514,144.052658428438008 -85.458188196860107,38.690754138399981,143.99624187592417 -85.440559425196113,38.61201072413261,143.723647101782262 -85.428674261765423,38.588359108288941,143.632198587991297 -85.41702804317346,38.565182994937977,143.542536594904959 -85.416806749709679,38.547966743543562,143.488002954982221 -85.418528700218815,38.542388967682626,143.472905588336289 -85.424283692913491,38.533207306648087,143.452244197949767 -85.43413509503894,38.525698857610827,143.442738240584731 -85.43434282013898,38.525540535648034,143.442537813447416 -85.463725376556127,38.514228723798809,143.449127272702754 -85.608838826862822,38.440923414517052,143.427084914408624 -85.621730882568301,38.424733986783671,143.394619361497462 -85.634146738769175,38.397296055017691,143.325938262976706 -85.639250612333129,38.381968671173695,143.284903008490801 -85.639253255557165,38.381900788488515,143.284692369401455 -85.63998631642248,38.363074488520823,143.22625997196883 -85.654850120672592,38.32874083563528,143.139199771918356 -85.676226231396043,38.302950743501675,143.088547720573843 -85.684770349679724,38.297102911396934,143.082417112775147 -85.746072423956662,38.268804518823231,143.081729891709983 -85.752172589105086,38.269504425212347,143.092801361344755 -85.762272921318768,38.27420411500151,143.122345354408026 -85.76777414445823,38.279303834726221,143.146476711146533 -85.767174175856866,38.282102718273769,143.154464758001268 -85.774574456806178,38.287802392139639,143.183248179033399 -85.78217468629343,38.290102212893494,143.201561971567571 -85.792774954674201,38.290202099021457,143.217273443937302 -85.792787377879236,38.290199271145717,143.217282544821501 -85.817376480369717,38.284602090206263,143.235300128348172 -85.824976631569442,38.282202116842818,143.238753658719361 -85.830576709169463,38.278402225524516,143.234871756285429 -85.898876888380258,38.185905581330665,143.041332344524562 -85.900763257161287,38.181980011167511,143.031635314226151 -85.909976783947656,38.162806483066063,142.984259478747845 -85.910676452187559,38.141708404859678,142.918330590240657 -85.906375864923433,38.112709727152968,142.819972020573914 -85.905775671503221,38.101910209554298,142.78478426579386 -85.907374478807512,38.087810815039646,142.742307608947158 -85.912817939665473,38.068531148202716,142.688956087455153 -85.923605937677522,38.030322186806053,142.583144271746278 -85.93144596320181,38.01995456447554,142.561597990803421 -85.942614103025647,38.011474824525379,142.550927611999214 -85.949163533282828,38.008726692714845,142.551755956374109 -85.952678285220557,38.007251907699121,142.552201053127646 -85.999821113393253,37.999418363676135,142.596261654980481 -86.030722021862445,37.994283677317235,142.625183804892004 -86.173402866396216,38.011561438065961,142.889561118558049 -86.180200058743594,38.012949306250022,142.903963841497898 -86.221589364924412,38.029562141922568,143.017619569785893 -86.268111007875817,38.058763366946117,143.178791262209415 -86.274804345907526,38.069080841014262,143.22138296905905 -86.279940837177875,38.090939821085357,143.298277702182531 -86.279255038406603,38.10406224826793,143.33887345995754 -86.272444329689804,38.131747096354424,143.416586958803236 -86.285186050846207,38.144819763506995,143.476721420884132 -86.310949042139214,38.146027055470356,143.518431447446346 -86.315514643937931,38.144243986708062,143.519503051415086 -86.324675779994138,38.14066615923781,143.521655349992216 -86.328010789183466,38.136238320000295,143.512544336728752 -86.33378985849366,38.131765457341182,143.506887514144182 -86.399885104855457,38.107872824671638,143.528595064766705 -86.42773279846422,38.083419639218597,143.492206707596779 -86.431315425907229,38.080273717945872,143.487525302916765 -86.43401330180312,38.068807197375385,143.455166017636657 -86.439460324737681,38.062062439268416,143.441826690919697 -86.45341650584723,38.052126733946018,143.430936026386917 -86.468100805602802,38.048233753436001,143.440286776050925 -86.492078387418772,38.047432539054832,143.473186391405761 -86.492083300149702,38.047432222271873,143.473192649893463 -86.512985883723914,38.046084380819451,143.499829077161849 -86.518514990642714,38.044270403559977,143.502256907522678 -86.523051031351656,38.039963547170132,143.495313200168312 -86.52619493518587,38.029515977626723,143.466836839914322 -86.526398947737064,37.969867623249165,143.277823198586702 -86.605849090431022,37.859915691058568,143.045990195125341 -86.635496584080087,37.845489026228982,143.044109721668065 -86.649253883736407,37.843068991051375,143.056859625503421 -86.656511284229936,37.844150258440024,143.071097367443144 -86.656522081104313,37.844151867047401,143.071118548512459 -86.661519577997225,37.866699808851081,143.150333634577692 -86.710392325375437,37.899280846471704,143.326662080362439 -86.719690479824536,37.894763950786214,143.326140408404171 -86.724738599558393,37.894471911118586,143.332725607790053 -86.732688820829651,37.895980760860795,143.349356285296381 -86.742106190018575,37.904208295760945,143.389524356462061 -86.752219611357191,37.914532729985915,143.437383668497205 -86.771409540847941,37.941902310230972,143.552859805524349 -86.788926493589742,37.973085739042268,143.67786421906203 -86.796216966568906,37.990617882935112,143.744294598698616 -86.81600899237948,38.000272884950284,143.804354444146156 -86.816499632719669,38.000512230508008,143.80584326479584 -86.824723836716458,38.00057414154719,143.818286707624793 -86.857183442480292,37.988927319125843,143.829752292484045 -86.886194774076273,37.966009034743692,143.800390416756272 -86.903646899396094,37.947797662753601,143.768702775239944 -86.920563157154703,37.938300908495087,143.763846773654222 -86.980065157063606,37.931850377751047,143.832311696372926 -86.980192516366813,37.931836570901758,143.832458363845944 -87.011551111146645,37.921304711314377,143.845975411124527 -87.034680460712735,37.908230051792579,143.839138372801244 -87.04348553810047,37.899928329903119,143.825995021499693 -87.047473495122944,37.891503664222725,143.80524386651814 -87.044643259676619,37.881578137312999,143.769509599544108 -87.045090117849455,37.872434541177178,143.741158558055758 -87.059071737609344,37.829097332502492,143.624480408616364 -87.06907162630381,37.80770618525667,143.571489231660962 -87.078639696701259,37.797850526362801,143.554510644637048 -87.091871881105675,37.78944976399314,143.547659332863986 -87.112369295116878,37.784153786327707,143.561600835993886 -87.120465499031098,37.78448968631124,143.574832748621702 -87.129985780189827,37.787369457291256,143.598295978270471 -87.133857963025847,37.792649179978447,143.620902213267982 -87.203479549485991,37.845429083924358,143.89320681989193 -87.264171521894937,37.874482144350566,144.076649294234812 -87.270802772174207,37.87879084675815,144.100285126827657 -87.303566915751958,37.900079583812492,144.217045223340392 -87.381492447107618,37.937228099676325,144.451974656432867 -87.403878106862152,37.943898564664082,144.506805956363678 -87.419831538863562,37.946394284182965,144.538749323226511 -87.438105975667838,37.945823116053958,144.564508641138673 -87.451705261493274,37.943082094381005,144.576366664841771 -87.452431915491147,37.942665161262163,144.576145797967911 -87.512747159350724,37.908058013326801,144.55785858258605 -87.551582418354954,37.926520775214385,144.674927582032979 -87.560591743844924,37.932776399740533,144.708314458839595 -87.573280329548695,37.949095535227919,144.77903707139194 -87.575537509588173,37.956471181546192,144.805732408538461 -87.574665620585506,37.964270842251423,144.829028328880668 -87.575965738785968,37.969370600569128,144.847085633315146 -87.582365991547604,37.975070277883503,144.874745420180261 -87.587167142548608,37.977070137485661,144.888314512558281 -87.59416731999714,37.97747004515805,144.900163492187858 -87.602667471172794,37.974170102146644,144.902613867074251 -87.63021136484808,37.928343858160837,144.799691623076797 -87.627507119830824,37.917768360217842,144.762198509648442 -87.621522818095457,37.908552836384438,144.724022609181702 -87.59836800857525,37.894025732906655,144.643043167889118 -87.592831785871155,37.888826024593669,144.618220968171954 -87.589675398140557,37.870423882641845,144.555244342423975 -87.589978273718813,37.862617229361888,144.531005746684968 -87.592753267983227,37.858275394580986,144.521471499465406 -87.607848332080778,37.840303040526464,144.487465789541602 -87.6166484332349,37.833608247576706,144.479612935334444 -87.647108071408738,37.827533197042428,144.506578742526472 -87.672139722466426,37.830062817724937,144.552573466673493 -87.680439057373576,37.837954375313586,144.590145594440401 -87.683151293705805,37.848042893725534,144.626180345192552 -87.682884447895702,37.85754947003521,144.655843680724502 -87.664116493276907,37.887209339685747,144.721137959510088 -87.667732754037104,37.897416843868633,144.758875917643309 -87.676982083068353,37.90356047027592,144.792309988290071 -87.685270311210445,37.905128311868971,144.809832341037691 -87.701673468112588,37.902488444570629,144.826378894969821 -87.76351399923989,37.892536043121027,144.888841914013028 -87.784897295452296,37.879389404821403,144.87982046417892 -87.792154436914288,37.877344419225771,144.884394722990692 -87.831833413207207,37.87814596030384,144.947279785759747 -87.842448769273432,37.883954586490958,144.981772860512137 -87.858499469855872,37.902277593434313,145.064026569016278 -87.866814916555398,37.916683858822822,145.122123363427818 -87.873797187039813,37.922626517910253,145.151488424278796 -87.884578537706801,37.927865167965031,145.184413444250822 -87.899319916889539,37.929140953239575,145.210876323282719 -87.906047035310877,37.926518998822736,145.212855462916195 -87.92868224731447,37.90366541745589,145.17528728581965 -87.938042260493447,37.894215105367806,145.159749737940729 -87.941327256372347,37.889298290883573,145.149248969741166 -87.942097201310304,37.884966477063728,145.136757772415876 -87.941263040039146,37.876672858265827,145.109318337403238 -87.9374858277546,37.869566217703309,145.081131007522345 -87.928560454848636,37.86033872743414,145.038392654620111 -87.916148999956178,37.851248268287478,144.990763368085027 -87.911532782919579,37.845046596186158,144.964137006551027 -87.909029623822676,37.839241883735163,144.941982651129365 -87.905060191197123,37.819393818302217,144.873203876428306 -87.908066092201267,37.809256242170257,144.845737172290683 -87.945012464809153,37.778476233519832,144.804766470566392 -87.972126232236036,37.785088646530625,144.867095889523625 -87.977646442708249,37.789636382846751,144.889911541715264 -88.00596433288122,37.801776533944093,144.971562795341015 -88.018572667469783,37.803542319762876,144.996415118686855 -88.029288880734072,37.800855326222369,145.004306927323341 -88.029048368671724,37.829928020484715,145.095779542811215 -88.050713179334608,37.846816029254015,145.182207080535591 -88.072710573605619,37.897439519194968,145.375466221012175 -88.056634106968843,37.892864896855642,145.336483458988369 -88.022377224429931,37.889684406529632,145.274132275022566 -88.01833314647395,37.890849397522537,145.271630195900798 -88.014711139463927,37.89557822402633,145.281008054502308 -88.013835537852145,37.978685508011843,145.541357858106494 -88.042795272933461,38.038965500881211,145.774929825216532 -88.043395442098543,38.047965092301204,145.804094505496323 -88.014381722448661,38.10514485213919,145.939240300096571 -87.97553509752683,38.123598447374398,145.937966962344944 -87.943438486395195,38.133376356860886,145.91981302946806 -87.929092306356026,38.143162075343838,145.928676525130868 -87.912296253889792,38.163810337042293,145.96784402243793 -87.912054342357351,38.169282096269718,145.984609812498093 -87.916928558451772,38.174937792356488,146.009714612737298 -87.930119260342011,38.178386679756301,146.040534938685596 -87.941957095581316,38.182876428393236,146.07256007194519 -87.952570466232174,38.194713257876096,146.125709057785571 -87.960326419800921,38.205325595072935,146.170676049776375 -87.962367588417891,38.216346178874161,146.208229841664433 -87.956608302204884,38.231620530865946,146.247222639620304 -87.952979460555753,38.241244676066948,146.271783569827676 -87.925222305899524,38.260020803243748,146.28832071274519 -87.864295124205071,38.281783616256675,146.263953641988337 -87.75129049756606,38.404634402854832,146.476255060173571 -87.74126346457443,38.417305059854293,146.500587492249906 -87.657406265361246,38.523271193728881,146.703872215934098 -87.670494937331654,38.543344171419548,146.785875221714377 -87.671334019043428,38.54683900900374,146.797984392382205 -87.652791965081605,38.569767203374916,146.841272491030395 -87.628608055381974,38.608836752614039,146.926117392256856 -87.621383443549732,38.641087419384981,147.015199998393655 -87.601443356504404,38.664059630502507,147.056434673257172 -87.594941283293409,38.668999484895913,147.061982303857803 -87.580660020909889,38.674072417531058,147.056290397420526 -87.541314169101341,38.680740551107021,147.018025589175522 -87.532493037706999,38.685633432707768,147.019971256144345 -87.520870982510303,38.69879498377275,147.043317444622517 -87.499777549356409,38.760577518935882,147.202813680283725 -87.496473892244751,38.784653506907595,147.272238570265472 -87.527157811627575,38.850385318520964,147.520785680040717 -87.529458919745636,38.853281167890387,147.533142737112939 -87.533328558975228,38.854093546551653,147.541421174071729 -87.538513177034474,38.855181987310623,147.552513180300593 -87.551780610419357,38.861149584538822,147.590701305307448 -87.55464974834571,38.864933389226358,147.606637989170849 -87.542070023803646,38.897973092568833,147.689570308662951 -87.529374249455145,38.909614851518583,147.706451793201268 -87.529175915094939,38.909796719970856,147.706715511158109 -87.520091956915522,38.924792168934204,147.73929482512176 -87.513453347748978,38.956002890119564,147.825345224700868 -87.573857678951285,39.058866790837229,148.230904102325439 -87.616152539598303,39.104233374843794,148.43275781814009 -87.660019224989995,39.137573460770732,148.600022803992033 -87.652992314159363,39.152177909272496,148.634156445041299 -87.643447194883137,39.15867273426872,148.63976997602731 -87.629999867822065,39.159002866969836,148.620752947404981 -87.606445797447492,39.187471900971161,148.672601555474102 -87.588780504092128,39.250854375077147,148.83960566483438 -87.594759619356438,39.24902438811219,148.842914503999054 -87.605349898303544,39.261030272879992,148.895224705338478 -87.606817165878311,39.26269367055373,148.902471099048853 -87.611324660098674,39.283802717286832,148.973435878753662 -87.605318078554959,39.315095444230387,149.059718406759202 -87.590359075672851,39.335399740199072,149.099246619269252 -87.58612703406223,39.338897637112922,149.103598986752331 -87.545287301848376,39.354475419133109,149.090376212261617 -87.538545119316993,39.353657527866986,149.077896695584059 -87.532919903130178,39.349456768783284,149.056790574453771 -87.532630511106134,39.438220987951709,149.325869881547987 -87.532630530728923,39.439296942153909,149.329132786020637 -87.532764748271575,39.451038441018461,149.36493182554841 -87.532884057037165,39.467788727241462,149.415875883772969 -87.532900115024731,39.470941593004625,149.425452912226319 -87.532939207664469,39.478673418513843,149.448934946209192 -87.5329392574412,39.478683263458521,149.448964844457805 -87.532903523029773,39.493260644368512,149.493062034249306 -87.532968594474923,39.49707848146177,149.504718363285065 -87.533242176429269,39.528498144465772,149.600213591940701 -87.533216522467356,39.547413342352719,149.6573830191046 -87.533285857328266,39.565572571753648,149.712378966622055 -87.533474880961919,39.60886372666922,149.843414265662432 -87.533644376368571,39.647682092869076,149.960781001485884 -87.533723377899562,39.647658093013149,149.960825223475695 -87.533982730366716,39.666423297373932,150.017779215238988 -87.53434790166412,39.783293367433153,150.370000124908984 -87.53434017060232,39.797792757778822,150.413542671129107 -87.534338313163445,39.805471435013999,150.436598602682352 -87.534424445830084,39.812496138842903,150.457816055975854 -87.534510639690083,39.88454611544433,150.674031838774681 -87.534510791617308,39.884673108765988,150.674412566237152 -87.534061424105985,39.97261943312148,150.936948340386152 -87.53407549813484,39.976552268637946,150.948724242858589 -87.533968545681262,39.979233157820303,150.956579619087279 -87.533827725270768,39.989003751270012,150.985569626092911 -87.533616913376122,39.999317322968849,151.016071147285402 -87.533572954681716,40.001578229074084,151.022759767249227 -87.533594170147708,40.013032750779807,151.056998420506716 -87.533594171930773,40.01312774681589,151.057282074354589 -87.532849439016402,40.13454069973767,151.418127325363457 -87.533047656839102,40.145808229476607,151.451946954242885 -87.532727719723724,40.149562077143145,151.462646448984742 -87.532726382018311,40.149658389629323,151.462931016460061 -87.532422128060688,40.171564167235047,151.527635567821562 -87.532117532692027,40.193345267193287,151.591931093484163 -87.531282615954581,40.25156686502423,151.76358038932085 -87.531344629578555,40.25220183806028,151.765554971061647 -87.528103586388198,40.463692156905694,152.386507291346788 -87.527843838846877,40.477180606082264,152.425913884304464 -87.527805608111791,40.478400589510635,152.429455889388919 -87.527796866454835,40.478679545090131,152.430265772156417 -87.527674081909637,40.492757679825736,152.471594480797648 -87.527671140315988,40.493094955041876,152.472584418021142 -87.52764797762481,40.536630170939212,152.600808878429234 -87.527587981847986,40.536928159408276,152.601598876528442 -87.527428931894192,40.738396019639659,153.192961173132062 -87.52742888065066,40.738460937699173,153.193151214160025 -87.527085163822662,40.855863178780396,153.535927599295974 -87.527415668791178,40.881208149537372,153.61037212703377 -87.527264682888401,40.882123114239128,153.612822614610195 -87.527739961521277,40.895713559383317,153.653151238337159 -87.52738730004539,40.913417847962855,153.704257995821536 -87.52761024332888,41.011845876611275,153.991107470355928 -87.527611788275763,41.011854805535009,153.991135665215552 -87.527651249050933,41.012082866608388,153.991855745203793 -87.52782553488295,41.026336291106247,154.033537234179676 -87.528018453099293,41.122980408146589,154.314309923909605 -87.528007813635057,41.14115268011075,154.366956018842757 -87.528004003554827,41.15071629714123,154.394654708914459 -87.52800109760922,41.155452107560585,154.408366749063134 -87.528027207418873,41.160941887504677,154.424302197061479 -87.52796821867706,41.161583862478928,154.426076022908092 -87.527875291371004,41.165358712454577,154.436871960759163 -87.527878675562107,41.167590287224428,154.443337810225785 -87.528078786619446,41.299539956945829,154.824972221627831 -87.528078976793225,41.299665348675141,154.825334253720939 -87.526937072184381,41.455101190486346,155.271203195676208 -87.526985406465684,41.471596537152728,155.31865581125021 -87.526983557926329,41.471764134411416,155.319134475663304 -87.525957267314951,41.564812867683578,155.584558092989028 -87.525959470513968,41.624010536651326,155.754019224084914 -87.526059674646334,41.633910146203078,155.782475234940648 -87.525959722987849,41.636410049064096,155.789480519481003 -87.526162884673411,41.693107820159767,155.951771008782089 -87.526263111997693,41.70410738760598,155.983314740471542 -87.525363205320957,41.709807174462505,155.998294839635491 -87.521863147854859,41.711407151920355,155.997854017652571 -87.516561894769808,41.705707436217729,155.974003374576569 -87.51236162924522,41.698007786340973,155.946014858782291 -87.506661380281784,41.693008047834915,155.923585158772767 -87.472059107199598,41.674309178218685,155.820682479999959 -87.464458966366919,41.67700915935994,155.817531949840486 -87.45435765504844,41.674509373185437,155.795948006212711 -87.447429734935454,41.670814841305308,155.775485567748547 -87.44330326507405,41.673379854758416,155.776920125819743 -87.439845881956501,41.672153173456657,155.768472804687917 -87.438507515564154,41.670480381079443,155.76177825499326 -87.436165391933258,41.668361519874473,155.752373765222728 -87.434269388775547,41.666577215968211,155.744562933221459 -87.43371165253383,41.662004886094827,155.730692107230425 -87.440256910759274,41.655810268664062,155.722332326695323 -87.431155507291137,41.647510698773814,155.685584240593016 -87.424755277237566,41.644310897696251,155.667282354086637 -87.395853418278435,41.63871144824558,155.60996169783175 -87.366752511404457,41.631013083312318,155.546360959298909 -87.325650319037678,41.624513808088778,155.469077881425619 -87.288948355333545,41.623714258333479,155.414436065591872 -87.279748067102275,41.621214461468426,155.394154611974955 -87.26284664270284,41.621814630623575,155.371783048845828 -87.223953719603799,41.625639804346008,155.327341712079942 -87.221969667744133,41.625834938630049,155.325075902044773 -87.188959921333804,41.631132106671259,155.293276545591652 -87.161933376058528,41.638745115638613,155.276661541312933 -87.162092544409703,41.646863795387354,155.300163884647191 -87.127142738991665,41.651781000343625,155.264588351361454 -87.121629503173281,41.64718024343501,155.24356407020241 -87.067339422678614,41.663324228084484,155.212781079113483 -87.029193692292694,41.67614015971801,155.195435993373394 -87.010945173458509,41.682998904129043,155.189242653548717 -86.936133982074352,41.711116848487102,155.163971224799752 -86.934050770062456,41.712519117769951,155.165045598521829 -86.910433663335311,41.728416464461532,155.177232815884054 -86.87673200863243,41.739417417398641,155.16116429399699 -86.82613014133652,41.76171812150357,155.153684056364 -86.824930110060265,41.761718135103528,155.151992306113243 -86.805728609536004,41.761718352669867,155.124928419478238 -86.80287953525692,41.761718384944736,155.120913626626134 -86.802008512547602,41.761718394811474,155.119686265476048 -86.801912510266831,41.761729395470361,155.119582515209913 -86.749396134767636,41.761446001107025,155.044807009398937 -86.747821093972433,41.761461018345102,155.042633003555238 -86.642483336108413,41.761113222600585,154.893518486060202 -86.641341307026408,41.761151234016104,154.892023452557623 -86.525517132909869,41.760937649305333,154.728913842700422 -86.520612144321746,41.760928604229996,154.722014750353992 -86.5030666869947,41.761034797695011,154.69773980230093 -86.266783500802958,41.761691426356755,154.369464482180774 -86.227383349853611,41.761501005362284,154.314016421325505 -86.227356460412551,41.76150087540541,154.313978591933846 -86.218876237380172,41.761500970347321,154.302168326452374 -86.129127886726181,41.762077951773826,154.178962017409503 -86.126743823297403,41.762045979655475,154.175556089729071 -86.126343813080695,41.762061983504019,154.175046193413436 -86.063854424815773,41.76176977701477,154.087402866221964 -86.004963817643286,41.761494397957087,154.004908219911158 -85.992582274057085,41.761436500374813,153.987576520070434 -85.976259841262888,41.761336686100414,153.964667268097401 -85.976180839177488,41.761336686980428,153.964557798579335 -85.890102557078791,41.760910661509961,153.844157773070037 -85.876274189950465,41.7608298183874,153.824799476191401 -85.87331811227935,41.760853850315655,153.82078121509403 -85.792637971889889,41.760540758514075,153.708410294726491 -85.792609813337052,41.760540924413725,153.708371904678643 -85.776313541665161,41.76063693591022,153.686157020740211 -85.751742889932018,41.760580210608097,153.652095054276288 -85.751265877318673,41.760581215858068,153.651440037414432 -85.725807202828932,41.760575498278648,153.616318872198462 -85.661021493909189,41.760592016918267,153.527118293568492 -85.652009246941006,41.760594314725807,153.514719278551638 -85.648954166345277,41.760616347675054,153.510578085668385 -85.633984770029116,41.760655511753455,153.490091927349567 -85.626257563619006,41.760584599958364,153.479255991987884 -85.623878499627921,41.760540627969235,153.475856131874025 -85.609582123098079,41.760684780456955,153.456609887070954 -85.608818100573956,41.76057079331526,153.455229584127665 -85.519518737648227,41.761005762739416,153.333801682107151 -85.517226673569965,41.760844794257224,153.330189880914986 -85.433736460026253,41.761177701770301,153.216661841608584 -85.428818329597192,41.761199755084441,153.209987653419375 -85.380397044025884,41.761369281530598,153.144176740199327 -85.351437273382487,41.761402598760334,153.104651830159128 -85.33188575393136,41.761476810822138,153.078131069429219 -85.319391420993028,41.761477948082216,153.061054730787873 -85.309402156982514,41.761592053421879,153.047733445651829 -85.299626895052739,41.761523163459479,153.03417706489563 -85.293439610174303,41.761458064787192,153.025535611435771 -85.293360726704307,41.761457234825443,153.025425447151065 -85.274974232675589,41.76126544411315,152.999757285229862 -85.274212215114602,41.76140644703041,152.999125501140952 -85.273477197235678,41.761494451698844,152.998376962728798 -85.234095143536734,41.761334889986991,152.94416106492281 -85.198032916403946,41.761231682211694,152.894678966142237 -85.197896175325212,41.761231290866938,152.894491409882903 -85.173488521297429,41.761114562803058,152.860886257141829 -85.124359211178657,41.761240095833791,152.794341714121401 -85.118524054383386,41.761197161338416,152.786274896934628 -85.040690978447842,41.761483001186065,152.681260923855007 -85.039071931540249,41.761299025969507,152.678526814095676 -84.974056182544629,41.76086475237291,152.588988845236599 -84.972804152143041,41.761025759818736,152.587757864966989 -84.962814885060496,41.76105086779323,152.574278889223933 -84.962112864037749,41.76093687984509,152.572995393536985 -84.933736108651971,41.76119017942159,152.53525055386126 -84.826445237001309,41.761490335775157,152.390840989537537 -84.826379144898794,41.761491057679571,152.390753696672618 -84.820122068619753,41.761559401861213,152.382490144111216 -84.807382398300518,41.74461619348795,152.315967686474323 -84.8073222899407,41.739104406707717,152.299845236353576 -84.807313198815351,41.734410587863373,152.286170561797917 -84.80728995889443,41.722046065216105,152.250141658820212 -84.807265705678759,41.708987569605839,152.212078641168773 -84.807329487124093,41.697592009050176,152.178967350162566 -84.807457074579844,41.676053840076385,152.116368610411882 -84.806919246355477,41.633847479117527,151.992532542906702 -84.806942228790092,41.63290351542615,151.989808794111013 -84.807057878490895,41.614546225377893,151.936378045007586 -84.805973259455314,41.531740451462611,151.69287237431854 -84.805973257608031,41.531644045875147,151.692590283229947 -84.805973256791972,41.531601456866689,151.692465664818883 -84.805794682851428,41.501874615227784,151.605208192020655 -84.805700448149736,41.489735088875527,151.569526892155409 -84.805161427631361,41.437044148661847,151.414348876103759 -84.805198249358398,41.42764151522578,151.386816256679595 -84.805198588223433,41.427558004921508,151.386571710929275 -84.805256975183426,41.413169079672677,151.344428167678416 -84.805287913279599,41.409875207992641,151.33480248786509 -84.805374914288819,41.409806209748695,151.334718225523829 -84.805167141502935,41.369474788592115,151.215993923135102 -84.804820990374168,41.27279260761884,150.931095190346241 -84.804820295739177,41.272598589216159,150.930522752925754 -84.804819293121795,41.272461594606078,150.930117861367762 -84.804731090787811,41.254082160590549,150.875847175717354 -84.804730942778775,41.254051318695311,150.875756084918976 -84.804709459426249,41.175412413456861,150.643747336231172 -84.804831449763554,41.174726439180475,150.641888115555048 -84.804650284020155,41.166172778285521,150.616379523649812 -84.80461392603992,41.098393459382805,150.415961326099932 -84.804609868472909,41.090828753234717,150.393571401946247 -84.804547112261204,40.990924673153621,150.097454780712724 -84.804546996087822,40.990739718348053,150.096905865706503 -84.804168823684947,40.924100947782058,149.898502524010837 -84.804167742213281,40.923910377711941,149.897934651002288 -84.803767828693708,40.767054640192789,149.430251216515899 -84.803495393780423,40.743838572451565,149.360576051287353 -84.803348129735014,40.729704140220285,149.318161409348249 -84.803348240072694,40.729687077807476,149.318110594525933 -84.803409955505103,40.720143522710323,149.289684840478003 -84.803322656770803,40.704018170179452,149.241375888697803 -84.803355454269905,40.69294761392193,149.208326055668294 -84.803385416847334,40.690866697098564,149.20214537344873 -84.803448151466526,40.676319280315127,149.158726081252098 -84.803420885187847,40.661841861989188,149.115376190282404 -84.803362600677048,40.646403482923191,149.069090844132006 -84.80349127557129,40.573762404985501,148.851614230312407 -84.803491290551179,40.573759358837577,148.851605115458369 -84.803708475910213,40.529595183980128,148.719375676475465 -84.804292443883455,40.466939213499067,148.531901916489005 -84.805341341717593,40.354400260700274,148.194408178329468 -84.805340928553264,40.354313202506326,148.19414502568543 + + + Louisiana + + + Louisiana + 0400000US22 + 22 + 43203.904999999998836 + + -88.866231075901467,29.754742709479906,117.966070974245667 -88.890919933479537,29.720234742416515,117.872739026322961 -88.941510841668077,29.659267367645025,117.719578132033348 -88.945600303781319,29.660838899878964,117.732756077311933 -88.947484848501404,29.664611409841314,117.750817904248834 -88.942769921847955,29.67686548727027,117.790937981568277 -88.921399749609861,29.696350069612951,117.830983670428395 -88.91291573708537,29.701379544086802,117.836245925165713 -88.891225242873446,29.731231903402367,117.916449697688222 -88.874776244795001,29.760071471665885,118.00156806409359 -88.869138164483886,29.774299555488163,118.047765120863914 -88.869138385113146,29.793356729761992,118.122498122043908 -88.862432169680176,29.807851837631617,118.167874882929027 -88.847661471800052,29.819125682930572,118.186862048693001 -88.844174865492676,29.827984858870035,118.215624829754233 -88.837461192001186,29.857243938426603,118.318752236664295 -88.837995304863156,29.861001203195507,118.334368469193578 -88.844442339465232,29.865832193819649,118.364261242561042 -88.832364920113832,29.880861378605545,118.40248466283083 -88.82941276758298,29.922736842601591,118.561173850670457 -88.838545633109575,29.946895815864142,118.671090769581497 -88.839881009833775,29.964343268400295,118.741475108079612 -88.836661397998554,29.969712187677622,118.756947093643248 -88.836661473256768,29.976154856646513,118.78208639100194 -88.840957028771697,29.985818822131051,118.827097632922232 -88.84203293490198,29.997628465355874,118.874985292553902 -88.849540629819302,30.015344785439613,118.956825138069689 -88.858536051514179,30.029839757909834,119.028612262569368 -88.870888497321545,30.04581090738424,119.111836518160999 -88.882622871781209,30.055213514920503,119.168414201587439 -88.871643887326258,30.05122365847955,119.13419605884701 -88.85675081155793,30.036427393630238,119.051234703511 -88.842391725228012,30.014803191622129,118.942549139261246 -88.834891703742713,30.000836512513512,118.875341600738466 -88.825323903345122,29.972477791313008,118.748443183489144 -88.818182212237033,29.936268834836714,118.594921207055449 -88.819310861660583,29.891130092626558,118.420415076427162 -88.827702889961969,29.849115353222949,118.270302368327975 -88.833874937119219,29.826087242570942,118.190632937476039 -88.845242653416889,29.797739785304273,118.098920347169042 -88.866231075901467,29.754742709479906,117.966070974245667-94.044458994829753,32.694848889972953,138.022761421278119 -94.044459001017799,32.694849889881432,138.022764952853322 -94.04426009537994,32.769805896907322,138.286009235307574 -94.04434022729167,32.778677423684435,138.317314975894988 -94.044251279749673,32.782372227907992,138.330129936337471 -94.044142346854954,32.787090977851605,138.346502726897597 -94.044060370101903,32.788786888437613,138.35230921395123 -94.044339530179002,32.799289326542201,138.389681448228657 -94.044099615386529,32.873295394119772,138.648723172023892 -94.044339752540324,32.882254915672362,138.680531427264214 -94.044200757361267,32.882773889569052,138.682097904384136 -94.044200476600778,32.882897443264717,138.682530004531145 -94.044173931158397,32.894579262917539,138.723377397283912 -94.044200022404837,32.900718936659096,138.744912378489971 -94.04440719085143,32.911828344747597,138.784157318994403 -94.044382602856828,32.939708865668074,138.881610427983105 -94.044403865292693,32.957396927416411,138.943462261930108 -94.044280807088967,33.021020557855913,139.16531883366406 -94.042760775509592,33.020989575534692,139.162473983131349 -94.037155660112788,33.020946636946618,139.152232812717557 -94.029299499157489,33.020940720140281,139.1380694527179 -94.025791428327281,33.021008753544798,139.131992029957473 -93.815865122774724,33.021175955498023,138.755326713435352 -93.80624194970089,33.02115127419205,138.737976845353842 -93.532805275332848,33.020449963324936,138.246076955460012 -93.526222139121359,33.020444032540766,138.234298432245851 -93.522300057054679,33.020423197117992,138.227221117354929 -93.522277057228933,33.020423074935159,138.227179615758359 -93.492198432446727,33.020249398811103,138.172869145870209 -93.491825400282352,33.020249671642127,138.172204241156578 -93.490811403760205,33.020250413266133,138.170396881178021 -93.468346941280132,33.020418639325058,138.130894602276385 -93.37843707282795,33.020042598625686,137.969265036284924 -93.34165531131265,33.020145977112129,137.904109361581504 -93.309699645641501,33.019988318807869,137.846667263656855 -93.309482640797498,33.019965322283987,137.846200494095683 -93.239907192709822,33.019802056151356,137.721865378320217 -93.198701335005723,33.019761487440832,137.648489625193179 -93.155649437394572,33.019666940497444,137.571695296093822 -93.102740333275051,33.019551496820078,137.477392760105431 -93.102278324317339,33.019597499199357,137.476734491065145 -93.082724918695675,33.019739694939418,137.442552167922258 -93.074463745960358,33.019709782359385,137.427798093296587 -93.071982692658395,33.019603813720082,137.423027290962636 -92.990002788370532,33.019110593416571,137.276036525145173 -92.972431605425811,33.01900487877441,137.244555982761085 -92.947847085918809,33.01862015399881,137.199693874455988 -92.868802421195582,33.017876012253588,137.057297274470329 -92.855459142794061,33.017946146727127,137.033964564092457 -92.845577934921664,33.017884252279806,137.016289353370667 -92.84536492993476,33.017848256378556,137.015786643140018 -92.832089646376076,33.017475413400248,136.991027220152318 -92.734486580320748,33.016162491768291,136.814158141613007 -92.726283408174183,33.016166576308194,136.799707319587469 -92.726032232379936,33.016162570147394,136.799250358715653 -92.724842377585972,33.016143592404163,136.79708568379283 -92.71717321758176,33.016213667944889,136.783810514956713 -92.712578119767272,33.016122720190957,136.775390087626874 -92.505060722455113,33.013978972587836,136.402642847038805 -92.502667671993294,33.013977997271105,136.398435086011887 -92.471046003000609,33.013828330526465,136.342368001118302 -92.371571884098245,33.012536420844555,136.163289716467261 -92.364146725890791,33.01244750176609,136.149960295297205 -92.337174151649634,33.012168793314821,136.101709155365825 -92.293944233614297,33.011923249771165,136.025127311237156 -92.224103739918178,33.010901019330376,135.899313233792782 -92.070380464841023,33.009985640180886,135.627585196867585 -91.953230962329215,33.009251874542613,135.420836068689823 -91.951273921976409,33.009343889681517,135.41775372158736 -91.627936003707404,33.008466224064392,134.853253488428891 -91.618880810845823,33.008544311816827,134.837851448915899 -91.610266623988579,33.008383407579643,134.82236984744668 -91.581066997635389,33.008345705545899,134.771703651174903 -91.58090399348437,33.00829970960239,134.771258900873363 -91.573590842918335,33.008735760917645,134.760149459354579 -91.560758566782823,33.008667894483743,134.737712632864714 -91.461632521261308,33.008075204584159,134.564313285984099 -91.437043900142399,33.00792818516684,134.521345178596675 -91.426727677212824,33.007845293780029,134.503247944638133 -91.377276610533755,33.007623804975587,134.41716424562037 -91.334270681097379,33.007359252953336,134.342103467322886 -91.331026609707749,33.007251291327364,134.336131798103452 -91.32765553647458,33.00720632769179,134.330164829269052 -91.326296507037085,33.007194342030694,134.327781128697097 -91.323765452201613,33.007171368768581,134.323339563794434 -91.313275225136252,33.007092478722221,134.304990866221488 -91.285656626452635,33.006837770568247,134.256531294435263 -91.266276209807288,33.006914961922739,134.223446730524302 -91.167329060930598,33.005938009413214,134.049844422377646 -91.20309822558535,32.963045888539916,133.959150019101799 -91.215283051545299,32.932155380112206,133.870413386262953 -91.214092909813601,32.923939821558669,133.839174514636397 -91.209518715879781,32.91719022042313,133.807314794510603 -91.198040347450842,32.908620783828873,133.757098412141204 -91.176659790684894,32.901835353328146,133.696182707324624 -91.161229456173032,32.901716514382429,133.669218093156815 -91.146330213850106,32.90733137026551,133.663567243143916 -91.135295147433524,32.919512844191011,133.68791473377496 -91.133369182666456,32.924958578908019,133.703965515829623 -91.132201732038496,32.96564946518653,133.846532515250146 -91.139840003573795,32.973185994997891,133.886411954648793 -91.135669043334175,32.982366557733393,133.91183471493423 -91.12636190076789,32.986502435442191,133.910529224202037 -91.107835560785702,32.99077139887693,133.893871627748013 -91.095519229955372,32.986204760864226,133.856523379683495 -91.088055954035298,32.978100258690709,133.814942990429699 -91.06522672459208,32.925950210501824,133.590450269170105 -91.065061433673776,32.905547278253103,133.517588364891708 -91.071854368680462,32.890497996909303,133.47569349873811 -91.087935501318995,32.875231634243995,133.448966135270894 -91.106883699594547,32.86023622906572,133.42812626529485 -91.117343886620148,32.8574812685033,133.436296782456338 -91.12913913294291,32.856899180841793,133.454506808891892 -91.146255330817127,32.84471064749728,133.440529658459127 -91.159589329399878,32.824145591076245,133.39018852263689 -91.162922263107632,32.814307073211459,133.360850849188864 -91.165649948153018,32.787664442507769,133.270516689866781 -91.166580484711091,32.753146243936051,133.148892045021057 -91.164641382897472,32.74885448854981,133.130221369676292 -91.155713125295165,32.744184822842776,133.098157010041177 -91.12440345720411,32.744644111440245,133.04587315954268 -91.078426322712289,32.734381108843877,132.930051612667739 -91.062015898454348,32.729341536958266,132.883797933347523 -91.055730689856304,32.72410687433792,132.854264532215893 -91.05829261009201,32.714424357044145,132.824035548605025 -91.065195624444868,32.704774794894121,132.801386286504567 -91.077310757783366,32.695600156012198,132.789403185248375 -91.100012129128345,32.687140374226779,132.798209548927844 -91.119508392822183,32.675924769328574,132.791642418131232 -91.15333166744189,32.643359144761675,132.733307927846909 -91.155071562612136,32.633133665446678,132.699665610678494 -91.152568295183443,32.6177714988955,132.640276731923223 -91.147454021606265,32.605997169673373,132.589227801188827 -91.142397816571318,32.599062585131222,132.55562830157578 -91.129161383174733,32.588347281096482,132.494343566708267 -91.121103186282696,32.586649450638461,132.474350148811936 -91.10536022064565,32.586511286359688,132.446704565547407 -91.098022498111902,32.578507274154781,132.405316326767206 -91.09201880688822,32.565834201309237,132.349450656212866 -91.091859626413211,32.564560979195655,132.344602606259286 -91.090684563226091,32.555162109939573,132.308809185400605 -91.094989130404343,32.550984589150161,132.301221575587988 -91.099126158855626,32.546608778723055,132.292631828226149 -91.117955947096874,32.501997944713217,132.16470621433109 -91.117255697408197,32.484999848832977,132.102322649210691 -91.110055389577553,32.473900506208921,132.04992819018662 -91.096554916157459,32.460602342209697,131.978720905259252 -91.071453189351715,32.447003309000912,131.886384080164135 -91.054152725229343,32.440304834011371,131.832378769293427 -91.030851156721965,32.435405323248297,131.774508778005838 -90.995323984930806,32.4057272424118,131.606144795194268 -91.00574971975098,32.370011028099164,131.495126239024103 -91.004749616117948,32.364012355312035,131.471721766516566 -91.0013494820993,32.359562624270438,131.449771010316908 -90.987915111988258,32.353628070719616,131.405136404559016 -90.913604344650381,32.341323453590775,131.232497499324381 -90.902752183201656,32.339733466129935,131.208044216968119 -90.899828659090772,32.330963945764253,131.171268816106021 -90.906413863010059,32.317367792119001,131.133395945653319 -91.005798637064743,32.217256122335478,130.942025131545961 -91.007547793804292,32.226024639736373,130.976866820827127 -91.02274928335622,32.238022853619462,131.046664864756167 -91.040249743384422,32.244222352583414,131.09939946886152 -91.047749888002926,32.243022342488572,131.108016700483859 -91.123845732309249,32.218802479521706,131.151876430027187 -91.134831377546789,32.215305957136223,131.158223394304514 -91.159270744615611,32.203830326261503,131.15894609503448 -91.165415807157004,32.19876253509311,131.151212782599032 -91.172290677207201,32.178401549852786,131.089242310263216 -91.175796459274864,32.156854661402441,131.017084609717131 -91.172946252585319,32.146127260205354,130.973170843906701 -91.166695983686708,32.136167851666102,130.926137082278728 -91.164065905772759,32.13457196245178,130.915774273686111 -91.132646145648877,32.128091616001051,130.837724911049008 -91.06824546432297,32.134023025138731,130.747693820856512 -91.058728850954623,32.137393367090354,130.743469992652535 -91.053583391678984,32.139215649512678,130.741187399253249 -91.047856990734417,32.140647214343765,130.736479197628796 -91.041772643650546,32.139215765347735,130.720741613768041 -91.035688282018498,32.136710702181709,130.701100048609078 -91.031393395435757,32.131700498648208,130.675443474203348 -91.028172202497629,32.125616663521875,130.647736448794603 -91.028365733240207,32.122313973363227,130.636055238544941 -91.028776092516594,32.11531100608272,130.611282997764647 -91.029186937996371,32.114601952710046,130.609413797035813 -91.035947734204768,32.102933903450193,130.578649528324604 -91.129250176760848,31.987743130851708,130.320525188930333 -91.249386180632072,31.871739159829438,130.105467802844942 -91.294656014310377,31.862051236459674,130.148915030062199 -91.328157657125132,31.856852187558189,130.188323836773634 -91.339657851966194,31.853152273424154,130.194850418716669 -91.346957894410338,31.844752652363166,130.176844857633114 -91.360757604516778,31.801255850923059,130.041610907763243 -91.364957439388206,31.782257829820665,129.979299317114055 -91.366857217601236,31.762658863914378,129.910728945396841 -91.366327534284963,31.754639331832994,129.880375556647778 -91.370618112215112,31.748799571867693,129.866442884318531 -91.381178553069802,31.734909993191117,129.833918274380267 -91.399158216499671,31.711262311659805,129.778518022969365 -91.401357980466784,31.690063430773186,129.704464834183455 -91.399301566600812,31.657822751195933,129.582296212203801 -91.405910051556873,31.639800230158773,129.527541762217879 -91.423332992476361,31.633191808735205,129.533733029849827 -91.442558385727679,31.633191621590921,129.567419650033116 -91.453973470181111,31.633191510444945,129.587426315061748 -91.465989326335503,31.630788405495572,129.599645375274122 -91.476202730634711,31.623579330645754,129.59101683832705 -91.479206558846286,31.612765809351465,129.556470343843102 -91.479206478995252,31.606758328062245,129.534345930442214 -91.479206391186636,31.600150088215432,129.51000471226871 -91.478605507675297,31.594142612861308,129.486818444915116 -91.471996683890282,31.587534437405306,129.450874672271311 -91.459922172202411,31.585130770994919,129.420836159959435 -91.449862668365384,31.584936616023246,129.402478265576065 -91.43895296300596,31.582728771494565,129.375209672376513 -91.426336231343384,31.579725147724044,129.342016790993512 -91.416723414752155,31.568911761108637,129.285290626809001 -91.417924927274157,31.563505015296109,129.267454273998737 -91.423932775836505,31.556295970390281,129.251392934471369 -91.438857888225712,31.548072719764136,129.247226182371378 -91.451259064422175,31.541572950287296,129.244995723478496 -91.480960569125386,31.532273164074621,129.262801029719412 -91.512460264325469,31.5345187366472,129.326401899568737 -91.51705333856529,31.532800784818068,129.328130557201803 -91.52416334229089,31.521748312966199,129.299831697717309 -91.516372244154823,31.4511172087566,129.025167932733893 -91.51159800784869,31.440839811379,128.978756243363023 -91.506542822306272,31.434857184277536,128.947732006199658 -91.501647995842319,31.420920858989319,128.887544260360301 -91.50633397554455,31.402846874098618,128.828858376480639 -91.515036706908404,31.388789260002934,128.792090802453458 -91.526627534390371,31.380818917311817,128.782951704226434 -91.542484006662846,31.358665737431,128.728746698237956 -91.541144830545264,31.339252992073924,128.654391437768936 -91.532441773869067,31.328542578762985,128.599325575865805 -91.521060813557156,31.313146365861446,128.522134494967759 -91.510098041204174,31.293563811438933,128.430100397206843 -91.516854007716987,31.280130475860499,128.392083255574107 -91.523637087945133,31.275343670450319,128.386241030879319 -91.548828500826303,31.266364915205749,128.397256883792579 -91.575734025667231,31.263209826933288,128.432963458821177 -91.599730800906656,31.207408630662769,128.267733020707965 -91.601205815346603,31.194242273596057,128.221316518262029 -91.605437256671465,31.156471349739476,128.088062971830368 -91.578611701155509,31.080109771830919,127.755693253129721 -91.565388276438824,31.068761518160255,127.689921748824418 -91.562521139505222,31.06283786901567,127.662713592872024 -91.561145022730969,31.056051252703124,127.634909071028233 -91.563705935337993,31.045145823566354,127.598651971668005 -91.572932955252739,31.031715468556456,127.564719608984888 -91.585908103394729,31.022118868381188,127.551750439219177 -91.638180930848492,31.001350502095814,127.566500233486295 -91.626356679836292,31.001101629135686,127.544639559462667 -91.539963870609611,31.001323445106181,127.392681288532913 -91.426983491703552,31.000943546971737,127.191785830073059 -91.424855446645893,31.000920568570017,127.187946225516498 -91.226069260420815,31.001121454664482,126.838676977902651 -91.225298244145208,31.001121462009515,126.837321720086038 -91.177438232919414,31.001082919882112,126.753084338270128 -91.177368983728613,31.00108265138725,126.752961709164083 -91.109518793717683,31.000819580394097,126.632876295596361 -91.109341789678908,31.000796583331098,126.632479465566576 -91.082041212723198,31.000848839990095,126.584793922491372 -91.069496947360733,31.000859958583849,126.562842200510204 -91.061444000567732,31.000874661015303,126.548780930228531 -90.82724881419314,31.001302231360658,126.140713235363364 -90.827051175491007,31.001302639863795,126.140369747765362 -90.784965916114501,31.001389626521291,126.067254499532282 -90.781078833545834,31.001399662724889,126.060511672869325 -90.77720175149004,31.001433697524995,126.053876963444054 -90.770553608540737,31.001316766734707,126.041842325590551 -90.759995386510923,31.001525855143278,126.024216519668698 -90.73577186625343,31.001165103657787,125.980630951933563 -90.735692864469485,31.001157104839447,125.980463179759681 -90.65241109369795,31.001453874844298,125.836529329419136 -90.649939040679925,31.001429899466721,125.832136858254671 -90.589892761665084,31.001594456602124,125.728310560807586 -90.588589733265891,31.001548471380932,125.725872249342501 -90.585664672016975,31.001642493827482,125.721141062676907 -90.584734652162837,31.00164250258948,125.71952439006418 -90.56841130408273,31.001677654449971,125.69128521066159 -90.548831367952388,31.001668103878242,125.657228299416602 -90.48796358447197,31.001638413788147,125.551430919207633 -90.487090566398805,31.001685419444186,125.55009286198765 -90.478498382354843,31.001662501498373,125.535097194835544 -90.477142353643757,31.001685512999668,125.53283101413399 -90.475308315151452,31.001743527093062,125.52986731659621 -90.443692637783073,31.001667828427177,125.474744467064738 -90.442938621735308,31.001674835132867,125.47346336953342 -90.438564528135586,31.001675876183619,125.465882863849401 -90.428062303925159,31.001721972364486,125.447848591022193 -90.423330203054903,31.001756014974575,125.439773778431118 -90.370583079970046,31.002281481757198,125.350363314151764 -90.348452567219482,31.00230567624725,125.312136691063643 -90.348441605744057,31.002305688231019,125.312117761000991 -90.347218579577813,31.002309699488386,125.310015707276762 -90.2607646543633,31.002604657336111,125.161584186367691 -90.165883694153223,31.002928364565584,124.998949340544641 -90.165485686161858,31.002973365845641,124.998432249762118 -90.132601977580791,31.002872678764984,124.941328977234662 -90.129612914817301,31.002995700027615,124.936638458631933 -90.051911243948723,31.003164416616027,124.803380689583719 -90.030778788250771,31.003139615166759,124.766904230229557 -90.023389630390938,31.003251678026292,124.75460864789784 -90.006536267833198,31.003313831855536,124.725841127336025 -89.976633627033522,31.00364209285771,124.675643595866859 -89.974005566569545,31.003342133617632,124.669992404989898 -89.928363582083236,31.003387556395932,124.591710842214525 -89.924321494922523,31.003396593548928,124.584800197742879 -89.898717947828686,31.003863806601732,124.542585887014866 -89.893909842030894,31.003709859698443,124.533748366869986 -89.858063071351907,31.004026176090271,124.473409855738282 -89.837108578493115,31.004010646444648,124.437400252558291 -89.836742610197135,31.004010375220197,124.436771469190717 -89.825817373938634,31.004011476732355,124.418037043884397 -89.817629197131694,31.004035551540348,124.404086302965879 -89.753840919543336,31.003805156732422,124.29389838501811 -89.733702414766285,31.006783182231974,124.270662231370807 -89.729345290362886,31.004383352625979,124.254136587493122 -89.729346270974588,31.004252577366515,124.253644206561148 -89.729579904466718,30.973095045371629,124.136281995102763 -89.745986608540377,30.92088972395096,123.96685843449086 -89.757740632441127,30.902388619072411,123.916941556148231 -89.772128931186074,30.901389540087731,123.937832206487656 -89.774607963142046,30.899650611526852,123.935497285798192 -89.791060744593366,30.853486966514865,123.78875451348722 -89.827372104095559,30.738559884282981,123.414620538242161 -89.84379258731677,30.668007579537775,123.174245554953814 -89.84378163229735,30.667974794123822,123.174101747572422 -89.824579466025611,30.610507895334646,122.921845542266965 -89.808037661968285,30.574014041275781,122.753970332443714 -89.761762976720746,30.517739542698802,122.459041676484048 -89.733769089806415,30.494482071405798,122.321779712103307 -89.72580591089077,30.493882177042298,122.305775756016374 -89.691771106164467,30.460755081224562,122.120216524228454 -89.684600534575011,30.453775748880108,122.081107033416629 -89.631129021053809,30.341438393307602,121.557412214577198 -89.631064797218571,30.323007405347663,121.486338772810996 -89.641881792657003,30.303304388847888,121.429060805588961 -89.64476275571711,30.295090813770294,121.402370642870665 -89.644627687546688,30.28967411251109,121.381261185742915 -89.608841068422095,30.219092316126087,121.047292456030846 -89.581939118835749,30.188195259016535,120.881567377597094 -89.573838880949481,30.18289562380971,120.847128612920642 -89.525687841744471,30.182752066480425,120.763707015663385 -89.532396942665443,30.179098206950215,120.761115979403257 -89.538677403677909,30.1737445288869,120.75121249537915 -89.556196983659547,30.172797436722856,120.777700982056558 -89.564009747249514,30.170666770360913,120.782908249646425 -89.569454965625553,30.165932055669472,120.773966577835381 -89.573277623270428,30.162361759010366,120.766735544428229 -89.588246829450398,30.152648158665652,120.754930889233947 -89.596205991719799,30.15189112849545,120.765713542699814 -89.599212086517127,30.154408962707599,120.780636322684586 -89.618727554462509,30.158421565492226,120.829792467877269 -89.624065328499611,30.15436729544615,120.823307211510837 -89.626238647823129,30.152716565507788,120.820666656829417 -89.642174845841168,30.140612334576836,120.801303918473423 -89.645736073862068,30.136108784564534,120.790015035308897 -89.651652996552272,30.128626209209756,120.771256101317704 -89.658171947980577,30.120382304854211,120.750584690831602 -89.659780086697154,30.119365208875088,120.749421130865812 -89.669350085719273,30.113312492530227,120.742497408762574 -89.6698237235249,30.113012931864358,120.742154764942825 -89.670343227952728,30.112684362036482,120.741778943687677 -89.670368117936604,30.112668619922861,120.74176094122231 -89.674067637531408,30.112491462834228,120.74746032897383 -89.675310567096673,30.112431943272494,120.749375255778432 -89.67581923194507,30.112407585086935,120.75015894882381 -89.676142264870066,30.11221359286461,120.749965281225741 -89.676948412891107,30.111729473649476,120.749481978826225 -89.677302898128175,30.111516593247643,120.749269462190568 -89.679341857381203,30.110292129096589,120.748047110624611 -89.679349282463264,30.110287670083082,120.748042658902705 -89.679478827177377,30.109747645078993,120.746174847707152 -89.679643600292849,30.109060765627405,120.743799063377082 -89.679684993448987,30.108888212549097,120.74320222530514 -89.680841103703671,30.104068807588831,120.726531463675201 -89.681008972159233,30.10336902479812,120.724110664799809 -89.681024167757187,30.103305679854174,120.723891532979906 -89.681228436661854,30.102454156777057,120.720945740118623 -89.681535844671956,30.101172684131846,120.716512436047196 -89.681671599738976,30.100606770431487,120.71455458458513 -89.682451143524759,30.09735713478279,120.703311459161341 -89.683092183289688,30.094684872247875,120.694065178744495 -89.683243329806402,30.094054797182384,120.691884962841868 -89.683367168769948,30.093538557413357,120.69009861536324 -89.683367615174646,30.093534032513691,120.69008185248822 -89.683462975677841,30.092567428175478,120.686501308344305 -89.683466349473605,30.092533230310192,120.686374629847705 -89.68351723758272,30.092017412280853,120.684463870711625 -89.683557431765848,30.091609991282763,120.682954632677138 -89.683578812156057,30.09139327286131,120.682151818647981 -89.68359513863517,30.091227782486897,120.681538772769272 -89.683877319120029,30.088367511559159,120.670942667871714 -89.684237054998121,30.084721114638782,120.657433080486953 -89.684354278419207,30.083532900894213,120.65303055755794 -89.684898016496774,30.078021399554792,120.632607665844262 -89.69874269746164,30.072845812770439,120.636459184810519 -89.699647750753556,30.072507474757085,120.63671116437763 -89.699682268019586,30.072494571093415,120.636720774695277 -89.700095345275301,30.07245445220315,120.637278881855309 -89.700330306997628,30.072431632250144,120.637596343643963 -89.700814807418794,30.072384576599084,120.638250963762403 -89.713034100883505,30.071197814337005,120.654763333499432 -89.714128561383433,30.07109151813955,120.656242562457919 -89.714189488776213,30.071064534445135,120.656243249773979 -89.715271085657733,30.070585513788522,120.6562554622069 -89.716013432128463,30.070256741304142,120.656263862736523 -89.716680626459691,30.069961252409904,120.656271422281861 -89.717070546588445,30.069788563491194,120.656275845132768 -89.717423964481199,30.069632040784906,120.656279858201742 -89.717611474296234,30.069548995912832,120.656281989999115 -89.717936282298467,30.06940514403507,120.656285681761801 -89.718073689734027,30.069344288645134,120.656287245452404 -89.723178247901131,30.067083567628273,120.656345653347671 -89.725619514664913,30.066002372567812,120.656373826786876 -89.727516768850734,30.065162111321619,120.656395825557411 -89.728639796122479,30.064664741859207,120.656408892944455 -89.729212447913866,30.063844404533093,120.654218468815088 -89.730757094593073,30.061631661392031,120.648309897631407 -89.730866957486214,30.06147428018248,120.647889639250934 -89.730976400866112,30.061317499935573,120.647470980882645 -89.731098167813826,30.061143065884487,120.647005180828273 -89.732177026028523,30.059597575813584,120.642878094688058 -89.732185811612524,30.059584990255345,120.642844485118985 -89.732395007734297,30.056561700204469,120.631483476608992 -89.732615106063577,30.053380852185786,120.61952936835587 -89.732638368487699,30.053044665014731,120.618265866301954 -89.732731551103697,30.051697995399241,120.613204516470432 -89.73273172924624,30.051695420894688,120.613194840028882 -89.732731121725351,30.05169456096694,120.613190453499556 -89.71748614509255,30.030115750074877,120.50311994086951 -89.717486288592823,30.030112230763159,120.503106533549726 -89.717487022649735,30.030094228187647,120.503037941642106 -89.717514499177966,30.029420372703459,120.5004703970626 -89.71752201116152,30.029236143047676,120.499768430367112 -89.717544217450822,30.028691538957577,120.497693320736289 -89.717563124268139,30.028227853654212,120.495926510542631 -89.725835256855959,30.024459987203972,120.495606544427574 -89.725855285111038,30.024459063494234,120.495637591928244 -89.726946659836287,30.024408728931888,120.497329506091774 -89.734509438129109,30.024059931097042,120.509054849855602 -89.735547102537652,30.024889934478303,120.514070744626224 -89.740214558261769,30.028623322651232,120.536631588824093 -89.740760825870439,30.029060269276744,120.539271960966289 -89.742072371719743,30.030109343986236,120.545611212030053 -89.747013386829337,30.034061545877922,120.569492217153311 -89.747499581156774,30.034450441296563,120.571842013858259 -89.747691846402219,30.034604229748716,120.572771236300468 -89.747693169944569,30.034604982804481,120.572776446118951 -89.758325390528157,30.040654396085927,120.6146360039711 -89.764403318048096,30.044112553775967,120.638563926331699 -89.783721771081801,30.04737619909913,120.68464867118746 -89.78581781186476,30.047257269857933,120.687815087847412 -89.814872760172662,30.045608693587425,120.731722236610949 -89.819749518615495,30.045331986552139,120.739094594493508 -89.830950385091882,30.035279440517215,120.719514364376664 -89.831631021739057,30.034668583205494,120.718324448913336 -89.833401421317006,30.03307968620727,120.715229319408536 -89.834153491603331,30.032404718683903,120.713914480060339 -89.834982748548484,30.031660477731503,120.712464681826532 -89.835832370159594,30.030897959913428,120.710979260504246 -89.836390232374995,30.030397290117318,120.710003924556077 -89.841114430326186,30.026157420210662,120.701744094491005 -89.84112174736768,30.026150853317404,120.70173130184412 -89.842151539140247,30.024999478276545,120.699049578048289 -89.84292786045205,30.024131499909764,120.697027886286378 -89.855722145059275,30.009826647042757,120.663703618571162 -89.858746889568025,30.006444783502406,120.655823806300759 -89.853500458194333,29.979657312463647,120.542732696048915 -89.845390022912881,29.957653603173576,120.443185895681381 -89.83968778411348,29.947825198573401,120.395097003318369 -89.83021050311693,29.94123764863804,120.353052266873419 -89.819217207569693,29.936155029039369,120.314227808266878 -89.805649898774746,29.934598237400611,120.284654328599572 -89.776645335181954,29.939426231267166,120.253172555938363 -89.749677857427514,29.947841008308625,120.239195635542274 -89.729118570502521,29.960789477009168,120.253958200104535 -89.720252320177664,29.955708837797683,120.218861845321953 -89.714095101032456,29.948359299724686,120.179626104421914 -89.737496482982891,29.93827364728395,120.180894888937473 -89.743912616071881,29.937904609996441,120.190566989593208 -89.747458601081178,29.930232002729642,120.166857035830617 -89.743664282300259,29.910182146762995,120.082254667766392 -89.712342269779953,29.881301027488004,119.91553279850632 -89.693187734622555,29.870736784527317,119.841201867908239 -89.672737847778393,29.869549671104025,119.801183891482651 -89.66175122957965,29.864924705339998,119.764143235050142 -89.6391982694023,29.866080696655004,119.729642238467932 -89.614341264244544,29.874175258631986,119.718231923878193 -89.599311143518889,29.883423614734195,119.728315835818648 -89.59237605914727,29.899032554135076,119.777172603644431 -89.593528361358722,29.919266485936895,119.857988424599171 -89.584281507349914,29.933717750157115,119.898294668644667 -89.584281671407936,29.947592944267871,119.952304363250732 -89.576179244461258,29.961466304056689,119.99230317119509 -89.575607315103213,29.985747422996127,120.08574943151325 -89.582542713991842,29.99673117477505,120.140410894528031 -89.572715904284692,30.001934222784197,120.143680355511606 -89.552474753910559,30.007717166356503,120.131247985176742 -89.502768514833136,30.036043991395129,120.155646181665361 -89.495245852110656,30.042978796055888,120.169624360278249 -89.495818185670799,30.052806816381597,120.208768591284752 -89.500457053549511,30.060899208701102,120.248166589066386 -89.494666376349528,30.074196562323205,120.289799801073968 -89.483107677037808,30.081133310884677,120.296820464543998 -89.460127259236842,30.065455975754354,120.196450241841376 -89.445798917887885,30.062965244426522,120.162137296050787 -89.430226884503981,30.054247374197818,120.101511840708554 -89.41964465654749,30.051754701913524,120.073637754656374 -89.373554548890581,30.056736835341912,120.013785562478006 -89.369815976372251,30.049264288752386,119.978338637389243 -89.373554335045753,30.03867905382571,119.94363431725651 -89.382274847426189,30.03244991847896,119.934410866349936 -89.394733910077932,30.031826138209951,119.953398023732007 -89.417149444036227,30.022486166131564,119.955634997226298 -89.423993099501786,30.017504384960731,119.948040558956563 -89.433964844649125,30.010031715907758,119.936143623664975 -89.43459026958233,29.993215545422622,119.871827667579055 -89.433964498574483,29.980763159197569,119.822308699600399 -89.406558968437494,29.967683529754087,119.724253392778337 -89.394733159385581,29.968307304122014,119.706340938806534 -89.380404818180509,29.965816572483885,119.672004797495902 -89.379778673430167,29.921602864169106,119.498683368787169 -89.369196379895172,29.913506711111772,119.448917345143855 -89.333070469158699,29.917865084326806,119.403797735460103 -89.316628855791819,29.925223375552136,119.404234049841762 -89.284737887960446,29.975332664532036,119.544717370532453 -89.274491631352106,29.995831808390324,119.606939258053899 -89.25170986766382,30.004372648125273,119.601104306057096 -89.244881351548486,29.999247945889032,119.569451337680221 -89.251144964951379,29.977610213053236,119.495951226912439 -89.219245743413012,29.974762983204901,119.430165205150843 -89.224944897062883,29.963943140447906,119.397784476168454 -89.232352771028999,29.927499468108845,119.268426762893796 -89.246017365337693,29.932055750680373,119.309637574478984 -89.26423674630162,29.931487229780551,119.338686490431428 -89.281319275949855,29.926930673211341,119.350244941189885 -89.319482016477096,29.900165988204797,119.311410647816956 -89.323464519332589,29.889349976417449,119.276052290573716 -89.312638108166183,29.883653137446,119.235209429636598 -89.290428448274085,29.882516618327308,119.192608596757054 -89.273353568308764,29.888780157110077,119.187729298137128 -89.242598848406175,29.891627945054157,119.146043767221272 -89.237471751193496,29.888780476509158,119.12612805981189 -89.237471637773552,29.879099309830583,119.088327348232269 -89.255690878516177,29.86657046710344,119.070674139074981 -89.271072016492397,29.862015833544735,119.079299837350845 -89.296127455289437,29.85916809654179,119.111225952394307 -89.318901615671919,29.85290450733639,119.125907794572413 -89.364465281629137,29.847779339330849,119.184265831485391 -89.384965826161832,29.840947411954868,119.192866147495806 -89.384393509139841,29.832404875359934,119.158504746854305 -89.37414695163055,29.827280204524726,119.120836390182376 -89.346810182275661,29.822155685771722,119.053753094747663 -89.343956474188758,29.80051803892966,118.96422981005162 -89.333145296118047,29.79254585927022,118.914435470476747 -89.319480736187145,29.790837090973447,118.884236410260201 -89.294425430877254,29.805074882795449,118.89684646949172 -89.27847207615865,29.809629520953433,118.887236570939422 -89.278471983057713,29.801657244974983,118.85604752600193 -89.28530802140358,29.797671046298468,118.852202959358692 -89.285879939343459,29.772045324123287,118.752880668267608 -89.270498642267256,29.762936468123776,118.690758220851421 -89.272207610398382,29.758380049512997,118.67584895901382 -89.306372781960988,29.758950012046046,118.736849788576365 -89.317199172483811,29.76293605371194,118.771090547554195 -89.326308998616469,29.774324120528199,118.831356819719076 -89.338836814017995,29.781157660799966,118.879667130298913 -89.355354835453312,29.783434762103962,118.917014963924885 -89.368447085146059,29.777171259830194,118.915048573166132 -89.387238848014931,29.790836488534129,119.000885869376361 -89.395783907158844,29.786850274714936,119.000013417564332 -89.400338587295025,29.772614572874446,118.952159523032606 -89.415711935088879,29.754394544699174,118.907338825985789 -89.429383977696361,29.743574634354236,118.888548313640058 -89.425385577030809,29.699664218682127,118.709584656171501 -89.449296679338062,29.705341868043526,118.773108312860131 -89.473169745760373,29.720622484977046,118.874204461462796 -89.488139024728724,29.727944256903811,118.92873471416533 -89.507243505711514,29.733675351495815,118.984176574274898 -89.53143697643641,29.745772777144229,119.073337700217962 -89.541309624798984,29.745772689192833,119.09039859380573 -89.561360006893977,29.737495076854731,119.092658126726747 -89.574101499421388,29.748638982856725,119.15830597281456 -89.599248534111126,29.749592379995736,119.205532227642834 -89.635229593184306,29.755002906669027,119.288965743966401 -89.652418946204477,29.751501055491079,119.30502968467772 -89.650831651264909,29.721894940851396,119.186429111286998 -89.645742631811643,29.712980533923581,119.142712453380227 -89.61962653590686,29.70279227634963,119.057581956498325 -89.600209359268959,29.706933073205409,119.040188316255808 -89.594159086266941,29.704066541337351,119.018487620167434 -89.600842441458681,29.692287351065943,118.983903098851442 -89.597981286569549,29.686237602840233,118.955240835435688 -89.575061975463527,29.676051223838989,118.875639396719635 -89.558498160406302,29.672231164150332,118.831999279558659 -89.534938085016975,29.672231373607605,118.79124768357724 -89.489091606928611,29.632435256089742,118.555799837224185 -89.486543264225361,29.626387412436841,118.527642561122775 -89.487885110206307,29.623032946650149,118.516786166466773 -89.48810727823539,29.622477551277083,118.514988590963185 -89.505914795492501,29.633537493057165,118.589212880469859 -89.524195308847112,29.641456202048325,118.651915062218904 -89.536379819487664,29.650595600393007,118.708861099556088 -89.584514750752703,29.654861674301266,118.80889671575278 -89.610104344860972,29.65973445151414,118.872320505790412 -89.622288741723324,29.659127839953946,118.891046345233917 -89.624730264212914,29.664611140660178,118.916779033839703 -89.633878210767662,29.67375056574749,118.968459612689912 -89.645452292713571,29.677406646740785,119.00284396763891 -89.650930286735971,29.674967234655007,119.002774918451905 -89.642407779112588,29.64998815452638,118.89005926810205 -89.64240763700677,29.637800874697049,118.842246164567769 -89.648503532938605,29.627442586368829,118.812164113856852 -89.658856828571501,29.626223766315977,118.825331735424697 -89.675916547975262,29.628661070430908,118.864483435638249 -89.685667101331546,29.626831938106335,118.87421980779618 -89.689321545804901,29.617083989308888,118.842302069999278 -89.685666845725493,29.604896742568005,118.78811421431601 -89.672261542787169,29.590274034071602,118.707422996871173 -89.669827621771773,29.582353277979927,118.672080403193831 -89.685666384970219,29.565294761412442,118.632527930662036 -89.685666243339071,29.553105575580656,118.584605830721557 -89.682271589104218,29.53652045588009,118.513481369242072 -89.697409802373897,29.527037850249808,118.502462861128151 -89.700877714113062,29.525456740649137,118.502265357412398 -89.702024801075808,29.522818552401937,118.493876744993031 -89.701680607698307,29.51800102210035,118.474319951608777 -89.695056214469162,29.510593541663678,118.433655391447246 -89.666991911421746,29.492056245228433,118.311914878897369 -89.645217753229346,29.494378837721271,118.283258619718254 -89.636508046133301,29.491330764336748,118.256133051589131 -89.618735465296581,29.470335710540656,118.142548160627484 -89.597709877437765,29.458341565858525,118.058770948089659 -89.593650715893787,29.451860963446627,118.026167434640229 -89.590712670160798,29.439702148090745,117.973099895752966 -89.578272201191069,29.435731999683917,117.935849200002849 -89.575811172112751,29.437773907423871,117.939638418145478 -89.575829234346614,29.443139607731268,117.960843501612544 -89.549861962951809,29.467761463136,118.012944457121193 -89.529604402437073,29.456741256893103,117.93436783272773 -89.533325250088382,29.436607347622527,117.861363624222577 -89.533118143338527,29.42771984555765,117.825919000431895 -89.519542560264753,29.402272386174392,117.701875812374055 -89.509725188736056,29.38821125804958,117.62928781285882 -89.506212112115179,29.388083296139087,117.622692543081939 -89.488481816630539,29.395389044233774,117.620843952521682 -89.485527800774676,29.399513839900489,117.632028276100755 -89.483491857706966,29.408264369226764,117.663080030120909 -89.478313804525598,29.413283134648584,117.673939826898277 -89.471315542488867,29.403513741712189,117.623217253945768 -89.458476172066014,29.395191319442986,117.568088000640273 -89.42355239519722,29.392671767396205,117.497668797150254 -89.381172500228857,29.393829075389913,117.428930278867483 -89.374280299654828,29.389219393274125,117.398782158270478 -89.356698858476065,29.383613860632554,117.346212996169925 -89.341474530153079,29.383457003069658,117.319278424605727 -89.337759414029264,29.380273213406806,117.300261662341654 -89.348785499207878,29.367045855123493,117.266975007019937 -89.351864388542097,29.351590691244517,117.211115851998329 -89.324339734762063,29.346029243261402,117.141511592082679 -89.304935472336481,29.359501661009354,117.161334658041596 -89.284197015966498,29.358513897938693,117.121605886146426 -89.273711730703539,29.353242284135554,117.082624300383031 -89.266468508535027,29.34739967380423,117.046976364217699 -89.259020251917988,29.338920212522201,117.000523089431226 -89.254712999101699,29.324851035999558,116.937327940016985 -89.242037582115131,29.31213085745722,116.865013009868562 -89.225359563414756,29.315841724122972,116.850943324156106 -89.224611298774562,29.320115563794204,116.866598975844681 -89.220901291325376,29.326461241822582,116.885356432758272 -89.205870130786451,29.34072257695636,116.915956911630929 -89.201556103506718,29.346466294048597,116.931278977543116 -89.2017661450963,29.349720110585455,116.944534124806523 -89.190520873635606,29.347109354669492,116.914800378493965 -89.180713600702433,29.341656744781229,116.876284494064748 -89.17851750342173,29.337259009470664,116.855067524127662 -89.179387428349074,29.329019461872125,116.823902282863855 -89.166180872365004,29.305089913545103,116.706224602647126 -89.158758640703496,29.29874233288821,116.668242135085166 -89.141440204711486,29.293136797117146,116.616144545376301 -89.135501943772795,29.281392505008739,116.5592857375741 -89.138143954072135,29.277291711101093,116.547555279918015 -89.130852688399045,29.267685311460898,116.496835423633456 -89.101269877690001,29.252274430410466,116.384628476575017 -89.097336710608317,29.244984872099309,116.348877788521349 -89.096707641631866,29.240083151586205,116.328307124786079 -89.09955264554047,29.235018409985674,116.313071223907173 -89.106996790296179,29.233663420974686,116.320510663092136 -89.107407621708944,29.217968295095567,116.258796825073659 -89.10181339302251,29.208370880560704,116.210971144028008 -89.091887108234658,29.202049320468561,116.168707055971026 -89.069427672338634,29.206223282142016,116.146623217500746 -89.068533703555516,29.210693039919054,116.162871492095292 -89.030265019089597,29.223012683522214,116.146004664711654 -89.023011831412433,29.22021890270079,116.122406258247793 -89.016353613602163,29.213618329531336,116.084681528620422 -89.001834946447914,29.182150215318309,115.93439871724695 -89.006450875424406,29.167009022406916,115.882014157250524 -89.014415028057655,29.165340046768677,115.889071840792894 -89.019505157466597,29.16710590382862,115.904871732927859 -89.025430341204654,29.17210257285609,115.934982656501234 -89.045080679378799,29.164587822984775,115.938879218883812 -89.048394697819447,29.159893057016337,115.925879091024399 -89.039891341114,29.144440995754827,115.849636900238693 -89.033165223054183,29.146807921530709,115.847488025203347 -89.02530997035376,29.139359406606509,115.804258903488517 -89.025102925473135,29.135761609844192,115.789554202929139 -89.027191930257487,29.132187791866301,115.778898419812322 -89.053114222954022,29.108616887652271,115.729524428024888 -89.05663604748284,29.086231111677861,115.646234882995486 -89.063496038694737,29.072298833378238,115.602422277443111 -89.092421622956707,29.068995768314782,115.639127527363598 -89.099229780948534,29.070048650343164,115.655081531964242 -89.10617099342312,29.075705273035318,115.689651747234166 -89.122704297101379,29.07113838598826,115.699953822419047 -89.144615526329076,29.049656401406324,115.651984629221261 -89.15750159190749,29.030848345476965,115.599085912108421 -89.163162568560338,29.017927021951696,115.557211700826883 -89.163488257074661,29.013780032657738,115.541191561147571 -89.165950742259071,29.010770504599414,115.533413033932447 -89.171012578059518,29.010770460812754,115.542164599522948 -89.17689529353126,29.014190302867618,115.566012528724968 -89.187224108174163,29.02005969396172,115.607342203147709 -89.183313108310486,29.027552307095768,115.630531574599445 -89.191056354394178,29.034700838691727,115.672492572106421 -89.199034492466978,29.031766934315041,115.674565099179745 -89.203726614332211,29.033668786888438,115.690281349234283 -89.212307901504417,29.042878195490751,115.741922751069069 -89.217265182367811,29.058435279263929,115.812636175192893 -89.216695226752918,29.063474001423121,115.831770328804851 -89.218365328434842,29.069338657832496,115.858073431067169 -89.227029642077554,29.080722943891104,115.918499266728759 -89.237474932756186,29.086667519710897,115.960288279689848 -89.255891312150581,29.085323435197328,115.986789487302303 -89.258448342440602,29.083148535021071,115.982536976225674 -89.25803425159674,29.075862947441205,115.952748069539666 -89.254805082959066,29.067017471899931,115.911854423582554 -89.260519131165623,29.060421792522494,115.895414415746927 -89.284380585392128,29.055388867950072,115.91663639806211 -89.292255751364863,29.055160812382461,115.929365955293179 -89.306053959142375,29.0484425783863,115.926446721889079 -89.31655511364292,29.041145388492055,115.915505222044885 -89.319268129638814,29.037406574952634,115.905275763012469 -89.316348037068835,29.034726750842836,115.889510976150632 -89.326016031978583,29.015870726399235,115.830938099883497 -89.336394267295532,29.017068569016228,115.853721023537219 -89.33941554890707,29.015000455749568,115.850696773268282 -89.384980547184654,28.949502947546559,115.667845845222473 -89.412646886396715,28.927080970047282,115.62615476269275 -89.421032117857237,28.931778632828763,115.659539433196187 -89.413555269864901,28.959572133033255,115.757779435254633 -89.409324267484649,28.96740872873745,115.781777226366103 -89.399271183921314,28.979083159137538,115.811004880815744 -89.383272892972656,28.983592044344121,115.801252987235785 -89.376215785401911,28.987434889445833,115.804366656579077 -89.335901541460387,29.042399150054475,115.954048286192119 -89.340994784078106,29.054284438230173,116.010329455137253 -89.355965333018972,29.074605166981328,116.117374920286238 -89.375689885828763,29.086235342408486,116.197965395636857 -89.406822582331756,29.088996916289933,116.262984331697226 -89.412322913320409,29.107897807352021,116.347863203845918 -89.410540124131415,29.129913587481862,116.432471164502203 -89.418887425137768,29.140747906868313,116.490090440958738 -89.43013473139743,29.146567482268264,116.532768784090877 -89.434101867289783,29.151080194517764,116.557612315751612 -89.448642513102811,29.180631410417835,116.700394749641418 -89.456999832643589,29.193045641453182,116.764248009771109 -89.473481373000567,29.209603569268573,116.858643538318574 -89.484015683412494,29.217106056634027,116.906726417131722 -89.537773072502958,29.238263400059928,117.084056578576565 -89.607825747802877,29.254072899295608,117.268513737246394 -89.672957559833264,29.291075253538224,117.528455073945224 -89.698435190441472,29.298725600596995,117.603095167316496 -89.727339890428041,29.30607193430664,117.682508142665029 -89.783328163869598,29.313177042213454,117.808183798566461 -89.821038955759164,29.31228575900478,117.870422642678022 -89.85148562057914,29.313812404334705,117.929590250365436 -89.856289990213895,29.337040060614669,118.029811861924827 -89.854880025279883,29.342682757069621,118.049652156420052 -89.84830498401864,29.351228336738746,118.071947029791772 -89.836180839867438,29.361084892246243,118.089736888185143 -89.82200475108958,29.379526985622668,118.137850956991315 -89.818096734202229,29.38642574597019,118.158275392837822 -89.817335745372347,29.395558031494986,118.192996890284121 -89.81809690120825,29.400885184958565,118.21534732542932 -89.820380186655953,29.406212324960705,118.240347404964268 -89.823424566417259,29.411539428743769,118.266670542769134 -89.827230049295224,29.417627620329675,118.29731887485832 -89.836573285121645,29.420576328434649,118.325234305113554 -89.844734993476479,29.423715660936537,118.351842439733446 -89.846257331835545,29.436653015772578,118.405503311194479 -89.837955148627259,29.456076867046189,118.467581641860306 -89.834841350099367,29.458722764978639,118.47258021030575 -89.834841385388287,29.46176687777783,118.484572756104171 -89.834080335206806,29.465571973932711,118.498235794715583 -89.834841473633858,29.469377115575703,118.514549589715898 -89.835602603242023,29.472421192153519,118.527864508330822 -89.841691274966294,29.475465221410662,118.550460315309465 -89.850824341547664,29.480031294779341,118.584353365935385 -89.863762690924233,29.478509138112297,118.600909390486777 -89.877407025858915,29.474203200457087,118.607741689309478 -89.903362436847161,29.462046649009576,118.605139060877264 -89.920182611609434,29.446290380263317,118.572426932863891 -89.933781637358962,29.431325048700252,118.537198776379228 -89.95661410247655,29.430563839718545,118.574073315598071 -89.963134393966158,29.434910266648334,118.60258961841464 -89.965747186247071,29.436651954230292,118.614016120322049 -89.974119181625625,29.445784158645445,118.664616278372705 -89.993146443518924,29.465570559346066,118.775768973864615 -90.013695655032762,29.464809370260586,118.808685065247118 -90.019784196620009,29.45415499550305,118.777387520298362 -90.023589490882955,29.446544724324955,118.754076075740159 -90.030651569162487,29.434050909505295,118.717220481485128 -90.033483335658914,29.429041114331653,118.702438622713089 -90.032722103026742,29.414581682538923,118.644132620655 -90.034480446887841,29.395312216413192,118.571246871724725 -90.030653209754561,29.390174077993997,118.544288146309555 -90.030799112714647,29.38869675245957,118.5387171395123 -90.031151779726699,29.385125858675778,118.52525033056736 -90.031946192170935,29.377082116977817,118.494910332374275 -90.031949631876273,29.37704728859476,118.494778951629996 -90.032039860731615,29.376915227441689,118.494415852241218 -90.034789675619265,29.372890531324668,118.483349548652768 -90.036600201286731,29.370240601826325,118.476062686182559 -90.037559169043647,29.365700847648171,118.459827235899866 -90.034027280885709,29.350665195604616,118.394297509454191 -90.032999900394913,29.346291519210453,118.375230913981795 -90.035459320287828,29.324702716047344,118.294270323589444 -90.029719913393762,29.309126052453522,118.222667280584574 -90.014961835511343,29.304753771651534,118.179543846286833 -90.010862287900153,29.296828814697278,118.141033805906773 -90.017471752727047,29.286301342197259,118.110974033363163 -90.020700836715235,29.284258050470562,118.108547082170844 -90.03327246009907,29.28207173462209,118.121918488293886 -90.044477651615281,29.284531119941192,118.15127557143569 -90.058279144065054,29.28337549705806,118.170888769440353 -90.062241889953981,29.278792173847712,118.159706699661911 -90.060875357317443,29.274693046728142,118.141097723506391 -90.061695188646468,29.269774080876971,118.123075558803976 -90.071807113044045,29.264581752520836,118.120258962735534 -90.087931582275559,29.261302300388955,118.135557518340647 -90.092304359533387,29.263488465986292,118.151876163668931 -90.098863485958759,29.264034962891216,118.165542756207287 -90.102416319459749,29.261848721732679,118.163125573657453 -90.097223458931055,29.242719473212233,118.07831303961575 -90.074539672449802,29.2293291654772,117.985504521988332 -90.074539480713227,29.212659350571563,117.919470923021436 -90.071806493334904,29.210746444043277,117.907097365707159 -90.064794252490017,29.211522457643444,117.897872674278915 -90.044093555409816,29.213813311960134,117.870650342665613 -90.020955297055522,29.233950385436348,117.909872589632869 -90.006901099715392,29.242674019898843,117.919800992123783 -89.971163516374787,29.257799486970622,117.917119496501982 -89.966849463714169,29.261172335845202,117.92292233556509 -89.960691431519933,29.269722910523349,117.945993049070239 -89.952357236917024,29.268170071378524,117.925265924073756 -89.951107176244022,29.26520024906829,117.911323270760477 -89.951938166805064,29.262847373741721,117.903462707065046 -89.957642206610359,29.255790719296758,117.885504277423024 -90.023212162810864,29.218113255052128,117.851086932234466 -90.059695563058995,29.185736752066969,117.786718023009598 -90.08045984474299,29.172020339825934,117.768753896467388 -90.089868035663997,29.164624939770793,117.75593207962811 -90.105346146315952,29.152458220352884,117.734836294315755 -90.175458109487124,29.107354140238847,117.679007401689887 -90.224772917512439,29.087128844166852,117.685461110435426 -90.233170124862824,29.089783620285136,117.710797129198909 -90.246469383199724,29.087877610144105,117.72665143199265 -90.344481116117066,29.059116365367156,117.78521219920367 -90.349956239870465,29.05987127430782,117.797877711243927 -90.351079330711357,29.065734933476438,117.823160585016012 -90.326701949499494,29.077191502915205,117.825653623789549 -90.305316131427702,29.079385295235195,117.796643143519759 -90.294117761346712,29.080814859564484,117.782573966309428 -90.284170136981317,29.084379473915931,117.779195682145655 -90.267476866866005,29.091474221573964,117.777953622862697 -90.259331468129204,29.093680391607748,117.772362919524312 -90.254327953721699,29.095824647640331,117.772063726559281 -90.250992358404872,29.102972012834339,117.794572197832167 -90.251230698440722,29.110119364935873,117.82337143085897 -90.245035878049492,29.112501871169453,117.821919064037502 -90.235421430672986,29.11232033023083,117.804266424849629 -90.235591647210043,29.1308752833779,117.878215407021344 -90.244621923519347,29.138361781738379,117.923819690011442 -90.24981605663929,29.140420619775512,117.941133416257799 -90.270197496103719,29.141292390108557,117.980487698689103 -90.281703776180933,29.144571103456162,118.013762292452157 -90.279507823888011,29.152740662795019,118.042290379293263 -90.298188454813285,29.173365335734054,118.156953794881701 -90.304034621507995,29.177146070991885,118.18223469145596 -90.304136771772136,29.189995346769251,118.23331527877599 -90.302073823144511,29.198217902315449,118.262244341894984 -90.294371702604522,29.201835767132614,118.263003426603973 -90.283988400276812,29.194592266946376,118.216032422147691 -90.27703926677718,29.195715265441887,118.208243138156831 -90.272439296324336,29.206685689021249,118.243586615659297 -90.287809863312177,29.227739368193685,118.353980273008347 -90.301493215781846,29.233285934612773,118.400018073618412 -90.312852532743463,29.239998456095286,118.446574170142412 -90.312712742853208,29.258417421710082,118.519158544018865 -90.317282936434992,29.266819908700874,118.560417763888836 -90.333986429507419,29.278998075465033,118.637952455319464 -90.368357120754965,29.276169928137129,118.687331569381058 -90.369345102237034,29.272778110002928,118.675673644058406 -90.36820301119657,29.26699844511435,118.65082591958344 -90.37375605821228,29.260965734832865,118.636775250546634 -90.389115310426675,29.254828943080369,118.639601067639887 -90.385048025882952,29.237649945629265,118.564517810940742 -90.400655954528716,29.203091751567829,118.455343196168542 -90.409769092726265,29.198466930861386,118.453121433034539 -90.410607584780834,29.198181325038341,118.453470894135535 -90.434103508504819,29.190178181067502,118.463272023946047 -90.437098575115044,29.190495136558344,118.469815481454134 -90.445145829560275,29.197875649253696,118.513237555511296 -90.47368139273523,29.194733572086093,118.551211091689765 -90.474465438540349,29.197269422266437,118.562631047330797 -90.46996538155885,29.200514279596288,118.567519440315664 -90.468425396418354,29.204594063550257,118.580940290354192 -90.486978870573211,29.211887487473451,118.642572109587491 -90.496121142151395,29.218757019128216,118.68589486181736 -90.492180107700378,29.22292681949023,118.695418088696897 -90.46951270855584,29.229575647321759,118.68166043702513 -90.466956833572041,29.244993802357477,118.738090237602592 -90.464058852197383,29.251851442336999,118.760071414522827 -90.451866757501918,29.265780767514858,118.793576617725194 -90.45337881843669,29.268291612795025,118.806162743829191 -90.473972324592793,29.274597074300232,118.867417842149734 -90.496492968993991,29.289317045262379,118.965293469838798 -90.511749331995532,29.292964703755811,119.006634523160756 -90.518471377765778,29.284759105146808,118.986127880401909 -90.527410493108491,29.278532375491139,118.977346487343311 -90.553200058104707,29.280552031268535,119.030902618542314 -90.566631416833872,29.287150539891289,119.080688932910562 -90.583720669829063,29.278076897494319,119.075108662247658 -90.59091950078242,29.250562381793689,118.979225523769855 -90.589665443587009,29.247904542650609,118.966509646736085 -90.585119313645109,29.24492775090112,118.946707463823259 -90.57770117083065,29.246027755274515,118.937926445156336 -90.566572919824708,29.244516939791779,118.912271124310791 -90.545741689684775,29.232726210498534,118.828839735127985 -90.544439751066093,29.229885920647355,118.815312258899212 -90.54550490582821,29.2263355285716,118.803163568489254 -90.557695439075644,29.221956614982574,118.807418549433351 -90.558584350788223,29.209924959296711,118.761424338445067 -90.562083382214226,29.20630513200026,118.75330176204443 -90.57647171371346,29.208870859011128,118.788910305127501 -90.619608576882072,29.205333673088035,118.85130378510803 -90.625356779446108,29.212409222991809,118.889456394128501 -90.628615855136104,29.213047157917785,118.897751088254154 -90.635014967416566,29.21117120644282,118.901672662235796 -90.641418955610021,29.19859785788152,118.86331373360008 -90.646807828522398,29.177911976048016,118.791052235290408 -90.646364785525691,29.175003144046709,118.778758860193193 -90.642058675697726,29.173306278191856,118.764412098564208 -90.63816851674116,29.166617690152549,118.731049492955208 -90.64823731091073,29.130627630978676,118.60640583653003 -90.678919839032034,29.120789912703209,118.621866612695158 -90.692305153418459,29.123769625055651,118.657426745630801 -90.702089355071578,29.123517551984502,118.673796493560076 -90.719231657162098,29.118658673381642,118.684987546876073 -90.732436005734641,29.124933201162644,118.733291279524565 -90.765386583880783,29.115421444151618,118.754165635444224 -90.774655624114089,29.102181109447809,118.718191800639033 -90.800642018813178,29.089425598320432,118.713861981406808 -90.803251026324119,29.085370804243603,118.702433358877897 -90.804896833844253,29.065758898475814,118.627610811963677 -90.799917627517232,29.056891444422718,118.583581684157252 -90.783178215857191,29.051481899684866,118.532338251359761 -90.766384865136416,29.051454050971834,118.502356047742069 -90.751288594423357,29.055297968136962,118.490762425586581 -90.726496231068367,29.068666433250485,118.499728024937212 -90.710300866088559,29.066355708182005,118.461786555126309 -90.706545768873426,29.064729833540465,118.448665502481163 -90.703297963401383,29.062326454418841,118.433360686525702 -90.693400332107373,29.061657837912815,118.413127305917442 -90.684840241955129,29.062995326027199,118.403232137672603 -90.678152687791069,29.065670211961052,118.401970714330673 -90.666783836424997,29.069281328696984,118.396114790812135 -90.653542448473829,29.071287563147781,118.380572437308729 -90.645383617652442,29.073561244589122,118.375115123577416 -90.642441093393387,29.074363716379775,118.373077842406929 -90.640434822469302,29.07489869797072,118.371640702709556 -90.63881746141972,29.074134905087739,118.36574090924114 -90.637227401731494,29.071843048728155,118.353826669976115 -90.638689395610641,29.068659215612939,118.343787373043597 -90.649252570915081,29.064700345320883,118.346821710467339 -90.732095066956319,29.044310760494682,118.413039351813495 -90.756873546574823,29.041048724276692,118.444148054346442 -90.798877431449199,29.041792307846109,118.521826134994626 -90.812670682571607,29.038631363704635,118.533833699300885 -90.840543293423423,29.041217968720009,118.593726876191795 -90.843960408302451,29.044997724341254,118.614808417856693 -90.846047518521331,29.050771379020638,118.641428419388831 -90.842424507113577,29.056316097655007,118.656967543065548 -90.845791727798996,29.069329331460207,118.714563338086009 -90.863956425777403,29.096910609423777,118.856207903474569 -90.868965536789901,29.097481532353548,118.867389738559723 -90.878782851020617,29.106937909924714,118.922324871644378 -90.886551153574786,29.11906215506713,118.984161094762385 -90.89941558798715,29.133387230287582,119.063765012659132 -90.926998415792681,29.155159752881062,119.199015577323735 -90.94307885847951,29.164416085726536,119.264259532094002 -90.949293124553662,29.176146367376163,119.321688262745738 -90.962480477426993,29.182858869863335,119.371708393096924 -90.982660785556305,29.173253231186088,119.369737785309553 -91.001299153254251,29.171523161508301,119.396142607554793 -91.025158711457337,29.176825647514338,119.459654286503792 -91.032989960750342,29.184229158831712,119.50286609120667 -91.059834513617105,29.183774943050064,119.548987014219165 -91.095220318837605,29.189751286899078,119.63577121309936 -91.115965986201559,29.209956958443055,119.752557965926826 -91.130347377949036,29.217901380035272,119.809585494920611 -91.200854905003411,29.223324437486443,119.957026859745383 -91.220240362977208,29.228087993267025,120.010485019534826 -91.280001857049996,29.249811225640073,120.203036239370704 -91.303887565924995,29.26799198239177,120.317378929816186 -91.336096620028883,29.30080683737992,120.50413659773767 -91.3339613626908,29.30784785685487,120.527984730899334 -91.310525172040599,29.307729678541378,120.485541478730738 -91.300264945796613,29.311048719858711,120.480213936418295 -91.293031876305548,29.313388517823967,120.476460157893598 -91.291630898508927,29.315093528116563,120.480652927421033 -91.280952506724205,29.328089285891558,120.512604990042746 -91.277857779777364,29.331855613544054,120.521863218396902 -91.27739822203533,29.334813170072884,120.532658830285072 -91.275518909142164,29.346907785827071,120.576797031797469 -91.271793195479518,29.35744393003171,120.611499493010342 -91.271263694022707,29.358941335439141,120.616430603899062 -91.271150964596899,29.359260128994844,120.617480400018394 -91.267799942233509,29.363246934662076,120.627136174589396 -91.266689482258599,29.363796164006793,120.627305874601007 -91.252756414459014,29.370687407176352,120.629437406547368 -91.252442957632226,29.370842441749726,120.629485411569476 -91.250727641654578,29.371690830612657,120.629748123697937 -91.250319681771145,29.371892606044288,120.629810616374016 -91.246768594916304,29.372608232380713,120.626270447857678 -91.239725487116417,29.374027581900002,120.619250237010419 -91.236558405267459,29.372666687338157,120.60824825707823 -91.223587443123876,29.362732712868553,120.546070913784206 -91.208508390382832,29.362732849636139,120.519125549122691 -91.198674320714801,29.371910787101491,120.537587907165289 -91.201297016077802,29.39157757773074,120.619451463222504 -91.219673487821581,29.409261779193685,120.721634115092456 -91.217186068943434,29.414531900531394,120.737853905186057 -91.2154949222612,29.418114951368267,120.748880072496831 -91.213209515818832,29.422957066851559,120.763779043219984 -91.216310244976896,29.429567533179416,120.795224456116557 -91.218658766815622,29.434574363404348,120.819038078188896 -91.219277546712476,29.4352187099955,120.822667798027396 -91.220453216957708,29.436442956482221,120.829564068466425 -91.222376890011702,29.438446111691839,120.840847624465823 -91.242851369986042,29.44304566661237,120.895435498096049 -91.252531052801871,29.446507829207089,120.926288416609168 -91.259437784947394,29.448978181805114,120.948303107172251 -91.260749116030112,29.460024067976974,120.993895071558654 -91.261055564863881,29.462605413663191,121.004547622054815 -91.26120047600277,29.46382606030501,121.009584658779204 -91.261236002304713,29.46412531308431,121.010819509625435 -91.262799719665921,29.466977237763469,121.024776108562946 -91.266861241152839,29.474384684668667,121.061021789908409 -91.282512675507945,29.483569025414745,121.124920259229839 -91.295537890567715,29.478916168426881,121.129996038973331 -91.33695553269493,29.487907094609088,121.239213493652642 -91.344781099555306,29.494613836164334,121.279433086514473 -91.347094290018717,29.506558143194798,121.330259284004569 -91.357839640095051,29.517210445981561,121.391102055087686 -91.403429546338984,29.513933213654205,121.459873999468982 -91.4216649700478,29.517763831431552,121.507483327761292 -91.428346161929767,29.52223351889657,121.536902534775436 -91.433552972445867,29.534847659778876,121.595476167276502 -91.441157526520172,29.542451471099671,121.638772066682577 -91.44856187437459,29.546765954186125,121.668868269771338 -91.469965312332093,29.546315783445152,121.705448972992599 -91.51849184114154,29.5317570801325,121.735616877675056 -91.532239196071885,29.533559738056884,121.767306230962276 -91.532689972659071,29.537390662881648,121.783062295988202 -91.5270585138705,29.547962167518602,121.814203166402876 -91.5267415787781,29.553919835331055,121.836871175095439 -91.530435735532478,29.56061342499661,121.86959695070982 -91.538663993283578,29.56790293957101,121.912770802155137 -91.54319342905373,29.596366297865679,122.031802918761969 -91.554757130798947,29.634777033520614,122.202060326002538 -91.562128338603785,29.639360708267088,122.233105990104377 -91.571809550535207,29.640322565151223,122.254203938879073 -91.583063769542008,29.639175525984779,122.269922345876694 -91.601400076319266,29.633166694718852,122.279437323100865 -91.626335531990179,29.628205743852732,122.304882611148059 -91.645053972264321,29.632635322531304,122.355712881311774 -91.650162967950223,29.635645174750501,122.3765908787027 -91.649879528397292,29.638722671044707,122.388049519620836 -91.647700133195386,29.641436803614216,122.394690616987646 -91.644420075643637,29.642283786257327,122.392095698043704 -91.63856603850472,29.649226450192437,122.408580676652491 -91.628508010776599,29.664140705279848,122.448501686565578 -91.626336081265251,29.673687189289215,122.481699708849192 -91.628048274788853,29.686760439617487,122.535553928464651 -91.625051388134409,29.701246654290916,122.586428549140692 -91.619701417643796,29.712822054226649,122.621766394935548 -91.619312529274325,29.722699503756797,122.659399148076773 -91.622734778721849,29.737433645845648,122.72269138507545 -91.634052099590036,29.744580140551605,122.770695013925433 -91.66835184842823,29.747825641435146,122.844792529009283 -91.712159670919874,29.74099661914666,122.896940877661109 -91.738478340678654,29.751372793472509,122.984415152110159 -91.753484637092086,29.750266716526422,123.007084325887263 -91.784900193349671,29.742691850462617,123.034187790006399 -91.831725894184018,29.720921638548543,123.034028246998787 -91.847189089354686,29.710767065508765,123.022489725612104 -91.859867281934015,29.705125264922113,123.023438096046448 -91.867743397545098,29.709153663045054,123.053239171393216 -91.881977831134634,29.712842626449682,123.093174344860017 -91.882226703475368,29.715341624701907,123.103309323079884 -91.879558845179389,29.71809035411906,123.109158747829497 -91.876864501362206,29.724319002234758,123.128446325659752 -91.876797373208134,29.724474185715756,123.128926826640964 -91.876797441035791,29.730045309315106,123.150514643639326 -91.879583294702073,29.7370091846402,123.182510319165885 -91.880976272462135,29.744669475202503,123.214689697138965 -91.879583489890834,29.753026166968457,123.244543777778745 -91.875989307616123,29.762083917349045,123.27314218878746 -91.860379269568668,29.785330758105424,123.335018331184983 -91.855905088859572,29.809434028600201,123.420194173231721 -91.87122710038804,29.830325632142426,123.528501152992249 -91.890347531501618,29.838019525458414,123.592619233764708 -91.908119835528296,29.832936644872493,123.604963465593755 -91.91721883585754,29.817651417060887,123.562283606268466 -91.920372897459345,29.817376403123475,123.566898978315294 -91.941953361817326,29.819005110883626,123.612050815485418 -91.962461092418906,29.812218619478148,123.622768277302384 -91.971673509664868,29.806307991080704,123.616526511497796 -91.979611919057035,29.80121475805867,123.611148538067937 -91.985101974450671,29.796513970685996,123.602874512784183 -92.036897881926862,29.78366020966418,123.64660114236176 -92.057630193370969,29.774311541412366,123.647874885238707 -92.108718900748173,29.746428631821409,123.63231254555285 -92.145664315697246,29.718418862366402,123.590718416497111 -92.150582179854268,29.699053905891805,123.524633348919451 -92.135579536495513,29.671519595019348,123.390800938941538 -92.134036394520464,29.66246611901968,123.352910039946437 -92.113018492983642,29.623776493119522,123.164776439778507 -92.094650079245554,29.620700836862696,123.119601190090179 -92.066870525306044,29.621974022873303,123.074300550855696 -92.048900212189963,29.626533932742259,123.059516814537346 -92.026549767281352,29.627654076912904,123.023472885601223 -92.017499497730981,29.620748549633806,122.980302986688912 -92.001600200770483,29.615150628031071,122.92983512673527 -92.001232094367211,29.615021022879347,122.92866668663919 -91.96625931575683,29.610027627901054,122.8461077446118 -91.941130827078496,29.612299732541036,122.809579933993518 -91.936251750421789,29.614247668028543,122.808345459401608 -91.930794718261922,29.620848346977894,122.824148126877844 -91.92405275343603,29.6351806028106,122.867663418874145 -91.900223309941751,29.639017607493869,122.839594837278128 -91.897990235010866,29.636625762719234,122.82627843413502 -91.88354487909865,29.63177816908717,122.781406027264893 -91.867339567615829,29.633591216972899,122.759243664331734 -91.864244530037965,29.635747124321856,122.762042574584484 -91.842520032952621,29.631628556849556,122.706901449710131 -91.84020692304172,29.626483867622937,122.68274163082242 -91.842146907765567,29.621922106322419,122.668506050482392 -91.839522806889534,29.618050348396537,122.64872866217047 -91.822918344171256,29.608059063926973,122.57997221685946 -91.805055897914173,29.601572593813671,122.522575743496418 -91.786200456860996,29.597215012996351,122.471675521694124 -91.779724251184263,29.591231409439398,122.4367351308465 -91.776029089281323,29.584124843451722,122.402426083572209 -91.775910017750206,29.578399166811618,122.379924396052957 -91.747543408459734,29.576349543590084,122.32089008204639 -91.720324741630208,29.567581287762728,122.237775707617402 -91.716864673601521,29.567857304082324,122.232627232559025 -91.713224407750317,29.566753699260278,122.221781244501472 -91.710427710006442,29.563025144912853,122.202226945199072 -91.712876452007862,29.556283992216535,122.180367685854435 -91.735178734102391,29.54151861833811,122.162953542545438 -91.74828095164851,29.537158743315956,122.169542697258294 -91.766671158467545,29.522859379622879,122.146910124458373 -91.773150099851307,29.506887220095646,122.09629120118916 -91.773752041889153,29.501032544560431,122.074536808766425 -91.771291928727052,29.495828860517967,122.049802287481725 -91.771738879574571,29.490970130324744,122.031648134812713 -91.783610051029626,29.484899363485383,122.029346886090934 -91.79034217995553,29.484098346763471,122.038353553973138 -91.801344463356827,29.488844977930256,122.076708321459591 -91.804671532085479,29.488867946035707,122.082795470021665 -91.815832704141556,29.484078113499553,122.084227196872234 -91.822799749708253,29.475942508301252,122.065039783716202 -91.839724157152745,29.480891073479086,122.114878841675818 -91.849889429463602,29.486160682693733,122.153778522275388 -91.853822640663779,29.497000035140491,122.20315751247108 -91.863548929738826,29.504408527784356,122.249596434645355 -91.879971273797551,29.504952345831203,122.281350083649158 -91.888040471386475,29.507592122609363,122.30620505195111 -91.907401019422409,29.520066240713476,122.389772083610296 -91.916548212863361,29.520527130362208,122.408082235604525 -91.948234040185142,29.535173012155962,122.522356005385518 -91.970539543094247,29.538905595713906,122.57718616630882 -91.986954010589372,29.54971983433401,122.648945527151227 -92.028039084358554,29.568815377888509,122.797506267204881 -92.036691405126973,29.580649630779831,122.859169343486428 -92.042397767161162,29.583657601291922,122.881181333214045 -92.04754569703114,29.586371207811894,122.901038674637675 -92.067763105160694,29.585851049833582,122.935582176782191 -92.107153942437677,29.58834354423507,123.016546023078263 -92.159855963984853,29.583624321459013,123.093646695837379 -92.213822835126152,29.564487900062066,123.117109883576632 -92.253093040079463,29.541363887518685,123.09847289416939 -92.281625867075505,29.535443910200609,123.127262922935188 -92.310591452994956,29.53503566427726,123.178297175094485 -92.348471302623949,29.541402952623926,123.271900679916143 -92.403401566086686,29.553276770914863,123.417946957983077 -92.474823139053214,29.563087551370444,123.586071479134262 -92.559841974891185,29.571940257945418,123.775393598712981 -92.617511252913317,29.58073322217864,123.914726692251861 -92.61896655099811,29.581096643952751,123.918792501091957 -92.654893125323156,29.590068344905035,124.01917350012809 -92.745370320780808,29.619608827658229,124.298943024128675 -92.872479537277329,29.672024671371105,124.73424226231873 -92.941704318665543,29.703027267662346,124.980762135237455 -92.975555162194226,29.715973216975328,125.092756643891335 -93.066606332916038,29.742956832287764,125.363808810710907 -93.089434894214222,29.751115155429744,125.437142920680344 -93.178184946434243,29.77247510781838,125.682423454709351 -93.228190039409427,29.779506235954944,125.801436323672533 -93.268712860799084,29.780099817386485,125.878302909433842 -93.296830387220723,29.777057721967619,125.918390651233494 -93.343362174765176,29.765388938966407,125.95928655192256 -93.346251185408505,29.761605125407723,125.950066821649671 -93.348589225129814,29.761033135509294,125.95217869989574 -93.3732877701174,29.765035674221451,126.013113179244101 -93.440233184414026,29.770934703162748,126.159324293024838 -93.476512913843919,29.771227340827842,126.227452928200364 -93.539724102661395,29.765284074193261,126.321465308777988 -93.592049051245553,29.757634007786589,126.388897689059377 -93.636567903372239,29.754790743609735,126.460415760986507 -93.684904795454472,29.749137601892972,126.528285052627325 -93.743213820151666,29.738327656897088,126.594934052787721 -93.767314213425479,29.731484814260352,126.61339443270117 -93.800516694382011,29.717245304083889,126.620373620651662 -93.820261946090483,29.706061749591861,126.614105377346277 -93.839238153863661,29.69260533165723,126.597678868100047 -93.893515169014691,29.767222579117799,126.985017000697553 -93.899739372348179,29.773558160231651,127.020878692157567 -93.89194912190365,29.845136180485241,127.280478855594993 -93.842068983548558,29.916396249239689,127.460210769437253 -93.79070094399971,29.989781981379753,127.644940804690123 -93.757899625765603,30.016131811669204,127.68460089340806 -93.75330756273263,30.018371729687725,127.684633158147335 -93.723750098653085,30.052865414521055,127.761280613020062 -93.722858408177174,30.053906021082586,127.763591900467873 -93.713370415321222,30.069312245026023,127.80466893222183 -93.696953961420576,30.137691556059064,128.034223865717649 -93.696522104804359,30.149561892860419,128.07849249523133 -93.713279038809361,30.196263106327052,128.286584063433111 -93.71749462542499,30.246274257716287,128.483798200264573 -93.721847519190788,30.297914319101292,128.687144579365849 -93.724858566396392,30.296904346442123,128.688882267102599 -93.737168870637319,30.301392975089531,128.728557704947889 -93.767095907255765,30.335268785218201,128.911716892383993 -93.758928484042613,30.392370667289402,129.112011258490384 -93.752711435738917,30.39823539975653,129.122647472657263 -93.742975432564421,30.404954148330351,129.130013092420995 -93.703938895989538,30.4318929932179,129.159549144096673 -93.699575921735288,30.440602548948164,129.184304845519364 -93.699101979590523,30.445783264022893,129.202933266758919 -93.711392040836472,30.50834164977368,129.460803907364607 -93.741321063680701,30.540704550706561,129.637411691248417 -93.729120280884487,30.576007701370617,129.747385953553021 -93.579671273353327,30.803973495008684,130.325352156534791 -93.564568186183564,30.820428731507988,130.35903285164386 -93.559948390575499,30.870751932931054,130.537967436015606 -93.559893765901123,30.871346956885489,130.540081609040499 -93.556246758488498,30.878607449419334,130.560424572788179 -93.555852645302267,30.879392053218364,130.562622677534819 -93.532212937987723,30.926454180902955,130.69437943957746 -93.541632241464782,31.010050469100566,131.021820318885148 -93.52892287125573,31.076420933821144,131.244404430501163 -93.533024381013774,31.182723039796095,131.644573468714952 -93.53637751352835,31.187519742617869,131.668375315144658 -93.550211807144265,31.18850655067515,131.697229376994073 -93.553820816297716,31.187510662556925,131.700135896913707 -93.553929868657747,31.18748057010081,131.700223726220429 -93.580496162323556,31.169328304383527,131.681718295440078 -93.589784325566285,31.167487313261034,131.69187075085938 -93.60010965702935,31.176584709825104,131.744263269007206 -93.600986824476507,31.178361242076647,131.752414948306978 -93.60359682273895,31.183647286482781,131.776667939499021 -93.608525233402275,31.206709968736213,131.870661082677543 -93.609440562743373,31.229737693483841,131.957146446220577 -93.615685135682071,31.262769816013236,132.090097405947745 -93.622112406981159,31.273199178967239,132.140172733925283 -93.645690963056168,31.279009624274572,132.20453227777034 -93.672960819676334,31.301484117453821,132.336858018301427 -93.642090185900187,31.374440424321662,132.548300875350833 -93.671467980439502,31.389077327627156,132.655476453714073 -93.697152803476953,31.411283853144138,132.78362159896642 -93.730901561016822,31.489809215184867,133.132266712374985 -93.799377580661982,31.53592800304413,133.425370743498206 -93.819873281430787,31.556708660305066,133.538480528630316 -93.836215489498031,31.588090714356937,133.682558770291507 -93.836216044751097,31.588091780613276,133.682563664391637 -93.827582266142471,31.616782301497388,133.77121159248054 -93.818351864849632,31.67357029744959,133.960765623487532 -93.813770375941289,31.717119971137755,134.110462443903089 -93.841324122173006,31.802465047486649,134.469715308398008 -93.879521509276259,31.846142495067948,134.697082833386958 -93.890489904562983,31.85868449184305,134.762330158613622 -93.921587980900796,31.890514446222443,134.933771955780685 -93.933433291381206,31.895535052718166,134.97343354485929 -93.976676588632728,31.925520983370358,135.160209274850786 -94.01693119541298,31.981713523839517,135.435698131099343 -94.044022017943135,32.001121194183703,135.554772362112999 -94.044002820533734,32.057865121600628,135.758418224751949 -94.043640720137574,32.121763669735117,135.986720338463783 -94.043984983703055,32.139804691430776,136.051913933828473 -94.043895268595065,32.159944604654967,136.123790145851672 -94.043843391891215,32.168673133938128,136.154904210008681 -94.043870393407701,32.168741129989009,136.155196377076209 -94.043925337277869,32.19785051628093,136.259317773394287 -94.043967126568873,32.219990363909439,136.338450856506824 -94.044037864250541,32.271461589307705,136.522176569327712 -94.044038865359312,32.2715375852042,136.522449256852269 -94.044046212922808,32.365395535221495,136.85654507111758 -94.044070354067827,32.375168009789348,136.891321043483913 -94.044208629819195,32.394117990295506,136.958893422968686 -94.044230740304158,32.401752580032102,136.986045622266829 -94.044206750497892,32.402493540489729,136.988633120432496 -94.044294255055206,32.43733966901673,137.112458827905357 -94.04421631678288,32.441723434607241,137.127866447903216 -94.044211757474827,32.472216799124325,137.235960860736668 -94.044183770821306,32.473178747839,137.239318823441863 -94.044210793910025,32.474736664030488,137.244888045825064 -94.044303869566548,32.47983438976911,137.263118018396199 -94.044263901415619,32.482091269201518,137.271040936931968 -94.044380962257677,32.486130051494925,137.285559626296163 -94.044397995334862,32.488390930137456,137.293598493561149 -94.044220082802752,32.494681594849133,137.315554962493479 -94.044194260351887,32.506973936467404,137.359030402265489 -94.044390387073918,32.515441480823732,137.389356629922986 -94.044452054315244,32.56132802358097,137.551756073720753 -94.044393122269128,32.566086769576245,137.568467349745333 -94.044229786487193,32.611965317948545,137.73019215837121 -94.044239904964599,32.620082884028776,137.758855142630637 -94.044236959627312,32.623837683425052,137.772097192704678 -94.044135224245096,32.6421267074764,137.83641832601279 -94.044091269464943,32.645287539123537,137.847483572550118 -94.044224442365348,32.656947915087095,137.888828589580953 -94.044458994829753,32.694848889972953,138.022761421278119 + + + Minnesota + + + Minnesota + 0400000US27 + 27 + 79626.743000000002212 + + -92.193061294187928,46.67382161476722,175.704876571893692 -92.198706105284373,46.664644026506558,175.690952348522842 -92.203852524524962,46.656276746407706,175.678255964070559 -92.208652559558985,46.653176781896839,175.677692538127303 -92.213952639155323,46.651176774750326,175.680482965894043 -92.223291874226533,46.650959475605724,175.693330760113895 -92.223898938347915,46.650945350838541,175.694165961816907 -92.229716478223807,46.650809992157612,175.702170218341053 -92.233505007571139,46.650721843151445,175.707383246161044 -92.234208290131164,46.650705479635505,175.708351003937423 -92.236376348526733,46.65065503467855,175.711334457620978 -92.244054397517942,46.65047638687539,175.721901121549308 -92.252423046272796,46.651296007932459,175.735850912518799 -92.255940979671806,46.651640552474525,175.741715368814766 -92.258216275338356,46.651863393730956,175.745508443564177 -92.264064714453539,46.652436186765108,175.755258622579277 -92.266023639213458,46.652628042818428,175.758524566888809 -92.271510194137562,46.65316539309719,175.76767217926681 -92.276027187263665,46.655462148456586,175.779646379873157 -92.277935504107319,46.656432470263333,175.784705061465502 -92.278717811366235,46.656830250010891,175.786778829991817 -92.293755085300276,46.664476252190681,175.826637828722596 -92.293158967196959,46.62617650896987,175.73401980381459 -92.293208385172875,46.605885170772162,175.68543650303036 -92.293929279479201,46.496824732798615,175.424525051377714 -92.294067802716384,46.480001283583952,175.384250096045434 -92.294283475287131,46.433234819351675,175.271954894065857 -92.294403161997849,46.422118183992623,175.245339876040816 -92.294416058327798,46.418462304313643,175.236547315493226 -92.294552357244243,46.323139451762778,175.006703890860081 -92.294335278605175,46.320557540214367,175.000151964835823 -92.294356146619052,46.315873695068085,174.988862960599363 -92.294433123814741,46.314997723040072,174.986856921575963 -92.294391934819259,46.308352943755395,174.970736816525459 -92.294392856010774,46.305565036133153,174.963998813182116 -92.294559681295283,46.29923324374689,174.948931514285505 -92.294626602240456,46.296375337589787,174.942117859609425 -92.295170174464815,46.24529102606332,174.819296811707318 -92.295108624585652,46.225826674149602,174.772067378275096 -92.295406380700868,46.181323152255892,174.664623816497624 -92.29529300619032,46.168088595162089,174.632355619221926 -92.295254321153308,46.158571910883936,174.609207204543054 -92.295077514790918,46.11507636881187,174.503334071487188 -92.29561553649873,46.079599549029297,174.417876956984401 -92.295579425257131,46.075630748804521,174.408172375522554 -92.308302694941901,46.073663576249793,174.421819568611681 -92.328424047210419,46.067871498081551,174.436892540194094 -92.444833564827135,46.015901666806322,174.479476002044976 -92.657676453322409,45.925695822733935,174.570256539620459 -92.709253935226087,45.896155122500083,174.573803634382784 -92.72267996559637,45.885059316254349,174.56645339448005 -92.735590854869827,45.869362673335381,174.547155188396573 -92.764041214583429,45.820494947339398,174.469841909594834 -92.769980775191257,45.799266589226406,174.426818557083607 -92.786171245937268,45.765453521910807,174.368125339969993 -92.805521334687072,45.751062750417084,174.361436866223812 -92.842601720106316,45.731281922848318,174.367673973552883 -92.865254062550278,45.723077895816125,174.380975221283734 -92.870744082866793,45.718825966695093,174.37867780122906 -92.885536722347837,45.656129913580692,174.247344981878996 -92.887210073804951,45.645386659763069,174.223550175316632 -92.889663095632287,45.629637767026182,174.188656610436738 -92.887969131354367,45.596142941386262,174.104201454669237 -92.885296531309194,45.576745645190847,174.052760732360184 -92.87262899691531,45.568844088872602,174.01471118722111 -92.824854616899145,45.562197964469881,173.927949479781091 -92.804977161224031,45.563764179444902,173.902483624406159 -92.727772363491667,45.532351304993711,173.711617352440953 -92.681773388327102,45.465613228871433,173.479717860929668 -92.665639054129443,45.394580904968336,173.280859336256981 -92.706330265984093,45.32779967664073,173.176063486374915 -92.734130358938899,45.305498078915555,173.162058991380036 -92.747675900202111,45.297319692536796,173.161885662004352 -92.753271525382374,45.293941224034434,173.161815728060901 -92.762151373684929,45.28010158704091,173.140747708268464 -92.767432778516294,45.211450082945554,172.978685566224158 -92.768664256539452,45.195442457528046,172.940854341723025 -92.794406798523752,45.079770172366899,172.692034720443189 -92.792736881657135,45.046980349698472,172.608029728755355 -92.770135315836114,45.009299981702092,172.480626603588462 -92.752171991518907,44.938585722253237,172.277590027078986 -92.763202299356593,44.863311202251225,172.105977372266352 -92.76336978696159,44.862168211107097,172.103368921205401 -92.766985686574259,44.837492112264407,172.047035685740411 -92.785967043995882,44.795249363086121,171.969617946073413 -92.803724035495179,44.747006412396836,171.875252556055784 -92.803925205762098,44.746459864507955,171.87418286409229 -92.738779859250016,44.718449733775728,171.706506147049367 -92.733562641590481,44.715069893132501,171.690220988355577 -92.633621475579503,44.650325570638266,171.378062197007239 -92.623248957026505,44.640282068333946,171.337268140166998 -92.621289654205015,44.630513444613698,171.30972492787987 -92.551197535696389,44.577302284037003,171.070771384052932 -92.535698005839947,44.57167769138686,171.033414903096855 -92.493283841097977,44.567306409770616,170.959048816002905 -92.358820307893026,44.559785456645436,170.739556127227843 -92.341564796102787,44.556578799507491,170.705740378238261 -92.33051940848398,44.552201102450759,170.67820693552494 -92.321444029214604,44.546246436052215,170.64960967656225 -92.317930461729503,44.542099090459466,170.633869457989931 -92.315576704767565,44.539320762267749,170.623324090614915 -92.304550931755173,44.519953603855988,170.557807148434222 -92.303719439047967,44.501606274932357,170.510026668198407 -92.292508779096806,44.486772956624769,170.455681127496064 -92.278287122160549,44.474958569405679,170.404497765935957 -92.243511760072479,44.455564725822768,170.303427102044225 -92.235398355396882,44.447645118044562,170.271209739148617 -92.222583884395291,44.441697500965823,170.237002264708281 -92.116793629312625,44.417369767238952,170.017656781710684 -92.085421736218976,44.407525290285136,169.945925180800259 -92.047780357316825,44.395713453053474,169.859860992990434 -91.973985813830893,44.368077416369665,169.679699237458408 -91.965092473880375,44.363429700505534,169.654619539156556 -91.927080800800411,44.334867229427324,169.525156250223517 -91.920115351491773,44.323990713786785,169.486983528360724 -91.888676794669578,44.253835665654094,169.260538512840867 -91.889392658389937,44.247720878240656,169.24591519497335 -91.894450501091512,44.236472220757214,169.224567173048854 -91.894185392625587,44.232428371071556,169.213795106858015 -91.876644187171124,44.201899708860125,169.109331500716507 -91.864343601263784,44.194326388449056,169.071587974205613 -91.809547477395711,44.160589084206883,168.903389667160809 -91.742352166637872,44.135246879187697,168.738316825591028 -91.723032594994436,44.131671259906668,168.70041892491281 -91.673998396342768,44.092617318947042,168.526883943006396 -91.593544897630608,44.032706547059988,168.252630811184645 -91.581493486261508,44.028259865202187,168.223242284730077 -91.560670991541329,44.025294520981632,168.184680607169867 -91.548501545230323,44.023561462640338,168.162147048860788 -91.507390428581118,44.0199871233404,168.091950710862875 -91.464986129756468,44.010378020928485,168.004227430559695 -91.438850251119462,44.001299689357971,167.941982074640691 -91.433992052063431,43.998164866534715,167.926656655967236 -91.421583889104568,43.985581717614494,167.875631706789136 -91.364708586640688,43.927904330289344,167.641555787995458 -91.312454826982119,43.868725172993678,167.410090979188681 -91.300278257237863,43.8578997268935,167.363837727345526 -91.285600657694999,43.848410263754886,167.317355973646045 -91.263896775007225,43.793513562635013,167.141878658905625 -91.269657312485535,43.727920862572901,166.978858263231814 -91.274774039626053,43.66965900110533,166.83381699025631 -91.270204645479396,43.616702023833106,166.688084769062698 -91.266547424596624,43.611331269900049,166.668547567911446 -91.219158610776446,43.501908945844548,166.31024535279721 -91.370781392341527,43.50218400678591,166.536774636246264 -91.373064451940934,43.502301973300199,166.540489574894309 -91.37840657362166,43.50183892253883,166.547237911261618 -91.443244183472459,43.501794097782934,166.643871410749853 -91.447390290030214,43.501944039303851,166.650456195697188 -91.462861675417642,43.50199783994394,166.673701602965593 -91.466521765447808,43.50196379452084,166.679078721441329 -91.492501412103579,43.502045459940405,166.718105767853558 -91.535266469526078,43.501914918770503,166.781689060851932 -91.542680652226863,43.501869825747278,166.79265824239701 -91.552481895724711,43.501893699635701,166.807380528189242 -91.5925348879029,43.501890187839606,166.867303259670734 -91.61229396557124,43.501883954593247,166.89686771761626 -91.612357378565207,43.501883934588648,166.896962612867355 -91.616755487921878,43.501903877589505,166.903600625693798 -91.61835753030536,43.502016852872998,166.906296212226152 -91.618869543558503,43.5020408454265,166.907125934027135 -91.622247626931795,43.502030802590667,166.912158352322876 -91.62707374758665,43.502080738984645,166.919517209753394 -91.635706955247414,43.501832637809791,166.931796831078827 -91.635957960492831,43.501792636094237,166.932067817077041 -91.637088989059478,43.501816620725599,166.933824988082051 -91.641235094305671,43.501926563561476,166.94032446295023 -91.646387220715482,43.501882499279354,166.947927327826619 -91.652859379019461,43.501807419257261,166.957427335903049 -91.659864554208028,43.501886326643763,166.968131273053586 -91.672335862162058,43.501866167746272,166.986768987961113 -91.702213602452005,43.501933782599501,167.031739822588861 -91.731682755849775,43.502031927994523,167.076200192794204 -91.731824336499315,43.502032399520601,167.076413847506046 -91.734795408511687,43.501975363577529,167.080722032114863 -91.738023486747025,43.50191332452583,167.085402962751687 -91.739911532509623,43.501877301674334,167.088141575455666 -91.762880102398185,43.501989003037636,167.122906741686165 -91.779154505922321,43.502062791569152,167.147533589042723 -91.780756547689023,43.502154767578212,167.150180251337588 -91.806392178140484,43.50206744196506,167.188453719951212 -91.808623231531058,43.501999415882828,167.191627074964345 -91.826315668773134,43.502035187474476,167.218303933739662 -91.94330754760837,43.501903689201164,167.393940397538245 -91.951349743820359,43.501834588350306,167.40586943179369 -92.081275908560769,43.501994719937819,167.602155596017838 -92.081427944442751,43.501994907317084,167.602385533973575 -92.091444191178809,43.502031776803669,167.617599314078689 -92.105360533904076,43.502082595450538,167.638740074820817 -92.18033937172936,43.502059628767604,167.751950975507498 -92.20026485531163,43.501873378432094,167.78158996719867 -92.278903778495334,43.501811364359341,167.900419575162232 -92.280562818337813,43.50178134402946,167.902853280305862 -92.370389013777526,43.501798180752694,168.039009825326502 -92.389779487836279,43.50182692847013,168.068493390455842 -92.407611922831222,43.50181969765287,168.095528475940228 -92.410313992132714,43.50195765744639,168.099987989291549 -92.450430778166819,43.501763313604719,168.160375355742872 -92.465988343183582,43.501687945636519,168.183804906904697 -92.554613541964073,43.50164181350857,168.318387023173273 -92.554646501135664,43.501641796352004,168.318437111563981 -92.650681829665928,43.501389557163776,168.463967370800674 -92.654805929856593,43.501390503461629,168.470252742059529 -92.674068397723957,43.501395252574326,168.499616340734065 -92.690521797295588,43.501402038109063,168.524712199345231 -92.694274888407733,43.501402989203008,168.530436066910625 -92.708801241049812,43.50140879980362,168.55259913392365 -92.753578327371486,43.501423215834876,168.620940065011382 -92.791808241095765,43.500905736874046,168.677952428348362 -92.871770176228395,43.500885694065452,168.800075892359018 -93.009367501553712,43.50093989310642,169.010824679397047 -93.025844536433567,43.500907835870642,169.035992986522615 -93.025925900183822,43.500907677571618,169.036117285490036 -93.050689494013355,43.500906747688717,169.074078185483813 -93.230362821160597,43.5008999970145,169.349958089180291 -93.273302847129969,43.50068844080527,169.415465712547302 -93.400540900981994,43.500815761901073,169.611790026538074 -93.430015606432988,43.500808373892724,169.657229970209301 -93.470070564585868,43.500802846142733,169.719026832841337 -93.474311664190751,43.500729792985766,169.725385442376137 -93.483516886335266,43.50081166849948,169.73980818502605 -93.489769034189308,43.5007465885055,169.749294045381248 -93.498858202239319,43.500785232361871,169.763429556973279 -93.498913253740682,43.500785466420915,169.763515179045498 -93.529990996700391,43.500800055818658,169.811559662222862 -93.533687085011849,43.500801007001812,169.817273162305355 -93.560140717933621,43.500849655942581,169.858283353038132 -93.578238149882267,43.500848416998792,169.886260095052421 -93.618642114452285,43.500875882146104,169.948827135376632 -93.650044904654919,43.500886161368918,169.997454525902867 -93.700858074164913,43.500902793847011,170.076189923100173 -93.706429206599552,43.500894720425521,170.084800804033875 -93.710284298271134,43.500890669557641,170.090763719752431 -93.717730475484998,43.500889571041796,170.102299530990422 -93.795800331690529,43.50086753785142,170.22330170031637 -93.797308366978157,43.500845518700039,170.225584995001554 -93.972279520089472,43.500928193439101,170.497660612687469 -93.972281078663698,43.500928202312345,170.497663058340549 -94.094416426760588,43.501623542328943,170.689654115587473 -94.095861460902,43.501623523088732,170.691906645894051 -94.10959078518232,43.501621340341288,170.713305414654315 -94.111402827554784,43.501604316854504,170.716087155975401 -94.249491462547169,43.501652013877106,170.931752248667181 -94.378995133654129,43.501696742008349,171.134427064098418 -94.392126444403459,43.50178656295784,171.155218152329326 -94.444365673680878,43.501899859589471,171.237346955575049 -94.444378531672413,43.501900030317636,171.237367539666593 -94.448578773949492,43.501955801056354,171.244093009270728 -94.471951314643661,43.501656499483225,171.279968528077006 -94.562371434157271,43.501692286303573,171.421929660253227 -94.567198545961531,43.501645223356242,171.429388916119933 -94.617450727045011,43.501858540970048,171.508869305253029 -94.856095387123247,43.501925357489775,171.884727604687214 -94.859407372967468,43.501926284708851,171.889953440986574 -94.861732425316703,43.501857256020045,171.893445018678904 -94.874265717377128,43.501875086468814,171.91326023824513 -94.875775752327002,43.501868066388802,171.915624557062984 -94.888832054611782,43.501812892539711,171.936083630658686 -94.916064686449147,43.501760527422803,171.978929408825934 -94.916175244574504,43.501760525932134,171.979103925637901 -94.916446695328375,43.501760522272157,171.979532411321998 -94.916496696490583,43.50176052159798,171.979611340910196 -94.936167154627014,43.501800254812679,172.010767647065222 -94.956019615205378,43.501776987899134,172.042060549370944 -94.97590207792453,43.501817718056181,172.073572785593569 -94.996003544878448,43.501832446169466,172.105374475009739 -95.015789012823447,43.502181165706325,172.137534078210592 -95.035544469442968,43.502119901232795,172.168614554218948 -95.055048920544507,43.50207763934602,172.199355536140501 -95.0558339410602,43.502168625261554,172.200828201137483 -95.116420339548199,43.501974813657178,172.296218707226217 -95.124179521401246,43.502062705353659,172.308727335184813 -95.168841555081883,43.502078100473021,172.379511051811278 -95.169438571799375,43.502192088032814,172.380745964124799 -95.181970858730878,43.502080922644531,172.400324012152851 -95.216486659245604,43.50219145103776,172.455320144072175 -95.252311474333325,43.501711984026606,172.510926840826869 -95.252518480595313,43.501769979002006,172.511402131058276 -95.376289330415659,43.501618305962623,172.707563973963261 -95.376821342871025,43.50162629843355,172.708429792895913 -95.389339721580754,43.501544294432776,172.728121664375067 -95.389364629560276,43.501544131268297,172.728160848841071 -95.389403630458105,43.501544130738715,172.728222849778831 -95.435752698825581,43.501617498327199,172.802117228507996 -95.435846702167041,43.501663495287517,172.802383035421371 -95.455987198681015,43.50194735939381,172.835145580582321 -95.456260178936077,43.501951206830547,172.835589699447155 -95.456260176755805,43.501866210087464,172.835374902933836 -95.476619638850963,43.50163794205254,172.867201465182006 -95.488291905473233,43.501576785677351,172.885628549382091 -95.488357906271006,43.501548785852926,172.885662894695997 -95.516329538915357,43.501167420003611,172.9292421201244 -95.742373717575802,43.501193338633577,173.289939406327903 -95.743129734775636,43.501190328429473,173.291139983572066 -95.822839556751276,43.501263236947679,173.418779766187072 -95.835983856619606,43.501264057268479,173.439813842065632 -95.862509165157604,43.501263694646923,173.482267990708351 -95.862715466156686,43.50126369182609,173.482598242349923 -96.054730376636726,43.501471090639328,173.790938495658338 -96.200055138490555,43.50162805370072,174.024871655739844 -96.200337144277313,43.501605050711333,174.025267641991377 -96.210385373740365,43.501683909590589,174.041631178930402 -96.333636159879504,43.50170621337405,174.240165747702122 -96.352633586450409,43.501623954961218,174.27058385219425 -96.454625887210483,43.501704546265437,174.435340574011207 -96.454931153496759,43.588326207208041,174.652161373756826 -96.45496218407645,43.589469162855679,174.655062085017562 -96.454935689878809,43.608829419520617,174.703291733749211 -96.454966753388234,43.611229326942905,174.709323730319738 -96.454989459619185,43.67629083193934,174.871368190273643 -96.454961843299685,43.690919272333254,174.907706562429667 -96.454865523417638,43.792713386250426,175.160290335305035 -96.454672880804395,43.806400867456944,175.193906607106328 -96.454849652512294,43.850777344722189,175.304087387397885 -96.454849671397753,43.850782085678887,175.304099148139358 -96.454850062125104,43.850880172470603,175.304342526011169 -96.454921790979796,43.878304129492456,175.372299714945257 -96.454890831516835,43.879858070915361,175.376092570833862 -96.454769830553658,43.879925070051584,175.376064100302756 -96.454940708036602,43.950394395798497,175.550406244583428 -96.454877751677316,43.952086332619629,175.554480192251503 -96.454754167945211,43.967811739214355,175.593074490316212 -96.4548811878892,43.968451713236391,175.594856326468289 -96.454978480240484,43.979331300387365,175.621839456260204 -96.454852536524641,43.981548218312433,175.627103226259351 -96.454917874102279,43.994141741359741,175.658248634077609 -96.454886922842377,43.995993671807319,175.662762770429254 -96.454706243305466,44.00814621522089,175.692414744757116 -96.454643295602821,44.010157140150525,175.697267428971827 -96.454963699976787,44.025013574805719,175.734366599470377 -96.454995745332866,44.02668251137284,175.738526895642281 -96.454904037936558,44.037699096987417,175.765498445369303 -96.454778086449551,44.039619026320963,175.770022081211209 -96.454369633601559,44.198043057196251,176.158349837176502 -96.45436933708028,44.198158072003004,176.158631104975939 -96.454269893679822,44.255848914474527,176.299670490436256 -96.454015906452994,44.2565348923861,176.300943056121469 -96.453966276004735,44.270227381467016,176.33434043917805 -96.453962357299062,44.273232269285465,176.341678979806602 -96.454214653755585,44.28396186510949,176.368301840499043 -96.454097731988554,44.28694675532018,176.375408471561968 -96.453932035172755,44.298268335137074,176.402800554409623 -96.453837077647876,44.299914275058981,176.406669178046286 -96.453967444624482,44.313329772890974,176.439634405076504 -96.453846476904545,44.314620726451452,176.442593272775412 -96.453970822646866,44.327249254004499,176.473614263348281 -96.45390787833287,44.329352176527266,176.478645618073642 -96.453847217913278,44.341899709980964,176.509161091409624 -96.453751258589605,44.343476652601069,176.512854785658419 -96.45390434671566,44.346589534549253,176.520690833218396 -96.453881605229924,44.35611418031214,176.543881037272513 -96.453812747629314,44.361405984350945,176.556673015467823 -96.45373438646655,44.384935110390067,176.613888720050454 -96.453673548857466,44.390945887839933,176.628433835692704 -96.453525960608729,44.442802964917888,176.754412580281496 -96.453418473556638,44.461655267665677,176.800078243017197 -96.453820769239002,44.472125874171297,176.826163946650922 -96.453724826432477,44.474295795161702,176.831284111365676 -96.453577749141346,44.508100546343236,176.913147367537022 -96.453614026417526,44.518180173206794,176.937668147496879 -96.453840304403613,44.528121802660813,176.96214840374887 -96.453620756888583,44.544783190417576,177.002209433354437 -96.4535949719792,44.544888954786671,177.002424975857139 -96.453492768378311,44.545308172834794,177.003279328346252 -96.453327150340328,44.631954982366693,177.212843202985823 -96.45336816469306,44.632440963915542,177.214083530008793 -96.453367697499345,44.632596547672136,177.214459074661136 -96.453152148766421,44.704379325264824,177.387542831711471 -96.453183741167891,44.761752223892898,177.525942127220333 -96.452990772238195,44.763030179876992,177.528716180473566 -96.453231178106677,44.777432649936145,177.563788530416787 -96.453434580005336,44.791712125338186,177.598491543903947 -96.453499632372186,44.793540057656529,177.602994498796761 -96.453440781096134,44.798931861587057,177.615879306569695 -96.453170991422425,44.806708581483385,177.634167771786451 -96.453171533978335,44.806810059016961,177.634412803687155 -96.453623363399814,44.891317492419446,177.838216710835695 -96.453467824133128,44.907908891456792,177.877785507589579 -96.453661941251156,44.911931742531657,177.887742160819471 -96.453963407423274,44.963968849689635,178.012949447147548 -96.453708815621141,44.978709319103189,178.047846822068095 -96.453708858536686,44.978727900046529,178.047891375608742 -96.453858645138581,45.043578970238364,178.203242680989206 -96.453795864737486,45.051416688042792,178.221870917826891 -96.453828905473557,45.052833636407051,178.225307989865541 -96.453839098460634,45.095066112675894,178.326153985224664 -96.453646130809545,45.096368068488978,178.328957224264741 -96.454038919118176,45.123906071038249,178.395251930691302 -96.453973957088351,45.125300021784376,178.39847304765135 -96.453926501289956,45.179790063493463,178.528195909224451 -96.453785195543944,45.204335184630722,178.586374540813267 -96.45377524479332,45.206075122366116,178.590497196651995 -96.453938366235064,45.210211971691258,178.600591226480901 -96.454572674286027,45.270148810083683,178.743993355892599 -96.454574092420714,45.27028281145278,178.744313680566847 -96.454416523262111,45.285503269548826,178.780190478079021 -96.454692924912621,45.299337771338173,178.813443655148149 -96.455720046816964,45.302768634185206,178.823188929818571 -96.471646759770692,45.328053314376007,178.908059709705412 -96.490693448607075,45.35829115533943,179.009476792067289 -96.523416741390221,45.376864027026329,179.104627384804189 -96.619358900015484,45.409308501864039,179.331487462855875 -96.682088422273495,45.411714519035101,179.435460767708719 -96.694175899323596,45.418553102669748,179.470532121136785 -96.734376025858381,45.459950054970427,179.631043647415936 -96.744146830619059,45.479935205163471,179.69336823374033 -96.747125189015932,45.48992380794818,179.721519384533167 -96.766919596072157,45.522624364396755,179.829354675486684 -96.786503627373051,45.542509378835533,179.906700454652309 -96.837094104015989,45.587336065772099,180.091002700850368 -96.845600530623358,45.595209665118716,180.12275870423764 -96.84597755020566,45.595581646549135,180.124219899997115 -96.851087801838759,45.600150411581971,180.142916616052389 -96.855289997276515,45.603513232302234,180.157367274165154 -96.859395199020383,45.6071680441121,180.172347984276712 -96.845855868557479,45.6407880524213,180.229775379411876 -96.842390955429863,45.646498900942312,180.237702579237521 -96.837413967578442,45.650852819123138,180.240092043764889 -96.746730384846984,45.702780297033414,180.219717184081674 -96.712801064829861,45.718765223858156,180.204116648994386 -96.674308602452498,45.733540259206237,180.178616120480001 -96.653869551038341,45.748013045797727,180.180577207356691 -96.584729089572591,45.821226479491891,180.24389813747257 -96.581384182018965,45.827022325298991,180.252219408750534 -96.578188523294259,45.841146878458744,180.280192928388715 -96.574629078416052,45.86280317471023,180.325143308378756 -96.570417761061989,45.889272313625867,180.380262766033411 -96.569926842043216,45.892403211746263,180.386791090480983 -96.569699058096319,45.899896954321676,180.403883890248835 -96.569961188491945,45.904101804299231,180.41407829336822 -96.570564454589061,45.912625499236555,180.434851187281311 -96.57091146404278,45.912670492672675,180.435494185425341 -96.571047540413446,45.915145404680146,180.441464108414948 -96.570715557452871,45.915984380301786,180.442901252768934 -96.565963632205154,45.922273230219467,180.450162601657212 -96.566164790224462,45.927455047289762,180.462528965435922 -96.564927027065707,45.936436753181248,180.481499597430229 -96.571998032825832,45.964792667229574,180.558373969048262 -96.578976114554507,46.022952131232039,180.704195633530617 -96.579590090279964,46.028069366383498,180.717014097608626 -96.567945547697221,46.052610686389492,180.75588679779321 -96.560921587071718,46.05946655107789,180.760908950120211 -96.558590720947549,46.065795366267288,180.77196907158941 -96.556486274562047,46.086017699024985,180.815558674745262 -96.559603873691032,46.103635046738106,180.861165309324861 -96.580016378319186,46.171302423594675,181.04914921708405 -96.587301765446369,46.178499070971895,181.077017358504236 -96.600744679281135,46.264887915396578,181.296952776610851 -96.599892133761983,46.313748258393915,181.4080720115453 -96.633247166055568,46.354935369733731,181.554088585078716 -96.671457003363955,46.385825762595125,181.68381171207875 -96.723664916813149,46.44116512176366,181.890949224121869 -96.718103925425311,46.445746047257678,181.892866644077003 -96.740723489211987,46.544883360083418,182.154089287854731 -96.784675735246879,46.631577058895616,182.419017740525305 -96.784682191605654,46.63158979375234,182.419056609272957 -96.78468705472153,46.631818575976631,182.41958421561867 -96.785879958947859,46.687937882113623,182.54889980237931 -96.803692278963865,46.813629414153638,182.860954560339451 -96.769139351556888,46.906325835285962,183.017491370439529 -96.781940378169324,46.929424880424449,183.089138925075531 -96.79324083436039,46.935425515269657,183.119922660291195 -96.824906733786364,46.972020836576178,183.250693563371897 -96.826283471778979,46.994468073246352,183.303295262157917 -96.824865647400713,47.001123873946533,183.316098975017667 -96.826496630752587,47.12612272828563,183.599157400429249 -96.828345490390589,47.15169286097008,183.659242847003043 -96.834639401650477,47.238738916182058,183.863456446677446 -96.834712193409629,47.239245641535227,183.864698690362275 -96.854374266669893,47.376119147709744,184.19958003051579 -96.864012019661985,47.423477468614777,184.319435249082744 -96.855470192787209,47.500669347128408,184.477759038098156 -96.854988434443939,47.505022965745511,184.486678606830537 -96.844132314730686,47.509366986754799,184.479890044778585 -96.852660438526968,47.599425961372951,184.692083687521517 -96.887448422157632,47.665402328197764,184.890227130614221 -96.892379381396808,47.673288560404899,184.915051662363112 -96.982106659824311,47.816792085999047,185.365804450586438 -97.002073632580803,47.862043350276622,185.495026639662683 -97.024874612531562,47.875105594780599,185.557936504483223 -97.089884345871383,48.060635763223949,186.06041307002306 -97.100001984124972,48.072430240645318,186.101247493177652 -97.124863862413747,48.110615668549599,186.221515436656773 -97.149241502255634,48.171688389683403,186.390530115924776 -97.149229123324545,48.174343038431616,186.396262936294079 -97.14913328783777,48.194894952156133,186.440631323494017 -97.148903935916096,48.244080136145925,186.546711744740605 -97.144881965257071,48.247822080280713,186.548782294616103 -97.136267859563432,48.250851115879549,186.542439541779459 -97.131663748125675,48.250845185486646,186.535536914132535 -97.118304437594659,48.280774456123872,186.580250698141754 -97.117316913936833,48.325040097063145,186.674372936598957 -97.128481802500133,48.343251364165653,186.730343953706324 -97.138110383994828,48.353503901255593,186.766834307461977 -97.147432142742318,48.39854036759575,186.87778452783823 -97.133218110432097,48.40769529971891,186.876286132261157 -97.125138413022654,48.422309970836309,186.895694847218692 -97.128512881401704,48.52129687419589,187.113476496189833 -97.152285119907802,48.540553923464785,187.190172627568245 -97.162854381756773,48.544259991288094,187.213850405998528 -97.164849576427869,48.544959598020597,187.218320051208138 -97.164794247349334,48.545068045168442,187.218470191583037 -97.094353625337561,48.683134447267136,187.40939305908978 -97.139322050528506,48.750289725115699,187.619442733004689 -97.159549882983072,48.788777251808618,187.73143232986331 -97.201306168409829,48.882276793305635,187.992054025642574 -97.23437027110181,48.947652323201723,188.179581337608397 -97.240916171424772,48.968686592146909,188.233795612119138 -97.24014868235642,48.983721153176198,188.264481177553535 -97.235767098389104,48.99855977564021,188.289403495378792 -97.23080109036313,49.001776755177076,188.288876239210367 -96.407153510143559,49.000922423249136,187.078068272210658 -95.370413580343921,48.999846851969593,185.574099846184254 -95.357534252681376,48.999853043271536,185.555601349100471 -95.342676874521572,48.999858263965542,185.534262021072209 -95.324660416518569,48.999885530901985,185.508437154814601 -95.321609046628538,48.999888028235461,185.504059395752847 -95.155421101903556,49.000024038369233,185.265932873822749 -95.155025491273392,49.185995591936702,185.669053231365979 -95.155142750560913,49.251108694375503,185.81010021455586 -95.155053683412859,49.306767080576449,185.930208240635693 -95.155039754964122,49.308832020958278,185.93464582413435 -95.155051780417665,49.309553999863631,185.936221367679536 -95.155050809821702,49.310398975400368,185.93804386164993 -95.155005998201034,49.34451998859236,186.011596873402596 -95.155066008574252,49.344772980383645,186.012227854691446 -95.155129384913906,49.355507669165178,186.035464741289616 -95.155052784215911,49.366996338444984,186.060121156275272 -95.154981845455055,49.368801287383782,186.063910408876836 -95.155015895811204,49.3702172459938,186.067010479979217 -95.155073385723881,49.384188841912426,186.097197500057518 -95.155037429527624,49.385467805552835,186.099901679903269 -95.128189216231192,49.370549636127613,186.029582227580249 -95.060123893399663,49.354282119145672,185.897759103216231 -95.01613387071724,49.357517680053675,185.84227500949055 -94.99062664714971,49.370009698922203,185.833057873882353 -94.959182879184226,49.371299129104095,185.79124562535435 -94.910988935916734,49.351290421896486,185.679659849964082 -94.826003300623185,49.309950875853303,185.469691537320614 -94.799234772369019,49.198911490260549,185.190609594807029 -94.774927497465299,49.121856093879828,184.988298709504306 -94.751924185291955,49.100887045716163,184.909873652271926 -94.751917780726814,49.001118968648179,184.691907366737723 -94.720630973991206,49.001118429471433,184.647359238006175 -94.684763115873054,48.885060375977481,184.341838664375246 -94.684821098688545,48.884507391465689,184.340707003138959 -94.691995619534794,48.864842867472007,184.307748452760279 -94.691939606351241,48.864494878589227,184.306904030032456 -94.692579751569994,48.779200398317847,184.120224541984499 -94.692553750263869,48.779181399263976,184.12014554720372 -94.647944662259192,48.751110888062421,183.994547608308494 -94.646838600861258,48.750126933548607,183.990797656588256 -94.630541840300282,48.739925475926334,183.945012249983847 -94.534741122209823,48.70240099553336,183.725300455465913 -94.470410301065172,48.697464082532555,183.622560282237828 -94.433535520460225,48.707728469724763,183.592686868272722 -94.417872433764458,48.712088413877154,183.580011364072561 -94.390528761323964,48.713085783148202,183.543259626254439 -94.310124627364345,48.711381006024055,183.425015809945762 -94.292415086555096,48.708889338109962,183.394297976046801 -94.262217927752644,48.697524115900706,183.326141188852489 -94.252845258116167,48.684657635279486,183.284258170984685 -94.252172350060448,48.65779844537893,183.223660884425044 -94.251866331180551,48.657467459699141,183.222490200772882 -94.246069085833753,48.654586629916103,183.207841049879789 -94.225950435871255,48.650672039174708,183.170517515391111 -94.128007732106113,48.645593613237892,183.019982915371656 -94.054121801973793,48.64516769766832,182.914128477685153 -93.842417787840247,48.629699222019809,182.579653103835881 -93.835986502169547,48.626105421923,182.562523696571589 -93.824306676079075,48.610219063819223,182.510486321523786 -93.808424230944368,48.57876923098619,182.41765177436173 -93.807029892538168,48.569546526438835,182.395032453350723 -93.81286119322931,48.543539219518024,182.345046691596508 -93.820035120162757,48.53559635365496,182.337415809743106 -93.819912973289803,48.531200486951484,182.327393523417413 -93.816837777678984,48.527662637172966,182.315108048729599 -93.796112896032426,48.517176249834506,182.262235038913786 -93.773399298585289,48.516980582949543,182.229618816636503 -93.758140886412292,48.516521816459758,182.206980102695525 -93.663992444162162,48.516865161094501,182.074527746066451 -93.546013799382948,48.530267455682434,181.938002402894199 -93.469155326436649,48.546823064474495,181.866874121129513 -93.462449309771429,48.551711014900953,181.868423277512193 -93.45832656891254,48.562992737779602,181.887992254458368 -93.458697753324884,48.568357572628564,181.900579296983778 -93.463383098642055,48.575188301975444,181.922533913515508 -93.46765964296327,48.588448845879313,181.9583595180884 -93.46596074519077,48.592949736345822,181.966082351282239 -93.405311668982677,48.608751136704178,181.916289084590971 -93.368675729058992,48.609441641469765,181.866359757259488 -93.349178814350793,48.627778376602286,181.880210281349719 -93.256502901591105,48.643943224919113,181.786579527892172 -93.209045640264762,48.643633913197611,181.71940479055047 -93.181636346085526,48.62608682494249,181.641507169231772 -93.144065354478045,48.626085361883845,181.588914508000016 -93.090082015372161,48.628759053577006,181.519438214600086 -92.982125072301372,48.626078672539137,181.362589213997126 -92.729677613041389,48.540459797013355,180.816794182173908 -92.659510971874795,48.547433584059704,180.735000464133918 -92.63656025242058,48.544044009404935,180.69538907893002 -92.62736721622619,48.519360871725837,180.626488086767495 -92.626779035859855,48.51422003267227,180.613976875320077 -92.62700203756296,48.514088033437943,180.61398674082011 -92.632745040908617,48.509424090724885,180.611364901997149 -92.632765035835078,48.509249095639873,180.610994626767933 -92.628864781785524,48.504555290230826,180.594890733249485 -92.638323906674415,48.500600273979458,180.599051632918417 -92.663046471873145,48.497729009621828,180.626925316639245 -92.686495128616798,48.498782646492792,180.661967835389078 -92.700453412203487,48.496063529773018,180.67522447835654 -92.714190756126058,48.464185284198756,180.62186077516526 -92.689625492970322,48.445062201686291,180.544089526869357 -92.657653415194389,48.43788286778549,180.483175829984248 -92.577260410852105,48.442001880505451,180.380613729357719 -92.538825607759122,48.448878218059328,180.342831497080624 -92.508907816922473,48.449050634909504,180.301634317263961 -92.457945388579503,48.415381356186494,180.153932768851519 -92.416736481418226,48.295022535289355,179.821113323792815 -92.386000060532709,48.24409749632386,179.661448092199862 -92.32691530452334,48.238214501672807,179.565683753229678 -92.296664742297509,48.27777073755778,179.614523705095053 -92.297279806837622,48.279301683010878,179.61889546085149 -92.303063290988149,48.289791287359087,179.651025063358247 -92.307922297275411,48.317624385331328,179.721669091843069 -92.306174456742085,48.324159214239415,179.734236599877477 -92.290607673047177,48.344172833995941,179.758540141396224 -92.263893337094785,48.356114851871709,179.748873095028102 -92.056835933533975,48.360397623065616,179.47207619342953 -92.032478231263866,48.32700995966772,179.36160774808377 -91.991148068464199,48.261402498809069,179.153294611722231 -91.97915733878645,48.248329057739568,179.10654834471643 -91.979088311949866,48.247529082684096,179.104606769047678 -91.956033861127764,48.252867243897789,179.085046989843249 -91.9559988452299,48.252388258739231,179.083893060684204 -91.909197184699167,48.239373300487848,178.989155790768564 -91.908567154929827,48.238960321636227,178.987331232987344 -91.869239495077309,48.219532451321932,178.888096435926855 -91.799864349725951,48.201278547054883,178.750068548135459 -91.79128876576857,48.199022149714054,178.733008353039622 -91.743907700010141,48.20568460725525,178.683078890666366 -91.716524797691065,48.20032414778516,178.632909474894404 -91.712112516828981,48.195092365917574,178.614701922982931 -91.700927693919979,48.145923998110696,178.485231919214129 -91.709690257359782,48.124181531235571,178.446845022961497 -91.713817179708883,48.118079657909668,178.438371510244906 -91.713441099067239,48.115794731964144,178.432545724324882 -91.642650677130547,48.098901220481089,178.295600522309542 -91.571332625934403,48.094547337027883,178.187155631370842 -91.489650652541883,48.069312224594839,178.015884002670646 -91.341738821770093,48.074439106184066,177.824504412710667 -91.33031743235685,48.071791342948494,177.802641860209405 -91.291793494442842,48.075148771216746,177.757619589567184 -91.267957996003204,48.079916955068462,177.736071523278952 -91.251689720420259,48.085291016753722,177.726327878423035 -91.177757995238665,48.127014778058488,177.722591014578938 -91.142349704917024,48.148892607955126,177.725295856595039 -91.139887740267113,48.152227541827841,177.729722082614899 -91.140058758202628,48.15266152648293,177.73096938803792 -91.037433133404576,48.190639797503565,177.679662922397256 -91.037125125729986,48.190662801036694,177.679296945221722 -91.034517390866739,48.191997601756185,177.678861985914409 -90.978529449693227,48.220655708697244,177.669581970199943 -90.887052761714116,48.246988176500736,177.606784830801189 -90.848923679087562,48.245647737725662,177.551901773549616 -90.845195550656015,48.244780814467106,177.544816577807069 -90.840747304603894,48.240715996171737,177.529276232235134 -90.805775464262922,48.17904031128537,177.337442048825324 -90.791343023271835,48.144680534294167,177.237297425046563 -90.796874932371196,48.136731696528599,177.226166607812047 -90.795407893732303,48.136777715152874,177.224281685426831 -90.77769901240265,48.123690347999897,177.169518309645355 -90.777528000075876,48.123438357870086,177.168694593012333 -90.775790851312181,48.120103481333665,177.15850749053061 -90.775756840690605,48.119784491343502,177.157712537795305 -90.763189881542957,48.099493270083371,177.092995742335916 -90.753172386263415,48.092178625636798,177.062202832661569 -90.57132289932855,48.108163619135141,176.85316155385226 -90.497194641291202,48.100657849047778,176.735188157297671 -90.496955645100073,48.101000842032143,176.73567296564579 -90.453578613007508,48.106220273776366,176.689338413998485 -90.404774276569242,48.106328931311893,176.623683281242847 -90.34578733448474,48.095663047758002,176.51892794854939 -90.345037332454268,48.096280039463444,176.519372441805899 -90.338730300867567,48.100986984119501,176.521974557079375 -90.33160518414229,48.103615001943822,176.518569000996649 -90.313938785695854,48.10651615406676,176.501601312309504 -90.178154261298673,48.113662773472079,176.335707252845168 -90.137739137264091,48.113354327299376,176.280666106380522 -90.126637697787686,48.108920608980213,176.25526915397495 -90.125447647805785,48.108349642026873,176.252320322208107 -90.093185682254884,48.105849150902763,176.203082145191729 -90.075419086947747,48.102357494053045,176.170970923267305 -90.025139205869053,48.08592865996404,176.064606018364429 -89.999394683009285,48.05878881570267,175.965748472139239 -89.995364316620268,48.050249124873986,175.940089947544038 -89.998243989175791,48.036613493727963,175.911608560942113 -89.994591679898249,48.029626751659109,175.890129248611629 -89.969795580172914,48.015705500753548,175.823807835578918 -89.898951823227748,47.988824254758853,175.664905836805701 -89.87482309150549,47.986644642994428,175.627374807372689 -89.849107588823472,47.993667776759679,175.609623048454523 -89.821338493137858,48.016324470467801,175.626332057639956 -89.765502179995877,48.024194981766193,175.570371634326875 -89.750848784335744,48.02455116691565,175.551633922383189 -89.725717983366593,48.021044607286562,175.509710287675261 -89.689423709899856,48.012053360270727,175.439827796071768 -89.657324721437746,48.008759886780517,175.389133091084659 -89.565817043105142,48.004159243248644,175.256139849312603 -89.490753297294262,48.015757895677019,175.183878333307803 -89.493266092211897,48.00644214017958,175.16498417686671 -89.496871108262127,48.003586177484472,175.162963215261698 -89.543049519581956,47.994070818676121,175.201734405010939 -89.553083368217941,47.988534989508281,175.20189019292593 -89.554467171220338,47.981961350981166,175.188043266534805 -89.556543006617716,47.976079655205957,175.176768782548606 -89.573842784982119,47.968467853805862,175.181661104783416 -89.589758773512258,47.967429697447756,175.200410883873701 -89.597418979505377,47.972275775488278,175.222196292132139 -89.612941212531751,47.981960572698171,175.266013259068131 -89.626089295710841,47.984382252643783,175.289333120919764 -89.633355207954196,47.981268335505369,175.291602616198361 -89.638545022477885,47.974694639733109,175.282850086688995 -89.641658865531397,47.96915890954682,175.273801802657545 -89.641373868318468,47.961055526004593,175.254087742418051 -89.639814661209414,47.955504712999193,175.23875976074487 -89.641074675946484,47.954819716734342,175.238807812333107 -89.662146190279884,47.952445507166395,175.261290106922388 -89.699149922838828,47.942517311600675,175.2870650626719 -89.73126133856708,47.926474364767614,175.291751542128623 -89.739070346302142,47.919412472650457,175.285356218926609 -89.760245602009519,47.908222526394198,175.287015166133642 -89.795071103635465,47.892587531908539,175.296383734792471 -89.855493260169993,47.875226248004253,175.336039342917502 -89.873113752191273,47.875423006741379,175.360172867774963 -89.925183829920968,47.863290676616522,175.401222217828035 -89.932378900120156,47.858951711295823,175.400553011335433 -89.929054604989545,47.852053963837236,175.379632315598428 -89.935433660807192,47.847989001245175,175.378519090823829 -89.975831293852025,47.831742951743315,175.394152656197548 -90.015266108944601,47.822601700538826,175.425488635897636 -90.044297794680006,47.8187964270696,175.455562719143927 -90.073562407872501,47.812333230792945,175.479641389101744 -90.073778255941718,47.808955534455094,175.471881601959467 -90.07709650847535,47.804531240813574,175.465814198367298 -90.083891304803061,47.804847167176113,175.475740578956902 -90.089697612907884,47.80426925882638,175.482202739454806 -90.118338172774102,47.796608107193954,175.502628438174725 -90.133616601888264,47.796947892134504,175.524084621109068 -90.162329303138435,47.794034595484888,175.555960494093597 -90.180294606691788,47.787641548395037,175.565030531957746 -90.189175605396471,47.779357680580702,175.557312738150358 -90.230685684906391,47.777425182240094,175.608907918445766 -90.250335121128558,47.773990022742453,175.62734588701278 -90.297494005616628,47.760280805856802,175.658637343905866 -90.307882217779124,47.757853740062316,175.666951769962907 -90.315500427518728,47.757907636048635,175.677416674792767 -90.324988600708537,47.754997597018509,175.683365863747895 -90.331796701567427,47.752118593073781,175.685753844678402 -90.334228634858434,47.747613697431674,175.678331796079874 -90.387777940060815,47.742326138272155,175.738486298359931 -90.39536706341687,47.739497122309771,175.742069969885051 -90.422934722779061,47.736375846391041,175.772127547301352 -90.439257062981298,47.732837734459459,175.785914613865316 -90.443457023392327,47.727629836629397,175.779241126962006 -90.459910323586996,47.722625767647301,175.78973130043596 -90.538651923581341,47.704280266538177,175.853386697359383 -90.552837930907117,47.691491465983106,175.842325977981091 -90.586501563630222,47.681965303282858,175.865620101802051 -90.649385543455182,47.657401206728792,175.893144264817238 -90.687931215984463,47.644819071989282,175.915968362241983 -90.737476988041792,47.625567993465189,175.938064520247281 -90.869821569605179,47.558125279612945,175.959429399110377 -90.909045917249983,47.534098490460273,175.956277657300234 -90.911678908635537,47.531403538075452,175.953494518063962 -90.91135278296538,47.52744066492005,175.943620493635535 -90.915798797185388,47.523864715260892,175.941238839179277 -90.920926851014897,47.521009734109477,175.941512212157249 -90.92952705956327,47.520233641714306,175.951515166088939 -90.940624226127227,47.515757629907192,175.95616199541837 -91.024677023641715,47.466190026991775,175.954238180071115 -91.024677738126172,47.466189537533992,175.954238003119826 -91.034498089016267,47.459462102705139,175.951801584102213 -91.047199379325164,47.457750983749406,175.965285464189947 -91.07926542178005,47.429993411531726,175.943587611429393 -91.099122515927704,47.415114605232787,175.935662704519928 -91.107771686248228,47.413032552813142,175.942684451118112 -91.129684914291587,47.400845635230702,175.944034935906529 -91.132821820289863,47.394793781231655,175.933976558968425 -91.148511884176003,47.382690945766988,175.926915412768722 -91.158067061793204,47.380042898804788,175.933862498030066 -91.171591054508212,47.367493106962975,175.92274416051805 -91.190325786212867,47.341309670702252,175.88639110326767 -91.20780193285799,47.330409774549338,175.884700641967356 -91.240212087430692,47.306204092665673,175.872081247158349 -91.251716969568321,47.291718390535237,175.853562991134822 -91.264065970484651,47.280518574259972,175.844052942469716 -91.267504067565753,47.280707521710134,175.849289827048779 -91.272251125293877,47.278362530892529,175.850309030152857 -91.290032271440893,47.267188640392092,175.848435425199568 -91.327573480773395,47.240221978394146,175.836465149186552 -91.355404451061872,47.213915428624951,175.812554992735386 -91.359357382380921,47.207972562176927,175.803896049968898 -91.375745556117465,47.199029621626579,175.805447370745242 -91.388575589669784,47.188522778811198,175.798303534276783 -91.400009794305475,47.185145730168564,175.806226913817227 -91.420359990340529,47.173381825221803,175.806610741652548 -91.45358608283162,47.146388560392509,175.788683077320457 -91.458520038409233,47.140386349903636,175.781263578683138 -91.478906184589022,47.126897499981816,175.777617771178484 -91.499457638049378,47.123809318693077,175.799049665220082 -91.508553759292099,47.119719324685946,175.802038824185729 -91.520348768852131,47.109351492978348,175.793828401714563 -91.575373691329276,47.091147322689075,175.82760289311409 -91.593064539587672,47.069914756459575,175.801762413233519 -91.602525635934668,47.064655794987999,175.802502827718854 -91.60650573747121,47.064539744578148,175.80782148335129 -91.614729834384065,47.060422763656995,175.809553979896009 -91.628380925168642,47.051183871886387,175.806690823286772 -91.638720920398583,47.041660034348659,175.798492875881493 -91.646120709893594,47.027722377514344,175.77561249025166 -91.661804913254514,47.020519393767074,175.780488632619381 -91.668033932063167,47.015528468140865,175.777337592095137 -91.706206672705306,47.006477237623493,175.809509739279747 -91.738655874437981,46.984084510937663,175.801779470406473 -91.778858027692223,46.953030956693368,175.784334031865001 -91.782232944467566,46.947113100162909,175.774956518784165 -91.79559740019522,46.940907832538208,175.779012546874583 -91.808409277932952,46.934959133117808,175.782906737178564 -91.82762659194529,46.928431080697031,175.794483781792223 -91.836410820101193,46.928366963158545,175.806759751401842 -91.842907934502094,46.9264469362355,175.811364631168544 -91.87284522879969,46.909584069365316,175.813440956175327 -91.884797465291072,46.906959990777395,175.824099535122514 -91.908042652749501,46.892468139432459,175.822399633005261 -91.916543660374685,46.885068261372908,175.816761373542249 -91.954545165829188,46.868269283697217,175.830511194653809 -91.986646499179272,46.850869406215807,175.834492172114551 -91.999547519861537,46.839969581494806,175.826758452691138 -92.014965776578009,46.834959532761872,175.836694199591875 -92.060449272260129,46.811170679930356,175.844506650231779 -92.063649184816768,46.805270826796104,175.834950314834714 -92.087650528464536,46.795571812716112,175.845931059680879 -92.095650548440986,46.789071913663378,175.841780521906912 -92.089849987225435,46.77487245200183,175.7995396675542 -92.066049554718163,46.746673689291455,175.698099380359054 -92.027346552408844,46.71207533785833,175.559996576979756 -92.016847153859516,46.707705622500512,175.534549188800156 -92.021846213905945,46.705275633309412,175.535843786783516 -92.026276895793444,46.706860044910542,175.545960627496243 -92.035547710859007,46.710175287859037,175.567129038274288 -92.091050313900283,46.750474225405334,175.742842328734696 -92.118151000359987,46.749873875271035,175.780054134316742 -92.171974701666358,46.726786751529524,175.801611226983368 -92.174558986996246,46.725678248885572,175.802648812532425 -92.190652983331105,46.718774894490892,175.809115770272911 -92.196882626095984,46.710859591390133,175.799068161286414 -92.197825783686227,46.70519996569822,175.786864135414362 -92.19799705161509,46.704172234650947,175.784647824242711 -92.198136678203099,46.703334374467779,175.782840929925442 -92.196123733742184,46.698906465120963,175.769358400255442 -92.195648269166568,46.697860577320434,175.766173543408513 -92.195000794319427,46.696436315491539,175.761836348101497 -92.189356426449024,46.691419596783824,175.741748710162938 -92.189152831840318,46.680176169134327,175.714516645297408 -92.192635642630378,46.67451365826161,175.705926465801895 -92.193061294187928,46.67382161476722,175.704876571893692 + + + Mississippi + + + Mississippi + 0400000US28 + 28 + 46923.273999999997613 + + -89.096798169796372,30.233767122992244,120.226373514160514 -89.078433769820549,30.233680292422747,120.194715878926218 -89.068302769903752,30.252198367986573,120.249096078798175 -89.065163655283754,30.248298609908701,120.228658097796142 -89.066271603610971,30.241928949172003,120.205900901928544 -89.074712589587918,30.22531878433993,120.15600514691323 -89.09264372947672,30.204306776375027,120.105229856446385 -89.119397560371368,30.225343382342732,120.232333084568381 -89.157914483880504,30.232698633192218,120.326553705148399 -89.096798169796372,30.233767122992244,120.226373514160514-88.901540374904144,30.22657829751595,119.866047612391412 -88.910923164001446,30.222406982787643,119.865837778896093 -88.946669309116132,30.211648900253007,119.884952844120562 -88.975844250960648,30.209393542776372,119.9258689340204 -88.981411378853721,30.209964461686042,119.937559204176068 -88.985421494048509,30.212322296524963,119.953521970659494 -88.983391465377821,30.213629243014754,119.955128705129027 -88.977983340124425,30.212989326471792,119.943442068994045 -88.949043748119124,30.216181410205948,119.906554563902318 -88.921681753231098,30.222580398429439,119.884802944026887 -88.910055594961705,30.227438845275742,119.883856641128659 -88.890967953313677,30.241667024749336,119.906523679383099 -88.878994720091711,30.244443326826151,119.896932698786259 -88.87483009696443,30.243749316938125,119.887170501053333 -88.901540374904144,30.22657829751595,119.866047612391412-88.508161117804804,30.216354325643159,119.160148416645825 -88.501172961001387,30.216050404219011,119.147176849655807 -88.466874073624567,30.204547337387574,119.044654355384409 -88.454604789134478,30.203243517351883,119.018901779316366 -88.44381456499886,30.204321553899376,119.004898581653833 -88.431492367669435,30.210555322004396,119.008342985995114 -88.402625752887658,30.212179488626408,118.966020185500383 -88.405740774280289,30.208169680343701,118.955691327340901 -88.429461205366863,30.200518888937978,118.965934740379453 -88.454814739169066,30.198591769981004,119.001186287030578 -88.494684723583632,30.207951904769857,119.104786810465157 -88.50391397953598,30.212512573462991,119.138067271560431 -88.508161117804804,30.216354325643159,119.160148416645825-88.711886007738002,30.252801520933549,119.645881127566099 -88.657969629733486,30.235959922525105,119.489343594759703 -88.574207662760728,30.22464528606826,119.30384306050837 -88.569219554577188,30.224737325319193,119.295773367397487 -88.56323047921137,30.229481118963584,119.304061726666987 -88.566739501600878,30.224852341044009,119.292030179873109 -88.570301562095736,30.223362390940189,119.292266427539289 -88.588587936674116,30.221159349118945,119.314616344869137 -88.634908035350179,30.228346544249025,119.420808324590325 -88.667022767505358,30.230851121580979,119.484853344969451 -88.712996935874301,30.244664956302341,119.616233315318823 -88.741814518427987,30.240667918336609,119.649560703895986 -88.75394978517086,30.240805802637652,119.670660628005862 -88.765190062431429,30.243490555463598,119.700116446241736 -88.773159284199991,30.247525263532271,119.729258451610804 -88.733717432001185,30.248324571403685,119.665511236526072 -88.719271194384376,30.254933338478612,119.666647041216493 -88.711886007738002,30.252801520933549,119.645881127566099-89.199529453802569,34.996235161790416,137.666157229803503 -89.14037609803654,34.996058775050322,137.569753929972649 -89.140237095202281,34.996081775340777,137.569606939330697 -89.018365406783076,34.996401867847403,137.373639392666519 -88.824281560278209,34.996911617739968,137.062477234750986 -88.787844020899257,34.997007318016301,137.004185703583062 -88.471101722809436,34.997791484674522,136.498998540453613 -88.471025721334001,34.997810484511497,136.498941737227142 -88.381730647228935,34.997369406206289,136.354813881218433 -88.364753115847122,34.997349188450244,136.327655017375946 -88.259330806201689,34.997223644669781,136.159206498414278 -88.255044708027697,34.997313683334283,136.152689452283084 -88.201282460463574,34.997395219245689,136.067418619059026 -88.126253336754459,34.903993540322318,135.629104046151042 -88.099102558094756,34.893969302670534,135.55164844635874 -88.119619573222792,34.726067340649806,135.008439819328487 -88.139930077820736,34.59099679683677,134.575693059712648 -88.140457069416769,34.589576861728879,134.571635670959949 -88.141198998219238,34.583485155229653,134.551802021451294 -88.156514964052548,34.464874458994721,134.166349578648806 -88.16684272383003,34.384893736404671,133.905720268376172 -88.167118698933933,34.382717841725565,133.898613738827407 -88.174840018053175,34.32284874082945,133.703117073513567 -88.177074799159698,34.303966658150145,133.641071066260338 -88.178096703744359,34.295654061764601,133.613806875422597 -88.204802123114931,34.088335720012772,132.933760789223015 -88.208434050406296,34.060140521762605,132.840973517857492 -88.227631439635047,33.914689631743116,132.361904139630497 -88.227720424669428,33.913479691696558,132.357796913012862 -88.22772042306724,33.913365697427089,132.357396426610649 -88.249591798624422,33.746730864480831,131.805963885970414 -88.255646087037746,33.700604150102258,131.652870717458427 -88.255823049357673,33.697605299964785,131.642560553736985 -88.257331904158562,33.684685938465577,131.599340765736997 -88.257543897784132,33.683878977210149,131.59683111589402 -88.268204922813126,33.596059319395877,131.303282878361642 -88.268347895064451,33.593819431528217,131.295577652752399 -88.269359821977488,33.586870773918761,131.27259167842567 -88.270275730651846,33.5787601762149,131.245326874777675 -88.270731685242239,33.574725376375092,131.231761613860726 -88.271249668364831,33.572650476567965,131.225244299508631 -88.275818263936287,33.535841299735544,131.102075450122356 -88.278004071657762,33.518297169243645,131.043339586816728 -88.278620030157583,33.514270367767509,131.030039500445127 -88.292324431931519,33.400900695213487,130.649078091606498 -88.305710378896947,33.290165519154741,130.275815061293542 -88.341625360662036,32.993059403283013,129.268674518913031 -88.348884190025814,32.930922693582325,129.056581106968224 -88.38417446247206,32.628832818335411,128.020242327824235 -88.384228460051901,32.628557832094998,128.019330914132297 -88.389927681616115,32.579997461272924,127.851975089870393 -88.40497659862622,32.451772830007037,127.408988293260336 -88.40497659711788,32.451657836000052,127.408568107523024 -88.422639149620764,32.310575034606039,126.921161870472133 -88.432892475145309,32.229560847285796,126.640601430088282 -88.439834770728268,32.174707988950523,126.450283766724169 -88.439894762648862,32.173980026574448,126.447703027166426 -88.456142429486093,32.042484782913355,125.989629632793367 -88.456222420251279,32.041627827256725,125.986596085131168 -88.469842357616827,31.935087313023441,125.614979205653071 -88.470061325254022,31.932176464526094,125.604557095095515 -88.471141474784375,31.895675655417961,125.471037614159286 -88.472395369954867,31.853303607009355,125.315873288549483 -88.472287361986758,31.852867631050824,125.3140754038468 -88.46560736662191,31.699878729774994,124.733718259260058 -88.465604269369223,31.69980779472813,124.733448608778417 -88.460900231902087,31.62593275818546,124.449882932007313 -88.460656196858437,31.623582885230192,124.440696880221367 -88.450621712575696,31.437777726256503,123.727918564341962 -88.449835444437795,31.423218648601392,123.671915486454964 -88.449861440164241,31.42282966910982,123.670497171580791 -88.446383554635403,31.357914165765482,123.420566954649985 -88.446356552618752,31.357800172101168,123.420092879794538 -88.439383853993917,31.233203899379273,122.938654002733529 -88.439276836898273,31.232011964186185,122.933973290026188 -88.433178276233775,31.116256226317592,122.485853577964008 -88.426976753414237,31.00308736502739,122.045987616293132 -88.42689874021363,31.002147416313058,122.042284268885851 -88.426804359962631,31.000265798637518,122.034973785281181 -88.413628112870896,30.737576339591076,121.010706825181842 -88.41343618873222,30.733750020559654,120.995733578689396 -88.41337517081891,30.732374095558892,120.990362292155623 -88.412715946411879,30.714936045230882,120.922462191432714 -88.412504862114673,30.708314405578776,120.896736280992627 -88.410736371374156,30.670713457836733,120.749608936719596 -88.409234957391902,30.638954192524185,120.625209894031286 -88.408626880282256,30.633637486225172,120.603775966912508 -88.408648773977205,30.62472096952073,120.569570008665323 -88.405176769257906,30.547049215975068,120.265103057958186 -88.40509474716572,30.54534830909347,120.258418434299529 -88.404710616398233,30.535089869784226,120.21828150562942 -88.403446323533771,30.512843089958622,120.130476927384734 -88.396184486085701,30.371423851948673,119.572387617081404 -88.398397514254427,30.369687926900294,119.56939454190433 -88.400223472356345,30.362743289242538,119.545602724887431 -88.398243358409232,30.356784631699444,119.519220700487494 -88.395311266845823,30.354492782706661,119.505422619171441 -88.395141225486327,30.351306957927427,119.492809135466814 -88.402342325724618,30.346382162521593,119.485861213877797 -88.411088491295033,30.344115208466611,119.491799400188029 -88.419972825965544,30.355910486276155,119.552386402152479 -88.435053166274614,30.356651311828848,119.580625447444618 -88.44765736178357,30.349752576012904,119.575149613432586 -88.447787245523855,30.339671124789767,119.536358513869345 -88.454972308387994,30.331626499844536,119.517320113256574 -88.473037591791595,30.322020863497411,119.510561649687588 -88.481279753015372,30.320345881664732,119.517962757498026 -88.505965331912904,30.323472491514622,119.571666765026748 -88.507389374053275,30.324393428578119,119.577631736174226 -88.507497435570713,30.329398154438284,119.597183674573898 -88.523657940391644,30.342091317886123,119.673537947237492 -88.537378279450976,30.345298020738255,119.709074705839157 -88.580648239205075,30.346188586670593,119.785510644316673 -88.59751477704171,30.360362662724171,119.868775309994817 -88.600414847363723,30.360930605865146,119.875865548849106 -88.602927866212141,30.357873750274127,119.868292002007365 -88.61491109608076,30.355105794459988,119.877823805436492 -88.625689398797306,30.360710392399326,119.917686669155955 -88.664987299997932,30.364095856794471,119.997156458906829 -88.680742569168757,30.35770706484497,119.999101203866303 -88.693331744955003,30.349299411478608,119.987896640785038 -88.701754886427452,30.345686533548793,119.98817908205092 -88.715245163797292,30.344183495130086,120.005190751515329 -88.730061493714032,30.344668336257303,120.03213534783572 -88.748113947399872,30.349618904472855,120.081820446066558 -88.772911701137573,30.367398711576431,120.19248106982559 -88.812785805119731,30.386901289543157,120.335300102829933 -88.813746859184207,30.389674129539522,120.347627529874444 -88.811297848796926,30.393291953978625,120.357437028549612 -88.811397891530817,30.396691767486971,120.370722640305758 -88.824895278142961,30.40436922738839,120.423202823847532 -88.842499749071436,30.411590675305082,120.480880910530686 -88.846780384357231,30.407258393886501,120.471431476995349 -88.858999910143311,30.394891438888237,120.444452948868275 -88.85261328829921,30.377348956899024,120.365943878889084 -88.881698330613347,30.388593579142725,120.45865636318922 -88.884961432556764,30.391165409399402,120.474111925810575 -88.886001489006631,30.393991245739695,120.486775169149041 -88.895102704403541,30.395391087592841,120.507614379748702 -88.923204322450772,30.39579081340462,120.556847565807402 -88.972407359659385,30.392790535148055,120.628844233229756 -89.0175092599371,30.38589050660487,120.678912836126983 -89.0844135272324,30.370089768384844,120.731856976635754 -89.188018337039864,30.333190854542629,120.766195363365114 -89.221620962137138,30.324491028195464,120.790011034347117 -89.273012872901703,30.30748549666767,120.812229834496975 -89.286924145696631,30.305091502435644,120.826784385368228 -89.29262427158379,30.305290440119265,120.837303177453578 -89.295624388096812,30.30959017736723,120.859027158468962 -89.293024577503488,30.330089077464301,120.933652512729168 -89.289024551984383,30.335188834175799,120.946476737037301 -89.28274440127889,30.333972957473076,120.931048990227282 -89.280998577126198,30.351781997788819,120.996721284464002 -89.293680042352889,30.367626015683776,121.079454268328846 -89.316248649040276,30.37739827667291,121.155685599893332 -89.337124084652132,30.376006164076781,121.186034058220685 -89.342129179614574,30.374886586984044,121.190286642871797 -89.35062934086487,30.372985207306698,121.197510757483542 -89.354430396722123,30.370785293382397,121.195544554851949 -89.365030489133972,30.359385821820315,121.16978513635695 -89.367298475392388,30.35416008756922,121.153537476435304 -89.347115935074186,30.345564740965781,121.085865617729723 -89.340028774648744,30.344986836687927,121.071507597342134 -89.33372757692419,30.339887173031677,121.041067541576922 -89.323526132763305,30.321289284314432,120.951900913380086 -89.323726084323141,30.316889523659338,120.935273388400674 -89.331127100718064,30.304890114655631,120.901651225052774 -89.345927304859615,30.295190512943801,120.889565574005246 -89.359727551985983,30.290890624208448,120.896609446965158 -89.366928659859454,30.286890778609127,120.893509654328227 -89.380728784651495,30.272391449572879,120.861188693903387 -89.384928844340209,30.269791554342977,120.858350217342377 -89.420530452537236,30.256315972686586,120.867369548417628 -89.425806459615202,30.247387415329737,120.841937083750963 -89.425675381380557,30.241088762430834,120.817379903979599 -89.431610319656315,30.225215580830305,120.766228722408414 -89.448647470885518,30.207096422870173,120.725435545668006 -89.449092244574302,30.1873515043767,120.649832947179675 -89.462457406351788,30.17674496721882,120.631756614893675 -89.464777446834859,30.175942990419049,120.632639994844794 -89.470974608415219,30.178277806131245,120.652324286289513 -89.4770069211297,30.193559911276758,120.721808539703488 -89.481397042019864,30.195749751258873,120.737822166644037 -89.491282182655411,30.189675996087463,120.731322722509503 -89.504414410576501,30.185050132035155,120.736008353531361 -89.523997833088742,30.185074953946938,120.769784233532846 -89.525687841744471,30.182752066480425,120.763707015663385 -89.573838880949481,30.18289562380971,120.847128612920642 -89.581939118835749,30.188195259016535,120.881567377597094 -89.608841068422095,30.219092316126087,121.047292456030846 -89.644627687546688,30.28967411251109,121.381261185742915 -89.64476275571711,30.295090813770294,121.402370642870665 -89.641881792657003,30.303304388847888,121.429060805588961 -89.631064797218571,30.323007405347663,121.486338772810996 -89.631129021053809,30.341438393307602,121.557412214577198 -89.684600534575011,30.453775748880108,122.081107033416629 -89.691771106164467,30.460755081224562,122.120216524228454 -89.72580591089077,30.493882177042298,122.305775756016374 -89.733769089806415,30.494482071405798,122.321779712103307 -89.761762976720746,30.517739542698802,122.459041676484048 -89.808037661968285,30.574014041275781,122.753970332443714 -89.824579466025611,30.610507895334646,122.921845542266965 -89.84378163229735,30.667974794123822,123.174101747572422 -89.84379258731677,30.668007579537775,123.174245554953814 -89.827372104095559,30.738559884282981,123.414620538242161 -89.791060744593366,30.853486966514865,123.78875451348722 -89.774607963142046,30.899650611526852,123.935497285798192 -89.772128931186074,30.901389540087731,123.937832206487656 -89.757740632441127,30.902388619072411,123.916941556148231 -89.745986608540377,30.92088972395096,123.96685843449086 -89.729579904466718,30.973095045371629,124.136281995102763 -89.729346270974588,31.004252577366515,124.253644206561148 -89.729345290362886,31.004383352625979,124.254136587493122 -89.733702414766285,31.006783182231974,124.270662231370807 -89.753840919543336,31.003805156732422,124.29389838501811 -89.817629197131694,31.004035551540348,124.404086302965879 -89.825817373938634,31.004011476732355,124.418037043884397 -89.836742610197135,31.004010375220197,124.436771469190717 -89.837108578493115,31.004010646444648,124.437400252558291 -89.858063071351907,31.004026176090271,124.473409855738282 -89.893909842030894,31.003709859698443,124.533748366869986 -89.898717947828686,31.003863806601732,124.542585887014866 -89.924321494922523,31.003396593548928,124.584800197742879 -89.928363582083236,31.003387556395932,124.591710842214525 -89.974005566569545,31.003342133617632,124.669992404989898 -89.976633627033522,31.00364209285771,124.675643595866859 -90.006536267833198,31.003313831855536,124.725841127336025 -90.023389630390938,31.003251678026292,124.75460864789784 -90.030778788250771,31.003139615166759,124.766904230229557 -90.051911243948723,31.003164416616027,124.803380689583719 -90.129612914817301,31.002995700027615,124.936638458631933 -90.132601977580791,31.002872678764984,124.941328977234662 -90.165485686161858,31.002973365845641,124.998432249762118 -90.165883694153223,31.002928364565584,124.998949340544641 -90.2607646543633,31.002604657336111,125.161584186367691 -90.347218579577813,31.002309699488386,125.310015707276762 -90.348441605744057,31.002305688231019,125.312117761000991 -90.348452567219482,31.00230567624725,125.312136691063643 -90.370583079970046,31.002281481757198,125.350363314151764 -90.423330203054903,31.001756014974575,125.439773778431118 -90.428062303925159,31.001721972364486,125.447848591022193 -90.438564528135586,31.001675876183619,125.465882863849401 -90.442938621735308,31.001674835132867,125.47346336953342 -90.443692637783073,31.001667828427177,125.474744467064738 -90.475308315151452,31.001743527093062,125.52986731659621 -90.477142353643757,31.001685512999668,125.53283101413399 -90.478498382354843,31.001662501498373,125.535097194835544 -90.487090566398805,31.001685419444186,125.55009286198765 -90.48796358447197,31.001638413788147,125.551430919207633 -90.548831367952388,31.001668103878242,125.657228299416602 -90.56841130408273,31.001677654449971,125.69128521066159 -90.584734652162837,31.00164250258948,125.71952439006418 -90.585664672016975,31.001642493827482,125.721141062676907 -90.588589733265891,31.001548471380932,125.725872249342501 -90.589892761665084,31.001594456602124,125.728310560807586 -90.649939040679925,31.001429899466721,125.832136858254671 -90.65241109369795,31.001453874844298,125.836529329419136 -90.735692864469485,31.001157104839447,125.980463179759681 -90.73577186625343,31.001165103657787,125.980630951933563 -90.759995386510923,31.001525855143278,126.024216519668698 -90.770553608540737,31.001316766734707,126.041842325590551 -90.77720175149004,31.001433697524995,126.053876963444054 -90.781078833545834,31.001399662724889,126.060511672869325 -90.784965916114501,31.001389626521291,126.067254499532282 -90.827051175491007,31.001302639863795,126.140369747765362 -90.82724881419314,31.001302231360658,126.140713235363364 -91.061444000567732,31.000874661015303,126.548780930228531 -91.069496947360733,31.000859958583849,126.562842200510204 -91.082041212723198,31.000848839990095,126.584793922491372 -91.109341789678908,31.000796583331098,126.632479465566576 -91.109518793717683,31.000819580394097,126.632876295596361 -91.177368983728613,31.00108265138725,126.752961709164083 -91.177438232919414,31.001082919882112,126.753084338270128 -91.225298244145208,31.001121462009515,126.837321720086038 -91.226069260420815,31.001121454664482,126.838676977902651 -91.424855446645893,31.000920568570017,127.187946225516498 -91.426983491703552,31.000943546971737,127.191785830073059 -91.539963870609611,31.001323445106181,127.392681288532913 -91.626356679836292,31.001101629135686,127.544639559462667 -91.638180930848492,31.001350502095814,127.566500233486295 -91.585908103394729,31.022118868381188,127.551750439219177 -91.572932955252739,31.031715468556456,127.564719608984888 -91.563705935337993,31.045145823566354,127.598651971668005 -91.561145022730969,31.056051252703124,127.634909071028233 -91.562521139505222,31.06283786901567,127.662713592872024 -91.565388276438824,31.068761518160255,127.689921748824418 -91.578611701155509,31.080109771830919,127.755693253129721 -91.605437256671465,31.156471349739476,128.088062971830368 -91.601205815346603,31.194242273596057,128.221316518262029 -91.599730800906656,31.207408630662769,128.267733020707965 -91.575734025667231,31.263209826933288,128.432963458821177 -91.548828500826303,31.266364915205749,128.397256883792579 -91.523637087945133,31.275343670450319,128.386241030879319 -91.516854007716987,31.280130475860499,128.392083255574107 -91.510098041204174,31.293563811438933,128.430100397206843 -91.521060813557156,31.313146365861446,128.522134494967759 -91.532441773869067,31.328542578762985,128.599325575865805 -91.541144830545264,31.339252992073924,128.654391437768936 -91.542484006662846,31.358665737431,128.728746698237956 -91.526627534390371,31.380818917311817,128.782951704226434 -91.515036706908404,31.388789260002934,128.792090802453458 -91.50633397554455,31.402846874098618,128.828858376480639 -91.501647995842319,31.420920858989319,128.887544260360301 -91.506542822306272,31.434857184277536,128.947732006199658 -91.51159800784869,31.440839811379,128.978756243363023 -91.516372244154823,31.4511172087566,129.025167932733893 -91.52416334229089,31.521748312966199,129.299831697717309 -91.51705333856529,31.532800784818068,129.328130557201803 -91.512460264325469,31.5345187366472,129.326401899568737 -91.480960569125386,31.532273164074621,129.262801029719412 -91.451259064422175,31.541572950287296,129.244995723478496 -91.438857888225712,31.548072719764136,129.247226182371378 -91.423932775836505,31.556295970390281,129.251392934471369 -91.417924927274157,31.563505015296109,129.267454273998737 -91.416723414752155,31.568911761108637,129.285290626809001 -91.426336231343384,31.579725147724044,129.342016790993512 -91.43895296300596,31.582728771494565,129.375209672376513 -91.449862668365384,31.584936616023246,129.402478265576065 -91.459922172202411,31.585130770994919,129.420836159959435 -91.471996683890282,31.587534437405306,129.450874672271311 -91.478605507675297,31.594142612861308,129.486818444915116 -91.479206391186636,31.600150088215432,129.51000471226871 -91.479206478995252,31.606758328062245,129.534345930442214 -91.479206558846286,31.612765809351465,129.556470343843102 -91.476202730634711,31.623579330645754,129.59101683832705 -91.465989326335503,31.630788405495572,129.599645375274122 -91.453973470181111,31.633191510444945,129.587426315061748 -91.442558385727679,31.633191621590921,129.567419650033116 -91.423332992476361,31.633191808735205,129.533733029849827 -91.405910051556873,31.639800230158773,129.527541762217879 -91.399301566600812,31.657822751195933,129.582296212203801 -91.401357980466784,31.690063430773186,129.704464834183455 -91.399158216499671,31.711262311659805,129.778518022969365 -91.381178553069802,31.734909993191117,129.833918274380267 -91.370618112215112,31.748799571867693,129.866442884318531 -91.366327534284963,31.754639331832994,129.880375556647778 -91.366857217601236,31.762658863914378,129.910728945396841 -91.364957439388206,31.782257829820665,129.979299317114055 -91.360757604516778,31.801255850923059,130.041610907763243 -91.346957894410338,31.844752652363166,130.176844857633114 -91.339657851966194,31.853152273424154,130.194850418716669 -91.328157657125132,31.856852187558189,130.188323836773634 -91.294656014310377,31.862051236459674,130.148915030062199 -91.249386180632072,31.871739159829438,130.105467802844942 -91.129250176760848,31.987743130851708,130.320525188930333 -91.035947734204768,32.102933903450193,130.578649528324604 -91.029186937996371,32.114601952710046,130.609413797035813 -91.028776092516594,32.11531100608272,130.611282997764647 -91.028365733240207,32.122313973363227,130.636055238544941 -91.028172202497629,32.125616663521875,130.647736448794603 -91.031393395435757,32.131700498648208,130.675443474203348 -91.035688282018498,32.136710702181709,130.701100048609078 -91.041772643650546,32.139215765347735,130.720741613768041 -91.047856990734417,32.140647214343765,130.736479197628796 -91.053583391678984,32.139215649512678,130.741187399253249 -91.058728850954623,32.137393367090354,130.743469992652535 -91.06824546432297,32.134023025138731,130.747693820856512 -91.132646145648877,32.128091616001051,130.837724911049008 -91.164065905772759,32.13457196245178,130.915774273686111 -91.166695983686708,32.136167851666102,130.926137082278728 -91.172946252585319,32.146127260205354,130.973170843906701 -91.175796459274864,32.156854661402441,131.017084609717131 -91.172290677207201,32.178401549852786,131.089242310263216 -91.165415807157004,32.19876253509311,131.151212782599032 -91.159270744615611,32.203830326261503,131.15894609503448 -91.134831377546789,32.215305957136223,131.158223394304514 -91.123845732309249,32.218802479521706,131.151876430027187 -91.047749888002926,32.243022342488572,131.108016700483859 -91.040249743384422,32.244222352583414,131.09939946886152 -91.02274928335622,32.238022853619462,131.046664864756167 -91.007547793804292,32.226024639736373,130.976866820827127 -91.005798637064743,32.217256122335478,130.942025131545961 -90.906413863010059,32.317367792119001,131.133395945653319 -90.899828659090772,32.330963945764253,131.171268816106021 -90.902752183201656,32.339733466129935,131.208044216968119 -90.913604344650381,32.341323453590775,131.232497499324381 -90.987915111988258,32.353628070719616,131.405136404559016 -91.0013494820993,32.359562624270438,131.449771010316908 -91.004749616117948,32.364012355312035,131.471721766516566 -91.00574971975098,32.370011028099164,131.495126239024103 -90.995323984930806,32.4057272424118,131.606144795194268 -91.030851156721965,32.435405323248297,131.774508778005838 -91.054152725229343,32.440304834011371,131.832378769293427 -91.071453189351715,32.447003309000912,131.886384080164135 -91.096554916157459,32.460602342209697,131.978720905259252 -91.110055389577553,32.473900506208921,132.04992819018662 -91.117255697408197,32.484999848832977,132.102322649210691 -91.117955947096874,32.501997944713217,132.16470621433109 -91.099126158855626,32.546608778723055,132.292631828226149 -91.094989130404343,32.550984589150161,132.301221575587988 -91.090684563226091,32.555162109939573,132.308809185400605 -91.091859626413211,32.564560979195655,132.344602606259286 -91.09201880688822,32.565834201309237,132.349450656212866 -91.098022498111902,32.578507274154781,132.405316326767206 -91.10536022064565,32.586511286359688,132.446704565547407 -91.121103186282696,32.586649450638461,132.474350148811936 -91.129161383174733,32.588347281096482,132.494343566708267 -91.142397816571318,32.599062585131222,132.55562830157578 -91.147454021606265,32.605997169673373,132.589227801188827 -91.152568295183443,32.6177714988955,132.640276731923223 -91.155071562612136,32.633133665446678,132.699665610678494 -91.15333166744189,32.643359144761675,132.733307927846909 -91.119508392822183,32.675924769328574,132.791642418131232 -91.100012129128345,32.687140374226779,132.798209548927844 -91.077310757783366,32.695600156012198,132.789403185248375 -91.065195624444868,32.704774794894121,132.801386286504567 -91.05829261009201,32.714424357044145,132.824035548605025 -91.055730689856304,32.72410687433792,132.854264532215893 -91.062015898454348,32.729341536958266,132.883797933347523 -91.078426322712289,32.734381108843877,132.930051612667739 -91.12440345720411,32.744644111440245,133.04587315954268 -91.155713125295165,32.744184822842776,133.098157010041177 -91.164641382897472,32.74885448854981,133.130221369676292 -91.166580484711091,32.753146243936051,133.148892045021057 -91.165649948153018,32.787664442507769,133.270516689866781 -91.162922263107632,32.814307073211459,133.360850849188864 -91.159589329399878,32.824145591076245,133.39018852263689 -91.146255330817127,32.84471064749728,133.440529658459127 -91.12913913294291,32.856899180841793,133.454506808891892 -91.117343886620148,32.8574812685033,133.436296782456338 -91.106883699594547,32.86023622906572,133.42812626529485 -91.087935501318995,32.875231634243995,133.448966135270894 -91.071854368680462,32.890497996909303,133.47569349873811 -91.065061433673776,32.905547278253103,133.517588364891708 -91.06522672459208,32.925950210501824,133.590450269170105 -91.088055954035298,32.978100258690709,133.814942990429699 -91.095519229955372,32.986204760864226,133.856523379683495 -91.107835560785702,32.99077139887693,133.893871627748013 -91.12636190076789,32.986502435442191,133.910529224202037 -91.135669043334175,32.982366557733393,133.91183471493423 -91.139840003573795,32.973185994997891,133.886411954648793 -91.132201732038496,32.96564946518653,133.846532515250146 -91.133369182666456,32.924958578908019,133.703965515829623 -91.135295147433524,32.919512844191011,133.68791473377496 -91.146330213850106,32.90733137026551,133.663567243143916 -91.161229456173032,32.901716514382429,133.669218093156815 -91.176659790684894,32.901835353328146,133.696182707324624 -91.198040347450842,32.908620783828873,133.757098412141204 -91.209518715879781,32.91719022042313,133.807314794510603 -91.214092909813601,32.923939821558669,133.839174514636397 -91.215283051545299,32.932155380112206,133.870413386262953 -91.20309822558535,32.963045888539916,133.959150019101799 -91.167329060930598,33.005938009413214,134.049844422377646 -91.158918278642588,33.013048435643142,134.060608956031501 -91.126911672054959,33.040106634535853,134.101566601544619 -91.088845368216028,33.147002454759694,134.414556689560413 -91.08724142524936,33.223465500576381,134.6817079288885 -91.111819305746323,33.247749992498619,134.809365507215261 -91.142475723222361,33.300213963050602,135.046518607065082 -91.185689407886557,33.421386256214845,135.545865708962083 -91.133146419284145,33.431873249191987,135.492789610289037 -91.119756404161265,33.450925401991043,135.536664487794042 -91.126370891522313,33.474650110746012,135.631031236611307 -91.216935680177528,33.531227270680162,135.983575943857431 -91.233560381410058,33.554590897244864,136.093564420007169 -91.22955270756988,33.561739596685563,136.111662717536092 -91.225386416582438,33.569171230019201,136.130473649129272 -91.15341207655716,33.584523175481387,136.061138764023781 -91.135306854375713,33.596290755169441,136.071302783675492 -91.131708944507963,33.607835198349939,136.105427491478622 -91.158748419058739,33.627986640696328,136.221780318766832 -91.187784621800461,33.647707404558844,136.33999971114099 -91.194358942846904,33.658663484741666,136.389356259256601 -91.189976360712876,33.671263105278264,136.42572757601738 -91.187237265411781,33.681123669567953,136.455361003056169 -91.177376080678272,33.686054033465368,136.455695854499936 -91.149435785336991,33.681124056762449,136.390918359160423 -91.141218140557768,33.685506598002831,136.392162361182272 -91.134096198071504,33.689889128055796,136.395274481736124 -91.129165665920794,33.697558481245395,136.413552531041205 -91.128070150894615,33.709610263113717,136.453596575185657 -91.137383867780869,33.730426831960095,136.541811591014266 -91.145948364515419,33.751901659089697,136.630988694727421 -91.141135656883776,33.77890932532928,136.716541635803878 -91.068777010887857,33.842232829491259,136.813073459081352 -91.038087301723891,33.916442202858519,137.017866237089038 -91.089432231875847,33.961861513263116,137.261929058469832 -91.090387439411629,33.974435862865192,137.306959349662066 -91.020157355315305,34.004933034164246,137.293134473264217 -90.965974539186945,34.009734019340598,137.217958204448223 -90.888677907545301,34.034286895444787,137.171964844688773 -90.880427761711928,34.067283124087872,137.271807849407196 -90.889661926134522,34.089211761106469,137.362956579774618 -90.91332369826543,34.097290521609096,137.430737336166203 -90.930060185449207,34.1094088556288,137.500723750330508 -90.933236354304753,34.121794249889234,137.548706633038819 -90.934382792589133,34.126264758396218,137.566022063605487 -90.935831664440656,34.131914599260263,137.587902327999473 -90.919672842870426,34.156151780472904,137.6439513489604 -90.894279860418621,34.157306182966515,137.605064425617456 -90.881583533769202,34.17115604341901,137.631249334663153 -90.882160820916738,34.182120404905454,137.669896511361003 -90.897165953177904,34.193661676548537,137.734844719059765 -90.914479660056742,34.212127834152092,137.827441722154617 -90.912748480389311,34.224823419506428,137.868084105663002 -90.896012299276734,34.231748435454172,137.863620503805578 -90.87004214961776,34.2300175043762,137.813909748569131 -90.857633954815057,34.24069983905742,137.829651217907667 -90.765410137711498,34.365162433377229,138.100834986194968 -90.659806987324146,34.377471906322562,137.965770065784454 -90.615208225284761,34.392489612027553,137.942428031004965 -90.576599736673757,34.416917783392819,137.961347003467381 -90.56707282999669,34.43716486511218,138.014616259373724 -90.571398183109665,34.526589337433101,138.327019915916026 -90.577053166421607,34.643503059420816,138.734271774068475 -90.577810243320187,34.659155199586962,138.788691953755915 -90.565300099417811,34.667494903044187,138.796143271028996 -90.551121745871157,34.664159227474642,138.761179217137396 -90.540279472096046,34.660823501041676,138.731778414919972 -90.522765120486611,34.664993477799825,138.716751380823553 -90.510255106604646,34.680838815438811,138.74971108045429 -90.511089271444732,34.691680264022814,138.787897906266153 -90.534442048960614,34.709193141048303,138.886205721646547 -90.556126865399406,34.729207902919441,138.990184291265905 -90.551123285582293,34.765068168435498,139.103325830772519 -90.538613317086217,34.78591725975572,139.153073402121663 -90.521098908246572,34.784249514340637,139.118284933269024 -90.502592470434607,34.771679816110108,139.044944246299565 -90.496078135548089,34.769238537028009,139.025841230526567 -90.481065809220198,34.770906604986287,139.006523038260639 -90.468555757615917,34.78425006143096,139.030906922183931 -90.479398747387833,34.834287448281927,139.218208730220795 -90.475228958316734,34.854302499025678,139.278926203027368 -90.462718766439068,34.858472425410305,139.27223822940141 -90.437698196626158,34.856804774274885,139.225063518621027 -90.425145730861345,34.83635240839115,139.135090546682477 -90.416130487083819,34.833592639273242,139.110794111154974 -90.40923027062297,34.834513852524907,139.102458018809557 -90.30864830157013,34.847942045346265,138.981124103069305 -90.295181723002585,34.862309669326898,139.007418458350003 -90.251358952928683,34.909064612209399,139.092939671128988 -90.245740291082029,34.939339172524008,139.185879671014845 -90.255233771212175,34.956730213632099,139.260251937434077 -90.310563639250063,34.997433625140289,139.488916722126305 -89.894659252980873,34.996100014429317,138.799332135356963 -89.884622024681718,34.99600512304896,138.782540909945965 -89.849744235087115,34.995937487417187,138.725102188065648 -89.796442030600204,34.996038033777396,138.638079294003546 -89.725577061689748,34.996508332047789,138.523651101626456 -89.645533625485072,34.997039542470446,138.394582364708185 -89.512401592631292,34.996502939848305,138.175526864826679 -89.494987190508212,34.996109138305727,138.145816481672227 -89.353924210047424,34.996169308849254,137.916484192945063 -89.199529453802569,34.996235161790416,137.666157229803503 + + + Montana + + + Montana + 0400000US30 + 30 + 145545.801000000006752 + + -111.046173665536131,45.002352599144658,203.20331874769181 -111.058103689335908,44.936911028247813,203.097321384586394 -111.057525604080837,44.934588131242755,203.091701072640717 -111.058782424498276,44.867670804711572,202.962745214812458 -111.057383137074197,44.667282799038169,202.564927358180285 -111.057094520532701,44.625949627157688,202.482477654702961 -111.050855559961335,44.475100891397759,202.170754219405353 -111.108456822681717,44.487357440045521,202.302604863420129 -111.124537300685901,44.494685874741926,202.347193474881351 -111.133262633752253,44.500951474255885,202.37594164442271 -111.14133930894576,44.518137637487719,202.425202697515488 -111.221124919763113,44.623636010174479,202.783155960030854 -111.325562801171529,44.725488134978413,203.178474712185562 -111.379577501339995,44.752756131300913,203.332551024854183 -111.396710745027278,44.752362862880091,203.363656907342374 -111.483431569387974,44.71019817775889,203.442371500656009 -111.490903655931831,44.706565161487106,203.44916339404881 -111.518482051165549,44.644721225126041,203.379059657454491 -111.527656925558603,44.605898659156409,203.31976377684623 -111.603141400909493,44.555226482894341,203.360964400693774 -111.619394816768207,44.554050890563346,203.389044458977878 -111.633397777470904,44.553038071241005,203.413240533322096 -111.706112116109011,44.56121953019418,203.565399237908423 -111.739085045707469,44.544074686902427,203.593383390456438 -111.808422170044778,44.516473671039954,203.668959917500615 -111.845190122827773,44.5292385362741,203.762983445078135 -111.851188587341667,44.540849959489705,203.797044925391674 -111.872400683659009,44.565044613527263,203.884296611882746 -111.949838580151862,44.557786625332056,204.01520961523056 -112.080369725760789,44.534560411244826,204.214633223600686 -112.189015328915687,44.535459567245411,204.420474668033421 -112.223599123479289,44.544525618197127,204.5031758826226 -112.231378430262936,44.550500242594524,204.529458173550665 -112.237765218712795,44.556200018056082,204.552582437172532 -112.248566756522862,44.562015632883046,204.584224238991737 -112.260199133130072,44.565338773418084,204.612563426606357 -112.275985743762902,44.565338510463306,204.642231523059309 -112.300911796430839,44.560353109983915,204.679370170459151 -112.341623944421343,44.539581746418492,204.715455682948232 -112.349101210451664,44.521303397601244,204.693890806287527 -112.3585014263505,44.494133451475065,204.658576008863747 -112.360827237283303,44.487286695691402,204.649589270353317 -112.373195002531901,44.473114994531457,204.645209224894643 -112.388981234266211,44.461483128571757,204.652230776846409 -112.412245784824663,44.463975233494459,204.700941412709653 -112.475109669478186,44.481032051232539,204.85270734783262 -112.546127803348199,44.484766713254395,204.99388393945992 -112.690066337756889,44.499850687933353,205.294767245650291 -112.721016954678376,44.505343943797669,205.363845826126635 -112.78320119857085,44.485887711560132,205.44354856107384 -112.813993631128398,44.452370742048416,205.436729827895761 -112.823951754288203,44.435109809018265,205.422055406495929 -112.823951322835768,44.42183228456053,205.396267034113407 -112.825278669732455,44.407227016724349,205.370396141894162 -112.826606081581502,44.394613357221886,205.348383016884327 -112.831152059516555,44.386430513138649,205.341071826405823 -112.833244825491491,44.382663495899841,205.337705171667039 -112.851170105005821,44.372041180990209,205.350979145616293 -112.877726711952889,44.37536011893679,205.407732388004661 -112.972207964863259,44.427931961863784,205.688715802505612 -113.005453206594225,44.451811413102433,205.797896180301905 -113.029058007171017,44.496910144749314,205.929717741906643 -113.058685442728773,44.61964656566834,206.221953724510968 -113.055444480627258,44.62217651550943,206.220688388682902 -113.051264691645173,44.63036924724566,206.22851659823209 -113.053419970812143,44.637938898555184,206.247107077389956 -113.103001364215558,44.719816690938572,206.497375415638089 -113.136538299436523,44.764131304457706,206.645142447203398 -113.160128215507939,44.781828180433536,206.723304765298963 -113.209801810930202,44.809019227602178,206.86861821077764 -113.24909085358253,44.823927953788292,206.970959567464888 -113.28030694659607,44.81368384806887,207.0103714838624 -113.331415855427394,44.78962297509652,207.06113157607615 -113.343628898526617,44.785830925156226,207.076984797604382 -113.355556281045935,44.792372455135016,207.111897899769247 -113.457000149404649,44.866396703376253,207.443277115002275 -113.477768412704378,44.895619154401267,207.537528833374381 -113.500677325347368,44.943282815665391,207.670380528084934 -113.496378476846573,44.94956563146085,207.674086776562035 -113.482768346547203,44.95127879171239,207.651667967438698 -113.474647161076007,44.949092018525178,207.632261374033988 -113.449131607442169,44.972892477749589,207.628936883062124 -113.447847858207155,44.980886173086489,207.641534245572984 -113.447685148472942,45.01931760815792,207.713340651243925 -113.451284121156661,45.046710431287892,207.771435643546283 -113.465896911968514,45.064158473458029,207.831562844105065 -113.475705997257762,45.062664367974541,207.847206619568169 -113.487214217794175,45.064483098860144,207.87224246095866 -113.578392735830391,45.131270836520322,208.168228421360254 -113.578299851834075,45.134730697603608,208.174494955688715 -113.568119028411758,45.144079491028009,208.172770027071238 -113.56791923646783,45.150294242226771,208.183959660120308 -113.601448118054947,45.192070978508397,208.324558050371706 -113.652008299315924,45.23566435335627,208.500263914465904 -113.676354135929316,45.250364344230142,208.573145075701177 -113.740677768463954,45.330690004141708,208.841983864083886 -113.762875711204458,45.407446534832637,209.024608748964965 -113.776109923614811,45.466314944893504,209.157200411893427 -113.767714655624658,45.484170456775132,209.174150073900819 -113.77487009747864,45.513263441897635,209.240672737360001 -113.788225342093696,45.522325002931737,209.282169030979276 -113.812073752494697,45.531863319131723,209.344131511636078 -113.815413146981484,45.550940711562568,209.385131546296179 -113.803967068896199,45.580034036744166,209.416714049875736 -113.806829198584083,45.590049629628226,209.440275660715997 -113.815891873885803,45.601495948765759,209.478001594543457 -113.83735559229018,45.613895925136816,209.540588028728962 -113.89864272043728,45.642384806620804,209.706637263298035 -113.936183660199333,45.683163538087705,209.850461734458804 -113.9445640267638,45.687293032749643,209.873555359430611 -113.973529816050473,45.701566164018885,209.953355035744607 -113.989724199230594,45.706176702147857,209.991879579611123 -114.017598260858151,45.697056585405619,210.027435787022114 -114.021280199431402,45.69386664899271,210.028553968295455 -114.024498777154221,45.680550123679083,210.010539842769504 -114.036893839385229,45.648898171688529,209.97654196806252 -114.137211047659534,45.558398064582931,210.000496406108141 -114.189814227137148,45.543083774734043,210.071295058354735 -114.249791153327777,45.546420610405313,210.189706879667938 -114.311574342494836,45.470365604969523,210.168002263642848 -114.352780864653667,45.469474933174553,210.243760196492076 -114.368582877456319,45.492547733023159,210.315158643759787 -114.462508559756969,45.562210317947361,210.617045880295336 -114.475725805957339,45.564205010319036,210.645432486198843 -114.516163396426649,45.565660255549361,210.723931446671486 -114.553253690638712,45.559932846727655,210.78326550591737 -114.562823186832716,45.565500409277554,210.811228593811393 -114.56374104321786,45.566034420967597,210.813910417258739 -114.565622597678114,45.638334488959892,210.94702628441155 -114.563016650382423,45.640828434051393,210.946603122167289 -114.552804608731307,45.643522502351615,210.932278988882899 -114.547544550105101,45.643850579952087,210.9230055809021 -114.543790443153895,45.642227709669662,210.913063623942435 -114.517381495232129,45.653764703504365,210.884218009188771 -114.502895788356369,45.667637398611866,210.881905600428581 -114.49739300049626,45.704242031418659,210.937050926499069 -114.499525287685714,45.711597701069948,210.954182121902704 -114.506841790122422,45.723096116050215,210.988405582495034 -114.530640441365833,45.732555327815497,211.049818887375295 -114.549737107742743,45.744227532562846,211.106361828744411 -114.568147431393882,45.774780997192067,211.195201152004302 -114.516573107976896,45.841700229214645,211.217736934311688 -114.511280205156751,45.846446132478377,211.216278628446162 -114.500786246745136,45.851591109963309,211.205818431451917 -114.450656864750826,45.859806651575155,211.126838128082454 -114.395737371077658,45.894935210787537,211.086788616143167 -114.403531935730967,45.964107343296256,211.223931512795389 -114.413987606459827,45.978968576068553,211.269690221175551 -114.431619150318639,45.98754893222857,211.31768156401813 -114.467357968762201,45.996986940590133,211.400883878581226 -114.485361638605298,46.008956156711896,211.455519581213593 -114.492561500598882,46.023780802699804,211.495057702064514 -114.493183357783579,46.034967114814691,211.51592461578548 -114.493183713640235,46.044910505095984,211.533436907455325 -114.478268497977737,46.062933163906699,211.53742000926286 -114.469568281730957,46.082820108818808,211.556230998598039 -114.470190409575721,46.100842511173418,211.589070226997137 -114.478270326260699,46.113893076620215,211.627008602023125 -114.48510734447926,46.130050978344698,211.668071432970464 -114.474631023646012,46.163105290956707,211.706579312682152 -114.428877010423221,46.290570114367839,211.844619870185852 -114.37999664732871,46.436265318311754,212.007731188088655 -114.387294908853548,46.468054963359727,212.076314939185977 -114.348527894635382,46.536679997178901,212.123613677918911 -114.333095614924005,46.608537055677175,212.219253400340676 -114.33309644816174,46.631135671665284,212.258193209767342 -114.339945276623467,46.642092444708204,212.289648330770433 -114.34333945433778,46.643689536648189,212.298636431805789 -114.351587767977946,46.647570687353131,212.320477020926774 -114.372133318292285,46.655103199794333,212.371198643930256 -114.424181221299818,46.653047862043636,212.463362576439977 -114.44883525107447,46.646199375224278,212.496946175582707 -114.463216697003332,46.640035859410737,212.512820173054934 -114.483948284406466,46.632877932848061,212.538679002784193 -114.594270814581861,46.63374396525635,212.743276251479983 -114.596713602261161,46.63444136147627,212.748969933949411 -114.616430348533271,46.640070333819494,212.794923167675734 -114.637876390669021,46.660391178226682,212.869182693772018 -114.644721988301683,46.674025535556027,212.905088508501649 -114.643754202800565,46.68016631732209,212.913796697743237 -114.643331823076167,46.687284317961691,212.925174993462861 -114.644701807148522,46.695501983575006,212.941725221462548 -114.64675661885174,46.703034806557021,212.958361331373453 -114.65771443549319,46.71262191228012,212.994875512085855 -114.669357028864511,46.720154566955365,213.029135992750525 -114.677516429092279,46.720394387904868,213.044556156732142 -114.692641667932023,46.720838948641109,213.073142630979419 -114.719656516129746,46.714871655207354,213.1126943314448 -114.74126524808436,46.716044477972773,213.154465079307556 -114.76919310720136,46.739703834299988,213.246104031801224 -114.827938504440013,46.782822152909517,213.42735118791461 -114.855295538242999,46.800665989971819,213.507881786674261 -114.890163334184408,46.809444040609115,213.586858777329326 -114.922477482621531,46.828566741579316,213.678587392903864 -114.929855891933315,46.836859295325581,213.706146955490112 -114.940733275770597,46.869888845350779,213.781807942315936 -114.938036393942681,46.900627723780914,213.828579372726381 -114.977812574769715,46.933729670703201,213.957234410569072 -115.075012525076048,47.014619977924731,214.270987797528505 -115.101207176605087,47.048987213901796,214.376321375370026 -115.195254657137099,47.133879341707228,214.68966087885201 -115.202580988214734,47.140006980735123,214.713225929997861 -115.26875946900131,47.181951225800319,214.903742223978043 -115.29414790636983,47.210709692960627,214.997626272030175 -115.296823365336053,47.221762230093525,215.020719552412629 -115.322224037285807,47.256563471687386,215.124415163882077 -115.341241516084551,47.262468911569719,215.168899389915168 -115.423686994596224,47.272580063674248,215.336318128742278 -115.481298152118072,47.282931648484684,215.458689411170781 -115.52573438470759,47.299760224876962,215.567508822306991 -115.553355095472838,47.334695422965744,215.675011632964015 -115.563485925266434,47.352725567216346,215.722894453443587 -115.578883705173396,47.367662733465913,215.775344273075461 -115.663391128400932,47.403497985483341,215.988002942875028 -115.69262106385257,47.415892897775613,216.061507504433393 -115.723135745335412,47.423183079520115,216.129083109088242 -115.731913560637707,47.448118530598748,216.185410636477172 -115.727984857984978,47.467764987501539,216.209938491694629 -115.714232449680267,47.489376294116745,216.219674630090594 -115.731916317804931,47.518845578494698,216.29942134115845 -115.741740792448923,47.538491829333495,216.348948584869504 -115.737812016635417,47.556173654149475,216.37019778881222 -115.723264754189117,47.577150348284547,216.377362271770835 -115.720130760665356,47.593502155152983,216.397894345223904 -115.708344131723507,47.638689132946787,216.448861690238118 -115.725832518194167,47.697493852559255,216.574723546393216 -115.731185842027116,47.703924519251004,216.594725374132395 -115.9213624438446,47.858219422881561,217.185175929218531 -116.009330085264594,47.945776630639187,217.482578330673277 -116.050498896546571,47.97762672349338,217.607135629281402 -116.050501974296409,47.977932995230617,217.607620692811906 -116.051401521071497,48.067447437146733,217.749105244874954 -116.051449743086536,48.072937236860085,217.757751210592687 -116.051479875011921,48.076198117889469,217.762888503260911 -116.051496948856141,48.078023051312357,217.765763614326715 -116.051441017338277,48.216258334467028,217.980428898707032 -116.051325196731284,48.502845981005606,218.421236756257713 -116.051141347501613,48.958718744998706,219.110821479931474 -116.05114336463555,48.959122730903879,219.111430206336081 -116.051313171259366,49.001682248382487,219.175421465188265 -115.253235342635705,49.000341922733554,217.759296648204327 -114.730226703558245,49.001417683354433,216.838196095079184 -114.680318407033411,49.001520336481356,216.750469362363219 -114.676499351165035,49.001474407614211,216.743674575351179 -114.440928023031574,49.001875680779953,216.329882055521011 -114.070243550513695,49.000170837000759,215.676459835842252 -113.695069055182614,48.99844532527576,215.016778544522822 -113.118434479628377,48.999285705971118,214.011760145425797 -113.112233389550028,48.999373814688404,214.001101569272578 -113.108969338160136,48.999324875145398,213.995339032262564 -113.105290283732558,48.99935394042997,213.988978669978678 -113.100225205627581,48.999318032882158,213.980101007036865 -113.097514166239947,48.999357080388435,213.975442643277347 -113.094133115504007,48.999367140944862,213.969571337103844 -113.089941052654609,48.999381215970594,213.96229444630444 -113.087654019042233,48.999405256345881,213.95835071709007 -113.013117891818155,48.999468596260229,213.828706095926464 -113.0119718734218,48.999444617702039,213.826673330739141 -112.195652498010205,48.999069421508459,212.409768672659993 -111.856146881444232,48.998913351638926,211.823038747534156 -111.856148880322039,48.998885352543709,211.822996200062335 -111.763736389858522,48.998462015224959,211.662927527911961 -111.763670390287245,48.998498015193498,211.662873000837862 -111.272751728675843,48.998752155959629,210.818591434508562 -110.889502210654712,48.998950534523011,210.161766461096704 -110.888749199732629,48.998987546624193,210.160539308562875 -110.745249975210385,48.999228679425585,209.915410798043013 -110.218167031100776,49.000114351920715,209.017527033574879 -110.217548018911657,49.000072364214546,209.016401760280132 -110.173626277299803,49.000138135427605,208.941746201366186 -109.997646298772295,49.000521218634887,208.643107315525413 -109.491705901824957,49.001155389465261,207.78622099943459 -109.386779788179282,49.001286904261299,207.608980006538332 -109.386085775143499,49.001263917155299,207.607767009176314 -109.062582071064966,49.000561589744173,207.060403876006603 -109.062304064347515,49.000516596070156,207.059856983833015 -109.002718996410294,49.000130647553625,206.958760106936097 -108.996732890688435,49.000133751783416,206.948679303750396 -108.545196849330281,49.000281600845312,206.189667893573642 -108.490064857910397,49.00027355789733,206.097157211974263 -108.238492386446779,49.000314656162431,205.67574220802635 -107.1818427175143,49.000487166590034,203.916333966888487 -106.627564305107057,49.00057758672628,203.000409301370382 -106.619506148778399,49.000520725949983,202.987023719586432 -106.520166245309966,49.000503419370332,202.823337704874575 -106.502556914963023,49.000695713092846,202.79469502530992 -106.376578486725322,49.000558861582071,202.587170219048858 -106.370113357655967,49.000444975205298,202.576331669464707 -106.27622753805349,49.000255577348597,202.421688352711499 -106.248169993371462,49.000202055758066,202.375506682321429 -106.245113938758664,49.000317103976229,202.370698805898428 -106.235946763330986,49.000367258080125,202.355737180449069 -106.114065126607386,49.000225822264795,202.155463704839349 -106.052499194529474,49.000154378003238,202.054391221143305 -105.968151560101234,49.000393799796932,201.916639223694801 -105.836132989087815,49.000658026290999,201.701065915636718 -105.777758841700958,49.000589015781273,201.605495162308216 -105.652218365606601,49.000398143181826,201.40006944630295 -105.614524632690006,49.000657771280821,201.33902782946825 -105.609489530294283,49.000578858794093,201.330665223300457 -105.580562961346629,49.000628345402163,201.283562270924449 -105.52458185197095,49.000547292369149,201.192116078920662 -105.413915659406001,49.000540157906414,201.011777518317103 -105.409852574812703,49.000438229603127,201.004971204325557 -105.393322246503033,49.000433508184422,200.978045557625592 -105.389433165666418,49.000340576648618,200.971540593542159 -105.357830536883043,49.000316109579003,200.920050072483718 -105.279461981366637,49.000417425237949,200.792736847884953 -105.267132737374936,49.00046063125734,200.772767653688788 -105.059450515671429,49.000411682084653,200.435326785780489 -104.649317306426553,49.000314994644725,199.77107553742826 -104.545562205376115,49.000513721429463,199.603906838223338 -104.05065207321077,49.000857951130229,198.807919710874557 -104.05039357438811,48.987988361808299,198.782995458692312 -104.05053080066223,48.967718000166734,198.74459189362824 -104.050469685927183,48.964754094911115,198.738844070583582 -104.050714508209381,48.959979241877512,198.730134719051421 -104.05054143296168,48.958106304001674,198.726285717450082 -104.050612231598407,48.952805470553898,198.716291831806302 -104.050786151295313,48.950612537069503,198.712389331310987 -104.050683907137596,48.944283739103774,198.700154168531299 -104.050614792155699,48.941313834285481,198.694377766922116 -104.050720538423676,48.934619044559049,198.681774955242872 -104.050656715046372,48.91309672774463,198.64059199206531 -104.05065851451964,48.907841894377434,198.630560505203903 -104.050555350268155,48.90359303087876,198.622279898263514 -104.050630486771865,48.88090574986748,198.579052854329348 -104.050804331019521,48.876723879837222,198.571339018642902 -104.050794264872621,48.874992935001949,198.568013827316463 -104.050735017282619,48.868524141562879,198.555550634860992 -104.050562945012757,48.866719201788165,198.551822283305228 -104.050810251912239,48.848372781172003,198.517127477563918 -104.050477333206942,48.798039390325584,198.420207258313894 -104.050445010214617,48.789539662078077,198.403863507322967 -104.050454601682773,48.752344850171674,198.33253435511142 -104.050246437651538,48.748121988666618,198.324093069881201 -104.049786298066479,48.665182654721129,198.163930665701628 -104.04975225866265,48.664154688304144,198.161897096782923 -104.049764096763994,48.659847826473694,198.153625980019569 -104.049768043922967,48.658441871583761,198.150925799272954 -104.049789760669384,48.650903113511546,198.13644617702812 -104.049721711118593,48.649623155781278,198.133871451020241 -104.049484155447061,48.634976630725504,198.105276366695762 -104.049484199248894,48.634968542271302,198.105260851792991 -104.049521894306579,48.628007854336907,198.091909995302558 -104.049487842094734,48.62663689902196,198.089213013648987 -104.049831644248385,48.621183068901715,198.079258159734309 -104.05011285660683,48.600048745031181,198.03896452113986 -104.049874572313513,48.592599989077101,198.02421048656106 -104.049710488391568,48.563764922155201,197.968290220946074 -104.049681625923625,48.540732666759581,197.923751568421721 -104.049546314787591,48.532484935672471,197.907591936178505 -104.049774293622335,48.531793954260536,197.906625710427761 -104.049411103631641,48.526909118253521,197.896594013087451 -104.049572805789282,48.518848376405742,197.881270150654018 -104.049451918239683,48.495137146235798,197.835203527472913 -104.049287906475087,48.468084026129681,197.782558712176979 -104.049154377102866,48.453939487443733,197.754937835037708 -104.049189362483943,48.453527500245116,197.754196223802865 -104.049087163996532,48.448249673328306,197.743801518343389 -104.04898511176124,48.446901718791729,197.741023150272667 -104.04885418567217,48.422064528219849,197.692648456431925 -104.049027817498072,48.412056850925318,197.673513494431973 -104.048862057718466,48.391675517197697,197.633680758066475 -104.048806010510717,48.390433558575843,197.631177995353937 -104.048805944570233,48.390429834215155,197.631170656532049 -104.048546461730538,48.375774040561801,197.60228227917105 -104.048263433020963,48.375155065396079,197.60061966907233 -104.0482232524663,48.343292105642867,197.538617011159658 -104.047927089976639,48.257765909246523,197.371566268615425 -104.047749025090638,48.256101966740452,197.368030914105475 -104.047532692451909,48.247184262832342,197.35028284881264 -104.047616635543875,48.245591313723857,197.347311768680811 -104.04757951812519,48.242420418392555,197.341064346022904 -104.047445770190407,48.194919981398186,197.248088683001697 -104.047309714591336,48.193480031003297,197.245052612386644 -104.047383121101745,48.177256563776218,197.213457236066461 -104.04728368451228,48.165397955994351,197.190102069638669 -104.045998522064693,47.997120544610446,196.857916439883411 -104.046040404194798,47.993849652608148,196.851550988852978 -104.045810626239557,47.972529365210995,196.809219545684755 -104.045374000563257,47.955504938904639,196.774981519207358 -104.045205818429935,47.950569106002121,196.764983268454671 -104.044104680738116,47.892048075627024,196.647781934589148 -104.043535632529768,47.863300045709181,196.590079153887928 -104.043741895449514,47.842717731066863,196.54974093940109 -104.04443870622508,47.809256840863576,196.484698848798871 -104.044303600073945,47.806377939615288,196.478778891265392 -104.044255523601706,47.80427601089945,196.474539390765131 -104.045068532958524,47.748313877351137,196.365002143196762 -104.045111527164366,47.748127882906743,196.364704047329724 -104.046480331654223,47.46041160647566,195.793713366612792 -104.046655597532194,47.439477318075731,195.752082392573357 -104.046926161313394,47.398494714433212,195.670379182323813 -104.047188271625245,47.34448756033008,195.562385194003582 -104.047167868552734,47.332990955124657,195.539245139807463 -104.047161424433057,47.331163872938703,195.535561520606279 -104.046973942334716,47.278006847853987,195.428293315693736 -104.047007836932579,47.274967951886396,195.422229357995093 -104.046940747504024,47.272444039840487,195.417034432291985 -104.046909588533339,47.267906196556545,195.407841729931533 -104.046943557288174,47.266991227508711,195.406054869294167 -104.047011486116176,47.264912297990875,195.401979316957295 -104.046927544580967,47.093857213404291,195.056234137155116 -104.046864142124079,47.08224661759823,195.032599153928459 -104.047200058035543,47.079618703467602,195.027832076884806 -104.047104549567791,47.064946214883477,194.997923107817769 -104.047072328134462,47.058547437874466,194.984890762716532 -104.047040194242513,47.054684572728391,194.977000812999904 -104.046896750884159,47.041909019500586,194.950837418437004 -104.046920638522792,47.038635133057475,194.94423209503293 -104.047407336145952,46.942280486584274,194.749146783724427 -104.047376087979231,46.935058739635878,194.734386959113181 -104.047383083937078,46.934936743790395,194.734150163829327 -104.047235976806775,46.726480073054312,194.307842010632157 -104.047236866831057,46.723234187692789,194.301185925491154 -104.047203837548039,46.722389218071385,194.299397299997509 -104.047405589134883,46.71493847809311,194.284450550563633 -104.047307413036933,46.709795661429084,194.27373312972486 -104.047102134780943,46.642509046836864,194.135154320858419 -104.04710213839985,46.642503053896213,194.135142001323402 -104.04716284679526,46.541992763066801,193.928177278488874 -104.04728311282534,46.342965738872742,193.516301538795233 -104.04728953717354,46.325616362731061,193.480261272750795 -104.047452216361165,46.281261194974284,193.388273554854095 -104.048479887451293,46.00108410654569,192.80405308958143 -104.047251082970334,45.94639512521222,192.686943488195539 -104.045835999941914,45.883062468886045,192.551068916916847 -104.045835991597954,45.883058555629098,192.551060645841062 -104.045814675587266,45.873061836369473,192.529931357130408 -104.045619555582405,45.869472971248122,192.522024714387953 -104.04373254941757,45.559014481800276,191.860105174593627 -104.043442313774733,45.551790755371762,191.844199092127383 -104.043511946924156,45.540222185265385,191.819633852690458 -104.042938799316062,45.504468527654261,191.742300369776785 -104.043067694702941,45.501095651524807,191.735313968732953 -104.043557411972913,45.491890987500291,191.716480503790081 -104.042200305349795,45.394579650457729,191.505789002403617 -104.041903691845434,45.375320377672359,191.463959949091077 -104.042053785229811,45.346463459103148,191.402257305569947 -104.042146490742596,45.337053811344639,191.382199615240097 -104.04205838361014,45.21400323512475,191.117075007408857 -104.041906003878552,45.001107537390808,190.655757124535739 -104.059476261428642,44.998551361335139,190.680604596622288 -104.471903145935528,44.999566886310667,191.398105517029762 -104.472208151708855,44.999566881540488,191.398635659366846 -104.66567181644713,44.999979836804791,191.736142825335264 -104.666960832896265,44.999728826220107,191.73784710932523 -104.761646626633748,45.000175324402854,191.903808430768549 -104.766854728033735,45.000292238212424,191.91314036026597 -105.020036501469889,45.001542212762963,192.357840404845774 -105.021080517544902,45.001434200488134,192.359433938749135 -105.027062627760699,45.001395107882139,192.36980807594955 -105.040201874168304,45.001449899057164,192.392897832207382 -105.07840503304628,45.001451704124982,192.459712859243155 -105.849876771315721,45.001488105035698,193.814581088721752 -105.920807976261869,44.99886208085293,193.934119058772922 -105.929997012836026,44.994738094417556,193.941605090163648 -106.026628717592217,44.994777180460481,194.11228720843792 -106.26540506639742,44.994873755504258,194.534744097851217 -106.890603242099871,44.996960685303399,195.649398567155004 -106.894705316246473,44.997022617149973,195.65683470107615 -107.082457636482872,44.997863572557577,195.993330368772149 -107.136014678197554,45.001180583086935,196.095821474678814 -107.609666911531306,45.001992924944396,196.945003311149776 -107.610696927029849,45.001923911022509,196.946707982569933 -107.91334275451409,45.002007441257156,197.490370755083859 -108.12751774304445,45.002066545286482,197.876024236902595 -108.251198779264939,45.000511599828116,198.095826365053654 -108.567780116173637,45.001626409673129,198.67000023368746 -108.580343322320289,45.001532208854002,198.692537426948547 -108.62317326507754,45.00145528945658,198.769886244088411 -109.064129281642423,45.000663349733024,199.567961248569191 -109.084877620796092,45.000650010980479,199.605638624168932 -109.105313159544082,45.006943427935973,199.655471028760076 -109.265301749985611,45.006381831186253,199.94532579369843 -109.27116484328829,45.006319737597948,199.95587242115289 -109.800566268096134,45.00321616851592,200.915481938049197 -110.027426918732971,45.004626375675784,201.333509654738009 -110.028229933502686,45.004689359929401,201.335105936974287 -110.111987264628837,45.004927968975743,201.489079108461738 -110.223228762348029,44.997197440834213,201.677800171077251 -110.549055727946921,44.99347520208876,202.2692492287606 -110.55432380240191,44.993253123744232,202.278506741859019 -110.707165170213642,44.993337588241424,202.560140798799694 -110.752661056824877,44.998960608877972,202.65503777936101 -110.877668114946076,45.003111368348172,202.893705207854509 -111.046173665536131,45.002352599144658,203.20331874769181 + + + New Mexico + + + New Mexico + 0400000US35 + 35 + 121298.148000000001048 + + -105.999517080012794,32.004050857287723,159.194540775381029 -106.101276012427576,32.003895772715765,159.409609881229699 -106.183356842932952,32.003770677443903,159.58324836846441 -106.202216121590681,32.003505467301906,159.622377052903175 -106.207432199460399,32.003482406259927,159.6333680273965 -106.314825803597657,32.003231135811049,159.860532397404313 -106.378693405743604,32.003208292475087,159.996164368465543 -106.395818012491063,32.003202167486172,160.032545408234 -106.412595260149956,32.003051975170614,160.067714993841946 -106.566664541203437,32.002452162365948,160.393553516827524 -106.567578555141537,32.002475150061848,160.395576205104589 -106.58949487995595,32.002464887608099,160.442216754890978 -106.596855989537346,32.002493797565002,160.457991761155427 -106.60016203813278,32.002469759272749,160.464954109862447 -106.600619044524549,32.002446755122506,160.465851203538477 -106.616224537024777,31.957718167157868,160.350472346879542 -106.617658433549948,31.950157589592703,160.328384710475802 -106.62932916072306,31.862316562935113,160.060688302852213 -106.627284059617423,31.857999838919344,160.041923708282411 -106.623377945704789,31.854578085021899,160.022171440534294 -106.616157734528201,31.848214542189112,159.985527361743152 -106.607365601474598,31.848029658072004,159.966148380190134 -106.606765586038634,31.847629688553027,159.963533013127744 -106.5683634836045,31.815033047348873,159.772712890990078 -106.564963421811939,31.814333128747347,159.763118452392519 -106.546863029421914,31.80673478780443,159.699095877818763 -106.546233008310722,31.806014837300179,159.695344273932278 -106.543662934579714,31.803834995068815,159.682571346871555 -106.543615934521497,31.803873993355705,159.682601485401392 -106.537361783990107,31.800335274315501,159.657422899268568 -106.53686175859329,31.799235344418921,159.652677017264068 -106.536672748957585,31.79881737104656,159.650875672698021 -106.536261726810309,31.797835433209251,159.646714157424867 -106.534561632953029,31.793635698398379,159.629037433303893 -106.534518631040811,31.793557703459786,159.628684745170176 -106.533998624726365,31.793642704705135,159.627859645523131 -106.532033598702625,31.793831717120341,159.62429950106889 -106.529461534502914,31.792235840864521,159.613472545519471 -106.529256519271087,31.791489886812347,159.61053925473243 -106.52914150707322,31.790847925622575,159.608145883306861 -106.529515477081958,31.788674047945022,159.601669693365693 -106.530061443694208,31.78613618945208,159.594341934658587 -106.530061435523507,31.785636218613387,159.592668739147484 -106.752068710066965,31.785432580327701,160.066194294951856 -106.752068713211244,31.785624569115413,160.066835826262832 -106.995069271380402,31.785412674199051,160.586344430223107 -106.999760339570884,31.785394619063627,160.59633881226182 -107.002085373642103,31.785402590746365,160.60134893655777 -107.002085370917115,31.785236600454258,160.600795235484838 -107.298353679240805,31.785482032108028,161.237546415068209 -107.423777486416824,31.785317534177359,161.506756684742868 -107.424026490002632,31.785317531182784,161.507292542606592 -108.209936663145911,31.785308045034043,163.204772864468396 -108.210058986518916,31.50152380578534,162.261834218166769 -108.210109986315786,31.501467808489746,162.261758089065552 -108.210108274784929,31.335130679348268,161.704635750502348 -108.852649133468802,31.334029036987495,163.104620112106204 -108.862572269261634,31.33404291677537,163.126407664269209 -109.051590845735731,31.334227629686552,163.541519257239997 -109.051392585870389,31.501230673557931,164.097171870991588 -109.051362585676955,31.501243673147354,164.09714930690825 -109.050749512124071,31.798249054555459,165.07688526250422 -109.050317744410023,31.812473218419772,165.122675511054695 -109.050324593205403,31.86307722697239,165.288761807605624 -109.050145748776771,31.872484673407357,165.319212613627315 -109.050157157462223,32.015336247738787,165.78632132243365 -109.050289405079951,32.029858391009604,165.833962880074978 -109.049855347263417,32.08577410634323,166.01512320805341 -109.049845432389048,32.090794811245871,166.031435676850379 -109.049490745392603,32.428036934024654,167.121306857094169 -109.049222631882699,32.683025219145868,167.936863928101957 -109.049222718437136,32.687972931966499,167.952628161758184 -109.049214782381839,32.691633719604248,167.964272975921631 -109.04920784267668,32.695084519432385,167.975249625742435 -109.048688317135856,32.779209648722933,168.241675162687898 -109.048688310961353,32.779210648626801,168.241678325459361 -109.049056464531205,33.070043852939286,169.161351612769067 -109.049029482112786,33.071050795335658,169.164458589628339 -109.04848187601641,33.09355350768304,169.233982193283737 -109.048589895111689,33.094539449610679,169.237311220727861 -109.048694694355589,33.139178882194614,169.377621058374643 -109.048693702142302,33.139614857158051,169.378985982388258 -109.048815975803691,33.210580781532073,169.60149150621146 -109.048408787412995,33.366878837052553,170.088131075724959 -109.048490793943088,33.367176818975793,170.089233921840787 -109.048626862966515,33.370886605209733,170.101064363494515 -109.048451921603927,33.37426041462529,170.111181157641113 -109.048216636651716,33.77981616066662,171.362808702513576 -109.047785326495315,34.523934601802999,173.612781123258173 -109.047785329560952,34.524094592906287,173.613258667290211 -109.047760417838276,34.580829440569957,173.782374622300267 -109.047462792256241,34.961235420017125,174.907145221717656 -109.04769787376199,35.176171123653866,175.536715986207128 -109.048104454414926,35.547811385174967,176.613807051442564 -109.04813245711145,35.547925378620825,176.614193486981094 -109.047920823095325,35.615732710338968,176.808554226532578 -109.047919868908011,35.617998587787618,176.815053570084274 -109.047654224688571,35.881267400221041,177.566244808956981 -109.047685407961197,35.890187920668417,177.591655655764043 -109.047685169949972,35.927324927223232,177.697084245271981 -109.047642170073843,35.927360925876087,177.697096912190318 -109.047605742348168,36.003798829497597,177.913573480211198 -109.047084108787345,36.876003682127624,180.341098874807358 -109.04705811721368,36.87641266110478,180.342166102491319 -109.046925140436826,36.970280761401888,180.598656538873911 -109.046897153394369,36.970898729565462,180.600286518223584 -109.046876793534096,37.000492187247318,180.681008109822869 -108.960520534810598,37.000322398871425,180.503412187099457 -108.956056469680561,37.000315461383728,180.494240272790194 -108.621956586327869,37.00070108589199,179.811294418759644 -108.621336576378269,37.000663096472685,179.809922915883362 -108.380846977912185,37.000876365131965,179.319420511834323 -108.322364157111053,37.000928227211254,179.200300115160644 -108.322107153051377,37.000917231339571,179.199745944701135 -108.290042676274766,37.000938674058233,179.134443387389183 -108.289728672351643,37.000973676588686,179.133899588137865 -107.48336749462743,37.001403209887187,177.497677018865943 -107.422544583149531,37.001435605729455,177.374755735509098 -107.422542580524848,37.001435606796115,177.374751688912511 -107.002215095767482,37.001445365742569,176.526619682088494 -106.871416899025448,36.993864543072853,176.242260253056884 -106.677243876318641,36.994564156162625,175.854000688530505 -106.662961654705569,36.994684344643268,175.825663701631129 -106.630350140765728,36.994602793195178,175.759981112554669 -106.630269139789263,36.994616793579837,175.759857662022114 -106.618741954995201,36.994445959386532,175.736249168403447 -106.61877595474644,36.994408960823066,175.736214053817093 -106.477842720613836,36.994916085246288,175.455033697187901 -106.250286156585986,36.995734903520642,175.001858521252871 -106.249316140697132,36.9957129178134,174.99985755328089 -106.008241315581813,36.99679313086498,174.521488517522812 -105.999079170338788,36.996867251135896,174.503423798829317 -105.997766149318608,36.996868268862201,174.50080811791122 -105.720072363432237,36.997299921596408,173.948994982987642 -105.718073657056337,36.997303028387385,173.945028910413384 -105.666321820503711,36.997328725654427,173.842210464179516 -105.629071213084387,36.997134238185751,173.767635460942984 -105.535521699030824,36.997331489506919,173.582406979054213 -105.514084348483138,36.997233783374256,173.539582649245858 -105.510435291611046,36.997351826522113,173.532674051821232 -105.4667805831793,36.997448409662567,173.446333209052682 -105.448853291703657,36.99747464974493,173.410849700681865 -105.444057213071943,36.997451715493511,173.401273345574737 -105.420907832816411,36.997314034174103,173.354981110431254 -105.222207568655449,36.996629741096591,172.95948404353112 -105.156635767194786,36.996800759343003,172.830266653560102 -105.122392934326768,36.996890068064609,172.76282196585089 -105.002144907421098,36.994727790741869,172.519152855500579 -104.733706462659441,36.99495137220007,171.990568877197802 -104.733617460409988,36.994914375267534,171.990288505330682 -104.009429341159958,36.99771587572252,170.578044356778264 -103.735933713826199,36.999521406817415,170.049733160063624 -103.734816694188126,36.99949642285015,170.047485926188529 -103.087663410620806,37.001353207884442,168.796879848465323 -103.003756092818563,37.00159394676939,168.635395593941212 -103.003802292683545,36.913081397089115,168.379660637117922 -103.003519246860165,36.911067502195593,168.373283646069467 -103.003749409187805,36.720931098795425,167.821574854664505 -103.004068526071975,36.676692335566329,167.693220028653741 -103.00380135920355,36.618689281426661,167.523309621028602 -103.003737068801627,36.604226016700771,167.480895012617111 -103.004112556145785,36.528101882275564,167.258704514242709 -103.003981032526809,36.501912217469567,167.181624358519912 -103.043216277898367,36.480029823751096,167.193716351874173 -103.043289106127034,36.31979100963504,166.722160058096051 -103.043218090442281,36.319058048083804,166.719858130440116 -103.042362936021277,36.056768538181338,165.94058602489531 -103.042889833020169,35.740827807841065,164.995875372551382 -103.043084613448414,35.624046976930494,164.644157147966325 -103.044019883571963,35.213443505552867,163.397099918685853 -103.04389937506383,35.184739006653146,163.308914926834404 -103.043899345740087,35.184732021952584,163.30889345984906 -103.043888338783773,35.184369041249852,163.307759026996791 -103.043861322213147,35.18350508719152,163.305057216435671 -103.043917260729074,35.180156263259079,163.294901644811034 -103.044089904886846,35.160902277726557,163.236195702105761 -103.044232635815916,35.146320046233484,163.191732779145241 -103.044121597279698,35.144351151656089,163.185469859279692 -103.044041462508716,35.137181531519765,163.163302006199956 -103.044038870147261,34.955696144244207,162.604428171180189 -103.044038096796783,34.901144043373002,162.435780225321651 -103.044297195769602,34.851843662999507,162.283621727488935 -103.044285132890579,34.793827753905354,162.103615525178611 -103.044283313237202,34.748967146963707,161.964204240590334 -103.044339926713846,34.672798215621846,161.727142196148634 -103.044583997440711,34.621394963256904,161.567231231369078 -103.045103167920303,34.464281386228137,161.076324608176947 -103.045098115906995,34.461395541430328,161.067254732362926 -103.045097113874988,34.461283547463601,161.066901125945151 -103.045091041722898,34.457278762850379,161.054314953275025 -103.045046139189637,34.407087463689663,160.896495816297829 -103.045091054098933,34.402302720730269,160.881535494700074 -103.045118990479523,34.398729912753723,160.870351766236126 -103.045092929258985,34.395341095552041,160.859637790359557 -103.04512087102276,34.392067271507322,160.84939232468605 -103.045120839412704,34.390304366448369,160.843844719231129 -103.045121772919387,34.386594566240426,160.832171471789479 -103.045137768188397,34.386315581069745,160.831325367093086 -103.045200749319946,34.385203640184962,160.827951460145414 -103.045426705425172,34.382541780780578,160.820024377666414 -103.045451683337902,34.381285848126332,160.816120876930654 -103.045453681490002,34.381180853757542,160.815794362686574 -103.045485487066117,34.314393454051988,160.605389850214124 -103.045485423785635,34.314378538432578,160.605342670343816 -103.045442304570884,34.304215003852235,160.573187331669033 -103.045225066328697,34.291071715990036,160.531265832483768 -103.045149485014463,34.258535474193252,160.428335695527494 -103.045071486766801,34.08958862251697,159.892718109302223 -103.045018334612791,34.081024087887094,159.865387710742652 -103.045188049713829,34.064720970704165,159.813884476199746 -103.045245819788349,34.051629680814763,159.77235028333962 -103.04526870663129,34.045189030325716,159.751898630522192 -103.045222684266903,34.043964097419959,159.747907462529838 -103.045272671325947,34.043182139282372,159.745518708601594 -103.045247596118045,34.038938370108134,159.731959245167673 -103.045056512214771,34.034358621238034,159.716995189897716 -103.045032252949781,34.019659420259345,159.670132926665246 -103.045118001334018,34.005279200881056,159.624485345557332 -103.045450497096084,33.976276774146804,159.532676551491022 -103.046393003694362,33.947266341529755,159.441979212686419 -103.047197328225124,33.907950473249585,159.317974398843944 -103.047143243961671,33.90318873341598,159.30264032445848 -103.048405369520111,33.851954512151394,159.141207474283874 -103.048843929797556,33.8263309055191,159.059980878606439 -103.050592594682115,33.747930169271051,158.811844136565924 -103.051643843712142,33.703633581126759,158.671490254811943 -103.05202733815176,33.674072195971817,158.577070333994925 -103.052582101404312,33.659850968762655,158.532360603101552 -103.053029975783602,33.652152385436423,158.508445778861642 -103.052857825352461,33.643615855641109,158.480573259294033 -103.053158615129163,33.631155535470327,158.440987853333354 -103.054103615430563,33.572268756822069,158.252728761173785 -103.058145560339412,33.390117736517475,157.670350283384323 -103.058145864728928,33.390096140879535,157.670280674472451 -103.058976569482226,33.331159981713206,157.48013636469841 -103.059345333362927,33.316917764306467,157.434471809305251 -103.061590742130448,33.22091404937094,157.125612840056419 -103.065389820081336,33.043753837650378,156.552404759451747 -103.065464764930226,33.040392023752148,156.541501121595502 -103.065936296686289,33.011990598489085,156.4490085542202 -103.066109125554746,33.001600174848633,156.415150129236281 -103.066162532216836,32.966076152806892,156.298212423920631 -103.066140443690429,32.960800447048946,156.280773381702602 -103.066051456537409,32.901720742636989,156.085600579157472 -103.0661831147507,32.88106289409091,156.017598686739802 -103.066343934262846,32.870054506838464,155.981526710093021 -103.066288756259937,32.85940510224777,155.946190155111253 -103.066397750819746,32.858969125308711,155.944969481788576 -103.066370619055505,32.85106856696359,155.918773887678981 -103.066153268525653,32.830180736732999,155.849188268184662 -103.06618025338652,32.829241788894336,155.846133917570114 -103.066191541618579,32.78630618975496,155.703878160566092 -103.066178524989013,32.785315245350759,155.700565562583506 -103.066287422482375,32.779016596493456,155.679897546768188 -103.066306584809567,32.728344433362885,155.511725339107215 -103.066278288279037,32.710411438527821,155.452071013860404 -103.066276992475622,32.692479443723485,155.392440279945731 -103.066342859822313,32.684365897886089,155.365583629347384 -103.066111259514969,32.648140932815224,155.244517400860786 -103.066292902737771,32.626259159031768,155.171973724849522 -103.066238529463277,32.603586433062695,155.096258706413209 -103.066265505847682,32.602120515099458,155.091423573903739 -103.066238301715103,32.589707212896485,155.049949336796999 -103.06617222326804,32.523920913290887,154.830030538141727 -103.065892109513356,32.146755231357822,153.560316410847008 -103.065817756052112,32.124791478894117,153.485779302194715 -103.065813179661362,32.088803522925723,153.363775352947414 -103.065890799483768,32.002275443015471,153.070035330019891 -103.087344150985103,32.002222197811889,153.113900544121861 -103.090166197127317,32.002210165838861,153.119654414243996 -103.217111278631165,32.002268692372049,153.380711209028959 -103.269104128070822,32.002230091849036,153.487526023760438 -103.269179126885206,32.002079099584456,153.487167452462018 -103.271854170619264,32.00208106845276,153.49267821572721 -103.279992305037126,32.002173968783438,153.509739514440298 -103.327973087396401,32.002124415020511,153.608331465162337 -103.724331531866767,32.001971261007263,154.425651618279517 -103.981661649881374,32.001871817226693,154.95818689558655 -104.026004357823254,32.001756305502717,155.049770275130868 -104.533247415662188,32.001857352840837,156.105330592952669 -104.533428421656282,32.002051339578074,156.106361551210284 -104.642411138675683,32.002135052866343,156.334103578701615 -104.645019180427866,32.002182019473658,156.339708152227104 -104.849253388653551,32.002219008292521,156.766807819716632 -104.919769482188428,32.002231778254092,156.914484707638621 -105.078545953310339,32.002312897919964,157.247571268118918 -105.080104976755081,32.002266882137043,157.250687465071678 -105.11954058758208,32.002218418579496,157.333272835239768 -105.132877794903763,32.002257258579547,157.361396305263042 -105.134416818651019,32.002251240719957,157.364606589078903 -105.149741055481684,32.002218061334254,157.396664273925126 -105.151811087733179,32.002230036152305,157.401050288230181 -105.155495144778712,32.002229992564544,157.408784720115364 -105.391900794195209,32.002337185741894,157.906084139831364 -105.428554357956031,32.002367749143843,157.983342436142266 -105.430087380879698,32.002329733146759,157.986442821100354 -105.430786391239124,32.002306726179803,157.98783752694726 -105.887671382799113,32.00369421201583,158.956647280603647 -105.902112603637661,32.003824032336254,158.987628201954067 -105.999517080012794,32.004050857287723,159.194540775381029 + + + North Dakota + + + North Dakota + 0400000US38 + 38 + 69000.797999999995227 + + -100.513684788036713,45.944793974269828,186.789386781863868 -100.629419265686721,45.94478023173567,186.978547621518373 -100.652558760269514,45.944817878367687,187.016489150002599 -100.722605262880165,45.945160799878813,187.131913566030562 -100.752147879564745,45.944785363331953,187.179477201774716 -100.763813132396081,45.944939180114019,187.198929048143327 -100.763851132076951,45.944903180822088,187.198911967687309 -100.771492294462647,45.944902064435752,187.211430544033647 -100.891919853101157,45.944995224748403,187.409125853329897 -100.937326811447235,45.944890535402791,187.483433955349028 -100.940733886411195,45.944981480126344,187.489228527061641 -100.966156423457889,45.944955092838065,187.53092285245657 -100.978310681801219,45.944996905688463,187.550980675034225 -100.982438775482834,45.945200835324883,187.558210768736899 -101.103082315071717,45.944971999153267,187.756059307605028 -101.108574435317905,45.945114910005536,187.76540938206017 -101.144320183801682,45.944971368126573,187.823923834599555 -101.14782525763033,45.944972314441216,187.829695828258991 -101.164990621238488,45.945045049054166,187.858115760609508 -101.172823787450184,45.945088927547182,187.871110127307475 -101.177442885386228,45.945112855960772,187.878769002854824 -101.18085295438604,45.945025806863995,187.884193953126669 -101.205537473452779,45.945024428858176,187.924848636612296 -101.225756902503477,45.945154114452762,187.958444975316525 -101.273275906165381,45.945337379607047,188.037167121656239 -101.288975232363399,45.945235142578042,188.062828768976033 -101.315024780453442,45.94529174106308,188.105914479121566 -101.335624212257969,45.945293425010973,188.139900959096849 -101.367036867863078,45.945218945670788,188.191575560718775 -101.372443984404555,45.945324858879744,188.200731942430139 -101.375523050971353,45.945391809215955,188.205960766412318 -101.559033878025105,45.945223995453183,188.508844108320773 -101.563913984020516,45.945360915459602,188.517216009087861 -101.630356368693711,45.945415890965599,188.627300328575075 -101.659390975239191,45.945509440518364,188.675584453158081 -101.682334450033252,45.94545108922037,188.71346271969378 -101.68357947952947,45.945566065903002,188.715775655582547 -101.710546036317311,45.945469653879101,188.760249046608806 -101.725141334054982,45.94530843474697,188.784088466316462 -101.731830478160774,45.945477325564823,188.795543833635747 -101.760373073819935,45.945598881157508,188.843130212277174 -101.766039189156771,45.94553279616683,188.852382501587272 -101.767055208785777,45.94548778212026,188.853969536721706 -101.767939225678845,45.945442770109032,188.85533769056201 -101.79181672411805,45.945562397544201,188.89520104508847 -101.796368816956502,45.945517328949663,188.902654462493956 -101.83475461353035,45.94558373429404,188.966492190957069 -101.854406019716691,45.94557643124746,188.999094936996698 -101.888602729676123,45.94567789961495,189.056094898842275 -101.959205184407253,45.945601811630326,189.173228851519525 -101.975515519753401,45.94557356054522,189.200279396958649 -101.991267844857745,45.945589316452683,189.226502707228065 -101.993953900162154,45.945588274960485,189.230966655537486 -102.000385290737896,45.945673053977075,189.241844669915736 -102.000470037118959,45.945674171109488,189.24198801536113 -102.002192073349576,45.945698143617292,189.244903548620641 -102.002423076010473,45.945632142425779,189.24514464661479 -102.002445973556348,45.945632182717766,189.245182814076543 -102.062698319863898,45.945738206233855,189.34564274456352 -102.086890817827026,45.945757831120503,189.385949370451272 -102.089323866426611,45.945713795049848,189.389904057607055 -102.126397634734701,45.945928213332571,189.452094431035221 -102.1271986460562,45.94576720674079,189.453080041334033 -102.137038845937923,45.945701056739715,189.469325120560825 -102.147126055258724,45.945773897877402,189.486284177750349 -102.158163281816186,45.945777726771588,189.504678571596742 -102.159735313361054,45.945755703214132,189.507249866612256 -102.161209343594749,45.945755680380039,189.509705522097647 -102.178468696907643,45.945736413673806,189.538420703262091 -102.178763702955578,45.945736409102928,189.538912272080779 -102.219638543316094,45.945824772415236,189.607230374589562 -102.330003803229474,45.945918057057661,189.791540776379406 -102.355158322378429,45.946095660133707,189.833918777294457 -102.356057338075615,45.946012649176666,189.835240866057575 -102.394471123121491,45.946062050824011,189.899502414278686 -102.394542125462493,45.946090048708463,189.899681366980076 -102.398134196671265,45.94602699519065,189.905546049587429 -102.40035024030675,45.945978962503347,189.909144571982324 -102.407951399331537,45.94610783975655,189.922121259383857 -102.412121486919943,45.946189772005425,189.929265066049993 -102.421948686837268,45.946180619646476,189.945665628649294 -102.427133789895493,45.946100541972996,189.954157651402056 -102.427172792318188,45.946151539522006,189.954332697205245 -102.44819522170387,45.946193211301249,189.989557195454836 -102.461362489621337,45.946191006706115,190.011563171632588 -102.469339654419215,45.946268879874282,190.0250672865659 -102.477800827302644,45.946292747459729,190.039265596307814 -102.55272534435079,45.946123588133474,190.16423393972218 -102.560357502905759,45.946237465235917,190.177251791581511 -102.644335214119366,45.946511147748105,190.318455562926829 -102.653400399135236,45.946557004861972,190.333741153590381 -102.668464699466384,45.946413775336651,190.358674625866115 -102.674254814611189,45.946350687397135,190.368241988122463 -102.675857848005606,45.946380661330188,190.370992744341493 -102.706652464326552,45.94617818869699,190.422174136154354 -102.882037001381207,45.946172452132551,190.716474357992411 -102.922267809402626,45.946140824738158,190.784000172279775 -102.943856016123732,45.946194283790952,190.820398412644863 -102.991689208911765,45.946312733225739,190.901077463291585 -102.997132316650237,45.946267649734992,190.910135778598487 -102.997455226405691,45.946269127044161,190.910682049579918 -103.02784593697173,45.946408164181783,190.962103147991002 -103.049567373064193,45.946435823291296,190.998713194392622 -103.080265986197745,45.946389344483947,191.050286120735109 -103.099661373376691,45.946362041813728,191.082883496768773 -103.142729234149897,45.946356367495611,191.155409277416766 -103.163041641521616,45.946408047372721,191.189743138849735 -103.212425624122289,45.946320276544135,191.272793755866587 -103.220187778435289,45.946306155358926,191.285851110704243 -103.285885085106827,45.946246127087953,191.396538071334362 -103.285902085541849,45.946249126712019,191.396573142148554 -103.413120616416961,45.946359125159454,191.61162222828716 -103.419835747052403,45.946281022488002,191.622803554870188 -103.434189035680632,45.946407792304498,191.647329868748784 -103.436647083685187,45.94638575447528,191.651437545195222 -103.56050852898619,45.946223812341067,191.860584944486618 -103.578881896684464,45.946375517613369,191.892006325535476 -103.662579545274056,45.946322201431023,192.033643969334662 -103.662579545597794,45.946332201066035,192.033665136434138 -103.670279697261591,45.946333079706044,192.046714522875845 -104.047251082970334,45.94639512521222,192.686943488195539 -104.048479887451293,46.00108410654569,192.80405308958143 -104.047452216361165,46.281261194974284,193.388273554854095 -104.04728953717354,46.325616362731061,193.480261272750795 -104.04728311282534,46.342965738872742,193.516301538795233 -104.04716284679526,46.541992763066801,193.928177278488874 -104.04710213839985,46.642503053896213,194.135142001323402 -104.047102134780943,46.642509046836864,194.135154320858419 -104.047307413036933,46.709795661429084,194.27373312972486 -104.047405589134883,46.71493847809311,194.284450550563633 -104.047203837548039,46.722389218071385,194.299397299997509 -104.047236866831057,46.723234187692789,194.301185925491154 -104.047235976806775,46.726480073054312,194.307842010632157 -104.047383083937078,46.934936743790395,194.734150163829327 -104.047376087979231,46.935058739635878,194.734386959113181 -104.047407336145952,46.942280486584274,194.749146783724427 -104.046920638522792,47.038635133057475,194.94423209503293 -104.046896750884159,47.041909019500586,194.950837418437004 -104.047040194242513,47.054684572728391,194.977000812999904 -104.047072328134462,47.058547437874466,194.984890762716532 -104.047104549567791,47.064946214883477,194.997923107817769 -104.047200058035543,47.079618703467602,195.027832076884806 -104.046864142124079,47.08224661759823,195.032599153928459 -104.046927544580967,47.093857213404291,195.056234137155116 -104.047011486116176,47.264912297990875,195.401979316957295 -104.046943557288174,47.266991227508711,195.406054869294167 -104.046909588533339,47.267906196556545,195.407841729931533 -104.046940747504024,47.272444039840487,195.417034432291985 -104.047007836932579,47.274967951886396,195.422229357995093 -104.046973942334716,47.278006847853987,195.428293315693736 -104.047161424433057,47.331163872938703,195.535561520606279 -104.047167868552734,47.332990955124657,195.539245139807463 -104.047188271625245,47.34448756033008,195.562385194003582 -104.046926161313394,47.398494714433212,195.670379182323813 -104.046655597532194,47.439477318075731,195.752082392573357 -104.046480331654223,47.46041160647566,195.793713366612792 -104.045111527164366,47.748127882906743,196.364704047329724 -104.045068532958524,47.748313877351137,196.365002143196762 -104.044255523601706,47.80427601089945,196.474539390765131 -104.044303600073945,47.806377939615288,196.478778891265392 -104.04443870622508,47.809256840863576,196.484698848798871 -104.043741895449514,47.842717731066863,196.54974093940109 -104.043535632529768,47.863300045709181,196.590079153887928 -104.044104680738116,47.892048075627024,196.647781934589148 -104.045205818429935,47.950569106002121,196.764983268454671 -104.045374000563257,47.955504938904639,196.774981519207358 -104.045810626239557,47.972529365210995,196.809219545684755 -104.046040404194798,47.993849652608148,196.851550988852978 -104.045998522064693,47.997120544610446,196.857916439883411 -104.04728368451228,48.165397955994351,197.190102069638669 -104.047383121101745,48.177256563776218,197.213457236066461 -104.047309714591336,48.193480031003297,197.245052612386644 -104.047445770190407,48.194919981398186,197.248088683001697 -104.04757951812519,48.242420418392555,197.341064346022904 -104.047616635543875,48.245591313723857,197.347311768680811 -104.047532692451909,48.247184262832342,197.35028284881264 -104.047749025090638,48.256101966740452,197.368030914105475 -104.047927089976639,48.257765909246523,197.371566268615425 -104.0482232524663,48.343292105642867,197.538617011159658 -104.048263433020963,48.375155065396079,197.60061966907233 -104.048546461730538,48.375774040561801,197.60228227917105 -104.048805944570233,48.390429834215155,197.631170656532049 -104.048806010510717,48.390433558575843,197.631177995353937 -104.048862057718466,48.391675517197697,197.633680758066475 -104.049027817498072,48.412056850925318,197.673513494431973 -104.04885418567217,48.422064528219849,197.692648456431925 -104.04898511176124,48.446901718791729,197.741023150272667 -104.049087163996532,48.448249673328306,197.743801518343389 -104.049189362483943,48.453527500245116,197.754196223802865 -104.049154377102866,48.453939487443733,197.754937835037708 -104.049287906475087,48.468084026129681,197.782558712176979 -104.049451918239683,48.495137146235798,197.835203527472913 -104.049572805789282,48.518848376405742,197.881270150654018 -104.049411103631641,48.526909118253521,197.896594013087451 -104.049774293622335,48.531793954260536,197.906625710427761 -104.049546314787591,48.532484935672471,197.907591936178505 -104.049681625923625,48.540732666759581,197.923751568421721 -104.049710488391568,48.563764922155201,197.968290220946074 -104.049874572313513,48.592599989077101,198.02421048656106 -104.05011285660683,48.600048745031181,198.03896452113986 -104.049831644248385,48.621183068901715,198.079258159734309 -104.049487842094734,48.62663689902196,198.089213013648987 -104.049521894306579,48.628007854336907,198.091909995302558 -104.049484199248894,48.634968542271302,198.105260851792991 -104.049484155447061,48.634976630725504,198.105276366695762 -104.049721711118593,48.649623155781278,198.133871451020241 -104.049789760669384,48.650903113511546,198.13644617702812 -104.049768043922967,48.658441871583761,198.150925799272954 -104.049764096763994,48.659847826473694,198.153625980019569 -104.04975225866265,48.664154688304144,198.161897096782923 -104.049786298066479,48.665182654721129,198.163930665701628 -104.050246437651538,48.748121988666618,198.324093069881201 -104.050454601682773,48.752344850171674,198.33253435511142 -104.050445010214617,48.789539662078077,198.403863507322967 -104.050477333206942,48.798039390325584,198.420207258313894 -104.050810251912239,48.848372781172003,198.517127477563918 -104.050562945012757,48.866719201788165,198.551822283305228 -104.050735017282619,48.868524141562879,198.555550634860992 -104.050794264872621,48.874992935001949,198.568013827316463 -104.050804331019521,48.876723879837222,198.571339018642902 -104.050630486771865,48.88090574986748,198.579052854329348 -104.050555350268155,48.90359303087876,198.622279898263514 -104.05065851451964,48.907841894377434,198.630560505203903 -104.050656715046372,48.91309672774463,198.64059199206531 -104.050720538423676,48.934619044559049,198.681774955242872 -104.050614792155699,48.941313834285481,198.694377766922116 -104.050683907137596,48.944283739103774,198.700154168531299 -104.050786151295313,48.950612537069503,198.712389331310987 -104.050612231598407,48.952805470553898,198.716291831806302 -104.05054143296168,48.958106304001674,198.726285717450082 -104.050714508209381,48.959979241877512,198.730134719051421 -104.050469685927183,48.964754094911115,198.738844070583582 -104.05053080066223,48.967718000166734,198.74459189362824 -104.05039357438811,48.987988361808299,198.782995458692312 -104.05065207321077,49.000857951130229,198.807919710874557 -103.994381898784113,49.000548895057442,198.717021967284381 -103.990839826041764,49.000561953430285,198.71136393584311 -103.9857007206856,49.000586037955934,198.703165030106902 -103.984275691635062,49.000597061256244,198.70089990645647 -103.982782659451999,49.000563087104354,198.698439951986074 -103.978373569172618,49.00058715950945,198.6914127971977 -103.971393421703496,49.000507277851156,198.680063664913177 -103.970525403744233,49.000507292253111,198.678671365603805 -103.925174466241685,49.000545043350314,198.606017258949578 -103.923889439198391,49.000534065007372,198.603936125524342 -103.920834375902672,49.000534115669623,198.599038382992148 -103.91934134626996,49.00056813935587,198.596709760837257 -103.87881750456485,49.000527812488059,198.531681881286204 -103.867248266336645,49.000575002757273,198.513234266079962 -103.864650214261431,49.000623044301626,198.50916341599077 -103.860275122200946,49.000590117847118,198.502090994268656 -103.857984073348419,49.000556156885295,198.498355660587549 -103.854198994360829,49.000545219955086,198.49227093718946 -102.940685465871482,48.999997218962008,197.035076236352324 -102.218870236170858,48.999564105801852,195.894155873917043 -102.213178112671827,48.999565198376466,195.885204936377704 -102.153722830364146,48.99981015770777,195.792204813100398 -102.133489392048375,48.999854485244853,195.760493785142899 -102.023016992233835,49.000029274296601,195.587355292402208 -101.498598487203964,49.000378022255951,194.767572861164808 -101.227770484419537,49.000558107265,194.346203913912177 -101.227042469509911,49.000593117891604,194.345141908153892 -101.222609366675059,49.000482192604935,194.338029054924846 -101.218037265376438,49.000496265690217,194.330949705094099 -100.922425660562666,49.000592007615481,193.872438218444586 -100.919787601775965,49.000603049542704,193.868374222889543 -100.915482508535618,49.000694115711788,193.861888741143048 -100.908955359490818,49.000625222401311,193.85164185706526 -100.4358186701905,49.000449785468945,193.120663734152913 -100.436188684479845,49.000609774666366,193.121556350961328 -100.433479624203997,49.000643816768985,193.11745388712734 -100.43351361739802,49.00043782254842,193.117090470157564 -100.184538921509912,49.000274011435586,192.734005457721651 -99.915605766968852,49.00009705500765,192.321542127989233 -99.91553076524373,49.000097056194441,192.32142739277333 -99.863312567326602,49.000204878928976,192.241790756583214 -99.863278568223748,49.000250878061372,192.241832428611815 -99.52751688857829,49.000477032271142,191.730083704926074 -99.001623064222272,49.000831205410883,190.932969707995653 -97.951984306068113,49.001537935295566,189.358384019695222 -97.777525383764115,49.001655377693204,189.098818797618151 -97.412982533000843,49.00159697477968,188.557796672917902 -97.23080109036313,49.001776755177076,188.288876239210367 -97.235767098389104,48.99855977564021,188.289403495378792 -97.24014868235642,48.983721153176198,188.264481177553535 -97.240916171424772,48.968686592146909,188.233795612119138 -97.23437027110181,48.947652323201723,188.179581337608397 -97.201306168409829,48.882276793305635,187.992054025642574 -97.159549882983072,48.788777251808618,187.73143232986331 -97.139322050528506,48.750289725115699,187.619442733004689 -97.094353625337561,48.683134447267136,187.40939305908978 -97.164794247349334,48.545068045168442,187.218470191583037 -97.164849576427869,48.544959598020597,187.218320051208138 -97.162854381756773,48.544259991288094,187.213850405998528 -97.152285119907802,48.540553923464785,187.190172627568245 -97.128512881401704,48.52129687419589,187.113476496189833 -97.125138413022654,48.422309970836309,186.895694847218692 -97.133218110432097,48.40769529971891,186.876286132261157 -97.147432142742318,48.39854036759575,186.87778452783823 -97.138110383994828,48.353503901255593,186.766834307461977 -97.128481802500133,48.343251364165653,186.730343953706324 -97.117316913936833,48.325040097063145,186.674372936598957 -97.118304437594659,48.280774456123872,186.580250698141754 -97.131663748125675,48.250845185486646,186.535536914132535 -97.136267859563432,48.250851115879549,186.542439541779459 -97.144881965257071,48.247822080280713,186.548782294616103 -97.148903935916096,48.244080136145925,186.546711744740605 -97.14913328783777,48.194894952156133,186.440631323494017 -97.149229123324545,48.174343038431616,186.396262936294079 -97.149241502255634,48.171688389683403,186.390530115924776 -97.124863862413747,48.110615668549599,186.221515436656773 -97.100001984124972,48.072430240645318,186.101247493177652 -97.089884345871383,48.060635763223949,186.06041307002306 -97.024874612531562,47.875105594780599,185.557936504483223 -97.002073632580803,47.862043350276622,185.495026639662683 -96.982106659824311,47.816792085999047,185.365804450586438 -96.892379381396808,47.673288560404899,184.915051662363112 -96.887448422157632,47.665402328197764,184.890227130614221 -96.852660438526968,47.599425961372951,184.692083687521517 -96.844132314730686,47.509366986754799,184.479890044778585 -96.854988434443939,47.505022965745511,184.486678606830537 -96.855470192787209,47.500669347128408,184.477759038098156 -96.864012019661985,47.423477468614777,184.319435249082744 -96.854374266669893,47.376119147709744,184.19958003051579 -96.834712193409629,47.239245641535227,183.864698690362275 -96.834639401650477,47.238738916182058,183.863456446677446 -96.828345490390589,47.15169286097008,183.659242847003043 -96.826496630752587,47.12612272828563,183.599157400429249 -96.824865647400713,47.001123873946533,183.316098975017667 -96.826283471778979,46.994468073246352,183.303295262157917 -96.824906733786364,46.972020836576178,183.250693563371897 -96.79324083436039,46.935425515269657,183.119922660291195 -96.781940378169324,46.929424880424449,183.089138925075531 -96.769139351556888,46.906325835285962,183.017491370439529 -96.803692278963865,46.813629414153638,182.860954560339451 -96.785879958947859,46.687937882113623,182.54889980237931 -96.78468705472153,46.631818575976631,182.41958421561867 -96.784682191605654,46.63158979375234,182.419056609272957 -96.784675735246879,46.631577058895616,182.419017740525305 -96.740723489211987,46.544883360083418,182.154089287854731 -96.718103925425311,46.445746047257678,181.892866644077003 -96.723664916813149,46.44116512176366,181.890949224121869 -96.671457003363955,46.385825762595125,181.68381171207875 -96.633247166055568,46.354935369733731,181.554088585078716 -96.599892133761983,46.313748258393915,181.4080720115453 -96.600744679281135,46.264887915396578,181.296952776610851 -96.587301765446369,46.178499070971895,181.077017358504236 -96.580016378319186,46.171302423594675,181.04914921708405 -96.559603873691032,46.103635046738106,180.861165309324861 -96.556486274562047,46.086017699024985,180.815558674745262 -96.558590720947549,46.065795366267288,180.77196907158941 -96.560921587071718,46.05946655107789,180.760908950120211 -96.567945547697221,46.052610686389492,180.75588679779321 -96.579590090279964,46.028069366383498,180.717014097608626 -96.578976114554507,46.022952131232039,180.704195633530617 -96.571998032825832,45.964792667229574,180.558373969048262 -96.564927027065707,45.936436753181248,180.481499597430229 -96.578544346585048,45.936457556177899,180.502663200721145 -96.599079825839056,45.936407261853049,180.534396640956402 -96.608790055806423,45.936499118634579,180.54967387765646 -96.619943319901424,45.936604954096737,180.567224725149572 -96.64071480309201,45.936515657547467,180.599252557381988 -96.66154429723224,45.936757348572748,180.632148887962103 -96.682295786786256,45.936913043621573,180.664733627811074 -96.702963272236872,45.937003742052973,180.697046262212098 -96.793157377966438,45.937052437030559,180.83736408688128 -97.000309190672766,45.93689244292505,181.159682111814618 -97.021253667062652,45.93657415023943,181.191624323837459 -97.119712951185861,45.936675717487653,181.345607849769294 -97.146647568161569,45.936468333398693,181.387225393205881 -97.229953091331055,45.936330180250188,181.517206308431923 -97.229966374782165,45.936330158220898,181.517227046191692 -97.229985489825125,45.936330126520531,181.517256888560951 -97.313848422244305,45.936264908050433,181.648430792614818 -97.320563576289715,45.936241811046628,181.658899703063071 -97.483635329353262,45.936323430173658,181.914908396080136 -97.493560556381695,45.936296286213199,181.930434865877032 -97.520613182922759,45.936488884409933,181.973378144204617 -97.520704185010302,45.936488883080749,181.973521135747433 -97.544267724017516,45.936442540462778,182.01044653262943 -97.698364253804073,45.936534283323773,182.253126703202724 -97.778715089311291,45.936574104773278,182.3798518916592 -97.786250259170345,45.936507996630468,182.391583058983088 -97.96039723929529,45.937056421432438,182.667798407375813 -97.980457478378369,45.937115218144072,182.699647393077612 -97.988572881613663,45.937139004429255,182.712534381076694 -98.009782022200085,45.937273052185418,182.74638460110873 -98.009882369317651,45.937273686407337,182.746544779278338 -98.072196784774818,45.937356766808961,182.845345169305801 -98.186321367372997,45.937358085922419,183.026161360554397 -98.187314389875198,45.93736007121602,183.027740397490561 -98.726071083567746,45.939851617893744,183.890700866468251 -98.90612960339412,45.940684308024586,184.18045811727643 -98.907177626691222,45.940684292428948,184.182135617360473 -99.00734486371519,45.941106785881296,184.343529039993882 -99.007457216368849,45.941107093324653,184.34370980784297 -99.094572803595369,45.941345476907912,184.48395159561187 -99.104077013125419,45.94131933603753,184.499143821187317 -99.21427844690615,45.941267692483116,184.676001927815378 -99.215351470833141,45.941275676168267,184.677744316868484 -99.223379646551777,45.941228557875462,184.690540957264602 -99.223976659786388,45.941230548883787,184.691504994407296 -99.259453441917728,45.941219019034698,184.748512761667371 -99.277974854094211,45.941346737587317,184.778585904277861 -99.285677024026441,45.94135362216268,184.790990036912262 -99.298981316191757,45.941323424247173,184.812324531376362 -99.319584772905912,45.941421112569309,184.845695654861629 -99.346484366028307,45.941456708777089,184.88907110132277 -99.346670370120634,45.941456705993289,184.889370526187122 -99.380197110657178,45.941560200429912,184.94358597509563 -99.387276266394096,45.941564094288459,184.95499617792666 -99.402971610084919,45.94152386065614,184.980187998153269 -99.491967563278948,45.941517527162219,185.123625188134611 -99.49485362720209,45.941538483142779,185.128326910547912 -99.590495743910495,45.942258022561461,185.284289915114641 -99.612876233152846,45.942251686719977,185.320421242155135 -99.673655559871776,45.94221477488194,185.418552065268159 -99.694693015531243,45.942101462672163,185.452310886234045 -99.719789601839025,45.942059090099221,185.492802882567048 -99.719791561713649,45.942059086790167,185.492806041613221 -99.749589212071086,45.942084637684886,185.541069302707911 -99.751044243839004,45.942086615724605,185.543428114615381 -99.7512132481707,45.942107612436644,185.543748493306339 -99.752115267176592,45.942086599612026,185.545161134563386 -99.840401199937361,45.942443257962658,185.688895976170897 -99.881784197245594,45.942819527092347,185.756790610030293 -99.882014116031002,45.942821617595875,185.75716792140156 -99.967498975657463,45.942970323388664,185.896125949919224 -100.007210840050703,45.943097719618926,185.960859017446637 -100.070746221758313,45.943316752474175,186.064526117406785 -100.085889553208261,45.943447519051084,186.089421383105218 -100.110198081277886,45.943537148541104,186.129126069135964 -100.112066120885771,45.943513121164045,186.132109012454748 -100.143457803046218,45.943651641704328,186.183452478609979 -100.153812025891185,45.943631485862149,186.200245605781674 -100.172554431118783,45.943659201431892,186.230791411362588 -100.276492683585218,45.944088613059201,186.400927301496267 -100.277344701200519,45.944065600975584,186.402263994328678 -100.285864885391305,45.944094470904055,186.416206330060959 -100.287075917010498,45.944273446184091,186.418576079420745 -100.295857110194817,45.944412308223278,186.43318922072649 -100.412119612574358,45.944594539272458,186.623138611204922 -100.42189582467995,45.944674388108503,186.639266225509346 -100.426171917470185,45.944710321948023,186.646323231980205 -100.432331051639835,45.944779226035074,186.656526487320662 -100.464572740155418,45.944706739286559,186.708991691470146 -100.501089452428346,45.944771822420968,186.768764440901577 -100.513528790707412,45.944793992791546,186.78913199622184 -100.513684788036713,45.944793974269828,186.789386781863868 + + + Oklahoma + + + Oklahoma + 0400000US40 + 40 + 68594.921000000002095 + + -100.00184157556599,34.74800136749603,156.016983198001981 -100.001841577378926,34.748104362094317,156.017310922034085 -100.001849213473122,35.032013522269132,156.916644451208413 -100.001853339264656,35.184322611803566,157.395775509998202 -100.001861519423812,35.423972211105266,158.144975547678769 -100.001868273531585,35.620713110581335,158.755769871175289 -100.001877314945304,35.882532735849679,159.56268017180264 -100.001883383601751,36.057252863175144,160.097412960603833 -100.001898813858816,36.501255506983419,161.442914151586592 -100.005254763244537,36.501252918666907,161.449203698895872 -100.091515490746715,36.501186388433254,161.610960270278156 -100.182717194848621,36.501184245394143,161.782377663999796 -100.312141606833592,36.501191620551403,162.026002359576523 -100.312516614697103,36.501237613534983,162.026846809312701 -100.312743617822193,36.501180613540939,162.027103345841169 -100.325648858812599,36.501228449017731,162.051558820530772 -100.335940045589851,36.500989331702662,162.07023142836988 -100.335963045632042,36.500969332416396,162.070214753039181 -100.353341369725271,36.50102211138293,162.103122205473483 -100.353351370181031,36.501036110555262,162.103183057159185 -100.38009186622071,36.500993776548071,162.153461736626923 -100.380133868389407,36.501065772409298,162.153756888583302 -100.415050515737036,36.50101733576561,162.21945443470031 -100.415134516813623,36.500992335963126,162.219537901692092 -100.422801659938216,36.501036237321948,162.234131419099867 -100.422828659648076,36.500995239038986,162.234059411101043 -100.435459894154974,36.501004079697189,162.257914131507277 -100.442565026052293,36.501009990008697,162.27133696898818 -100.44256602661126,36.50103798859142,162.271422800607979 -100.523729526498798,36.500837976929063,162.424036590382457 -100.531816677440716,36.500903871763207,162.439508635550737 -100.53198067821495,36.50078687557032,162.439467891119421 -100.53271769281919,36.500836863777813,162.441009772010148 -100.532717693804599,36.500887861217883,162.441162560135126 -100.547647970069193,36.500889673050224,162.469371877610683 -100.57961756305329,36.500985265413235,162.530067426152527 -100.579617563517289,36.501009264208243,162.530139300972223 -100.584882660439206,36.500989198856821,162.540030322037637 -100.585042664169535,36.501029194831858,162.540452513843775 -100.594054829656585,36.500975083953435,162.557325134985149 -100.594059830522426,36.501015081881896,162.557454357855022 -100.594117831594076,36.501015081150811,162.557563995942473 -100.649848860474776,36.501008378735321,162.662927814759314 -100.649847861075514,36.501040377140605,162.663021698594093 -100.659268034962253,36.501045258062199,162.680856380611658 -100.659268034633271,36.501028258916129,162.680805502459407 -100.71013397307641,36.501065615140668,162.77717552613467 -100.710131973659202,36.501097613558031,162.777267466299236 -100.725867263594097,36.50110241466534,162.80707126762718 -100.72586826403861,36.501124413547181,162.807138966396451 -100.763317953390882,36.501123940630393,162.878058874048293 -100.763317954127189,36.501161938720415,162.878172500990331 -100.804393709544215,36.501164419613467,162.956005456857383 -100.804416709966958,36.501164419322819,162.956049045547843 -100.807679770191484,36.501177377432178,162.962271917611361 -100.807697771297796,36.501217375193676,162.96242559608072 -100.825726101470423,36.501161150145684,162.99642918817699 -100.825744101801092,36.501161149918147,162.996463307179511 -100.852348591958119,36.501242809443966,163.047148312442005 -100.861165753553195,36.501229698601442,163.063829693943262 -100.885589201584892,36.501224389946969,163.110138973221183 -100.885683203309128,36.501224388757862,163.110317294485867 -100.920022831733277,36.50116295734604,163.175290810875595 -100.937568152843753,36.501143736240991,163.208534914068878 -100.955663430094532,36.501140420203342,163.242877780459821 -100.978598903952971,36.501136217106485,163.286417645402253 -101.046843150673041,36.501080355269345,163.415912253782153 -101.05393028057955,36.501103264281653,163.429451992735267 -101.086668872103758,36.500783865282806,163.490744720213115 -101.625437643177861,36.501060996973415,164.519440004602075 -101.651489112854193,36.501105662168122,164.56944106798619 -101.655231180166709,36.501105614394383,164.576605358161032 -101.700208987447837,36.5010400432976,164.662548477761447 -101.710838182582833,36.501253896698451,164.683545807376504 -101.780960441171189,36.501264999883702,164.817978619597852 -101.782135462100314,36.501257985213819,164.8202108675614 -101.783512486611045,36.501248968062008,164.822824549861252 -101.784884511031265,36.501239950973833,164.82542869169265 -101.789635595590681,36.501208891789958,164.834447202272713 -101.828024280551332,36.501065408027863,164.907654105685651 -101.828091284086526,36.501184401151775,164.908135357312858 -102.033868986141201,36.501593417632762,165.304606841877103 -102.163995286068314,36.501852061439756,165.555808371864259 -103.003981032526809,36.501912217469567,167.181624358519912 -103.004112556145785,36.528101882275564,167.258704514242709 -103.003737068801627,36.604226016700771,167.480895012617111 -103.00380135920355,36.618689281426661,167.523309621028602 -103.004068526071975,36.676692335566329,167.693220028653741 -103.003749409187805,36.720931098795425,167.821574854664505 -103.003519246860165,36.911067502195593,168.373283646069467 -103.003802292683545,36.913081397089115,168.379660637117922 -103.003756092818563,37.00159394676939,168.635395593941212 -102.988532794607764,37.000014225795944,168.601428137160838 -102.987363775135137,37.000061238767849,168.599305745214224 -102.981169666422645,37.000039321107309,168.587278323248029 -102.877035865560558,37.001119631810099,168.389386021532118 -102.572445413125635,36.99663183989712,167.789785701781511 -102.356912581795257,36.996073677813563,167.374283229000866 -102.356833578994809,36.996004682294526,167.37393142003566 -102.209858945896869,36.995230633142633,167.090035050176084 -102.185813513950635,36.995093952493363,167.043604594655335 -102.056043183276813,36.994611661700432,166.793986645527184 -102.043779963020199,36.994585822100547,166.770474525168538 -102.029746712332468,36.994628002041004,166.743781707249582 -102.029743834156179,36.994628017318362,166.743776254355907 -102.001986217438599,36.994775354720282,166.691177243366838 -102.001986216975112,36.994752355868656,166.691110275685787 -101.903977465514714,36.995206603386599,166.505336173810065 -101.603125060988873,36.996603423765656,165.936437526717782 -101.601928040452918,36.996661436326214,165.934331373311579 -101.556791530881313,36.996922882600721,165.849310216493905 -101.556770226584121,36.99692300600249,165.849270097911358 -101.520596572400066,36.997055465958695,165.780939999967813 -101.486855960500236,36.997120897693144,165.71706261485815 -101.416533687862469,36.997476786037019,165.584654509089887 -101.415396667992297,36.997518798590299,165.582620673812926 -101.379708020738704,36.9976752503377,165.515396834351122 -101.361201684613192,36.997743485156725,165.480511637404561 -101.359324651154324,36.997782507374097,165.477067774161696 -101.214434018695485,36.998557332038793,165.204925009980798 -101.213010994238303,36.998637346345866,165.202466826885939 -101.068264354999897,36.99943616477325,164.931153943762183 -101.055111114159033,36.999482331169737,164.906445910222828 -101.014162365167081,36.999691845761753,164.829743338748813 -100.99802306547943,36.999560059148266,164.798893384635448 -100.947086129298356,36.999668706314736,164.703107874840498 -100.946989025079731,36.99966967668643,164.702927571721375 -100.90610738167554,37.000078210693886,164.627038315869868 -100.905793379542189,37.000262205587404,164.62698707729578 -100.893179143936337,37.000121374033291,164.602794699370861 -100.857152479082274,37.000143833920504,164.53496862296015 -100.815794723725148,37.000603340110885,164.458418204449117 -100.807633572894886,37.000609444159743,164.443068469874561 -100.767000822597254,37.000695959262906,164.366833124309778 -100.758410667092946,37.000876060109441,164.351197221316397 -100.677067165585285,37.001208082565498,164.199178830720484 -100.634841386447093,37.001456609153664,164.120550330728292 -100.634837210464596,37.00145671368746,164.120542791672051 -100.63128432212595,37.0015456501282,164.114129232242703 -100.592926616526881,37.001920120860007,164.043180931359529 -100.592841614490169,37.0018971230825,164.042953542433679 -100.554195902546041,37.002256598004898,163.97145513817668 -100.553110880069312,37.002141617525851,163.969079618342221 -100.203182366501565,37.003606995844081,163.318000469356775 -100.195260218757795,37.003659093811642,163.303349625319242 -100.193877190869685,37.003562116152047,163.300478517077863 -100.189053101168625,37.0036081750943,163.291600324213505 -100.117226753271751,37.003733079957165,163.157818482257426 -100.090987996566426,37.003618940617187,163.108504326082766 -100.007208670890236,37.003254497427577,162.951152862980962 -100.00406561119479,37.003234538204133,162.945234229788184 -100.002788586961415,37.003227554715629,162.942832888104022 -99.996703470795751,37.003159635099415,162.93128826469183 -99.787514499316984,37.002462314053787,162.53978974185884 -99.776314285087238,37.002372459876142,162.518701473250985 -99.775753274365101,37.002368467154703,162.517646757885814 -99.659154046556694,37.00172996937512,162.299164212308824 -99.626894422265778,37.00120440177875,162.237736102193594 -99.559562136428852,37.001062256740589,162.112437411211431 -99.542609715512896,37.001106993978617,162.081146803684533 -99.510067194514008,37.001192873177068,162.021099315024912 -99.50558610875575,37.001182930038432,162.012768067419529 -99.504158081428159,37.001179948149087,162.010113727301359 -99.501888037922143,37.001171977096661,162.005884788930416 -99.501888036729497,37.001110980097003,162.005703431554139 -99.485825730908331,37.00116117965608,161.97610086388886 -99.457695190288476,37.001006540980477,161.923550140112638 -99.278994768936101,37.001116779597581,161.593407846987247 -99.24960820430114,37.001103148796119,161.539095490239561 -99.130934918445092,37.000961642567923,161.319714613258839 -99.126368830435126,37.000959699824797,161.311290834099054 -99.030820990830108,37.001135886540489,161.135780261829495 -99.001786289036815,37.001051557570918,161.082078685984015 -98.995854313349398,37.001034328604966,161.07110958173871 -98.882061107660434,37.00085175858657,160.861293623223901 -98.881490095703384,37.000805767965943,160.86010685749352 -98.870929891490377,37.000828898597966,160.840771198272705 -98.798931493701019,37.000772799225302,160.708375110290945 -98.795190421026021,37.000770845952005,160.701502026058733 -98.793415387102357,37.000798866703718,160.698327623307705 -98.763075801066734,37.000969236437768,160.643158590421081 -98.719942957780873,37.000724785651457,160.563308956101537 -98.715989878565253,37.000604840746661,160.555701171979308 -98.546346570911822,37.000543953641859,160.244794237427413 -98.546134651612633,37.000543138660596,160.244404072873294 -98.421681123604955,37.000064524567009,160.015458908863366 -98.419740086014002,37.000086547564415,160.011979570612311 -98.410462903816111,37.000061663833094,159.994960999116302 -98.355543816671869,36.999510371566224,159.89304465148598 -98.34861965637549,36.999511335443096,159.880411712452769 -98.347658662018034,36.999511469217602,159.878658500500023 -98.239180531506051,36.999522811773183,159.680886914022267 -98.220967170401536,36.999375044303335,159.647259757854044 -98.209685951749748,36.999548175381832,159.62723052687943 -98.179063349140435,36.999560553425724,159.571502625010908 -98.148918758239802,36.999713918526751,159.517091407440603 -98.113451058459063,36.999685358107598,159.452472220174968 -98.046806746809224,36.999880171400058,159.331882535479963 -98.041354639533964,36.999902237603465,159.32204048987478 -98.035419522606588,36.999919310005261,159.311306452378631 -97.803772933073489,37.000269124249918,158.892084240913391 -97.803757940299334,37.000269146890524,158.892057151533663 -97.784948569218798,37.000403371681848,158.858394048176706 -97.784891570265117,37.000517366831403,158.858634476549923 -97.770163273549613,37.000306558192676,158.831329033710063 -97.698561850753279,37.000383434325251,158.701981661841273 -97.651922925213555,37.000561998297499,158.618184825405478 -97.638593661188978,37.000648157703715,158.594351905398071 -97.608005043450788,37.000240552854294,158.537848454900086 -97.565991205545131,37.000270066666005,158.462056846357882 -97.547952846004279,37.000306286031574,158.429600782692432 -97.547354833335547,37.000268295209047,158.428406557999551 -97.528746462350568,37.000309521259695,158.394945295527577 -97.474314373450326,37.000281189396496,158.296665869653225 -97.463799484302882,37.000245545521068,158.277598075568676 -97.463733161045866,37.000245320695285,158.277477811090648 -97.38637661471796,37.000404259544254,158.138556422665715 -97.373872364370357,37.000422411575997,158.116091781295836 -97.149167852378071,37.000675142701539,157.712839874438941 -97.124043344550088,37.000600452536453,157.667518302798271 -97.121731297518053,37.00057848177552,157.663302687928081 -97.105721974788082,37.000584676530224,157.634595929645002 -97.102097901272884,37.000562721744288,157.62802760116756 -97.041228672696207,37.000565462797383,157.51888230163604 -97.031526475368622,37.000494584316478,157.501277497969568 -96.977005374972876,37.000585243182542,157.403874699026346 -96.968814210189564,37.000633340455003,157.389352118596435 -96.936084547897579,37.000636738165696,157.330767934210598 -96.92335729173935,37.000717888901953,157.3082364378497 -96.918535194673368,37.000748945990729,157.299701733514667 -96.904951918601796,37.000699113435189,157.275246846489608 -96.903524890127102,37.000722129655912,157.272763693705201 -96.877731368915846,37.000800439147682,157.226864543743432 -96.86895819076625,37.0007845464499,157.211127524264157 -96.824231282888618,37.00075009103103,157.131069405004382 -96.796638716707179,37.000428441363916,157.080793078057468 -96.793499658998044,37.000748463943651,157.076158023439348 -96.751276797579976,37.000556985193867,157.000177738256752 -96.74270862814231,37.000808076896902,156.985645930282772 -96.738028533880978,37.000855131343052,156.977435378357768 -96.71192000263369,37.000840448426267,156.930799399502575 -96.706868898595388,37.000772512907744,156.921581029891968 -96.526927015847392,37.000718853388243,156.600797855295241 -96.416843978029235,37.000686023360473,156.404956445097923 -96.395703547180176,37.000794273142859,156.367731188423932 -96.280508185956634,37.000846658834597,156.163450981490314 -96.277797130275772,37.000845691524681,156.158640726469457 -96.218998918512838,37.000645408857054,156.053813349455595 -96.201455557010362,37.000603621899963,156.022608283907175 -96.186195246547371,37.000786796582062,155.996140573173761 -96.155443612786343,37.000737168674199,155.941544498316944 -96.153810577114356,37.00062719360745,155.938318190164864 -96.151135521838668,37.000616226287562,155.933549868874252 -96.148569468673273,37.000598257994156,155.928953277878463 -96.144633389724817,37.000710299892354,155.922329113818705 -96.142636345597722,37.00054933165643,155.918303324840963 -96.002233448199775,37.000438022546412,155.669737637042999 -95.965692631188105,37.000672056618619,155.605933480896056 -95.93841413693508,37.000846767862164,155.558324901387095 -95.929543953058726,37.000823875237998,155.542604364454746 -95.911601583574765,37.000915085767801,155.511232047341764 -95.878571899321287,37.000883482792325,155.452890918590128 -95.876677860066394,37.000881505561274,155.449545773677528 -95.875364832840944,37.000879521374848,155.447224957868457 -95.86831968622208,37.000840607580052,155.43468670733273 -95.80939946269514,37.000704319082097,155.330454820767045 -95.78818102608318,37.000890563830879,155.293660907074809 -95.770137649760827,37.000785784563256,155.261576222255826 -95.761323468055394,37.000851886724419,155.246265028603375 -95.743326093928232,37.000825103067669,155.214512545615435 -95.71947159869724,37.000836387479197,155.172582567669451 -95.716304533347298,37.000860424147312,155.16708583664149 -95.711797441413097,37.000952473543862,155.159441007301211 -95.698076153382786,37.000796644886719,155.134834688156843 -95.68786894370578,37.000930760295745,155.117299295961857 -95.665717482617339,37.000904025981647,155.078280029818416 -95.631494770583345,37.000902434371113,155.018144109286368 -95.625765652082293,37.000942500778386,155.008203526027501 -95.617349476979797,37.000947600907089,154.993437398225069 -95.613555397174892,37.000903648266238,154.986639522016048 -95.575012594192742,37.000893108261955,154.918939613737166 -95.535814777522475,37.000915574212044,154.850230349227786 -95.523828514688475,37.000864777680434,154.829050851985812 -95.512991299667476,37.000818850671713,154.80990487895906 -95.409094129825746,37.000826086501405,154.627878330647945 -95.408983078200322,37.000826289659038,154.627684520557523 -95.332619532209876,37.000965988470504,154.494488111697137 -95.329736471576055,37.000952023378076,154.489403234794736 -95.329467465924054,37.00095102662037,154.488929738290608 -95.323974350750674,37.000944092181051,154.479302551597357 -95.196713685675789,37.001152591836139,154.257621021941304 -95.178707306658779,37.00110780735919,154.226060518994927 -95.156777846254798,37.001128066172527,154.187865325249732 -95.156592842348303,37.001127068411662,154.187539556063712 -95.074913123759998,37.001098036662178,154.045064909383655 -95.074907996541839,37.00109805188351,154.045056024566293 -95.050902619489619,37.001169317236887,154.003461991436779 -95.039260372731292,37.001086458874525,153.982933455146849 -95.03172721438915,37.001106546975755,153.96987917739898 -95.012835816606369,37.001124769410183,153.937049643136561 -95.009022735846031,37.001103815479716,153.930348538793623 -94.996695476237065,37.001118960427085,153.908942472189665 -94.854596463804228,37.000465668966932,153.659925688058138 -94.851200392027835,37.000467708909973,153.65403520129621 -94.842325203542785,37.000424815595359,153.638493929058313 -94.83267899911705,37.000403930300514,153.621684215962887 -94.778654854762067,37.000356569073048,153.527800110168755 -94.740721049703382,37.000280019355962,153.46179024502635 -94.738580003923403,37.000258045607772,153.458011191338301 -94.7141664887221,37.000387326712271,153.416100763715804 -94.703193256375073,37.000407454844421,153.397151061333716 -94.701131212474408,37.000398479530496,153.393551090732217 -94.619474466841083,36.99972947147414,153.250113412737846 -94.619443430997535,36.997802563993922,153.244108420796692 -94.619425403156043,36.996298636135329,153.239432076923549 -94.619419590683862,36.951754768077528,153.101745813153684 -94.619502526981918,36.948160939226497,153.090773626230657 -94.619559364673435,36.939181368704887,153.063092869706452 -94.619688222945683,36.931244747472668,153.038757126778364 -94.619600159009579,36.927833911961294,153.028048425912857 -94.619674892069213,36.913070618766163,152.982474582269788 -94.619635628701445,36.898626311912295,152.93767130561173 -94.620050329439124,36.881664120858481,152.885831972584128 -94.619771729607237,36.848921696164197,152.783820441924036 -94.619697267285602,36.768165580727164,152.532855930738151 -94.619519089598995,36.703031721823386,152.32979456987232 -94.619413512165423,36.671040266990616,152.229882120154798 -94.619407909232621,36.669531552673455,152.225166817195714 -94.619202488277779,36.614217015296191,152.052141579799354 -94.619252386286917,36.608464292951645,152.034254472702742 -94.619240247601667,36.600733667065157,152.010074837133288 -94.619200864079005,36.579346702558816,151.943142157047987 -94.619283137824439,36.538599675336123,151.815775861032307 -94.619254121274395,36.537706718952855,151.812929295934737 -94.619383091697216,36.535896805179426,151.807486300356686 -94.619268795301565,36.519416605503409,151.755667778663337 -94.6192627452523,36.516616741354539,151.746884942054749 -94.619304468392485,36.501032496834327,151.698116953484714 -94.616696156520646,36.486611226964683,151.648357682861388 -94.615214969646829,36.477867668606272,151.618353212252259 -94.612993660964861,36.463148409147976,151.568299336358905 -94.606791827171435,36.423571404359514,151.433208305388689 -94.604006472855687,36.40690624712699,151.375973956659436 -94.60336740331185,36.40374340839341,151.364915911108255 -94.601106098137294,36.389211141708955,151.315271444618702 -94.594779224446029,36.347368252544598,151.172532791271806 -94.587581264798459,36.301597567319213,151.015711004845798 -94.579263211158178,36.2517110987704,150.843722510151565 -94.579279202139773,36.251179124574243,150.842069923877716 -94.577382995586561,36.241701609514884,150.808814747259021 -94.576450863704366,36.235313932430962,150.787000190466642 -94.576259843149529,36.23437298062278,150.783692604862154 -94.575774784713118,36.231628120377721,150.774169527925551 -94.573185444898996,36.215380944553083,150.718277811072767 -94.572632383290482,36.212534090146399,150.708308103494346 -94.567966809370276,36.185408470953945,150.6143281115219 -94.567033696253603,36.180073742803344,150.595809375867248 -94.564206325996309,36.163530762947708,150.538480223156512 -94.56418134395922,36.163384592721165,150.537973550148308 -94.562543140809879,36.153746083632143,150.504574647173285 -94.553561391600724,36.103873855145544,150.33072614390403 -94.549247571987365,36.079920856231453,150.247139086946845 -94.549091551104993,36.078910907592352,150.243658701889217 -94.537099090663745,36.009450457602561,150.001835484988987 -94.536226983290021,36.004321719813156,149.983984028920531 -94.535020855994262,35.998448022527818,149.963173377327621 -94.53344566758193,35.989496480935976,149.93191137816757 -94.529679210566002,35.96769959678597,149.855875734239817 -94.529536200822392,35.96731061757248,149.854385673068464 -94.526013781575756,35.947373639629291,149.784659490920603 -94.525717746334564,35.945696725615399,149.778793341480196 -94.524283579126575,35.937774132312214,149.751012541353703 -94.524007551966434,35.93653919631376,149.746589709073305 -94.524031550861579,35.936446200620964,149.746335086412728 -94.524031541364664,35.935897227668676,149.744583837687969 -94.509002701183931,35.847552757288859,149.43603961635381 -94.507013448195252,35.835280386177246,149.39328801818192 -94.505809298049286,35.828021758544672,149.367946547456086 -94.504382110605761,35.818863227421097,149.336126029491425 -94.502532886533047,35.808083781350007,149.29836570750922 -94.502134833339554,35.805473914920164,149.289308700710535 -94.50189680810918,35.80429597587419,149.285118306055665 -94.50101769121234,35.798564269311804,149.265215839259326 -94.500415619338924,35.795114446778875,149.253107309341431 -94.495919093351731,35.769958742511463,149.164590066298842 -94.494731958538736,35.763548073312094,149.141949653625488 -94.494301755555639,35.760822054872932,149.132451865822077 -94.489579291239323,35.730897748748397,149.028142188675702 -94.488954225208872,35.727804909084654,149.017115603201091 -94.474014416819259,35.640218423228717,148.709293549880385 -94.466638504941486,35.595701718811583,148.552921167574823 -94.465823400743943,35.590573983001036,148.534956769086421 -94.465463365277813,35.588930068824411,148.529023431241512 -94.464684270748478,35.584325306641176,148.512805306352675 -94.433151676736699,35.399334060547105,147.859050641767681 -94.432577415598658,35.395965060064043,147.847112073563039 -94.435277355990749,35.389066374416409,147.82948793284595 -94.435104764152143,35.388142527237875,147.826186713762581 -94.434047219592841,35.382481717453942,147.805956795811653 -94.43317690043321,35.364567623078621,147.746278264559805 -94.435476002646894,35.308172420112754,147.567081909626722 -94.436530773563661,35.293174159723627,147.520155865699053 -94.436640708774831,35.28916535939733,147.507306423038244 -94.436676515627411,35.277573940047176,147.469646238721907 -94.437066496574303,35.275948017179829,147.465041589923203 -94.437172449178263,35.272981164745929,147.455570566467941 -94.438937999879982,35.243884604428267,147.363923693075776 -94.439133955037704,35.240953749306215,147.354719790630043 -94.439606493178715,35.212676163652716,147.263373836874962 -94.439829457739464,35.210271281933885,147.255924377590418 -94.440443282429584,35.198982842107107,147.220185659825802 -94.440415220049545,35.195273028818669,147.208032212220132 -94.440867866915255,35.173493118425291,147.137744066305459 -94.440908821686932,35.170723257228168,147.12877257168293 -94.442112178173673,35.130494267518685,146.999464209191501 -94.442590037376334,35.12141271932628,146.970616334117949 -94.449243935985322,34.935639135461685,146.37325553316623 -94.450607509487284,34.897568932895439,146.250431783497334 -94.450440477837944,34.895852021712223,146.244484305381775 -94.45041241824056,34.892256204152844,146.23259751778096 -94.450984179082681,34.876953973033004,146.183223658241332 -94.451418959962083,34.863036673547668,146.138147762045264 -94.45149391824387,34.860395806586581,146.129578942433 -94.451586866420044,34.857114971880108,146.118932365439832 -94.455928036637076,34.730670762019379,145.709167278371751 -94.458880555259384,34.644673691468789,145.429597784765065 -94.458850424703925,34.636658100488674,145.402960432693362 -94.461401069312856,34.549586517206841,145.11832029838115 -94.461407027402103,34.546981650271306,145.109668329358101 -94.462497440488661,34.509176571388572,144.985813028179109 -94.465018080398892,34.42130904395647,144.697383726015687 -94.465163001296489,34.41618930489367,144.680551277473569 -94.465522820369685,34.40443790365773,144.641954358667135 -94.46677115523633,34.36127510528376,144.499941936694086 -94.467193044441643,34.353800484533068,144.47569786105305 -94.471635880814205,34.191599784231776,143.939842557534575 -94.476236995551403,34.023621415903555,143.382178672589362 -94.476236994938077,34.023582417923429,143.382046963088214 -94.476235960588639,34.021399530998245,143.374672826379538 -94.478297024912919,33.959112737314953,143.167806362733245 -94.478377971287472,33.955585919404427,143.156017584726214 -94.478657894795248,33.942681001005006,143.112841803580523 -94.478726726522893,33.939507749944788,143.102222583256662 -94.480180876227607,33.88323665680727,142.914166024886072 -94.480332874845303,33.882948670123959,142.913462216965854 -94.481292428389011,33.853083212560946,142.813861726783216 -94.481912111200188,33.831920306899626,142.743122457526624 -94.482692702493225,33.804642718483009,142.651846252381802 -94.482698698913197,33.804404730811648,142.651048109866679 -94.482880594839585,33.797475089745987,142.627818785607815 -94.483179496602915,33.790764436065928,142.605539563111961 -94.4840190054488,33.758044132211438,142.49573474097997 -94.48411396629109,33.755396269238382,142.486892807297409 -94.484198923674995,33.752538417332318,142.477317368611693 -94.484206920486685,33.752322428508229,142.476596480235457 -94.48521041645607,33.718493182375688,142.363182978704572 -94.485176332094781,33.713092464613233,142.344716994091868 -94.485952042367188,33.693353486737848,142.278820519335568 -94.485855983419242,33.689670680100519,142.266088432632387 -94.486863624894795,33.665150950124655,142.184248506091535 -94.486912470206036,33.655073476269727,142.149938101880252 -94.487210237875274,33.63963128035099,142.097744099795818 -94.488946129502992,33.630308749126641,142.069024221971631 -94.492019146668682,33.627350870656223,142.064451255835593 -94.525390676792298,33.61753002412204,142.090997801162302 -94.529715768641452,33.617759965382326,142.099575573578477 -94.662303157783811,33.662083212279789,142.489914745092392 -94.736469147825474,33.693025789695696,142.72921652533114 -94.747437553566627,33.704774056350317,142.789015844464302 -94.761946222682241,33.728810642431945,142.896989097818732 -94.823816568984441,33.734471673756445,143.028003805316985 -94.87064472544148,33.747625476525023,143.157351330853999 -95.040801975327355,33.862367627311237,143.85408844333142 -95.06363511542834,33.905362135484765,144.040702304802835 -95.064810303686428,33.915783579583398,144.078012867830694 -95.068604432840985,33.919094365470094,144.096055280417204 -95.1309250011806,33.938459672337018,144.274226476438344 -95.157334884657729,33.945767969776718,144.346708373166621 -95.220713211038543,33.963306390523762,144.520671792328358 -95.227748359371191,33.963693292904644,144.534731571562588 -95.232468429499292,33.962100323894497,144.537927398458123 -95.254261446318566,33.935388475805233,144.487486655823886 -95.254978398412845,33.931450673188863,144.475518512539566 -95.251162203074784,33.92398210457538,144.44342122413218 -95.249555013695939,33.914068639215884,144.4070834973827 -95.251276885453606,33.90376615765075,144.375466375611722 -95.25689584109378,33.893789616368245,144.352014739997685 -95.26216987805968,33.889395787660412,144.346767426468432 -95.288920195807648,33.875360226158854,144.347996095195413 -95.31183094137873,33.873224575287452,144.382424104958773 -95.341114170784522,33.870494906072715,144.426451073028147 -95.409152501573786,33.868050284721917,144.541992976330221 -95.447109304968293,33.870591733685309,144.619676787406206 -95.545706463234296,33.881851057480787,144.837319602258503 -95.549685584840958,33.884483875907307,144.853445206768811 -95.553445750403,33.89016153759173,144.879425269551575 -95.553691850587313,33.896159221396168,144.900070529431105 -95.550835902754145,33.903049892855329,144.918061828240752 -95.55050600162626,33.909688549640045,144.939806738868356 -95.560775561173585,33.931916275138136,145.033316089771688 -95.56838375389728,33.934434059527852,145.055654471740127 -95.6010404335468,33.93598361734238,145.120418693870306 -95.758520518907673,33.869031375206298,145.182907446287572 -95.764986340471197,33.849693316352869,145.129641802981496 -95.826045395847927,33.839465176310014,145.207015792839229 -95.847700101442726,33.842875009927397,145.258175407536328 -95.951303203832779,33.859188753659041,145.503052796237171 -96.098896976073064,33.849279633536632,145.740898289717734 -96.149441821729738,33.83953458282749,145.801156860776246 -96.158088602084504,33.815060772082823,145.734817013144493 -96.165471284649428,33.785999217475869,145.650661864317954 -96.171426161985408,33.770908944903312,145.610843954607844 -96.183075222444401,33.760243376592236,145.596404694952071 -96.20127148035462,33.75385651054421,145.608445576392114 -96.221892812424059,33.749129530233432,145.630559476092458 -96.231231011624587,33.750059377508116,145.650917404331267 -96.306048449103542,33.747639672995057,145.780876066535711 -96.370964264055814,33.718548483765943,145.802904460579157 -96.379847803804864,33.728386599112525,145.852456315420568 -96.424738272582232,33.778100746629129,146.102676752023399 -96.437831589028633,33.781785406532599,146.139273482374847 -96.449421832617674,33.782766225565716,146.164008164778352 -96.501645723543163,33.774318087729981,146.232281863689423 -96.614305471033674,33.835669873374648,146.646779798902571 -96.61625097014381,33.842964525110176,146.674821704626083 -96.617223856680383,33.855122300425727,146.717339950613678 -96.614344461501389,33.869379822314393,146.759734244085848 -96.612847090663692,33.877006380236857,146.782483323477209 -96.614876108098315,33.88004958542939,146.796424072235823 -96.616737967165875,33.882842079508848,146.809215360321105 -96.623546900714913,33.887705115974569,146.838094809092581 -96.634732929203167,33.891109172314188,146.870200607925653 -96.648350733553883,33.896944762475734,146.914942177943885 -96.660023140414111,33.90180776317861,146.952826084569097 -96.673640842639884,33.901321281107784,146.976434940472245 -96.679963251710333,33.894512855943454,146.965394771657884 -96.683853858237129,33.884786577317705,146.940088121220469 -96.686771784951659,33.874573990000897,146.911343770101666 -96.690662368069866,33.863388780712732,146.88113996386528 -96.696011998567926,33.851717244934612,146.852004480548203 -96.702334359151223,33.842477249959217,146.832803872413933 -96.708656782403679,33.837127746913197,146.826625012792647 -96.713804829493341,33.833362603083266,146.823571507818997 -96.762971674305035,33.82613543233996,146.89065317157656 -96.857475891378471,33.849217154538096,147.143494094721973 -96.867824184581934,33.854875739997873,147.181653009727597 -96.884396748035499,33.86974477017111,147.262160181067884 -96.897115455484837,33.898138131702311,147.380626506172121 -96.900830132764568,33.935450126365218,147.512001618742943 -96.908775552278755,33.951746179749748,147.581083613447845 -96.917688852390839,33.959518670535104,147.62354329507798 -96.923502994720621,33.961299511301306,147.640280682593584 -96.935897208128168,33.955468195994619,147.643893939442933 -96.946000261318218,33.95071484162581,147.646842011250556 -96.974259595867863,33.937419194478032,147.655101217329502 -96.986956045148318,33.888245640352459,147.514758571051061 -97.007519046003978,33.863608707046637,147.470816792920232 -97.04936114789048,33.819657554387348,147.401975870132446 -97.093802642855692,33.734944531569639,147.201443249359727 -97.098542647644905,33.729539764277341,147.192189601249993 -97.108571734197199,33.722850005578138,147.188511015847325 -97.122490940231174,33.718905057892009,147.201302750967443 -97.13891928226279,33.720394794242168,147.237002379260957 -97.152646611467702,33.724338431003567,147.275878314860165 -97.164192989741991,33.730856638980505,147.319299734197557 -97.164538949781004,33.731051941735146,147.320600691251457 -97.173582257332086,33.739274404661415,147.365043204277754 -97.206218896361619,33.80163373819061,147.634618865326047 -97.206387206693407,33.820594734217721,147.698262232355773 -97.201092241188533,33.829046347490397,147.716583686880767 -97.19607020671225,33.83291619978133,147.720117837190628 -97.182761952035321,33.833099340355197,147.695866137742996 -97.173018827539778,33.837059241218356,147.690885655581951 -97.168215816527578,33.842119028270936,147.698804230429232 -97.168020924883294,33.849034665369835,147.721519690938294 -97.182237977967347,33.896924978022511,147.907745493575931 -97.186851156723307,33.90242063607657,147.934665077365935 -97.212314900032652,33.917783538059837,148.033360279165208 -97.227916179006911,33.916361436435466,148.057756972499192 -97.312238123198441,33.8741817072316,148.07489397842437 -97.374336459949973,33.821176805284061,148.014458955265582 -97.427889490850461,33.821120202088835,148.114628011360765 -97.445589902745084,33.825494770202084,148.162397203035653 -97.454454150820212,33.830257417839832,148.194892076775432 -97.460465364853846,33.836302029997597,148.226306008175015 -97.464254554810395,33.843492606760861,148.257366128265858 -97.462883655223479,33.851280210511874,148.280733227729797 -97.459014671397242,33.856845960128133,148.292013559490442 -97.45286681053139,33.872649194600292,148.333099039271474 -97.452352134398339,33.893116119199618,148.400233156979084 -97.459467438519582,33.903352497856098,148.447607475332916 -97.485470584959742,33.917396021196389,148.543015038594604 -97.487904236995746,33.918710364025515,148.551943342201412 -97.502359558552911,33.921359059935682,148.587836566381156 -97.520570810794965,33.915354170020386,148.602026931941509 -97.54692610115373,33.902112569879328,148.607456324622035 -97.556402232397474,33.898998626696347,148.614886298775673 -97.562454396743306,33.899722281742442,148.628647194243968 -97.58244178360772,33.902112166133769,148.674097763374448 -97.588841940599167,33.904194983290402,148.693030199036002 -97.597690295245329,33.915484286166027,148.747135004960001 -97.59851637820266,33.919583060242658,148.762295609340072 -97.590229776251064,33.953595358698919,148.859621926210821 -97.590999818462961,33.955267261692427,148.866612084209919 -97.610493431522329,33.969805272464527,148.951389144174755 -97.657613687858699,33.991198606560459,149.110692973248661 -97.673176017489951,33.993080329721494,149.146135272458196 -97.68942725094746,33.988317395521818,149.160875298082829 -97.694514300694962,33.985409490894398,149.16079868376255 -97.701881253664993,33.973957011228997,149.136704350821674 -97.735127301776416,33.938104525381938,149.080366686917841 -97.786721539561867,33.89241535296604,149.025866311043501 -97.835737934893444,33.859386542856811,149.008523060940206 -97.867170399159946,33.851108623120361,149.040274493396282 -97.87879263463013,33.851951445943477,149.064986929297447 -97.968113856706793,33.883661746182781,149.338709598407149 -97.979218643747487,33.891606457255499,149.386005892418325 -97.979267200129769,33.891641196006127,149.386212681420147 -97.95480349929683,33.938155013378164,149.494146713986993 -97.947139233406659,33.991546278373562,149.656313714571297 -97.9849311474742,34.00326522618672,149.766259207390249 -98.020895704435731,33.995510223607781,149.808453842997551 -98.042528110487893,33.995161993917719,149.84810943249613 -98.086672112392151,34.004963969258128,149.963776010088623 -98.089615205127274,34.007185818032035,149.976664766669273 -98.107674015855565,34.035399119829378,150.10382251162082 -98.170535548084615,34.115869149123391,150.487403830513358 -98.20149117967874,34.118480654520795,150.554418128915131 -98.295319230728779,34.134715715322372,150.784979689866304 -98.301627376325669,34.136274560227235,150.802019295282662 -98.326864129389719,34.152719401245051,150.903685569763184 -98.365442961732839,34.158802634284413,150.996578409336507 -98.384642169364042,34.149499902872428,151.002387715503573 -98.399861133524595,34.130150747915309,150.967714868485928 -98.401914060690686,34.123473076694552,150.949688331224024 -98.435189598191982,34.097812520336959,150.928462364710867 -98.476486508388859,34.065966253469568,150.902118431404233 -98.505603192618977,34.074067488347445,150.98394601047039 -98.555140151489198,34.135352675395751,151.278954909183085 -98.57877985573468,34.150791585831591,151.374367417767644 -98.60121347073256,34.162261719832749,151.454475206322968 -98.611536313051914,34.162729544471844,151.475590049289167 -98.639000210639267,34.1639741907358,151.531777873635292 -98.653772467391448,34.162719085474478,151.555710058659315 -98.667249562630872,34.153307426146846,151.550498372875154 -98.701607945744087,34.137685852731892,151.564628543332219 -98.766997179138386,34.138066072874679,151.690169136971235 -98.859848193624345,34.154420127760879,151.920313115231693 -98.921472855064536,34.184593814100872,152.136199034750462 -98.953958819292936,34.197306215621929,152.239554676227272 -98.968175036489171,34.202869303065476,152.284781456924975 -99.061777843335264,34.206444020634954,152.474873818457127 -99.120638888499855,34.203429491806745,152.577373533509672 -99.158549689794739,34.209095748430904,152.668213849887252 -99.19232645058905,34.21693193835803,152.758240436203778 -99.213086145368621,34.293908625905182,153.048082038760185 -99.213038515055729,34.315645478783779,153.118527089245617 -99.211162667243457,34.326609922147384,153.150508440099657 -99.212834571780306,34.339362614926799,153.195045125670731 -99.212861920120787,34.339571218327528,153.195773495361209 -99.262761970520529,34.405169173094819,153.50336317718029 -99.358156406109757,34.443811012934262,153.810275354422629 -99.400078044651366,34.377502013390625,153.676165194250643 -99.408611147377954,34.374275083030049,153.682047120295465 -99.442203795372748,34.375792606735125,153.751202896237373 -99.454921281906081,34.390424684586229,153.822817320935428 -99.475606211765296,34.399719843082373,153.892414231784642 -99.501320498540281,34.411275036709782,153.978923126123846 -99.516830866561662,34.415999604203236,154.023853534832597 -99.575814024002383,34.41994669847255,154.149514879100025 -99.581507101037161,34.418318717005093,154.155168843455613 -99.618240068337045,34.377058460740543,154.092427127063274 -99.665395907496844,34.375346993416052,154.177341733127832 -99.696418558483202,34.379999380448119,154.251880710013211 -99.768684786947361,34.432164768663739,154.558708811178803 -99.79513567737186,34.455555220042164,154.684754565358162 -99.847852956583111,34.506702980794607,154.950308974832296 -99.866376184074838,34.524674727697885,155.043540046550333 -99.873811478329728,34.533752160790741,155.086927856318653 -99.875857602811351,34.538750873034317,155.106883643195033 -99.886296965884924,34.548608229348481,155.158522658981383 -99.924667150490649,34.576205318448693,155.320586083456874 -99.94717664551014,34.580925801304389,155.378921065479517 -99.956023788849407,34.579847752473512,155.392463969066739 -99.999309981900979,34.563138142034738,155.422163039445877 -100.001838319368488,34.562162137195159,155.423899317160249 -100.00184157556599,34.74800136749603,156.016983198001981 + + + Pennsylvania + + + Pennsylvania + 0400000US42 + 42 + 44742.703000000001339 + + -79.477729349897473,39.722712528424594,139.28242917265743 -79.609294017647386,39.722787313756861,139.444575379602611 -79.61169408589025,39.722878287932495,139.447822106070817 -79.764849339663954,39.722407891186002,139.635524521581829 -79.853981814958928,39.722344067234317,139.745772875845432 -79.854208821262276,39.722344065126912,139.74605449102819 -79.91734544931073,39.722422477073628,139.824693297035992 -80.30974144492825,39.722909788284703,140.316282329149544 -80.310547466888835,39.72289078148588,140.317234069108963 -80.422481554878473,39.722814731711573,140.457686100155115 -80.520438258263894,39.723027799216979,140.581806702539325 -80.520347687284016,39.938583070356195,141.258585650473833 -80.52021471915846,39.940803982021606,141.265373757109046 -80.520275000422842,39.958263277356224,141.320114498957992 -80.52030304519387,39.961009166394646,141.32874496653676 -80.520316978536357,39.963814429976722,141.337542943656445 -80.520318094162917,39.964039044120518,141.338247359730303 -80.520307109195869,39.964996005653362,141.341228674165905 -80.520220957791253,40.018022871230194,141.506974514573812 -80.520109929818645,40.078611437527314,141.696073886007071 -80.520061946026388,40.079699394312598,141.699409125372767 -80.520207267743203,40.161279123150052,141.953938134014606 -80.520159478053245,40.174350600585406,141.994584364816546 -80.520159478490527,40.174377599505362,141.994668431580067 -80.519098131535657,40.400465602559521,142.695331170223653 -80.519105072951973,40.401241552072442,142.697742390446365 -80.519800321039867,40.478959909865821,142.93901429604739 -80.520163117152194,40.51951487940029,143.064731258898973 -80.520166117235803,40.519514879371499,143.064734997227788 -80.520165309979532,40.591763029254444,143.287580955773592 -80.520196310646,40.591751029429204,143.287582592107356 -80.520196744654939,40.617973996833335,143.368369047529995 -80.520149743442445,40.617979997049204,143.368328997865319 -80.520102113443215,40.640389115890144,143.437264908105135 -80.520171670109704,40.793880096299169,143.908913174644113 -80.520105817384959,40.802802748105016,143.936189334839582 -80.520195622139511,40.850736875252991,144.083170227706432 -80.520134635780096,40.851652840103576,144.085899371653795 -80.520153578177244,40.852918871963617,144.089799552224576 -80.52087949193637,40.901435892334511,144.239171410910785 -80.520905507835522,40.902338856918298,144.241965232416987 -80.520206829457436,40.922638073472534,144.303164786659181 -80.520117003308599,40.988954498163608,144.505604421719909 -80.520106079879795,40.997019184116432,144.530200531706214 -80.520044414938567,41.016960411209126,144.590954625047743 -80.520078196744421,41.063117622717044,144.731684550642967 -80.520046355225205,41.072525258950975,144.760300357826054 -80.520078371578634,41.073437223354162,144.763117399998009 -80.520117426024086,41.076585101185572,144.772752289660275 -80.520206548202935,41.083644827236739,144.794359595514834 -80.520210693884437,41.092228495262248,144.820497266948223 -80.520243867206005,41.102389102164828,144.851464641280472 -80.520310946128234,41.106927926106493,144.865360126830637 -80.520111120481687,41.117527518534708,144.897363913245499 -80.520175276850296,41.126626166519173,144.925120482221246 -80.520131275612741,41.126626166946664,144.925066108815372 -80.520131276223537,41.126662112905571,144.925175439566374 -80.520131276615231,41.126685164668551,144.925245554186404 -80.52028642079253,41.134911845549759,144.950456751510501 -80.520286229346823,41.134956853137865,144.95059338118881 -80.520234626384124,41.147088376130611,144.987415542826056 -80.520264064324962,41.172770385426688,145.06550204847008 -80.519950703454796,41.210778924470276,145.180537204258144 -80.520013878350596,41.220921533544036,145.211397548206151 -80.520013878367664,41.220922533505565,145.211400581523776 -80.520014103782287,41.234121025821089,145.251446302048862 -80.519814376710997,41.250419401200325,145.300632941536605 -80.520014661158314,41.266718773036494,145.350296324118972 -80.520114715317135,41.269718656850316,145.359512588009238 -80.520117717883338,41.269863651252855,145.359955763444304 -80.51991634961098,41.307071225358797,145.472431072033942 -80.520251477377855,41.31396995757315,145.493733095936477 -80.520387843115728,41.335056148170068,145.557727299630642 -80.520403885863175,41.337519053671848,145.565199933946133 -80.520403906248873,41.338706008208504,145.568791581317782 -80.520403906746935,41.338735007097803,145.568879328668118 -80.520433939849084,41.340612934880049,145.574598555453122 -80.520415939375496,41.340614934979079,145.574582435190678 -80.520415949681436,41.341214912000922,145.576397800818086 -80.520467959582746,41.341705892690165,145.577947406098247 -80.520467969803377,41.342300869904435,145.579747598618269 -80.520420387511038,41.35239356813522,145.610221766866744 -80.520372315810235,41.362590094141652,145.641001834534109 -80.52034050369609,41.373565674546711,145.674149621278048 -80.520372623541093,41.380477409893999,145.695083680562675 -80.520149263582809,41.41799597840965,145.808168067596853 -80.520117262661486,41.417994978760525,145.808125678449869 -80.52011759074108,41.437011252897825,145.865542721003294 -80.520294064256646,41.46413721668582,145.947616280056536 -80.52033416007356,41.490568078697059,146.027372581884265 -80.520350711889094,41.50147879383524,146.06028120405972 -80.520283209832456,41.530322697276425,146.147100799717009 -80.520465397610167,41.540850295329271,146.179027478210628 -80.520485669464605,41.671315349647017,146.571264673024416 -80.520552696884579,41.672776293752023,146.575731766410172 -80.520502224160637,41.703020151469445,146.66641061194241 -80.520537888597772,41.740904721544766,146.780025620944798 -80.520499117680174,41.754032227055987,146.819307835772634 -80.520369335958733,41.766682751685423,146.857037853449583 -80.520425379879782,41.851104607253482,147.109656563028693 -80.520478229946804,41.930706592012854,147.347380676306784 -80.520437491236748,41.945530037807984,147.391537364572287 -80.520539064291782,41.977694834508675,147.487528555095196 -80.520559074232054,41.979058771340533,147.491616529412568 -80.520559089078546,41.979059783324089,147.491619561798871 -80.436583192388994,42.007147563895046,147.473011934198439 -80.410907565258327,42.013114594570986,147.459565642289817 -80.374196738745042,42.025638489589653,147.452273461036384 -80.372999702137434,42.025502506448035,147.450415017083287 -80.364381526896679,42.029509442070982,147.451888174749911 -80.350299164681559,42.031779496204855,147.441560107283294 -80.331105720989058,42.037704464533114,147.435927634127438 -80.297886999589082,42.050612311004798,147.434113149531186 -80.231613613899469,42.079492888874292,147.439923611469567 -80.189211687479315,42.095792700088218,147.437234453856945 -80.167010256260767,42.107392487607186,147.444976470433176 -80.155210075353381,42.116292273344165,147.457236651331186 -80.137339185684297,42.151471145284852,147.540368121117353 -80.131556133001467,42.157864965356062,147.55241881031543 -80.118493935380755,42.167874723147811,147.566458564251661 -80.089637227723344,42.174717753153644,147.552088240161538 -80.078512874004659,42.172795933318305,147.532996992580593 -80.074505712721091,42.170192068905394,147.520435588434339 -80.081152814573784,42.165159189899164,147.513459068723023 -80.073105436962749,42.156891574677282,147.479188734665513 -80.079905563292044,42.152991652355119,147.475763583555818 -80.077405427757839,42.149391810103353,147.462045830674469 -80.073104272350449,42.147591918880728,147.451517241075635 -80.0622039379721,42.146392070093761,147.434839545749128 -79.990308440335369,42.178585583209596,147.444294832646847 -79.932445299631823,42.208271052833055,147.463259119540453 -79.925045100781119,42.209080095310796,147.456807197071612 -79.902170603591102,42.218234981102825,147.456666085869074 -79.887307320736895,42.226466822754304,147.463373743928969 -79.869098903008577,42.232532776977799,147.459651270881295 -79.845780309794506,42.237019839255922,147.44514415320009 -79.799565337508994,42.257472536942259,147.450822712853551 -79.76306852940958,42.271393380552688,147.448725723661482 -79.763081203055833,42.252888061236376,147.393716036342084 -79.763269062045808,42.244588364916751,147.36925314925611 -79.762949006159317,42.18516355844357,147.191975530236959 -79.76304493975195,42.181229702698609,147.180370736867189 -79.763036827467644,42.174855938065342,147.161370924673975 -79.762874635757285,42.164212332686553,147.129459233954549 -79.762976428604631,42.152249773647746,147.093922267667949 -79.763237094539704,42.132784490705191,147.036188836209476 -79.762486762465997,42.000610399085971,146.640441384166479 -79.626395843362701,42.000547718332903,146.477801291272044 -79.626409844894496,42.000612715782779,146.478012620471418 -79.611947281553697,42.000534204467506,146.460547143593431 -79.552491707238872,42.0002114440261,146.388814199715853 -79.53955133163781,42.000072573921223,146.37301048822701 -79.062357542919912,42.000809117057607,145.811414771713316 -79.053565533082136,42.000729066963437,145.800852940417826 -78.919942584749904,41.999512445170303,145.640625267289579 -78.875846099052808,41.999110950676005,145.587869981303811 -78.597729042551265,42.001431488916545,145.271152355708182 -78.309198608855766,42.000972207497533,144.936507957987487 -78.207673875234647,42.001547173430794,144.821602914482355 -78.125795256135362,42.002010875434003,144.729170986451209 -78.03223949533853,42.000974780707359,144.619081960059702 -78.032025488676993,42.000951783535932,144.618768074549735 -77.833086631060965,42.000085651723651,144.389627591706812 -77.823855359993146,42.000108735834665,144.379216650500894 -77.750985220141345,42.000344397061987,144.2972910720855 -77.611077904671546,42.001082276932657,144.141335521824658 -77.506355032123011,42.001634588580124,144.025008328258991 -77.125728766178412,42.000963066361535,143.597010362893343 -77.008667319014265,42.002417067508759,143.471355776302516 -77.008568315608414,42.002388069462803,143.471157746389508 -76.966759055602054,42.002842972206103,143.426190806552768 -76.966717081069277,42.002843428906878,143.426145690493286 -76.943615400154385,42.003143625336307,143.401472073048353 -76.938114238444413,42.003243671044451,143.395686042495072 -76.928113941522597,42.003243760780762,143.384617231786251 -76.922913787110829,42.003243807433421,143.378862711600959 -76.921813756058086,42.003343813634913,143.37794983945787 -76.83610620981446,42.003343581557139,143.283229838125408 -76.816904637445177,42.003243756995012,143.261737491004169 -76.559136940022569,42.001728109238421,142.973817081190646 -76.55864306209385,42.001722019965491,142.973257747478783 -76.467556190968978,42.000598962383222,142.870230074971914 -76.463171058687323,42.000508004528491,142.865164131857455 -76.350910698977529,41.999985015675243,142.741193192079663 -76.344734513468822,41.999921072495638,142.734277019277215 -76.146525798538306,42.000489832034638,142.520975342951715 -76.132207167308252,42.000530918923957,142.505615454167128 -76.124701942604972,42.00053098469904,142.497501450590789 -76.106845406407402,42.000435144639802,142.477910275571048 -75.984083730638304,42.000613211388924,142.34606018755585 -75.981251645720505,42.000613236101323,142.343011677265167 -75.484724723348151,42.000826528680776,141.813183349557221 -75.484136806675153,42.000841065744417,141.812604554928839 -75.478130527142355,42.000989579418416,141.806692101992667 -75.43720129256694,42.000935932903054,141.763163877651095 -75.432946164428785,42.000945969058492,141.758689573965967 -75.360561982470855,42.001028586581533,141.682396620512009 -75.342850352934988,41.994845963304037,141.644708617590368 -75.293569261762116,41.95548281883152,141.471754528582096 -75.280073625214996,41.940503480344489,141.411458653397858 -75.263983317812418,41.886697582521762,141.228892272338271 -75.147420282177535,41.852489824532881,141.00067541655153 -75.141215112873368,41.853668834028248,140.997785158455372 -75.115372204383831,41.84517436392742,140.944415911100805 -75.091771014229437,41.813583720503779,140.822117606177926 -75.054400990401305,41.754133216892072,140.599155940115452 -75.049167023974192,41.633610697049797,140.220429653301835 -75.054044969450359,41.620152152657965,140.183822144754231 -75.051041496588937,41.608493851943287,140.144492487423122 -75.041456861275847,41.571290064024247,140.018914021551609 -74.985190227167195,41.507903883415466,139.762665032409132 -74.940722550995559,41.484977106036119,139.644548286683857 -74.913478617250703,41.477211621994691,139.591741898097098 -74.892908603994385,41.450460786825239,139.486797138117254 -74.877681020805085,41.441946230186325,139.444269361905754 -74.800122543648399,41.4320602438059,139.332117745652795 -74.756906095236786,41.428413656574307,139.275507930666208 -74.753518084124195,41.4281277774841,139.271072270348668 -74.692082369994722,41.368936488263273,139.021993160247803 -74.690720244879827,41.363170714190154,139.002546780742705 -74.695867339321126,41.359035825514454,138.994998739100993 -74.762685040558608,41.338011054886771,138.999178715981543 -74.79680281028935,41.320564422347729,138.980387658812106 -74.83101337321051,41.288814323635997,138.916978814639151 -74.839322477693912,41.278900625082052,138.894685975275934 -74.862634655546856,41.243190767163966,138.807402223348618 -74.868223637659554,41.230477196774046,138.773461692966521 -74.865312492048119,41.226470371038133,138.757843578234315 -74.86824334533236,41.210370949954765,138.710479232482612 -74.883095383728289,41.182453873630948,138.638604152016342 -74.924125990557158,41.139765136242886,138.547971968539059 -74.975295898006848,41.105531991505664,138.494604760780931 -74.970391761994748,41.097694334856179,138.464800932444632 -74.968346946278302,41.095669576848493,138.456277439370751 -74.967716643619582,41.095045456862444,138.453650062903762 -74.969346610588701,41.089417655320979,138.437697318382561 -74.981631593688491,41.079799327516774,138.420486685819924 -75.026961675541557,41.044308877448103,138.356999568641186 -75.037940887141943,41.036324087591915,138.343548575416207 -75.052753219126387,41.02876424987322,138.335507200099528 -75.070236627207066,41.020970398823394,138.329575516283512 -75.092337183279312,41.013905481810681,138.330857357941568 -75.110074592933287,41.005724643363273,138.324002505280077 -75.131536043197812,40.992715956612933,138.305938338860869 -75.136486939688851,40.975430569689642,138.256827980279922 -75.132324750081949,40.970900775929202,138.238136172294617 -75.121523941878479,40.969937368609969,138.223594961687922 -75.121395410612323,40.96992590391563,138.223421937786043 -75.121276324843024,40.964254119744112,138.205441455356777 -75.120853297989314,40.963270160542919,138.201893189921975 -75.118724109670325,40.954647504984962,138.172476845793426 -75.05349499947468,40.873679119853975,137.847769631072879 -75.05198586261541,40.867290375189981,137.826000262983143 -75.054250847055869,40.861528575439507,137.810225604102015 -75.109462498488398,40.792724737032884,137.651774570345879 -75.135358018277685,40.775396183073155,137.624663416296244 -75.150336477433413,40.776417019740691,137.643906044773757 -75.16460895267474,40.780016763806984,137.670551774092019 -75.172546178947982,40.779375722300571,137.677018560469151 -75.197492543330938,40.753262511911061,137.621174747124314 -75.204878899025829,40.693131750209837,137.438817276619375 -75.201665757414204,40.619992581126269,137.203573496080935 -75.197760502304263,40.610216988895061,137.168368769809604 -75.191815122965082,40.592979829605163,137.107283935882151 -75.191118031104267,40.590958783858525,137.100120203569531 -75.148323534922454,40.574790759665063,137.002855377271771 -75.136344215652358,40.577262763696353,136.997860046103597 -75.118246645820889,40.574850006058,136.970797051675618 -75.101279066962576,40.56945035383638,136.93546347040683 -75.069567765534671,40.543863599749116,136.820178071968257 -75.068296879959959,40.538068780350685,136.800390381366014 -75.066042433573671,40.52778924756138,136.765282084234059 -75.066805361988102,40.521136497463736,136.744935248978436 -75.071519592492351,40.456808939138746,136.54518077801913 -75.062439868738679,40.424493262197501,136.432443368248641 -75.059798723378506,40.419710468799018,136.414359834976494 -75.036497869642304,40.407955114835559,136.351888138800859 -75.025724511238636,40.405101313688164,136.331240200437605 -74.938900167537767,40.342283063385672,136.037685500457883 -74.861434996657422,40.286236263263902,135.775592537596822 -74.77164537928202,40.216563700983478,135.456478415057063 -74.759551889201163,40.202998051644833,135.400053239427507 -74.723241201682683,40.162267207453183,135.23055240791291 -74.722541087549303,40.155468478112759,135.207956433296204 -74.725116358959482,40.14898280838792,135.189852190203965 -74.72524107381183,40.148668721362704,135.188975381664932 -74.741542392822012,40.136869049631393,135.168411542661488 -74.838947793658718,40.102569599415069,135.162132191471756 -74.901177444983389,40.078809027092198,135.152352065779269 -74.975233228175142,40.050532991617189,135.140887877903879 -74.975656099214788,40.05037153067336,135.140822960063815 -75.015286626560737,40.022637094305786,135.094197740778327 -75.0569834374609,39.993456621418986,135.045173199847341 -75.07296201957169,39.982274409487722,135.026395161636174 -75.086699017074721,39.969234492128031,134.999214246869087 -75.134166014617008,39.924176195570119,134.905286253429949 -75.15487131936527,39.907808287274086,134.874914525076747 -75.185898967230415,39.883280385222378,134.829410349950194 -75.211372496788911,39.8675787967912,134.806379565037787 -75.21191985485035,39.867371885830046,134.806306062266231 -75.235974088561036,39.858278962960171,134.803086129017174 -75.272108046476006,39.851105950817825,134.819229077547789 -75.307450084673718,39.851477646830162,134.858912702649832 -75.375586743433189,39.8274360388614,134.85562514141202 -75.391121301885903,39.81821554108123,134.84282483626157 -75.415993591785821,39.80345265654109,134.822343182750046 -75.428991073468609,39.81087825578043,134.860543293878436 -75.454693976643668,39.821977605162722,134.924509338103235 -75.499798472121199,39.834976719545338,135.015869988128543 -75.540302721068812,39.839875191901591,135.076096349395812 -75.580806906029636,39.84018984521019,135.121590209193528 -75.58085755868548,39.840185918807634,135.121633204631507 -75.594040014267549,39.839164064629813,135.132826524786651 -75.594624293775624,39.839118773487719,135.13332278188318 -75.595804163949879,39.838949980180985,135.134075598791242 -75.596714350517246,39.838819768057533,135.13465638179332 -75.6356653879063,39.831827722935188,135.15496180485934 -75.642477561226983,39.830026737916569,135.156654749065638 -75.66378208113882,39.822813847360656,135.156864376738667 -75.686951614967569,39.81271805563226,135.149850371293724 -75.717930250919608,39.793662554648023,135.122575792483985 -75.740666642340102,39.774288135107376,135.085184907540679 -75.7893213490904,39.723477751007223,134.974982588551939 -75.80052567533572,39.723548655295133,134.987624193541706 -75.811030980602183,39.723572567219101,134.999343413859606 -76.014035866959887,39.723584877711588,135.225076925009489 -76.028587287196672,39.723497759716423,135.241026440635324 -76.136556907945248,39.723219679388919,135.360779042355716 -76.225166104486604,39.722991460484224,135.459349100477993 -76.234233998271066,39.722968105407894,135.469451121985912 -76.234252229754702,39.722968058451222,135.46947143226862 -76.240780418206498,39.722967959144974,135.4767996808514 -76.381062469323808,39.722965822623685,135.634616281837225 -76.381562483752248,39.722965818405335,135.635179974138737 -76.396562915155272,39.722865695814555,135.651772660203278 -76.419664583008284,39.722965496776368,135.678159026429057 -76.419764584476553,39.722865499920573,135.677949924953282 -76.492869693778474,39.722964877822385,135.760869407095015 -76.518070420036295,39.722964664440717,135.789383449591696 -76.570373925322954,39.722863225100539,135.848305940628052 -76.570459931967022,39.722863164021632,135.848403248004615 -76.712883025024198,39.722762017619552,136.009873592294753 -76.716583131424372,39.722761986097858,136.014085846953094 -76.788087190911213,39.722460392479377,136.09460876416415 -76.788088182502861,39.722460388296987,136.094609880819917 -76.807388734158891,39.722260231468873,136.115992342121899 -76.810188816030376,39.722360203553862,136.119510053656995 -76.891094134887609,39.722058523626686,136.211011226288974 -76.8985603491776,39.722058459689208,136.219555421732366 -77.000462231397435,39.721784345086611,136.335476834326982 -77.048102631889748,39.721656192212876,136.389789426699281 -77.059202952831669,39.721856088719171,136.403192519210279 -77.059902971445325,39.721756086696388,136.403676500543952 -77.217809490355165,39.721652729031085,136.585326727479696 -77.21802749659075,39.721652727146818,136.585578532889485 -77.240811148187206,39.721652530157833,136.611903254874051 -77.244311248273547,39.721652499884392,136.615948861464858 -77.460437481039705,39.721669763323298,136.866601128131151 -77.470155698711366,39.721670539312065,136.877907884307206 -77.534383532352877,39.721816973790112,136.953164704144001 -77.535770571437766,39.721785962936124,136.954682013951242 -77.673265497302609,39.722428735630722,137.117300635203719 -77.675538563013205,39.722497712960923,137.120180885307491 -77.725132974897534,39.722544276532432,137.178399795666337 -77.733633219634086,39.722744193968516,137.189000100828707 -77.744222522456568,39.722855096631221,137.20176706276834 -77.769553245046041,39.723007868192681,137.231961950659752 -78.074763922921932,39.723961138942684,137.594586992636323 -78.076798980399062,39.723948121446647,137.596953208558261 -78.100168706830331,39.723969053930929,137.624679460190237 -78.203926582122321,39.724061989228673,137.747994410805404 -78.205481627676505,39.724165971229638,137.750172452069819 -78.241366642610501,39.724143653093947,137.792730974033475 -78.24413572068309,39.724126629147278,137.795967961661518 -78.269981453266055,39.724235394781168,137.82704659178853 -78.270053455645424,39.72425839321518,137.827205567620695 -78.331750200809509,39.724333840503569,137.900894346646965 -78.338146378136983,39.724105792640295,137.907789025455713 -78.340574448104391,39.724196767324784,137.910972586832941 -78.341533474633408,39.724158760300377,137.911994394846261 -78.343555532139717,39.724183741259608,137.914483964443207 -78.343869430308033,39.724183864297196,137.91485848184675 -78.381635625998939,39.724198667203368,137.959941299632192 -78.809435737955539,39.724366324315,138.473852115683258 -78.932227112861767,39.724414438706198,138.622454144060612 -78.932228113290648,39.724414439098204,138.622455355711281 -79.393523263683832,39.722975247877216,139.179925443604589 -79.477729349897473,39.722712528424594,139.28242917265743 + + + Tennessee + + + Tennessee + 0400000US47 + 47 + 41234.896000000000640 + + -83.473234963962099,36.599015690128283,134.381367858499289 -83.277421993604946,36.599920496414747,134.108335183933377 -83.251425269474595,36.595668934892622,134.057498321868479 -83.251020258615071,36.595631940389396,134.056804652325809 -83.250054232962455,36.595560952713683,134.055208071134984 -83.029472602620956,36.595629019564889,133.746092663146555 -83.028365573655407,36.595583032021217,133.744389466941357 -82.986201550663012,36.595565004042015,133.685376851819456 -82.831543533660025,36.595498873982713,133.469406261108816 -82.696887077923904,36.595437129553254,133.281978367827833 -82.680985669542977,36.595437277225749,133.259908814914525 -82.610280858382495,36.595838914960495,133.163227559998631 -82.562177631304394,36.596540328772868,133.098987466655672 -82.560877597860625,36.596540340810549,133.097188512794673 -82.555397457958094,36.596616388097139,133.089862013235688 -82.294910400827447,36.597308041372081,132.732881070114672 -82.24436977733113,36.597442236696928,132.663873274810612 -82.227748022641251,36.597486370613524,132.641196183860302 -82.226810998444947,36.597487379176997,132.639913070015609 -82.224539939440163,36.597464401084657,132.636717475950718 -82.222807896000177,36.597557412777874,132.634653682820499 -82.212099619938797,36.597603509050217,132.620110495947301 -82.211591605567378,36.597515517707293,132.619116117246449 -82.189585028403911,36.596922746657889,132.586918546818197 -82.181833824483206,36.596671829183904,132.575439173728228 -82.17834073191824,36.596511868496243,132.570108231157064 -82.175075645230493,36.596350905758932,132.56508694589138 -82.151820044807295,36.596417116097463,132.533428722061217 -82.149661989628726,36.596462133847574,132.53062313888222 -82.147162952903699,36.596456271612354,132.527178543619812 -81.935231429065198,36.595959118137102,132.235794426873326 -81.923731439557656,36.617958226821607,132.294498842209578 -81.827826921772953,36.615961191436917,132.157198917120695 -81.647980212634451,36.613665929183568,131.905421150848269 -81.678615678080803,36.589865728083197,131.866326423361897 -81.701042587161965,36.541464716924501,131.73271297570318 -81.709043746351696,36.537959803292111,131.731685944832861 -81.701633261477127,36.516941823498094,131.650336073711514 -81.701173235181287,36.515909874472889,131.646210290491581 -81.700681204678119,36.514634936761041,131.641216465272009 -81.700526181488101,36.51325600071705,131.63632701896131 -81.698824094802603,36.510200154759048,131.62364693172276 -81.698909084452538,36.509296195000296,131.620694601908326 -81.698370033538879,36.506639320423879,131.610946083441377 -81.699050039761971,36.505815351653041,131.609072640538216 -81.701003046087507,36.502617479077088,131.600869987159967 -81.7013180488551,36.502227493922128,131.599973930045962 -81.701008006680553,36.499770608222782,131.591213528066874 -81.699344952408737,36.498973659444616,131.586250574328005 -81.69834091132924,36.497893717544208,131.581221574917436 -81.697914862111276,36.495145846114106,131.571314771659672 -81.696986812835803,36.493332936798737,131.56390006840229 -81.69836675372953,36.486491234884753,131.542543472722173 -81.716161780740251,36.4551194988437,131.460148889571428 -81.715356726759524,36.452732614601665,131.450943826697767 -81.722047954974613,36.389257054229738,131.244158994406462 -81.727016500239927,36.342123544538346,131.09039400331676 -81.732054642163789,36.342946461542915,131.100056564435363 -81.748921026400211,36.339115483984628,131.109968209639192 -81.766006487196321,36.340431269676195,131.137726151384413 -81.790792262461764,36.350082605544003,131.204383239150047 -81.794768532705049,36.362186017749863,131.251020394265652 -81.801892684674939,36.359831060675567,131.252713688649237 -81.856086799846011,36.33901751961556,131.255778761580586 -81.909219686635325,36.303772647802703,131.208317591808736 -81.919196018205284,36.288870425712609,131.171171655878425 -81.934076815959472,36.266642120187882,131.115743833594024 -81.961184008741625,36.229893556815924,131.027489497326314 -82.027723376228522,36.131988445735352,130.78426168859005 -82.08122741655059,36.107487087839147,130.774037322029471 -82.081601986611687,36.107476701495187,130.774517520330846 -82.128231607417419,36.106183722114061,130.834333329461515 -82.131731724917387,36.108183598407216,130.84600062854588 -82.139060094467681,36.121341926840024,130.901113287545741 -82.137633185069632,36.1305825149432,130.930745771154761 -82.14903476362278,36.151280460316329,131.0172109156847 -82.212339522153215,36.160775449086799,131.136962836608291 -82.223140770662795,36.158674447420275,131.144697672687471 -82.235895888376589,36.143484029614953,131.110424471087754 -82.236567892205713,36.142512068189347,131.108032117597759 -82.237503904888314,36.14169009746896,131.106516854837537 -82.238825928659111,36.140953119332302,131.105825215578079 -82.32625989860172,36.121127235713658,131.159011737443507 -82.330267974616419,36.11919128831213,131.157947049476206 -82.349513447390649,36.117693181961876,131.179485824890435 -82.362010694221581,36.112378312769366,131.178643630817533 -82.367657797950244,36.109414397779396,131.176343300379813 -82.372474903944905,36.108152411991327,131.178708862513304 -82.376650000161007,36.107373409812482,131.181835486553609 -82.41055056141397,36.085174123498554,131.152992688119411 -82.417949459804404,36.074650189209564,131.127284296788275 -82.464050878780341,36.009077147326551,130.966979774646461 -82.488504287484517,35.993402648868901,130.947328859940171 -82.488544287444199,35.993325652063696,130.947120816446841 -82.506953132362639,35.980111572219776,130.927489897236228 -82.508161594328953,35.979244124377161,130.92620135564357 -82.5136917105865,35.977433157730175,130.927701046690345 -82.558623568009125,35.956440719413123,130.918408916331828 -82.597869711677873,35.966755883789773,131.008527398109436 -82.612358194105298,35.974923373450963,131.056733580306172 -82.616158666681201,36.002073082752496,131.154985650442541 -82.603973903412367,36.041598367507447,131.273178360424936 -82.620302552326052,36.058320445862172,131.353116080164909 -82.633363012820993,36.067468903917622,131.402597707696259 -82.638263139296939,36.067568854413508,131.409777973778546 -82.684664049440542,36.047868338929042,131.407278141006827 -82.716464556576071,36.026018057192054,131.377068960107863 -82.75556527559624,36.006069621223872,131.363602242432535 -82.779725480871392,35.976558765687869,131.296516415663064 -82.831213210227133,35.934740231535358,131.225616834126413 -82.853656004326581,35.950856278241531,131.31231174711138 -82.875261603533744,35.954464912497947,131.355019154958427 -82.899608116490199,35.946868041052106,131.363251176662743 -82.899608920918112,35.946866902876202,131.363248413428664 -82.914441201575343,35.925880878414823,131.312281173653901 -82.899082217535707,35.883048008449997,131.143931744620204 -82.919458238686445,35.847238486248131,131.049824868328869 -82.96394467023471,35.796899421646003,130.939758792519569 -82.965210639417563,35.79587389826608,130.938023182563484 -82.985072968866973,35.779784025524883,130.91079293936491 -82.996906201003256,35.774902144590563,130.910732859745622 -83.101330865079802,35.776538109204118,131.064032038673759 -83.101434868248745,35.776577106428583,131.064313201233745 -83.101338865005118,35.776518110063485,131.063974694348872 -83.166016294345638,35.761738204686893,131.104876220226288 -83.24177774596572,35.728534057955549,131.09839353710413 -83.252355917836312,35.721690280415928,131.089917177334428 -83.256597956301633,35.716748472394031,131.078968006186187 -83.251803757546384,35.71112377960516,131.052820804528892 -83.255339659189744,35.697582380464922,131.011300542391837 -83.298263213873312,35.659526766739994,130.941505430266261 -83.368051706627284,35.640505015044482,130.975546143017709 -83.446914315617022,35.613580550535275,130.995531908236444 -83.480194756747849,35.585094581060162,130.945064795203507 -83.479635685816959,35.580980779518946,130.930094801820815 -83.481729702822491,35.57841188090665,130.924243663437665 -83.486639709440595,35.56998323173152,130.902236389927566 -83.499447958459626,35.564760359030998,130.90258567314595 -83.641614563031752,35.567852898986551,131.117219928652048 -83.664074167612668,35.57091554682485,131.160046954639256 -83.677385516652066,35.572066369302341,131.18314918410033 -83.758036440341769,35.565380935636369,131.276239584200084 -83.881195890551766,35.520522904631406,131.29959071520716 -83.93499858719683,35.474217589639217,131.217940398491919 -83.953799164470453,35.462542726680169,131.204937910661101 -83.954004896336627,35.462414970425776,131.204795664176345 -83.962176148471016,35.46592272865319,131.228726670145988 -83.962179142915659,35.46551774776075,131.227335289120674 -83.962177130355116,35.4646177903034,131.22423070948571 -83.96252309251453,35.461275944999421,131.213213951326907 -84.001029573939277,35.426982208225205,131.150812690146267 -84.003373595378662,35.42432931192851,131.14506372064352 -84.025879202714876,35.355680353953097,130.94074821844697 -84.036466423193531,35.352617400773624,130.945552746765316 -84.038617462988469,35.351634427388269,130.945283140987158 -84.03920445697311,35.350147492439582,130.940998424775898 -84.033573015072776,35.328315580312356,130.857347152195871 -84.033601999032342,35.327103637546301,130.853198781609535 -84.022532393552865,35.30316987627527,130.754317754879594 -84.024632368350851,35.297570122665853,130.737994307652116 -84.030155774720427,35.292836131877721,130.729644257575274 -84.056834786254186,35.269970134988711,130.689310263842344 -84.098631535282081,35.249170735949654,130.678162601776421 -84.116172002691201,35.251553459730253,130.711984897963703 -84.116403017702098,35.252226425574946,130.714652290567756 -84.122274165970481,35.252432361241588,130.723926258273423 -84.126039247986213,35.251618364982676,130.726597934961319 -84.204005260101681,35.25755935734734,130.860960272140801 -84.212944623885392,35.267864783876291,130.909680495038629 -84.22484495983997,35.270864530359148,130.937445102259517 -84.228945044650402,35.269664549244297,130.939285044558346 -84.291368002096775,35.22735998143223,130.884181731380522 -84.29344879213609,35.208465862339814,130.821796983480453 -84.309563624622129,35.094967130583413,130.451692753471434 -84.309702622383,35.094555148990175,130.450465417467058 -84.322994518182284,34.990207022135479,130.106977402232587 -84.395062286978586,34.989866369831212,130.211768804118037 -84.396030310266752,34.989828362665996,130.213061102665961 -84.510182115674866,34.989830301306753,130.381276734173298 -84.511016135838972,34.989807294647413,130.382427179254591 -84.622615878512249,34.990125239273247,130.548388175666332 -84.72856947002019,34.989815264346959,130.70419360883534 -84.732157558796061,34.989883227522171,130.709748959168792 -84.776989109089087,34.989594437114455,130.775239722803235 -84.809264438448011,34.989386529588181,130.822428152896464 -84.81032146397682,34.989363520790945,130.823917862027884 -84.811614431934018,34.989401680814169,130.825970534235239 -84.811879502710312,34.989409503983211,130.826391360722482 -84.818416664457345,34.989547436100096,130.836579274386168 -84.821615744885278,34.989707398432451,130.841886667534709 -84.825147828387145,34.989501375234113,130.846417425200343 -84.832937022910755,34.98979828795477,130.859020544216037 -84.859170660490435,34.989540054395583,130.89711002074182 -84.86245274131079,34.989585021450367,130.902145381085575 -84.940446647716897,34.989709283314809,131.018623873591423 -84.945560771812865,34.989657237766878,131.026059216819704 -84.956764044740652,34.989623134125573,131.04262787848711 -84.978114937860482,34.989461736468336,131.073880404233932 -84.981001633533651,34.989439915082883,131.078106949105859 -85.046195212113886,34.98865133956523,131.172604728490114 -85.046326215640079,34.988675337176851,131.172883535735309 -85.181699500248257,34.987866099592594,131.372416984289885 -85.187051629306097,34.987786052902941,131.380151154473424 -85.217701370103967,34.987465778768865,131.424938755109906 -85.219001401707445,34.987465766483517,131.426886183209717 -85.2217014659483,34.98736574578291,131.430584283545613 -85.223001496154666,34.9872657383128,131.432185153476894 -85.231501702765769,34.987265657970774,131.44492076896131 -85.236702829174988,34.98726560880376,131.45271459966898 -85.256103296415915,34.986965439811662,131.480753554031253 -85.266203540401392,34.986865349095915,131.495550733990967 -85.277004801377714,34.986765251727526,131.511402598582208 -85.278704842669597,34.986765235642096,131.513952466659248 -85.295649249645535,34.986441090896619,131.538249173201621 -85.302637416867043,34.986265033226942,131.548125392757356 -85.30660651323366,34.986264995651425,131.55408198852092 -85.309406579816113,34.986164973959653,131.557937894947827 -85.365069916648764,34.985164494829895,131.638067132793367 -85.475625152043719,34.985760525096929,131.806457307189703 -85.606321776976955,34.986465139358486,132.006020769476891 -85.825573117473411,34.989926878390406,132.349881938658655 -85.829886221727619,34.989949835994004,132.356505246832967 -85.865098548535641,34.990163508267436,132.410690570250154 -86.312447849740948,34.992878051605224,133.102441150695086 -86.31993517365602,34.992926944879741,133.114083869382739 -86.398378912317739,34.99343919282029,133.236167528666556 -86.435103781349099,34.992863864835151,133.290580987930298 -86.46897558439494,34.99247055545078,133.341278063133359 -86.529664032052594,34.992454967176101,133.434575541876256 -86.557043689046708,34.992748686959807,133.477739590220153 -86.572397055553807,34.992788535812977,133.501524513587356 -86.590142481064234,34.992974354283497,133.529505232349038 -86.601219745575321,34.99301724447924,133.546725027263165 -86.642393733262324,34.993516819630443,133.611934267915785 -86.660792171948586,34.993568637991103,133.640499852597713 -86.672035442503798,34.993776518412034,133.658567574806511 -86.675542525969632,34.993777484204927,133.663984450511634 -86.67790858326012,34.993846457811948,133.667874178849161 -86.678798604436821,34.993846449142431,133.669248113408685 -86.784813134148351,34.993700449735627,133.832581562921405 -86.784833123234719,34.993700422207127,133.832612396217883 -86.821842999836676,34.993539068610993,133.88933527469635 -86.837492371334136,34.993538915711198,133.913566949777305 -86.837556372853285,34.993538915085779,133.913666065782309 -86.847652613864199,34.993634811756522,133.929633152671158 -86.850980693769003,34.993698776120496,133.935008337721229 -86.863333987361258,34.993730653804235,133.95425676740706 -86.968309511447103,34.996173507683586,134.125474538654089 -86.971425587375762,34.996319470060257,134.130814214237034 -86.973802644609265,34.996383443659269,134.134725034236908 -86.975601685819839,34.99628643074093,134.137185596860945 -87.001197300781513,34.996894150319179,134.179029976017773 -87.012364565767683,34.996935038824169,134.196522756479681 -87.211954339706281,35.000794889817399,134.520543219521642 -87.217878481326181,35.00091882545199,134.530211087316275 -87.225248878154119,35.001097403294231,134.542324244044721 -87.23173981330801,35.001254672591422,134.552993360906839 -87.271210757537716,35.002160239565484,134.617724526673555 -87.300382452929455,35.002684926358,134.665099600329995 -87.35044964347648,35.003431395895134,134.745940942317247 -87.360479882043521,35.003592289011785,134.762184306979179 -87.382270399403652,35.003887059404683,134.797295557335019 -87.392513644257107,35.004142945729427,134.814207394607365 -87.418600262449985,35.004437673505372,134.856068673543632 -87.422743360071195,35.00444763205153,134.862592811696231 -87.429813528091756,35.00456355648808,134.874066208489239 -87.607235956169902,35.005110200932201,135.154395160265267 -87.66532906884072,35.005289186432954,135.246391520835459 -87.67261123971376,35.005303113392984,135.257901735603809 -87.6980408401636,35.005617845285677,135.299018353223801 -87.701749929046457,35.005753801780848,135.305325033143163 -87.70352797006403,35.005710786197518,135.307978514581919 -87.710698140122048,35.005854707881106,135.319765172898769 -87.760098305828009,35.006476186065498,135.399748062714934 -87.768810510766116,35.006548095825487,135.41373260691762 -87.77479465318558,35.006711028298383,135.423727526329458 -87.853096494607996,35.007420213425505,135.549746759235859 -87.854621529068041,35.007340202118662,135.551882484927773 -87.854738531286671,35.007305202658785,135.551947752013803 -87.873836977964586,35.007335010699158,135.58222487475723 -87.87895309661063,35.0072759625345,135.59010848030448 -87.879180101264936,35.00723196241573,135.590316960588098 -87.986129609082042,35.008019046403874,135.76220549736172 -88.183668230090177,35.009472805924055,136.080594268627465 -88.201282460463574,34.997395219245689,136.067418619059026 -88.255044708027697,34.997313683334283,136.152689452283084 -88.259330806201689,34.997223644669781,136.159206498414278 -88.364753115847122,34.997349188450244,136.327655017375946 -88.381730647228935,34.997369406206289,136.354813881218433 -88.471025721334001,34.997810484511497,136.498941737227142 -88.471101722809436,34.997791484674522,136.498998540453613 -88.787844020899257,34.997007318016301,137.004185703583062 -88.824281560278209,34.996911617739968,137.062477234750986 -89.018365406783076,34.996401867847403,137.373639392666519 -89.140237095202281,34.996081775340777,137.569606939330697 -89.14037609803654,34.996058775050322,137.569753929972649 -89.199529453802569,34.996235161790416,137.666157229803503 -89.353924210047424,34.996169308849254,137.916484192945063 -89.494987190508212,34.996109138305727,138.145816481672227 -89.512401592631292,34.996502939848305,138.175526864826679 -89.645533625485072,34.997039542470446,138.394582364708185 -89.725577061689748,34.996508332047789,138.523651101626456 -89.796442030600204,34.996038033777396,138.638079294003546 -89.849744235087115,34.995937487417187,138.725102188065648 -89.884622024681718,34.99600512304896,138.782540909945965 -89.894659252980873,34.996100014429317,138.799332135356963 -90.310563639250063,34.997433625140289,139.488916722126305 -90.31114386890205,35.011488924811047,139.53721115924418 -90.296863016405396,35.041830576094931,139.615735914558172 -90.195124061989347,35.063383574973145,139.520350913517177 -90.175859478239957,35.118417065608028,139.673636161722243 -90.16132333862366,35.130564619697807,139.690508055500686 -90.144059046372718,35.136825491994301,139.683120684698224 -90.110657042905231,35.120626637249565,139.573741378262639 -90.101856810472327,35.118426837227112,139.551872725598514 -90.091873609946148,35.12002286280191,139.540819059126079 -90.084683499980187,35.123405771371871,139.540366940200329 -90.066655340582443,35.13942617162057,139.564570091664791 -90.065875368241706,35.142356035739773,139.573132108896971 -90.074618498716035,35.212735653463355,139.823704450391233 -90.075526788982955,35.220047120278807,139.849707308225334 -90.078674971240019,35.22720973607975,139.878883552737534 -90.099212815776355,35.251712320015805,139.994689032435417 -90.10635904413185,35.256017034266669,140.020837193354964 -90.117759324955912,35.257516841466085,140.044580540619791 -90.141660810225218,35.254017762806875,140.072131965309381 -90.153361131907943,35.257717458932902,140.103743101470172 -90.160132387290545,35.264305065104502,140.136917578056455 -90.167861748821352,35.276315395527625,140.189802255481482 -90.170138915682543,35.283724008670312,140.218323205597699 -90.165080021604751,35.297841370217014,140.257212921045721 -90.160180981519616,35.302363200157814,140.264280071482062 -90.154661887318113,35.304314162499033,140.261735490523279 -90.116160037763564,35.305613502416428,140.202860615216196 -90.087958798074737,35.37165873810082,140.377219374291599 -90.090879556680406,35.381565135548463,140.415065385401249 -90.094856953182372,35.395055353329475,140.466586555354297 -90.136778640690665,35.37839072714884,140.479740177281201 -90.144901794253428,35.376467735809804,140.486652373336256 -90.167515305392996,35.376467498313822,140.52376292552799 -90.179610693792867,35.383814012244528,140.568118952214718 -90.180534763277237,35.386915850980188,140.57997874263674 -90.170272106208543,35.423573168853395,140.68530238699168 -90.153655875217396,35.438508358789981,140.707790388725698 -90.108992584655553,35.47865312768301,140.768222883343697 -90.075688760715025,35.474236693072328,140.699001133441925 -90.073422681622404,35.472470802919553,140.68941470887512 -90.069066511794574,35.467943069290634,140.667213588953018 -90.060336180738489,35.459608330003341,140.625175345689058 -90.048947664026528,35.460974971357111,140.611089549958706 -90.03528156826907,35.470540793521963,140.620583362877369 -90.036243995065178,35.482423708907419,140.661713223904371 -90.041013162482272,35.549756383095719,140.893392705358565 -90.034207093073988,35.555155192351556,140.900204045698047 -90.029889023555739,35.556964149897368,140.899157363921404 -90.018580778573337,35.557711232609009,140.883165911771357 -89.958613986574932,35.530400190401494,140.694485854357481 -89.934838518749302,35.535015715798046,140.671037041582167 -89.911063050660204,35.539631241172366,140.647607250139117 -89.886199330976083,35.656818818504036,140.996188030578196 -89.891777415437929,35.654119890495551,140.996319949626923 -89.907414751709325,35.652856787078811,141.017589843831956 -89.924017195376578,35.657004411396905,141.058372970670462 -89.938651693361706,35.667421752769066,141.116726899519563 -89.957022506035486,35.692330353369741,141.229136674664915 -89.960152104005118,35.725541713892376,141.344118047505617 -89.957524195781488,35.735093279889668,141.371423151344061 -89.951548140725521,35.74020009616121,141.378578410483897 -89.91126555446084,35.761102511636018,141.382131195627153 -89.906807447493748,35.760769574765959,141.373781785368919 -89.890291935727319,35.752265159719677,141.318819393403828 -89.866899338831203,35.748284598658927,141.267636069096625 -89.822483485626876,35.758423577284134,141.229018211364746 -89.705140810333333,35.82198674887961,141.248861974105239 -89.702310871672665,35.82993239610844,141.270525379106402 -89.704149007898891,35.835858091485278,141.29306919965893 -89.710527229601212,35.840615795281096,141.319101640023291 -89.730783832198526,35.849336162085017,141.380678350105882 -89.750691372729136,35.854658696010077,141.430477384477854 -89.770680967300166,35.863261071158362,141.49123190715909 -89.773735093592592,35.866800868608991,141.507853464223444 -89.774832223842679,35.873399539580717,141.531389445997775 -89.772994309699968,35.881426172923447,141.554874545894563 -89.766957356026282,35.893000680130996,141.583247251808643 -89.757304222948704,35.898518516832326,141.585801837034523 -89.734877834854544,35.906400374862073,141.57547798845917 -89.716201431474616,35.907948497641335,141.550366276875138 -89.689407668915408,35.898648227180409,141.476385591551661 -89.689205528844084,35.907085985035692,141.503870896995068 -89.688191450797262,35.949415802491146,141.641658553853631 -89.721238639108776,35.976318162917018,141.783577737398446 -89.734364356394238,36.002304778400699,141.890217774547637 -89.708200761932304,36.002678037322895,141.8491738922894 -89.691574762435508,36.026531070787208,141.900698932819068 -89.688522840064394,36.035743662079852,141.926029594615102 -89.685708058923808,36.053413846346345,141.97950043156743 -89.625503588579548,36.110318764146619,142.069112913683057 -89.603204249541292,36.121162482615695,142.068753355182707 -89.595268190918432,36.128882198256633,142.081281394697726 -89.592873407789611,36.14578741721202,142.132817630656064 -89.59566565507123,36.157147845941367,142.174517504870892 -89.608273198956667,36.172868962965701,142.246268182061613 -89.619497599312766,36.181655425254853,142.29308012034744 -89.630721945319735,36.187071048165592,142.328858437016606 -89.701089585352165,36.250069301296108,142.647970778867602 -89.692580449280683,36.253764216042207,142.646332612261176 -89.679318082255662,36.249969537609033,142.612601034343243 -89.603644173107384,36.239792825767758,142.457659809850156 -89.590830893883307,36.240802913749583,142.440367271192372 -89.542889929297615,36.249578005221828,142.392037346027792 -89.536013846253283,36.254262855478906,142.396305807866156 -89.536798154951711,36.27222699356966,142.45623779669404 -89.540756356884046,36.279053627294559,142.484878095798194 -89.546066529575754,36.282143424175871,142.503485777415335 -89.555558704977486,36.279436451966994,142.50988388992846 -89.579762435054946,36.290001693096805,142.583219135180116 -89.61309054138016,36.310771352632891,142.704479712992907 -89.621526962170208,36.324688602330042,142.763392647728324 -89.621072057956837,36.331228296866193,142.78397146705538 -89.617113072860846,36.337767028806887,142.798916715197265 -89.611961024746066,36.342123876994684,142.804837223142385 -89.606939937936716,36.343915845453239,142.802613613195717 -89.582907384828758,36.344039095349544,142.764444818720222 -89.561709820110806,36.339428539442991,142.715415237471461 -89.546276448189033,36.338491747955189,142.687609896995127 -89.533092182961624,36.34092877255307,142.67441276088357 -89.5202700383402,36.350282465453638,142.684342110529542 -89.514448087173022,36.36157899204759,142.711817701347172 -89.510828249943017,36.376746312115323,142.755417903885245 -89.520773116005387,36.477095460903705,143.097636134363711 -89.523946285724662,36.482981149166747,143.121821987442672 -89.5403729426409,36.499876176440772,143.202936792746186 -89.499307985887313,36.499562629229899,143.136235265061259 -89.493808856572713,36.499450693139273,143.127079741097987 -89.486377682924712,36.499367776267825,143.114930734038353 -89.494766566995793,36.480376583168862,143.066690139472485 -89.494469420031052,36.471800991238304,143.038364956155419 -89.48748611935865,36.463297467217984,142.999573128297925 -89.472988707979141,36.458678839744344,142.961382322013378 -89.46170646501669,36.459817906049715,142.947045623324811 -89.449738289943141,36.466097736882809,142.948322431184351 -89.43058113036092,36.483552116879451,142.974421083927155 -89.418563131564511,36.500709435395983,143.010949219577014 -89.405182822696645,36.500817572731137,142.989940721541643 -89.3830613240128,36.501738764703646,142.95763026829809 -89.381354290140536,36.502092766173831,142.956056407652795 -89.357861773378971,36.503871932190414,142.924362479709089 -89.347324153618302,36.504886745207322,142.910855854861438 -89.34732154498758,36.504886996428432,142.910852508619428 -89.283565120598652,36.508459505649881,142.820867713540792 -89.280358041559964,36.508188552481471,142.814880431629717 -89.212674451435475,36.507308312386975,142.704310053959489 -89.16469331534708,36.506204873105212,142.624447090551257 -89.164488310502847,36.50620087546617,142.624108338728547 -89.121068283687535,36.50532637663094,142.552297086454928 -89.118800230060032,36.505282402718436,142.548553032800555 -89.091408587442984,36.505071702616057,142.504389373585582 -89.073380164267647,36.504928900112958,142.475320526398718 -89.060132853451364,36.504837044577158,142.45400925539434 -89.035910284552628,36.504644309804192,142.414974370039999 -89.011699714722781,36.504390577657595,142.375776990316808 -89.008085629834383,36.504364617071175,142.369965961202979 -89.001323470951917,36.504313690919922,142.359086549840868 -88.965730631571745,36.503872087639671,142.30127926915884 -88.875982535087829,36.504128022442522,142.160140839405358 -88.836122409473347,36.504593621828164,142.098679648712277 -88.835882603086901,36.504596422965058,142.098310030996799 -88.8285575859571,36.504534933525079,142.086541458964348 -88.828268423577839,36.504532506167749,142.086076916195452 -88.81802137080463,36.50449785921483,142.069783840328455 -88.800849779204569,36.504439799222922,142.042487483471632 -88.74877755874499,36.504517343451759,141.960592023096979 -88.716508798371592,36.504345690762271,141.909165794029832 -88.662385520036267,36.503927278957867,141.82255314104259 -88.578533542927062,36.503625172823249,141.68966490123421 -88.546441785383365,36.50349951502357,141.638828013092279 -88.517676101668542,36.503115834305007,141.59240076225251 -88.517594785725493,36.503117321703812,141.592277953401208 -88.513519004947355,36.503191874260764,141.586122612468898 -88.513168995913801,36.503142880224793,141.585413162596524 -88.490458454485946,36.502754136186304,141.548498507589102 -88.490323665947344,36.502753813725498,141.548285943455994 -88.473812061442459,36.502714312231205,141.52225080691278 -88.453790586839006,36.502558528958687,141.490339786745608 -88.451408534334334,36.502787543123098,141.487352576106787 -88.417606731389327,36.502442912651013,141.433240446262062 -88.33204370735146,36.502218816607957,141.298534127883613 -88.327139590696447,36.502170870020819,141.290705134160817 -88.322038469328589,36.50211992562442,141.282558880746365 -88.054530191440477,36.498820938763771,140.854375695809722 -88.054443079020871,36.498819864466704,140.854236601851881 -88.040718964648761,36.512098385202385,140.876361200585961 -88.039059980072622,36.515540241320352,140.88504845276475 -88.033727280697903,36.542351042350255,140.964493734762073 -88.036863691435499,36.563424024577174,141.038286413997412 -88.046366575732662,36.604625001264054,141.187678187154233 -88.056844349584651,36.637394363123292,141.310915085487068 -88.069449034818433,36.661430111131267,141.408881122246385 -88.07177338510381,36.679800230870178,141.47236147057265 -88.013031969896403,36.678707893774288,141.377615203149617 -87.850802890101363,36.665386200467601,141.082839541137218 -87.85443949034692,36.634933581058974,140.989029025658965 -87.695417657845951,36.638526304362401,140.755048180930316 -87.642380500302806,36.639724552753677,140.677183765918016 -87.642376398781678,36.639724610745539,140.677177633158863 -87.566156692146791,36.640802289367826,140.563322436995804 -87.564280647194906,36.640802308716403,140.560435556806624 -87.43773463787187,36.642437536257916,140.371299142017961 -87.426234366486668,36.642737640617916,140.354631101712584 -87.415534109514326,36.642737750668992,140.338212231174111 -87.349019517387873,36.643131415987774,140.237514455802739 -87.345354430374542,36.643201450376495,140.232128083705902 -87.337202768636431,36.643234203514197,140.219746508635581 -87.282727927826301,36.643453081483045,140.137056219391525 -87.27961985234262,36.643410115359281,140.132159273140132 -87.248876114155763,36.643533424876814,140.085533536039293 -87.232257714677104,36.643580593011286,140.060278236865997 -87.231750702575582,36.643587597881599,140.05952609796077 -87.116201118093343,36.64410772416926,139.884786670096219 -87.116193924934905,36.644107756547903,139.884775805287063 -87.062060006821795,36.645106010075352,139.805527751334012 -86.907795948605852,36.647950704696882,139.580194183625281 -86.907235935786133,36.64799770822065,139.57949797436595 -86.855479691496981,36.648580207972408,139.502841973677278 -86.834366184997705,36.64890640758567,139.471885522827506 -86.819615834196526,36.649335537664818,139.450928121805191 -86.817396781703451,36.649418556375245,139.44783652946353 -86.814247704189299,36.649343591856649,139.442816013470292 -86.764504331096418,36.650604207293988,139.371585763059556 -86.760129413113901,36.650715078101967,139.365324785932899 -86.607599756154144,36.653805481413876,139.144863822497427 -86.606247723552855,36.653823494266824,139.142882024869323 -86.565456681608367,36.635221589455689,139.020103894174099 -86.565347438101355,36.635171771230013,139.019775064662099 -86.474699513984589,36.653370845056081,138.94307058583945 -86.474615512015305,36.653375845672912,138.942960575222969 -86.473392483564012,36.653462853996722,138.941405675373971 -86.469699394776399,36.653540887670523,138.936102659441531 -86.412588450969466,36.65225003840375,138.84592376369983 -86.334250042950558,36.650479394592658,138.722383556887507 -86.223347210587647,36.642593873959804,138.530061010271311 -86.220277134464808,36.642526907881191,138.525240931659937 -86.217606065593799,36.642297945278031,138.520484508015215 -86.217379058990232,36.642229950698386,138.519920193590224 -86.206664051987801,36.641486381874756,138.501418710686266 -86.206054769836385,36.641444100687274,138.500366765074432 -86.198768585743338,36.641066191276551,138.488209030590951 -86.083136669300757,36.63555260498272,138.297064816579223 -86.081858639398874,36.63564461352879,138.295459289103746 -86.039557554143556,36.632509181571166,138.221937520429492 -86.034330419946428,36.632118251895996,138.212844341993332 -86.033961410189278,36.632072257709659,138.212141674943268 -85.977611237023169,36.630106100434503,138.121590688824654 -85.789830282165724,36.623554085781493,137.820510992780328 -85.789798266649413,36.623553265705603,137.820460733026266 -85.553196356537768,36.617492713279951,137.449852204881608 -85.552662342514438,36.617437721099208,137.448880738578737 -85.509783272664578,36.616731177852124,137.383194007910788 -85.472515372312955,36.618091483577587,137.33269333280623 -85.437594579742708,36.619905515260243,137.287202131003141 -85.297163208625634,36.627200506340358,137.104665952734649 -85.277461697046519,36.628223940817001,137.07910914812237 -85.277456731373732,36.628223829852374,137.079101482406259 -85.097296163475207,36.624197895809822,136.801539049483836 -85.08758291341978,36.623628017224036,136.785430337302387 -84.976053412016697,36.616043697628051,136.597200189717114 -84.860900037579881,36.608212941702661,136.403222269378603 -84.860921037098521,36.608145944575064,136.403029936365783 -84.786559364317853,36.605093200447442,136.28463719598949 -84.786501134654884,36.605090809964686,136.284544551745057 -84.779615431755857,36.604941204737791,136.274032988585532 -84.262479837694528,36.593705404033464,135.488719560205936 -84.228441114366504,36.593409412940183,135.43879774119705 -83.98898191353851,36.591327136636309,135.088625478558242 -83.988751988616499,36.591321707748612,135.088278637267649 -83.931807393648285,36.589977156277484,135.002428134903312 -83.691846297266636,36.584311289667291,134.64175568241626 -83.678246157126182,36.598311779197367,134.669357724487782 -83.676545175842534,36.602543602069261,134.681120347231627 -83.671273041953469,36.602526652926613,134.673580756410956 -83.671260041141778,36.602493654557144,134.673451760783792 -83.473234963962099,36.599015690128283,134.381367858499289 + + + Virginia + + + Virginia + 0400000US51 + 51 + 39490.086000000002969 + + -75.24319023896706,38.028949508578592,128.775283266790211 -75.297795938783267,37.96078594950324,128.606283992528915 -75.320260119738791,37.924228315128317,128.507938957773149 -75.335221181976522,37.895222422578378,128.426653328351676 -75.350263355099415,37.874889163856892,128.374751656316221 -75.359961518087687,37.865889468253243,128.355185768567026 -75.367755680759245,37.861192605678625,128.348041607998312 -75.375567902759045,37.861200543917349,128.356838634237647 -75.39293449968045,37.869484056865907,128.404364396817982 -75.401466831273282,37.876610688272429,128.438052536919713 -75.429883643761926,37.877050445859389,128.47147723659873 -75.438795859415038,37.874069501722211,128.471419751644135 -75.453609169373834,37.865255757873101,128.458280033431947 -75.468879449948744,37.853074153097552,128.434268027544022 -75.488413763466795,37.833882811851112,128.391343857161701 -75.515850127974872,37.800896993801544,128.310625184327364 -75.549011356908252,37.744133142404714,128.15574714820832 -75.557797380958064,37.726160837194932,128.104737400077283 -75.573393536881795,37.703316686106888,128.044885421171784 -75.582262563382244,37.68534538129169,127.993932590819895 -75.587065413053594,37.662406320701969,127.921481687575579 -75.604149392416033,37.621997909438278,127.803540795110166 -75.611737428346231,37.607664461528245,127.76341472286731 -75.613166216156174,37.587358317585071,127.695966337807477 -75.609052005764795,37.579774674021039,127.665492178872228 -75.596644638581594,37.578413829804987,127.646780116483569 -75.594972504974194,37.571455140368307,127.621198544278741 -75.607648707288391,37.558927576259237,127.592939568683505 -75.634299024624667,37.523898865481684,127.503911854699254 -75.667107329745463,37.473884750652758,127.370743532665074 -75.666428843353771,37.469080148823203,127.353582511655986 -75.665240113497262,37.460662332555657,127.323511063121259 -75.662718994571918,37.456789518556889,127.307425593957305 -75.666885916346089,37.440971164775803,127.258185682818294 -75.673576989899317,37.431677511267864,127.234082467854023 -75.698843397013505,37.407064370221967,127.178837632760406 -75.721668641914931,37.374893574454795,127.094965160824358 -75.728264669672981,37.362111072803188,127.058801555074751 -75.726563598044137,37.360181169261416,127.050259383395314 -75.727620525549483,37.351892517865679,127.023123083636165 -75.736758601196868,37.337192079305972,126.983284676447511 -75.766331064504001,37.307363132847357,126.915038056671619 -75.779747337536918,37.298943390622213,126.901576053351164 -75.781696392825481,37.298989373316473,126.903965727426112 -75.785564547669338,37.302743180946784,126.921246675774455 -75.792843747265522,37.302356140403276,126.928260391578078 -75.799378877687275,37.298052274708077,126.921015496365726 -75.791760416603282,37.277975201225416,126.843536901287735 -75.800273354982238,37.253548189439989,126.769607501104474 -75.796811075267186,37.238691858754379,126.714715087786317 -75.791315851160562,37.232995148204019,126.688882076181471 -75.790858800388804,37.229904285441911,126.677759498357773 -75.791832790041823,37.226836410463399,126.668355979956686 -75.805375960490707,37.209782041896389,126.625396279618144 -75.801397763308074,37.202800375265774,126.596878070384264 -75.801684725584849,37.199068534539741,126.584402097389102 -75.831271227416764,37.172372458419026,126.526743596419692 -75.878601123850387,37.137377603945595,126.460990099236369 -75.887300250672638,37.127858948624635,126.438301682472229 -75.89822945787617,37.11981121206356,126.423235175199807 -75.90766567475896,37.115967304795461,126.420897866599262 -75.913239963625685,37.116928183129815,126.430624878965318 -75.914153925561621,37.121623008265402,126.447811899706721 -75.926452438241526,37.135374314716849,126.509232443757355 -75.9434718104838,37.126915547939312,126.49980191513896 -75.94680484690582,37.122287722615944,126.487747989594936 -75.963529277977429,37.119308720333315,126.496813774108887 -75.971363510170477,37.120381612065891,126.509544279426336 -75.970937624173786,37.130634170299771,126.544270737096667 -75.979017200194065,37.159109871074733,126.651365541853011 -75.999582162184197,37.190509347616661,126.7828269302845 -76.007029445391424,37.196580025782097,126.812241244129837 -76.014006770857378,37.2071355134158,126.856483249925077 -76.014713962275508,37.221031906062684,126.904922929592431 -76.011471023725903,37.233347398606753,126.9433713555336 -76.014962168434266,37.237149206487381,126.960423395037651 -76.026689769219189,37.259174160962324,127.049376456066966 -76.024600853969886,37.270737677520643,127.086542624048889 -76.01644377306333,37.28264022764494,127.117857071571052 -76.024412097773507,37.290832810596932,127.155076405964792 -76.019582319288787,37.319584607291262,127.247816562652588 -76.015188371588934,37.333707032690803,127.291015034541488 -75.998715155876894,37.353502309491404,127.339658678509295 -75.988059066081107,37.370310669480325,127.384787694551051 -75.980907314277175,37.406369173396847,127.499623795971274 -75.984042541733075,37.417562666881636,127.54141276050359 -75.982561728539835,37.435875890974856,127.602154425345361 -75.97742871872417,37.446637469062502,127.632934311404824 -75.96181456343389,37.46932061836759,127.692279642447829 -75.964433734307747,37.477110263070223,127.721822757273912 -75.964263809918819,37.48354298823763,127.743535444140434 -75.959903916814966,37.501890235449856,127.800994743593037 -75.950911936141068,37.52363237437558,127.864663396030664 -75.941255823729463,37.536337906465157,127.896806035190821 -75.938602560394273,37.551407657465035,127.945012285374105 -75.938236953622109,37.553484195870958,127.951653521507978 -75.942091146095734,37.560190878032998,127.97887478210032 -75.942120214659241,37.565593646469317,127.997273365035653 -75.925694208909078,37.601968220653717,128.10203311778605 -75.910524063864145,37.62442338141949,128.160905499011278 -75.877996624779371,37.662392018775186,128.252536770887673 -75.869418478355925,37.669974763448494,128.268452053889632 -75.870460584874408,37.676106493619997,128.29043725412339 -75.869292718748923,37.689358937807405,128.334035256877542 -75.860199657526664,37.704860349439265,128.376190450042486 -75.846516333025932,37.709742250248013,128.377113732509315 -75.838622173171842,37.714734100371011,128.385020544752479 -75.83171013559182,37.727234623012563,128.419486288912594 -75.83237523254239,37.733438353636679,128.44125790707767 -75.82885921265752,37.739734113642307,128.458570269867778 -75.825747171262464,37.743418981584249,128.467500315047801 -75.813091912685479,37.751249749046735,128.479591069743037 -75.803977818742723,37.764211270276896,128.513086535967886 -75.813062253571061,37.778335597626146,128.571233235299587 -75.819062613905388,37.79344390792707,128.629177475348115 -75.794336076869612,37.806238561280892,128.644295776262879 -75.785535857606305,37.808571532227475,128.642171625047922 -75.771543433977854,37.806347737892857,128.61873596534133 -75.744032682060507,37.808401869298528,128.594410926103592 -75.736815386786006,37.818306202805275,128.619706234894693 -75.724159289893862,37.821869455622057,128.617382858879864 -75.717525185133965,37.82844122952686,128.632071975618601 -75.715422265497281,37.839521776334692,128.667142940685153 -75.710049238736829,37.849444398368846,128.694581960327923 -75.703849087981553,37.851403364581635,128.69416893646121 -75.690771871311327,37.863560953288911,128.720419745892286 -75.686227888228416,37.875084501307988,128.754196505993605 -75.688519117442311,37.888082932802526,128.80068916361779 -75.710561922516646,37.902364153232575,128.873881692998111 -75.721426246737977,37.90366801165893,128.890600194223225 -75.725441338378914,37.901926053428404,128.889274911023676 -75.72763536396377,37.899041158056058,128.882027167826891 -75.753985101231422,37.898346977737269,128.909584393724799 -75.759733276763583,37.899356889224855,128.919518216513097 -75.760772327963295,37.901074808241802,128.926494891755283 -75.75863132542375,37.905653631518994,128.939513869583607 -75.713001441069295,37.937822634360053,128.996267166920006 -75.705254131846942,37.93075099490882,128.963640133850276 -75.694877854943499,37.932103020293766,128.956445649266243 -75.670646427102611,37.952536349627294,128.997918733395636 -75.66189142159584,37.960913680571174,129.016256497241557 -75.647442215213232,37.974739575370691,129.046519254334271 -75.647223781702863,37.974948586071733,129.04697673022747 -75.646186355730379,37.975941259446977,129.049149452708662 -75.646031018661034,37.976089895568585,129.049474781379104 -75.645599641536521,37.976502663898899,129.050378227606416 -75.645526408627745,37.976572737678516,129.050531599670649 -75.64548022421242,37.976616929785393,129.050628325901926 -75.640720952589106,37.981170895434595,129.060595674440265 -75.636437238593004,37.985269818131044,129.069566858001053 -75.631156452025508,37.990322801602005,129.080625898204744 -75.627063597697259,37.994239097990793,129.089196966961026 -75.625275690648081,37.995949878140451,129.092941061593592 -75.436885541153543,38.01202169409126,128.934983127750456 -75.42973934510205,38.012593726485889,128.928889928385615 -75.399767522956353,38.015016861228538,128.903435478918254 -75.378779126384217,38.01688446278542,128.886205446906388 -75.264703567248858,38.027035197919567,128.792838086374104 -75.263012650428266,38.027185660002139,128.791457690298557 -75.261560056550735,38.027314915502103,128.790271936915815 -75.257000944116086,38.027720596925988,128.78655082732439 -75.251282046005628,38.028229479023352,128.781884178519249 -75.24321987874491,38.02894687115581,128.77530744113028 -75.24319023896706,38.028949508578592,128.775283266790211-75.97454956386737,37.837559793646406,128.955721992067993 -75.972647447990767,37.832671016402379,128.937040003947914 -75.978243540961216,37.827564188446949,128.926196307875216 -75.98310060134925,37.807969711697247,128.86556906811893 -75.988243557334144,37.806660996341066,128.867033897899091 -75.999242965609099,37.814369580784678,128.905666134320199 -76.002059329104853,37.836689610322992,128.984260046854615 -76.000601456742103,37.849940059590125,129.027315945364535 -75.997802406058582,37.852161987730916,129.031611297279596 -75.99349926510736,37.850631087163748,129.021521250717342 -75.988961037643264,37.842827454683622,128.989990197122097 -75.983040821786176,37.83899566472742,128.970282117836177 -75.97454956386737,37.837559793646406,128.955721992067993-75.9956832798931,37.955238667396735,129.376604388467968 -75.994849639181822,37.955226645493539,129.375611424446106 -76.004074829561787,37.949734803690184,129.367665593512356 -76.018537073816773,37.936899230604254,129.340982872061431 -76.033436236670127,37.91674696407393,129.290153150446713 -76.036747509387141,37.93074634473404,129.34109581913799 -76.047476127393878,37.955323218517989,129.436112597584724 -76.046506904631087,37.955406142277724,129.435282555408776 -76.042636996005797,37.955737239919358,129.431968713179231 -76.042347987918504,37.955743241989353,129.431658235378563 -76.038972195160639,37.955638231968258,129.427442518994212 -76.03106766474022,37.955392347519194,129.417572754435241 -76.030408647659669,37.955512347740857,129.417222872376442 -76.030350918414669,37.955513182534474,129.417159653268754 -76.023270082132413,37.955615574951167,129.409406314603984 -76.022659430151123,37.955624405282229,129.40873774792999 -76.021877407952587,37.955616411904664,129.407816608436406 -76.021741793341491,37.955614456212047,129.407654955983162 -76.018631496052492,37.955569602743573,129.403947613202035 -76.006832785153307,37.955399454001153,129.389887012541294 -75.9956832798931,37.955238667396735,129.376604388467968-78.870312157640356,38.764670365564541,135.461233442649245 -78.836226914747897,38.813176647064303,135.577243749983609 -78.809216812758009,38.857851028700814,135.689361732453108 -78.789066673236746,38.886798005222325,135.758724915795028 -78.780233531999514,38.89397278579176,135.771226917393506 -78.758313081138851,38.904877527758188,135.779868308454752 -78.7208403213276,38.924312054122282,135.797246377915144 -78.720789312606144,38.923809075419157,135.795552756637335 -78.717990388280441,38.917947140294785,135.773127994500101 -78.71516879317609,38.912850572349981,135.7531559439376 -78.711983183888847,38.91184948333968,135.746027866378427 -78.602686640524624,38.966276362404066,135.789701266214252 -78.558678118350784,39.014860743779579,135.893803748302162 -78.555253116924632,39.02134350644932,135.910653734579682 -78.566868537397411,39.027974130104845,135.946192591451108 -78.57293278936244,39.033665841608794,135.971965885721147 -78.545142579515911,39.058345947888775,136.018206967040896 -78.509162832386878,39.090299071455156,136.078075639903545 -78.46089884272979,39.115019480843884,136.099746468476951 -78.440458544421716,39.133813888784466,136.135852792300284 -78.419406312053525,39.158323068029453,136.189682494848967 -78.411769321532674,39.173649506434742,136.229988713748753 -78.427752202645848,39.190568634551219,136.303847783245146 -78.439681483782181,39.199714190641281,136.347723017446697 -78.438083464098028,39.201431134382851,136.35133886244148 -78.433160398504086,39.20638197497366,136.361385567113757 -78.432197386527093,39.207408941397041,136.363539589568973 -78.430833366864292,39.208678901409442,136.365994859486818 -78.428941337183559,39.210275852692995,136.368869525380433 -78.424998276926786,39.213713746679723,136.375214651226997 -78.400699060986724,39.245537658305032,136.448614864610136 -78.400815067969489,39.245792646842908,136.449576299637556 -78.361065030887687,39.319431988718648,136.639048738405108 -78.359970025253503,39.321144928495102,136.643248500302434 -78.341510005615646,39.355151704813366,136.730528101325035 -78.363297680959079,39.35944333698815,136.770440626889467 -78.348118848350623,39.46766706889332,137.099796716123819 -78.229793416740748,39.392892155491822,136.718271722085774 -78.034204952125222,39.266291648863429,136.077319816686213 -78.034203048293435,39.26629041655103,136.077313574962318 -78.033861049980743,39.266069047866658,136.076192090287805 -77.829169380922693,39.134002235497725,135.405885467305779 -77.823194322176278,39.141657973711254,135.423624808900058 -77.772427278564678,39.238445456715361,135.676987747661769 -77.768289342872649,39.251048978305896,135.712865139357746 -77.770004492504583,39.258085676313087,135.737645410001278 -77.769012482320036,39.259325634357232,135.740483071655035 -77.762780383577933,39.26469946935682,135.750498475506902 -77.762229377937572,39.26538944600852,135.752078602090478 -77.759745370958413,39.269782288472527,135.763347261585295 -77.759424377470836,39.270865247106826,135.766469130292535 -77.756710378171988,39.276243051455005,135.780648742802441 -77.756205372766999,39.276859030735594,135.782043653540313 -77.754117344691466,39.279007961294063,135.786524883471429 -77.754072352501097,39.279638935966673,135.788511103950441 -77.754369394861655,39.281998837199261,135.796488595195115 -77.751279436424014,39.290951499248742,135.821772711351514 -77.720041011799509,39.322791474411126,135.887788084335625 -77.678515709070695,39.320365916305271,135.831052504479885 -77.668759517742856,39.319796041796366,135.817730407230556 -77.593747152345799,39.302958377329432,135.675136003643274 -77.561861032413319,39.287821269436286,135.588750176131725 -77.546852398171723,39.273204994398874,135.523849134333432 -77.544234258270592,39.268607204309852,135.505897710099816 -77.535466944573656,39.264031466468943,135.480800966732204 -77.512227159826139,39.25517102816093,135.424858164973557 -77.485609298012307,39.247612565823374,135.369178529828787 -77.461213356388072,39.230031492790346,135.283636034466326 -77.458683237178462,39.226692650735501,135.269851507619023 -77.459781938179901,39.221952932772659,135.255775773897767 -77.459887197353126,39.221498852191445,135.254427191801369 -77.479599319409061,39.190841933590725,135.178124194964767 -77.486974478355492,39.187339013129474,135.175411094911397 -77.506165970054269,39.183723995462941,135.186201156117022 -77.511635074077176,39.180158094014281,135.181053284555674 -77.517430130034555,39.172565354330679,135.163224860094488 -77.528286086615637,39.147911268803718,135.095966989174485 -77.525562748128891,39.129497045720683,135.032978477887809 -77.520932519392431,39.122601367858159,135.005140817724168 -77.459203106249802,39.075401832152075,134.779214910231531 -77.42418001947685,39.068557413255348,134.715853497385979 -77.376077580414162,39.062977054229847,134.641313432715833 -77.341284619876291,39.06467128256314,134.606097416952252 -77.328998894565842,39.060234350471525,134.577277048490942 -77.292600994840583,39.047089419451765,134.491903034038842 -77.262397937826364,39.032691267709275,134.409693452529609 -77.252797391446833,39.013092153750911,134.334577619098127 -77.256697375826448,39.004092489955589,134.309779669158161 -77.250796978015345,38.987593217838338,134.249054406769574 -77.236396440568512,38.978294722504451,134.201882713474333 -77.222494973176936,38.972995058602365,134.16834622900933 -77.198494231139875,38.968495447665596,134.125637239776552 -77.167892382982927,38.969795654317522,134.094189053401351 -77.149169809542244,38.966687941020844,134.062214678153396 -77.138691377879113,38.956996428251692,134.018341087736189 -77.120889581784027,38.935998442591099,133.928967481479049 -77.120852863786808,38.93595289297209,133.928775782696903 -77.102188730207757,38.912799555533802,133.831309637986124 -77.091188323090833,38.905899932676689,133.795923219062388 -77.069186639177957,38.901500299974657,133.755912713706493 -77.041585461967827,38.872902711095463,133.630155019462109 -77.032683924055561,38.852203639411691,133.551973558962345 -77.033971656419098,38.84119223672861,133.51737526524812 -77.039583306008566,38.793207016146766,133.366497366689146 -77.040223753704439,38.786893837931189,133.346520263701677 -77.042383005506252,38.76560913328079,133.279145739972591 -77.060895014955875,38.736115286251774,133.203823917545378 -77.075584216968224,38.712712043106563,133.144027920439839 -77.087098558426717,38.707488685637188,133.140292906202376 -77.106885905760791,38.698512367803581,133.133884168229997 -77.122087194741951,38.688313662544637,133.118105921894312 -77.133487340689129,38.675514097413824,133.089329574257135 -77.13688710743989,38.651516064991746,133.01432878524065 -77.131185743922927,38.636716727812889,132.958929487504065 -77.158487532708222,38.638116439520829,132.99549757130444 -77.175888855872202,38.625916799824289,132.975708193145692 -77.202989523333017,38.61891686223494,132.98442504927516 -77.205289596338588,38.61951681787103,132.989098629914224 -77.206090702556509,38.62561655745926,133.010125497356057 -77.217291208790343,38.639515885071795,133.069022437557578 -77.223338119598509,38.639789531944295,133.077016587369144 -77.241592908341843,38.640615634012107,133.101156872697175 -77.247693029278167,38.636915736242919,133.096140652894974 -77.249893000547587,38.630315992037147,133.077000302262604 -77.246092785067106,38.622416352671742,133.046531318686903 -77.247429132322935,38.601232212726948,132.978334463201463 -77.247991425557018,38.592318589073834,132.949628911912441 -77.265418809321929,38.584545765528091,132.944496489129961 -77.266292799275362,38.582019863346993,132.937200274318457 -77.261818468011356,38.567031525574777,132.882538256235421 -77.277591662174146,38.548822151445236,132.841047225520015 -77.27729155106914,38.54132246675394,132.815958879888058 -77.284491556422907,38.526924006681561,132.776931536383927 -77.292091640052419,38.517424339023556,132.754531513899565 -77.296808877745931,38.513160840251878,132.746015686541796 -77.299832686602812,38.510427883776103,132.740556901320815 -77.30176479225608,38.508681622390426,132.737068918533623 -77.303445455268971,38.506386683427699,132.731473632156849 -77.311322882282113,38.49563008685444,132.705245290882885 -77.32361086121486,38.468836103105119,132.631242595613003 -77.326428690772417,38.450555844037247,132.57416361849755 -77.320024087848637,38.419510197841689,132.463961788453162 -77.311706580492498,38.399377111543274,132.387537518516183 -77.313188530773857,38.392666380365512,132.367076642811298 -77.315835586249804,38.391287415877564,132.365636669099331 -77.31827557303869,38.385284647021514,132.348646859638393 -77.297063791053446,38.371506403538582,132.277990407310426 -77.289131428555962,38.361186903263402,132.234449176117778 -77.289336323179924,38.352996245293276,132.207554388791323 -77.287188205172797,38.348735442218882,132.190900759771466 -77.287187710240175,38.348734871091509,132.190898281522095 -77.280618918245779,38.341154815731223,132.158025389537215 -77.266280431219343,38.334876199903746,132.120296210050583 -77.24105670277639,38.333309477569223,132.085358567535877 -77.200416688529174,38.342601428538551,132.068294488824904 -77.180323138545518,38.343626554022833,132.048045557923615 -77.163674726391037,38.347705522407736,132.04198862425983 -77.156173584088776,38.352758373278057,132.049923155456781 -77.139206335626099,38.369627807994014,132.085907272063196 -77.105698417814793,38.371366015757083,132.052324861288071 -77.095646109169152,38.369426181202186,132.034098292700946 -77.085790840083561,38.370008239266568,132.024466583505273 -77.070936552122348,38.379605961326881,132.038865603506565 -77.057012407754144,38.39791031113996,132.083212319761515 -77.05241731745808,38.400793228873653,132.087382080033422 -77.044506114731263,38.402258233704821,132.08297080732882 -77.025845404221059,38.388501965645823,132.015531800687313 -77.012805872516097,38.376265587070201,131.959699676372111 -77.017910573728571,38.343409921602763,131.856682701967657 -77.021925519497643,38.330986409232608,131.820150536485016 -77.031661555853532,38.313337068734171,131.772959460504353 -77.027282312746294,38.304399480537406,131.73814307898283 -76.998647177724337,38.279762754147946,131.62272554077208 -76.991231914301906,38.275650988696107,131.600370674394071 -76.982348668459167,38.275930050922575,131.590894893743098 -76.96312589109894,38.258202956034587,131.50943695101887 -76.958771590921472,38.244900551674768,131.460082962177694 -76.958392488853406,38.238058842648336,131.436871197074652 -76.963350544652656,38.231811064335254,131.421882197260857 -76.967528654634492,38.231260052795619,131.424941284582019 -76.968310645112126,38.22890314548895,131.418012017384171 -76.963286328985021,38.215793739104491,131.368482611142099 -76.938108466037761,38.204103440484396,131.30006521102041 -76.917895863285437,38.201470719085485,131.267638925462961 -76.911805656561228,38.198792882383742,131.251591589301825 -76.876244326968816,38.173928224698251,131.127122519537807 -76.839766186284749,38.165197894536519,131.055379710160196 -76.825244780411666,38.165361007725096,131.038967018947005 -76.803938239246293,38.16971000051862,131.028609503991902 -76.789414847022002,38.170921069456057,131.015709443949163 -76.761210019303661,38.16830341258634,130.974096764810383 -76.750653663325352,38.163836687886096,130.946891197003424 -76.744032409316617,38.1587109584963,130.922069968655705 -76.741246275906903,38.154547156959218,130.904925248585641 -76.739906154762608,38.148233434153731,130.882285189814866 -76.722689553388335,38.139358950188502,130.832598937675357 -76.7050152098235,38.150987605519582,130.850859963335097 -76.702264217660954,38.157441356193225,130.869207969866693 -76.685858766349369,38.158220458440063,130.85272725019604 -76.666093093237407,38.149361994366231,130.800165279768407 -76.644413491130564,38.149974146836527,130.777018962427974 -76.639948407959821,38.15320004761417,130.782607827335596 -76.630441161049376,38.15477405943723,130.776825160719454 -76.614903664784563,38.150311375101921,130.743881836533546 -76.605095127832556,38.130496290744418,130.666284533217549 -76.601900792260494,38.111810104963666,130.600104474462569 -76.580459989018351,38.096596922633402,130.524336720816791 -76.544116731384506,38.078698975721515,130.422288144007325 -76.536880430294303,38.071260349008483,130.38899489492178 -76.523314696163837,38.04431959803189,130.283030209131539 -76.520496560382909,38.036544005270308,130.25370673276484 -76.517507323485987,38.028296322825085,130.222597061656415 -76.492957510745285,38.018952918359432,130.162820926867425 -76.470301825166317,38.015275258702857,130.124248059466481 -76.46624966789345,38.011957432067639,130.108428147621453 -76.463500438804076,38.000303947469078,130.066150167025626 -76.428444172202077,37.978771144304289,129.953302456997335 -76.417255724760253,37.968561667608746,129.906074536032975 -76.392394920129888,37.960476212135234,129.850165529176593 -76.361165957876963,37.954063737359846,129.792531784623861 -76.344802432625158,37.94908008124672,129.756884563714266 -76.266949775750632,37.91311723588781,129.546119964681566 -76.237675665370688,37.89091241415661,129.437635828740895 -76.246022550193175,37.863657503490387,129.355436988174915 -76.252308356896066,37.83481267811365,129.265448788180947 -76.267007569504244,37.81914122574095,129.229551916010678 -76.27612876535531,37.814405353539875,129.224103945307434 -76.281494915429917,37.814338313075027,129.230072784237564 -76.283542992427215,37.815850232232798,129.237537507899106 -76.282936026140419,37.819809068763035,129.250189917162061 -76.28585516265359,37.824048864894841,129.267859510146081 -76.294476410396911,37.824457777876056,129.279193393886089 -76.308433669840142,37.814091106033821,129.260353495366871 -76.311258524722604,37.796590827889595,129.204578896053135 -76.307440337856079,37.790388122762756,129.17923414055258 -76.313059007439307,37.752265701380665,129.057014207355678 -76.305867541846453,37.731657638095427,128.979065516032279 -76.313808642502238,37.72208298251158,128.955889694392681 -76.303753157530807,37.706219740564258,128.890619730576873 -76.301016964449659,37.697110151524598,128.856643164530396 -76.303494952836942,37.690746403315153,128.837982825003564 -76.313029164998582,37.686397512251695,128.834304770454764 -76.316111252387714,37.686466484471282,128.838106189854443 -76.321165967189728,37.682412752404723,128.830243417061865 -76.325758424440707,37.6787297372612,128.823099846020341 -76.340842579637666,37.657713514020799,128.769447069615126 -76.333512244696223,37.647565007092112,128.726591394282877 -76.307413464056026,37.643753380262865,128.683447268791497 -76.293482998084542,37.637846745007124,128.64730975497514 -76.288907814703904,37.633519966908253,128.62735481467098 -76.280395403759513,37.619974614977316,128.571600290946662 -76.281318372372994,37.615464800595461,128.557382840663195 -76.31012328421447,37.623641218992994,128.618451709859073 -76.363270627659205,37.612117284511982,128.641026464290917 -76.382057366058078,37.628751420885713,128.719185505993664 -76.391005659207536,37.632074206488532,128.740828127600253 -76.40018789498049,37.630384204758684,128.74576825555414 -76.444207431188985,37.654093834623119,128.877183978445828 -76.473346419334234,37.667518024723272,128.956488800235093 -76.490530906212442,37.667946867289736,128.977936652489007 -76.492753935337973,37.665359959946599,128.97177504375577 -76.498518884745948,37.648802621744991,128.9224759535864 -76.502476953402763,37.645508730694729,128.915940448641777 -76.511142177592248,37.64407072210102,128.921168759465218 -76.537504187928192,37.665319599131564,129.023766358383 -76.538654288837151,37.670675360679617,129.043216395191848 -76.536258460321676,37.689260585310421,129.103248558938503 -76.538184660398699,37.700636083444849,129.143931862898171 -76.541006810644035,37.706175823813638,129.16593524441123 -76.561433683814556,37.729569658672503,129.26873897574842 -76.57734551197187,37.759234263165396,129.38738795183599 -76.585247880497832,37.770630712742445,129.435034933499992 -76.594794199109927,37.774588466258002,129.459508464671671 -76.596898242975868,37.773420498940467,129.458023556508124 -76.602983427050873,37.774471404580112,129.468662407249212 -76.616310904220569,37.782498953713585,129.511267974041402 -76.643236480805925,37.794055945855774,129.58163249026984 -76.652374114867868,37.797977999810811,129.605512721464038 -76.659263444918921,37.80855349289066,129.649177765473723 -76.681159302742955,37.8273915115847,129.738172316923738 -76.693709616854591,37.824507531863745,129.743126157671213 -76.702568863781934,37.824414463413504,129.753165695816278 -76.723119621373911,37.838416698987665,129.824308419600129 -76.72814383472344,37.843999420168835,129.848963991738856 -76.734010125895125,37.853744957289969,129.888601831160486 -76.739359449827148,37.867108344815364,129.93978969566524 -76.748516843131739,37.877598823530121,129.985759708099067 -76.766676396306281,37.881008529635984,130.018459933809936 -76.776355976691391,37.876040219948663,130.013091963715851 -76.785583799142699,37.871303787395469,130.007977026514709 -76.783791665638475,37.864919073779042,129.984419795684516 -76.767292907166677,37.842173177334764,129.888624696992338 -76.75216427150167,37.825877995327211,129.816096361726522 -76.73527246745374,37.800398219500607,129.710559112951159 -76.724826043213781,37.790241738006607,129.664130218327045 -76.716460774957895,37.787611918533692,129.645485041663051 -76.690735045961304,37.786929157790738,129.613102222792804 -76.684736828795977,37.783130368774422,129.593291780911386 -76.682862733922377,37.779857523667623,129.580072923563421 -76.68430474404424,37.777522611496941,129.573889903724194 -76.684320266377597,37.771997383627152,129.555286764167249 -76.684333611773638,37.767247049670857,129.539290646091104 -76.68188346733676,37.761387319732876,129.516672592610121 -76.677963311713356,37.757840503097597,129.500131719745696 -76.664847890111147,37.753627789876738,129.470597633160651 -76.640922208084021,37.752682025245306,129.439458665437996 -76.620669561628276,37.746536452522228,129.395084266550839 -76.618332464585023,37.744088576049215,129.38409817032516 -76.622392521813381,37.739714729741848,129.374080166220665 -76.620929394368318,37.733013027835284,129.34975811932236 -76.607424933067776,37.726561413270758,129.312220983207226 -76.598171576686738,37.719011811032203,129.275936972349882 -76.59690148599168,37.71473200421535,129.260004814714193 -76.599031495791422,37.71086315221936,129.249426529742777 -76.598826410187968,37.704661418937484,129.228243434801698 -76.58054849462583,37.673252910515636,129.100790309719741 -76.584100471707927,37.663731289100525,129.072747310623527 -76.575006022064642,37.648527013726046,129.010716948658228 -76.543621760548703,37.61860454978379,128.872843739576638 -76.534732456484917,37.614277807181949,128.84782647062093 -76.528143256590354,37.613062912591317,128.836028466001153 -76.436426708285765,37.614555590099556,128.734275432303548 -76.421204101936539,37.60043531792639,128.668734787963331 -76.41173262185454,37.58356511742241,128.600541793741286 -76.384138737706422,37.574806715310679,128.538773916661739 -76.358785035719762,37.575449891854461,128.511510482989252 -76.333590283411795,37.571793251319228,128.469867845997214 -76.30109226735955,37.563485868706415,128.403995156288147 -76.298908154218935,37.559388061977778,128.387556313537061 -76.303710208452813,37.553047295375819,128.371601155027747 -76.33154679946901,37.538143711260552,128.353295659646392 -76.340938087058177,37.540082552574681,128.370778816752136 -76.349941316598631,37.53830055669161,128.375182073563337 -76.356033852260396,37.529117077785841,128.351077361032367 -76.361423418728677,37.520993207516604,128.329750607721508 -76.360327314398091,37.515179466050142,128.308731026016176 -76.353627019068028,37.506666885618657,128.272028146311641 -76.330418243017021,37.496674501402019,128.211116185411811 -76.307899645037722,37.499242571744809,128.19370548799634 -76.298686505514056,37.508617242890075,128.214876892976463 -76.29739252453291,37.512989065489798,128.228231614455581 -76.299403599088279,37.514430987427474,128.235463413409889 -76.298598611271686,37.517177875918584,128.243862594477832 -76.294546511363095,37.518252862264916,128.242815650999546 -76.28911432910229,37.515872008080059,128.228427642956376 -76.281990049971881,37.509575335638509,128.198771385475993 -76.266002268262994,37.483120600458975,128.090302372351289 -76.253360484824825,37.449031167715589,127.959664733149111 -76.251399110645252,37.423644276192853,127.870951105840504 -76.247561780116797,37.405881072001797,127.805986793711782 -76.246227525892635,37.388598827484785,127.745537685230374 -76.249404467986849,37.376895306737048,127.709321298636496 -76.259221578143624,37.363780794037069,127.675989488139749 -76.263351678166288,37.362546814294021,127.676575140096247 -76.265791703941218,37.359159940950214,127.667855584993958 -76.273832650302509,37.336935836118904,127.601367046125233 -76.272949463139,37.323956403790802,127.556037658825517 -76.27649640924524,37.311726903922249,127.518403263762593 -76.283499719310328,37.320869452938354,127.557759317569435 -76.292269027397893,37.325907165255174,127.585150085389614 -76.309526574951079,37.331127801840424,127.623035142198205 -76.312995781204066,37.339849397397707,127.656830964609981 -76.338422817044716,37.365774074761013,127.774829673580825 -76.367698766765926,37.376254388021678,127.844628810882568 -76.388060468598496,37.386819768955796,127.904343304224312 -76.39238565522254,37.392042508981667,127.927173676900566 -76.394906796933782,37.397698244835823,127.949374813586473 -76.394073800485785,37.399826159759513,127.955651706084609 -76.405705184226917,37.401970976372937,127.976507080718875 -76.416116467526706,37.403890807544734,127.995177736505866 -76.419668512078033,37.399557965863288,127.984564047306776 -76.419125743412323,37.386822436486177,127.940555678680539 -76.423452602900809,37.383113889399944,127.93296766653657 -76.438474809572114,37.381508593474337,127.945021021179855 -76.446282859971859,37.368219104385595,127.908854546956718 -76.435914420192702,37.356283703006454,127.856076845899224 -76.407336350806958,37.334684865295273,127.749088390730321 -76.388717514032152,37.309432106058459,127.641209667548537 -76.386550283452536,37.295870709958074,127.592385252006352 -76.382022047207514,37.287103125533385,127.557164217345417 -76.369975635581781,37.281074482781378,127.522526091895998 -76.35350216368596,37.280097656763637,127.499987562187016 -76.350435023397196,37.275726870438483,127.481480598449707 -76.363236333819245,37.271989929873058,127.483632816933095 -76.393735118801544,37.266736913400273,127.501256699673831 -76.418120785987099,37.265713762548813,127.526227484457195 -76.422712804353552,37.256962104851439,127.501687754876912 -76.430088986315852,37.255074127588486,127.503853130154312 -76.476876255443301,37.252306872638322,127.549100046046078 -76.483789501843944,37.256594631401185,127.5718381004408 -76.494251726007235,37.251233779808715,127.565768322907388 -76.499849746731613,37.242779205108185,127.5434345388785 -76.504589818009819,37.235620373762096,127.524520946666598 -76.494957443856819,37.227172817358493,127.484365915879607 -76.47274770772313,37.217781402709448,127.426254975609481 -76.39507865805048,37.226915628045077,127.366698574274778 -76.390739509994347,37.22474675676051,127.354214523918927 -76.394546504511283,37.215815113647849,127.328107345849276 -76.396998410970852,37.202853656315177,127.286622756160796 -76.390230127724735,37.195270039453327,127.252763262949884 -76.392198012714886,37.181654614739202,127.208451465703547 -76.398829160199071,37.166183588839282,127.163218905217946 -76.400605002376835,37.162040399468161,127.151102882809937 -76.395701832141597,37.15933655607455,127.136110298335552 -76.382324436447632,37.157479743490164,127.11411845497787 -76.376200329730622,37.162608569533404,127.124535946175456 -76.360634992463744,37.170348357526144,127.132874802686274 -76.349602710881925,37.172423355391828,127.127106960862875 -76.344178504367079,37.167975591767814,127.105541900731623 -76.345842529235554,37.166247653543884,127.10156380571425 -76.344994454444247,37.162135838883827,127.086486809886992 -76.341073238925702,37.15359224125703,127.052635370753706 -76.334960974158207,37.145992620143559,127.019456551410258 -76.331424844623228,37.143496756762467,127.006775298155844 -76.325296688386302,37.144664754802278,127.003630326129496 -76.312031264106196,37.140265051585494,126.973075860179961 -76.293286594357383,37.128385717012264,126.910485627129674 -76.28817797290003,37.11922389485111,126.87310326565057 -76.275404698830044,37.096316253807942,126.779601676389575 -76.272203485942441,37.086316714369786,126.741539413109422 -76.293804477075284,37.036919694567054,126.597022213041782 -76.301293361048906,37.010625781877764,126.515350724570453 -76.305213377975946,37.003154076817147,126.494226597249508 -76.312989581867399,37.002147059083313,126.499845508486032 -76.315949680381152,37.003458978343325,126.507816785946488 -76.315565764023205,37.011105647710131,126.533670397475362 -76.319006915470837,37.015621423380715,126.553220765665174 -76.330473063685474,37.016331542018179,126.569059946574271 -76.341052485676357,37.016986744120203,126.583677981980145 -76.341608561428288,37.017021182863118,126.584446433000267 -76.349008662273619,37.008522494929842,126.563873424194753 -76.357308846141905,37.004722594845873,126.56051233690232 -76.37451026753503,37.000122658973254,126.564818097278476 -76.384310478168615,36.995122799386749,126.559092968702316 -76.388654857911646,36.991447258221065,126.551536759361625 -76.397311703590532,36.984123176445678,126.53647986985743 -76.409511879519926,36.970923656188127,126.50535770598799 -76.412711890625573,36.96462390609706,126.487427744083107 -76.419913105432869,36.965823796394325,126.499999745748937 -76.429813453243142,36.971723459787718,126.531910993158817 -76.453063447898472,36.999938042047106,126.65622644405812 -76.453406537167453,37.006377758105188,126.678768078796566 -76.450836469060789,37.006642767008245,126.676664517261088 -76.449176458081737,37.009479656371596,126.684469512663782 -76.465417155157809,37.029320660937898,126.771702060475945 -76.470436370172322,37.032187094231759,126.787437469698489 -76.508561422435633,37.053960004543903,126.906952083110809 -76.510286368516034,37.054945107352154,126.912359086796641 -76.513236822747473,37.05663008799003,126.92160749156028 -76.519189994238658,37.057123018925189,126.930290737189353 -76.527221311833955,37.064718623540244,126.965791970491409 -76.528921425036032,37.070018378903768,126.985974366776645 -76.527521408557547,37.071818311638566,126.99050562735647 -76.527151494497105,37.07954397788285,127.016575461253524 -76.52994602042294,37.081159217543501,127.025398179888725 -76.537823867854016,37.085712623711856,127.050269181840122 -76.556015272404409,37.077629830380161,127.043922091834247 -76.56516854715278,37.079277685284787,127.060334470123053 -76.568880687156067,37.082237526559673,127.074850242584944 -76.580449210110743,37.098396729789961,127.14385873451829 -76.619203570412068,37.121115429558571,127.26730094011873 -76.625731848652634,37.128859040033525,127.301506999880075 -76.623203967029454,37.143913405172349,127.350079463794827 -76.61803585293795,37.146265344352479,127.352050326764584 -76.605427697336651,37.161800769915921,127.390395931899548 -76.607635841952344,37.168440463502996,127.415713053196669 -76.611923965134238,37.168760415146892,127.421850055456161 -76.611969547291835,37.168863411934666,127.422256065532565 -76.613469128114573,37.172251843191212,127.43561268877238 -76.614551511816359,37.174697581827971,127.445252727717161 -76.615172817977211,37.176101476286078,127.450786024332047 -76.617220262484594,37.180727852412204,127.469019119627774 -76.61775584987538,37.1830261230863,127.477509910240769 -76.61848961805363,37.186174811619523,127.489141742698848 -76.61896036898618,37.188194861138292,127.496603710576892 -76.620292513416459,37.193911254899056,127.517717831768095 -76.620914978039465,37.194949435252497,127.521999588236213 -76.622065470048398,37.196868288397603,127.529913240112364 -76.62424470609551,37.200502936795004,127.544902190566063 -76.630820989465946,37.208502536488453,127.579980701208115 -76.640561843972336,37.216546668896726,127.618927797302604 -76.642038417827962,37.21776604401208,127.624831220135093 -76.650822723846346,37.222677760068997,127.651946377940476 -76.690120840648618,37.224629358709421,127.704870503395796 -76.69432744589875,37.222991451767292,127.704230541363358 -76.699898064322113,37.220822445156628,127.703383985906839 -76.731906887298365,37.215576414753571,127.723194253630936 -76.735275859746196,37.205974804652925,127.694367129355669 -76.740955906093689,37.19714314257746,127.670891594141722 -76.743995955595636,37.194375238343206,127.665020124055445 -76.751426130170898,37.191862287609709,127.665201500989497 -76.758721352334902,37.193422160922033,127.679143927060068 -76.774708977841399,37.207824405902521,127.747226423583925 -76.781489207394074,37.211099208830611,127.766419197432697 -76.792512938069038,37.209327676951972,127.773390980437398 -76.801980734482981,37.20780618628072,127.779382338747382 -76.804155737597895,37.203276365557436,127.766481342725456 -76.803468678046457,37.200071510409373,127.754722014069557 -76.797862410062976,37.191167942780062,127.717677498236299 -76.757854949285246,37.163347475788704,127.575311004184186 -76.748587553278909,37.152314030641286,127.526629132218659 -76.738235210910489,37.147930304884099,127.49940865766257 -76.731275008120562,37.147161394439365,127.488561504520476 -76.716249624352557,37.1498014005873,127.479863078333437 -76.697689440650535,37.176168403149056,127.54816563334316 -76.693880482625971,37.187911923328784,127.583829298615456 -76.692872575263181,37.197495514982521,127.615401232615113 -76.68656843942361,37.200615430226421,127.618637468665838 -76.670839810246079,37.185336220830301,127.547879424877465 -76.664727518582382,37.175640691473063,127.507525154389441 -76.665223496574143,37.172792811296439,127.498368676751852 -76.669623565313074,37.168536960939214,127.488993774168193 -76.672423542181264,37.160505287708254,127.464815814979374 -76.67254133606545,37.143827012385927,127.407881245948374 -76.670557553770323,37.142301377130295,127.400321657769382 -76.667495147273868,37.139946221863191,127.388651461340487 -76.666786478694164,37.137865105906911,127.380692342296243 -76.666594458984008,37.137301210039418,127.378535682335496 -76.664702972257501,37.13174656384512,127.357290023937821 -76.657846524272614,37.111611533136738,127.280253296718001 -76.658053858284077,37.109385278347929,127.272871065884829 -76.658655016675866,37.102930323385522,127.251464267261326 -76.659062394561687,37.098556092172082,127.236955940723419 -76.66034611231656,37.095788592038161,127.228985308669508 -76.666502801417479,37.082515707417102,127.190751692280173 -76.667478401056911,37.080412463117241,127.184692123904824 -76.668171242602753,37.078918802226148,127.180388634093106 -76.668598401926744,37.077997911758565,127.177735325880349 -76.669247769769939,37.074426392570082,127.166256411932409 -76.670070341522205,37.069902253009076,127.151714352890849 -76.670774312644127,37.066030416248445,127.139267756603658 -76.669302156845887,37.056830829436912,127.105979738757014 -76.663509879913605,37.047519282284838,127.067203848622739 -76.654949560447491,37.040943637983233,127.034544160589576 -76.646964302275521,37.037999830529415,127.01502470113337 -76.613074354497897,37.037376129341141,126.97294152341783 -76.587440557826469,37.030512634182415,126.919191711582243 -76.585427339110453,37.029121483660845,126.912045046687126 -76.580342574349118,37.025607869814266,126.893994298763573 -76.580184869271079,37.025498894321366,126.893434439785779 -76.579108867100643,37.024755368060866,126.889614572748542 -76.578480232153979,37.024320976194318,126.887382872402668 -76.577565950009259,37.023147440190066,126.882276520133018 -76.566751430881311,37.009266355806091,126.821867312304676 -76.563871593703624,37.005569911929548,126.805777893401682 -76.552194209477022,37.000720217107499,126.775372698903084 -76.525800289620747,36.985608088199307,126.69238262064755 -76.523918203331931,36.982860223316607,126.680721409618855 -76.525089201503008,36.980091335001994,126.672577117569745 -76.52195305093106,36.974962584226191,126.651251770555973 -76.514309775321905,36.969832869462884,126.624621529132128 -76.501301379156544,36.966988097558044,126.599544700235128 -76.488504865238312,36.954148761020718,126.540328838862479 -76.485052545428672,36.930693814798623,126.455528208054602 -76.483352289841093,36.919142334040323,126.413746397010982 -76.483080081751211,36.902887048142823,126.357423690147698 -76.484314055932956,36.898018251636728,126.342096162959933 -76.470858518448978,36.884677943232013,126.28029444348067 -76.45563611085467,36.885857012524575,126.266470049507916 -76.454234108342106,36.888810894213336,126.275006753392518 -76.454885196701639,36.894519638894266,126.295451260171831 -76.448357144718798,36.904999231695911,126.323902878910303 -76.442549019265925,36.907895151019197,126.327062426134944 -76.432163711614933,36.906311302890856,126.309412017464638 -76.408449966355008,36.899223801586665,126.257155386731029 -76.407850955797031,36.899286977389039,126.256670482456684 -76.388509438797087,36.901326867696611,126.241020497865975 -76.386809683193363,36.925025843716753,126.320706373080611 -76.354706785527128,36.924526120236891,126.281378958374262 -76.346510579803038,36.926310107158962,126.277931337244809 -76.345604490481975,36.921092342644819,126.258889016695321 -76.334099146064347,36.919072522201802,126.238461452536285 -76.329805040954028,36.920226505725424,126.237414284609258 -76.331706342096979,36.940425607081949,126.309243176132441 -76.328306503556732,36.961224724786,126.376903199590743 -76.323705371968202,36.960924774374583,126.370490238070488 -76.316808133526777,36.957128994934614,126.349355031736195 -76.300304800156312,36.967324680202729,126.365177524276078 -76.29860378484905,36.969924580101285,126.372142200358212 -76.286003441821407,36.970524653712644,126.35949117410928 -76.268901914528087,36.96632497258426,126.325063181109726 -76.235899758298856,36.946926081259413,126.219727911986411 -76.222598319597409,36.941326431118597,126.184917357750237 -76.190896338342,36.933227035483441,126.120046716183424 -76.17795618384234,36.931070689419613,126.097538243047893 -76.140492832824478,36.924827800097511,126.032399080693722 -76.096442432734719,36.910598768982162,125.932084280997515 -76.088889220343759,36.91042883581656,125.922720918431878 -76.059087491495362,36.918728707237655,125.916756488382816 -76.04398719996864,36.92932836267213,125.935810869559646 -76.034386986046584,36.933727245909374,125.93985356297344 -76.014685422296225,36.932527453034055,125.912873760797083 -76.008485228772301,36.930828575915655,125.899826220236719 -75.997183828525621,36.923828970391696,125.862575073726475 -75.992483561272095,36.912629496657843,125.818468482233584 -75.973081188420451,36.844053648824875,125.559016152285039 -75.966380640972091,36.81423600764424,125.448082928545773 -75.950478578969552,36.762939382017997,125.251981460489333 -75.92267497421102,36.693843634966242,124.980057513341308 -75.891871383309621,36.632548572952942,124.731351666152477 -75.875069356359688,36.58565077115346,124.548675683327019 -75.867967764805073,36.552553287208113,124.425148892216384 -75.880668117589536,36.552553188799919,124.439878825098276 -75.881568142588279,36.552553181824685,124.440922892652452 -75.886869289826279,36.552553140736734,124.447073019109666 -75.887469306491099,36.552553136085734,124.447769190184772 -75.892869456469825,36.552553094222944,124.454035295173526 -75.894169491383622,36.55245308856054,124.455195519141853 -75.895069517569937,36.552553077165783,124.456588443368673 -75.904369774650291,36.552453009464955,124.467034745030105 -75.905669810750794,36.552452999382396,124.468543927185237 -75.909970930184571,36.552452966021868,124.473537418060005 -75.912370996827491,36.552452947404483,124.476324112154543 -75.922971291147689,36.55245286516169,124.488634424284101 -75.95377314498522,36.552351630497775,124.524075558409095 -75.954373161638685,36.552351625837446,124.52477312926203 -75.956674225503733,36.552351607964319,124.527448435314 -75.958574278237762,36.552351593205046,124.529657647944987 -76.027678195454072,36.552351055847218,124.610091023147106 -76.035679418548483,36.552450989138023,124.619762992486358 -76.123291187321101,36.552418216646501,124.721890094690025 -76.31413250421636,36.552346823428863,124.945273694582283 -76.314151128891709,36.552346816461032,124.94529556017369 -76.492437762986739,36.552158924428483,125.154705231077969 -76.54233337257638,36.55210633931744,125.213508498854935 -76.542629436607058,36.552106027293114,125.213857677765191 -76.782245042958593,36.552451111464791,125.499529208987951 -76.808027751715144,36.552397908534196,125.530072162859142 -76.916336342706003,36.545647743295213,125.635986434295774 -76.916953734825114,36.545609265279758,125.636591392569244 -76.917000664616737,36.545606340452593,125.636637378484011 -77.165459513629187,36.548119236779527,125.943592229858041 -77.250651827675469,36.546533620866519,126.040848964825273 -77.297838120318772,36.546533918814497,126.097869435325265 -77.768092965559575,36.546536860262265,126.670304686762393 -77.876258899277701,36.546537529689068,126.803044454194605 -77.883336091521144,36.546520472345108,126.811684348620474 -77.900750564094594,36.546446332626545,126.832840262912214 -78.039921338744008,36.545955209057091,127.002634584903717 -78.040403352119995,36.545978204057107,127.003309058956802 -78.047185382820842,36.545950221430942,127.011586491018534 -78.133896883886806,36.545592449271858,127.11755605135113 -78.134308895516696,36.545628444260153,127.118190240114927 -78.246450941833601,36.546191490540693,127.259158165194094 -78.247669973958139,36.546121483554238,127.260430361144245 -78.324903058024887,36.54558886610527,127.354594045318663 -78.437327083698989,36.544444981388445,127.490757553838193 -78.442193215475456,36.544465939883963,127.496903799474239 -78.457964638921851,36.544252817880498,127.515861372463405 -78.471787010341828,36.544094709628332,127.532581958919764 -78.472017016440162,36.54408570811119,127.532838300801814 -78.530718584733336,36.542759277167683,127.601665767841041 -78.534009673876128,36.542782248635881,127.605863336473703 -78.664317202037523,36.543788112646936,127.772686475887895 -78.671051383870719,36.543812055087784,127.781226753257215 -78.735124015937174,36.543678799010159,127.861317726783454 -78.759394761577411,36.543628321298101,127.891692560166121 -78.766432949476709,36.543503267700792,127.900124720297754 -78.79730378035913,36.543489008587997,127.938967612572014 -78.915549964285503,36.543747000116674,128.089122289791703 -78.916426987885544,36.543748992621545,128.090238007716835 -78.943016704300604,36.543887761793634,128.124346151016653 -78.943261710443025,36.543853761244996,128.12453927565366 -78.971585472391737,36.543928518455921,128.160647026263177 -78.9728225052189,36.543897509382276,128.162106841802597 -79.125748602329935,36.543341238333085,128.354236150160432 -79.127090637859936,36.543306228505188,128.355822249315679 -79.138948958501544,36.543512118566916,128.371609275229275 -79.209700852462973,36.543343524552874,128.461102170869708 -79.210494874034595,36.543366516765026,128.462192898616195 -79.219653024330185,36.543351861696571,128.47381408046931 -79.343714676052087,36.543153333727162,128.631519605405629 -79.446708188333574,36.54298851713996,128.762836921960115 -79.446982195351339,36.542965515825323,128.763109386898577 -79.471068531254872,36.542795154158355,128.793419298715889 -79.51166991683786,36.542507981928495,128.844555859453976 -79.511984101407023,36.542510059164201,128.84496652521193 -79.66785409605933,36.543540593086817,129.049106209538877 -79.668336108903333,36.54354058893535,129.049727814272046 -79.715883504760271,36.543651713274407,129.1114651998505 -79.921272744316241,36.544131728366331,129.379016543738544 -79.968014089566921,36.544240966226823,129.440100609324872 -79.968546104053175,36.544267960395061,129.44088436756283 -80.028305690161972,36.544260441602027,129.518584967590868 -80.054492724077306,36.544388134010617,129.553119200281799 -80.170575471207982,36.544954171288552,129.706477214582264 -80.172676527250459,36.544983151651273,129.709321066737175 -80.226449958251891,36.545511658319157,129.781426184810698 -80.229305035425256,36.545630628015473,129.785567766055465 -80.432652497249521,36.551980560385836,130.0739625999704 -80.433675525385368,36.55206354766009,130.075590985827148 -80.441147727126335,36.552391467236639,130.08653649687767 -80.613210316541782,36.559886236600057,130.338873265311122 -80.688593397674524,36.563169800154554,130.449718797579408 -80.745156890206232,36.563444287181554,130.52555307932198 -80.838147301016917,36.56091157693244,130.640295728109777 -80.838699315033338,36.560875573656922,130.64090636279434 -80.839012821394945,36.560888450687763,130.641366608440876 -80.902786034581055,36.563507885538847,130.735053279437125 -80.902896396942708,36.563511269361179,130.735211610794067 -80.945399171221524,36.564814447482931,130.796216149814427 -80.947049216418179,36.56495242656797,130.798882909119129 -81.059908228426082,36.568731249940043,130.962237291038036 -81.062930308242485,36.568775220975816,130.966422542929649 -81.30858184767051,36.576776659611504,131.322640215978026 -81.354241318986865,36.576476266222656,131.382994056679308 -81.354394040408977,36.576475261468531,131.383196041919291 -81.522108496747776,36.582270487953316,131.628867174498737 -81.608048827099537,36.588843413610192,131.767306073568761 -81.678615678080803,36.589865728083197,131.866326423361897 -81.647980212634451,36.613665929183568,131.905421150848269 -81.827826921772953,36.615961191436917,132.157198917120695 -81.923731439557656,36.617958226821607,132.294498842209578 -81.935231429065198,36.595959118137102,132.235794426873326 -82.147162952903699,36.596456271612354,132.527178543619812 -82.149661989628726,36.596462133847574,132.53062313888222 -82.151820044807295,36.596417116097463,132.533428722061217 -82.175075645230493,36.596350905758932,132.56508694589138 -82.17834073191824,36.596511868496243,132.570108231157064 -82.181833824483206,36.596671829183904,132.575439173728228 -82.189585028403911,36.596922746657889,132.586918546818197 -82.211591605567378,36.597515517707293,132.619116117246449 -82.212099619938797,36.597603509050217,132.620110495947301 -82.222807896000177,36.597557412777874,132.634653682820499 -82.224539939440163,36.597464401084657,132.636717475950718 -82.226810998444947,36.597487379176997,132.639913070015609 -82.227748022641251,36.597486370613524,132.641196183860302 -82.24436977733113,36.597442236696928,132.663873274810612 -82.294910400827447,36.597308041372081,132.732881070114672 -82.555397457958094,36.596616388097139,133.089862013235688 -82.560877597860625,36.596540340810549,133.097188512794673 -82.562177631304394,36.596540328772868,133.098987466655672 -82.610280858382495,36.595838914960495,133.163227559998631 -82.680985669542977,36.595437277225749,133.259908814914525 -82.696887077923904,36.595437129553254,133.281978367827833 -82.831543533660025,36.595498873982713,133.469406261108816 -82.986201550663012,36.595565004042015,133.685376851819456 -83.028365573655407,36.595583032021217,133.744389466941357 -83.029472602620956,36.595629019564889,133.746092663146555 -83.250054232962455,36.595560952713683,134.055208071134984 -83.251020258615071,36.595631940389396,134.056804652325809 -83.251425269474595,36.595668934892622,134.057498321868479 -83.277421993604946,36.599920496414747,134.108335183933377 -83.473234963962099,36.599015690128283,134.381367858499289 -83.671260041141778,36.602493654557144,134.673451760783792 -83.671273041953469,36.602526652926613,134.673580756410956 -83.676545175842534,36.602543602069261,134.681120347231627 -83.650644751039508,36.618412123576356,134.697523217648268 -83.528341366048494,36.667712036353301,134.689411354251206 -83.499139689318355,36.672213108197909,134.663215142674744 -83.462140968471871,36.666644615392741,134.592333786189556 -83.461935661224274,36.666613715622795,134.591940556652844 -83.355731412564353,36.697881297565601,134.546934516169131 -83.354738395210759,36.69842728212565,134.54736458696425 -83.34392918651325,36.703014175744002,134.547507986426353 -83.200820060821471,36.739214882381781,134.467694874852896 -83.168517259838609,36.740915109694612,134.428122474811971 -83.137515523737846,36.744816224724339,134.39777353964746 -83.12895341722367,36.752555954316783,134.411697310395539 -83.126848515306932,36.763003500438906,134.443714099004865 -83.126775515344463,36.763134495187984,134.444050279445946 -83.13236574129435,36.768832184256546,134.470933371223509 -83.132814962168595,36.783214528258583,134.519666776992381 -83.100912777746672,36.826613864054217,134.62013409473002 -83.07371051389454,36.856312777541092,134.681342977099121 -82.974513034615498,36.86082150793424,134.558126998133957 -82.912940673566894,36.875967402954558,134.523058754391968 -82.91280667019582,36.875972403987987,134.522889187559485 -82.886734196590396,36.902138553352835,134.574036742560565 -82.87489324949631,36.914022044063458,134.597261426970363 -82.873252224138071,36.915179007335766,134.59884475171566 -82.864584130112263,36.92403068988579,134.616353260353208 -82.8630591189699,36.925958617350211,134.620670041069388 -82.859577152994746,36.934439268028662,134.644132827408612 -82.859900166382303,36.934787249319271,134.645741769112647 -82.861653275287708,36.939161035850908,134.662763378582895 -82.862800332187774,36.94103794054238,134.670614847913384 -82.862398402543661,36.946569695223694,134.688506033271551 -82.861749400311353,36.947561656660938,134.690913767553866 -82.857215380352727,36.954192400768932,134.706735463812947 -82.856821389721816,36.955529344291683,134.710646716877818 -82.859559463541345,36.955757308287502,134.715204051695764 -82.861650546262453,36.95773619955154,134.724701748229563 -82.863982631848785,36.959486098858527,134.733769977465272 -82.865327669658527,36.959704076398715,134.736362176015973 -82.866520701846383,36.959805060633798,134.738353574648499 -82.868474826600519,36.964902812824469,134.758056649006903 -82.871346934370692,36.96721868158987,134.769759135320783 -82.87139094273472,36.967713658901872,134.771469863131642 -82.870300034298452,36.975902300725309,134.797245352528989 -82.870299703315609,36.975903345935713,134.797248376533389 -82.869572049153106,36.978201204154885,134.803895818069577 -82.868652040620006,36.979238166164464,134.806075050495565 -82.867806026640295,36.979772150104537,134.806681021116674 -82.867136012602884,36.979992146512792,134.806484907865524 -82.866025994805867,36.980730123761624,134.807404498569667 -82.864042957844461,36.981695099015091,134.807869910262525 -82.853730765164755,36.986682971706031,134.810191401280463 -82.852513727006368,36.986217004109804,134.806952050887048 -82.841167472962198,36.98883299320098,134.799942614510655 -82.839665433009529,36.988747011193929,134.797574828378856 -82.837124393993847,36.990556953712158,134.800083868205547 -82.834959384042463,36.993692833088446,134.807531059719622 -82.831918327198082,36.995164795516786,134.808221558108926 -82.830241343852677,36.999260627177748,134.819541831500828 -82.831704431318144,37.002664460428875,134.832905535586178 -82.819122183294937,37.00788034437565,134.832851561717689 -82.816864140221981,37.008915319107125,134.833171838894486 -82.80164675885527,37.009663428580403,134.814597878605127 -82.792005492963696,37.008479572395878,134.79731229506433 -82.791577489276818,37.008982553821383,134.798395339399576 -82.790207464644823,37.009714533813352,134.79893762152642 -82.790012462027278,37.009879528233782,134.79921733867377 -82.778483268716258,37.016998316822111,134.806976404972374 -82.772910131348993,37.017435349566128,134.800723734311759 -82.723586287802974,37.046819494019736,134.830395992845297 -82.721711776727872,37.083549864838169,134.950014315545559 -82.7230561609679,37.107404783657906,135.031175319105387 -82.625991489443905,37.164646135872822,135.087600028142333 -82.566487664733074,37.197805450479983,135.11589027941227 -82.56644143330675,37.197831213570474,135.115912296809256 -82.55466112113379,37.202580275076642,135.115498939529061 -82.511937341864808,37.219803745237414,135.11403791140765 -82.352055905025949,37.268789062275474,135.057811797596514 -82.311900637709996,37.299097926299453,135.10352536290884 -82.306981035117957,37.302811201752874,135.109127125702798 -82.293015020692721,37.313352634304152,135.125031102448702 -81.96939887922251,37.539501659083641,135.434381461702287 -81.928970440618713,37.513823166851189,135.2951280772686 -81.943740780231678,37.510549173452567,135.30421226285398 -81.994017719138967,37.48467484533014,135.286528026685119 -81.997679723183509,37.478411087471372,135.2707709223032 -81.993371378580349,37.462622824281915,135.212765583768487 -81.988107152064543,37.456585139833294,135.18569512013346 -81.969895625118781,37.453203458759575,135.149932756088674 -81.950467030666786,37.447394896065461,135.104507487267256 -81.936720563529107,37.440105345816519,135.061848310753703 -81.928588982701385,37.414960532086781,134.967642929404974 -81.93499355937351,37.37445826338282,134.842091937549412 -81.931292374652543,37.368439564069938,134.817143805325031 -81.931013365316673,37.368300572811549,134.816306428052485 -81.92768716673757,37.360653942106765,134.78646248485893 -81.926741118264843,37.35902802285635,134.7797937002033 -81.922668998576242,37.358135100182508,134.771336702629924 -81.921808961377394,37.357128152737289,134.766836494207382 -81.912584623945406,37.350551529479262,134.732574589550495 -81.91197260630986,37.350441540027475,134.731383899226785 -81.90899245624756,37.345495786648826,134.710954887792468 -81.908419431572867,37.344831821363918,134.707978772930801 -81.907465401354884,37.344472846109056,134.705500456504524 -81.90704239049083,37.344487849368761,134.704979472793639 -81.904892338162654,37.344762857136146,134.702990990132093 -81.904089306793267,37.344052896020813,134.699551912024617 -81.900592197158431,37.34281498327077,134.690726296044886 -81.90055618421367,37.341990020134361,134.687940309755504 -81.8970979727589,37.333680420203294,134.655698237009346 -81.896585960144648,37.333735422514458,134.655190011486411 -81.895893941869346,37.333725429373288,134.654223227873445 -81.895864931935336,37.333094457589013,134.652089856564999 -81.894869887316275,37.331818523329055,134.646512404084206 -81.893972864237156,37.331847530360477,134.645398513413966 -81.888818744056763,37.332869532874426,134.641837906092405 -81.888048717616542,37.332438559100702,134.639368710108101 -81.886171667563474,37.332378579156455,134.636637753807008 -81.881982564790306,37.332859596680059,134.632584354840219 -81.88069754460561,37.33378756749147,134.633931550197303 -81.879809516670548,37.333466589937338,134.631668517366052 -81.879439464598107,37.330550722510964,134.621490322984755 -81.874309275367509,37.32677893711714,134.602050204761326 -81.866314830306351,37.310553730049492,134.5373889580369 -81.865855811967137,37.310118753576894,134.535325136035681 -81.855073413605865,37.302133207332183,134.494257282465696 -81.855560419390528,37.301652224144654,134.493315895088017 -81.854583318767538,37.296478462541394,134.474807390011847 -81.855154284277717,37.293067608480861,134.464242758229375 -81.844261915349037,37.287301964915088,134.430392889305949 -81.843404892460427,37.287271974172761,134.429137704893947 -81.811653023100405,37.284696381972871,134.377781543880701 -81.810277987393562,37.284719393661348,134.376005533151329 -81.794732568111627,37.283904573438491,134.352356844581664 -81.794518555064741,37.283390598204569,134.350359598174691 -81.77583996663607,37.276564073415408,134.302506488747895 -81.775776964405964,37.276524075770773,134.302288636565208 -81.768929776330054,37.275933165188697,134.291105786338449 -81.766287719813349,37.27681615042399,134.290486573241651 -81.764928685896066,37.27693515769203,134.289053256623447 -81.763868660599456,37.277108159805572,134.288202027790248 -81.762844638399869,37.277430154980259,134.287894875742495 -81.761312591590411,37.276971189471993,134.284306399524212 -81.758723505616118,37.275720268835293,134.276661103591323 -81.758822478316532,37.273651359664008,134.269912020303309 -81.758806466193732,37.272841395729806,134.267196008935571 -81.75862344530006,37.271727446818531,134.263243893161416 -81.756104346161237,37.269437571616663,134.252235569059849 -81.75400427511606,37.268331640042135,134.24572991207242 -81.75321523931828,37.267285693711372,134.241188026964664 -81.752382211162583,37.266848720777631,134.238613097928464 -81.748748104281248,37.266046789871297,134.231054611504078 -81.744596753994315,37.249319570243337,134.169796912930906 -81.744511726621582,37.247576648371478,134.163880269043148 -81.745382725225411,37.245896714893981,134.159459696151316 -81.739469920029094,37.24263584753173,134.140645690262318 -81.734411350310751,37.239846084572086,134.12454941496253 -81.729285240346869,37.24154205653894,134.12329974770546 -81.684633660904097,37.213172727182176,133.968734929338098 -81.679692402149286,37.204188171702903,133.932141390629113 -81.561711365829396,37.208385068856835,133.787747750990093 -81.559439327392084,37.209867023908167,133.789645367302001 -81.558401293703952,37.209419053313439,133.786759679205716 -81.508410354061752,37.235521353536413,133.806853694841266 -81.505965489036384,37.249417759855078,133.849909246899188 -81.505253504995252,37.251835659213462,133.85701569262892 -81.410812517076536,37.286556986653146,133.846535659395158 -81.410279520727101,37.287790936925894,133.849935609847307 -81.38921545095647,37.321621633543351,133.934513127431273 -81.387810422111613,37.322192621170146,133.934541204944253 -81.386893392351951,37.321803646759676,133.932023978792131 -81.385997350745271,37.320550710345699,133.926658404991031 -81.38521032660951,37.320314727982343,133.924823769368231 -81.381242211115691,37.319556797812631,133.917011707089841 -81.378432145766382,37.320165796617239,133.915294414386153 -81.37239806799721,37.32583360135213,133.92612359393388 -81.368682019571736,37.329287482741549,133.932670671492815 -81.370462127637367,37.333545278318645,133.949214613065124 -81.369173102197394,37.334141263788204,133.949481181800365 -81.368135104696563,37.336222181358288,133.955024481751025 -81.367398105688537,37.33764512524511,133.958778632804751 -81.363239021255538,37.339405085576779,133.959096565842628 -81.321186361993668,37.301043165543597,133.77535817399621 -81.226181935465632,37.236597883671074,133.434023171663284 -81.205851514782452,37.244736708343133,133.434185080230236 -81.168105800909416,37.264604172576817,133.450400441884995 -81.113671584613613,37.280219976945077,133.430354902520776 -81.085086912689221,37.286123975683751,133.412207419984043 -81.035725696886516,37.292474143174026,133.36810558848083 -80.982394323325366,37.295188506804259,133.306711721234024 -80.981116443179999,37.294841094275533,133.303864849731326 -80.974961097754687,37.293167663372351,133.290152305737138 -80.967627913627695,37.293881698264919,133.28285765927285 -80.948967471898598,37.297595703269124,133.270637990906835 -80.920329858790041,37.307886508302524,133.267237635329366 -80.901605487593926,37.316723287877295,133.272067346610129 -80.850520584587741,37.348631343373583,133.311320613138378 -80.873659560065093,37.374068013847577,133.426582667976618 -80.863831860578983,37.413548365888076,133.545216626487672 -80.860629361930521,37.431273697467297,133.600031225010753 -80.860627028030422,37.431286615241802,133.60007116291672 -80.859544349504873,37.430019386104568,133.594429864548147 -80.859430976302377,37.42988668759596,133.593839125707746 -80.812708440497005,37.409227018635619,133.463673477061093 -80.799937934801235,37.397527648533348,133.407924111932516 -80.77783418147817,37.385852361778305,133.339997651055455 -80.777717171956013,37.385400382716838,133.338337041437626 -80.771149836914418,37.374084939851876,133.291984199546278 -80.623728776335653,37.435027591246914,133.302212884649634 -80.512453492478087,37.48339147232727,133.318277019076049 -80.495928392300414,37.436791663299481,133.141452686861157 -80.476661706892003,37.424671367922414,133.0759451771155 -80.465880464103094,37.42786632449166,133.072576249949634 -80.444085050999192,37.439847994528975,133.084201628342271 -80.426715752665615,37.451597635242535,133.1008161874488 -80.321684634435798,37.500600430927697,133.127943244762719 -80.315863507666833,37.502663392819166,133.12728069908917 -80.331364421157289,37.537962711003736,133.264931957237422 -80.313451082536659,37.547957434980489,133.275020544417202 -80.289823954392475,37.583677087782668,133.363324824720621 -80.241329007212514,37.608677432406807,133.383835533633828 -80.224442783527621,37.624900876958357,133.415985469706357 -80.222040783896716,37.629482698962526,133.428116820752621 -80.240345415698712,37.639387103765074,133.484637037850916 -80.25548888862015,37.644066764303261,133.519720500335097 -80.255526889370927,37.644047764789491,133.519706422463059 -80.264339164932721,37.646796566111774,133.540208742022514 -80.264349165470691,37.646815565195126,133.540284752845764 -80.265888212815085,37.647240532893136,133.543682528659701 -80.265932213783472,37.647225533151286,133.543689497746527 -80.2682862840703,37.647725490273416,133.548388311639428 -80.268513291540273,37.647822484015336,133.549003451131284 -80.271410409337676,37.650643335252283,133.562111181207001 -80.271381409311275,37.650696333205957,133.562249754555523 -80.293317491907473,37.685444624731844,133.705905445851386 -80.29339649749916,37.685688613414023,133.706816902384162 -80.297197710629661,37.693495239886332,133.737620547413826 -80.288166533853129,37.698115120247181,133.741287699900568 -80.264995234978514,37.720848340890917,133.78678154014051 -80.260401473055211,37.732915696284849,133.820859718136489 -80.261372342415356,37.735227749195289,133.82977366168052 -80.26382447698883,37.74004651802418,133.84890297614038 -80.258470586078005,37.757793796212908,133.90079886186868 -80.232610498165101,37.794299455542522,133.988366284407675 -80.228151381333888,37.800594213938695,134.003460047766566 -80.16326072327125,37.876827500663715,134.172147557139397 -80.150022200021596,37.88776255244381,134.191288529895246 -80.148374476633506,37.887641167610205,134.188774148933589 -80.147188423420346,37.886158242292737,134.182354213669896 -80.131522125947271,37.894899005854178,134.191139059141278 -80.056334972591202,37.953405030861589,134.288029286079109 -80.003563095271645,37.994468866619357,134.356066374108195 -79.979482964459336,38.030782522662598,134.445036498829722 -79.960899958278802,38.065396204267167,134.535350304096937 -79.934966765381972,38.100865917093437,134.619065007194877 -79.932089719505072,38.103099847266101,134.622754020616412 -79.939450267215193,38.13225934804732,134.727990886196494 -79.934807284356083,38.137204363028317,134.738340050913393 -79.929803277284634,38.146132026156572,134.761316577903926 -79.929739282641677,38.146624005691663,134.7628517691046 -79.926568273142678,38.151932807191585,134.776264213956892 -79.926307269347376,38.152160799790288,134.776681580580771 -79.922082580209192,38.181648577570286,134.868157216347754 -79.922252590947849,38.182072557929772,134.869765059091151 -79.918117527237371,38.185435451498698,134.87555346172303 -79.917230512466503,38.186080431933149,134.876544365659356 -79.893401125378929,38.204090877383514,134.905411153100431 -79.893055130150259,38.205071838630047,134.908191307447851 -79.79562200779138,38.266548503409489,134.986419456079602 -79.7911882884828,38.269346014919279,134.989984212443233 -79.789999271273786,38.270394980951082,134.99191954638809 -79.811170373573646,38.306727244905638,135.137721954844892 -79.809766398978681,38.3111190708115,135.150328044779599 -79.732715236976759,38.375831016176576,135.264823823235929 -79.692431087280838,38.441243607732787,135.427867219783366 -79.690598080141456,38.444196499296375,135.435204391367733 -79.690016166450576,38.451223207307343,135.457416494376957 -79.689259159410213,38.45216117444852,135.459526757709682 -79.700060813817743,38.476832034221417,135.553633749485016 -79.696619759013771,38.479525951366959,135.558095531538129 -79.670182517743953,38.51256579414612,135.632626793347299 -79.670182519085785,38.512657790263447,135.63292673509568 -79.65013014687591,38.593194576643448,135.870087785646319 -79.599008472196019,38.574447826310404,135.744986042380333 -79.556523124718765,38.561898736850857,135.650911471806467 -79.537921479303151,38.552599295655455,135.597329428419471 -79.522519809691929,38.535601150117607,135.522644393146038 -79.477686468346946,38.458914787519824,135.216219742782414 -79.313319308036768,38.413566170939525,134.86266530957073 -79.298800975308922,38.418128107337118,134.859515412710607 -79.296754943477765,38.419819054081643,134.862503829412162 -79.29285585801955,38.421317025475751,134.862552658654749 -79.291571839028606,38.42244698915232,134.864653452299535 -79.281305625098824,38.427164881158305,134.867318197153509 -79.283705770721525,38.432710625524614,134.888461608439684 -79.268456457078969,38.440011452864525,134.893381527625024 -79.266369449389927,38.443461325761092,134.902076670899987 -79.264418424437224,38.445451259102335,134.906162342987955 -79.263952423492299,38.446275228461381,134.908279335126281 -79.243066133870428,38.46602058097487,134.946917871944606 -79.241101159160721,38.471529366081974,134.962496691383421 -79.235450049500244,38.474699282661533,134.965843153186142 -79.23266198770628,38.475729264026469,134.965748011134565 -79.226880886967052,38.481134236507565,134.976244487799704 -79.211067684751114,38.495918605027065,135.004954786039889 -79.211049685004937,38.495970602996039,135.005102453753352 -79.210744695207978,38.497261551311524,135.008944740518928 -79.208914710381976,38.501809375974474,135.021541805006564 -79.208925715091624,38.502115362985521,135.02255579829216 -79.175922757004003,38.567998884244787,135.196857667528093 -79.175553749976331,38.568215878408488,135.197108833119273 -79.148015845608711,38.627323641846338,135.355841648764908 -79.147782841761156,38.627501636455705,135.356133691035211 -79.138053788238665,38.642337101034357,135.392458758316934 -79.13741579590716,38.644082033572118,135.397356668487191 -79.136587792111541,38.64539698582891,135.400618228130043 -79.136513795022324,38.645738972153772,135.401641220785677 -79.093312402018981,38.700888047736854,135.527899184264243 -79.093596423507165,38.70182900584927,135.53131256904453 -79.058294337513615,38.763090760765117,135.687067065387964 -79.056395587436825,38.783889909959512,135.752324094064534 -79.000792979600533,38.847836741877508,135.891575041227043 -78.995037877601334,38.851776629265402,135.897290267050266 -78.870312157640356,38.764670365564541,135.461233442649245 + + + Puerto Rico + + + Puerto Rico + 0400000US72 + 72 + 3423.775000000000091 + + -65.281285307028668,18.291091203105189,32.295778942294419 -65.28379034715087,18.283031666251755,32.254201342351735 -65.287778441984017,18.28056179940695,32.24440083000809 -65.30075982449948,18.297220792515226,32.346931731328368 -65.302211878842755,18.302942454905203,32.379391842521727 -65.300222834015969,18.30499734051746,32.388753498904407 -65.297036752707697,18.305115342341793,32.386483085341752 -65.289462551620829,18.302793498416058,32.366928608156741 -65.281285307028668,18.291091203105189,32.295778942294419-65.316893283681566,18.312475858861291,32.444683528505266 -65.317407310009784,18.316862601662962,32.46901529468596 -65.323307482558533,18.323972170960541,32.5130814332515 -65.327840606271053,18.326481012259279,32.530873835086823 -65.342591423957202,18.348103675647828,32.661937969736755 -65.336224034467804,18.352348275605156,32.679178269580007 -65.329856597654341,18.344768673093785,32.632149904035032 -65.322276336412216,18.341130490387094,32.605434901081026 -65.310355201046065,18.340787226031487,32.592664362862706 -65.304931044236724,18.334868585951842,32.555525742471218 -65.298849883774466,18.333343691499703,32.541675568558276 -65.282178452909548,18.332184804662138,32.520143109373748 -65.277840351314978,18.335396629275095,32.533646238967776 -65.253694690152699,18.32133951473277,32.435167878866196 -65.245615456529208,18.312484053039622,32.379631068557501 -65.244944420880188,18.30630941485899,32.345426635816693 -65.250377539866733,18.299507796612946,32.313372153788805 -65.260802789610338,18.293640110327392,32.290951424278319 -65.264457882895599,18.293502108411293,32.29353585653007 -65.276558209155439,18.298883761613002,32.333867840468884 -65.277620245082318,18.301794588988543,32.350676259025931 -65.276528227959787,18.305429380032386,32.369455643929541 -65.281023353924695,18.309018158510778,32.393085324205458 -65.303057931562137,18.31330384841927,32.436534093692899 -65.302681906619853,18.30819514733205,32.408399124629796 -65.302948212534318,18.305961137673222,32.396488740108907 -65.307549020152848,18.304452352274883,32.392487060278654 -65.316893283681566,18.312475858861291,32.444683528505266-65.328222532599924,18.298659633545196,32.379885359667242 -65.331920628163118,18.298926607859851,32.384723803959787 -65.337973819859954,18.31112388000011,32.456625478342175 -65.330710656808421,18.318813451490914,32.491801038384438 -65.328343575059819,18.311785867762698,32.451408854685724 -65.328222532599924,18.298659633545196,32.379885359667242-65.229005070465846,18.325828320383454,32.437078854069114 -65.222087886938056,18.323774458962276,32.419608694501221 -65.221629848398607,18.314799983378368,32.370375491678715 -65.223372888561045,18.313280067237834,32.363694391213357 -65.230545074897847,18.314090000484892,32.374633185565472 -65.232453150900767,18.323154466856341,32.425677312538028 -65.229005070465846,18.325828320383454,32.437078854069114-65.266690092898614,18.344565125267806,32.573316770605743 -65.256453831512388,18.344931131907167,32.565968677401543 -65.246276548346202,18.337521591625151,32.516404724679887 -65.247730581557207,18.336159667047255,32.510325004346669 -65.260132901983781,18.336961586432224,32.525995378382504 -65.266079070162363,18.342206264446254,32.559935281053185 -65.266690092898614,18.344565125267806,32.573316770605743-65.583495920051448,18.249567795975302,32.347855322994292 -65.592482900670149,18.251471573977366,32.36655612103641 -65.595468763082792,18.251471565724938,32.369325883686543 -65.596389252967739,18.250610699474763,32.365492339245975 -65.598682311016034,18.250413704634532,32.366547185927629 -65.600156373255672,18.258517227564926,32.412036220543087 -65.585420998421171,18.25919422879268,32.402054210193455 -65.583495920051448,18.249567795975302,32.347855322994292-65.572051945504214,18.354447707745077,32.907743973657489 -65.569541884787967,18.355606647106367,32.911716725677252 -65.566272791165545,18.352336846922736,32.890922632068396 -65.565600767804852,18.350311966909487,32.879297195002437 -65.56847982884436,18.346154201470604,32.859368158504367 -65.572051945504214,18.354447707745077,32.907743973657489-65.572776858500916,18.38456769426605,33.072025499306619 -65.569507941986018,18.384936001870638,33.070998795330524 -65.56688358757448,18.381022843897423,33.047318965196609 -65.572316431631307,18.379181339786765,33.042348218150437 -65.572776858500916,18.38456769426605,33.072025499306619-65.587864442756867,18.38480489300559,33.087289399467409 -65.592179566312524,18.389097630608369,33.114597520790994 -65.593114604178197,18.393659361932251,33.14023155067116 -65.589861519892438,18.393326390411097,33.135408940725029 -65.58506638622903,18.389749612378999,33.111546024680138 -65.584100351771085,18.386561801002443,33.093341848812997 -65.587864442756867,18.38480489300559,33.087289399467409-67.892327083405746,18.11678986376139,33.8851787308231 -67.887685961959235,18.115393959926262,33.872791488654912 -67.877016698717085,18.116976899404687,33.87042230181396 -67.87039054757102,18.121670643783837,33.889165800064802 -67.862134350717739,18.124963475446528,33.898601148277521 -67.848830969860813,18.111140328107769,33.809610812924802 -67.843787798193247,18.097679134387466,33.731072675436735 -67.844200776195336,18.087920706548545,33.678310932591558 -67.845878807942086,18.084759887193709,33.662807507440448 -67.853683991964232,18.081017083443509,33.650435667484999 -67.866184264218006,18.068262795048327,33.593764985911548 -67.872048386430976,18.060623226249625,33.558143489062786 -67.896507983686831,18.055165472776224,33.553587092086673 -67.905018220301955,18.061953047944961,33.59938317257911 -67.919365594443263,18.065938770034723,33.635922973044217 -67.928428840552783,18.071394421766215,33.675027071498334 -67.941387203577676,18.08253772728947,33.749159299768507 -67.935067149918282,18.114125889978787,33.914760137908161 -67.932773098595632,18.1160407844433,33.922822372056544 -67.9114675840503,18.12248747060276,33.935949262231588 -67.892327083405746,18.11678986376139,33.8851787308231-67.950687686409964,18.157052319667507,34.164623863995075 -67.954707788698656,18.157393287325299,34.170632841996849 -67.953562770229013,18.160480109449374,34.186248942278326 -67.950461690033009,18.159832157017245,34.17951905913651 -67.950687686409964,18.157052319667507,34.164623863995075-67.478553529961317,18.381750571482147,34.902495980262756 -67.486076731038651,18.385029356449092,34.927871921099722 -67.489923845657572,18.390246038976862,34.960032253526151 -67.482781678548932,18.394274824522231,34.974641087464988 -67.478499567219558,18.393348891800443,34.965295244008303 -67.472945401035773,18.385606362488744,34.917724852450192 -67.478553529961317,18.381750571482147,34.902495980262756-66.5240298076979,17.899012666840665,31.325685647316277 -66.514005574003704,17.905693303730299,31.352558238431811 -66.510334473462805,17.903302454243384,31.335895334370434 -66.510076461002384,17.901388567134859,31.325158042833209 -66.51590059070223,17.895536893575329,31.298745438456535 -66.529123901824079,17.887650318336313,31.268364612944424 -66.526623863501186,17.895773849307197,31.310456868261099 -66.5240298076979,17.899012666840665,31.325685647316277-66.35019644331021,18.489137952230063,34.372200848534703 -66.33827693327197,18.488422713298419,34.356887055560946 -66.316025331438041,18.477527414127504,34.276545555330813 -66.315578656442312,18.477483639358027,34.275880270637572 -66.291772705636973,18.475150623099591,34.240435359999537 -66.284222512690647,18.475006653329746,34.232426694594324 -66.27714635107705,18.480932327702533,34.257746959105134 -66.270346184513699,18.483084221679189,34.262894311919808 -66.258561873317234,18.479709452795753,34.233347821049392 -66.252093694299219,18.475267730856,34.2031075861305 -66.242343433862317,18.471543976443897,34.173619773238897 -66.220693873057428,18.468804198831748,34.138103891164064 -66.199577692610575,18.46896712727828,34.118841507472098 -66.193209172669285,18.469016265559599,34.113035992719233 -66.184430930724858,18.463310623968155,34.07375799678266 -66.179762795232136,18.458109941067676,34.041130850091577 -66.172859607011887,18.454267185288632,34.013731454499066 -66.160340288390856,18.454511206979621,34.003133617341518 -66.153581124606234,18.457262065751365,34.011607960797846 -66.144493731765124,18.46256582426858,34.031702105887234 -66.140115381697299,18.465121200916823,34.041383941657841 -66.139994464404722,18.465191772986429,34.041651328094304 -66.139987136553898,18.465119336263701,34.041251890361309 -66.13907575086759,18.456110174616196,33.991567869670689 -66.133628588516714,18.448686623682569,33.946156155318022 -66.128481338488101,18.447437375408509,33.934492158703506 -66.125740937271672,18.454013839750925,33.96753089223057 -66.124827479395279,18.459128861734751,33.994382013566792 -66.123731324653676,18.462234414376024,34.010168524459004 -66.123886263020736,18.463167519137937,34.015371764078736 -66.125558555205217,18.473238774045022,34.071525504812598 -66.118881286746827,18.472385282309968,34.060557994060218 -66.092640607391132,18.469339535297131,34.019145769067109 -66.083796367446936,18.464826824049528,33.986305559054017 -66.074529118562268,18.460905079496374,33.956267539411783 -66.043813567679763,18.456460276984586,33.903082103468478 -66.039980861442245,18.457246418568751,33.903714759275317 -66.037100039833348,18.453021595425923,33.878090528771281 -66.037032610141338,18.452922707482681,33.877490737475455 -66.023761777838558,18.446681054763989,33.831102710217237 -66.007063352909597,18.447153074790005,33.817874112166464 -65.99772013164359,18.452700777582209,33.839118091389537 -65.993475046964392,18.460294346461708,33.876264934428036 -65.993333341985007,18.460907310759772,33.879453039728105 -65.992889039923895,18.462829200185023,33.889448763802648 -65.991330001338383,18.463224181573324,33.890117025002837 -65.959031147979132,18.454159802507725,33.810513782314956 -65.926208289234935,18.44768727346781,33.744502851739526 -65.917381062873588,18.447425313796444,33.734774031676352 -65.908293837748033,18.449699206868445,33.738551650196314 -65.905525779564499,18.453731979384937,33.757809434086084 -65.87922006810814,18.44112878935184,33.664755749516189 -65.839361029281108,18.434672278782607,33.592335644178092 -65.832011825874901,18.429656592196139,33.558243277482688 -65.828992265671005,18.42635120100131,33.537484681233764 -65.817226397830538,18.413471578317008,33.456588945351541 -65.79509080779701,18.405654096815422,33.39344441331923 -65.788200630712595,18.405353133759803,33.38536427821964 -65.775471340441641,18.416759504012798,33.43535269331187 -65.771064224628873,18.415748575390104,33.42574807535857 -65.770283193962655,18.412281779860834,33.406207620166242 -65.772229233866582,18.40908596085821,33.39068529009819 -65.750988625844613,18.388018249796968,33.256490350700915 -65.750713104657137,18.387860638472944,33.255377372726798 -65.742687398971896,18.383269550168194,33.222957306541502 -65.734100184767968,18.385021472010401,33.224453933537006 -65.699601259338905,18.370967388618805,33.115968107245862 -65.670167515338377,18.364913536387697,33.055681055411696 -65.669376467206149,18.36475083576229,33.054061260074377 -65.634961610905549,18.372646471090068,33.06495453696698 -65.627776447229706,18.37924710605219,33.094129495322704 -65.627057445009712,18.384538799365039,33.122197240591049 -65.625505420048043,18.389363522249798,33.146953213959932 -65.623291367113254,18.390581457378399,33.151510617695749 -65.618759247230471,18.389306544381089,33.140382303856313 -65.615421149505195,18.385283788339304,33.115442301146686 -65.619598211434464,18.370566635226361,33.039393323473632 -65.628728402171802,18.356523429086817,32.971582271158695 -65.634720510476384,18.341778272723356,32.897023904137313 -65.628577320658366,18.331065914869566,32.833092339336872 -65.626986190846978,18.301797627233356,32.672465150244534 -65.634919373576452,18.295164992296524,32.643756569363177 -65.636356397926946,18.291087226297726,32.622908211313188 -65.635423818682852,18.286739105553206,32.598384959623218 -65.631363199501763,18.267806598956575,32.491581500507891 -65.623640950538558,18.250830611259254,32.391989273950458 -65.598147257069641,18.237108482763748,32.293591649271548 -65.590476042559658,18.231044857906383,32.253445997834206 -65.594324128374637,18.226879090461665,32.234322376549244 -65.616510705763787,18.230208834796947,32.273056709207594 -65.62726100514115,18.238303332529043,32.327133108861744 -65.63871127861367,18.231940672296801,32.303120396099985 -65.638095248698036,18.227263947037002,32.277072174474597 -65.628943956366271,18.207970098797748,32.163439598865807 -65.635811116266026,18.202796381910893,32.141626422293484 -65.640218246100986,18.208477038046965,32.176683890633285 -65.662716280304281,18.209839318375355,32.205040824599564 -65.664657875257276,18.209956884048442,32.207489084452391 -65.691280518801278,18.197811519580345,32.166100575588644 -65.695046590852371,18.189832975101652,32.126120918430388 -65.691552477310935,18.181820452723727,32.07917932793498 -65.696387601831987,18.182146420306477,32.085465338081121 -65.711427009208947,18.189784932541365,32.141139792278409 -65.713065057676459,18.191967800514583,32.154567858204246 -65.718531200445568,18.192997725212994,32.165284208022058 -65.729003454047614,18.188409964130759,32.150054238736629 -65.73519659640516,18.183190251832762,32.127383450046182 -65.739366683798977,18.17688860835387,32.096921593882143 -65.739657648305808,18.176275616285285,32.093851057812572 -65.744164775684354,18.166780185523674,32.046282889321446 -65.759261138895837,18.159424573373311,32.020282182842493 -65.767452323252783,18.151248028350292,31.983344373293221 -65.77811753738618,18.132064119645253,31.888653742149472 -65.797244887869326,18.086573725061076,31.658200438134372 -65.796822865274422,18.082662954799606,31.636441304348409 -65.795219820655291,18.081435031002201,31.628230121918023 -65.795561814131688,18.076389324967376,31.60098423063755 -65.797244908792209,18.072670124437838,31.582241232506931 -65.802364942303797,18.061356184866263,31.525216006673872 -65.809708124492445,18.059647264463099,31.52276524156332 -65.81764134671262,18.066206859082335,31.566059147007763 -65.826382551887988,18.060311179537639,31.542046198621392 -65.831624665000575,18.053493563585764,31.509706896729767 -65.834808710936144,18.041818237344565,31.448872929438949 -65.832963591222693,18.017747649784113,31.315504917874932 -65.840125774361013,18.0179086205912,31.323116176761687 -65.851447809010125,18.014785935401161,31.316679486073554 -65.870870532718058,18.009429031464371,31.305649179033935 -65.875657643378432,18.005658238740249,31.289526168256998 -65.885472850408078,17.991354048152054,31.220498722046614 -65.896638140259327,17.993092915578092,31.240536362864077 -65.90585535620184,17.986807257717871,31.214826310053468 -65.911073727545485,17.984687984348323,31.208148772828281 -65.92527482727202,17.978920665287582,31.189980973489583 -65.977149123439204,17.970503013999114,31.192928679287434 -65.985088330941906,17.972244890067444,31.209978876635432 -65.98589635892337,17.974687744905587,31.224116494879127 -65.99572363086196,17.981822300217683,31.272473744116724 -66.008269955127503,17.983374174566684,31.292853211984038 -66.017847196138121,17.982416203990969,31.296688100323081 -66.02007813396564,17.98118714954721,31.292076593264937 -66.024539355374543,17.978729401092455,31.282855181954801 -66.047124866594174,17.957687569534361,31.189093854278326 -66.049572928033342,17.95739557981393,31.189819633029401 -66.058757176049298,17.96207228058848,31.22414973564446 -66.069218463933993,17.969168836180874,31.272941611707211 -66.070519670870283,17.969191008034375,31.274299751035869 -66.081950788711239,17.969385788012136,31.286234249360859 -66.116735621047795,17.951975709973347,31.22402317263186 -66.127550889592314,17.949787807867136,31.222348214127123 -66.141203218887668,17.943855117040162,31.202875694260001 -66.148454381872725,17.936798509883566,31.171143647283316 -66.155929558154853,17.932241755776865,31.153317084535956 -66.160284666522045,17.931448790042751,31.153130749240518 -66.16177471397053,17.934582602421884,31.171719792298973 -66.176169169436761,17.936400110842182,31.195423196069896 -66.187457262025845,17.938198773988514,31.216062396764755 -66.190269529195447,17.936771449688379,31.21093316655606 -66.200717697629216,17.932350624267254,31.196709734387696 -66.207504878629834,17.935103444105803,31.218281406909227 -66.213918079430982,17.947448703365684,31.292028543539345 -66.203198807251965,17.947587725242652,31.28253364097327 -66.186096997352365,17.943831837804385,31.245613159611821 -66.18009085291834,17.946562294753026,31.254826111719012 -66.175382110312029,17.951048600464816,31.274894068017602 -66.177357167339565,17.953272464757198,31.288957828655839 -66.206750865167763,17.965883166249728,31.386097230017185 -66.207350969575145,17.966140627476083,31.388080609962344 -66.215899174955453,17.962209833629483,31.374742640182376 -66.218625237901406,17.96012394810181,31.365932951681316 -66.232063538700444,17.946746693622877,31.305557709187269 -66.229725450932349,17.937486242378785,31.252604235894978 -66.232557512250864,17.93398943919075,31.236164566129446 -66.253282049606398,17.937409180862002,31.274757081642747 -66.261229256257124,17.93891807021501,31.290642408654094 -66.271450549836615,17.949932396574699,31.360762651078403 -66.276196674049004,17.951094315206127,31.371679279021919 -66.291328053249302,17.949325376262621,31.376522310078144 -66.298225267415148,17.961981615758155,31.452434881590307 -66.317496811171026,17.97951553478882,31.566916033625603 -66.324205987403829,17.981368407377285,31.583506033755839 -66.338699225961335,17.97932407662497,31.586264511570334 -66.338937355407992,17.979290487489422,31.586309911683202 -66.363058943020448,17.971063901139548,31.56452323589474 -66.365645998276577,17.967665092879287,31.548415873199701 -66.369325069824839,17.960550499158824,31.513022292405367 -66.372139122068575,17.954302857123636,31.481535914354026 -66.385607425809326,17.941838549158586,31.426283632405102 -66.391775603483126,17.948653132589147,31.46954626403749 -66.399493815272606,17.953758811728679,31.50494640506804 -66.412680169829983,17.960119401885855,31.55249534919858 -66.446031085180095,17.982211013448989,31.705616832710803 -66.45091781935875,17.986057405458286,31.731385531835258 -66.45543834703048,17.989615553055945,31.755222431384027 -66.461892521755871,17.993104330385439,31.780550668016076 -66.491947284900704,17.993093245611533,31.809599343687296 -66.510694746445694,17.988449464297915,31.802378763444722 -66.541089802685605,17.978307859721451,31.776409605517983 -66.583786525575618,17.964061684929529,31.739985861815512 -66.590211713987983,17.972218188648359,31.790869943797588 -66.59494583813337,17.973514099199157,31.802569989115 -66.60558910294975,17.971847166489212,31.80381852388382 -66.624342616227224,17.983881407695133,31.887929884716868 -66.632498828416487,17.985577284984462,31.905160521157086 -66.646206168326216,17.983091391427912,31.904940279200673 -66.658352458699639,17.977436688039873,31.885870237834752 -66.664946606085351,17.971091041058713,31.857598571106791 -66.673374814149909,17.969283122882565,31.855944156646729 -66.699671632582422,17.980399511218803,31.942471454851329 -66.71041280224604,17.984940098985742,31.977818234823644 -66.713950909675276,17.99059375745453,32.012200034223497 -66.717514008105425,17.993174595951469,32.029801426455379 -66.731675682773854,17.994488939267633,32.050860672257841 -66.746805750663071,17.993179511429862,32.058532068505883 -66.750984872601322,17.998273200835182,32.090480248443782 -66.754522471324464,18.002419463096899,32.116617497988045 -66.755899015273528,18.004032849087316,32.126787562854588 -66.765049263295737,18.009146522989994,32.163717566989362 -66.770865409572451,18.008784527441325,32.167447088286281 -66.800215110825519,17.99528023440196,32.122453261166811 -66.807425266224982,17.986616721498681,32.082171782851219 -66.808483279868852,17.982436963494202,32.060355340130627 -66.807462242793989,17.978877175142365,32.039883160032332 -66.806242208755933,17.977883236933113,32.033247451297939 -66.79566514066417,17.980269103374081,32.035898019559681 -66.789860811766516,17.98362394759198,32.04854125995189 -66.785511693804978,17.981157104740497,32.030777713283896 -66.787803734864113,17.97574541540104,32.003431541845202 -66.808829244667294,17.968466781564238,31.98428594507277 -66.822959567579431,17.957331393756519,31.937267641536891 -66.839143963120677,17.952763614950516,31.928208606317639 -66.852848801765447,17.957836002249209,31.969464529305696 -66.857034437044319,17.959385175039703,31.982065555639565 -66.860031362211799,17.957148638674333,31.972783382050693 -66.86310557650846,17.954854423208829,31.96326173003763 -66.872257810414226,17.955539356614324,31.976035011932254 -66.8840011071795,17.955358333305419,31.986630973406136 -66.900200503962139,17.951130534437883,31.9794917460531 -66.905146636207192,17.953359389411979,31.9965726332739 -66.907093700741143,17.958188100575175,32.024914728477597 -66.906837719564706,17.966199631451186,32.068488332442939 -66.92509121150141,17.975639024987188,32.138154870830476 -66.9292133076098,17.973035165752549,32.12799010053277 -66.930976329851831,17.965958575686738,32.091028288006783 -66.916688955472139,17.961933853118328,32.054887628182769 -66.910044766615073,17.955391256073224,32.012528738006949 -66.909920755018248,17.952712413549406,31.997749381698668 -66.913083827402843,17.950278547151342,31.98755780979991 -66.93087526491378,17.946221733623023,31.982948469929397 -66.933198312998101,17.942830925795086,31.966690759174526 -66.93214327651468,17.939733110560525,31.948693946935236 -66.919859950369741,17.93489542985775,31.910070071928203 -66.924388048760832,17.929756718198608,31.886419321410358 -66.927823135543832,17.929708711083379,31.889553556218743 -66.960561006129623,17.943048833772675,31.994966029189527 -66.981079561483995,17.954480103687278,32.077843031845987 -66.981613890398847,17.955336739008469,32.083059185184538 -66.983232626895642,17.957931894949226,32.098860938102007 -66.982769634485223,17.964023538953203,32.131724112667143 -66.98785079308486,17.973493968667064,32.188557367771864 -66.997302039322207,17.975729810043013,32.210156282410026 -67.004536215690635,17.973629912186283,32.205849296413362 -67.015308480822199,17.971299017587118,32.203792868182063 -67.025086735349234,17.973552856913837,32.225826816633344 -67.063043705281316,17.976649564649783,32.280486235395074 -67.077100041461875,17.97058987917805,32.261337708681822 -67.090393325566211,17.954249799176456,32.185203942470253 -67.102034604608207,17.94945304669962,32.170562126673758 -67.110551817324506,17.948638069675127,32.174593766219914 -67.110552734191373,17.948638187470841,32.174595323391259 -67.128818286529437,17.950984878623611,32.205651627853513 -67.134300437101658,17.954750641609163,32.23172197304666 -67.167599314287941,17.96590388965009,32.325979319401085 -67.179134611285903,17.967622754983175,32.346910746768117 -67.184076729496809,17.965536862923575,32.340446783229709 -67.189285379216969,17.953820324991351,32.281577875837684 -67.188042913454993,17.949083881249788,32.254426218569279 -67.184262655181811,17.940814313453807,32.205403280444443 -67.184025627334407,17.933967716033411,32.167703882791102 -67.195353918920986,17.935658583629909,32.188291459344327 -67.197492981982037,17.938483411548567,32.20588887296617 -67.19784199658163,17.940293304285497,32.216140797361732 -67.198086386996025,17.944346077832225,32.238558267243207 -67.198237416312338,17.946381074772972,32.249842268414795 -67.199557535066504,17.9506516395376,32.274525021202862 -67.201542501106445,17.952727575728769,32.287867265753448 -67.210603370556342,17.956426319902015,32.317169968038797 -67.212670430559427,17.958858171096413,32.332540393806994 -67.214899507392758,17.965266788392846,32.36981978174299 -67.21584059856238,17.986293551503195,32.485718929208815 -67.212542545799707,17.995822001980862,32.534493480809033 -67.208263453801521,18.00084771961675,32.557673094794154 -67.178461735484689,18.01171016975049,32.587210900150239 -67.174867651909665,18.013977047292421,32.596002664417028 -67.172965615881495,18.017733832447007,32.614624500274658 -67.172706630240199,18.024249450910439,32.649955926463008 -67.1743296813017,18.027375262741167,32.668650385923684 -67.193838197887274,18.034676776971896,32.728029769845307 -67.210456629465952,18.038265517482618,32.764253980480134 -67.19726339594817,18.069315734652022,32.920538454316556 -67.191225236138052,18.067093882794648,32.902375597506762 -67.185158093956488,18.070574696480072,32.91530389059335 -67.184507084466162,18.072738571461972,32.926460347138345 -67.187034162151036,18.077019312900138,32.952342898584902 -67.193568336000965,18.079701136313723,32.973507264629006 -67.198781467644537,18.079652123810718,32.978453440591693 -67.19988354166081,18.093958281361942,33.057591896504164 -67.195859456096514,18.098971999155268,33.080910604447126 -67.18449019292143,18.106505590851491,33.110625469125807 -67.182751164516205,18.111329313070129,33.135188049636781 -67.1771231596815,18.153865835205838,33.361375577747822 -67.179187238678992,18.162137344086585,33.408490692265332 -67.181391322743849,18.170873825303566,33.458269893191755 -67.181270787443196,18.17100050517411,33.458839304745197 -67.1557537614068,18.19781832158235,33.579360315576196 -67.153233725175454,18.206309831280457,33.623057226650417 -67.158569903159488,18.219535040235854,33.700335446745157 -67.173569328111853,18.233481178256813,33.791158922947943 -67.17599844603852,18.250822154659357,33.887872804887593 -67.188412821095753,18.269484023989971,34.00170034635812 -67.188442937041316,18.269687001990167,34.002833442762494 -67.190540921785299,18.283827177090473,34.081757516600192 -67.196626106625331,18.293254606489551,34.13904526643455 -67.210533473472353,18.297785299479798,34.177548170089722 -67.225973946379014,18.299459634324538,34.202078555710614 -67.226651887155398,18.299533148902707,34.203155833296478 -67.235708126878961,18.302745933552462,34.229662061668932 -67.268056120351062,18.355956718598918,34.55082618445158 -67.271922248439964,18.365136169152208,34.604483566246927 -67.268831185556792,18.369795905431634,34.626655512489378 -67.261243004049931,18.373003740296213,34.636450036428869 -67.239661546811362,18.378124101383886,34.642613616771996 -67.227315171603465,18.381053370619711,34.646148226223886 -67.217568937420069,18.384884175472809,34.657174473628402 -67.202737587585816,18.392713761369478,34.684800419025123 -67.160713933302446,18.418391645080845,34.78202529065311 -67.160177595012399,18.418719366038918,34.783266259357333 -67.15716852886122,18.421787195423548,34.796887491829693 -67.155814512379692,18.427204882258273,34.824885679408908 -67.157188597121902,18.442364990502579,34.90835840255022 -67.162315772875971,18.456264161355797,34.988718624226749 -67.169580999538894,18.469153384936668,35.065722639672458 -67.16958603975452,18.481288674520112,35.131393532268703 -67.164713945705444,18.490196167771042,35.174728055484593 -67.143399465168599,18.508284173236952,35.251332768239081 -67.138818356591287,18.510575052952621,35.259161655791104 -67.126224050234939,18.51450486087095,35.267882375977933 -67.104036023336235,18.517322098265826,35.261060461401939 -67.094320254505874,18.518555719758851,35.258080079220235 -67.07985787941351,18.516054909537171,35.230201276950538 -67.020842373389542,18.51340224171345,35.15736623108387 -66.989523536272884,18.500524088832787,35.056735156103969 -66.960104763855639,18.492678635653384,34.985230414196849 -66.958297715532865,18.491929684858924,34.979394339956343 -66.958081555284579,18.491971999678093,34.979409897699952 -66.945200391456041,18.494493573928157,34.980340697802603 -66.907435406034026,18.486357162363117,34.899088960140944 -66.90199301310102,18.487353475514773,34.899120644666255 -66.867948426848358,18.493585856941944,34.899347564205527 -66.850234976781678,18.493545911883079,34.881723558530211 -66.837501643257539,18.490460130138565,34.852520782500505 -66.837196382198698,18.490501640487608,34.852445703931153 -66.79988070405193,18.495575942484319,34.843298781663179 -66.780871216533143,18.494212078518739,34.817295355722308 -66.765452839167864,18.486898839489879,34.762624421156943 -66.749860380614962,18.479503030284025,34.707339541986585 -66.742626190189085,18.477483169749558,34.689331846311688 -66.734544980807314,18.476259265162401,34.674806998111308 -66.711301387182246,18.475413383161559,34.647523329593241 -66.684276728368317,18.48416895087766,34.668553370051086 -66.680433642206367,18.487745753090888,34.684166907332838 -66.664921256958465,18.490610631283317,34.684556197375059 -66.646395788888128,18.491578629201868,34.671756624244153 -66.625174266539787,18.4970003746819,34.68045474216342 -66.587333025336889,18.487750026437592,34.59362415317446 -66.584629202963825,18.487089072988397,34.58742187358439 -66.565795727662461,18.488325055948497,34.575840861536562 -66.563470677905798,18.491251891709915,34.589429209008813 -66.564039699022501,18.493313769544319,34.601141290739179 -66.559057570531422,18.492788814819249,34.593469594605267 -66.535393940144786,18.484055394464143,34.523265487514436 -66.534041056053795,18.484464962475425,34.524172686040401 -66.53002980881611,18.485679315252348,34.526862896978855 -66.512162334621138,18.479650719770312,34.476932031102479 -66.470844257720259,18.471873294798801,34.394883289933205 -66.457037905666169,18.471723343783857,34.380743911489844 -66.449735726326097,18.473794244045109,34.384913577698171 -66.442403567594468,18.482553753599085,34.425274272449315 -66.440512537894918,18.488327421782227,34.454710483551025 -66.439364661148304,18.488515145198768,34.454620072618127 -66.421472062836017,18.491441295304554,34.453218190930784 -66.410894797357912,18.492688253238999,34.449782115407288 -66.394837387806334,18.492550307997355,34.433580634184182 -66.377835949160868,18.490846456932083,34.408005498349667 -66.373369834339755,18.490528488476766,34.401990925893188 -66.35019644331021,18.489137952230063,34.372200848534703-65.30923859715385,18.147997474445518,31.541445241309702 -65.302816420602468,18.143914730110861,31.513281817547977 -65.295417236288927,18.145655648562084,31.516014760360122 -65.288483074317895,18.150922360006412,31.538419557735324 -65.275685706118708,18.137256192132291,31.452119722962379 -65.276734725606119,18.13476233482676,31.43946279771626 -65.283768908888078,18.135825253768218,31.451696528121829 -65.296557221532922,18.130816511463205,31.436045684851706 -65.323315902494869,18.129415520751902,31.452894457615912 -65.327706007525052,18.126932653767021,31.443359605036676 -65.339028262779777,18.115266304028491,31.390027150511742 -65.342559350023919,18.114207356270121,31.387481451965868 -65.35101556804544,18.114741302176078,31.398154366761446 -65.365255957622267,18.123203769559208,31.457438667304814 -65.398360776553645,18.113700234414974,31.435956218279898 -65.400314820486074,18.111659348252108,31.426606585271657 -65.412291119111288,18.109038468707428,31.423309396021068 -65.424289400945369,18.100591929236174,31.388215366750956 -65.426835454139251,18.096577156728326,31.368626837618649 -65.451905072595991,18.088924535382301,31.349917969666421 -65.457335216472885,18.090606422388166,31.364115642383695 -65.466374447449013,18.090543401454628,31.372110584750772 -65.469293536772099,18.09547110574443,31.401726997457445 -65.480315829688209,18.09917985912552,31.432162717916071 -65.507791518183296,18.094474058980126,31.431842084974051 -65.52473592250638,18.084805577398704,31.394690745510161 -65.542614377108535,18.084005575288316,31.406871696934104 -65.559173813739264,18.088488268178246,31.446708160452545 -65.569833103975682,18.094443891135825,31.48912778776139 -65.571156154877855,18.100152554071308,31.521538354456425 -65.577388331822235,18.106051192465383,31.559536318294704 -65.576107336382279,18.11849546915122,31.626303556375206 -65.546726596327417,18.122155335926479,31.619053930044174 -65.512238563460514,18.135665860483087,31.660894926637411 -65.490355204527404,18.138737521895244,31.657439035363495 -65.468435667344806,18.146592123218412,31.68007511086762 -65.437582919511371,18.160484396490315,31.727441370487213 -65.400040971542367,18.164759249374487,31.716216742992401 -65.371896237989048,18.160341583856628,31.666254530660808 -65.334811259603939,18.150586253990639,31.578998651355505 -65.313997716416239,18.147121512661617,31.541021100245416 -65.30923859715385,18.147997474445518,31.541445241309702 + + + Delaware + + + Delaware + 0400000US10 + 10 + 1948.542999999999893 + + -75.565880948714636,39.584922116826128,134.279566376470029 -75.577225345276773,39.589817828163511,134.307954968884587 -75.579673462462836,39.59317767389598,134.321551928296685 -75.580569586640308,39.600329381016813,134.345733027905226 -75.566777075663779,39.592281815579909,134.304427921772003 -75.565880948714636,39.584922116826128,134.279566376470029-75.556823995308235,39.607497289974397,134.342804030515254 -75.562888163126658,39.606889264439261,134.347514173947275 -75.568648447532595,39.615416876871841,134.381509344093502 -75.572713700801756,39.625256450988715,134.417882561683655 -75.571752716633881,39.628440331916792,134.427141982130706 -75.560400428594164,39.631484303828891,134.424499960616231 -75.556823995308235,39.607497289974397,134.342804030515254-75.595804163949879,39.838949980180985,135.134075598791242 -75.594624293775624,39.839118773487719,135.13332278188318 -75.594040014267549,39.839164064629813,135.132826524786651 -75.58085755868548,39.840185918807634,135.121633204631507 -75.580806906029636,39.84018984521019,135.121590209193528 -75.540302721068812,39.839875191901591,135.076096349395812 -75.499798472121199,39.834976719545338,135.015869988128543 -75.454693976643668,39.821977605162722,134.924509338103235 -75.428991073468609,39.81087825578043,134.860543293878436 -75.415993591785821,39.80345265654109,134.822343182750046 -75.417047232559824,39.797497047008747,134.804259094409645 -75.438891006153227,39.785080196380463,134.788053565658629 -75.441576340437905,39.78259327853101,134.782959027215838 -75.449088173197111,39.775636486971969,134.768707700073719 -75.467202381252292,39.752437258375913,134.713576494716108 -75.467216381219131,39.752405259530711,134.713488394394517 -75.470192369742875,39.745281517812927,134.693719681352377 -75.475121401174817,39.737141800471406,134.672804758884013 -75.476337375761076,39.732725965832032,134.659857514314353 -75.504995759315861,39.699983031581482,134.585386077873409 -75.510695757312376,39.687783469971301,134.552162354812026 -75.530698428779019,39.694283047074649,134.59518619813025 -75.563200879851337,39.658383208853365,134.514725551940501 -75.588102525177305,39.652683231138894,134.52369721699506 -75.612924846608053,39.623640184795349,134.456983993761241 -75.614108867126617,39.622632215262342,134.455024149268866 -75.614332864387563,39.621960240226102,134.453093780204654 -75.615020857296358,39.619992313074839,134.447475704364479 -75.615884849815799,39.617624400440455,134.44075533747673 -75.615228812722464,39.616312458184964,134.43577952682972 -75.61430076399229,39.614728529022436,134.429621866904199 -75.614620766463858,39.614232546181391,134.428367480635643 -75.614188683085075,39.609080755332009,134.411192105151713 -75.614432682650076,39.608533775155848,134.409688339568675 -75.614428682135269,39.608504776346152,134.409589925780892 -75.614748682628559,39.607864799257129,134.407868561334908 -75.612860509292304,39.599241159034889,134.377827282063663 -75.612828506164931,39.599081165685845,134.377273212186992 -75.605595193329933,39.591593524140784,134.345010250806808 -75.604539149491842,39.590633571157881,134.340731641277671 -75.593178745686657,39.585241879858408,134.31070879008621 -75.592938734328087,39.584921894611199,134.30940605327487 -75.588698575891385,39.582346032335273,134.296372456476092 -75.588154554391494,39.581930053420578,134.294422868639231 -75.587562518330159,39.580554113247551,134.289306107908487 -75.586970495218239,39.580122135366949,134.287251602858305 -75.572552929713112,39.569402682039865,134.236567508429289 -75.571736899885181,39.56895470663958,134.234213767573237 -75.563987605882133,39.563914971644458,134.209311690181494 -75.565602621021938,39.5615970510365,134.203568939119577 -75.566589630324245,39.560184099415345,134.200070983730257 -75.570312493087073,39.542264785385406,134.145999007858336 -75.570371474754353,39.540799843498718,134.141306830570102 -75.571315339362556,39.528899311887713,134.103696456179023 -75.561680967550799,39.522148661057045,134.071135587058961 -75.567885980891901,39.509950098558967,134.038343873806298 -75.577389269136546,39.510871983730844,134.051829478703439 -75.588682421190697,39.498030405488628,134.022564051672816 -75.588682407749161,39.497046444911263,134.019365679472685 -75.594021341553628,39.480864049689643,133.972653148695827 -75.594021325309527,39.479674097395609,133.968783712945879 -75.59085401556608,39.463700763926504,133.913331469520926 -75.590391985675353,39.462490816248909,133.908884750679135 -75.581137580818705,39.452465294304382,133.866038559004664 -75.57986650439166,39.449559421326349,133.855177684687078 -75.571937201148913,39.444165702729279,133.82886204123497 -75.572782176768797,39.440576839870431,133.818113842979074 -75.556841598562713,39.432031313407407,133.772683324292302 -75.539462906718455,39.41818301168211,133.708391422405839 -75.536927736581049,39.41106531834815,133.682404919527471 -75.524533135901351,39.393265134996838,133.610713174566627 -75.522632030488879,39.389553299752002,133.596514742821455 -75.513945484595638,39.367836244140371,133.516109579242766 -75.51332154219125,39.367339407685385,133.513800159096718 -75.512737436580906,39.366874292702363,133.511638170108199 -75.50622516645106,39.360852588143537,133.484805404208601 -75.49510678278628,39.356296862159553,133.457669516094029 -75.492745676966109,39.353528992815988,133.446032174862921 -75.495070673116217,39.348264185805931,133.431417434476316 -75.494096630671692,39.347211236138044,133.426905976608396 -75.492636567245867,39.345647311005841,133.420190311968327 -75.491325513801215,39.344502367791023,133.415006426163018 -75.48079313654253,39.339156668866714,133.385934206657112 -75.480911127870741,39.338261703946948,133.383142810314894 -75.470271742005821,39.332505022446419,133.352609840221703 -75.461370449330417,39.329921198986327,133.334354422986507 -75.439973629350987,39.315069971406061,133.262253679335117 -75.437882514829042,39.311065149804804,133.246864147484303 -75.436497315363738,39.29923263804816,133.206671115942299 -75.436320298525857,39.298362674563919,133.203632669523358 -75.428898927177485,39.28673620374493,133.15744561702013 -75.409321086819318,39.266386183807477,133.069314469583333 -75.403908794917854,39.256314634289716,133.030398816801608 -75.405767731620472,39.247586971638569,133.003887361846864 -75.40687173316465,39.245320054241155,132.997685191221535 -75.406660461626572,39.225523855806237,132.932646281085908 -75.405689417877468,39.224355910886487,132.92775109782815 -75.397836103231839,39.217831238297457,132.897724627517164 -75.393958835370015,39.206202739918645,132.855358860455453 -75.395733670559679,39.190045379184731,132.804372478276491 -75.399527757056489,39.188307418785712,132.802861262112856 -75.401087800036933,39.188147412624595,132.804057703353465 -75.409209876722485,39.176316825723475,132.77424053195864 -75.411568699317158,39.157938550960473,132.716583278030157 -75.402135526982534,39.090457364381621,132.484671464189887 -75.402977260289774,39.068581246252741,132.413719293661416 -75.401236193536178,39.067341310710283,132.407719974406064 -75.396747978444594,39.060907608459601,132.381612157449126 -75.397218974411459,39.059580658594633,132.377770288847387 -75.388855643833338,39.052870998908638,132.346469329670072 -75.380814380023821,39.050487160748595,132.329747357405722 -75.346703077851927,39.026555409264425,132.213354202918708 -75.341829872313255,39.02165864778582,132.191859578713775 -75.31929280161647,38.98989112263034,132.062385212630033 -75.315889605456846,38.982475452118798,132.034199032001197 -75.312545335554674,38.969338014407782,131.987216053530574 -75.31348414410958,38.95276668253797,131.933624009601772 -75.313484120580625,38.950981755339683,131.927738616243005 -75.312860619880823,38.947618710326743,131.915960828773677 -75.312820054214427,38.947399906782586,131.915194517932832 -75.312480030371034,38.946334952958736,131.911307311616838 -75.303489696828549,38.940704254916255,131.882813953794539 -75.313219787782899,38.926296764743739,131.846028258092701 -75.305015400714908,38.914863297464741,131.799241233617067 -75.264050749126383,38.879056089094512,131.635792216286063 -75.2329634193283,38.845960691623532,131.492112551815808 -75.2062623768375,38.825093759249171,131.393651084974408 -75.191484735219575,38.808569554036943,131.32267620973289 -75.161679672269713,38.792933432512385,131.238069904968143 -75.159953609088575,38.791902488525878,131.232754654251039 -75.134952784847343,38.783952013622695,131.178897809237242 -75.114261197989094,38.784708147386269,131.158642344176769 -75.098032804013954,38.790413042746763,131.159704652614892 -75.094583773217252,38.795701853498869,131.173436934128404 -75.098126993810212,38.804810452197309,131.20750286243856 -75.094734905178385,38.80552145007649,131.206130836158991 -75.090402694236616,38.798907755436531,131.179463781416416 -75.083082157978595,38.773867839781829,131.088443888351321 -75.081145816331812,38.751823759233396,131.013224174268544 -75.080149633804723,38.739950254376467,130.972743948921561 -75.066437241011869,38.662745535980278,130.701292401179671 -75.066143863603244,38.634110717152502,130.605758807621896 -75.062846465977657,38.610586712558032,130.523863579146564 -75.062185443517009,38.610319728796796,130.522247542627156 -75.061404413448955,38.609729759299427,130.519424504600465 -75.060958396714597,38.609426775319946,130.517925270833075 -75.050672545943101,38.488109867643132,130.102239963598549 -75.049863074343691,38.452987328553618,129.984060311689973 -75.050192047621721,38.452988247130079,129.984426084905863 -75.053434177051827,38.4529972999729,129.988031109794974 -75.054407205014357,38.452998292256339,129.989107358269393 -75.067251574154994,38.453015190215552,130.003330011852086 -75.070833676842611,38.453000162568721,130.007231562398374 -75.071280730243018,38.452999662245929,130.007723108865321 -75.086739167083962,38.452982361801801,130.024724241346121 -75.08920623817788,38.452979600752329,130.027438272722065 -75.090574275751251,38.452978069697494,130.028943345881999 -75.142820742542128,38.452919597127448,130.086471339687705 -75.186340988938255,38.452736260253403,130.134012931957841 -75.253652924209021,38.453119710646213,130.209899020381272 -75.26128014407891,38.453214646163566,130.218679355457425 -75.342179247997095,38.453691964274114,130.310163181275129 -75.342182468453984,38.453691983275277,130.310166826471686 -75.356729885599293,38.453729865896527,130.326481251046062 -75.371987323802117,38.453828740279107,130.343796977773309 -75.394496968381532,38.453835560618053,130.368893901817501 -75.395720003987933,38.453881548959899,130.370410162955523 -75.411818467915793,38.454121410637427,130.389153975993395 -75.425765869823579,38.454331290659425,130.405407211743295 -75.429662982143114,38.454392257030719,130.409957526251674 -75.480086438121248,38.455419811669131,130.469674522057176 -75.501079044301676,38.455864625359141,130.494618085213006 -75.503898125906275,38.455940599657119,130.4980230005458 -75.522241656104882,38.456377434755218,130.519993198104203 -75.523667696879485,38.45637742334236,130.521588416770101 -75.534701016231324,38.456678322528148,130.534936203621328 -75.56015075157687,38.45728309357763,130.565442393533885 -75.560872772421362,38.457299087128142,130.56630430277437 -75.57504918292959,38.457710956407617,130.583556929603219 -75.584540459778339,38.458143862334737,130.595635150559247 -75.590246621042866,38.458005822305914,130.60157083440572 -75.594021730442506,38.458123787128578,130.606195763684809 -75.599008878789135,38.458574728397593,130.613289552740753 -75.631397817678931,38.459623424879325,130.653116084635258 -75.663784753716229,38.460478129168159,130.692328833974898 -75.666526833846277,38.460619101269735,130.695878941565752 -75.69446364752622,38.461846825523764,130.731367445550859 -75.697312148718424,38.494090464074631,130.84190290607512 -75.697631211204296,38.498184291653665,130.855883085168898 -75.699720604032962,38.523717215989493,130.943157208152115 -75.701122914712045,38.544432346304369,131.013595351949334 -75.702408957922387,38.561147813872317,131.070581316016614 -75.702509189949311,38.56245058897651,131.075021741911769 -75.704389562904382,38.586833564800635,131.158108943141997 -75.704925669234655,38.593779273199608,131.181768694892526 -75.706719017809547,38.616452321427396,131.259022987447679 -75.706805040316894,38.61798025759402,131.264188545756042 -75.707180117022602,38.623008046824872,131.281288136728108 -75.707530190418737,38.627836844512203,131.297697613947093 -75.708291332399796,38.636991460260212,131.328911459073424 -75.708297559644876,38.637070670214591,131.329181104898453 -75.722976218309569,38.823781651845664,131.963355774991214 -75.723547429762561,38.831562699749014,131.989677635021508 -75.723558340194529,38.831711321752323,131.990180348977447 -75.723830389767187,38.834859190405389,132.000873437151313 -75.724950601450729,38.848384626597223,132.046754714101553 -75.725009617737868,38.849483581058173,132.050446132197976 -75.726513931567297,38.869853733916628,132.119311769492924 -75.726777954353054,38.870997684900658,132.12337907217443 -75.746745815098194,39.116626500206792,132.953158119693398 -75.74707389704578,39.122009278840686,132.971165411174297 -75.748621251450217,39.144996332756143,133.048202333040535 -75.748624419947134,39.145035581450209,133.048334419727325 -75.756907878439591,39.247644105689766,133.393225958570838 -75.756916974969855,39.247755521645075,133.393600110895932 -75.761060041133675,39.298500538885655,133.563905368559062 -75.767623973682731,39.378896720883382,133.833300997503102 -75.767649600879579,39.37921770774846,133.834374899044633 -75.7801997360679,39.536411100230652,134.359297698363662 -75.780342252292982,39.538196148302767,134.365247304551303 -75.787851041244423,39.63224539821293,134.67835836019367 -75.788411152688639,39.639125119053467,134.701247023418546 -75.789577786290508,39.682410383697352,134.842557256110013 -75.789619803725046,39.683579336782323,134.846383085474372 -75.789357047566668,39.701698617398606,134.904658772051334 -75.789357051121115,39.701954607207696,134.905486032366753 -75.7893213490904,39.723477751007223,134.974982588551939 -75.740666642340102,39.774288135107376,135.085184907540679 -75.717930250919608,39.793662554648023,135.122575792483985 -75.686951614967569,39.81271805563226,135.149850371293724 -75.66378208113882,39.822813847360656,135.156864376738667 -75.642477561226983,39.830026737916569,135.156654749065638 -75.6356653879063,39.831827722935188,135.15496180485934 -75.596714350517246,39.838819768057533,135.13465638179332 -75.595804163949879,39.838949980180985,135.134075598791242 + + + West Virginia + + + West Virginia + 0400000US54 + 54 + 24038.209999999999127 + + -78.57293278936244,39.033665841608794,135.971965885721147 -78.566868537397411,39.027974130104845,135.946192591451108 -78.555253116924632,39.02134350644932,135.910653734579682 -78.558678118350784,39.014860743779579,135.893803748302162 -78.602686640524624,38.966276362404066,135.789701266214252 -78.711983183888847,38.91184948333968,135.746027866378427 -78.71516879317609,38.912850572349981,135.7531559439376 -78.717990388280441,38.917947140294785,135.773127994500101 -78.720789312606144,38.923809075419157,135.795552756637335 -78.7208403213276,38.924312054122282,135.797246377915144 -78.758313081138851,38.904877527758188,135.779868308454752 -78.780233531999514,38.89397278579176,135.771226917393506 -78.789066673236746,38.886798005222325,135.758724915795028 -78.809216812758009,38.857851028700814,135.689361732453108 -78.836226914747897,38.813176647064303,135.577243749983609 -78.870312157640356,38.764670365564541,135.461233442649245 -78.995037877601334,38.851776629265402,135.897290267050266 -79.000792979600533,38.847836741877508,135.891575041227043 -79.056395587436825,38.783889909959512,135.752324094064534 -79.058294337513615,38.763090760765117,135.687067065387964 -79.093596423507165,38.70182900584927,135.53131256904453 -79.093312402018981,38.700888047736854,135.527899184264243 -79.136513795022324,38.645738972153772,135.401641220785677 -79.136587792111541,38.64539698582891,135.400618228130043 -79.13741579590716,38.644082033572118,135.397356668487191 -79.138053788238665,38.642337101034357,135.392458758316934 -79.147782841761156,38.627501636455705,135.356133691035211 -79.148015845608711,38.627323641846338,135.355841648764908 -79.175553749976331,38.568215878408488,135.197108833119273 -79.175922757004003,38.567998884244787,135.196857667528093 -79.208925715091624,38.502115362985521,135.02255579829216 -79.208914710381976,38.501809375974474,135.021541805006564 -79.210744695207978,38.497261551311524,135.008944740518928 -79.211049685004937,38.495970602996039,135.005102453753352 -79.211067684751114,38.495918605027065,135.004954786039889 -79.226880886967052,38.481134236507565,134.976244487799704 -79.23266198770628,38.475729264026469,134.965748011134565 -79.235450049500244,38.474699282661533,134.965843153186142 -79.241101159160721,38.471529366081974,134.962496691383421 -79.243066133870428,38.46602058097487,134.946917871944606 -79.263952423492299,38.446275228461381,134.908279335126281 -79.264418424437224,38.445451259102335,134.906162342987955 -79.266369449389927,38.443461325761092,134.902076670899987 -79.268456457078969,38.440011452864525,134.893381527625024 -79.283705770721525,38.432710625524614,134.888461608439684 -79.281305625098824,38.427164881158305,134.867318197153509 -79.291571839028606,38.42244698915232,134.864653452299535 -79.29285585801955,38.421317025475751,134.862552658654749 -79.296754943477765,38.419819054081643,134.862503829412162 -79.298800975308922,38.418128107337118,134.859515412710607 -79.313319308036768,38.413566170939525,134.86266530957073 -79.477686468346946,38.458914787519824,135.216219742782414 -79.522519809691929,38.535601150117607,135.522644393146038 -79.537921479303151,38.552599295655455,135.597329428419471 -79.556523124718765,38.561898736850857,135.650911471806467 -79.599008472196019,38.574447826310404,135.744986042380333 -79.65013014687591,38.593194576643448,135.870087785646319 -79.670182519085785,38.512657790263447,135.63292673509568 -79.670182517743953,38.51256579414612,135.632626793347299 -79.696619759013771,38.479525951366959,135.558095531538129 -79.700060813817743,38.476832034221417,135.553633749485016 -79.689259159410213,38.45216117444852,135.459526757709682 -79.690016166450576,38.451223207307343,135.457416494376957 -79.690598080141456,38.444196499296375,135.435204391367733 -79.692431087280838,38.441243607732787,135.427867219783366 -79.732715236976759,38.375831016176576,135.264823823235929 -79.809766398978681,38.3111190708115,135.150328044779599 -79.811170373573646,38.306727244905638,135.137721954844892 -79.789999271273786,38.270394980951082,134.99191954638809 -79.7911882884828,38.269346014919279,134.989984212443233 -79.79562200779138,38.266548503409489,134.986419456079602 -79.893055130150259,38.205071838630047,134.908191307447851 -79.893401125378929,38.204090877383514,134.905411153100431 -79.917230512466503,38.186080431933149,134.876544365659356 -79.918117527237371,38.185435451498698,134.87555346172303 -79.922252590947849,38.182072557929772,134.869765059091151 -79.922082580209192,38.181648577570286,134.868157216347754 -79.926307269347376,38.152160799790288,134.776681580580771 -79.926568273142678,38.151932807191585,134.776264213956892 -79.929739282641677,38.146624005691663,134.7628517691046 -79.929803277284634,38.146132026156572,134.761316577903926 -79.934807284356083,38.137204363028317,134.738340050913393 -79.939450267215193,38.13225934804732,134.727990886196494 -79.932089719505072,38.103099847266101,134.622754020616412 -79.934966765381972,38.100865917093437,134.619065007194877 -79.960899958278802,38.065396204267167,134.535350304096937 -79.979482964459336,38.030782522662598,134.445036498829722 -80.003563095271645,37.994468866619357,134.356066374108195 -80.056334972591202,37.953405030861589,134.288029286079109 -80.131522125947271,37.894899005854178,134.191139059141278 -80.147188423420346,37.886158242292737,134.182354213669896 -80.148374476633506,37.887641167610205,134.188774148933589 -80.150022200021596,37.88776255244381,134.191288529895246 -80.16326072327125,37.876827500663715,134.172147557139397 -80.228151381333888,37.800594213938695,134.003460047766566 -80.232610498165101,37.794299455542522,133.988366284407675 -80.258470586078005,37.757793796212908,133.90079886186868 -80.26382447698883,37.74004651802418,133.84890297614038 -80.261372342415356,37.735227749195289,133.82977366168052 -80.260401473055211,37.732915696284849,133.820859718136489 -80.264995234978514,37.720848340890917,133.78678154014051 -80.288166533853129,37.698115120247181,133.741287699900568 -80.297197710629661,37.693495239886332,133.737620547413826 -80.29339649749916,37.685688613414023,133.706816902384162 -80.293317491907473,37.685444624731844,133.705905445851386 -80.271381409311275,37.650696333205957,133.562249754555523 -80.271410409337676,37.650643335252283,133.562111181207001 -80.268513291540273,37.647822484015336,133.549003451131284 -80.2682862840703,37.647725490273416,133.548388311639428 -80.265932213783472,37.647225533151286,133.543689497746527 -80.265888212815085,37.647240532893136,133.543682528659701 -80.264349165470691,37.646815565195126,133.540284752845764 -80.264339164932721,37.646796566111774,133.540208742022514 -80.255526889370927,37.644047764789491,133.519706422463059 -80.25548888862015,37.644066764303261,133.519720500335097 -80.240345415698712,37.639387103765074,133.484637037850916 -80.222040783896716,37.629482698962526,133.428116820752621 -80.224442783527621,37.624900876958357,133.415985469706357 -80.241329007212514,37.608677432406807,133.383835533633828 -80.289823954392475,37.583677087782668,133.363324824720621 -80.313451082536659,37.547957434980489,133.275020544417202 -80.331364421157289,37.537962711003736,133.264931957237422 -80.315863507666833,37.502663392819166,133.12728069908917 -80.321684634435798,37.500600430927697,133.127943244762719 -80.426715752665615,37.451597635242535,133.1008161874488 -80.444085050999192,37.439847994528975,133.084201628342271 -80.465880464103094,37.42786632449166,133.072576249949634 -80.476661706892003,37.424671367922414,133.0759451771155 -80.495928392300414,37.436791663299481,133.141452686861157 -80.512453492478087,37.48339147232727,133.318277019076049 -80.623728776335653,37.435027591246914,133.302212884649634 -80.771149836914418,37.374084939851876,133.291984199546278 -80.777717171956013,37.385400382716838,133.338337041437626 -80.77783418147817,37.385852361778305,133.339997651055455 -80.799937934801235,37.397527648533348,133.407924111932516 -80.812708440497005,37.409227018635619,133.463673477061093 -80.859430976302377,37.42988668759596,133.593839125707746 -80.859544349504873,37.430019386104568,133.594429864548147 -80.860627028030422,37.431286615241802,133.60007116291672 -80.860629361930521,37.431273697467297,133.600031225010753 -80.863831860578983,37.413548365888076,133.545216626487672 -80.873659560065093,37.374068013847577,133.426582667976618 -80.850520584587741,37.348631343373583,133.311320613138378 -80.901605487593926,37.316723287877295,133.272067346610129 -80.920329858790041,37.307886508302524,133.267237635329366 -80.948967471898598,37.297595703269124,133.270637990906835 -80.967627913627695,37.293881698264919,133.28285765927285 -80.974961097754687,37.293167663372351,133.290152305737138 -80.981116443179999,37.294841094275533,133.303864849731326 -80.982394323325366,37.295188506804259,133.306711721234024 -81.035725696886516,37.292474143174026,133.36810558848083 -81.085086912689221,37.286123975683751,133.412207419984043 -81.113671584613613,37.280219976945077,133.430354902520776 -81.168105800909416,37.264604172576817,133.450400441884995 -81.205851514782452,37.244736708343133,133.434185080230236 -81.226181935465632,37.236597883671074,133.434023171663284 -81.321186361993668,37.301043165543597,133.77535817399621 -81.363239021255538,37.339405085576779,133.959096565842628 -81.367398105688537,37.33764512524511,133.958778632804751 -81.368135104696563,37.336222181358288,133.955024481751025 -81.369173102197394,37.334141263788204,133.949481181800365 -81.370462127637367,37.333545278318645,133.949214613065124 -81.368682019571736,37.329287482741549,133.932670671492815 -81.37239806799721,37.32583360135213,133.92612359393388 -81.378432145766382,37.320165796617239,133.915294414386153 -81.381242211115691,37.319556797812631,133.917011707089841 -81.38521032660951,37.320314727982343,133.924823769368231 -81.385997350745271,37.320550710345699,133.926658404991031 -81.386893392351951,37.321803646759676,133.932023978792131 -81.387810422111613,37.322192621170146,133.934541204944253 -81.38921545095647,37.321621633543351,133.934513127431273 -81.410279520727101,37.287790936925894,133.849935609847307 -81.410812517076536,37.286556986653146,133.846535659395158 -81.505253504995252,37.251835659213462,133.85701569262892 -81.505965489036384,37.249417759855078,133.849909246899188 -81.508410354061752,37.235521353536413,133.806853694841266 -81.558401293703952,37.209419053313439,133.786759679205716 -81.559439327392084,37.209867023908167,133.789645367302001 -81.561711365829396,37.208385068856835,133.787747750990093 -81.679692402149286,37.204188171702903,133.932141390629113 -81.684633660904097,37.213172727182176,133.968734929338098 -81.729285240346869,37.24154205653894,134.12329974770546 -81.734411350310751,37.239846084572086,134.12454941496253 -81.739469920029094,37.24263584753173,134.140645690262318 -81.745382725225411,37.245896714893981,134.159459696151316 -81.744511726621582,37.247576648371478,134.163880269043148 -81.744596753994315,37.249319570243337,134.169796912930906 -81.748748104281248,37.266046789871297,134.231054611504078 -81.752382211162583,37.266848720777631,134.238613097928464 -81.75321523931828,37.267285693711372,134.241188026964664 -81.75400427511606,37.268331640042135,134.24572991207242 -81.756104346161237,37.269437571616663,134.252235569059849 -81.75862344530006,37.271727446818531,134.263243893161416 -81.758806466193732,37.272841395729806,134.267196008935571 -81.758822478316532,37.273651359664008,134.269912020303309 -81.758723505616118,37.275720268835293,134.276661103591323 -81.761312591590411,37.276971189471993,134.284306399524212 -81.762844638399869,37.277430154980259,134.287894875742495 -81.763868660599456,37.277108159805572,134.288202027790248 -81.764928685896066,37.27693515769203,134.289053256623447 -81.766287719813349,37.27681615042399,134.290486573241651 -81.768929776330054,37.275933165188697,134.291105786338449 -81.775776964405964,37.276524075770773,134.302288636565208 -81.77583996663607,37.276564073415408,134.302506488747895 -81.794518555064741,37.283390598204569,134.350359598174691 -81.794732568111627,37.283904573438491,134.352356844581664 -81.810277987393562,37.284719393661348,134.376005533151329 -81.811653023100405,37.284696381972871,134.377781543880701 -81.843404892460427,37.287271974172761,134.429137704893947 -81.844261915349037,37.287301964915088,134.430392889305949 -81.855154284277717,37.293067608480861,134.464242758229375 -81.854583318767538,37.296478462541394,134.474807390011847 -81.855560419390528,37.301652224144654,134.493315895088017 -81.855073413605865,37.302133207332183,134.494257282465696 -81.865855811967137,37.310118753576894,134.535325136035681 -81.866314830306351,37.310553730049492,134.5373889580369 -81.874309275367509,37.32677893711714,134.602050204761326 -81.879439464598107,37.330550722510964,134.621490322984755 -81.879809516670548,37.333466589937338,134.631668517366052 -81.88069754460561,37.33378756749147,134.633931550197303 -81.881982564790306,37.332859596680059,134.632584354840219 -81.886171667563474,37.332378579156455,134.636637753807008 -81.888048717616542,37.332438559100702,134.639368710108101 -81.888818744056763,37.332869532874426,134.641837906092405 -81.893972864237156,37.331847530360477,134.645398513413966 -81.894869887316275,37.331818523329055,134.646512404084206 -81.895864931935336,37.333094457589013,134.652089856564999 -81.895893941869346,37.333725429373288,134.654223227873445 -81.896585960144648,37.333735422514458,134.655190011486411 -81.8970979727589,37.333680420203294,134.655698237009346 -81.90055618421367,37.341990020134361,134.687940309755504 -81.900592197158431,37.34281498327077,134.690726296044886 -81.904089306793267,37.344052896020813,134.699551912024617 -81.904892338162654,37.344762857136146,134.702990990132093 -81.90704239049083,37.344487849368761,134.704979472793639 -81.907465401354884,37.344472846109056,134.705500456504524 -81.908419431572867,37.344831821363918,134.707978772930801 -81.90899245624756,37.345495786648826,134.710954887792468 -81.91197260630986,37.350441540027475,134.731383899226785 -81.912584623945406,37.350551529479262,134.732574589550495 -81.921808961377394,37.357128152737289,134.766836494207382 -81.922668998576242,37.358135100182508,134.771336702629924 -81.926741118264843,37.35902802285635,134.7797937002033 -81.92768716673757,37.360653942106765,134.78646248485893 -81.931013365316673,37.368300572811549,134.816306428052485 -81.931292374652543,37.368439564069938,134.817143805325031 -81.93499355937351,37.37445826338282,134.842091937549412 -81.928588982701385,37.414960532086781,134.967642929404974 -81.936720563529107,37.440105345816519,135.061848310753703 -81.950467030666786,37.447394896065461,135.104507487267256 -81.969895625118781,37.453203458759575,135.149932756088674 -81.988107152064543,37.456585139833294,135.18569512013346 -81.993371378580349,37.462622824281915,135.212765583768487 -81.997679723183509,37.478411087471372,135.2707709223032 -81.994017719138967,37.48467484533014,135.286528026685119 -81.943740780231678,37.510549173452567,135.30421226285398 -81.928970440618713,37.513823166851189,135.2951280772686 -81.96939887922251,37.539501659083641,135.434381461702287 -81.999279741136505,37.544785147544907,135.492100947536528 -82.000946777466766,37.544282154119649,135.492689721286297 -82.009376862812843,37.535060481429241,135.473633711226285 -82.049624884695447,37.532781205762802,135.520439732819796 -82.117690089485009,37.561289313367588,135.70642202347517 -82.12699854700314,37.575731590443148,135.766595657914877 -82.12670761321796,37.580721373602195,135.782639073207974 -82.142921275523705,37.59675151636619,135.857351003214717 -82.220780028260279,37.644742675314752,136.12056836951524 -82.251391049464587,37.659471740166289,136.210421314463019 -82.298123713501553,37.688967004685892,136.370589687488973 -82.308348286167899,37.709362013370068,136.451358468271792 -82.326853192019897,37.737490605299442,136.568658095784485 -82.32751794947913,37.742506730343393,136.585995882749557 -82.320137362293124,37.760582657153776,136.63520744536072 -82.330981901707844,37.777586810107863,136.705579023808241 -82.401352326527544,37.85351878508687,137.049234306439757 -82.41879763112361,37.872342835257299,137.134347756393254 -82.475786726380136,37.912070559601752,137.341240502893925 -82.501507797162887,37.938199175335797,137.461284453049302 -82.498479982347945,37.947018495557174,137.485895235091448 -82.498421852921012,37.94718781305783,137.486367673613131 -82.466108482452142,37.978538755965921,137.544590796343982 -82.465217543961643,37.984116521737533,137.561532798223197 -82.466594615750893,37.986459406665247,137.571022180840373 -82.48885440608997,38.000008604883135,137.645271299406886 -82.510935029750527,38.002927267134261,137.684708339162171 -82.520788399351119,38.010215856026846,137.721770385280252 -82.540263376823958,38.040769341758768,137.847462915815413 -82.548408927087038,38.062769308265715,137.92993894033134 -82.601254177050293,38.119061359562906,138.184188743121922 -82.6037452571789,38.120022294002901,138.190683165565133 -82.622291818904841,38.124910904074795,138.231697753071785 -82.637594445342756,38.139531123468849,138.299822005443275 -82.645868088163795,38.16715684739075,138.400461963377893 -82.605359288229849,38.24896969998747,138.609939231537282 -82.59609901622342,38.247119868946541,138.591419502161443 -82.585129742077442,38.248037934828453,138.579525983892381 -82.579382721481636,38.256475625915151,138.598990212194622 -82.575784767096962,38.265539269436992,138.623381315730512 -82.57300649821704,38.317445058748454,138.787073209881783 -82.59413897601577,38.37674330348954,139.006670672446489 -82.596513157328886,38.384372952622861,139.034435529261827 -82.596500157142259,38.384382952318518,139.034450127743185 -82.598244673111481,38.414540639941862,139.133816634304821 -82.597412726066352,38.419340441899507,139.148124690167606 -82.594804721754457,38.423468289886465,139.157870690338314 -82.561794579533654,38.405998358531306,139.057093312963843 -82.521307562759901,38.409242609610267,139.012872463092208 -82.507798751806192,38.411753100020064,139.002724743448198 -82.341765340502874,38.442608906016282,138.878532282076776 -82.331460123125339,38.446160852813946,138.876123427413404 -82.325124029562247,38.450928709433505,138.882958425208926 -82.321348011160481,38.456176520954244,138.894774000160396 -82.315060055535255,38.469744000504164,138.929977950640023 -82.296696685002544,38.541440112084786,139.13574411906302 -82.294396943713551,38.561939259274773,139.198461275547743 -82.294997153125834,38.574338724567994,139.239048139192164 -82.292397182560677,38.580638480935079,139.255774425342679 -82.288227655285866,38.584243523132621,139.261754787527025 -82.27539596132668,38.595338017909739,139.280159581452608 -82.263195708009192,38.599837943533785,139.278266070410609 -82.247094285524497,38.600138085602879,139.257694534957409 -82.220091462861461,38.593338634842098,139.199790335260332 -82.194947817480724,38.594751816154343,139.170731739141047 -82.183090600676422,38.601039662186309,139.175069472752512 -82.178390544457073,38.605439519947808,139.182908342219889 -82.176290561968727,38.610139340005219,139.195179406553507 -82.173189648055114,38.620938910089286,139.22567302454263 -82.17318975260504,38.627638624994248,139.247153165750206 -82.183592324149714,38.710433006958681,139.52616345603019 -82.189393875319283,38.735731878018122,139.614796807058156 -82.2000085291114,38.759373773725976,139.704494147561491 -82.221576354861298,38.775386887466667,139.784382663667202 -82.222693596333599,38.788834307320933,139.828800112940371 -82.216886603658011,38.799108928505959,139.853851568885148 -82.192299227581088,38.816783418128161,139.877494012005627 -82.185555069901909,38.818175424335791,139.872956403531134 -82.140405653236627,38.868051753049699,139.971937483176589 -82.099888716798048,38.959929619671627,140.210652218200266 -82.094292076006198,38.972620793466056,140.243587339296937 -82.052689334584031,38.996018211961115,140.262857033871114 -82.04678932578058,39.00541787418679,140.284918775781989 -82.042689439718487,39.019517321925377,140.324287266470492 -82.037089410444864,39.027117057114914,140.34101786557585 -82.018687990869111,39.031717041812094,140.331296037882566 -82.003386546290059,39.029517281755297,140.304085906594992 -81.936742153971537,38.991141534454677,140.0940873157233 -81.920905398088522,38.970136569001006,140.00635174382478 -81.901716398297737,38.939315048921465,139.882884836755693 -81.89959121435966,38.931247408633453,139.854377286508679 -81.902031196813752,38.925982606667077,139.840822578407824 -81.92779252395357,38.902956328377925,139.801457319408655 -81.92947347549844,38.897016562369529,139.784741582348943 -81.92808837917967,38.893247734412938,139.770893788896501 -81.909765682504727,38.880106463949929,139.704767640680075 -81.875976820979247,38.882820673744838,139.668800933286548 -81.761112444122602,38.927473895164219,139.659851811826229 -81.75724846155299,38.935190607796656,139.679375513456762 -81.765371964842444,39.016921099722786,139.95038057025522 -81.77397336765307,39.027820560448951,139.996358760632575 -81.794424140487109,39.041993770392274,140.068310799077153 -81.80447552608014,39.04931836709622,140.104809305630624 -81.812775937049338,39.061217789137018,140.153537987731397 -81.815276224057499,39.075117183412168,140.200980085879564 -81.81347631181886,39.083716840962431,140.225925015285611 -81.748372772570335,39.097016910545037,140.182658806443214 -81.748372789217001,39.097017493524795,140.182660677470267 -81.750810201933334,39.18237770182472,140.45663589425385 -81.750974286832744,39.188124083561895,140.475058403797448 -81.741182089316752,39.192287004355002,140.475416083820164 -81.722671894681369,39.21408192609502,140.520207579247653 -81.696844724728848,39.244492258391155,140.582684479653835 -81.606934823396415,39.277483752392683,140.569650029763579 -81.543464334074088,39.354504169951909,140.73045767005533 -81.468861125513286,39.405402782312599,140.794240888208151 -81.457259898795002,39.410902666594005,140.79654760658741 -81.447659656074393,39.412002713336783,140.78756788931787 -81.436758330199225,39.410102896393397,140.767436088062823 -81.413821487450662,39.396247688516851,140.693959917873144 -81.407804220349803,39.389720015821716,140.665545344352722 -81.394908292219242,39.353337643160387,140.533857432194054 -81.385669910688421,39.345081073111523,140.495774487033486 -81.377074649878438,39.343329227835177,140.479094465263188 -81.372384228783574,39.343693894576518,140.474169971421361 -81.358024156853844,39.344810348810995,140.459097905084491 -81.348679944561169,39.347402330969814,140.455194913782179 -81.296484996464429,39.376921609876042,140.481014181859791 -81.27182749538477,39.387545406766741,140.482737615704536 -81.250198972479453,39.391623444995844,140.467699184082448 -81.224691217015135,39.387693850662572,140.422354051843286 -81.216727040788584,39.390233821820509,140.420111058279872 -81.128804767878464,39.466508253254595,140.547895355150104 -81.064694993018634,39.522124843002032,140.641090801917017 -81.039798319299422,39.542091294988246,140.672141420654953 -81.021162359512445,39.557036825744348,140.69538804050535 -80.944888093797445,39.608551442845574,140.760162345133722 -80.893312838524423,39.618381531646904,140.725294082425535 -80.881464576872887,39.622331482864865,140.722626161761582 -80.832975600156374,39.707277477907525,140.928200785070658 -80.830868640960588,39.713461246066728,140.944962175562978 -80.829723177397383,39.72246943426682,140.971821328625083 -80.813447862403422,39.850462305384525,141.352809314616024 -80.807285963770553,39.898920942428454,141.496741451323032 -80.810726192338734,39.907240573043929,141.527136742137372 -80.809829279441686,39.914184300798333,141.54772446770221 -80.807125278435848,39.918744142255271,141.558561881072819 -80.760561658067701,39.959845926558572,141.62812792416662 -80.744272384420896,39.970725643044524,141.641531757079065 -80.741232327684415,39.972405604291112,141.642938539385796 -80.733158363831876,40.034849953631095,141.827738131396472 -80.732611166460117,40.039082000285376,141.840252387337387 -80.732011339162199,40.050781535326053,141.875993926078081 -80.734211555283977,40.060381128233715,141.908711109310389 -80.727611863887688,40.090679973716796,141.994834488257766 -80.7065903213403,40.154652608510922,142.167541795410216 -80.704160413725418,40.158836573087783,142.177499564364552 -80.686499340855889,40.18924649705734,142.249851084314287 -80.653206340037286,40.246572443202069,142.386128672398627 -80.645706234915579,40.252872263547033,142.396270946599543 -80.638306091761095,40.25667218275553,142.398777005262673 -80.617803934397855,40.281871373969118,142.451270585879683 -80.604002989113241,40.308669438355878,142.517107629217207 -80.601003079077401,40.319269045049538,142.546220540069044 -80.610422041078181,40.362066252371903,142.690663285553455 -80.620305664868383,40.383365311269806,142.769000919535756 -80.6184557246591,40.39760033142359,142.810743904672563 -80.613405345395108,40.436462270627892,142.924629967659712 -80.600304766366563,40.484159507457207,143.05563169810921 -80.611370212736247,40.492555068925903,143.095392829738557 -80.668031157840517,40.575253256372122,143.421283196657896 -80.669071333328773,40.584084897992682,143.449784386903048 -80.667006362652799,40.589316711609605,143.463312787935138 -80.635468954971685,40.617682898064075,143.511224890127778 -80.628284818513563,40.62152381610732,143.51407443638891 -80.602607193098294,40.626974849089279,143.498801099136472 -80.595177957310497,40.625251988507451,143.484230242669582 -80.590153758510084,40.621716176105693,143.467079819180071 -80.561832027409039,40.625268309085833,143.442699827253819 -80.520102113443215,40.640389115890144,143.437264908105135 -80.520149743442445,40.617979997049204,143.368328997865319 -80.520196744654939,40.617973996833335,143.368369047529995 -80.520196310646,40.591751029429204,143.287582592107356 -80.520165309979532,40.591763029254444,143.287580955773592 -80.520166117235803,40.519514879371499,143.064734997227788 -80.520163117152194,40.51951487940029,143.064731258898973 -80.519800321039867,40.478959909865821,142.93901429604739 -80.519105072951973,40.401241552072442,142.697742390446365 -80.519098131535657,40.400465602559521,142.695331170223653 -80.520159478490527,40.174377599505362,141.994668431580067 -80.520159478053245,40.174350600585406,141.994584364816546 -80.520207267743203,40.161279123150052,141.953938134014606 -80.520061946026388,40.079699394312598,141.699409125372767 -80.520109929818645,40.078611437527314,141.696073886007071 -80.520220957791253,40.018022871230194,141.506974514573812 -80.520307109195869,39.964996005653362,141.341228674165905 -80.520318094162917,39.964039044120518,141.338247359730303 -80.520316978536357,39.963814429976722,141.337542943656445 -80.52030304519387,39.961009166394646,141.32874496653676 -80.520275000422842,39.958263277356224,141.320114498957992 -80.52021471915846,39.940803982021606,141.265373757109046 -80.520347687284016,39.938583070356195,141.258585650473833 -80.520438258263894,39.723027799216979,140.581806702539325 -80.422481554878473,39.722814731711573,140.457686100155115 -80.310547466888835,39.72289078148588,140.317234069108963 -80.30974144492825,39.722909788284703,140.316282329149544 -79.91734544931073,39.722422477073628,139.824693297035992 -79.854208821262276,39.722344065126912,139.74605449102819 -79.853981814958928,39.722344067234317,139.745772875845432 -79.764849339663954,39.722407891186002,139.635524521581829 -79.61169408589025,39.722878287932495,139.447822106070817 -79.609294017647386,39.722787313756861,139.444575379602611 -79.477729349897473,39.722712528424594,139.28242917265743 -79.479930505419176,39.533331194762496,138.683877746574581 -79.48341849543776,39.526324448195616,138.665876375511289 -79.483712452961072,39.523006580661516,138.655678295530379 -79.488711928348494,39.28158541185956,137.891129300929606 -79.487797876112154,39.279801493479816,137.884286802262068 -79.487239661951264,39.26662304013864,137.841391234658659 -79.486934652521128,39.266558045588319,137.840805778279901 -79.48793279309524,39.207616461754824,137.653106735087931 -79.403969130312902,39.251760408608391,137.690866299904883 -79.379744786337767,39.273573732330227,137.730889574624598 -79.281095268371089,39.341728040167382,137.827712031081319 -79.257935668441661,39.357728387504316,137.850469511933625 -79.214246630630115,39.369548299981233,137.83468100707978 -79.202730487982876,39.381376920600928,137.858407128602266 -79.085502599316172,39.473004243003118,138.007923212833703 -79.068124205957716,39.476306532805516,137.997269003652036 -79.043491546391039,39.480987297995298,137.982186138629913 -79.026731870570359,39.467188011447092,137.917676853947341 -78.970044926467594,39.443193500791672,137.771936693228781 -78.875791506776025,39.524259052086862,137.916513273492455 -78.825835123560466,39.591878759064052,138.071805886924267 -78.788507465782246,39.629136114428448,138.145459624938667 -78.761542616593516,39.611629538270257,138.057086576707661 -78.77007450913672,39.601516456940359,138.035138319246471 -78.773093247394257,39.595479141763455,138.019528068602085 -78.768535474649767,39.589133386246637,137.993778495118022 -78.761241189812637,39.583800667902295,137.967952531762421 -78.690497658623912,39.547418778068355,137.76639630459249 -78.677261210010258,39.542271105548423,137.733984253369272 -78.658365535493388,39.536736978609021,137.693516410887241 -78.657025553250037,39.536344527316402,137.690646855160594 -78.566967795980858,39.521094951778501,137.533454053103924 -78.46967502098785,39.518440927663498,137.408104190602899 -78.437974458279342,39.54061031150222,137.44105439633131 -78.433068648586811,39.562703460456142,137.505856174975634 -78.451243306734199,39.5725389003223,137.559076495468616 -78.45541247520255,39.575968724333698,137.575036508962512 -78.459492691964201,39.582807411217317,137.601785155013204 -78.458223748922336,39.58902817087948,137.620146659202874 -78.43128652541283,39.624937959678235,137.702616470865905 -78.356252667064098,39.642223930694371,137.668148227967322 -78.335078150379701,39.63741834920021,137.627530816942453 -78.314066333942776,39.632649692615587,137.58723468799144 -78.284071330661831,39.622119384362016,137.517827905714512 -78.272153981898882,39.621291523665278,137.500982257537544 -78.225368308354106,39.664918179557702,137.584695279598236 -78.192137769961477,39.691909387488856,137.631395796313882 -78.183789605876726,39.696757266464374,137.636959712021053 -78.177655445057368,39.697614286415202,137.632414070889354 -78.144507424430273,39.692059803965719,137.575352585874498 -78.108862292590956,39.683785452807911,137.506671160459518 -78.075622122487133,39.668335368957898,137.417929828166962 -78.03701757151309,39.63737095747301,137.273216017521918 -78.024451654586088,39.621511285868188,137.207595817744732 -78.01100935097331,39.604545510591933,137.137375624850392 -77.94746428705011,39.586563795842117,137.004648715257645 -77.903669787299521,39.589449644028129,136.962195844389498 -77.885556505782205,39.569828746034119,136.877919405698776 -77.887155219556533,39.562087313984819,136.854975487105548 -77.889965233504739,39.557605470321882,136.843913812190294 -77.866441989701713,39.518129272120916,136.689452137798071 -77.846123148774439,39.499943185815034,136.607063572853804 -77.826428365055534,39.495694526420955,136.570186858065426 -77.80883797549096,39.491899837611413,136.537257604300976 -77.76645687880152,39.430235705748338,136.288936527445912 -77.740217515375917,39.387393672865272,136.119995562359691 -77.761448515433642,39.345836176672201,136.010985552333295 -77.761599443066544,39.340529391189648,135.994039178825915 -77.756802235727434,39.335564634910263,135.972358780913055 -77.728391255780792,39.323332379795268,135.89937496278435 -77.720041011799509,39.322791474411126,135.887788084335625 -77.751279436424014,39.290951499248742,135.821772711351514 -77.754369394861655,39.281998837199261,135.796488595195115 -77.754072352501097,39.279638935966673,135.788511103950441 -77.754117344691466,39.279007961294063,135.786524883471429 -77.756205372766999,39.276859030735594,135.782043653540313 -77.756710378171988,39.276243051455005,135.780648742802441 -77.759424377470836,39.270865247106826,135.766469130292535 -77.759745370958413,39.269782288472527,135.763347261585295 -77.762229377937572,39.26538944600852,135.752078602090478 -77.762780383577933,39.26469946935682,135.750498475506902 -77.769012482320036,39.259325634357232,135.740483071655035 -77.770004492504583,39.258085676313087,135.737645410001278 -77.768289342872649,39.251048978305896,135.712865139357746 -77.772427278564678,39.238445456715361,135.676987747661769 -77.823194322176278,39.141657973711254,135.423624808900058 -77.829169380922693,39.134002235497725,135.405885467305779 -78.033861049980743,39.266069047866658,136.076192090287805 -78.034203048293435,39.26629041655103,136.077313574962318 -78.034204952125222,39.266291648863429,136.077319816686213 -78.229793416740748,39.392892155491822,136.718271722085774 -78.348118848350623,39.46766706889332,137.099796716123819 -78.363297680959079,39.35944333698815,136.770440626889467 -78.341510005615646,39.355151704813366,136.730528101325035 -78.359970025253503,39.321144928495102,136.643248500302434 -78.361065030887687,39.319431988718648,136.639048738405108 -78.400815067969489,39.245792646842908,136.449576299637556 -78.400699060986724,39.245537658305032,136.448614864610136 -78.424998276926786,39.213713746679723,136.375214651226997 -78.428941337183559,39.210275852692995,136.368869525380433 -78.430833366864292,39.208678901409442,136.365994859486818 -78.432197386527093,39.207408941397041,136.363539589568973 -78.433160398504086,39.20638197497366,136.361385567113757 -78.438083464098028,39.201431134382851,136.35133886244148 -78.439681483782181,39.199714190641281,136.347723017446697 -78.427752202645848,39.190568634551219,136.303847783245146 -78.411769321532674,39.173649506434742,136.229988713748753 -78.419406312053525,39.158323068029453,136.189682494848967 -78.440458544421716,39.133813888784466,136.135852792300284 -78.46089884272979,39.115019480843884,136.099746468476951 -78.509162832386878,39.090299071455156,136.078075639903545 -78.545142579515911,39.058345947888775,136.018206967040896 -78.57293278936244,39.033665841608794,135.971965885721147 + + + Wisconsin + + + Wisconsin + 0400000US55 + 55 + 54157.805000000000291 + + -90.45820167402222,47.017984423077898,174.096478498540819 -90.456825057855838,47.024997538700767,174.111556209623814 -90.456776000469191,47.025247459589053,174.112093475647271 -90.457532822423289,47.033332067722114,174.132704054936767 -90.457905086895806,47.037308712530965,174.142840384505689 -90.458601933835297,47.044752647474617,174.161811931058764 -90.45865362244021,47.045304801134385,174.163219000212848 -90.457027935854413,47.05257764579823,174.178570785559714 -90.456639044060509,47.05431743360667,174.182242819108069 -90.456549834247895,47.054716532142862,174.183085141703486 -90.451098056254708,47.066211270869907,174.203369820490479 -90.450609484429364,47.067241394550862,174.205187473446131 -90.450601032082162,47.067259215805684,174.205218921415508 -90.450549798755489,47.067291637489603,174.205226710997522 -90.449965285326726,47.067661531675562,174.205315631814301 -90.443494032083095,47.07175669670886,174.206300825811923 -90.440260266232372,47.073803101690451,174.206793652847409 -90.438796927663901,47.074729137612188,174.207016780972481 -90.436913369318944,47.075114066856088,174.205352715216577 -90.436288205130893,47.075241827155388,174.204800426028669 -90.436068928249043,47.075286639191376,174.204606711864471 -90.429895281814638,47.076548302812689,174.199153462424874 -90.428612639829851,47.076810427108775,174.198020643554628 -90.426802744411333,47.077180302387468,174.196422254666686 -90.418797505978546,47.07881627524651,174.189353772439063 -90.401758595125258,47.078509267591315,174.165151352062821 -90.400438380261619,47.078485479913681,174.163276376202703 -90.396891904831293,47.078421579393265,174.158239850774407 -90.396694773348017,47.07826332537168,174.157585704699159 -90.396475299268332,47.078087135068806,174.156857418827713 -90.395373094633115,47.077202302705288,174.153199899941683 -90.395354828231461,47.077187638728319,174.153139285743237 -90.39524812867289,47.076105720525646,174.150375289842486 -90.394639493346929,47.069934245381269,174.13460744637996 -90.394635231038578,47.06989102618229,174.134497013874352 -90.394601665854495,47.069550680000361,174.133627372793853 -90.394559576839953,47.06912390338978,174.132536871358752 -90.394765529614219,47.06800000218076,174.130101166665554 -90.394801512368389,47.067803641336205,174.129675609059632 -90.394866202544975,47.067450621730515,174.128910533152521 -90.394875492292215,47.067399926817423,174.128800666891038 -90.395031355217156,47.066549370043106,174.126957279630005 -90.395736880780206,47.062699259218277,174.118612602353096 -90.39583641258352,47.062156106020531,174.117435318417847 -90.39751260713372,47.058218903790674,174.110215677879751 -90.397701611207822,47.057774953382186,174.109401575289667 -90.397799121592215,47.057545911891282,174.108981563709676 -90.401591101830746,47.048638954991432,174.092646727338433 -90.401743127251208,47.048281863509871,174.091991785913706 -90.401889200258665,47.047938753611319,174.091362482868135 -90.401933168665749,47.047835476517633,174.091173061169684 -90.401951385432156,47.047710347067131,174.090895272791386 -90.404829487803568,47.027940903934827,174.046996467746794 -90.404844407177791,47.027838424019876,174.046768854372203 -90.405022647657006,47.026614105302464,174.044049520045519 -90.405431541149824,47.026111859188006,174.04339668340981 -90.406556503167849,47.024730062188851,174.041600573807955 -90.41096064355655,47.019320432505097,174.03456889372319 -90.413495675733685,47.016206638672116,174.030521411448717 -90.414409419057094,47.015084282775724,174.029062502086163 -90.414656195855329,47.014781165491968,174.028668488375843 -90.414951567802348,47.014418358523059,174.028196889907122 -90.426874355273497,47.008774000882894,174.030964368954301 -90.428843484277223,47.007841797037344,174.031421916559339 -90.429796611305022,47.007390577905035,174.031643435359001 -90.429961457612052,47.007312538141775,174.031681749969721 -90.43092078218227,47.006858385035706,174.031904748640954 -90.431062972529801,47.006813393822675,174.03199187386781 -90.450381575454671,47.000700690692263,174.04383594263345 -90.455143381648014,46.999193981957056,174.046757346019149 -90.458969680837569,46.997983282027405,174.049105376005173 -90.465603402071636,46.995884270566997,174.053177395835519 -90.465611184032696,46.995928936650593,174.05329632293433 -90.466989665623103,47.003841000362016,174.074360385537148 -90.46684527463286,47.004024640746778,174.074605796486139 -90.459212700288134,47.013731956304113,174.087578038685024 -90.458977740313301,47.014030784791451,174.087977371178567 -90.458839375666685,47.014735677869595,174.089493089355528 -90.458796398808616,47.014954621730574,174.089963876642287 -90.45820167402222,47.017984423077898,174.096478498540819-90.638243414305919,46.862573617324273,173.96900463104248 -90.63791147856351,46.862955573199464,173.969470447860658 -90.635573259118487,46.865646144123858,173.972751752473414 -90.623573178553912,46.874122033794492,173.976659352891147 -90.617977074141052,46.875716057548374,173.972762511111796 -90.604143897642587,46.873964811834824,173.949327971786261 -90.604076652707931,46.87395629879336,173.949214059859514 -90.603448868331554,46.873349694325498,173.946871815249324 -90.595423381244458,46.865594967495667,173.916926071979105 -90.589713929319316,46.860078138440045,173.895618970505893 -90.588915832736703,46.859306967671102,173.892640336416662 -90.588830050482457,46.859265723681752,173.892421261407435 -90.571529131471848,46.850947465689273,173.84823477640748 -90.571390878822498,46.850649014309866,173.84731836616993 -90.570461478398428,46.848642681405337,173.841157631017268 -90.570397032120397,46.848503558713794,173.840730422176421 -90.57063150578432,46.848363736317324,173.840716022066772 -90.572174764437676,46.847443453332822,173.840621291659772 -90.579786124891484,46.842904612429813,173.840155238285661 -90.579912973941234,46.842867368790643,173.840240743942559 -90.583870665063287,46.841705367019983,173.842908672988415 -90.586012239647431,46.841076587919801,173.844352561049163 -90.58657302697803,46.841040583370891,173.845043088309467 -90.59144463310858,46.840727808860017,173.851042101159692 -90.602811772509924,46.839997997895146,173.865042405202985 -90.604813995274185,46.83986944803663,173.867508802562952 -90.611025100432201,46.839470672877297,173.875160528346896 -90.611830272620665,46.839418977943204,173.876152532175183 -90.615093449783814,46.839209470297398,173.880173075012863 -90.615345970202114,46.83919325758324,173.880484215915203 -90.615763803327454,46.839066146879787,173.880755580030382 -90.627004100878722,46.835646690532123,173.888057935982943 -90.659555592104965,46.825744069719839,173.909229772165418 -90.675362898442614,46.820935265064939,173.919524139724672 -90.677658097557355,46.820237033247338,173.921019579283893 -90.684881128743172,46.814526119609823,173.917198098264635 -90.687277958862325,46.806254352264773,173.90044918935746 -90.671962727689007,46.80088425602154,173.866112990304828 -90.67157338453525,46.800747737663258,173.865240091457963 -90.66691373826815,46.800645691264769,173.858513825573027 -90.656833982309848,46.800424944278014,173.843965268693864 -90.656384840053391,46.800158937014871,173.842694785445929 -90.656073722379347,46.799974675659286,173.84181472659111 -90.654439878416994,46.799007021525405,173.837193029932678 -90.654429545331823,46.798958938222171,173.837061860598624 -90.653866712818953,46.796339890170337,173.82991692610085 -90.65375957842295,46.795841357965081,173.828556843101978 -90.653742768252357,46.795763134614198,173.828343435190618 -90.654114432777675,46.795335202137686,173.827820425853133 -90.654941042453473,46.794383448335438,173.826657217927277 -90.655626937445618,46.793593712641979,173.825692021287978 -90.656862428743707,46.792171174810605,173.823953438550234 -90.656898616611215,46.792129508300562,173.823902512900531 -90.657006997316131,46.792004719358019,173.823750000447035 -90.657134429694494,46.791857994424241,173.823570678941905 -90.657205485628239,46.791776181016338,173.823470686562359 -90.65788176190091,46.790997520267425,173.82251903321594 -90.658702739360876,46.790052251376039,173.821363754570484 -90.660443663596155,46.789752680919825,173.823056420311332 -90.662064944400328,46.789473698169516,173.824632843025029 -90.662677428394588,46.789368304662652,173.825228402391076 -90.663040413341562,46.789305843836168,173.825581362470984 -90.664783829658575,46.789005844552058,173.827276687137783 -90.680993636937615,46.786216533366648,173.843043921515346 -90.689154596974461,46.784812231818542,173.850985184311867 -90.690126100690719,46.784645059797796,173.851930676028132 -90.69078384631085,46.784531877868808,173.852570825256407 -90.692997629586998,46.784150939928395,173.854725485667586 -90.694498995239485,46.783892591630774,173.856186844408512 -90.697989595836418,46.783291944664242,173.859584702178836 -90.698458656254999,46.783371193358903,173.860429889522493 -90.70811880158945,46.785003294197878,173.877836968749762 -90.717981223838493,46.786669570104486,173.895609872415662 -90.725463319171652,46.782988588311866,173.897086168639362 -90.736440222467422,46.773267118547231,173.888761274516582 -90.740364990132278,46.769791228420956,173.885785361751914 -90.740950344268498,46.769272821516523,173.885341550223529 -90.759544694133865,46.759221221861445,173.886833303608 -90.764025123565119,46.756799223615012,173.887194521725178 -90.765172619267858,46.756178918659778,173.887287143617868 -90.766747074791951,46.7557857713836,173.888526705093682 -90.768136862527854,46.755438736325999,173.889620943926275 -90.772753767499808,46.754285878342941,173.893256503157318 -90.775961988091382,46.754337610927465,173.897854669950902 -90.789277688971168,46.754552326692753,173.91694192122668 -90.78933668779878,46.754553278049201,173.917026501148939 -90.789830631437383,46.754561242892834,173.917734621092677 -90.790041235102521,46.754564638877937,173.918036545626819 -90.789956550297774,46.754870791427976,173.918661944568157 -90.789811147157522,46.755396452937347,173.919735739007592 -90.789080491097209,46.75803792113674,173.925131398253143 -90.786941413778393,46.76577111490294,173.940925974398851 -90.784612645031402,46.77419008165964,173.958118091337383 -90.790453202348942,46.780441416443502,173.981431623920798 -90.790769630684835,46.780780099782774,173.982694602571428 -90.792492093025913,46.782623706155363,173.989569369703531 -90.792518764971376,46.782784951389999,173.989997837692499 -90.7926118415498,46.783347645802692,173.991493036970496 -90.792885611399271,46.785002721287739,173.995890798978508 -90.792919102714009,46.78520519301243,173.996428780257702 -90.793044512126926,46.785963355544837,173.998443250544369 -90.793089210988597,46.786233582485913,173.999161240644753 -90.791758207252045,46.787353564354,174.000023821368814 -90.783209037531464,46.790085116769085,173.994738458655775 -90.760645826644819,46.797294307229379,173.980801296420395 -90.760112650966434,46.797464662637353,173.980472169816494 -90.747246673963204,46.799478726904027,173.967444711364806 -90.742129154955094,46.800279832955781,173.962264384143054 -90.738135567466415,46.800904996649415,173.958222346380353 -90.734757388995519,46.80143382305571,173.954803564585745 -90.734527082841581,46.801469875613734,173.954570502974093 -90.734348681001308,46.801635540058697,173.954724259674549 -90.731107480707905,46.804645327671942,173.957517825067043 -90.730072081135575,46.80560680259979,173.958410270512104 -90.729910259470699,46.806958077631279,173.961464417167008 -90.72947773361652,46.810569840043762,173.969627209939063 -90.72934423364093,46.811684617818329,173.972146527841687 -90.722458204680763,46.817147534883951,173.975821206346154 -90.713907113861893,46.821993493930243,173.975684356875718 -90.706145414033415,46.824758294844017,173.971598208881915 -90.696022262069249,46.82836427038395,173.966272039338946 -90.684479214472148,46.832476027997799,173.96020317170769 -90.676889499715855,46.835179565957688,173.956215342506766 -90.674433090766939,46.836452826262423,173.955891469493508 -90.658471278335966,46.844726506511101,173.953792028129101 -90.657634218101791,46.845358679470294,173.954163289628923 -90.657398724816119,46.845536531052986,173.954267740249634 -90.657215867829862,46.84567463012575,173.954348845407367 -90.656022448657694,46.846575936029318,173.954878209158778 -90.655997726353448,46.846594607054016,173.954889176413417 -90.653329258976711,46.848609913545573,173.95607297308743 -90.652756347683848,46.849042593314969,173.95632715523243 -90.652439429594892,46.849281939348963,173.956467766314745 -90.649011697251808,46.851870665495277,173.957988771609962 -90.648507199351883,46.852251677422707,173.958212662488222 -90.644743205265016,46.85509435852228,173.959883315488696 -90.639410226621209,46.861230975477632,173.967367205768824 -90.638615821186278,46.862145091626132,173.96848202124238 -90.638243414305919,46.862573617324273,173.96900463104248-90.581093623873542,46.919479147606452,174.027745905332267 -90.59445829399543,46.916807372478935,174.03978462703526 -90.625073209527187,46.910687043959982,174.067383823916316 -90.626161151679668,46.910469549860352,174.068365151062608 -90.627211780538502,46.910259515183817,174.069312860257924 -90.638650541568126,46.907972754766746,174.079633373767138 -90.645646752079088,46.909621945364755,174.093331911601126 -90.645670776235534,46.909627608489451,174.093378949910402 -90.645744836064409,46.909703182064327,174.093664756976068 -90.656322983244081,46.920497541237253,174.134481992572546 -90.656332370299324,46.920507120159144,174.134518207982183 -90.656324206893899,46.9205236284091,174.134546866640449 -90.65336146161566,46.926514968738282,174.144946709275246 -90.652570663405058,46.927321727548936,174.145803648978472 -90.647878952053887,46.932108131259497,174.150887937285006 -90.646866997259991,46.93314051024538,174.151984605006874 -90.646317394791268,46.933701205291982,174.152580223046243 -90.645493034123518,46.934542203958848,174.153473609127104 -90.644855960947609,46.935192135127657,174.154164033010602 -90.636034500789677,46.944191638138086,174.163724776357412 -90.635442231728021,46.944360560460119,174.163312943652272 -90.603402689792759,46.953498626455719,174.141052007675171 -90.602679878617707,46.953704780968522,174.140550205484033 -90.573909675203026,46.960083275772,174.116167138330638 -90.532122844614662,46.969347620190881,174.080800629220903 -90.530329396013599,46.969745236496813,174.07928401324898 -90.529707435823241,46.969644377476016,174.078179829753935 -90.526399369677222,46.969107931063057,174.072307012975216 -90.524823222966546,46.968852338153312,174.069508933462203 -90.52331613583091,46.968052466873978,174.065487979911268 -90.516306432934982,46.96433213783456,174.046785273589194 -90.516140596067743,46.964244121591442,174.046342791058123 -90.514852733714392,46.96356060164851,174.042906509712338 -90.51440869321307,46.963324931635064,174.041721710935235 -90.513735556314728,46.96296767102141,174.039925627410412 -90.513147733735053,46.962655690121075,174.038357171230018 -90.511404493771906,46.960356929433011,174.030377609655261 -90.510896564838134,46.959687138071672,174.028052513487637 -90.509681510931969,46.958084881225972,174.022490327246487 -90.512648731239693,46.954133606630684,174.017017231322825 -90.525542725848879,46.936963424869511,173.993232447654009 -90.525580336172538,46.936913341392831,173.993163065984845 -90.534176894829528,46.933738441864634,173.99735975638032 -90.536892824726309,46.932735388793787,173.998686164617538 -90.541471455290178,46.929099497306495,173.996208186261356 -90.545107371611408,46.92425165750479,173.989487783052027 -90.545376574282301,46.919538533300923,173.978433323092759 -90.546629251196038,46.918536411696159,173.977737542241812 -90.547396558943589,46.917922577704282,173.97731136996299 -90.550628566042789,46.916710586842996,173.978846995159984 -90.551895679820547,46.917078536405299,173.981493410654366 -90.554804310204958,46.917923156118242,173.987568227574229 -90.558843445200424,46.919942334844549,173.998055861331522 -90.570694324490034,46.921558105698587,174.018382327631116 -90.581093623873542,46.919479147606452,174.027745905332267-87.501498337917553,45.062466603550504,165.128076172433794 -87.500357309612227,45.0625806135888,165.126830907538533 -87.498647264182196,45.062627632850131,165.12464050296694 -87.49780823632868,45.062421650100589,165.122966188006103 -87.496872200854625,45.062010675515232,165.120623993687332 -87.495936160378193,45.061393707945015,165.117742498405278 -87.494774105976603,45.060456754029595,165.113717474974692 -87.494257074145565,45.059725785231315,165.111104271374643 -87.494242710594861,45.059675165758733,165.110952310264111 -87.494095055868954,45.059154806654178,165.109390174970031 -87.494083949461938,45.059148866594668,165.109359596855938 -87.4939660506802,45.059085810577692,165.109035009518266 -87.493956068419621,45.059002949471804,165.10880455840379 -87.493933043128635,45.058811820312158,165.108272993005812 -87.493908716905025,45.058768641355307,165.108127032406628 -87.493804034055174,45.058582829685058,165.107498921453953 -87.493707024202337,45.058285840983707,165.106590093113482 -87.493416005739817,45.057851859314987,165.105060114525259 -87.493157993153403,45.057622870261611,165.104111504741013 -87.493028988523278,45.057576873401828,165.103816547431052 -87.492899981683848,45.057439879641521,165.103283331729472 -87.492737975620855,45.057371883933577,165.102886131033301 -87.491608925450706,45.056571924952614,165.099264136515558 -87.491543919237913,45.056388931978653,165.098697039298713 -87.491582178713543,45.056367307619787,165.098692179657519 -87.491704921413685,45.056297933114585,165.098676572553813 -87.492317940317861,45.056388922538332,165.099744132719934 -87.494061006068677,45.05714187563045,165.104073751717806 -87.495868073028987,45.057872828690833,165.108432334847748 -87.499772208729496,45.059082739855164,165.116882100701332 -87.500063217771327,45.059128734738444,165.117396244779229 -87.500256224678552,45.059196730067953,165.117835393175483 -87.501498266272463,45.059516704017248,165.120353567413986 -87.502965316786316,45.059951671304425,165.123477243818343 -87.505674405031826,45.06054761795437,165.128702930174768 -87.506360815697491,45.060636597336348,165.12986464612186 -87.507448458925793,45.060777588476107,165.131705444306135 -87.507479297893681,45.060810336709864,165.131832900457084 -87.507577465766147,45.06091458223618,165.132238626480103 -87.507502055867974,45.060994050751098,165.132344615645707 -87.507447465553795,45.061051579156455,165.132421338930726 -87.505881210984271,45.061373836562964,165.131145623512566 -87.505673426111258,45.061416588370669,165.130976389162242 -87.504995412627309,45.061621589661414,165.130595640279353 -87.503833391524694,45.062055589058652,165.130159497261047 -87.503195034851288,45.062190419100759,165.129648751579225 -87.501996350921345,45.06244359825795,165.128689733333886 -87.501498337917553,45.062466603550504,165.128076172433794-86.947350500699145,45.409017856403679,165.290234500542283 -86.944427688141857,45.416594441947666,165.306108169257641 -86.944287421167715,45.416736394244403,165.306291842833161 -86.94262415385154,45.418419645896748,165.308469817973673 -86.938779671922674,45.422310319708352,165.313504084013402 -86.937610264230742,45.422378986088432,165.312128386460245 -86.93611074581608,45.422467036219693,165.310364401899278 -86.935662590229285,45.42249335144043,165.309837218374014 -86.935477834469111,45.422316071836896,165.309129284694791 -86.93189739771401,45.418880517736312,165.295409562066197 -86.930414248546455,45.415114185695437,165.283614301122725 -86.929632591728648,45.413129234211546,165.27739745657891 -86.92943117630719,45.412617756755033,165.275795462541282 -86.929154197563093,45.412527311770106,165.275191282853484 -86.919071807184451,45.409234995416234,165.25319853797555 -86.915390141959747,45.409396891187647,165.248726969584823 -86.911128391223102,45.409584295355508,165.24355133716017 -86.904124221143846,45.409892293337101,165.235046333633363 -86.89943445034605,45.41009851903938,165.229352431371808 -86.89427814823479,45.410325259756846,165.223092832602561 -86.884748971557968,45.413421527734691,165.218513299711049 -86.882013949379512,45.414310204884302,165.217199490405619 -86.878886844706315,45.415326279447022,165.215697656385601 -86.866386771374025,45.413834003645093,165.195203415118158 -86.863558555325199,45.413496367350994,165.190566902048886 -86.862856354383922,45.41341253764341,165.189415754750371 -86.862701286005091,45.413291131479994,165.188892986625433 -86.861306359004132,45.41219901497773,165.184190328232944 -86.857376768451459,45.409122459219724,165.170942148193717 -86.854528964704159,45.406892856181408,165.161340612918139 -86.854466248961074,45.406907453692916,165.161295454949141 -86.831736750774525,45.412197897370255,165.144938607700169 -86.831714595995464,45.412301109904718,165.145178684964776 -86.831124458119277,45.415050386990778,165.15157341118902 -86.830735560963916,45.416862143356745,165.15578727889806 -86.830526567517637,45.417835781772581,165.158051741309464 -86.831288348538692,45.421968187489831,165.169849661178887 -86.831506345442435,45.423150747321309,165.173225616104901 -86.831559223581081,45.423437593424822,165.174044484272599 -86.832283849030119,45.427368442527396,165.185265408828855 -86.832138763853365,45.42753147333638,165.185498430393636 -86.830114691753082,45.429805903572209,165.188749298453331 -86.830044848500251,45.429884385759763,165.188861473463476 -86.829454428570955,45.429804127046189,165.187868838198483 -86.823154055268759,45.428947686004754,165.17727682646364 -86.81845248893201,45.428308578730523,165.169373173266649 -86.81812461966669,45.428105537990064,165.168408379890025 -86.816893497893659,45.427343136926609,165.164785638451576 -86.811438188553254,45.423964808526556,165.148732149042189 -86.811293577938088,45.423629278545157,165.147664438001812 -86.807360994560597,45.414504777965867,165.118625382892787 -86.807250835398619,45.414249183296384,165.117811846546829 -86.807225573591793,45.413938179908641,165.116966208443046 -86.807149918555467,45.41300677492189,165.114433629438281 -86.807035074415325,45.411592904650753,165.110589060932398 -86.806797686722376,45.408670374929308,165.102641751989722 -86.809685736034595,45.407413381916349,165.103189626708627 -86.810041046571925,45.407489017016459,165.103858471848071 -86.816338691354346,45.408829599244172,165.115713610313833 -86.817263690912554,45.409026504278742,165.117454942315817 -86.818531280442969,45.409296336580624,165.119841227307916 -86.819456057328523,45.409493194214356,165.121582165360451 -86.820923461440103,45.409025280623865,165.122307101264596 -86.823466105693797,45.408214503419671,165.123563406057656 -86.82576613531235,45.407481089147069,165.124700034968555 -86.826113640759175,45.407144092103053,165.124281128868461 -86.838865346690127,45.394777991939975,165.108910472132266 -86.84281525142508,45.390947530570052,165.10414971690625 -86.854486117360565,45.372208015547017,165.070693915709853 -86.854565540471214,45.372162663547023,165.070680926553905 -86.858691337289429,45.369806760639349,165.070006506517529 -86.859766793349067,45.369192656220847,165.069830799475312 -86.864750590316234,45.366346820067996,165.069017036817968 -86.86494626103611,45.366235088628706,165.068985104560852 -86.864983407894343,45.366130018622336,165.0687599144876 -86.865077207684251,45.365864705619565,165.068191287107766 -86.865102452384264,45.365793300905828,165.068038245663047 -86.865697258847277,45.364110888948758,165.064432358369231 -86.869126088537726,45.354412433583398,165.043643354438245 -86.869093572061402,45.354237365544847,165.04314255155623 -86.867626735880208,45.346339949573697,165.020548728294671 -86.867508510392511,45.345703425951406,165.018727492541075 -86.866910583675548,45.342484200621442,165.009516124613583 -86.866881732279467,45.342328865287804,165.009071636945009 -86.867016301930676,45.342034119671858,165.008479920215905 -86.867437085722202,45.341112484099675,165.006629671901464 -86.87041401132015,45.334592174742994,164.993538784794509 -86.870423641354506,45.334571082243279,164.993496433831751 -86.870892719953844,45.334389429943229,164.993645200505853 -86.873678894776774,45.333310474164833,164.994528990238905 -86.876067854434027,45.332385341324361,164.995286998338997 -86.876143672452159,45.332355980536192,164.995311057195067 -86.876499751977377,45.332218087515827,164.995424056425691 -86.880743594267614,45.332682739346964,165.002283653244376 -86.881955370345665,45.332815414864086,165.004242394119501 -86.889184862076789,45.333606960895096,165.015928926877677 -86.896438509423419,45.330383183300377,165.017150627449155 -86.900871183194766,45.323935765787517,165.006190679967403 -86.898049915651825,45.308623301350821,164.962386365048587 -86.898304149377211,45.299869719928921,164.939823053777218 -86.898310562286085,45.299648915595021,164.939253842458129 -86.901273508573155,45.296534449752691,164.935049389488995 -86.902018379012659,45.296780410188397,164.936684797517955 -86.902984543673895,45.29709944322861,164.93880607187748 -86.905745093558934,45.298010992426029,164.944867045618594 -86.906280746757972,45.298187868144034,164.94604311324656 -86.91537839533494,45.313458618167026,164.998103382997215 -86.927065261493254,45.325547293332015,165.045273235999048 -86.938752041552135,45.33441227889201,165.084006163291633 -86.942099607399101,45.335108900773285,165.090284434147179 -86.942454845342141,45.335182825091735,165.090950679965317 -86.94818126162167,45.336374481071758,165.101690817624331 -86.94832758295253,45.336404930253309,165.101965255104005 -86.949471874720558,45.336643055121655,165.104111478663981 -86.952935374935265,45.339645011944953,165.116567987948656 -86.956375253640701,45.342626495035766,165.128938796930015 -86.956841337430546,45.343030468854316,165.130614912137389 -86.95696203260961,45.343135080285677,165.131048951297998 -86.957076511836561,45.343234304097912,165.131460634060204 -86.957439277309248,45.343548727719636,165.132765185087919 -86.957514266627513,45.343613724018311,165.133034857921302 -86.957525060947901,45.345131968429484,165.137015323154628 -86.957577627730942,45.352525593753853,165.156397470273077 -86.957583506094494,45.353352396971445,165.15856468770653 -86.955820824036707,45.355052285332498,165.16065700724721 -86.954774494651929,45.356061340334278,165.161899029277265 -86.954745962392224,45.356066732342853,165.161875117570162 -86.94965737697882,45.357028370026001,165.157611363567412 -86.94768239584846,45.360036293280558,165.16283749230206 -86.947860350415539,45.36117213723891,165.166040613316 -86.947888273886079,45.361350366467825,165.166543218307197 -86.948176645034735,45.363190974597444,165.171733581461012 -86.948527671912601,45.365431500107675,165.178051351569593 -86.948895618360126,45.367780019380376,165.184673259034753 -86.948989368360941,45.367990632799383,165.185347956605256 -86.949069773011303,45.368171265313208,165.185926604084671 -86.950116979339043,45.37052385947235,165.193462820723653 -86.950129152027628,45.370551205942064,165.193550418131053 -86.950188349662398,45.370684195979997,165.193976420909166 -86.95635574571223,45.38453951680679,165.238350877538323 -86.956590253106768,45.385066347758801,165.240037857554853 -86.95571531665766,45.38733437899139,165.244792147539556 -86.95515948136854,45.388775228559716,165.24781237076968 -86.95325281877372,45.393717725131197,165.258171875029802 -86.952562488515142,45.395507215830889,165.261922403238714 -86.948732693415934,45.405434903024513,165.282727023586631 -86.948460567915774,45.406140313321352,165.284205138683319 -86.948223402788415,45.406755098496902,165.285493336617947 -86.947350500699145,45.409017856403679,165.290234500542283-87.764018178928566,44.967146112773989,165.234924966469407 -87.764098139200726,44.967135911148951,165.235007176175714 -87.764244097296427,44.967117289279393,165.235157241113484 -87.767513370805915,44.966700183363947,165.238518699072301 -87.768270253298013,44.966603617516796,165.239296969026327 -87.782696193885599,44.963087318571915,165.24974747095257 -87.782862811458642,44.963046705816332,165.249868215993047 -87.7903861573011,44.961212902806558,165.255321162752807 -87.7913325924292,44.960982210820823,165.256007277406752 -87.792770276471913,44.960631777730192,165.257049580104649 -87.793386284283159,44.960481626852157,165.257496200501919 -87.793723648310831,44.960399394932281,165.257740803994238 -87.813992791977498,44.955458824882903,165.27244383469224 -87.814388228237121,44.955362437951649,165.27273081894964 -87.814675668680479,44.955234728667982,165.27278854791075 -87.815265570788,44.954972636198598,165.272907024249434 -87.816533739024436,44.95440919128044,165.273161770775914 -87.817550371739273,44.953957503152324,165.273366028442979 -87.818684741335034,44.953453504735002,165.273593980818987 -87.818950221844403,44.953335552211335,165.273647339083254 -87.819112285659145,44.953263547543386,165.273679908365011 -87.819311547597252,44.953175015814523,165.273719960823655 -87.819512045628144,44.953085934891931,165.273760262876749 -87.820712684126434,44.952552493317597,165.274001614190638 -87.820768257857381,44.952527802006706,165.274012786336243 -87.820924334458482,44.952458457447165,165.27404416538775 -87.821680143233721,44.951707007738371,165.273108188994229 -87.822247785396684,44.951142639406669,165.272405236959457 -87.822449263677541,44.950942323136047,165.272155731916428 -87.82288394022379,44.95051015355277,165.271617443300784 -87.823382694461742,44.950014275841454,165.27099980507046 -87.82359178306632,44.94980639313939,165.270740881562233 -87.839046481201692,44.934440828987256,165.251603421755135 -87.840427390735627,44.933067883779614,165.249893544241786 -87.844832331012256,44.925705082601624,165.236627484671772 -87.84569821287873,44.919874272252855,165.222539735026658 -87.844242682327717,44.913936125117949,165.204998849891126 -87.844118013753601,44.913427513088763,165.203496320173144 -87.84403930872773,44.913266283857219,165.202966507524252 -87.843773576079329,44.912721923821692,165.201177679933608 -87.841780797966237,44.90863966755235,165.187762148678303 -87.84095977150092,44.906957774102743,165.182234534993768 -87.838415217575246,44.90386023789452,165.170643778517842 -87.838141962160663,44.903527598631612,165.169399016536772 -87.837480171492984,44.90272198766003,165.166384315118194 -87.835673950903313,44.90052323932801,165.158156031742692 -87.83512983502473,44.899860876220778,165.155677216127515 -87.834919590052991,44.899604940824872,165.154719397425652 -87.833535709490789,44.897920315422731,165.148414671421051 -87.829149103945241,44.892580413005646,165.128428399562836 -87.834161990112449,44.882290705577617,165.108300529420376 -87.836894663462417,44.878895328069156,165.103131338953972 -87.838313713413513,44.877132142483134,165.100446979515254 -87.839756972874895,44.875338876313712,165.097716785036027 -87.849014170100091,44.872043876406309,165.101726619526744 -87.849722156046624,44.871791876413802,165.102033414877951 -87.850538044838174,44.870772265625718,165.100474916398525 -87.854187141495302,44.866212013866964,165.093504316173494 -87.855582146371788,44.86098499949707,165.081703250296414 -87.85607902099791,44.859123234850394,165.077499590814114 -87.85633601862942,44.858738723488877,165.076842441223562 -87.857360245038137,44.857206309794257,165.074223428033292 -87.858518998513816,44.855472621155954,165.071260356344283 -87.858867309773473,44.854951489367032,165.070369672961533 -87.867295823751959,44.842341025659323,165.04881474468857 -87.867634914565087,44.841833689213622,165.047947484999895 -87.873077481130494,44.841168161140622,165.053646387532353 -87.879616202283401,44.840368593053711,165.060494291596115 -87.8871076153453,44.836560387401917,165.060754140838981 -87.893968755013191,44.833072576676258,165.060993769206107 -87.8972102081202,44.831424807435269,165.061107527464628 -87.899329106355552,44.83034768084412,165.061182079836726 -87.901185831765005,44.829403827912962,165.061247526668012 -87.902535538455439,44.828717714280309,165.06129517685622 -87.903213000070892,44.826968489078304,165.057633130811155 -87.903564654623736,44.826060507003518,165.055732197128236 -87.904793814419406,44.822886781415228,165.049087452702224 -87.905242338136688,44.821728680417095,165.046662657521665 -87.905679777697742,44.820599199030191,165.044297725893557 -87.905882419734482,44.820075971530272,165.043202162720263 -87.906842110995996,44.818349818590704,165.039986492134631 -87.907980605461958,44.816302060486244,165.036171577870846 -87.912763895044307,44.807698575661547,165.02014206442982 -87.92027195419665,44.794194172498862,164.994976674206555 -87.924985927935552,44.78571536344834,164.97917347215116 -87.927243199582762,44.781655312206567,164.971605341881514 -87.928214051137388,44.779909085945981,164.968350128270686 -87.942850902949075,44.757434684485595,164.92938398104161 -87.952958103152568,44.754461663706159,164.935439486987889 -87.95824713543071,44.750627078736734,164.932622053660452 -87.966112226987278,44.744924833009648,164.928433702327311 -87.97405244830874,44.735042473881862,164.913364260457456 -87.984463286216794,44.722085198201391,164.893604220822453 -87.984892168591458,44.72155141339595,164.892790149897337 -87.985339130561513,44.719136943956819,164.887056608684361 -87.985347657267425,44.719090883056779,164.88694722764194 -87.985492102177318,44.718310597842553,164.885094243101776 -87.985645054655748,44.717484355113534,164.883132083341479 -87.985798830118171,44.71665366666479,164.881159326992929 -87.987453396418971,44.70771577083773,164.85993070807308 -87.987531873232626,44.70729184248853,164.858923711813986 -87.988694229201371,44.701012846029514,164.844007427804172 -87.988814910418384,44.700360931353771,164.84245862159878 -87.990064352233148,44.69361150129572,164.826422017998993 -87.990647122636489,44.690463401170938,164.818941260688007 -87.990741389300666,44.689954176797691,164.817731149494648 -87.990773519508792,44.689780610827547,164.817318687215447 -87.990867224274055,44.689274421810445,164.816115769557655 -87.991114526865687,44.687938504105361,164.812940996140242 -87.991309194245588,44.678943883387852,164.789541071280837 -87.991477913463527,44.671148203256585,164.76925593521446 -87.991506820677628,44.669812544302729,164.7657800167799 -88.000361247634373,44.666544188905512,164.769354957155883 -88.001718045773444,44.666043366147896,164.769903003238142 -88.003482316991708,44.665392136497942,164.770615728572011 -88.003651280377653,44.66479919830212,164.769287404604256 -88.004074733778694,44.663313185857206,164.765958301723003 -88.004737651369027,44.660986828865873,164.760746352374554 -88.008684244965806,44.647137165851554,164.729711940512061 -88.011162875986884,44.63843898054354,164.710215956903994 -88.010919250392874,44.633068724107517,164.695735200308263 -88.010882360268326,44.632255552378794,164.693542330525815 -88.010868603160759,44.631952303440634,164.692724547348917 -88.010859707557501,44.631756216999626,164.692195754498243 -88.010113556753097,44.63029073159003,164.687307978980243 -88.008885736253134,44.627879217691572,164.679264556616545 -88.008555024292576,44.627229679349888,164.677097985520959 -88.008410002290219,44.626944847344298,164.676147899590433 -88.008267149528294,44.626664275858232,164.675212021917105 -88.007805308861251,44.62575719278427,164.672186293639243 -88.002568187062792,44.615471167908218,164.637870674021542 -88.000231851354883,44.610882462800326,164.622559228911996 -88.0001118427015,44.610646758521554,164.62177268974483 -88.003339135372329,44.605268024279979,164.612037500366569 -88.013791116080185,44.603797155680233,164.622554435394704 -88.016130824416919,44.597759056429183,164.609859140589833 -88.01648797541425,44.596837354733793,164.607921085320413 -88.017768973313522,44.593531475890281,164.600969540886581 -88.017799975798198,44.593451467595465,164.600801294669509 -88.020861316005039,44.589703205292395,164.595135760493577 -88.024248999766598,44.585555372520005,164.588866093195975 -88.02849894891601,44.580351794075895,164.581000350415707 -88.029544323433484,44.580096259577651,164.581767271272838 -88.035931576832866,44.578534940098699,164.586453990079463 -88.037499137318918,44.578151760886122,164.587604420259595 -88.037500316645279,44.578150786968031,164.587603474035859 -88.040488124555623,44.575683378134393,164.585215287283063 -88.040885635513959,44.575355103333081,164.584897568449378 -88.042557951960049,44.573974061283813,164.583560959435999 -88.042598173106384,44.573940845623937,164.583528812043369 -88.042754232136076,44.573169260701576,164.581708970479667 -88.042880941107001,44.572542787941387,164.58023136202246 -88.042957530040638,44.572164117985317,164.579338212497532 -88.043055432566675,44.571680069658754,164.578196503221989 -88.043171579317232,44.571105818490054,164.576842019334435 -88.04365727412501,44.568704452916499,164.571177719160914 -88.043810062219947,44.567949040131772,164.569395796395838 -88.038574239225298,44.564064975879532,164.551929593086243 -88.022101855209755,44.551845349979175,164.496971113607287 -88.01810379682361,44.548879490391023,164.483630118891597 -88.006912420349394,44.540577447711804,164.446282068267465 -88.001493507890416,44.539188638263788,164.435144156217575 -88.000395986917411,44.538907355347192,164.432888372801244 -87.999930021730108,44.538787933440744,164.431930655613542 -87.992378729841889,44.536852617882552,164.416410504840314 -87.991861959498095,44.536720175155594,164.415348408743739 -87.987452485186125,44.535590073921021,164.406285910867155 -87.98421425584273,44.534760150276604,164.399630718864501 -87.979294719649715,44.533499325613931,164.389520308934152 -87.972095275067971,44.53165418473543,164.374724770896137 -87.945193540057318,44.531055533764267,164.336082966066897 -87.941364252999705,44.532685530650404,164.335116779431701 -87.937099480116061,44.534500898998097,164.334041303955019 -87.930393293495769,44.537355493897579,164.332351431250572 -87.925435879808887,44.542353674635685,164.338734501972795 -87.918859601499122,44.548984032715609,164.347202207893133 -87.918392260097093,44.54945521728439,164.347803968936205 -87.917238711490967,44.550973906355956,164.350228951312602 -87.902598173978603,44.570248711681145,164.381002903915942 -87.902570044783261,44.5702857448006,164.381062027998269 -87.902569332408717,44.570286682667856,164.381063523702323 -87.902060049140019,44.571445861482083,164.383424515835941 -87.900760367861139,44.574404063934765,164.389449463225901 -87.900299638203862,44.575452729967992,164.391585185192525 -87.90028039528616,44.575496528742249,164.391674384474754 -87.900575427301888,44.575937864375945,164.39324548188597 -87.901590504555784,44.577456308946999,164.398650824092329 -87.902026295284131,44.578108204221017,164.400971371680498 -87.902453417001752,44.578747131602427,164.403245719149709 -87.902628511826293,44.579009054312131,164.404178060591221 -87.905081664026056,44.58267870172542,164.417239899747074 -87.903711580976292,44.584440198039232,164.420006579719484 -87.902571528146666,44.585905947771678,164.422308711335063 -87.897804443621339,44.58814145150285,164.421656767837703 -87.895748214454613,44.589105711303752,164.421375797130167 -87.893119251330646,44.590338552224296,164.421016776002944 -87.893109557184758,44.590343098252269,164.42101545445621 -87.892260401001323,44.591008234670817,164.421604189090431 -87.88880235051397,44.593716894591964,164.424001893028617 -87.869333607137023,44.608966586774372,164.437505895271897 -87.868276354823053,44.6097947230435,164.43823947571218 -87.843556385813429,44.62018639594686,164.43172587826848 -87.838807484486026,44.622182718400694,164.430476980283856 -87.837492464237684,44.622735520884298,164.430131285451353 -87.832239748178139,44.624943634779683,164.428751038387418 -87.830620434853145,44.62588120741826,164.429003549739718 -87.824835766532203,44.629230495455708,164.429906277917325 -87.821474172558567,44.631176838076854,164.430431355722249 -87.810467747359581,44.637549491852823,164.43215303029865 -87.81021046045241,44.637698459419838,164.432193323969841 -87.809757791525669,44.637738042024445,164.431677090004086 -87.789630738225881,44.639498006370218,164.408730034716427 -87.776550624940143,44.640641767042638,164.393823810853064 -87.767164437740732,44.643383785994665,164.388201295398176 -87.764302270600837,44.645471233279821,164.38978994358331 -87.763766505388929,44.645861979726121,164.390087341889739 -87.75743846066905,44.650477174849129,164.393600545823574 -87.757421345114992,44.650489657634132,164.393610051833093 -87.752289375634902,44.657552474720305,164.405220651999116 -87.750480950780457,44.665491026216849,164.423690299503505 -87.749799569797176,44.668482125455185,164.430648425593972 -87.737448915548242,44.678385386743756,164.439869114197791 -87.735091700607427,44.680275498407227,164.441629321314394 -87.731226425366344,44.68337483470944,164.444515903480351 -87.72117042289706,44.694605567616478,164.460379863157868 -87.719804024460956,44.709124496157528,164.49679050128907 -87.719799734546925,44.709170079465764,164.496904795058072 -87.719817883907979,44.709229510478409,164.497086266987026 -87.721638675887519,44.71519178703948,164.515290604904294 -87.721990220077643,44.716342936474611,164.518805032595992 -87.723207093721484,44.720327651439803,164.530969458632171 -87.722643488209869,44.723719907401986,164.539137947373092 -87.722450662542215,44.72488049582725,164.541932471096516 -87.722280202403539,44.725906469536831,164.544402794912457 -87.721702735869655,44.726431694060764,164.544997427612543 -87.715791955706706,44.731807740166346,164.551084197126329 -87.707243124441959,44.739583179314522,164.559888449497521 -87.707124307180109,44.739722342794174,164.56009273417294 -87.706043696349269,44.740987996969487,164.561950675211847 -87.70494773175956,44.742271634077795,164.563835000619292 -87.702413387594788,44.745239958291386,164.568192335776985 -87.702168685946035,44.745526562550417,164.568613051436841 -87.701930329390976,44.745805735184597,164.569022855721414 -87.700044341871745,44.748014678441677,164.572265413589776 -87.699974946632807,44.748095956893266,164.572384724393487 -87.699637530894449,44.748491151566924,164.572964838705957 -87.699557972337672,44.748584333699007,164.573101615533233 -87.689598143682929,44.760249679540671,164.590224829502404 -87.688888250949972,44.760924658940233,164.591033214703202 -87.681099776738819,44.768330087162681,164.599902683869004 -87.679759138922904,44.769604790900132,164.601429467089474 -87.679385691112088,44.769959872127174,164.601854768581688 -87.663446550583842,44.785115107963939,164.620008612982929 -87.649155453539635,44.798703353235013,164.636287866160274 -87.64769096765589,44.800095814118492,164.637956217862666 -87.646620243944994,44.80182319722438,164.641042647883296 -87.646036961342503,44.802764198629966,164.642723962664604 -87.646027526654336,44.802779419476217,164.64275115635246 -87.645935797873662,44.802927404194755,164.643015565350652 -87.638495075414198,44.814931414569678,164.664461341686547 -87.636807058371417,44.816480059880369,164.6662358911708 -87.636655652097062,44.816618965241553,164.666395057924092 -87.635867164740816,44.817342350858041,164.667223980650306 -87.635781299194406,44.817421126885037,164.667314250953496 -87.635772241113784,44.817429437082055,164.667323770932853 -87.635450093412089,44.817724986544164,164.667662442661822 -87.63480946499331,44.818312721249882,164.668335933238268 -87.634368309314965,44.818717452753226,164.668799721635878 -87.634283166658648,44.818795565575968,164.668889233842492 -87.634090302305012,44.81897250601601,164.669091994874179 -87.623404962140626,44.828775607359709,164.680326413363218 -87.617774641930737,44.833941058284204,164.686246696859598 -87.617632694092109,44.834071286152188,164.686395959928632 -87.613242724881019,44.838098796104397,164.691012332215905 -87.612508866340107,44.838772063374705,164.691784063354135 -87.611636169726523,44.83957270550767,164.692701809108257 -87.611453940023281,44.839739889356139,164.692893446423113 -87.611409294609857,44.839760703300286,164.692887417972088 -87.611174598679227,44.839870119870348,164.692855724133551 -87.583025474323989,44.852993400831011,164.689067964442074 -87.582696483524018,44.853146778202607,164.68902385327965 -87.574565295079879,44.85447383155266,164.681455925107002 -87.572241409352259,44.8542882613053,164.677807979285717 -87.561573272775817,44.853436373986874,164.66106310300529 -87.551677630663249,44.852646172978751,164.645533015951514 -87.551392142337022,44.852737150699781,164.645384287461638 -87.536112441014325,44.857606394983023,164.637428175657988 -87.532388255371245,44.85879319629521,164.635490231215954 -87.532183166595431,44.858950452182079,164.63562526460737 -87.516531117568434,44.870951971319556,164.645933677442372 -87.515979515774191,44.870736013018359,164.644616696052253 -87.515163810799379,44.870416655353942,164.642669150605798 -87.514802402512274,44.870275159948065,164.641806266270578 -87.513517631441957,44.869772157635495,164.638738793320954 -87.506256270186967,44.866929253092856,164.621401768177748 -87.505793923181841,44.866748239043673,164.620297879911959 -87.505691583649735,44.866708171966465,164.620053534395993 -87.503819465055741,44.865975216493922,164.615583696402609 -87.502966621748925,44.865641318752871,164.613547461107373 -87.500451375489916,44.865563682092294,164.609928529709578 -87.479876977861011,44.864928623930219,164.580332086421549 -87.474027404219541,44.869046170474611,164.583229063078761 -87.458075728738976,44.880274641264293,164.591133754700422 -87.442726484987617,44.891079057217233,164.59874639287591 -87.438471553652533,44.89407412648989,164.600857802666724 -87.434515446674311,44.894097173764052,164.595557141117752 -87.434392138833161,44.894047618687821,164.595259688794613 -87.429531255398587,44.892094122080294,164.583533879369497 -87.422393976222864,44.889225785307666,164.566316640935838 -87.421713975018747,44.888952505754531,164.564676268026233 -87.420492888528528,44.886734596680355,164.557186044752598 -87.420501194348901,44.886641807758622,164.556953146122396 -87.420522083314069,44.886408445555134,164.55636740475893 -87.421337684779829,44.877296910313277,164.533494798466563 -87.420639766543019,44.876317144997998,164.52997032366693 -87.412305190831688,44.864616736791511,164.487874476239085 -87.411401079858322,44.863347509909872,164.483307329006493 -87.41016538480676,44.862810917226966,164.480219779536128 -87.407044344810217,44.861455625543329,164.472421403042972 -87.406926911646323,44.861404630941905,164.472127981483936 -87.386206479955632,44.86688969399151,164.45849915780127 -87.385979011183537,44.870634239570407,164.468051473610103 -87.385259805732474,44.882473658289463,164.498247943818569 -87.385225292582348,44.883041807056443,164.499696786515415 -87.385219000208807,44.883145390886163,164.499960933811963 -87.385055776386594,44.885832349806769,164.506812682375312 -87.385040759279718,44.886079558517451,164.50744304433465 -87.385016917556214,44.886472036363024,164.508443819358945 -87.386782082009375,44.891320848621824,164.523595616221428 -87.387496771663095,44.8920561844348,164.526498469524086 -87.38776159939988,44.892328662590799,164.527574110776186 -87.387781917026274,44.892349567158654,164.527656632475555 -87.387876588095736,44.892446973113053,164.528041152283549 -87.391990368509511,44.89667959358146,164.5447490317747 -87.392037826181308,44.896728422223887,164.544941768050194 -87.392185869191295,44.896880741941999,164.545543006621301 -87.392456566530186,44.897159259261699,164.546642367728055 -87.393366863842786,44.898095853498539,164.550339238718152 -87.393656019273322,44.898393362132204,164.551513529382646 -87.394785497546977,44.89955546908967,164.556100395508111 -87.398358436383063,44.901311340612629,164.565557677298784 -87.39857087471222,44.901415740499942,164.56611997820437 -87.398745970246296,44.90150178878573,164.566583437845111 -87.401874357002669,44.903039191316203,164.574863877147436 -87.403333885228065,44.903756456334797,164.57872702088207 -87.407585996943681,44.905846097994981,164.589981542900205 -87.406747882847952,44.910981928410052,164.602354711852968 -87.406392140413857,44.913161861760109,164.607606117613614 -87.399755282733437,44.926581482671054,164.633908675983548 -87.395139816730435,44.935106474867823,164.650074014440179 -87.395059732485507,44.935254394399898,164.650354483164847 -87.394792368334393,44.935748229113607,164.651290831156075 -87.394444969647083,44.936032148749973,164.651567090302706 -87.390393133876444,44.939343605538902,164.654789383523166 -87.388640321935981,44.94077613176794,164.65618344489485 -87.386452918375255,44.943800271100756,164.661173021420836 -87.386056778098933,44.944347944797954,164.66207661665976 -87.383823661100692,44.947435284109503,164.66717026848346 -87.376192397531156,44.957985694317053,164.68457559030503 -87.374433534385972,44.961743056826364,164.692070098593831 -87.373986803695928,44.962697383013847,164.693973532877862 -87.373955541014737,44.962764167759111,164.694106734357774 -87.373241488194722,44.964289559507293,164.697149101644754 -87.371462041049796,44.968090894560298,164.704730408266187 -87.364879800405191,44.982152173586698,164.732769180089235 -87.361675749753957,44.988996811178581,164.746414958499372 -87.352875113565474,44.998556485681917,164.759628505446017 -87.346478504156011,45.005504790721233,164.769232581369579 -87.337936116530997,45.014783943478236,164.782058411277831 -87.337844724794536,45.014883217583716,164.782195630483329 -87.323504832885746,45.035553687447909,164.817091813310981 -87.32341025388375,45.035643163970619,164.817199002951384 -87.317266347483027,45.041455610406423,164.824162447825074 -87.308782215445774,45.049482028832806,164.833779054693878 -87.304862767409034,45.053190025135621,164.838221980258822 -87.304807750020103,45.053242074371418,164.838284346275032 -87.304536658966924,45.053498540235097,164.838591651059687 -87.304218747408555,45.053799300667791,164.838952032849193 -87.30385786545699,45.054018088399069,164.839039478451014 -87.302274924132647,45.054977759947732,164.839423099532723 -87.302111732706479,45.055076696128339,164.839462650939822 -87.301533349019024,45.055427346124446,164.839602841064334 -87.285667512619199,45.065046143495891,164.843452513217926 -87.285595375761943,45.06511182451257,164.843527593649924 -87.270618861541351,45.078748025602735,164.859117472544312 -87.27012399925961,45.079198600520023,164.859632659703493 -87.270082709600359,45.079236194989143,164.859675645828247 -87.26626440970422,45.082712778734205,164.863650899380445 -87.262018458844167,45.093706283061451,164.886757455766201 -87.26192956286954,45.093936450186455,164.887241172604263 -87.261982889439039,45.107357993938777,164.922490116208792 -87.258837182411781,45.122994501742482,164.959226377308369 -87.255459744002493,45.127673441381219,164.966940024867654 -87.251875225799395,45.132639259393265,164.975126197561622 -87.24220131205854,45.138908745545983,164.978539737872779 -87.241696107177518,45.13923615956881,164.97871807962656 -87.243719612187988,45.148123059122568,165.004709177650511 -87.244312457700502,45.150726738551072,165.012322918511927 -87.239814380934277,45.167841073240581,165.051076786592603 -87.239618152144203,45.168587686854934,165.052767085842788 -87.239612763293295,45.168608190418439,165.05281350389123 -87.239609106955555,45.168611125842475,165.052816273644567 -87.233313727373584,45.173665256346446,165.057585746981204 -87.232602707995156,45.174236085268731,165.058124484494328 -87.225453585932641,45.175900572906208,165.052878489717841 -87.22370454978811,45.176307790604341,165.051595319993794 -87.223359507000623,45.176388124867252,165.051342193037271 -87.223095493798098,45.176064992253671,165.050142038613558 -87.222325443858921,45.17512250813828,165.046641484834254 -87.215758072667938,45.167084531971334,165.016783906146884 -87.214871466325846,45.166963062797322,165.015275320969522 -87.209350529525096,45.166206668888357,165.005881608463824 -87.201772524921424,45.165168447152865,164.992988793179393 -87.197263749726361,45.164550724058003,164.985318315215409 -87.196600483874562,45.164459853562455,164.984189979732037 -87.176557064224923,45.17434948779195,164.98318365868181 -87.176455172819047,45.174399762084128,164.983178578317165 -87.175108727035024,45.176199311411658,164.986083534546196 -87.172659499573555,45.179472748565743,164.991367625072598 -87.172620670337395,45.179524644547882,164.99145139567554 -87.171653250030531,45.180817619431636,164.993538510985672 -87.171449005746965,45.181090595641948,164.993979145772755 -87.169684792168013,45.183448499276231,164.997785191051662 -87.169639081822382,45.183509591987196,164.997883804142475 -87.168566212445896,45.184943501488256,165.000198329798877 -87.164556144617151,45.18668049149705,164.99936702195555 -87.149095851043555,45.192060497489479,164.992720561102033 -87.149044042538563,45.192068022429517,164.992670807987452 -87.1440943671479,45.19278693933844,164.987917814403772 -87.134416499896375,45.194192603706519,164.978626773692667 -87.134260380563077,45.194143254501505,164.978288368321955 -87.131196359567753,45.193174719744214,164.971646801568568 -87.129982933581445,45.19279115669206,164.969016597606242 -87.125934908593052,45.191511579000341,164.960242203436792 -87.125075171763626,45.191239816826752,164.95837867166847 -87.121358099152772,45.192452820972086,164.956574272364378 -87.121357230732002,45.192474791760404,164.956630633212626 -87.121354326944086,45.192548256740729,164.956819091923535 -87.121311558926237,45.19363027501435,164.959594769403338 -87.121307380911944,45.193735977549935,164.959865922108293 -87.121280325888705,45.194420461704901,164.961621770635247 -87.121273568931883,45.194591410732272,164.962060287594795 -87.121262287482551,45.194876828098195,164.962792430073023 -87.121260174569215,45.194930284188352,164.962929555214942 -87.121254497408188,45.195073914702299,164.963297989219427 -87.121249793621885,45.19519291911903,164.963603252544999 -87.121211416560385,45.19616384757186,164.966093794442713 -87.121207692942335,45.196258054023659,164.966335442848504 -87.121169840501182,45.197215709768393,164.968791872262955 -87.121165919170849,45.197314918285457,164.969046344049275 -87.121153823949101,45.197620923885211,164.969831248745322 -87.12092011672695,45.203533649333366,164.984996229410172 -87.120908090030838,45.2038379213135,164.985776565037668 -87.120897601912503,45.204103267718935,164.986457073129714 -87.120799471718186,45.206585933778705,164.992823875509202 -87.120791431705626,45.206789343822237,164.993345504626632 -87.120836612835404,45.206878363348508,164.993639018386602 -87.121040220808737,45.207279528290975,164.994961719959974 -87.122927543602572,45.210998084712848,165.007221753709018 -87.122952331742709,45.211046924316634,165.007382770068944 -87.122995597745458,45.21113217050366,165.007663814350963 -87.12348455078849,45.216470111725037,165.022287235595286 -87.123580481364897,45.217517393798104,165.025156060233712 -87.123612578391928,45.217867799705481,165.026115912012756 -87.1236350526884,45.218113153463868,165.026787993498147 -87.123750394195937,45.219372346255504,165.030237153172493 -87.124095055142845,45.223135038233657,165.040543205104768 -87.124205952158519,45.224345710058898,165.043859041295946 -87.123054216261892,45.227685915530941,165.051054894924164 -87.122674562515215,45.228786967896859,165.05342679284513 -87.122653475331362,45.228848123868481,165.05355853587389 -87.118777750799495,45.24008830210223,165.077769082970917 -87.117843516834483,45.242797719787909,165.08360411785543 -87.117819227232118,45.24286816325403,165.083755820989609 -87.110928086629031,45.256744464073073,165.110816191881895 -87.110400985292159,45.257805858304387,165.112885755486786 -87.110130392781656,45.258350735181523,165.113948170095682 -87.10981740177408,45.258440433455945,165.113763900473714 -87.103067983784854,45.260374709939157,165.109791074879467 -87.079702768306831,45.26707081121932,165.096050116233528 -87.072421924332886,45.281702407479486,165.124565344303846 -87.07223214358234,45.28187909101861,165.124773508869112 -87.05901385943946,45.294185150714803,165.139273399487138 -87.05480363929513,45.289248740699222,165.120749015361071 -87.054313189942746,45.288673697347647,165.118590970523655 -87.054258337793641,45.288609384155002,165.118349612690508 -87.053365565151339,45.287562623729407,165.114421214908361 -87.053086526910292,45.287235456235251,165.113193362019956 -87.052182973518313,45.287105701940398,165.111647300422192 -87.050131165201307,45.286811053118981,165.108136521652341 -87.045281284710896,45.286114588655643,165.099838369525969 -87.045110147478127,45.286167418064217,165.099747897125781 -87.044883391886614,45.286237416647275,165.099628027528524 -87.044516744732533,45.286350599220036,165.099434208124876 -87.042849003731419,45.286865424481896,165.09855265263468 -87.035592090750711,45.289105605730306,165.094717828556895 -87.035463434710579,45.289191743781053,165.094771209172904 -87.022473612604415,45.297888715634649,165.100163130089641 -87.018421897800039,45.300601427903139,165.101845949888229 -87.017182659506773,45.300536955109038,165.100023668259382 -86.995497237024964,45.299408746064145,165.068141461350024 -86.994913514505399,45.299262628847266,165.06698081549257 -86.994586414339039,45.299180749248002,165.066330429166555 -86.985607970834778,45.296933268400913,165.048478635028005 -86.985264795117956,45.296847364774763,165.047796317376196 -86.984739874967914,45.296715966945285,165.046752649359405 -86.984611550504795,45.296608161731228,165.046299618668854 -86.981442972140613,45.293946243178119,165.035113116726279 -86.979164607306359,45.292032191847497,165.027069107629359 -86.979098493892351,45.291923314655108,165.026696199551225 -86.971739105220081,45.279803692694863,164.985180127434433 -86.974170150445573,45.275940176864765,164.978314961306751 -86.974611299619184,45.275239084681083,164.977069134823978 -86.975729841630056,45.27346145229405,164.973910268396139 -86.975912059012501,45.273171865030918,164.97339566424489 -86.97600644769652,45.273100554233153,164.973335000686347 -86.978739322733162,45.2710358628891,164.971578689292073 -86.984980744301524,45.266320459197139,164.967568274587393 -86.985782149737105,45.265714996147267,164.967053404077888 -86.985879151017784,45.264757924112558,164.964678443968296 -86.986322383561586,45.260384729714175,164.953825736418366 -86.986359027333336,45.260023180602353,164.95292844902724 -86.985555984399937,45.256695593086505,164.943147768266499 -86.98445014503406,45.25211330092737,164.929677821695805 -86.984052731705276,45.250466530100326,164.924836646765471 -86.983776985300182,45.250329040571167,164.924108671024442 -86.978094495475105,45.247495702267855,164.909106578677893 -86.974669927035592,45.247730594449258,164.905150939710438 -86.974405400003562,45.247748738437942,164.904845408163965 -86.974836502142324,45.246316006471012,164.90166961401701 -86.974843244735652,45.246293598024984,164.90161994472146 -86.974866254010294,45.246217128622362,164.901450439356267 -86.975034693428157,45.245657334282484,164.900209567509592 -86.975468980705898,45.244214016786778,164.89701016433537 -86.980080319400116,45.228888618394819,164.863032130524516 -86.980142095432242,45.228683310927416,164.862576865591109 -86.98246306109499,45.224996010338806,164.856017717160285 -86.983339255040136,45.223604007656149,164.85354146361351 -86.984384260797512,45.221943814932658,164.850588066503406 -86.985091007169615,45.220821012333793,164.848590620793402 -86.987356016159112,45.217222609759375,164.842188908718526 -86.989457606233103,45.216710854903994,164.843655287288129 -86.997187317598431,45.214828605179648,164.849049970507622 -86.99869937823722,45.21446040569645,164.850105497986078 -87.001495582092986,45.213779506537954,164.852057659998536 -87.004189380054157,45.213123544074698,164.853938578628004 -87.006626256787243,45.214956992109016,164.861997662112117 -87.006742496876242,45.215044448384312,164.862382075749338 -87.006851171856084,45.215464581909927,164.863627823069692 -87.008923761409037,45.223477137711519,164.887383497320116 -87.008966813215295,45.223477390258289,164.887441681697965 -87.033905763815824,45.223623684881069,164.921153563074768 -87.03393045299299,45.223623829710405,164.92118694446981 -87.033960636155413,45.223585072051506,164.921125813387334 -87.035908355389964,45.221084040635354,164.917180915363133 -87.0422934224285,45.212885090398068,164.90424810629338 -87.04230856009886,45.212770912797296,164.903969339095056 -87.042447234597645,45.211724944621892,164.901415550149977 -87.042459385803511,45.211633292770216,164.901191774755716 -87.042490072023824,45.211401838465605,164.900626656599343 -87.04728264746808,45.175253300184259,164.812328172847629 -87.047267020871217,45.174894133862324,164.811365834437311 -87.04708464650021,45.170702387130525,164.800133948214352 -87.047070074696606,45.170367464444482,164.799236461520195 -87.047064535064024,45.170240139873847,164.79889527335763 -87.047043396336193,45.169754281033072,164.797593312337995 -87.046863640852237,45.165622726975414,164.78652129881084 -87.046625523258726,45.160149759901685,164.771852715872228 -87.046608253749099,45.159752832214657,164.770788793452084 -87.045558725157022,45.158981940032511,164.767362488433719 -87.042527893969819,45.156755755736,164.757467717863619 -87.039861888379534,45.154797540506507,164.748763675801456 -87.038098554433574,45.153502349151694,164.743006527423859 -87.035465767906487,45.15156853374441,164.734410434961319 -87.031607787343304,45.148734797628201,164.72181352507323 -87.03054698914049,45.147955627766102,164.718349741771817 -87.030362023552925,45.147819768173754,164.717745772562921 -87.030229512841927,45.147722437359839,164.717313087545335 -87.030339975213863,45.147602917192486,164.717147392220795 -87.031487441133635,45.146361360305598,164.715426186099648 -87.03150822030166,45.146338877268271,164.715395017527044 -87.032549163705795,45.145212577630765,164.713833596557379 -87.032689199360078,45.145061059204494,164.713623541407287 -87.033576670439714,45.144100816458078,164.712292332202196 -87.033726538443872,45.143938659440174,164.71206752769649 -87.033843398869493,45.143812216586447,164.711892237886786 -87.034302483262962,45.143315487771197,164.711203609593213 -87.034496518472309,45.143105541885426,164.710912556387484 -87.034499261873066,45.14310407272513,164.710912374779582 -87.03492862376838,45.142874138597541,164.710883904248476 -87.034932711086626,45.142871949735515,164.710883635096252 -87.036003609970166,45.142298456365083,164.710812653414905 -87.036049607323307,45.142273823621963,164.710809606127441 -87.036847092100601,45.141846750403587,164.710756773129106 -87.037220106005776,45.141646992046489,164.710732068866491 -87.04155768688274,45.139324108053756,164.710445130243897 -87.0429464451379,45.138580392971477,164.710353394038975 -87.043496229373559,45.138285969643043,164.710317093878984 -87.043669051499577,45.138193419034472,164.710305687971413 -87.047130701960782,45.136339617880822,164.710077378898859 -87.05566410695026,45.121426696046726,164.682374939322472 -87.055724575088604,45.121321022332168,164.682178618386388 -87.052431393031881,45.117525190772348,164.66780405305326 -87.052132727951005,45.11646422105099,164.664619072340429 -87.05072827887922,45.111475094254537,164.649640798568726 -87.050650411328903,45.111198479677341,164.64881029445678 -87.050612915077892,45.111065279010631,164.648410374298692 -87.050333155513542,45.110071468707623,164.645426512695849 -87.050293474652264,45.109018676099623,164.642609401606023 -87.04978820470518,45.095613105379151,164.606731652282178 -87.049727451184879,45.094001222821873,164.602416910231113 -87.049594662632913,45.090478141891296,164.59298559743911 -87.049740761019464,45.090451916397058,164.593112527392805 -87.052162148494958,45.090017263525077,164.595216332003474 -87.058797133996819,45.088826245751783,164.600982085801661 -87.058825875944308,45.088821086408124,164.601007064804435 -87.059641242849764,45.087657786414916,164.599044704809785 -87.063347682680273,45.082369735882786,164.590124008245766 -87.0645105648818,45.080710629010241,164.587325062602758 -87.064538836158164,45.080670293825051,164.587257013656199 -87.064757367148673,45.080556559316818,164.587251279503107 -87.066246023741868,45.079781787623197,164.58721224591136 -87.080934080078265,45.072137385067997,164.586831081658602 -87.08093668111394,45.072124255422104,164.586800078861415 -87.081652888652812,45.068508945002407,164.578262870199978 -87.082137184228671,45.06606429214763,164.572489648126066 -87.08324786210062,45.06045775372457,164.559248168021441 -87.083801140000588,45.060233684727919,164.559401805512607 -87.087732655178812,45.058641481855709,164.560493852011859 -87.0922306250133,45.056819873603104,164.561743902042508 -87.093021034612548,45.056499769933573,164.561963639222085 -87.093142943120228,45.05651284355568,164.562161627225578 -87.093558982029677,45.056557460093046,164.562837297096848 -87.097769564256538,45.057009008238659,164.569675735197961 -87.0988610118102,45.057126056449519,164.571448424831033 -87.122538919613362,45.059665305046266,164.609911307692528 -87.126083887166402,45.054290444782474,164.600552428513765 -87.126104729668455,45.052187783065435,164.595056214369833 -87.126109575169579,45.05169895269178,164.593778402544558 -87.126120248029423,45.05062223896941,164.590963796712458 -87.126126783929067,45.049962875678766,164.589240140281618 -87.12617106702956,45.045495450689458,164.577560991048813 -87.126179779126645,45.044616545946965,164.575263126753271 -87.126190630644658,45.043521809597181,164.572400906123221 -87.133726821092637,45.028216866437454,164.542301464825869 -87.135736370544009,45.024135754181088,164.534273931756616 -87.139406363193586,45.016682515493919,164.519611890427768 -87.140766317105019,45.013920640494923,164.514178209938109 -87.142430501517964,45.013530294649939,164.515389367938042 -87.155466636341146,45.010472579979535,164.524880052544177 -87.164860250390021,45.006268676374653,164.52646226901561 -87.164911792994332,45.006245609625388,164.526470957323909 -87.164943993210329,45.006203540946466,164.52640366461128 -87.168856955592915,45.001091365394849,164.518225688487291 -87.169352469477786,45.000443990412776,164.517190054059029 -87.170877041870511,44.998452179380124,164.514003623276949 -87.171058294907439,44.998215377376063,164.513624793849885 -87.17107646697194,44.998191636084066,164.51358681358397 -87.182810672436318,44.982861226340972,164.489059836603701 -87.183283718098949,44.982243205484266,164.488071001134813 -87.184304339171149,44.980576868381476,164.485061716288328 -87.188967878717264,44.972962848746576,164.471310385502875 -87.190516424540277,44.970434584960657,164.466743862256408 -87.190789628723408,44.969988532781016,164.465938187204301 -87.190784202717111,44.969880517954572,164.465646672062576 -87.190766105811065,44.969520265114937,164.464674397371709 -87.189963864081875,44.953550136420773,164.421564249321818 -87.189781371012074,44.949917268169528,164.4117551734671 -87.189757106995714,44.94943424720168,164.410450904630125 -87.189456368023528,44.949243679143763,164.409544026479125 -87.181355606213955,44.944110501898663,164.385115148499608 -87.176621548556767,44.941110690561054,164.370838096365333 -87.173081253432613,44.932834016296539,164.344269943423569 -87.176301252044496,44.929107104778566,164.338791262358427 -87.183802764288146,44.927655313919971,164.3450757721439 -87.187239866235018,44.926990120949128,164.347955885343254 -87.188113519783656,44.92682104007519,164.348688022233546 -87.189365829729994,44.926202698092816,164.348747163079679 -87.205619790462706,44.918177123977763,164.349519580602646 -87.217189585306585,44.908102732698168,164.338583986274898 -87.217358865829809,44.907955331794632,164.338424003683031 -87.217440590752176,44.907367624604078,164.336985838599503 -87.217455851765919,44.907257878308769,164.336717278696597 -87.217528224060231,44.906737428533603,164.335443678312004 -87.218552543911755,44.899371253104704,164.31741610262543 -87.218576689273263,44.899197616948122,164.316991117782891 -87.218530710641559,44.899147424702178,164.316796814091504 -87.218091163351758,44.898667596032304,164.314939285628498 -87.21396875698872,44.894167400462685,164.297517014667392 -87.210646691911322,44.890540891747925,164.283475905656815 -87.207666106571892,44.887287156949732,164.270877128466964 -87.207565168134167,44.886687740739042,164.269160717725754 -87.206196201040726,44.878558220300761,164.245879462920129 -87.206189449040323,44.878518123992166,164.245764625258744 -87.205925811893508,44.876952532200406,164.241280536167324 -87.206284355259868,44.876788690232573,164.241332333534956 -87.212779340092496,44.873820705893252,164.242271405644715 -87.226271970921459,44.867655038378935,164.244226852431893 -87.24755288955005,44.857930391622574,164.247323717921972 -87.268442734587609,44.848384452029627,164.250378774479032 -87.26882283861957,44.848210757580475,164.250434502959251 -87.268946113025891,44.84801454642799,164.2500836616382 -87.276150595422394,44.836547447818077,164.229577802121639 -87.277411745708477,44.834540123259345,164.225987881422043 -87.283942482753019,44.816089678532528,164.18613797519356 -87.296251156640253,44.810491393383167,164.188019061461091 -87.306205846614617,44.805963757542663,164.189544199034572 -87.308863464443945,44.802737595146972,164.18462719488889 -87.314744767004655,44.795598104752145,164.173745526000857 -87.315073500726157,44.795199044984976,164.173137280158699 -87.315132830690999,44.795127022553558,164.173027504235506 -87.315261865131149,44.794956112763302,164.172751086764038 -87.315628528174116,44.794470457122777,164.171965609304607 -87.317195101505021,44.79239548614553,164.168609607964754 -87.321778801315617,44.786324245300889,164.15878976136446 -87.321177174236922,44.780531612504646,164.142679592594504 -87.32055038453322,44.774496706551759,164.125893091782928 -87.320411123665266,44.773155864046444,164.122163097374141 -87.320394283395032,44.772993721223756,164.121712035499513 -87.320363437879777,44.772696731990337,164.120885838754475 -87.321284789751729,44.771033345642024,164.117740879766643 -87.322236648560974,44.769314882816303,164.114491697400808 -87.338965143136122,44.73911366547523,164.057373162358999 -87.340535870423381,44.734202277058394,164.046522172167897 -87.341284837508567,44.731860388535033,164.041347700171173 -87.342606866537679,44.727726636028962,164.032213393598795 -87.342871943835874,44.726897785898025,164.030381793156266 -87.344888863195308,44.72059123358526,164.01644441857934 -87.349462486540617,44.712889454068069,164.002285147085786 -87.350939383749349,44.710402424494191,163.997712516225874 -87.355169730513666,44.703278707748602,163.984613906592131 -87.355552278571565,44.702808951289526,163.983890723437071 -87.355629506566487,44.702714117846632,163.983744729310274 -87.362530645822289,44.694239745426721,163.970698119141161 -87.369372772896057,44.685837838169704,163.957762306556106 -87.369643700729725,44.685505147693846,163.957250076346099 -87.374608471777265,44.676957556834857,163.941377243958414 -87.379870151425237,44.667898793928764,163.924552739597857 -87.388220839969605,44.653521843921403,163.897845829837024 -87.394901353161472,44.642020349122696,163.876475878991187 -87.403009348349315,44.63255657946732,163.862441154196858 -87.405104605403352,44.630340018672698,163.859420907683671 -87.406790355905045,44.628556672590356,163.856990956701338 -87.419408547627555,44.622235739508774,163.85741984564811 -87.437147053364882,44.607838467535117,163.843430751934648 -87.438873699927015,44.606437052992305,163.842069417238235 -87.439131862350706,44.605924630932819,163.841063377447426 -87.448343510934691,44.587640592003019,163.805160048417747 -87.468469610969095,44.554924056925572,163.745855153538287 -87.468593882049362,44.554722044663947,163.745488874614239 -87.468777894912762,44.55442291750898,163.744946508668363 -87.469473269487395,44.553292532306862,163.742896920070052 -87.474313723934216,44.540706304748205,163.716113278642297 -87.483264036648023,44.517433559160452,163.666569746099412 -87.485075732671731,44.51272275857135,163.656538306735456 -87.485252179243275,44.507110646831343,163.641879783011973 -87.485293575110717,44.50579399783286,163.63844047114253 -87.485421381002865,44.505224994995444,163.637104206718504 -87.488201788057253,44.49284638385253,163.608029461465776 -87.491403098820243,44.478593874382867,163.574542807415128 -87.493711874997913,44.474173622198535,163.565953314304352 -87.496056556317157,44.469684628120817,163.557229529134929 -87.496554882911852,44.46873056024971,163.555375326424837 -87.496630965410517,44.468584897007553,163.555092234164476 -87.500040942304423,44.462056348474732,163.542403299361467 -87.500239072296949,44.461107280939288,163.540151740424335 -87.500251046924376,44.461049920970815,163.540015657432377 -87.500312835595352,44.4607539454815,163.539313478395343 -87.500727868330756,44.458765886603061,163.534596820361912 -87.501053301270133,44.457207022007736,163.530898266471922 -87.501097405614743,44.456995756666558,163.530397010967135 -87.5036873527133,44.444589585814569,163.500957165844738 -87.507740282442953,44.425175547004663,163.454870196990669 -87.509029183603289,44.422789654036833,163.450286836363375 -87.512765453517545,44.415873421612552,163.436999477446079 -87.513013195153647,44.415414825537333,163.436118370853364 -87.513689170432414,44.413312436277941,163.43144971318543 -87.514263908075279,44.411524911978063,163.427480085752904 -87.516860333559848,44.403449621273111,163.409544977359474 -87.519342903404478,44.395728439743976,163.392393310554326 -87.519258509661967,44.39145447752005,163.380900816060603 -87.518974455861766,44.377069099300954,163.342209976166487 -87.519117771065098,44.376729712766675,163.341502447612584 -87.51947144815027,44.375892165617884,163.339756364934146 -87.520483568632528,44.373495350401896,163.334759420715272 -87.522424357195959,44.368899344703678,163.325176851823926 -87.52304069194831,44.36809231607301,163.32387157715857 -87.534960309812874,44.352484770529294,163.29862605035305 -87.534983716748386,44.35242579978835,163.298501012846828 -87.54289395071882,44.332496991055244,163.256236225366592 -87.544326840076067,44.328887012284532,163.248578312806785 -87.546758931265373,44.322759674287241,163.235578936524689 -87.546101930416413,44.308443080547633,163.196501563303173 -87.546092573879264,44.308239193799089,163.19594494625926 -87.546051858321661,44.308082335773214,163.195470738224685 -87.542758202439501,44.295393417745018,163.157103543169796 -87.54264120453584,44.294942679446258,163.155740422196686 -87.542532075448676,44.294522256022873,163.154468966647983 -87.542531157684451,44.294518720305994,163.154458270408213 -87.54242888174339,44.294343784270303,163.153851193375885 -87.527841082694209,44.269392346453678,163.067235581576824 -87.527766360643241,44.269264539466612,163.066791776567698 -87.527601139107375,44.268981939264741,163.065810457803309 -87.527199134033651,44.268294336921947,163.063422754406929 -87.527171922947673,44.268247794209714,163.063261131756008 -87.527078576428721,44.268088131336455,163.062706695869565 -87.52701849012314,44.267985357796384,163.062349808402359 -87.526860365197408,44.267714895862994,163.061410607770085 -87.526829626005053,44.26766231856454,163.06122802849859 -87.52666873552873,44.267387126344794,163.060272396542132 -87.526585882598312,44.2672454120409,163.059780277311802 -87.526065597821741,44.266355500306958,163.056689913384616 -87.525834508562184,44.265960237840687,163.055317277088761 -87.525568414617624,44.265505102240667,163.053736701607704 -87.524554096246931,44.263770179629546,163.047711572609842 -87.524215002019261,44.263190182006532,163.045697269029915 -87.523932233574172,44.262706525804973,163.044017531909049 -87.523236853796234,44.261517125968062,163.03988666459918 -87.523129862531562,44.261334124683188,163.039251078851521 -87.522705214894245,44.260369804085414,163.03609277214855 -87.522693245279569,44.260342622617806,163.036003746092319 -87.516780267021744,44.246915003300707,162.992018019780517 -87.516773355628459,44.246899308408075,162.99196660052985 -87.51668825185746,44.246706048597858,162.991333413869143 -87.509830495472144,44.231132958182123,162.940300527028739 -87.509792799327343,44.231047355041945,162.940019951201975 -87.509786266480106,44.230924168145698,162.939681681804359 -87.508792333877125,44.212182034190135,162.888203866779804 -87.514276063038778,44.194187605115509,162.847599579021335 -87.521032943958133,44.18124998210957,162.82226266618818 -87.541313019494652,44.161070453635382,162.79612531606108 -87.551448655686357,44.154313121184693,162.791974186897278 -87.564554282872393,44.145575723989694,162.786610874347389 -87.564924768036136,44.145452889591262,162.786791805177927 -87.568417955128695,44.144294723010539,162.788497982546687 -87.569190669400797,44.144038529504847,162.788875455968082 -87.571906350182189,44.143138145229486,162.790202246047556 -87.59805428680076,44.134468793791925,162.802990333177149 -87.599284083818887,44.134061054445041,162.803592372685671 -87.600428770116636,44.133681533567511,162.804152791388333 -87.602256002407884,44.133075714484598,162.805047470144928 -87.604945615743475,44.131770886810266,162.805258486419916 -87.622456315661253,44.123275819687223,162.806638210080564 -87.647174267577483,44.10660348385035,162.79606669023633 -87.647957598868629,44.106075124450086,162.795731943100691 -87.648093110744469,44.105715859088015,162.794956565834582 -87.648925565278333,44.103508878510532,162.790193274617195 -87.648977172306644,44.103372059376454,162.789897969923913 -87.652881779638662,44.0930202720008,162.767552740871906 -87.656309081546382,44.083933903951092,162.747934861108661 -87.656557300627796,44.083275832398094,162.746513904072344 -87.654856915066063,44.068576376426378,162.704767035320401 -87.655065053578184,44.067343461454506,162.701748985797167 -87.657435500049829,44.053302048639495,162.667370622046292 -87.657456628429372,44.053176894038359,162.667064148001373 -87.672689701315434,44.03873322605601,162.649362799711525 -87.684734625223726,44.021522695564862,162.619832368567586 -87.687762141606498,44.013903533762473,162.60357041656971 -87.692851930570924,44.001094379551766,162.576225182972848 -87.696425974735277,43.992099806030737,162.557018874213099 -87.69687624401277,43.990966641508841,162.55459894053638 -87.696884636500911,43.990908558863346,162.554454581812024 -87.700292790211819,43.967321446422424,162.495814646594226 -87.700401994452989,43.967119906417913,162.495424283668399 -87.701497637546069,43.965097861204406,162.491507691331208 -87.701693272659327,43.964736810196435,162.49080833978951 -87.704080149612835,43.96033175064585,162.482275408692658 -87.704091293419225,43.960311184386512,162.482235567644238 -87.705323710462906,43.95803671841135,162.477829484269023 -87.706051282991396,43.95725739492768,162.476742372848094 -87.708029111816018,43.955138886620055,162.473787175491452 -87.710835311703036,43.952133086687979,162.469594238325953 -87.717409734400988,43.94509103696857,162.459770867601037 -87.719542792554222,43.940884613027762,162.451418084092438 -87.720413678089628,43.93916721318633,162.448007613420486 -87.720413863497228,43.939166385528765,162.448005647398531 -87.720566220322553,43.938486266252823,162.44638832565397 -87.721493998553754,43.934344673985372,162.436539058573544 -87.721754871630239,43.933180139334006,162.43376946169883 -87.722106574676573,43.931610140670934,162.430035432800651 -87.722640597657943,43.929226267783278,162.424365443177521 -87.723472149938999,43.925514227345374,162.415535785257816 -87.725087907541806,43.918301503021773,162.39837696030736 -87.725616066879638,43.91594380556301,162.392767435871065 -87.728138294126779,43.9046846114069,162.365974710322917 -87.728175088260926,43.904520362809976,162.365583807229996 -87.728213389706866,43.904427573393434,162.365387251600623 -87.729914063660459,43.900307505888406,162.356659287586808 -87.730256569312431,43.89947774872563,162.354901434853673 -87.732001764615404,43.895249823486679,162.345944026485085 -87.732017107154491,43.895212654519185,162.345865273848176 -87.732694342889303,43.893571977385996,162.342389068566263 -87.735106566272123,43.887728104287561,162.330006282776594 -87.735828992037057,43.885977949443976,162.326297516934574 -87.736807685072236,43.8836069593345,162.321272914297879 -87.737549816257655,43.881809065996549,162.317462648265064 -87.737388658277283,43.875109308730003,162.299202892929316 -87.736252215266333,43.871818425207479,162.288766023702919 -87.730068977818718,43.853913158825051,162.231964810751379 -87.730099011433595,43.853222197747925,162.230145053006709 -87.730588029457408,43.841971725051465,162.200510596856475 -87.730970526889678,43.833171894568736,162.177325351163745 -87.729055820859259,43.820379784111239,162.140182374976575 -87.728142090055485,43.814275167535612,162.122452738694847 -87.727778294170562,43.81184465468732,162.115393010899425 -87.727776954072226,43.811835701517687,162.115367004647851 -87.727775131582092,43.811832699079744,162.115356376394629 -87.701619275674716,43.76874256935244,161.962751950137317 -87.7016131227941,43.768522038256634,161.962147857993841 -87.70145858425505,43.762983078610191,161.946974036283791 -87.7014531355466,43.762787786353783,161.946438999846578 -87.704352946005343,43.751088174251095,161.918862332589924 -87.704415336334108,43.750957722963101,161.918596560135484 -87.705997679477846,43.747649218197147,161.911855810321867 -87.706552899653062,43.746488314135085,161.909490478225052 -87.709535203624114,43.744371903122236,161.907915342599154 -87.709652931844943,43.744288356540387,161.90785316657275 -87.709688447616301,43.74413074883487,161.907476650550961 -87.711252812675838,43.737188594035793,161.890890785492957 -87.709552474042837,43.724289080872069,161.853660930879414 -87.709290529852041,43.723458027034219,161.851050144061446 -87.704511407365146,43.708295605717325,161.803406939841807 -87.704351960956473,43.707789740112972,161.801817091181874 -87.704051526020322,43.688991424428806,161.750543240457773 -87.705037784500448,43.68673416908149,161.745806372724473 -87.707570436529096,43.680937674172753,161.73364135529846 -87.707608394339317,43.680883182921335,161.733546665869653 -87.727826607840072,43.651858439074289,161.683100595138967 -87.734988040871201,43.641577671678995,161.665227294899523 -87.735678266375004,43.640586801871976,161.663504513911903 -87.736431001357744,43.639613543938275,161.661916458047926 -87.736855312778815,43.639064925279946,161.661021277308464 -87.737337994177281,43.63844083644392,161.66000294405967 -87.737511995405569,43.638215859421265,161.659635845571756 -87.739224862336229,43.636001187115859,161.656022071838379 -87.74000382755645,43.634994014484228,161.654378594830632 -87.743851189818869,43.630019520308345,161.646261095069349 -87.743888727754737,43.629970985174488,161.646181893534958 -87.781541365459987,43.581287548606674,161.566715506836772 -87.782621134825078,43.579891447724989,161.564436008222401 -87.783637333400321,43.578124687788446,161.561062578111887 -87.790471204378733,43.566243339464222,161.538373702205718 -87.791501020620089,43.564452903956528,161.534954222850502 -87.791642862570356,43.563774429376679,161.5333116883412 -87.794441199825044,43.550389104321894,161.500901246443391 -87.795686261570367,43.544433583720348,161.486477478407323 -87.798973411127079,43.528710118071821,161.448386458680034 -87.798701027713861,43.512023730486426,161.402691866271198 -87.794603517699457,43.494184431111556,161.348498758859932 -87.809163189881531,43.462538414736528,161.282823618501425 -87.828683113843894,43.436252144474366,161.238632466644049 -87.856972198909389,43.406844885317142,161.198216299526393 -87.86641218112895,43.394974208407824,161.179126921109855 -87.868868430643076,43.390562518034791,161.17055690754205 -87.870462743542177,43.387698959280307,161.164993864484131 -87.8738680770673,43.381582611280969,161.153110617771745 -87.878811961891969,43.37063995440559,161.130236095748842 -87.883755708115032,43.353504525484091,161.090479369275272 -87.889484597720866,43.316137906832694,160.996633156202734 -87.88967503496356,43.314895782233691,160.99351204559207 -87.889676987679849,43.314883045665574,160.993480042554438 -87.889690571333659,43.314794446449476,160.993257413618267 -87.889697550676956,43.314748923768384,160.993143024854362 -87.889704872820275,43.314701165177759,160.993023018352687 -87.890569893178522,43.309059080583637,160.978844750672579 -87.899175830054745,43.293035531882843,160.947206409648061 -87.901617955789533,43.288488494169471,160.938226531259716 -87.903209699671237,43.285524797713627,160.932373143732548 -87.904329428429577,43.281727234126606,160.92357958946377 -87.904456980761267,43.281294639998876,160.922577831894159 -87.904503667130598,43.281136303033179,160.922211170196533 -87.90481386795453,43.280084255982764,160.919774895533919 -87.905614018936419,43.277370541484764,160.91349034383893 -87.907827926342449,43.269862067933531,160.896099749021232 -87.907845845051284,43.26980129658029,160.895958981476724 -87.907864439267698,43.269738234241387,160.895812905393541 -87.90792767231963,43.269523779161268,160.895316152833402 -87.907945384857072,43.269463707039002,160.895177003927529 -87.907961222195297,43.269409994660606,160.895052586682141 -87.90796746456995,43.26938882362861,160.895003547891974 -87.907973462305122,43.269368482292393,160.89495643042028 -87.908651479923421,43.267068983580003,160.88962980825454 -87.908653688890752,43.267061491861092,160.889612452127039 -87.908668091660374,43.267012644826451,160.889499300159514 -87.910415408926639,43.261086613380115,160.875770716927946 -87.911707279926731,43.256705229335203,160.865619306452572 -87.913149208772253,43.251814923798541,160.854287503287196 -87.912874569794823,43.249473172757867,160.847503444179893 -87.911534113187543,43.238043564762371,160.814385841600597 -87.911448841169261,43.237316479834519,160.812278755940497 -87.898691708809153,43.201456785491892,160.696274102665484 -87.898686447668041,43.20144199667272,160.696226238273084 -87.898676501086939,43.201414037303536,160.696135750040412 -87.898485995892401,43.200878536207107,160.694402601569891 -87.897646616123254,43.198519079345132,160.686765940859914 -87.896914760812152,43.197635893943115,160.68331959284842 -87.89345018296487,43.193454924645977,160.66700373031199 -87.889929984378483,43.189206833561776,160.650424305349588 -87.888946154745526,43.188019571593586,160.645790370181203 -87.887625965451306,43.184770976533763,160.635040579363704 -87.886238285447874,43.181356306791841,160.623740257695317 -87.886232060460486,43.181340988940399,160.623689566738904 -87.886128496124471,43.181086147763203,160.622846169397235 -87.88244462921692,43.172021241582009,160.592842220328748 -87.887739890174373,43.161667731410787,160.571940232999623 -87.890208277607144,43.156841439743197,160.562195271253586 -87.890686835509669,43.155905743844066,160.560305860824883 -87.890734597532017,43.1558123575929,160.560117287561297 -87.890993034799109,43.155307050525195,160.559096923097968 -87.892418117623649,43.152520670573146,160.553470225073397 -87.893644437298605,43.150122920440303,160.548628058284521 -87.897367441498417,43.144817763552965,160.539335638284683 -87.89946438510546,43.141829688837042,160.5341014591977 -87.900379841863838,43.14052519348899,160.531816316768527 -87.901644394348068,43.138723248380991,160.528659697622061 -87.902704820835808,43.13477066099928,160.519321619533002 -87.902744332354033,43.134623387492994,160.518973666243255 -87.902718645606797,43.134415090345904,160.51836662273854 -87.901855216153038,43.127413429313783,160.497959665954113 -87.901844147133801,43.127323669203584,160.497698028571904 -87.901821930641319,43.127287460184505,160.497567478567362 -87.894543692590489,43.115425197825139,160.454791170544922 -87.880526694127596,43.103131487813741,160.401324295438826 -87.879273369646498,43.102032250496286,160.396542925387621 -87.877441913014437,43.100425958185703,160.389555810950696 -87.873850643156601,43.091224849811709,160.359248486347497 -87.873719774761668,43.090889554959055,160.358143930323422 -87.873710085842575,43.090864731206295,160.35806215275079 -87.873612281918668,43.090614150061057,160.357236659154296 -87.873286002619551,43.089778197501438,160.354482730850577 -87.871816447318125,43.086013084221463,160.342078358866274 -87.867843858163965,43.075835006266608,160.308540057390928 -87.867841118401913,43.075827986786152,160.308516922406852 -87.871540994675314,43.065828315018912,160.286272897385061 -87.871573621745398,43.065791853237855,160.286218751221895 -87.876816989566493,43.059932224164058,160.27751699462533 -87.877699940876028,43.058945498206768,160.276051641441882 -87.883287377034748,43.052701361981718,160.266778492368758 -87.883425839915105,43.052546625344497,160.266548691317439 -87.883441012913664,43.052529669039892,160.266523508355021 -87.891239709273066,43.047250715022244,160.263020270504057 -87.896170071488399,43.043913342451745,160.260806310921907 -87.896385228226691,43.04376770240259,160.260709709487855 -87.896441159088013,43.043729842684847,160.260684598237276 -87.896484092077628,43.043568840367683,160.260302847251296 -87.897583891498428,43.039444500204439,160.250523187220097 -87.89795477042037,43.038053673128367,160.247225030325353 -87.899540596808009,43.032106691222459,160.23312131036073 -87.900040955789493,43.03023030312918,160.228670890443027 -87.898192827033412,43.021947590332402,160.203298394568264 -87.898003206190225,43.021097771286591,160.200694824568927 -87.897754498135285,43.019983142539921,160.197279875166714 -87.897513591445943,43.018903476975126,160.193971950560808 -87.897140593713587,43.017231822232681,160.188850075006485 -87.894867509905353,43.012939227254769,160.173840454779565 -87.890697833754956,43.005065020855668,160.146303018555045 -87.890451070326066,43.004599021551854,160.144673169590533 -87.890159792530184,43.004048959288369,160.142749279737473 -87.889145510135251,43.002133542189064,160.136049738153815 -87.889059124566415,43.001970407743826,160.135479127988219 -87.88903904526363,43.00193248907329,160.135346500203013 -87.880038631887757,42.993833897988459,160.100365973077714 -87.858536753366764,42.979434690251018,160.03039622772485 -87.846535088493511,42.963435430004814,159.969407616183162 -87.846092599607246,42.960268090279158,159.960059473291039 -87.845188429894662,42.953796034505373,159.940955302678049 -87.844929085650676,42.951939645776804,159.935475023463368 -87.844139228992461,42.946285843650053,159.918782679364085 -87.844113220761344,42.946099676458729,159.918232994154096 -87.844034630801914,42.945537128702711,159.916571978479624 -87.845931503375112,42.925110308409486,159.862949100323021 -87.848060933708766,42.902179153559743,159.802718436345458 -87.849097332065284,42.891018513244539,159.773391178809106 -87.849132562889494,42.890639123865753,159.77239409275353 -87.847163440631419,42.885679305795577,159.755925093777478 -87.836230516625989,42.858141495107077,159.664447689428926 -87.832526910148431,42.851310641094933,159.640344747342169 -87.828372072344806,42.843647545419934,159.613300264813006 -87.82670297010479,42.840569088242674,159.60243434458971 -87.825350447242457,42.838074523422058,159.593628748320043 -87.824628747428761,42.836743435407733,159.588929897174239 -87.823674922581674,42.835796278008232,159.584963941015303 -87.805382519845637,42.817631743113985,159.508889328688383 -87.805123040512655,42.817374077595943,159.507809989154339 -87.79755049626327,42.809854466997493,159.47630828525871 -87.795325349443019,42.807644874406584,159.467050723731518 -87.791301705016963,42.805117618957738,159.454372061416507 -87.787640439981075,42.802817974395204,159.442834849469364 -87.787285111621784,42.802594792265069,159.44171513337642 -87.775047836732909,42.794908546534081,159.403150548227131 -87.774971412908414,42.794815149003973,159.402784041129053 -87.768023278294976,42.78632383599988,159.369459143839777 -87.771122012163474,42.775147382027995,159.342889405786991 -87.77268795170778,42.773115442956474,159.339475192129612 -87.778780337919585,42.765210056375992,159.326191153377295 -87.77952199502154,42.764247693543936,159.324573929421604 -87.780121467486097,42.76198463701482,159.319152489304543 -87.78213018708378,42.754401559960122,159.300984083674848 -87.782364022074333,42.753518814196624,159.298868879675865 -87.783296449456714,42.74999882640131,159.290433964692056 -87.783521772136339,42.749148215309617,159.288395542651415 -87.783196599899455,42.747276562592546,159.282749000936747 -87.783003083779263,42.746162706813209,159.279388501308858 -87.782989688590334,42.746085605698418,159.279155885800719 -87.782680858317903,42.744308015354491,159.273792691528797 -87.780874629355353,42.733911575752501,159.242420383729041 -87.780171048623558,42.729861848372053,159.230197594501078 -87.779974237503524,42.728729026852946,159.22677830606699 -87.781666945141737,42.720109215227026,159.205270882695913 -87.783369708598215,42.711438196615518,159.183630997315049 -87.78372092249792,42.709649702653479,159.179166942834854 -87.784835428129355,42.70659513249192,159.172270730137825 -87.785362363514011,42.705150939619237,159.169010046869516 -87.786420832911205,42.702249950253567,159.162459895946085 -87.788120875056109,42.70214993403944,159.164588778279722 -87.796220852747155,42.69135024666236,159.146090343594551 -87.803724016231868,42.678082709565992,159.119893848896027 -87.804223145174802,42.677200120287608,159.118150955997407 -87.804336145475006,42.677000306482682,159.117756368592381 -87.804374458531285,42.676932559073634,159.117622585035861 -87.804420753172309,42.676850698155171,159.117460927926004 -87.804473755351907,42.676707231458224,159.11713776178658 -87.806767361948658,42.670498880008878,159.103152109310031 -87.807114416979672,42.669559468873793,159.101035706698895 -87.808428202435991,42.666003304673993,159.093023599125445 -87.811226448700424,42.658428991122314,159.07595631852746 -87.811232017023514,42.658413918744529,159.075922352261841 -87.812717898738526,42.654391923284862,159.066858321428299 -87.814791872444545,42.648778076235281,159.054205461405218 -87.816020377677347,42.645452749427079,159.046709842979908 -87.820752763965871,42.618760496411149,158.979247385635972 -87.82101990012201,42.617253758638441,158.975437868386507 -87.820719694256809,42.60805411084246,158.94943546038121 -87.817081695756158,42.597479913915492,158.914868388324976 -87.816419313478931,42.595554635290441,158.908573620952666 -87.812218058008213,42.588754942535026,158.883697700686753 -87.812961999742981,42.586244108820587,158.877767561934888 -87.814216221456164,42.582011059417532,158.867769042961299 -87.81461794630853,42.580655221683656,158.864566319622099 -87.814568071723215,42.578194187804833,158.857647127471864 -87.814487200840745,42.574203658061144,158.84642680734396 -87.814480232079418,42.573859788282356,158.845459881238639 -87.814195057592258,42.559788001152988,158.805883958935738 -87.814068452774904,42.553540748724942,158.788309295661747 -87.813976400759699,42.548998486010255,158.775529264472425 -87.813616860029114,42.531257109867887,158.725597790442407 -87.811015471051121,42.516257710866512,158.680101924575865 -87.801819742079729,42.493358690223587,158.603188090026379 -87.801903744261182,42.49335868923945,158.603307424113154 -87.817215141834026,42.493358509830706,158.62506197579205 -87.84493786971764,42.493745170119709,158.665546072646976 -87.901587354479702,42.494457478352892,158.748119746334851 -87.972626216822306,42.495455605824468,158.852081632241607 -87.991527717030309,42.495955364544947,158.88041795603931 -88.051131276771045,42.496754632758673,158.967672460712492 -88.200874473020917,42.497446825176056,159.183644754812121 -88.201525177557556,42.497449833066291,159.184584583155811 -88.218253607197227,42.497356639075228,159.208275803364813 -88.273045996346355,42.496251033796021,159.283704463392496 -88.306047845816863,42.496205346858709,159.330899260006845 -88.418754743500074,42.496049316396167,159.492301684804261 -88.462756874668685,42.49604879452108,159.555576721206307 -88.471956800374443,42.496102246248924,159.56896143220365 -88.508273049661071,42.496313244101309,159.621819149702787 -88.70874386911305,42.495014923351128,159.907420423813164 -88.708746161115499,42.495014908507265,159.907423693686724 -88.777863554389427,42.495446835434677,160.0085807768628 -88.941760139650953,42.496471050188916,160.248963016085327 -88.941763145871704,42.496471068975197,160.24896743055433 -88.944636220616729,42.496539031970848,160.253325848840177 -88.994032499532437,42.497449405356896,160.327579943463206 -88.994350528135527,42.497450340069726,160.328044611960649 -89.015041036040543,42.497511151162534,160.358281353488564 -89.015178039748733,42.497521149136581,160.358508099801838 -89.044272784034447,42.497678794172337,160.401245274581015 -89.072516501822989,42.497631457094514,160.442200996913016 -89.10038821722604,42.497922111341062,160.483569242060184 -89.1183256823779,42.498332880147728,160.510820704512298 -89.121741771030614,42.498414835966827,160.516021811403334 -89.126487890924921,42.498379780293597,160.522837642580271 -89.166282910835676,42.49876928706599,160.58189541939646 -89.168105955152996,42.498678268639985,160.584301718510687 -89.227649482516867,42.499378525444946,160.673072095029056 -89.229658535484461,42.499468497807904,160.676251760683954 -89.24835201166583,42.499551269572621,160.703763377852738 -89.252139104756935,42.499415229192152,160.708917001262307 -89.292277141621582,42.500273712693264,160.769899853505194 -89.362943957755732,42.501431816020677,160.876394227147102 -89.367414076727414,42.501693752013658,160.883654395118356 -89.402800369062632,42.501852248636887,160.935874368064106 -89.402815976429693,42.501852318542817,160.935897409915924 -89.42237547479273,42.502008076312059,160.964963374659419 -89.423951516672602,42.50209905377622,160.967521631158888 -89.42531055409863,42.502237032055241,160.969891462475061 -89.426546583337853,42.502145020658389,160.971448443830013 -89.48568609414987,42.502844278901307,161.060026974417269 -89.493998306153358,42.502932174981424,161.072455696761608 -89.494602321416423,42.502932167675198,161.073341333307326 -89.523929070587428,42.503306798421029,161.117384051904082 -89.565795143974654,42.50404526311474,161.180856740102172 -89.596167928968072,42.504884862825527,161.227767647244036 -89.601390065217288,42.505088791688898,161.235999254509807 -89.60491215151329,42.504973753422711,161.240857685916126 -89.614799409407524,42.505358618759502,161.256442250683904 -89.645566197931885,42.505936223426396,161.303250779397786 -89.651714354958585,42.506029145266474,161.312545714899898 -89.668986797921534,42.506375922341959,161.338899198919535 -89.69147936967839,42.506606640441973,161.372622599825263 -89.694878453249899,42.50651460271515,161.377371741458774 -89.743787690848606,42.50679699774858,161.450150525197387 -89.771036375080101,42.506736668854671,161.490127941593528 -89.781695643775862,42.506763538208979,161.505910302512348 -89.795350989756614,42.506880367631879,161.526359098032117 -89.801098133252793,42.506835299457371,161.534708463586867 -89.803291188898413,42.506858271893847,161.538004885427654 -89.838982550633844,42.506956466604635,161.590915151871741 -89.927621300733392,42.507200329906063,161.722462351433933 -89.927771322705468,42.507200742645672,161.722685172222555 -89.927881325442883,42.507199741343015,161.722844981588423 -89.986470809652758,42.507876000528221,161.811320940963924 -89.987043823278157,42.507842994806481,161.812078227289021 -89.998612120402527,42.508166841105577,161.83007918857038 -90.000713176594459,42.508325809325783,161.833623052574694 -90.018427625143957,42.508538584812271,161.860420337878168 -90.020064669741615,42.508699558612392,161.863283894956112 -90.094427550724518,42.509570616193159,161.975806311704218 -90.096405594065445,42.509295602609726,161.977985855191946 -90.144324798280323,42.509561006061645,162.049764693714678 -90.165766336838402,42.509681738894677,162.081907138228416 -90.182975762218476,42.509477536007857,162.106891170144081 -90.207477366938292,42.509156248222489,162.142392014153302 -90.22459479467868,42.509174037741687,162.167865198105574 -90.252027473809633,42.508929710822144,162.207959872670472 -90.254526532103995,42.508748687162445,162.211179800331593 -90.26854888866437,42.509050503510373,162.232848442159593 -90.270740945221064,42.509134473376285,162.236336723901331 -90.274270028869594,42.508939437611005,162.241051164455712 -90.305229799411748,42.508877060076635,162.286925919353962 -90.364060255672229,42.508455353818746,162.373340793885291 -90.36928238718599,42.508521287097665,162.381297969259322 -90.372081456811372,42.508518252815243,162.385458617471159 -90.407336329376619,42.508297827917488,162.437383535318077 -90.427787777303209,42.508465998624821,162.468327804468572 -90.438421108396312,42.508553435665114,162.48442095797509 -90.476366059336783,42.508889955609327,162.541939885355532 -90.480857169421938,42.508821902940575,162.548456142656505 -90.493127479002467,42.509029743795736,162.56733541470021 -90.533666484739129,42.508978246316282,162.627725414000452 -90.545759787985887,42.509112092072073,162.646155368536711 -90.546211799341464,42.509118086267918,162.64684700127691 -90.552577956866656,42.509096008636206,162.656298413872719 -90.557275069348094,42.508913957763617,162.662821065634489 -90.5668543091206,42.509004836124049,162.677383980713785 -90.616003538423072,42.509457212234231,162.752102821134031 -90.619145616864955,42.509481172523166,162.756868165917695 -90.642342196915735,42.509705877436197,162.792186632752419 -90.638342208315777,42.514605737234611,162.799537071958184 -90.638142327460514,42.52010552693833,162.814204985275865 -90.647043121685684,42.545502435046949,162.896602767519653 -90.704090500115441,42.632154385644398,163.217189636081457 -90.7106237831171,42.637476099681052,163.241385290399194 -90.721629162476063,42.642155783024315,163.270525583997369 -90.770916627562954,42.652839760235864,163.373199482448399 -90.845333735892837,42.664466388294016,163.516092105768621 -90.898385973821419,42.675801589152798,163.62625346519053 -90.950639855055172,42.686966211670359,163.734790970571339 -90.977741763522275,42.697388472764288,163.803603453561664 -91.055163645397712,42.739627881909982,164.03376504406333 -91.066327358892678,42.758661011000562,164.101803782396019 -91.070980758291313,42.771016478302087,164.142059344798326 -91.079075745983445,42.805185065935859,164.24614960886538 -91.10200014610983,42.884461743457926,164.493490199558437 -91.118846858596058,42.897220044569586,164.55297336447984 -91.144811705597064,42.906052381326404,164.615594321861863 -91.146996836483964,42.909362227451176,164.627743070945144 -91.164503195271564,42.988160226726052,164.864927522838116 -91.176607676114813,43.042643776842318,165.02862352039665 -91.179528234822797,43.063419950827971,165.088442937470973 -91.17866363996059,43.081622270796132,165.135699906386435 -91.179693715478521,43.126355562003873,165.256455294787884 -91.176695868726554,43.136038233150792,165.277757735922933 -91.157642590760631,43.144318159997404,165.271322127431631 -91.147642565054809,43.153777928182471,165.281564619392157 -91.064004624102751,43.244535557157391,165.398191821761429 -91.05936079644286,43.256736156306857,165.423694456927478 -91.087096349891567,43.293238433050917,165.561916191130877 -91.108682403095585,43.315012342085069,165.651813452132046 -91.211682354699633,43.373427846080162,165.959936508908868 -91.20700045137832,43.424310999350325,166.08743897639215 -91.219158610776446,43.501908945844548,166.31024535279721 -91.266547424596624,43.611331269900049,166.668547567911446 -91.270204645479396,43.616702023833106,166.688084769062698 -91.274774039626053,43.66965900110533,166.83381699025631 -91.269657312485535,43.727920862572901,166.978858263231814 -91.263896775007225,43.793513562635013,167.141878658905625 -91.285600657694999,43.848410263754886,167.317355973646045 -91.300278257237863,43.8578997268935,167.363837727345526 -91.312454826982119,43.868725172993678,167.410090979188681 -91.364708586640688,43.927904330289344,167.641555787995458 -91.421583889104568,43.985581717614494,167.875631706789136 -91.433992052063431,43.998164866534715,167.926656655967236 -91.438850251119462,44.001299689357971,167.941982074640691 -91.464986129756468,44.010378020928485,168.004227430559695 -91.507390428581118,44.0199871233404,168.091950710862875 -91.548501545230323,44.023561462640338,168.162147048860788 -91.560670991541329,44.025294520981632,168.184680607169867 -91.581493486261508,44.028259865202187,168.223242284730077 -91.593544897630608,44.032706547059988,168.252630811184645 -91.673998396342768,44.092617318947042,168.526883943006396 -91.723032594994436,44.131671259906668,168.70041892491281 -91.742352166637872,44.135246879187697,168.738316825591028 -91.809547477395711,44.160589084206883,168.903389667160809 -91.864343601263784,44.194326388449056,169.071587974205613 -91.876644187171124,44.201899708860125,169.109331500716507 -91.894185392625587,44.232428371071556,169.213795106858015 -91.894450501091512,44.236472220757214,169.224567173048854 -91.889392658389937,44.247720878240656,169.24591519497335 -91.888676794669578,44.253835665654094,169.260538512840867 -91.920115351491773,44.323990713786785,169.486983528360724 -91.927080800800411,44.334867229427324,169.525156250223517 -91.965092473880375,44.363429700505534,169.654619539156556 -91.973985813830893,44.368077416369665,169.679699237458408 -92.047780357316825,44.395713453053474,169.859860992990434 -92.085421736218976,44.407525290285136,169.945925180800259 -92.116793629312625,44.417369767238952,170.017656781710684 -92.222583884395291,44.441697500965823,170.237002264708281 -92.235398355396882,44.447645118044562,170.271209739148617 -92.243511760072479,44.455564725822768,170.303427102044225 -92.278287122160549,44.474958569405679,170.404497765935957 -92.292508779096806,44.486772956624769,170.455681127496064 -92.303719439047967,44.501606274932357,170.510026668198407 -92.304550931755173,44.519953603855988,170.557807148434222 -92.315576704767565,44.539320762267749,170.623324090614915 -92.317930461729503,44.542099090459466,170.633869457989931 -92.321444029214604,44.546246436052215,170.64960967656225 -92.33051940848398,44.552201102450759,170.67820693552494 -92.341564796102787,44.556578799507491,170.705740378238261 -92.358820307893026,44.559785456645436,170.739556127227843 -92.493283841097977,44.567306409770616,170.959048816002905 -92.535698005839947,44.57167769138686,171.033414903096855 -92.551197535696389,44.577302284037003,171.070771384052932 -92.621289654205015,44.630513444613698,171.30972492787987 -92.623248957026505,44.640282068333946,171.337268140166998 -92.633621475579503,44.650325570638266,171.378062197007239 -92.733562641590481,44.715069893132501,171.690220988355577 -92.738779859250016,44.718449733775728,171.706506147049367 -92.803925205762098,44.746459864507955,171.87418286409229 -92.803724035495179,44.747006412396836,171.875252556055784 -92.785967043995882,44.795249363086121,171.969617946073413 -92.766985686574259,44.837492112264407,172.047035685740411 -92.76336978696159,44.862168211107097,172.103368921205401 -92.763202299356593,44.863311202251225,172.105977372266352 -92.752171991518907,44.938585722253237,172.277590027078986 -92.770135315836114,45.009299981702092,172.480626603588462 -92.792736881657135,45.046980349698472,172.608029728755355 -92.794406798523752,45.079770172366899,172.692034720443189 -92.768664256539452,45.195442457528046,172.940854341723025 -92.767432778516294,45.211450082945554,172.978685566224158 -92.762151373684929,45.28010158704091,173.140747708268464 -92.753271525382374,45.293941224034434,173.161815728060901 -92.747675900202111,45.297319692536796,173.161885662004352 -92.734130358938899,45.305498078915555,173.162058991380036 -92.706330265984093,45.32779967664073,173.176063486374915 -92.665639054129443,45.394580904968336,173.280859336256981 -92.681773388327102,45.465613228871433,173.479717860929668 -92.727772363491667,45.532351304993711,173.711617352440953 -92.804977161224031,45.563764179444902,173.902483624406159 -92.824854616899145,45.562197964469881,173.927949479781091 -92.87262899691531,45.568844088872602,174.01471118722111 -92.885296531309194,45.576745645190847,174.052760732360184 -92.887969131354367,45.596142941386262,174.104201454669237 -92.889663095632287,45.629637767026182,174.188656610436738 -92.887210073804951,45.645386659763069,174.223550175316632 -92.885536722347837,45.656129913580692,174.247344981878996 -92.870744082866793,45.718825966695093,174.37867780122906 -92.865254062550278,45.723077895816125,174.380975221283734 -92.842601720106316,45.731281922848318,174.367673973552883 -92.805521334687072,45.751062750417084,174.361436866223812 -92.786171245937268,45.765453521910807,174.368125339969993 -92.769980775191257,45.799266589226406,174.426818557083607 -92.764041214583429,45.820494947339398,174.469841909594834 -92.735590854869827,45.869362673335381,174.547155188396573 -92.72267996559637,45.885059316254349,174.56645339448005 -92.709253935226087,45.896155122500083,174.573803634382784 -92.657676453322409,45.925695822733935,174.570256539620459 -92.444833564827135,46.015901666806322,174.479476002044976 -92.328424047210419,46.067871498081551,174.436892540194094 -92.308302694941901,46.073663576249793,174.421819568611681 -92.295579425257131,46.075630748804521,174.408172375522554 -92.29561553649873,46.079599549029297,174.417876956984401 -92.295077514790918,46.11507636881187,174.503334071487188 -92.295254321153308,46.158571910883936,174.609207204543054 -92.29529300619032,46.168088595162089,174.632355619221926 -92.295406380700868,46.181323152255892,174.664623816497624 -92.295108624585652,46.225826674149602,174.772067378275096 -92.295170174464815,46.24529102606332,174.819296811707318 -92.294626602240456,46.296375337589787,174.942117859609425 -92.294559681295283,46.29923324374689,174.948931514285505 -92.294392856010774,46.305565036133153,174.963998813182116 -92.294391934819259,46.308352943755395,174.970736816525459 -92.294433123814741,46.314997723040072,174.986856921575963 -92.294356146619052,46.315873695068085,174.988862960599363 -92.294335278605175,46.320557540214367,175.000151964835823 -92.294552357244243,46.323139451762778,175.006703890860081 -92.294416058327798,46.418462304313643,175.236547315493226 -92.294403161997849,46.422118183992623,175.245339876040816 -92.294283475287131,46.433234819351675,175.271954894065857 -92.294067802716384,46.480001283583952,175.384250096045434 -92.293929279479201,46.496824732798615,175.424525051377714 -92.293208385172875,46.605885170772162,175.68543650303036 -92.293158967196959,46.62617650896987,175.73401980381459 -92.293755085300276,46.664476252190681,175.826637828722596 -92.278717811366235,46.656830250010891,175.786778829991817 -92.277935504107319,46.656432470263333,175.784705061465502 -92.276027187263665,46.655462148456586,175.779646379873157 -92.271510194137562,46.65316539309719,175.76767217926681 -92.266023639213458,46.652628042818428,175.758524566888809 -92.264064714453539,46.652436186765108,175.755258622579277 -92.258216275338356,46.651863393730956,175.745508443564177 -92.255940979671806,46.651640552474525,175.741715368814766 -92.252423046272796,46.651296007932459,175.735850912518799 -92.244054397517942,46.65047638687539,175.721901121549308 -92.236376348526733,46.65065503467855,175.711334457620978 -92.234208290131164,46.650705479635505,175.708351003937423 -92.233505007571139,46.650721843151445,175.707383246161044 -92.229716478223807,46.650809992157612,175.702170218341053 -92.223898938347915,46.650945350838541,175.694165961816907 -92.223291874226533,46.650959475605724,175.693330760113895 -92.213952639155323,46.651176774750326,175.680482965894043 -92.208652559558985,46.653176781896839,175.677692538127303 -92.203852524524962,46.656276746407706,175.678255964070559 -92.198706105284373,46.664644026506558,175.690952348522842 -92.193061294187928,46.67382161476722,175.704876571893692 -92.192635642630378,46.67451365826161,175.705926465801895 -92.189152831840318,46.680176169134327,175.714516645297408 -92.189356426449024,46.691419596783824,175.741748710162938 -92.195000794319427,46.696436315491539,175.761836348101497 -92.195648269166568,46.697860577320434,175.766173543408513 -92.196123733742184,46.698906465120963,175.769358400255442 -92.198136678203099,46.703334374467779,175.782840929925442 -92.19799705161509,46.704172234650947,175.784647824242711 -92.197825783686227,46.70519996569822,175.786864135414362 -92.196882626095984,46.710859591390133,175.799068161286414 -92.190652983331105,46.718774894490892,175.809115770272911 -92.174558986996246,46.725678248885572,175.802648812532425 -92.171974701666358,46.726786751529524,175.801611226983368 -92.118151000359987,46.749873875271035,175.780054134316742 -92.091050313900283,46.750474225405334,175.742842328734696 -92.035547710859007,46.710175287859037,175.567129038274288 -92.026276895793444,46.706860044910542,175.545960627496243 -92.021846213905945,46.705275633309412,175.535843786783516 -92.016847153859516,46.707705622500512,175.534549188800156 -92.009545922973828,46.706275768235209,175.520713261328638 -91.989445047021491,46.693976440760835,175.462548598647118 -91.974944489143198,46.687676842403391,175.426761015318334 -91.963444078184963,46.683777125327239,175.401010306552052 -91.944542512012077,46.68117746656872,175.367842126637697 -91.93181485278005,46.683511089846142,175.355326023884118 -91.888516348322796,46.691449894060518,175.312785306014121 -91.880283289949148,46.69205026716002,175.302517475560308 -91.878923804047844,46.692149403922436,175.300822176039219 -91.877735649520332,46.692236046816312,175.299340568482876 -91.876393227940412,46.692333939209355,175.297666640952229 -91.868136327211715,46.69293605092416,175.287371816113591 -91.86604359671226,46.693088657522161,175.28476286586374 -91.859014641434243,46.693601224685956,175.276000932790339 -91.841840117369031,46.690932544230904,175.245168020948768 -91.832907314358309,46.691145601294991,175.232983934693038 -91.821578602984985,46.691415803352257,175.217534774914384 -91.818736325335081,46.6918435627219,175.214525141753256 -91.818650094629788,46.691856540339359,175.214433838613331 -91.816220584706173,46.692222178660927,175.211861480027437 -91.801538453282248,46.694431821755749,175.19631988927722 -91.800006093261047,46.694662440090589,175.194698207080364 -91.79202403284917,46.695863730546364,175.186252014711499 -91.791682952030271,46.695915062797539,175.185891143977642 -91.783478440933493,46.698844433374738,175.181289042346179 -91.760169229502452,46.707166844919861,175.168227104470134 -91.751200309071265,46.71036914315544,175.163206152617931 -91.75033713667186,46.710581348352072,175.162492125295103 -91.737182178822508,46.713815407277714,175.151613209396601 -91.678569867159197,46.728224854042708,175.103211408481002 -91.677169745181473,46.728569064705908,175.102056581526995 -91.669082672937307,46.730557217549354,175.095387604087591 -91.663974228017324,46.731813094699682,175.091176057234406 -91.662219002773114,46.732244605131285,175.089729198254645 -91.660287395293977,46.732719477959577,175.088137064129114 -91.654463731099852,46.734151186994197,175.083337632939219 -91.647694188859205,46.735815433836017,175.077760087326169 -91.647050318673337,46.735973725029417,175.077229671180248 -91.638467063384979,46.739042295293714,175.0724674500525 -91.637588371022119,46.739356433596946,175.071980070322752 -91.637552914422969,46.739369109564493,175.071960405446589 -91.636708654571152,46.739670938018413,175.071492151357234 -91.636655442397995,46.73968996172048,175.071462637744844 -91.626935211000827,46.743165008417996,175.066073293797672 -91.594989073279976,46.754585962843798,175.048384011723101 -91.594289338513278,46.754836122625868,175.047996947541833 -91.593750612508117,46.755028720716389,175.047698961570859 -91.592231443534843,46.755571833617246,175.046858712099493 -91.57817871558079,46.758278185512033,175.033510024659336 -91.575838104080191,46.7587289533868,175.031287286430597 -91.575565718316213,46.758707330624311,175.030850261449814 -91.572970005948491,46.758501275537036,175.026685681194067 -91.570622262043244,46.758314904895727,175.022919055074453 -91.559049436444681,46.757396220806925,175.004353645257652 -91.552991452946642,46.756915320689558,174.994636314921081 -91.55295452712096,46.756907337742575,174.994564916007221 -91.544602997418849,46.756394446454912,174.98153128568083 -91.539129445087354,46.756058307613387,174.972989900968969 -91.538661051626733,46.756029542886729,174.972259008325636 -91.537310113422762,46.75616782253325,174.970683962106705 -91.526311469689929,46.757293624248071,174.957862678915262 -91.519257335656818,46.758015672913906,174.949641394428909 -91.512622444409743,46.758694808620575,174.941910024732351 -91.512140014648097,46.75885546176027,174.941616019234061 -91.509364670589008,46.759779674510206,174.939924819394946 -91.50913183528651,46.759857210610356,174.939782948233187 -91.508705635708466,46.759999138629219,174.939523262903094 -91.501587253091785,46.762369619484929,174.935186938382685 -91.501241253930644,46.762484840094871,174.934976209886372 -91.495188615682238,46.76699903765747,174.937310826964676 -91.49458180188968,46.767451613416988,174.937544944696128 -91.494037942853907,46.767857236063172,174.937754784710705 -91.493974218042126,46.767904763501527,174.937779370695353 -91.493288853653681,46.767974020034352,174.936979122459888 -91.490669930841875,46.768238663946498,174.933921326883137 -91.489792192549587,46.768327359991176,174.932896540500224 -91.473642226804188,46.76995932485827,174.914044951088727 -91.471725697796799,46.770152991395591,174.911808314733207 -91.471668567068193,46.770165023671105,174.911756726913154 -91.468712423020534,46.770787615756369,174.909087521024048 -91.46431844839735,46.771713028648847,174.905120571143925 -91.451114057211569,46.774493999134627,174.893203181214631 -91.45087127520695,46.774545131335714,174.892984112724662 -91.438499531532798,46.778827913989474,174.885865688323975 -91.430069634400425,46.781746129727665,174.881018353626132 -91.428035283915193,46.782450370064296,174.879848935641348 -91.425256855051842,46.783412191387875,174.878252030350268 -91.41334275512969,46.790882111688596,174.879470647312701 -91.399799443651418,46.792455243734246,174.864188001491129 -91.398682918608188,46.792289443756644,174.862216101959348 -91.39850261319252,46.792262669046984,174.861897663213313 -91.397804519811885,46.79215900467527,174.860664768144488 -91.396307707514893,46.791936733399197,174.858021284453571 -91.393012236172638,46.791447367682196,174.852201358415186 -91.392317155315524,46.791558798799294,174.851491253823042 -91.387697812002344,46.792299343698851,174.846772467717528 -91.382120053699509,46.793193535828564,174.841075508855283 -91.370929689752842,46.794987506580576,174.829648892395198 -91.370361743518487,46.795078556248811,174.829069058410823 -91.369040536445908,46.795787363225074,174.828918445855379 -91.368430968769317,46.796114386770917,174.828848979435861 -91.367516994363115,46.796604719776987,174.828744845464826 -91.36707886105394,46.79683977146027,174.828694936819375 -91.366819527441621,46.796978899896381,174.828665397129953 -91.365186721730964,46.797854874680198,174.828479473479092 -91.362346655277037,46.799378526014614,174.828156298026443 -91.360976616427294,46.800854798790837,174.829787547700107 -91.356872434364064,46.805277222495093,174.834674321115017 -91.353733693626495,46.808659343788698,174.838411657139659 -91.339792620303442,46.818946201219241,174.843600307591259 -91.339112819831001,46.81921077904039,174.84328216034919 -91.332005620660183,46.82197689549028,174.839956966228783 -91.331975968378217,46.821988436135541,174.839943096973002 -91.330390156036472,46.822605633078588,174.839201399125159 -91.327587462514543,46.823696439240209,174.837890767492354 -91.32374460067021,46.825192078111584,174.836094166152179 -91.322551956565533,46.825656254278734,174.835536692291498 -91.316603247295291,46.827971487344797,174.832756840623915 -91.316357263126179,46.828067224193845,174.832641919143498 -91.308591731237755,46.830249258794041,174.826989608816803 -91.307029304239592,46.830688284711442,174.825852609239519 -91.306054032491502,46.830962326042076,174.825142931193113 -91.30513602298312,46.831220277272188,174.824474951252341 -91.303837033417651,46.831585279979663,174.823529805988073 -91.303420591524869,46.831626448504174,174.823043991811574 -91.291082816202561,46.832846133669385,174.808653263375163 -91.280099462642156,46.833931923667635,174.795845991931856 -91.267945632285148,46.83513342437665,174.781677891500294 -91.267407174768039,46.835186655091597,174.781050291843712 -91.267356983480695,46.83520277908115,174.781018706969917 -91.265266080859234,46.835874483150114,174.779702913947403 -91.2649859869517,46.835964463532449,174.779526664875448 -91.258413524636623,46.838075872082548,174.775391704402864 -91.258246016966012,46.838129684049882,174.775286339223385 -91.258103792700794,46.838232100913821,174.77533365227282 -91.252346982594602,46.842377627263851,174.777249412611127 -91.251011798964015,46.843773885460855,174.778742137365043 -91.239271143286842,46.856051587622893,174.791868960484862 -91.236824496009106,46.858610150605713,174.794604667462409 -91.234274045565826,46.861277264981695,174.797456512227654 -91.228336990899706,46.864852230430216,174.797747776843607 -91.2164268265836,46.867379413376398,174.787141078151762 -91.213187458491618,46.868066765416472,174.784257026389241 -91.212653307150475,46.867938585154292,174.78319931216538 -91.209064418445095,46.867077359766775,174.776092742569745 -91.20637952444045,46.860969273490724,174.757603473030031 -91.205979262573109,46.860058684827017,174.754846850410104 -91.201647010795384,46.855259896795019,174.73720233514905 -91.179831154972732,46.845502502780803,174.683087623678148 -91.169836026863507,46.845971000554002,174.670210934244096 -91.169139886447866,46.846003630473554,174.669314195401967 -91.15764708282299,46.856657721809903,174.678919445723295 -91.149565354286196,46.86414966878305,174.685675385408103 -91.149375886727441,46.86432530953936,174.685833788476884 -91.145804998484536,46.871544126572807,174.698247227817774 -91.14541580751218,46.87181933557018,174.698366166092455 -91.145388919315039,46.87183834904765,174.698374384082854 -91.141840359986048,46.874347645321656,174.699459050782025 -91.141703972774195,46.874444088946056,174.69950074609369 -91.14129647268453,46.874391390303281,174.698803205043077 -91.136206806858382,46.873733185583639,174.690091136842966 -91.135310289977767,46.872285854859378,174.685344995930791 -91.134875710185298,46.871584272211336,174.683044272474945 -91.135212325654308,46.870591252909321,174.681119962595403 -91.135722492398031,46.869086255464872,174.678203446790576 -91.136262456293267,46.867493356111844,174.675116481259465 -91.136420262943716,46.867027824782149,174.674214285798371 -91.138050526664344,46.862218529197257,174.66489336732775 -91.136515557678351,46.860266654766875,174.658034635707736 -91.136486428435944,46.860229613872868,174.657904472202063 -91.136270161051627,46.860178234023586,174.657477702014148 -91.125068502884048,46.857516993574777,174.635373401455581 -91.124647034582878,46.857416862997631,174.63454173412174 -91.120077872737212,46.85779215601017,174.62905150000006 -91.108861022614562,46.858713464014194,174.615575979463756 -91.107027609186801,46.85886405338794,174.613373719155788 -91.100317443274974,46.861803700063049,174.611079962924123 -91.099883912700136,46.861993624832373,174.610931824892759 -91.099662141091116,46.862090780429114,174.610856046900153 -91.099087957408159,46.862342323710863,174.610659857280552 -91.098102484322297,46.862774048159693,174.610323167406023 -91.097879645515576,46.864208653106402,174.613474203273654 -91.097565521371195,46.866230940274939,174.617915868759155 -91.096595248696872,46.872477419889968,174.631634006276727 -91.09636527627967,46.873957950169242,174.634885154664516 -91.096261462134365,46.874626291134881,174.636352751404047 -91.096157848781061,46.87529333943418,174.63781748060137 -91.096035521441038,46.876080865772394,174.639546735212207 -91.095633916238128,46.8786663440507,174.645223707892001 -91.095251932894897,46.881125499598134,174.650622984394431 -91.092453938384097,46.88391344808209,174.653436533175409 -91.090259206742957,46.88412027516403,174.650866461917758 -91.086614817995141,46.884463715004678,174.646599120460451 -91.082488700994006,46.884852551940043,174.641768163070083 -91.074121829220232,46.881369725022786,174.621666179969907 -91.070868413695763,46.880015445490002,174.613849469460547 -91.069757211978981,46.879552892295564,174.61117965914309 -91.067730243568818,46.879954325632916,174.60931493062526 -91.057795007742328,46.881921961058929,174.60017682146281 -91.054527894155029,46.882569000394803,174.597172525711358 -91.051689894102338,46.884281386026331,174.597339691594243 -91.050768917011425,46.884837082964069,174.597393996082246 -91.05075684673217,46.884844365900136,174.597394706681371 -91.044529184996762,46.888601997438094,174.597762659192085 -91.041426772281568,46.890473923754115,174.59794644266367 -91.038158810197288,46.894837828270148,174.603913614526391 -91.037729670553688,46.896767261745552,174.607970584183931 -91.037472563271137,46.897923229064588,174.610401117242873 -91.036055024618349,46.904296554574145,174.623800498433411 -91.034983566717941,46.904885263810087,174.623724683187902 -91.034044531382989,46.905401213876374,174.623658271506429 -91.032119874947654,46.906458710414512,174.62352224253118 -91.025545836429046,46.910070795593661,174.623058575205505 -91.02551309672927,46.910088784320692,174.62305626925081 -91.023075116849625,46.911428324844969,174.622884698212147 -91.021206603399548,46.912454973796841,174.622753337025642 -91.020677857783383,46.912745491444944,174.622716186568141 -91.0195815842267,46.913115132499172,174.62207773886621 -91.019560698875196,46.913122174613108,174.622065574862063 -91.017774289388214,46.913724515408177,174.621025294065475 -91.017721174517632,46.913742424657762,174.62099436391145 -91.012225413005893,46.915595483196817,174.617794723249972 -91.009534092517569,46.916502941497953,174.616228211671114 -91.007408566611957,46.917219625421055,174.614991205744445 -91.006735621798967,46.917446528667476,174.614599600434303 -91.006428374258903,46.917435503304127,174.614144242368639 -91.00628884283455,46.917430496316456,174.613937451504171 -91.000384446532365,46.917218621175422,174.605187257751822 -90.999479401856121,46.917610581081306,174.604870242998004 -90.998361445223324,46.918094749640034,174.604478690773249 -90.996685394027125,46.918820619739215,174.603891752660275 -90.988549250963047,46.925019945941038,174.607500186190009 -90.987351428249028,46.925932625783652,174.608031587675214 -90.986153343503176,46.926845505282287,174.608563140965998 -90.984728001414766,46.928905949593521,174.61154655367136 -90.981771311475882,46.933180077935056,174.617735071107745 -90.975291503750398,46.942547150887066,174.63129679299891 -90.969955436378655,46.945153139527754,174.630144411697984 -90.966401338120122,46.945023191357258,174.624877179972827 -90.965608190813683,46.944612297629462,174.622780551202595 -90.956147728977825,46.939711260445399,174.597771531902254 -90.956072910321254,46.939672500284956,174.597573737613857 -90.95540060816036,46.939526517048186,174.596284546889365 -90.95522043551361,46.939487394481461,174.595939053222537 -90.942095946418718,46.936637551771085,174.570772759616375 -90.923574794026408,46.932615881169816,174.535261245444417 -90.923345836365769,46.932566165456599,174.534822275862098 -90.922916757033605,46.932677996289264,174.5344945108518 -90.915579007951166,46.934590431882988,174.528890307992697 -90.915372683503307,46.934644206168919,174.528732752427459 -90.910188760277123,46.942464558852386,174.540391482412815 -90.910132769854414,46.942549024774898,174.540517401881516 -90.881892546849841,46.958904989013931,174.540686743333936 -90.881155477667775,46.959331879313481,174.540691522881389 -90.87885885393672,46.960154004981504,174.539480428211391 -90.878699627597229,46.960211003461026,174.539396468549967 -90.878626639031239,46.960237131281936,174.539357983507216 -90.878312640206659,46.960349533888277,174.539192415773869 -90.878078824552816,46.960433233210871,174.539069131948054 -90.877747912970761,46.96055169010112,174.538894654251635 -90.877745171762484,46.960552671375353,174.538893210701644 -90.877540710719245,46.960625862586227,174.538785407319665 -90.877529469443019,46.96062988664184,174.538779481314123 -90.877168938857793,46.960758946288912,174.53858938999474 -90.872660338200731,46.962372896485235,174.536212641745806 -90.857407963143757,46.963476065787489,174.517661364749074 -90.856699405561656,46.963289017183939,174.516224483959377 -90.840347326156945,46.958972312776389,174.483065024018288 -90.839506447229979,46.958750333314043,174.481359898112714 -90.839249341979766,46.958682461372625,174.480838544666767 -90.839150235423446,46.958623495800111,174.480558368377388 -90.834624140034222,46.955930598213122,174.467762777581811 -90.806559467698364,46.939232918958766,174.388408965431154 -90.788126110630117,46.9282655973334,174.336275854147971 -90.788033268798969,46.928210359092049,174.336013254709542 -90.787541493864325,46.927917767032724,174.334622285328805 -90.787137067479037,46.927677144868824,174.333478376269341 -90.761624269568841,46.904543418921989,174.242059152573347 -90.760893978152893,46.903881227274155,174.239441620185971 -90.757159349757444,46.900494853448571,174.226055241189897 -90.756081437495098,46.899517456638655,174.222191389650106 -90.755917172260453,46.899284691231706,174.221399681642652 -90.754253920623043,46.896927847764708,174.213383086025715 -90.752858114343752,46.89494997691925,174.206655161455274 -90.752577592994911,46.894552475484616,174.205302980728447 -90.752387190124054,46.894282672795185,174.204385185614228 -90.752400548240971,46.893890736749015,174.203454926609993 -90.752417834665152,46.893383541561427,174.202251084148884 -90.752480632774592,46.891541003349559,174.197877648286521 -90.752560050590361,46.889210832139156,174.192346476018429 -90.752679956271663,46.889111004364977,174.192271454259753 -90.756221522580532,46.886162464503279,174.190055698156357 -90.756263061753458,46.88612788096134,174.19002971239388 -90.756282482066908,46.886123020899916,174.190044943243265 -90.762823955604716,46.884485974012435,174.195176084525883 -90.763096195391441,46.884417844210503,174.195389660075307 -90.771699229471636,46.877543948515552,174.190709634684026 -90.771769228151669,46.877431796927333,174.190535430796444 -90.782501025889431,46.860237356549419,174.163824153132737 -90.782539865020141,46.86015985520708,174.163690477609634 -90.789568629406389,46.846134344049844,174.139496144838631 -90.793562413724331,46.838164968318701,174.125746199861169 -90.795241301111332,46.834814841455952,174.119965506717563 -90.797221791418039,46.830862882710527,174.113145915791392 -90.797485993798404,46.830335681493928,174.112236134707928 -90.797965883404203,46.829378088367562,174.110583601519465 -90.798932565890837,46.827449127021836,174.107254690490663 -90.800073975789246,46.825171506823523,174.103323937393725 -90.800464487563872,46.824392262222496,174.101979073137045 -90.80256976985649,46.822875088417177,174.101234085857868 -90.802898487375458,46.82263819780615,174.101117776706815 -90.810798958320177,46.816944715486414,174.098323327489197 -90.823495479545457,46.807794954797217,174.093836351297796 -90.827224653193639,46.805107522105956,174.092519357800484 -90.827865226604288,46.803359401923991,174.089174132794142 -90.828878265185523,46.800594827028398,174.08388355653733 -90.829585533511846,46.798664696948336,174.080189682543278 -90.830576353461908,46.797659982973641,174.079134988598526 -90.831461168710817,46.796762760179533,174.078193142078817 -90.831623018875817,46.796598640429849,174.078020860441029 -90.833173250868327,46.795026669922159,174.076370738446712 -90.836536686660367,46.791616069527691,174.072790685109794 -90.836556675895849,46.791595799988258,174.072769405320287 -90.836847960501103,46.791300430774321,174.072459371760488 -90.83713551749922,46.791008841438966,174.072153301909566 -90.848742626764817,46.790523882805324,174.087166934274137 -90.856445503640074,46.790202047561067,174.097132454626262 -90.857001128950202,46.79017883288239,174.097851350903511 -90.857274827046552,46.790167397454134,174.098205478861928 -90.857845970915207,46.79014353439171,174.098944462835789 -90.858060048930341,46.790134589960495,174.099221454933286 -90.858205805497875,46.789961622060879,174.099005444906652 -90.861528119046412,46.786019064935857,174.094081816263497 -90.865070999659906,46.781814763061391,174.088831292465329 -90.861252408699031,46.775682592179351,174.068630903027952 -90.86097370457982,46.775235028847064,174.067156430333853 -90.862408502127309,46.772328654260008,174.06210970506072 -90.863861615785069,46.769385177969831,174.056998295709491 -90.86786581803554,46.765876270408214,174.054076352156699 -90.86811462332102,46.765658240775686,174.053894805721939 -90.86822264800594,46.765610970832462,174.053930951282382 -90.876127096158896,46.762152105702555,174.056576709263027 -90.877453954114756,46.761571493036513,174.057021048851311 -90.886549884652339,46.757591253511393,174.060068754479289 -90.884971217515371,46.748505992599917,174.035821820609272 -90.884924577032209,46.748237575677265,174.035105374641716 -90.883627080884338,46.745873017124865,174.027555213309824 -90.883150311524744,46.745004152063082,174.024780763313174 -90.880338476428406,46.739879860323349,174.008416660130024 -90.879871073965916,46.739028065494956,174.005696294829249 -90.878065752843838,46.735738046023975,173.995188442990184 -90.877954496005685,46.735535291422082,173.994540844112635 -90.87786179833698,46.735366359074078,173.994001272134483 -90.877566569291631,46.73482833328972,173.99228279106319 -90.877356698744705,46.734445864940263,173.991061155684292 -90.873139568339695,46.7267605611001,173.966511066071689 -90.872104504503838,46.724874259422798,173.960484673269093 -90.871923562741983,46.724544510920481,173.959431156516075 -90.870988095782877,46.723290921996451,173.955080029554665 -90.870134942295351,46.722147638683204,173.951111649163067 -90.870058907089543,46.722045746370483,173.950757971033454 -90.869800307859904,46.721699205931117,173.949555087834597 -90.869551785808909,46.721366169591768,173.948399069719017 -90.8653912694148,46.715790796499796,173.929044716991484 -90.862879867813845,46.712425348637368,173.917360587976873 -90.862424039690225,46.711814508145622,173.915239771828055 -90.861323983063215,46.710340357918419,173.910121441818774 -90.861128287931763,46.7100781132159,173.909210896119475 -90.854751056790832,46.701532192414511,173.879535065963864 -90.854442538285042,46.701118756759385,173.87809924595058 -90.854230424554004,46.700834510019753,173.877112074755132 -90.854257018401952,46.70068970722415,173.876797345466912 -90.855170284680625,46.695716996713017,173.865988384000957 -90.855332816261409,46.694832016616665,173.864064607769251 -90.855355281821048,46.694709692247805,173.863798693753779 -90.855453656986001,46.694621781876492,173.863722514361143 -90.856065536594755,46.69407499180398,173.863248697482049 -90.856218130770088,46.693938630044187,173.863130534999073 -90.867019868847308,46.6842859418148,173.85476737935096 -90.867271356895884,46.68406120615743,173.854572696611285 -90.868949550581121,46.682561532663968,173.853273597545922 -90.869349176082977,46.682204417882225,173.85296425409615 -90.869507686718762,46.682062769036378,173.852841555140913 -90.869902016245561,46.681710386863358,173.85253631696105 -90.869994301632545,46.681627918463192,173.852464879862964 -90.871604870207264,46.680702282892014,173.852466787211597 -90.872058363728215,46.68044164839268,173.852467338554561 -90.872265750095593,46.680322458063593,173.852467593736947 -90.87248252674344,46.680197870896542,173.852467861026525 -90.887395481349031,46.671627008768318,173.852490080520511 -90.887469307830656,46.671605827175831,173.852541866712272 -90.898056062008436,46.668568376269263,173.859969907440245 -90.906799418092078,46.666059815613664,173.866107432171702 -90.907094299063715,46.665975211166739,173.866314474493265 -90.910702692229449,46.664939925279953,173.868848229758441 -90.911215381838659,46.664792829247688,173.869208268821239 -90.912807949402705,46.664335904891082,173.870326712727547 -90.912879933370277,46.664249008361104,173.870216236449778 -90.91614545890441,46.660306980076982,173.865204482339323 -90.916678920378089,46.659663004035465,173.864385751076043 -90.916893414895085,46.658868131246287,173.862753610126674 -90.922339545111157,46.63868588837849,173.821302820928395 -90.922361478360216,46.63860460825596,173.821135847829282 -90.922376501875064,46.637745451217228,173.819067170843482 -90.922393588579425,46.636768305644466,173.816714346408844 -90.922461939276232,46.632859502300903,173.807301926426589 -90.922462318888108,46.632837793266567,173.807249648496509 -90.926013239528046,46.626670945239567,173.797221783548594 -90.926015237906384,46.626668538292222,173.797218729741871 -90.928270768774894,46.623951863497197,173.793769433163106 -90.933148967315546,46.618076315936122,173.78630933072418 -90.933646649614545,46.617476882359838,173.785548232495785 -90.934733815586966,46.616167445020572,173.78388564568013 -90.939835673092816,46.610022511466745,173.776083377189934 -90.940142999089645,46.609652352595475,173.775613381527364 -90.94020613474477,46.60957630884036,173.775516827590764 -90.951058133309829,46.604272899266476,173.777825351804495 -90.951147273916817,46.604229335940751,173.77784433029592 -90.95174120168987,46.603501923314518,173.776906894519925 -90.952070016986497,46.603099207009599,173.776387901045382 -90.952944639554161,46.602028013632371,173.775007419288158 -90.953069258631544,46.601875386504886,173.774810722097754 -90.953054408438362,46.601081366338924,173.772857421077788 -90.953002156118231,46.598287503569857,173.765984168276191 -90.949098054356156,46.594764917605339,173.751934354193509 -90.948812533592189,46.594507298440043,173.750906797125936 -90.9486851499301,46.594392362936702,173.750448354519904 -90.943626286689195,46.589827860827754,173.73224105220288 -90.943455661982711,46.589673909871209,173.73162692412734 -90.942899593743775,46.589548232061553,173.730541071854532 -90.942627971796483,46.58948684238127,173.730010667815804 -90.928912185245849,46.586386917043662,173.703228376805782 -90.925085318844609,46.585522001264025,173.695756114087999 -90.924963534391267,46.585494476578106,173.695518325082958 -90.923007514955017,46.585052393708402,173.691699096933007 -90.921936216851961,46.584810268026253,173.689607348293066 -90.921657128501153,46.584747190851751,173.68906242121011 -90.921445048126188,46.584699258249906,173.688648326322436 -90.919939035842233,46.584358882166725,173.685707807540894 -90.919876766287842,46.584344808531888,173.685586227104068 -90.919790886230444,46.584325398651927,173.685418546199799 -90.918507113288882,46.584269668943541,173.683482955209911 -90.911339652427714,46.583958523179383,173.672676996327937 -90.907582896858557,46.584685448465699,173.669181703589857 -90.907096563209748,46.58477955313122,173.668729251250625 -90.903442726212333,46.586774371562825,173.668467337265611 -90.90324995880421,46.586879613252464,173.668453530408442 -90.893468460782444,46.592219838500682,173.667754665017128 -90.887720867301127,46.595357746808475,173.667345526628196 -90.88662690443914,46.595954997669693,173.667267783544958 -90.886531003300689,46.596007355057282,173.667260969057679 -90.874678201527018,46.602478412100076,173.666421261616051 -90.868644061053544,46.603166470226419,173.659647250548005 -90.865807659061034,46.604220547930794,173.658243221230805 -90.860249223481631,46.60628620118635,173.655492591671646 -90.858335266906195,46.606997475171895,173.654545706696808 -90.857768230415118,46.607208200070225,173.654265203513205 -90.857613407181717,46.607265736244102,173.654188617132604 -90.856098694989811,46.607828641061793,173.653439376503229 -90.854904254996129,46.608272524744926,173.652848614379764 -90.85367713904273,46.608728551629333,173.652241742238402 -90.853412568319953,46.608826872706487,173.652110904455185 -90.851207899238972,46.609646182706356,173.65102073457092 -90.844748610883727,46.612046615307484,173.647827710025012 -90.844712289381235,46.612060113283462,173.647809755057096 -90.843581230976184,46.612480442786797,173.647250791080296 -90.843231881985133,46.612610269581999,173.64707815181464 -90.838829292178104,46.614246381720818,173.644902880303562 -90.835782507012695,46.615378643050633,173.643397895619273 -90.833391291959927,46.61626727818134,173.642216964624822 -90.83274970554281,46.616505707689711,173.641900140792131 -90.831534226416309,46.61695741003691,173.641299965791404 -90.83059352370509,46.617306998617437,173.640835501253605 -90.830554448956406,46.617321519768268,173.640816208906472 -90.796297789566964,46.626196689039645,173.614530845545232 -90.794105671172247,46.627194151677095,173.613896627910435 -90.773977968328808,46.636352704254186,173.608081197366118 -90.771714451003604,46.637382654994376,173.607428091578186 -90.769903310739551,46.638617437680196,173.607906135730445 -90.756903166881216,46.647480557205718,173.611340410076082 -90.756809340356483,46.647544525398374,173.611365217715502 -90.756811606109878,46.647578836431137,173.611451961100101 -90.757834891973914,46.66307478095117,173.650620941072702 -90.758017886120086,46.665845919165704,173.657623867504299 -90.74961280960737,46.671071862616635,173.658616024069488 -90.749548856929025,46.671222847134722,173.658894374966621 -90.741088424335658,46.69119690330713,173.695710581727326 -90.741072149199354,46.691235326933487,173.695781391113997 -90.738783152616051,46.693521283827565,173.698151797056198 -90.726446544223677,46.685441026232006,173.661278019659221 -90.706896713488206,46.672636237045332,173.602832872420549 -90.696242239141242,46.66565774700446,173.570975012145936 -90.656016231555,46.641246829361258,173.455381610430777 -90.652468196624866,46.639093725071362,173.445183669216931 -90.629403325702512,46.625096942666232,173.378880327567458 -90.609166514753241,46.613444761190031,173.322228168137372 -90.60823751357816,46.612909850310537,173.319627212360501 -90.607694564628886,46.612597224979282,173.318107089027762 -90.601118634312144,46.60881086090177,173.299695502966642 -90.600892009250941,46.608680372141883,173.299060965888202 -90.597367173343201,46.606650801958779,173.289191490970552 -90.597100206187662,46.606497084567799,173.28844397328794 -90.593411111860803,46.604372935796228,173.278114210814238 -90.592327611861293,46.603749065818349,173.275080256164074 -90.592228957098428,46.603692261254743,173.274804005399346 -90.587765548371294,46.601122268906792,173.262305492535233 -90.582923979665452,46.598800759596962,173.249886695295572 -90.581706988365127,46.598217218019784,173.246765015646815 -90.580938067152175,46.59784852393193,173.244792658835649 -90.565183515165074,46.590294290673654,173.204378853552043 -90.563481220150749,46.589478048251763,173.200011887587607 -90.562641950778087,46.589075622549899,173.197858857922256 -90.559656424527972,46.587644076807045,173.190199826844037 -90.557739246205117,46.587140305030758,173.186297321692109 -90.551111411145953,46.585398726685071,173.172806236892939 -90.539860959184239,46.582442475740095,173.149906400591135 -90.539476739670519,46.582341515413411,173.149124351330101 -90.539343685439704,46.582403910170981,173.14909163210541 -90.529290555810917,46.587118247946357,173.146621183492243 -90.527302735735958,46.588050420873685,173.146133115515113 -90.527012570593101,46.588186491584516,173.146061884239316 -90.526848153389508,46.588209053824919,173.145888137631118 -90.524188739406185,46.588573993356803,173.143077975139022 -90.520619232372638,46.589063820900584,173.139306468889117 -90.520516110757185,46.589077971820302,173.139197518117726 -90.520024724926515,46.58914540250796,173.138678355142474 -90.507423123693556,46.590874664065801,173.125366943888366 -90.498872745349772,46.586769700939499,173.103425692766905 -90.480338968310349,46.577871793875758,173.055862259119749 -90.479982428631629,46.577700622239526,173.054947220720351 -90.477992922365232,46.576745477375091,173.04984122235328 -90.477827706686355,46.57666615874718,173.04941719956696 -90.477559333638354,46.576537315152635,173.048728422261775 -90.47527283757988,46.575439588039423,173.042860129848123 -90.473996144483806,46.574991783449462,173.039987649768591 -90.441596558243802,46.563627514602835,172.967090022750199 -90.439685755840628,46.562957293931277,172.962790763936937 -90.439107521171323,46.562754476084677,172.961489751935005 -90.439043519885502,46.562769611487276,172.961437809281051 -90.438023001417619,46.563010949731066,172.960609604604542 -90.437825634860729,46.563057624141905,172.960449437610805 -90.436323565313913,46.563412842432768,172.959230505861342 -90.434878886845482,46.56375448854164,172.958058214746416 -90.419647130090681,46.56735658444456,172.945702562108636 -90.416106792112657,46.558582914780914,172.919285209849477 -90.415974788592649,46.558582916524216,172.919101679697633 -90.401939055475339,46.545647520134203,172.867883931845427 -90.401551045128571,46.545647525256122,172.867344474419951 -90.37597021951558,46.54047603013219,172.819104388356209 -90.359184801023673,46.541535217304499,172.798376679420471 -90.315400966426495,46.517464573322783,172.678480922244489 -90.315345964958397,46.517464574047395,172.678404530510306 -90.309222862128138,46.51965758372971,172.675285301171243 -90.286051252312816,46.519979878492791,172.643904129974544 -90.206075020228866,46.480266216620294,172.435295102186501 -90.179361249065437,46.44181781449641,172.303570246323943 -90.168419937575649,46.441120980723156,172.286673434078693 -90.168409922480748,46.440580998382572,172.285329045727849 -90.136154297957845,46.376251512579998,172.081905212253332 -90.136161297269638,46.376219513530039,172.081835928373039 -90.12125448375167,46.361021203739838,172.023611062206328 -90.121188482180358,46.361028204376119,172.02353673428297 -90.121985878177142,46.338125940421051,171.968055255711079 -89.930583675383275,46.301364475082359,171.611620974726975 -89.911400148549021,46.297680010481237,171.575922725722194 -89.909686092764602,46.297315044729153,171.572644642554224 -89.278352843462415,46.175406198973519,170.398855485953391 -89.277958830987913,46.175337206294898,170.398142300546169 -89.221432018918264,46.164610283330447,170.293772513978183 -89.219623961269548,46.164279317369569,170.290465293452144 -89.207124554958455,46.161699562202479,170.266872177831829 -89.204756480657039,46.161311605287409,170.26265512034297 -89.202750410660215,46.16071765045902,170.258417969569564 -89.195975188131712,46.159233785941062,170.24541628267616 -89.16835330674904,46.154160306249743,170.194862319156528 -89.163223140122341,46.15310840644797,170.185199360363185 -89.126600956461999,46.145824114174303,170.116792829707265 -89.060207641252305,46.126246604786914,169.976819355040789 -88.992344954784656,46.098626077804987,169.814634987153113 -88.9922670708185,46.098594378555546,169.814448839984834 -88.950156479303999,46.081502476066426,169.713916123844683 -88.944737272874676,46.079240619327152,169.700821080245078 -88.934016004211003,46.07489890762249,169.675248680636287 -88.851724761084498,46.041574039652147,169.478948285803199 -88.849918674945869,46.040158109095415,169.472913080826402 -88.842038258031906,46.032412463556085,169.442623157054186 -88.817082350692814,46.023621069577317,169.386396825313568 -88.771164016902887,46.020269763238431,169.315334864892066 -88.741445428227408,46.028609867048417,169.295912928879261 -88.732126154852793,46.027837010740598,169.281270906329155 -88.684647983388246,46.015866390861241,169.18639906309545 -88.680581414391256,46.014841091207558,169.178274115547538 -88.676055213758517,46.011870246095931,169.164605191908777 -88.671563814676247,46.001260651306183,169.13166578207165 -88.672387837072492,46.001260640860245,169.132787004113197 -88.667504397376788,45.989495089167022,169.09638081677258 -88.63894753693836,45.986264557103752,169.049353282898664 -88.617852034717544,45.989004734252902,169.027600405737758 -88.614510020088943,45.991931680451472,169.030465251766145 -88.533859621400168,46.02251669780226,168.99835095461458 -88.508632857970838,46.01960511222039,168.956763569265604 -88.501577201189164,46.00176278633198,168.902007731609046 -88.498860989089465,45.996454994752014,168.884876694530249 -88.491051678274886,45.992687217019615,168.864737682975829 -88.424878628441547,45.983237362389495,168.751079617068172 -88.377887541323446,45.990765708011878,168.706544123589993 -88.296996348068319,45.952768973172013,168.500631052069366 -88.25156940849412,45.96445716077401,168.46893950458616 -88.245887968842311,45.953452593241636,168.433289716020226 -88.241107756541382,45.950292757010914,168.418797527439892 -88.212592861828867,45.945842261230986,168.368966398760676 -88.203681748410119,45.950895207281782,168.36978895496577 -88.176965896456508,45.946208696382683,168.321808749809861 -88.140804521065007,45.931244641075793,168.234932365827262 -88.119947233122062,45.919875747941248,168.17784534022212 -88.104033998726095,45.911201760054489,168.134284630417824 -88.075373333706267,45.876908246300189,168.008188107050955 -88.074563218194228,45.873267376238765,167.997805510647595 -88.090254235332907,45.857175709760568,167.977903575636446 -88.108051343454591,45.842387974406755,167.964176148176193 -88.115696471069128,45.839206983636522,167.966378074139357 -88.135069622723478,45.82444422819357,167.954855716787279 -88.137539585316532,45.820345332558503,167.947726899757981 -88.131863199742355,45.811336700955053,167.917048020288348 -88.095474582984366,45.786975960570182,167.805621796287596 -88.073517845192512,45.781579413195431,167.762160471640527 -88.059682475398461,45.782038008009849,167.74464880861342 -88.052060276702832,45.782290657601266,167.735003503970802 -88.041155199147269,45.790944507817187,167.7424192186445 -87.99287202493953,45.796711919810384,167.692043119110167 -87.869531478957725,45.750798972405683,167.408271989785135 -87.830245302209207,45.724083431208626,167.286847167648375 -87.8085617578176,45.709338101392781,167.219804205931723 -87.782224337174327,45.681674344526357,167.113275258801877 -87.783039181189892,45.674605568775824,167.096196266822517 -87.825088993578092,45.661142493984748,167.118194953538477 -87.82551868563975,45.648463909564484,167.086168385110795 -87.797295200583449,45.620173199411845,166.97533746343106 -87.793431042232015,45.618083316763389,166.964750157669187 -87.790211678003544,45.567276047923706,166.82950672134757 -87.794181134421464,45.501298201162093,166.664625349454582 -87.8003719331859,45.486478620261579,166.634711095131934 -87.807758813093741,45.473593960170462,166.611403750255704 -87.814387791761732,45.4654911495604,166.599424851126969 -87.821759896231342,45.461616188234352,166.599376264959574 -87.861844071910582,45.424836926032825,166.558531947433949 -87.889463111355738,45.35603189807977,166.417921490967274 -87.886580959361723,45.353071033410735,166.406345612369478 -87.851542725285739,45.341770846745568,166.32956744171679 -87.839550514637651,45.346436837560958,166.325405209325254 -87.836712583278825,45.352315674593676,166.336792348884046 -87.834021541502679,45.353584665074408,166.336434327997267 -87.791732419220338,45.354780146509128,166.282264746725559 -87.772791847648023,45.352546455207019,166.250840568915009 -87.752859317790296,45.353091682501436,166.225287198089063 -87.720298066900185,45.378798219123361,166.247909410856664 -87.695362694499636,45.391229108642563,166.246448436751962 -87.68734044610342,45.390047247124919,166.232554053887725 -87.676422992806735,45.383790591679414,166.201596217229962 -87.658754170790928,45.370089269473809,166.14221378043294 -87.649133461859208,45.352058994009639,166.082443901337683 -87.649530192693874,45.340734370131273,166.053583430126309 -87.710540905444773,45.261681285817694,165.930690823122859 -87.709182819218114,45.259683370020504,165.923657990060747 -87.713125560524787,45.244821823933137,165.890350195579231 -87.733113201839814,45.208133820075076,165.821976195089519 -87.740895298813811,45.20346788254642,165.820382120087743 -87.743135263255567,45.199542988034786,165.813203033059835 -87.736684556406644,45.177907800891319,165.748119275085628 -87.732791313708219,45.172332037877382,165.72831423766911 -87.66135081749789,45.108858070485262,165.465881204232574 -87.591604621628392,45.096611340705195,165.339364468120039 -87.58854379668621,45.090842359416861,165.320140400901437 -87.589388527669584,45.086618423968154,165.310243339277804 -87.592979043889585,45.085140007205247,165.311242828145623 -87.596114497477373,45.086481630262142,165.318997958675027 -87.603245622341234,45.083644639631267,165.321244765073061 -87.611791692035126,45.076964762564771,165.315365463495255 -87.627144367883233,45.046505612906692,165.256532755680382 -87.626088586150672,45.015525683170381,165.174028885550797 -87.631692832961932,44.978215890104536,165.083921091631055 -87.663359599226595,44.974385634302131,165.116915870457888 -87.697888564567819,44.975583171208193,165.167003164067864 -87.764018178928566,44.967146112773989,165.234924966469407 + + + Wyoming + + + Wyoming + 0400000US56 + 56 + 97093.141000000003260 + + -104.056823291925156,43.937696790145914,188.328528475947678 -104.056848089569556,43.854642720616745,188.141181960701942 -104.056878872646834,43.751590237718425,187.907984502613544 -104.056873776449649,43.748274371011128,187.900456620380282 -104.056638061080847,43.585027954915077,187.528814264573157 -104.05662105099286,43.584687968922665,187.528008808381855 -104.056575931085149,43.580544137202274,187.518478550948203 -104.056767338433446,43.559779974505254,187.47144379094243 -104.056520883599234,43.504507153934831,187.344735464081168 -104.056519742469078,43.504251228603032,187.344148221425712 -104.056512208412528,43.478995362783401,187.286357516422868 -104.056497624026164,43.430096241846158,187.174323980696499 -104.056344539981964,43.392132790031262,187.086963783949614 -104.05613168882148,43.327100446733127,186.937137323431671 -104.055946074813789,43.305557330046348,186.887226032093167 -104.055611861215567,43.298234634556955,186.869769467972219 -104.055603655943287,43.290988931078154,186.853066592477262 -104.054846516894187,43.001784841491009,186.182222518138587 -104.054575694873691,42.755779072427238,185.606991095468402 -104.054521567145144,42.751176265503226,185.596093898639083 -104.05429281971756,42.65127645020771,185.36085800267756 -104.054450382396141,42.635197122338305,185.32327020354569 -104.054295295670826,42.63213225326156,185.31576996576041 -104.05448205067016,42.612982421439852,185.270970859564841 -104.05448377058589,42.612806061767607,185.270558146759868 -104.054483749347014,42.612029094397613,185.268726191483438 -104.054475197900587,42.25945100046907,184.432340658269823 -104.054491976562474,42.251193351693146,184.412660845555365 -104.054457842001497,42.171512749215431,184.222121176309884 -104.054243745171377,42.168035900838959,184.213409488089383 -104.054696964524155,42.138490156476202,184.143460864201188 -104.05443386674348,42.135005309345878,184.134631439112127 -104.054295629362329,42.126199687923481,184.113271988928318 -104.054648679817319,42.090315218422312,184.027825746685266 -104.054661305623199,42.076242821035791,183.994059898890555 -104.054572889858079,42.023002105771212,183.865916446782649 -104.054421742749867,42.017559341686137,183.852544823661447 -104.0543965322166,42.002959868506402,183.817356357350945 -104.054391274512454,41.999915100014491,183.810015453957021 -104.054453177466442,41.996209258342702,183.801203903742135 -104.054522169002979,41.995842273096294,183.800445571541786 -104.054547675917831,41.977201074076781,183.755583832040429 -104.054425595607896,41.974250202779338,183.748250198550522 -104.054681067023438,41.91621869748414,183.608713855966926 -104.05462083303749,41.907389078983734,183.587278159335256 -104.054715289761063,41.88671096943424,183.537481417879462 -104.054459295025495,41.734654552031429,183.168474062345922 -104.054514226199473,41.699209313553929,183.082387698814273 -104.054595996958525,41.646447383056362,182.954049231484532 -104.054627814817124,41.639424688286496,182.9369878731668 -104.054657419180515,41.624189351309745,182.899887918494642 -104.054417174323817,41.614934758015167,182.876869864761829 -104.054540620315734,41.593513689964418,182.824806882068515 -104.054220888905149,41.56553491533333,182.755867131054401 -104.054211589479266,41.553984419766863,182.72761201672256 -104.054264588548065,41.553911422180001,182.727530578151345 -104.054372292839844,41.542415922712046,182.699613007716835 -104.054366239850424,41.540373012053465,182.694604358635843 -104.054155802235869,41.52360574792182,182.653187860734761 -104.054157631905554,41.517017035967719,182.637061538174748 -104.054017105061988,41.419132325763847,182.396742666140199 -104.053836839416547,41.408929776167902,182.371343529783189 -104.053963472768146,41.394575404593205,182.33629145193845 -104.05396351806364,41.394482408701336,182.336062885820866 -104.053998622806589,41.322415577358029,182.158715304918587 -104.054150620864206,41.322232583204205,182.158543603494763 -104.05424250071691,41.317473791426607,182.146981857717037 -104.05412652708192,41.279475467685486,182.053032195195556 -104.054247524589016,41.279292473996456,182.052803003229201 -104.054339455550533,41.276524594728635,182.04613927565515 -104.054811374230923,41.115737699429204,181.648970065638423 -104.05475213327864,41.106266120471332,181.625344539992511 -104.054693759887442,41.091555774183099,181.588698398321867 -104.05484574872952,41.091006796352779,181.587614777497947 -104.054763937009227,41.019329983544857,181.409159922040999 -104.054824906946777,41.018094037670636,181.406194082461298 -104.054915520455324,41.002691722062295,181.367987344972789 -104.068627769038073,41.002789519444441,181.393557325005531 -104.087735113313684,41.002848240510708,181.429000739939511 -104.106257444926754,41.002827973500779,181.463173592463136 -104.125253787454255,41.002910694991151,181.498485818505287 -104.213142359245978,41.002874424372898,181.660911289975047 -104.215860407239688,41.002851386035573,181.665882396511734 -104.216361418438439,41.002940374812631,181.667030652053654 -104.498732447858814,41.003084272678286,182.190573896281421 -104.498823450054019,41.003107270329288,182.190799784846604 -104.884133149672323,40.999459825047701,182.898232568986714 -104.945053216645931,40.99946286295291,183.011784901842475 -105.256466641108688,40.999478383449272,183.593367228284478 -105.258214670929334,40.999459358710531,183.596590065397322 -105.278548014796925,40.999441304579811,183.634582559578121 -105.278826027686506,40.999441057729655,183.635102075524628 -105.72649969999506,40.998171544124283,184.471450969576836 -105.73211679539439,40.998147462575673,184.48194938711822 -106.062882423385972,40.998255583596162,185.104935657233 -106.192253730900021,40.999310536218182,185.351623777300119 -106.322870859786889,41.000375645344796,185.600996588356793 -106.388063005154422,41.002395588939528,185.729187256656587 -106.393559098047731,41.002427506103047,185.739662082865834 -106.432657767422484,41.003002900929523,185.815039461478591 -106.439126876748944,41.003045803142612,185.827386908233166 -106.441270917333995,41.003228763100523,185.831888447515666 -106.455567158431435,41.003307547696338,185.859139703214169 -106.859486833174444,41.00432615939993,186.627703859470785 -107.002323257202548,41.004686361179516,186.900198578834534 -107.319516488054788,41.00419505953348,187.50353879109025 -107.920153082172206,41.003264692775403,188.651001204736531 -108.252386301865258,41.001337781035069,189.285114378668368 -109.051825757558447,41.001870664272332,190.831116801127791 -109.209135186858703,41.002668237971726,191.138241311535239 -109.678180207211696,40.999597235438024,192.043720988556743 -109.715636765808043,40.999467669686894,192.116461672820151 -109.717168786785024,40.999392649765106,192.119274970144033 -109.856063850074307,40.998860552666542,192.389098917134106 -109.857060863697328,40.998813539602281,192.390936505049467 -110.001602006883587,40.99852734225059,192.672695587389171 -110.002472020381731,40.998549327918624,192.674447609111667 -110.050238886993085,40.998299656072632,192.767278343439102 -110.502489303891096,40.995935781425977,193.648069901391864 -111.048502265533173,40.999140223121053,194.729824593290687 -111.048337130238593,41.252885447364221,195.307576235383749 -111.048389107194268,41.361856419871799,195.55416810605675 -111.048053569208747,41.378894640854512,195.591954817995429 -111.048196833281068,41.580998986901363,196.04629716090858 -111.048495948035679,42.002702241791262,196.982736432924867 -111.04891995562329,42.143625907755613,197.292843592353165 -111.048918140104533,42.150099617890135,197.30700655747205 -111.048870100860881,42.183799110672304,197.380599999800324 -111.048909447065,42.195899569030324,197.407110810279846 -111.048888909673366,42.281909730600546,197.594604976475239 -111.048896882775949,42.350539676010932,197.743802482262254 -111.048070922927693,42.514228061517947,198.096394428983331 -111.045793829620223,42.96554269554143,199.056794682517648 -111.045791979148845,42.97057447696168,199.067450867965817 -111.045759144583144,42.976155235076334,199.079208330251276 -111.045965446608875,43.019792338051403,199.171937333419919 -111.045992057497713,43.021142186725932,199.174841859377921 -111.046042564334797,43.023704167204237,199.180354149080813 -111.045870620432069,43.025671084691069,199.184183241799474 -111.045870628271999,43.025934073289989,199.184739123098552 -111.045869674971158,43.027501005378781,199.188049106858671 -111.045930761109688,43.030359880476517,199.19420765992254 -111.04583412191549,43.042504355757337,199.219681326299906 -111.045895219041299,43.04572921507053,199.226609238423407 -111.045900268711478,43.047391142998727,199.230128707364202 -111.0459235232765,43.055907773776113,199.248155762441456 -111.045954687664903,43.06139753558076,199.259803535416722 -111.045987863271662,43.067260281257951,199.272239683195949 -111.045999924691927,43.069310192339721,199.276588185690343 -111.045981048172635,43.073452013396974,199.285290669649839 -111.04607618839249,43.178204487806759,199.506005359813571 -111.04610719230557,43.178319482351284,199.506306027062237 -111.046073408281643,43.185523172441869,199.521373764611781 -111.046009551739459,43.190326966490716,199.531340592540801 -111.046070743119401,43.196661692621802,199.544757823459804 -111.046462372997439,43.316797523590097,199.797113845124841 -111.047056029109442,43.502205499614888,200.184211021289229 -111.04756187244557,43.6601748798806,200.511786272749305 -111.047736550586947,43.682094949945103,200.557276806794107 -111.047974673444983,43.685963782528731,200.565693335607648 -111.047907700512951,43.686873745152944,200.567440384067595 -111.047966764190804,43.688909658141483,200.571743628010154 -111.04827882502812,43.723119208151637,200.642714750953019 -111.048292963872683,43.727605018595824,200.651963317766786 -111.048197975190533,43.728017002753575,200.652630837634206 -111.048575734089482,43.816888252634406,200.835703054443002 -111.049973405961111,43.984145054568017,201.179795181378722 -111.050619407037132,44.061448983499496,201.33806171733886 -111.05061942071687,44.061883965381391,201.338944098912179 -111.050501483891537,44.063948881306473,201.342911113984883 -111.05109633547238,44.436841456076472,202.094798696227372 -111.051074407199437,44.439088364246743,202.099248085170984 -111.050855559961335,44.475100891397759,202.170754219405353 -111.057094520532701,44.625949627157688,202.482477654702961 -111.057383137074197,44.667282799038169,202.564927358180285 -111.058782424498276,44.867670804711572,202.962745214812458 -111.057525604080837,44.934588131242755,203.091701072640717 -111.058103689335908,44.936911028247813,203.097321384586394 -111.046173665536131,45.002352599144658,203.20331874769181 -110.877668114946076,45.003111368348172,202.893705207854509 -110.752661056824877,44.998960608877972,202.65503777936101 -110.707165170213642,44.993337588241424,202.560140798799694 -110.55432380240191,44.993253123744232,202.278506741859019 -110.549055727946921,44.99347520208876,202.2692492287606 -110.223228762348029,44.997197440834213,201.677800171077251 -110.111987264628837,45.004927968975743,201.489079108461738 -110.028229933502686,45.004689359929401,201.335105936974287 -110.027426918732971,45.004626375675784,201.333509654738009 -109.800566268096134,45.00321616851592,200.915481938049197 -109.27116484328829,45.006319737597948,199.95587242115289 -109.265301749985611,45.006381831186253,199.94532579369843 -109.105313159544082,45.006943427935973,199.655471028760076 -109.084877620796092,45.000650010980479,199.605638624168932 -109.064129281642423,45.000663349733024,199.567961248569191 -108.62317326507754,45.00145528945658,198.769886244088411 -108.580343322320289,45.001532208854002,198.692537426948547 -108.567780116173637,45.001626409673129,198.67000023368746 -108.251198779264939,45.000511599828116,198.095826365053654 -108.12751774304445,45.002066545286482,197.876024236902595 -107.91334275451409,45.002007441257156,197.490370755083859 -107.610696927029849,45.001923911022509,196.946707982569933 -107.609666911531306,45.001992924944396,196.945003311149776 -107.136014678197554,45.001180583086935,196.095821474678814 -107.082457636482872,44.997863572557577,195.993330368772149 -106.894705316246473,44.997022617149973,195.65683470107615 -106.890603242099871,44.996960685303399,195.649398567155004 -106.26540506639742,44.994873755504258,194.534744097851217 -106.026628717592217,44.994777180460481,194.11228720843792 -105.929997012836026,44.994738094417556,193.941605090163648 -105.920807976261869,44.99886208085293,193.934119058772922 -105.849876771315721,45.001488105035698,193.814581088721752 -105.07840503304628,45.001451704124982,192.459712859243155 -105.040201874168304,45.001449899057164,192.392897832207382 -105.027062627760699,45.001395107882139,192.36980807594955 -105.021080517544902,45.001434200488134,192.359433938749135 -105.020036501469889,45.001542212762963,192.357840404845774 -104.766854728033735,45.000292238212424,191.91314036026597 -104.761646626633748,45.000175324402854,191.903808430768549 -104.666960832896265,44.999728826220107,191.73784710932523 -104.66567181644713,44.999979836804791,191.736142825335264 -104.472208151708855,44.999566881540488,191.398635659366846 -104.471903145935528,44.999566886310667,191.398105517029762 -104.059476261428642,44.998551361335139,190.680604596622288 -104.057734181948149,44.769365175160367,190.177591698244214 -104.0577341735749,44.769091185716029,190.176991612650454 -104.057703822590639,44.724850892158706,190.079973784275353 -104.057639812285117,44.724552904652306,190.079208869487047 -104.057546111050854,44.701597792551482,190.028675292618573 -104.057706913630525,44.695013044499049,190.014498803764582 -104.057578833937754,44.692475144567538,190.008703390136361 -104.057641851207862,44.572152537726303,189.744062649086118 -104.057656348133847,44.544478881215618,189.683043252676725 -104.057690575793231,44.518868877201484,189.62655926682055 -104.056240462178181,44.181533124814443,188.87460068333894 -104.056314399462977,44.142234648203718,188.786863252520561 -104.05669633504472,43.939251730089232,188.331808011047542 -104.056823291925156,43.937696790145914,188.328528475947678 + + + Alabama + + + Alabama + 0400000US01 + 01 + 50645.326000000000931 + + -88.125812518423572,30.285645922130652,118.786451985128224 -88.087965404651953,30.26187155227154,118.630797442048788 -88.076007015039252,30.251127243654818,118.569047290831804 -88.077009002376229,30.248147397401944,118.559144703671336 -88.079939054242971,30.247047431624573,118.559772946871817 -88.110585696510782,30.244105322347213,118.599636920727789 -88.121304980432384,30.248157006837445,118.633328741416335 -88.138237389491749,30.251186692320399,118.673457897268236 -88.167724040830919,30.251262428256716,118.723158841952682 -88.209695914104657,30.246814300841173,118.776258687488735 -88.281728330398494,30.232281458608455,118.8407365931198 -88.30593083670415,30.230038367358951,118.87269451469183 -88.314481048153624,30.23203118292502,118.894806476309896 -88.311183013205621,30.235240036755879,118.9017239427194 -88.300862769493747,30.233819205574122,118.87886053416878 -88.281938376095596,30.235788265189434,118.854709638282657 -88.259526950805665,30.241602145576437,118.839647605083883 -88.225771277135166,30.247566117930095,118.806148178875446 -88.174505227379328,30.254425195842416,118.746808584779501 -88.159457895218907,30.254400329892622,118.721493323333561 -88.142297547417328,30.257031337609178,118.702961063012481 -88.131785398495907,30.264132042864173,118.712930687703192 -88.125876485419127,30.27554787294337,118.747361490502954 -88.125812518423572,30.285645922130652,118.786451985128224-86.784813134148351,34.993700449735627,133.832581562921405 -86.678798604436821,34.993846449142431,133.669248113408685 -86.67790858326012,34.993846457811948,133.667874178849161 -86.675542525969632,34.993777484204927,133.663984450511634 -86.672035442503798,34.993776518412034,133.658567574806511 -86.660792171948586,34.993568637991103,133.640499852597713 -86.642393733262324,34.993516819630443,133.611934267915785 -86.601219745575321,34.99301724447924,133.546725027263165 -86.590142481064234,34.992974354283497,133.529505232349038 -86.572397055553807,34.992788535812977,133.501524513587356 -86.557043689046708,34.992748686959807,133.477739590220153 -86.529664032052594,34.992454967176101,133.434575541876256 -86.46897558439494,34.99247055545078,133.341278063133359 -86.435103781349099,34.992863864835151,133.290580987930298 -86.398378912317739,34.99343919282029,133.236167528666556 -86.31993517365602,34.992926944879741,133.114083869382739 -86.312447849740948,34.992878051605224,133.102441150695086 -85.865098548535641,34.990163508267436,132.410690570250154 -85.829886221727619,34.989949835994004,132.356505246832967 -85.825573117473411,34.989926878390406,132.349881938658655 -85.606321776976955,34.986465139358486,132.006020769476891 -85.596346688518963,34.92612114856211,131.781959011219442 -85.596318685599286,34.925961156561193,131.781362122856081 -85.584299502385676,34.862164356749624,131.54186222795397 -85.553633646693868,34.710122022264549,130.966394434683025 -85.553605643482598,34.709939031422735,130.965713922865689 -85.542417663083185,34.658586634495542,130.769570738077164 -85.542414661877643,34.658504638514145,130.769279845990241 -85.535573224362864,34.625593845991943,130.643934214487672 -85.528276122213157,34.590491071808415,130.51012078858912 -85.515078192432298,34.527002306170978,130.267785531468689 -85.514857173088032,34.525980358147741,130.263868475332856 -85.51484727141812,34.525943761838846,130.263725189492106 -85.513256053355946,34.520062662168293,130.240697245113552 -85.509531730083225,34.50302352945112,130.175302304327488 -85.503601221928747,34.476339889235582,130.072685036808252 -85.503463210766753,34.47576691854308,130.070464601740241 -85.463447473832616,34.288187842520678,129.349599636159837 -85.459836378689459,34.271260350630094,129.284373182803392 -85.459214313663523,34.267559538298244,129.270363318733871 -85.456514074561383,34.254678196626458,129.220776153728366 -85.456200037746072,34.252513305983364,129.21265300642699 -85.422870581501513,34.082653527636886,128.560633001849055 -85.399974844394649,33.965967965328517,128.111041562631726 -85.387829635403492,33.903539401952621,127.870097383856773 -85.362978439687993,33.775799743657785,127.375854688696563 -85.361625328360049,33.769807054195873,127.352342034690082 -85.339106744182033,33.654966119484406,126.906253882683814 -85.323627750753744,33.576025875452288,126.598840679973364 -85.316124202959003,33.537759047031976,126.449591629207134 -85.315221107510183,33.532079339422019,126.427748463116586 -85.31512909996836,33.531668360823843,126.426127060316503 -85.305568262268181,33.484747796871886,126.242343079298735 -85.295030464350205,33.429945958735217,126.028365192003548 -85.237631757121903,33.131443731862724,124.857449293136597 -85.233500731404391,33.109960305527316,124.772825290448964 -85.224382936788317,33.064465687724244,124.592897221446037 -85.222989814362663,33.057424056482482,124.565056784078479 -85.185249583657779,32.872420774735765,123.830031792633235 -85.124536913158437,32.774149314709121,123.375734834000468 -85.13315596332032,32.766112770535855,123.359382444061339 -85.137892329415649,32.74841419155856,123.301492363214493 -85.138252012270598,32.747070149500743,123.297095046378672 -85.115851628846784,32.687539805882068,123.043288624845445 -85.105903858429059,32.644450093461742,122.868965171277523 -85.083567036604521,32.608931882715069,122.703411728143692 -85.08140079556928,32.605487301076359,122.687349060550332 -85.081047778700167,32.60479933936174,122.684263123199344 -85.070695299196942,32.585841400075573,122.598245889879763 -85.045717406023712,32.561411870300297,122.469475116580725 -85.023619678247826,32.544836913491615,122.374166326597333 -85.008210078679795,32.525783024587916,122.279909743927419 -85.002433807902023,32.514888633218277,122.23065690509975 -85.002161770790948,32.512392763394509,122.220984964631498 -85.002139537463876,32.512072585016725,122.21976360771805 -85.001888936605198,32.508463724434755,122.205996492877603 -84.99934020526868,32.471759869505306,122.065903758630157 -84.984939567761757,32.447562236628471,121.953937981277704 -84.980539055082446,32.414164988255678,121.823063601739705 -84.988385773613487,32.383545306094092,121.721227164380252 -84.988493864308666,32.383123511612688,121.719823762774467 -85.009203811389241,32.338601617040887,121.585904969833791 -85.008210686642059,32.330287053208977,121.553401824086905 -85.002981485734679,32.323940425436852,121.521709728986025 -84.939785731968428,32.302635075170876,121.345134529285133 -84.917715809746227,32.283105251142167,121.238367282785475 -84.910156860853817,32.265469430609429,121.160921886563301 -84.922754419311531,32.235236358856966,121.067346243187785 -84.924742961157079,32.233470099576024,121.063802387565374 -84.96593306915436,32.196884292176293,120.990382391959429 -84.997034681649296,32.186784541191159,121.000492545776069 -85.048971389947724,32.143967297076884,120.920326706953347 -85.057134630575845,32.064993308068303,120.636968951672316 -85.051317026594148,32.026136370057259,120.482139483094215 -85.063350873383584,31.993798940416529,120.379246417433023 -85.073434834654265,31.966701257390486,120.292958959937096 -85.083234824614493,31.946602214662711,120.232507991604507 -85.107735047908861,31.917104532575348,120.159398123621941 -85.134036344509639,31.890206700984365,120.098831932060421 -85.142935976053494,31.841810139812665,119.930179899558425 -85.142435289564602,31.785115095295183,119.715376089327037 -85.139772566667602,31.78237727570092,119.700900627300143 -85.131834911393227,31.7742157549512,119.657744318246841 -85.126333720593379,31.769016073519154,119.629556957632303 -85.125604370815651,31.76503427323204,119.613374195992947 -85.120033164851932,31.734618920847939,119.489705587737262 -85.123333124973513,31.724719408495869,119.457369229756296 -85.127633154756154,31.71871968420081,119.441337736323476 -85.126632873331275,31.696921830077795,119.357260042801499 -85.088130333168735,31.642925981786707,119.092837392352521 -85.066336626537591,31.626312037697474,118.995976202189922 -85.060634461843009,31.623678224462612,118.977131385356188 -85.058573377122698,31.620585403834959,118.962193869054317 -85.04240408659858,31.542952603023366,118.642103781923652 -85.047957921261641,31.519417655079149,118.561176275834441 -85.069163387907736,31.429557316250758,118.251717415638268 -85.088748463510257,31.310654396618414,117.827906675636768 -85.102658495048487,31.285340610105521,117.752688067033887 -85.112968446644601,31.260367837233286,117.673114543780684 -85.108612514297178,31.18843466673075,117.390458427369595 -85.101303102367581,31.167474835068148,117.298570455051959 -85.09320185362094,31.162278178333498,117.265966424718499 -85.084677647182872,31.161615285869324,117.250119190663099 -85.077723453881447,31.15891248770885,117.228885876946151 -85.03670893752161,31.110180409733108,116.97754121106118 -85.030829662524781,31.098152095170612,116.922082584351301 -85.02321435121938,31.077470320604021,116.830577405169606 -85.000520014868897,31.015836705268867,116.557606218382716 -85.003459933406049,31.002676377062958,116.511411757208407 -85.025200440141802,31.002675193243945,116.545332589186728 -85.028604519347496,31.002664165028396,116.550603421404958 -85.031199579628193,31.002647143973292,116.554588601924479 -85.032247603981986,31.002641135423961,116.556201431900263 -85.053181091013315,31.002578961553493,116.588647405616939 -85.055895154238726,31.002578938579468,116.592886168509722 -85.058627217880996,31.002578915451746,116.597153292037547 -85.146930274781596,31.002688161387994,116.735628952272236 -85.153180422389141,31.002881098149224,116.746154458262026 -85.153313424865857,31.002827099881795,116.746154362335801 -85.15554747684638,31.002828080877642,116.749654721468687 -85.489400923125771,30.999031782567929,117.25941860396415 -85.499095405794691,30.998921544835348,117.274276963435113 -85.499375410173599,30.998918360854169,117.274706164374948 -86.036154743746437,30.995305940871205,118.11187877971679 -86.053578142946748,30.995232794210903,118.139382082037628 -86.057329227732566,30.995118767859079,118.144926931709051 -86.164004681070466,30.995666815675257,118.317373313009739 -86.170097820999388,30.995690761617809,118.327206125482917 -86.176322964734467,30.995782702789789,118.337512359023094 -86.181351082370554,30.995989648204077,118.346347292885184 -86.188365187259308,30.995976269906553,118.357513121329248 -86.290368575972451,30.99578171356448,118.520075735636055 -86.305717929782531,30.996012567943392,118.545565957203507 -86.366030313604398,30.996438020998305,118.643950127996504 -86.370393413561288,30.996459981875777,118.651038145646453 -86.375668534056643,30.996456936148121,118.659495034255087 -86.389769853205465,30.996163849840276,118.681012933142483 -86.389770852796559,30.996163829064482,118.681014460511506 -86.393060927844573,30.996154800913782,118.686263634823263 -86.406036222754025,30.996031694539155,118.706632900051773 -86.455829356449314,30.995773274645199,118.785673015750945 -86.459444441374913,30.995980232109503,118.792280464433134 -86.513960681376986,30.995681772682353,118.878857816569507 -86.521064837997159,30.99522673496762,118.888551295734942 -86.564563852628879,30.997204249785987,118.966207191348076 -86.568713945837501,30.997090219622521,118.972458646632731 -86.665811149497358,30.996514401467568,119.126901749521494 -86.679513461205843,30.996517281388169,119.149043943732977 -86.689424256299091,30.997009575508198,119.166941436007619 -86.726510557277152,30.998851745198436,119.233940673060715 -86.728424600897043,30.998861727893836,119.237073697149754 -86.729523624186356,30.998718725896506,119.238302915357053 -86.786825161435289,30.998956272820461,119.331919745542109 -86.787050933861536,30.9989572087723,119.332288812845945 -86.831630950809199,30.999379794930839,119.406105928122997 -86.833067983145668,30.999356783541092,119.408346202224493 -86.874123917466079,30.999609409380476,119.475863577798009 -86.889270260264198,30.999555279139084,119.500221782363951 -87.028245427698479,31.00123196608034,119.732382887974381 -87.037504638271443,31.001324879478169,119.747800610028207 -87.041127723150225,31.001570834383124,119.75463602039963 -87.054876028599637,31.001107737886795,119.77523613628 -87.065202262822197,31.001167643592122,119.792272414080799 -87.069772365584498,31.001119605839456,119.799528143368661 -87.163755487945622,31.00103078059195,119.952329114079475 -87.164225549209149,31.001026858115608,119.953080774284899 -87.256123562682987,31.000260004597919,120.100170131772757 -87.256735575657331,31.000191002870498,120.10090643260628 -87.258145607183096,31.00016899156153,120.103126301430166 -87.259103629604041,31.000237979385766,120.104955401271582 -87.260832667496686,31.000146968943227,120.107432972639799 -87.261683686955706,31.000169960175999,120.108911508694291 -87.266707801068591,31.000241911827672,120.117396979592741 -87.290049328049761,31.000319700873213,120.155850001610816 -87.292139375227677,31.000326681978393,120.159294076263905 -87.302711614404416,31.000408583896071,120.176895647309721 -87.305174666990297,31.00016557507033,120.179995437152684 -87.313327853566108,31.000409489739003,120.19426329433918 -87.335118342364709,31.000246305248993,120.22929229401052 -87.35680183020142,31.000218114400464,120.264677193947136 -87.365157017951276,31.000192041654305,120.27825781609863 -87.368988105059174,31.0002660036942,120.284813854843378 -87.42692140587144,31.000063500078078,120.378965403884649 -87.433439553802813,31.000178436003715,120.390091206878424 -87.450958948439222,31.000245276712889,120.419077246449888 -87.456853081465638,31.000291221853342,120.428920935839415 -87.459806148648298,31.000359191957752,120.434024850837886 -87.462786213415612,31.000175175317633,120.438211189582944 -87.462931216662227,31.000174174081966,120.438445260748267 -87.467975329736689,31.000151130464239,120.446633104234934 -87.468027330905201,31.00015113000185,120.44671842455864 -87.479854597068822,31.000186022947773,120.466259750537574 -87.48085161927672,31.000170014937211,120.46783491410315 -87.481391631468696,31.000175009866414,120.468740249052644 -87.549693161825942,30.999899416704793,120.579859834164381 -87.572431671353073,30.999842217203913,120.617018249817193 -87.600079286510464,30.999428992932607,120.660909888334572 -87.600078709122997,30.999426461484742,120.66089927777648 -87.595261924916628,30.978308168164329,120.572364997118711 -87.602505607307066,30.938269251564773,120.431328913196921 -87.623353610181141,30.899485148533699,120.317350089550018 -87.636088517407188,30.867864734505861,120.217313311062753 -87.625287034911295,30.847692915033097,120.122248716652393 -87.533753770965149,30.745475227490061,119.579180093482137 -87.504071856388478,30.724356627432901,119.449100916273892 -87.49866070865005,30.722110796209773,119.431553057394922 -87.482370301050892,30.718496134733051,119.390829818323255 -87.450506379414179,30.700902363809945,119.270687163807452 -87.408261113022448,30.673787197428982,119.096774121746421 -87.398139672505707,30.655632265419477,119.010162184014916 -87.395361469849519,30.6436919338812,118.95955625642091 -87.395621281750138,30.627185822165814,118.89631774276495 -87.451063228194386,30.516689305963308,118.560737939551473 -87.450983222652383,30.516368324029571,118.559364326298237 -87.44947417363565,30.515062407906296,118.551824599504471 -87.431719519948459,30.493096752012985,118.43755151797086 -87.420317322751075,30.41220323319963,118.105241125449538 -87.428618487360254,30.410403258278247,118.111949371173978 -87.44181858592755,30.393504059310352,118.068147217854857 -87.452518542787416,30.369206283997919,117.991468706168234 -87.452102290653897,30.348270423892171,117.909446611069143 -87.451217863662706,30.313110340936756,117.771287267096341 -87.453517788900882,30.302211913007035,117.732688888907433 -87.519465030969513,30.282446412762376,117.764813897199929 -87.545674559723068,30.277670443995106,117.789606617763638 -87.559238847724515,30.276448392176633,117.807310573756695 -87.582504305833353,30.271268471014189,117.825689599849284 -87.658031759796359,30.251720875674064,117.874849451705813 -87.736675402438152,30.242690680329019,117.970326263457537 -87.801706714280698,30.23137672800544,118.034467026591301 -87.839609529320285,30.229196515061084,118.089099048636854 -87.927268507938507,30.232383573010139,118.247650675475597 -87.963403297617305,30.231532302351255,118.304656731896102 -88.001147088412779,30.227763176547196,118.353046202100813 -88.01572337116518,30.22437623330821,118.364235159941018 -88.029552662402097,30.223142179145331,118.382555959746242 -88.030423700078856,30.224724085164755,118.390164883807302 -88.025142672819811,30.232399712750247,118.411184550262988 -87.967997470213817,30.237627929545535,118.336035720072687 -87.950129318836133,30.258572944404172,118.387639756314456 -87.937191089605179,30.263477790679421,118.385114336386323 -87.919396600579461,30.255317391694597,118.323707414790988 -87.914911437577885,30.249846729263449,118.294955288991332 -87.901609069633736,30.24354118970486,118.248247726820409 -87.894349882185253,30.241247378417519,118.227220812812448 -87.880491567700162,30.240600535185781,118.201599786058068 -87.861233160762424,30.242299611368708,118.176111858338118 -87.818890384833892,30.256302219313795,118.160055563785136 -87.803234023190569,30.255064423876171,118.129180727526546 -87.788896718936797,30.256254484585511,118.109952244907618 -87.767772344318189,30.264363227865172,118.106355196796358 -87.75640926560807,30.279301513969337,118.145554251037538 -87.75666243310846,30.293225753831472,118.200103943236172 -87.773905054385182,30.313708488156522,118.308349477127194 -87.797864731976119,30.326204598183658,118.396712047979236 -87.810414109733898,30.334708025487863,118.450591826811433 -87.831028813719541,30.355813696607672,118.566772878170013 -87.838388158407199,30.371327788451502,118.639177846722305 -87.846281428607,30.379449277573535,118.683791964314878 -87.854955633234709,30.380484145011511,118.702234146185219 -87.8661669401925,30.385452776290226,118.740145036019385 -87.907494160971538,30.41138100323942,118.909366443753242 -87.910059274898316,30.416240716588238,118.932451413944364 -87.915287765634417,30.448142937776911,119.064600167796016 -87.921183184675073,30.472642555811618,119.16913881432265 -87.925363341661097,30.478097222868527,119.197177225723863 -87.933054571217014,30.483096883600286,119.229298434220254 -87.934507677184953,30.48935353128001,119.255889478139579 -87.912293638032381,30.527842640431192,119.367547533474863 -87.906495647603478,30.539560056651542,119.403122459538281 -87.902863724177266,30.552872367473956,119.448439026251435 -87.905320957321365,30.567977527492342,119.510772651061416 -87.909044124359056,30.575106108451944,119.544442165642977 -87.912584240245181,30.578252906682767,119.562455786392093 -87.916109432570195,30.587884353937998,119.605432176962495 -87.913683732935311,30.617784757103408,119.716565988026559 -87.920500124850804,30.638048600400762,119.805886933580041 -87.932224583013252,30.654681596790311,119.889353099279106 -87.937871764845497,30.659419290454682,119.916956135071814 -87.957144210155647,30.660849041871142,119.95448422152549 -87.982351963330643,30.67707594037979,120.058766225352883 -88.009552685046344,30.686941164971575,120.1419074581936 -88.013600753893144,30.685175224385599,120.141858266666532 -88.023232856723254,30.675858642317021,120.122093064710498 -88.027862811985202,30.6634762707228,120.082216217182577 -88.035744894334272,30.655701621105987,120.065453965216875 -88.045496097054951,30.654554596355762,120.077281002886593 -88.063155397392563,30.646877854505263,120.077182404696941 -88.060755037143323,30.621079272298712,119.973965590819716 -88.055154834488192,30.614479679448447,119.939241618849337 -88.06605478865022,30.590281893154831,119.864266050979495 -88.076054898680169,30.580882313574886,119.844743069261312 -88.086649947891189,30.565249066748397,119.802195875905454 -88.082773661121394,30.548309019669276,119.73045102506876 -88.083948478563642,30.530705964002014,119.664545424282551 -88.091890593530309,30.525563172510463,119.657965898513794 -88.102030654406278,30.511743832418198,119.621586606837809 -88.104924613768446,30.502897286922444,119.592285295017064 -88.104144503361326,30.495023721290618,119.560596991330385 -88.098023108153654,30.473048968898635,119.465534126386046 -88.101802075644741,30.463216469523552,119.433867524378002 -88.107593103625888,30.454734879037243,119.410773644223809 -88.105225751206191,30.429298282540326,119.308502661064267 -88.108429232729449,30.379246976680037,119.120205450803041 -88.116587169997672,30.358572029994161,119.05378039740026 -88.125766197232366,30.343625762802127,119.011227824725211 -88.129207236677416,30.340511902005922,119.00491844676435 -88.137328207348929,30.322732798888708,118.949593642726541 -88.156930715888635,30.329187274017126,119.007431489415467 -88.17312304387498,30.32668226742495,119.024838225916028 -88.192698385652065,30.319005512805358,119.027875409461558 -88.196820526381231,30.323245245263234,119.051217254251242 -88.199517792436794,30.340821263566532,119.12384514324367 -88.197509804182801,30.34558802161467,119.138946763239801 -88.189688648849966,30.347055010886475,119.131527069956064 -88.189683684852469,30.350125843641496,119.14341355767101 -88.201222107186766,30.364378965175089,119.217936486937106 -88.205652201695386,30.364102940987031,119.224289327859879 -88.261853680372013,30.384380338670617,119.396959614008665 -88.283794169929976,30.384875117104148,119.43567019328475 -88.291808203380342,30.372740706961114,119.402171713300049 -88.312767643564626,30.370907620876377,119.430254914797843 -88.317684764592613,30.371984518566975,119.442675676196814 -88.32075895448348,30.382332927504784,119.487866741605103 -88.333437329513316,30.390438373406177,119.540496404282749 -88.342505541414454,30.39146823675684,119.559704617597163 -88.365183023456382,30.390004115007656,119.592132825404406 -88.375832229526949,30.387606150998828,119.600754214450717 -88.396184486085701,30.371423851948673,119.572387617081404 -88.403446323533771,30.512843089958622,120.130476927384734 -88.404710616398233,30.535089869784226,120.21828150562942 -88.40509474716572,30.54534830909347,120.258418434299529 -88.405176769257906,30.547049215975068,120.265103057958186 -88.408648773977205,30.62472096952073,120.569570008665323 -88.408626880282256,30.633637486225172,120.603775966912508 -88.409234957391902,30.638954192524185,120.625209894031286 -88.410736371374156,30.670713457836733,120.749608936719596 -88.412504862114673,30.708314405578776,120.896736280992627 -88.412715946411879,30.714936045230882,120.922462191432714 -88.41337517081891,30.732374095558892,120.990362292155623 -88.41343618873222,30.733750020559654,120.995733578689396 -88.413628112870896,30.737576339591076,121.010706825181842 -88.426804359962631,31.000265798637518,122.034973785281181 -88.42689874021363,31.002147416313058,122.042284268885851 -88.426976753414237,31.00308736502739,122.045987616293132 -88.433178276233775,31.116256226317592,122.485853577964008 -88.439276836898273,31.232011964186185,122.933973290026188 -88.439383853993917,31.233203899379273,122.938654002733529 -88.446356552618752,31.357800172101168,123.420092879794538 -88.446383554635403,31.357914165765482,123.420566954649985 -88.449861440164241,31.42282966910982,123.670497171580791 -88.449835444437795,31.423218648601392,123.671915486454964 -88.450621712575696,31.437777726256503,123.727918564341962 -88.460656196858437,31.623582885230192,124.440696880221367 -88.460900231902087,31.62593275818546,124.449882932007313 -88.465604269369223,31.69980779472813,124.733448608778417 -88.46560736662191,31.699878729774994,124.733718259260058 -88.472287361986758,31.852867631050824,125.3140754038468 -88.472395369954867,31.853303607009355,125.315873288549483 -88.471141474784375,31.895675655417961,125.471037614159286 -88.470061325254022,31.932176464526094,125.604557095095515 -88.469842357616827,31.935087313023441,125.614979205653071 -88.456222420251279,32.041627827256725,125.986596085131168 -88.456142429486093,32.042484782913355,125.989629632793367 -88.439894762648862,32.173980026574448,126.447703027166426 -88.439834770728268,32.174707988950523,126.450283766724169 -88.432892475145309,32.229560847285796,126.640601430088282 -88.422639149620764,32.310575034606039,126.921161870472133 -88.40497659711788,32.451657836000052,127.408568107523024 -88.40497659862622,32.451772830007037,127.408988293260336 -88.389927681616115,32.579997461272924,127.851975089870393 -88.384228460051901,32.628557832094998,128.019330914132297 -88.38417446247206,32.628832818335411,128.020242327824235 -88.348884190025814,32.930922693582325,129.056581106968224 -88.341625360662036,32.993059403283013,129.268674518913031 -88.305710378896947,33.290165519154741,130.275815061293542 -88.292324431931519,33.400900695213487,130.649078091606498 -88.278620030157583,33.514270367767509,131.030039500445127 -88.278004071657762,33.518297169243645,131.043339586816728 -88.275818263936287,33.535841299735544,131.102075450122356 -88.271249668364831,33.572650476567965,131.225244299508631 -88.270731685242239,33.574725376375092,131.231761613860726 -88.270275730651846,33.5787601762149,131.245326874777675 -88.269359821977488,33.586870773918761,131.27259167842567 -88.268347895064451,33.593819431528217,131.295577652752399 -88.268204922813126,33.596059319395877,131.303282878361642 -88.257543897784132,33.683878977210149,131.59683111589402 -88.257331904158562,33.684685938465577,131.599340765736997 -88.255823049357673,33.697605299964785,131.642560553736985 -88.255646087037746,33.700604150102258,131.652870717458427 -88.249591798624422,33.746730864480831,131.805963885970414 -88.22772042306724,33.913365697427089,132.357396426610649 -88.227720424669428,33.913479691696558,132.357796913012862 -88.227631439635047,33.914689631743116,132.361904139630497 -88.208434050406296,34.060140521762605,132.840973517857492 -88.204802123114931,34.088335720012772,132.933760789223015 -88.178096703744359,34.295654061764601,133.613806875422597 -88.177074799159698,34.303966658150145,133.641071066260338 -88.174840018053175,34.32284874082945,133.703117073513567 -88.167118698933933,34.382717841725565,133.898613738827407 -88.16684272383003,34.384893736404671,133.905720268376172 -88.156514964052548,34.464874458994721,134.166349578648806 -88.141198998219238,34.583485155229653,134.551802021451294 -88.140457069416769,34.589576861728879,134.571635670959949 -88.139930077820736,34.59099679683677,134.575693059712648 -88.119619573222792,34.726067340649806,135.008439819328487 -88.099102558094756,34.893969302670534,135.55164844635874 -88.126253336754459,34.903993540322318,135.629104046151042 -88.201282460463574,34.997395219245689,136.067418619059026 -88.183668230090177,35.009472805924055,136.080594268627465 -87.986129609082042,35.008019046403874,135.76220549736172 -87.879180101264936,35.00723196241573,135.590316960588098 -87.87895309661063,35.0072759625345,135.59010848030448 -87.873836977964586,35.007335010699158,135.58222487475723 -87.854738531286671,35.007305202658785,135.551947752013803 -87.854621529068041,35.007340202118662,135.551882484927773 -87.853096494607996,35.007420213425505,135.549746759235859 -87.77479465318558,35.006711028298383,135.423727526329458 -87.768810510766116,35.006548095825487,135.41373260691762 -87.760098305828009,35.006476186065498,135.399748062714934 -87.710698140122048,35.005854707881106,135.319765172898769 -87.70352797006403,35.005710786197518,135.307978514581919 -87.701749929046457,35.005753801780848,135.305325033143163 -87.6980408401636,35.005617845285677,135.299018353223801 -87.67261123971376,35.005303113392984,135.257901735603809 -87.66532906884072,35.005289186432954,135.246391520835459 -87.607235956169902,35.005110200932201,135.154395160265267 -87.429813528091756,35.00456355648808,134.874066208489239 -87.422743360071195,35.00444763205153,134.862592811696231 -87.418600262449985,35.004437673505372,134.856068673543632 -87.392513644257107,35.004142945729427,134.814207394607365 -87.382270399403652,35.003887059404683,134.797295557335019 -87.360479882043521,35.003592289011785,134.762184306979179 -87.35044964347648,35.003431395895134,134.745940942317247 -87.300382452929455,35.002684926358,134.665099600329995 -87.271210757537716,35.002160239565484,134.617724526673555 -87.23173981330801,35.001254672591422,134.552993360906839 -87.225248878154119,35.001097403294231,134.542324244044721 -87.217878481326181,35.00091882545199,134.530211087316275 -87.211954339706281,35.000794889817399,134.520543219521642 -87.012364565767683,34.996935038824169,134.196522756479681 -87.001197300781513,34.996894150319179,134.179029976017773 -86.975601685819839,34.99628643074093,134.137185596860945 -86.973802644609265,34.996383443659269,134.134725034236908 -86.971425587375762,34.996319470060257,134.130814214237034 -86.968309511447103,34.996173507683586,134.125474538654089 -86.863333987361258,34.993730653804235,133.95425676740706 -86.850980693769003,34.993698776120496,133.935008337721229 -86.847652613864199,34.993634811756522,133.929633152671158 -86.837556372853285,34.993538915085779,133.913666065782309 -86.837492371334136,34.993538915711198,133.913566949777305 -86.821842999836676,34.993539068610993,133.88933527469635 -86.784833123234719,34.993700422207127,133.832612396217883 -86.784813134148351,34.993700449735627,133.832581562921405 + + + Alaska + + + Alaska + 0400000US02 + 02 + 570640.949999999953434 + + -162.257333524839794,54.977996788058093,301.105173856951296 -162.251984491745418,54.975543977586199,301.098971609957516 -162.237977011867088,54.962245721500878,301.087469471618533 -162.235259980818626,54.89063135700183,301.132707612589002 -162.239103371712588,54.881277622577628,301.144804398529232 -162.277610552761416,54.845213200666713,301.226505180820823 -162.285238153468129,54.840864214230912,301.240777519531548 -162.302873311736931,54.832242193835043,301.272797303274274 -162.32338663666917,54.827575975754378,301.306377905420959 -162.351607531356422,54.835696148161276,301.342614565044641 -162.419663515376726,54.877135360843603,301.414782639592886 -162.427537784575975,54.884664939489724,301.421215671114624 -162.439796960880813,54.927269167048308,301.409773640334606 -162.437769094127702,54.928891146754438,301.405652198940516 -162.339732057807623,54.981278110726578,301.224530162289739 -162.329112482657166,54.98497217866089,301.20629155356437 -162.269045506212109,54.981776430355197,301.119850265793502 -162.257333524839794,54.977996788058093,301.105173856951296-159.32671933011909,54.928030713146022,296.753122488968074 -159.320036764315489,54.933408652251501,296.739885526709259 -159.281052996167546,54.948216217369492,296.672275425866246 -159.208027403532611,54.927142045384379,296.573808972723782 -159.205214340472764,54.925204168504727,296.570659094490111 -159.205584710945686,54.914546538540257,296.577343340963125 -159.214982446801571,54.895771021443572,296.60236650891602 -159.238419886082653,54.876185261821668,296.649145412258804 -159.274706522495393,54.863908994702371,296.711239449679852 -159.308215893342464,54.863402363758162,296.762370582669973 -159.31203294806852,54.865517214713172,296.766945657320321 -159.330225724681839,54.884452190065254,296.783631850965321 -159.323085582474874,54.896971884157814,296.765584532171488 -159.315882068532687,54.903090806718225,296.751134358346462 -159.314414457362318,54.909303614926948,296.745321412570775 -159.315087975620742,54.918388279994453,296.741089100949466 -159.32671933011909,54.928030713146022,296.753122488968074-160.02025603983293,55.155810259951423,297.660846167244017 -160.049714952434442,55.180557821920928,297.689537315629423 -160.063826841400072,55.200055865473374,297.698461093008518 -160.055299157017402,55.202712937194434,297.684044500812888 -160.027615723571671,55.203592441574614,297.64208878390491 -160.004513595019205,55.194159218798035,297.61341205239296 -159.996385200427682,55.184926699599941,297.606997302733362 -159.985857108201202,55.180059073850764,297.594264129176736 -159.956709174698602,55.188971325110188,297.54508495144546 -159.933601422672524,55.219739694929906,297.491365399211645 -159.891540182509686,55.286816167823261,297.386619858443737 -159.882056539265392,55.289861245502635,297.370544278994203 -159.872957392754103,55.284567606219909,297.360254118219018 -159.850984768105434,55.267227636332727,297.338216268457472 -159.8462237762119,55.249047362790058,297.342399772256613 -159.846986433377566,55.243508541361606,297.346980405040085 -159.857665438381559,55.230058804280205,297.371309123933315 -159.863354185460963,55.227564781264192,297.381371353752911 -159.868987278079118,55.230882556237262,297.387743934988976 -159.888885788573504,55.228829242688455,297.418799109756947 -159.897687957706268,55.217552466552206,297.438977712765336 -159.907723627972359,55.164371135199538,297.486944830976427 -159.903927236011981,55.15654048339983,297.486088731326163 -159.887354877856524,55.145281199207922,297.468180009163916 -159.863249542942441,55.149020534246212,297.429727394133806 -159.861927486459706,55.164595013388379,297.418159214779735 -159.863667858059642,55.171430740023382,297.416555707342923 -159.863146183036747,55.176768563018072,297.412482018582523 -159.848624672370136,55.180516712744122,297.388405829668045 -159.818780057857452,55.177734387974851,297.345381563529372 -159.826068920725191,55.143814436411347,297.377148636616766 -159.833247747386309,55.126151917823194,297.398744814097881 -159.857799782187925,55.100443347025603,297.451336437836289 -159.870935195198996,55.094573299686274,297.474651841446757 -159.888464323169217,55.10224269080792,297.496277616359293 -159.888831582748907,55.106771524321985,297.494053316302598 -159.908964532433231,55.112227943108493,297.520922395400703 -159.949929345045177,55.104898409312945,297.586897836066782 -159.95363500791737,55.10032749865875,297.595269906334579 -159.947763370059278,55.087623059664026,297.59426414873451 -159.953479014798091,55.066326700198246,297.615907605737448 -160.054439587601962,55.005461903525877,297.804870766587555 -160.083004396410416,54.994109755074511,297.854755936190486 -160.11811920078938,54.984762409793241,297.913262694142759 -160.185804911251779,54.915365573852725,298.057531879283488 -160.183974209770355,54.902678061315612,298.062522480264306 -160.203167249626659,54.874968680935318,298.108307569287717 -160.229302116728746,54.863761578818185,298.154493952170014 -160.257101444915008,54.895658905111333,298.176865043118596 -160.253152479358818,54.929499774513971,298.150168366730213 -160.246591817047886,54.93321576837954,298.138021676801145 -160.225750529332743,54.938807970285964,298.103253932669759 -160.179949841421887,54.981129347554052,298.008405387401581 -160.13451356822759,55.013426077577456,297.920277354307473 -160.109183812637724,55.026685096349041,297.874076900072396 -160.084515654503008,55.033261339336683,297.832988832145929 -160.080219969304295,55.037283279919222,297.824063778854907 -160.089922512785591,55.049649655512852,297.831010453402996 -160.096636565462092,55.052678418949569,297.839218309149146 -160.135763309500987,55.043628984330347,297.90352101624012 -160.176713052556096,55.052257889681037,297.959610153920949 -160.193742015756385,55.108252584169882,297.950281850993633 -160.189611668195226,55.118054318358823,297.937973011285067 -160.112218604464601,55.16045532019249,297.7956269280985 -160.079662369058354,55.146174450866731,297.755804360844195 -160.061952942882755,55.133343244133542,297.737263310700655 -160.054898371192451,55.121396800750546,297.734109808690846 -160.055173228344898,55.119053877916997,297.735974807292223 -160.059386098126623,55.11816882772186,297.742837406694889 -160.060149899689293,55.11503392335181,297.74592618457973 -160.057994717977039,55.111261097831196,297.745034534484148 -160.032683453673087,55.11579042713749,297.704287457279861 -160.014574191390921,55.122627536295177,297.672908952459693 -160.00752470043011,55.129059446210576,297.658361194655299 -160.006484020108246,55.134163286825434,297.653641249984503 -160.02025603983293,55.155810259951423,297.660846167244017-159.45767177494406,55.061146477105012,296.872911241836846 -159.450834068870108,55.064037507987614,296.860884841531515 -159.384203255011073,55.06372781112713,296.760575401596725 -159.347638641619028,55.059093683443244,296.708138648420572 -159.340832015822286,55.046380262610619,296.705350512638688 -159.331149309064784,54.980297779318263,296.729433001950383 -159.332522037091479,54.976077901709701,296.733970465138555 -159.334127903934842,54.974297933440361,296.737437300384045 -159.428969304873846,54.941965239217453,296.899769228883088 -159.450335867365595,54.94107285710782,296.932609217241406 -159.460348941108009,54.945428509029831,296.94520178437233 -159.461905083742636,54.948350375464287,296.945842675864697 -159.453606791227742,54.974982594126963,296.917669368907809 -159.442413767395919,54.988199343984697,296.892987444996834 -159.419143878826844,54.999993378504527,296.850898176431656 -159.420346131489993,55.021709589337803,296.839926813729107 -159.457793264924817,55.035504377424132,296.888295681215823 -159.45767177494406,55.061146477105012,296.872911241836846-159.535823637850143,55.184449637414922,296.91662956494838 -159.506691697723255,55.176511480264914,296.877652118913829 -159.50186861772815,55.173680672851155,296.872110612690449 -159.495763607562623,55.1547454538008,296.874336212873459 -159.497136458684622,55.135741092755545,296.88782106526196 -159.505956022069682,55.131064085591078,296.90389865078032 -159.511724848291635,55.129897014609597,296.913279321976006 -159.532664050353105,55.105885450954197,296.959199087694287 -159.535990681100969,55.083679166580552,296.977506984956563 -159.5268044576313,55.077050577664352,296.967632585205138 -159.486560030632234,55.057389049311091,296.918699774891138 -159.487339802124495,55.053744162481316,296.922042035497725 -159.491948435143001,55.048923242881123,296.931855864822865 -159.512032611415179,55.041102129162148,296.966789352707565 -159.520182659064773,55.044428854066894,296.977100279182196 -159.537824161768242,55.058428019310263,296.995353235863149 -159.574723572703817,55.05981425567753,297.050124485045671 -159.600181338482685,55.046692224855711,297.096327618695796 -159.637582087588896,55.036985842992749,297.158488045446575 -159.641261105686056,55.038436720618911,297.163161936216056 -159.646385238343981,55.042288485621704,297.168572979979217 -159.651418553679861,55.049223143736391,297.171994484961033 -159.653216475963887,55.065480536175713,297.164934805594385 -159.637770752321103,55.116343046798349,297.111035821959376 -159.61932273870795,55.127355017738317,297.076643468812108 -159.588439073767063,55.15734056530551,297.01208863966167 -159.575510080306856,55.187249769533075,296.974542429670691 -159.523466939521029,55.253079482974378,296.856412335298955 -159.521566992030671,55.253379509429706,296.853379911743104 -159.505566171097826,55.23468047156824,296.840747772715986 -159.507639377000004,55.221956874898723,296.85158200096339 -159.514718421601458,55.208041222981649,296.870646375231445 -159.535823637850143,55.184449637414922,296.91662956494838-161.720937342075018,55.153813690124601,300.191919698379934 -161.699419777631903,55.136781705388714,300.17177052423358 -161.68071183405911,55.131396253376586,300.14779004175216 -161.665941038978815,55.129909587759471,300.12696376722306 -161.653886314641255,55.13056579421459,300.108691577799618 -161.610957726395668,55.116557017609892,300.054702461697161 -161.578966185030964,55.103483356846489,300.016195953823626 -161.572846013506563,55.100145358006863,300.009388393722475 -161.552223508448179,55.082217452944143,299.99092945177108 -161.551246385724227,55.079768558813136,299.991130321286619 -161.552678524924659,55.065388044025056,300.002927294932306 -161.559636125763319,55.060847073318833,300.016294530592859 -161.567356840237011,55.058528008868606,300.029299791902304 -161.584904458471044,55.057877697631241,300.055750366300344 -161.59338944200104,55.060471443403138,300.066581032238901 -161.608679688273099,55.069916815153498,300.082872514612973 -161.608802914108566,55.073860672190747,300.080393803305924 -161.600624487731295,55.080993573827143,300.063463715836406 -161.599272372344871,55.086236041516123,300.057920857332647 -161.604836667584721,55.097919344938369,300.058263536542654 -161.618189686464063,55.104038959845923,300.073888993822038 -161.634713182453737,55.104547085234891,300.098000979050994 -161.657239643249227,55.102894714751663,300.132458161562681 -161.676859831926947,55.095562602042577,300.166468942537904 -161.680857574590789,55.092479635719876,300.174477958120406 -161.680491287192268,55.087391824002147,300.177388986572623 -161.692665512491487,55.078150921567868,300.201677764765918 -161.740239161533509,55.053704888354936,300.288688267581165 -161.766485958493604,55.059159194071192,300.323836782947183 -161.79392344456312,55.076956036627642,300.352313317358494 -161.817302215613154,55.098286830935265,300.372305395081639 -161.818800919963167,55.110966350545361,300.365836993791163 -161.822188006100419,55.113612191830192,300.369027402251959 -161.853471104934357,55.126024154476632,300.406706257723272 -161.864822950329454,55.127243895039356,300.422626432962716 -161.888596439664809,55.126578466423879,300.458176809363067 -161.900164721711946,55.135412931813455,300.469157535582781 -161.903004034587156,55.141783651062418,300.46894916985184 -161.891256346462654,55.160368213643878,300.438780902884901 -161.852378963607833,55.174904437289896,300.371403056196868 -161.830162591605102,55.178117746274857,300.33642088342458 -161.740133414105884,55.161582048430283,300.214945461601019 -161.720937342075018,55.153813690124601,300.191919698379934-160.50928401032192,55.327394810436381,298.28108904697001 -160.531221529858982,55.343164837071157,298.303380100056529 -160.537300416443429,55.343200718563587,298.312381231226027 -160.566783200803059,55.332167534953577,298.363362564705312 -160.582044830547176,55.313955876786409,298.39792540576309 -160.583022391559496,55.306860105956112,298.404010559432209 -160.582442124675879,55.302167281217102,298.406210985966027 -160.568281656561226,55.272802581707879,298.404286381788552 -160.553111422549307,55.26396818346484,298.387463310733438 -160.529969393303787,55.25604090716417,298.358173907734454 -160.488523477849185,55.193286908473446,298.33688464295119 -160.488859785136214,55.181621312280434,298.344864372164011 -160.498653685866913,55.166069671074943,298.369428972713649 -160.527570995948338,55.129542402207392,298.435927976854146 -160.657921306692714,55.159928823037873,298.610810891725123 -160.678215704603957,55.173288961845934,298.632405787706375 -160.690717756602623,55.19525394779631,298.636780989356339 -160.69263959518031,55.210139387054639,298.629969628527761 -160.758931429309825,55.19480765208079,298.738561393693089 -160.769736650837842,55.185063787693835,298.760983013547957 -160.767572182693385,55.176381135331326,298.763415584340692 -160.796538150768754,55.134065072776416,298.834032294340432 -160.808348414791425,55.125336154657766,298.857285072095692 -160.823719664212632,55.117517136217778,298.885252666659653 -160.826806739707791,55.119818995525129,298.888357041403651 -160.818202155539524,55.141221403931581,298.861640934832394 -160.809809136824185,55.155244069773232,298.840025939047337 -160.809899872220257,55.167825623963779,298.831966823898256 -160.821829775533814,55.187120714378736,298.83711913228035 -160.844260342836833,55.204102685182136,298.859347556717694 -160.843569627751037,55.293616553637378,298.799374146386981 -160.858970781469225,55.318146398362991,298.80594496615231 -160.842602356138912,55.339434968607137,298.767557479441166 -160.799501660630057,55.381178340986338,298.675976559519768 -160.780155455263269,55.388296465470276,298.642606146633625 -160.712655609007385,55.402733263314346,298.533103085123003 -160.689799994655004,55.401856734395331,298.49985028617084 -160.668285217566734,55.398684259589324,298.47009564936161 -160.651591927071422,55.388439938031894,298.452146518044174 -160.648571649392409,55.382802192575298,298.451395958662033 -160.648512137787151,55.35735008074559,298.468093048781157 -160.653366211763938,55.343311476998679,298.484531906433403 -160.616612172410441,55.347681032914998,298.427143141627312 -160.575075399371144,55.388639406875747,298.338622893206775 -160.569743566482487,55.389739471468744,298.329995242878795 -160.547586859496533,55.387572974378905,298.298570357263088 -160.519872878802431,55.379040806120457,298.263066115789115 -160.524422494162138,55.374031892674857,298.273097111843526 -160.524758249897985,55.370034025395178,298.276213735342026 -160.524665894530557,55.364030236278509,298.280007010325789 -160.521313790859921,55.36121539901719,298.276874223724008 -160.428017213171302,55.338548989557943,298.153094657696784 -160.410973701768086,55.341343221204241,298.125953772105277 -160.405710076124649,55.345965161776917,298.115133493207395 -160.364119869879659,55.362896375527832,298.042352481745183 -160.346731182390045,55.362628720813625,298.016686764545739 -160.336054215859491,55.35980602534849,298.002645973116159 -160.328824938524235,55.352856406923493,297.996394038200378 -160.320026232482803,55.338201087292333,297.992772887460887 -160.308909347312834,55.302944531462288,297.998921554535627 -160.333078389684971,55.260715540608523,298.061997200362384 -160.343572645137215,55.251469661698231,298.083553923293948 -160.374958533507339,55.259579772158389,298.125120003707707 -160.381242816247436,55.26636141356331,298.130125832743943 -160.382828148029262,55.272472169183054,298.128559523262084 -160.392777775889897,55.286244495595902,298.134508548304439 -160.444252495489906,55.297931093928966,298.203552035614848 -160.452155275824509,55.296747982815006,298.216071548871696 -160.460120817688846,55.291560010503936,298.231276324018836 -160.470617443168891,55.28859191182827,298.248809828422964 -160.477848324277033,55.288896761713836,298.259367206133902 -160.483891360732002,55.29144555604617,298.266703380271792 -160.520503692630768,55.308767244551895,298.309884254820645 -160.529301114971986,55.318708727626067,298.316483218222857 -160.50928401032192,55.327394810436381,298.28108904697001-160.214150233807402,55.455528062699166,297.759559995494783 -160.139403330324001,55.45037668865082,297.651918256655335 -160.144201436128725,55.386823797183489,297.699961728416383 -160.144872204765448,55.383160911321816,297.703309605829418 -160.150359748700339,55.377246010438981,297.715267486870289 -160.156404631889615,55.377187895453829,297.724298481829464 -160.205976550322617,55.391407442443587,297.788881430402398 -160.282335361689803,55.395571820688232,297.899671542458236 -160.311285652596354,55.392840355704386,297.944446683861315 -160.323496452112494,55.393343102158816,297.962257142178714 -160.342223054439302,55.409357184140177,297.979656971991062 -160.35189151596407,55.420141623045339,297.986983332782984 -160.349974893523012,55.425851462092041,297.98041726090014 -160.325604457936606,55.444297294234161,297.932233708910644 -160.269203611196474,55.462453757295876,297.836739789694548 -160.262934782576906,55.463338848040109,297.826864871196449 -160.229874206110424,55.460005603383294,297.779986415058374 -160.214150233807402,55.455528062699166,297.759559995494783-165.792706740682945,54.171366253938999,306.880263458006084 -165.750077129198473,54.160906428552906,306.826077978126705 -165.744797090385617,54.157961637396987,306.820612973533571 -165.734785772197824,54.147731211940531,306.813764988444746 -165.716380741058686,54.120426595479287,306.807546935975552 -165.669507365073912,54.131735010847365,306.730577556416392 -165.663563433038235,54.130547164359214,306.722792740911245 -165.657756938062334,54.1187127247577,306.723222544416785 -165.673659388150099,54.095848316262334,306.763649394735694 -165.769351698732237,54.065547750134641,306.926264302805066 -165.812925202311817,54.0743756204294,306.983258118852973 -165.877303780066825,54.036031936743484,307.106195283122361 -165.898483320504255,54.055324807853047,307.122551872394979 -165.899436556533857,54.060244600522232,307.120222047902644 -165.90382457655042,54.06248043478633,307.124933672137558 -165.918410402883012,54.065318061388446,307.144066866487265 -165.932417137746768,54.066163775439321,307.163859044201672 -165.986588687766556,54.061330982967846,307.246528972871602 -166.022033366737418,54.051049740142936,307.306019266135991 -166.029904904357608,54.045525811676519,307.321694067679346 -166.04860939981549,54.043794540920544,307.350278802216053 -166.100428348495058,54.103143311614843,307.380420089699328 -166.114416030936184,54.122132326491005,307.386185144074261 -166.103577404387778,54.143751689175382,307.353795666247606 -166.084205463760895,54.174786845073513,307.301725744269788 -166.00464625504307,54.213231808044718,307.15649644471705 -165.98538208067265,54.220777867475668,307.122693121433258 -165.946812919850942,54.220458578208252,307.0669075390324 -165.875260273146722,54.216060043280478,306.966276166029274 -165.870376298335003,54.214489191999455,306.960378465242684 -165.867324222144561,54.211765351703029,306.958028309978545 -165.868055565407474,54.199619804054748,306.968399612233043 -165.874155891301939,54.189389085943311,306.985108785331249 -165.882638380549423,54.183254167690393,307.002147781662643 -165.870257869111413,54.168337964724515,306.99552787002176 -165.865699834685444,54.165769145974217,306.990852101705968 -165.83945614428734,54.160635818668069,306.956544085405767 -165.834603267472914,54.160940894883815,306.949242126196623 -165.827341594361769,54.164106904861875,306.936251453123987 -165.799331199793755,54.182853692978718,306.881164399906993 -165.795965283911642,54.183040746835317,306.876119147986174 -165.794753214313999,54.181212838943836,306.875746499747038 -165.792706740682945,54.171366253938999,306.880263458006084-165.273239087759066,54.095285614314221,306.177692885510623 -165.269203164767475,54.095087695406185,306.171916604973376 -165.236554289405376,54.065045444925218,306.146070989780128 -165.237339132687367,54.062389532824533,306.149171876721084 -165.248019551552716,54.055732594587859,306.169743512757123 -165.326603259494505,54.063527864482289,306.279405545443296 -165.339024317011649,54.069746399168622,306.293049704283476 -165.367955856728742,54.072936750168935,306.333137537352741 -165.460364479038674,54.065931340222541,306.473811122588813 -165.484932253851611,54.071835666492142,306.505429679527879 -165.485558388192402,54.074653546592103,306.504253474995494 -165.470406960314506,54.079258644530121,306.478635345585644 -165.441158833641822,54.083754002998347,306.432444385252893 -165.324457922800519,54.094253721615061,306.253591020591557 -165.273239087759066,54.095285614314221,306.177692885510623-164.978398507053072,54.134219498811831,305.716088905930519 -164.939966443090952,54.136307121202961,305.658055003732443 -164.923507366340061,54.128194732498685,305.639748431742191 -164.921888739580169,54.115706240249743,305.646441634744406 -164.923663437003682,54.110709399226728,305.652681314386427 -164.955362011247246,54.077683086655213,305.723297719843686 -164.96277774501192,54.075653029171193,305.735688489861786 -165.046516450923946,54.066254861856642,305.865778587758541 -165.205605134519288,54.087374150119324,306.084228867664933 -165.214456069962523,54.089779896443943,306.095459613017738 -165.223063485693018,54.101195301184134,306.09970383066684 -165.200939750606096,54.116095132455662,306.05626673437655 -165.143173770917144,54.130700625670656,305.960734039545059 -165.090682741131587,54.127627701057733,305.885912624187768 -165.069624939482082,54.122797270444792,305.858515724539757 -165.05235223398617,54.121331641872978,305.834206626750529 -165.025262828230382,54.121543128315416,305.794236393645406 -165.010108843198196,54.134557906605913,305.762455055490136 -164.978398507053072,54.134219498811831,305.716088905930519-165.525662399607256,54.299503207481372,306.393711825832725 -165.504971830812707,54.299077600467427,306.363897917792201 -165.480649143800235,54.29494220091108,306.331602151505649 -165.479946540520075,54.283316656432575,306.33940018992871 -165.482177392237645,54.281447687002043,306.344069461338222 -165.515895241187479,54.273695368487168,306.39909786824137 -165.559774219531647,54.25374733089523,306.478193059563637 -165.561028012972002,54.250372436919768,306.482581913471222 -165.560142823575632,54.246435603335257,306.484278291463852 -165.555443543562575,54.2392109647365,306.482904274947941 -165.514974017201268,54.212540720234628,306.444028606638312 -165.498471272931937,54.210550096581748,306.421438542194664 -165.481008780508574,54.212922323606705,306.394154911860824 -165.407571359558546,54.212450678471832,306.287240318022668 -165.393635208629291,54.203867260362131,306.273310579359531 -165.385912978508031,54.196345688606939,306.267655180767179 -165.402177618890363,54.177356119137841,306.305647516623139 -165.415117415067954,54.178835826949069,306.323464151471853 -165.424548398635693,54.182413518326037,306.334575498476624 -165.478381218171819,54.182314542595805,306.413334819488227 -165.483507961353723,54.179575554237864,306.422882937826216 -165.538191109241751,54.129220491672577,306.540579329244792 -165.55140290402187,54.111810920781579,306.57293370179832 -165.567607335431916,54.107736783197119,306.59968364611268 -165.577830137901145,54.108232578513892,306.61426346283406 -165.615398961721922,54.120521423906617,306.659970778040588 -165.63191021277899,54.132170676415676,306.675337846390903 -165.639269577924978,54.199045977225616,306.635578478686512 -165.624043370556279,54.207714921940621,306.606804773211479 -165.595846532855404,54.217985041412419,306.557903879322112 -165.587972954005892,54.222677005102625,306.542867064476013 -165.58199242986845,54.2291848650299,306.529214398004115 -165.589348723541889,54.23777540297047,306.533423642627895 -165.597923776223951,54.242322073344909,306.542470272630453 -165.614273619729772,54.246145630021687,306.563389746472239 -165.617820451528019,54.244442630595223,306.56985254958272 -165.62779964535477,54.23336487252935,306.592814695090055 -165.642203112585918,54.229281766876831,306.616907404735684 -165.67157243292894,54.228644257652356,306.660183767788112 -165.683647584113686,54.236521737069346,306.671772526577115 -165.688012831715923,54.243013409615386,306.673179660923779 -165.686304213673765,54.249514192234784,306.665732021443546 -165.677638185381198,54.264245787075588,306.641868405975401 -165.638576793832499,54.297173241404167,306.559854102320969 -165.62774410657741,54.298570385205821,306.543024668470025 -165.617764245450189,54.297051624604272,306.529664318077266 -165.607419301525539,54.293825935693775,306.51707362011075 -165.588703189061164,54.283968651846905,306.497348644770682 -165.525662399607256,54.299503207481372,306.393711825832725-162.804129031754144,54.489091352972409,302.250460873357952 -162.798554299798099,54.491905353051536,302.240262341685593 -162.730679734538626,54.4750072510138,302.150666357018054 -162.591149139527602,54.449720804429631,301.959665239788592 -162.558932380054415,54.424279353112318,301.928511308506131 -162.554982989893801,54.415771743270852,301.928258065134287 -162.553881695641593,54.391876652491554,301.942435527220368 -162.564988957836334,54.382499793310267,301.965234098024666 -162.614152163664642,54.367736422142144,302.048471344634891 -162.725057713458057,54.399996143709032,302.19261403568089 -162.762654469895097,54.372910449495002,302.266797160729766 -162.761730371154471,54.370772546520385,302.266844988800585 -162.783497151149533,54.374740991355552,302.296673609875143 -162.862309329324944,54.425104640982532,302.380314446054399 -162.829884589864264,54.490509818116472,302.28780522570014 -162.804129031754144,54.489091352972409,302.250460873357952-173.11928849241437,60.515272433278497,309.330776616930962 -173.100477366607635,60.532634294079017,309.284884367138147 -173.100482359417128,60.573259184623176,309.226956279017031 -173.044239921124159,60.610763168932614,309.110285026952624 -173.002053263075567,60.6107649237007,309.062913497909904 -172.973924694109598,60.604516597055671,309.040215961635113 -172.917664705219011,60.526392733672679,309.08793250657618 -172.917662784246119,60.513892075457917,309.105655728839338 -172.897738319576604,60.499021839033034,309.104246323928237 -172.717650857953771,60.429140982422062,308.999148456379771 -172.708861790154771,60.424456268786088,308.995768719352782 -172.482931027436422,60.399466013165338,308.774090457707644 -172.355019634747151,60.380719830623342,308.65445638448 -172.343796374615408,60.372430260836538,308.653176330961287 -172.33544798884796,60.363644653055914,308.65585555229336 -172.272150717356482,60.333174633165655,308.625797740183771 -172.257218194363105,60.333369896898198,308.608447441831231 -172.257217636046619,60.325754107012422,308.618992133066058 -172.293684119838957,60.320480595527044,308.668013285845518 -172.437867481173043,60.331937684221089,308.816844426095486 -172.493920898476915,60.334157615335641,308.877701151184738 -172.507933136924692,60.329711486409927,308.899874824099243 -172.521946213004497,60.323041419055698,308.925149184651673 -172.549971852532508,60.316371100287164,308.966403101570904 -172.592010378952267,60.314145407386619,309.017426699399948 -172.615366973987079,60.318590865343701,309.037832051515579 -172.624710492823624,60.329705390291245,309.032945181243122 -172.760178496426988,60.37415873409801,309.124661433510482 -172.813914128819391,60.405896896836865,309.140962891280651 -172.953862994089718,60.477920412922991,309.197477139532566 -172.961441831159561,60.478966248694007,309.204547218047082 -172.968900483026744,60.47743815722194,309.215128839947283 -172.992680769716372,60.477972717384809,309.241197552531958 -173.121387255695026,60.499334832478169,309.355837875977159 -173.123152149645335,60.512277446325172,309.339389193803072 -173.11928849241437,60.515272433278497,309.330776616930962-165.723959675171358,60.169034724232802,301.023768644779921 -165.72573761282024,60.156018037342882,301.040783731266856 -165.721689477078485,60.152936198183468,301.039271023124456 -165.704980734826563,60.150700581953679,301.021096551790833 -165.699843047710857,60.153007619957386,301.012104002758861 -165.686077452685453,60.15363687016125,300.994319183751941 -165.677944283476592,60.148776157797158,300.989752281457186 -165.670430774042643,60.114093231379819,301.01977051794529 -165.674133293730307,60.096294636606125,301.044533948414028 -165.683177522947233,60.089379646753187,301.063602741807699 -165.687147725605769,60.054655502708194,301.107834931463003 -165.65187672906589,59.991257895083606,301.135458637028933 -165.59143128729869,59.965427764576333,301.089093705639243 -165.541926490993859,59.964598746678575,301.028206151910126 -165.537040544404761,59.95070021742665,301.037670659832656 -165.546012705669881,59.929800609609586,301.072278982959688 -165.552960730573233,59.919431756135481,301.092567815445364 -165.578368902829226,59.904096680121057,301.141502461396158 -165.698530969303249,59.892935657330874,301.304252477362752 -165.715424677606904,59.894786280178437,301.323285019025207 -165.72009884673318,59.898559087131453,301.324885566718876 -165.725007772489505,59.899234973795807,301.330258379690349 -165.754400027624911,59.899368401740013,301.366819803602993 -165.908013929557683,59.871356197353784,301.590168282389641 -166.012739327832577,59.846478857062422,301.748969305306673 -166.063486995788452,59.819925606419709,301.84235458727926 -166.074998555792149,59.804879797448727,301.873759410344064 -166.06062853606187,59.786528578110641,301.876577535644174 -166.044621124183777,59.775631185874879,301.86889105848968 -166.034809189570012,59.773148443087337,301.85943060554564 -166.033344990460904,59.770019557332446,301.861132278107107 -166.039477867991991,59.757278789829925,301.88317862059921 -166.065383498048277,59.748005546543737,301.92604014556855 -166.159598084026271,59.748303725902957,302.043467354029417 -166.183447586934079,59.763144858356263,302.056436389684677 -166.179196572937741,59.765912197201516,302.047991037368774 -166.177348270571827,59.770097784153073,302.04093698784709 -166.186762688113646,59.778848362272427,302.042759076692164 -166.205822119804651,59.791091659022079,302.052631950005889 -166.254057238794815,59.809221233457258,302.09213134739548 -166.384514813181511,59.848497649074623,302.209582009352744 -166.409818569673519,59.854014011964388,302.234695225954056 -166.442273963376948,59.857225300911139,302.271315698511899 -166.514748465484956,59.849347126606666,302.370339320972562 -166.585820504373885,59.84811179808851,302.459933103993535 -166.619371773159344,59.850117100194161,302.49921827763319 -166.623996084845828,59.855843854353118,302.498334776610136 -166.650599494043831,59.870504942408537,302.514341691508889 -166.680723468087734,59.880652087189205,302.539887264370918 -166.719086042880917,59.888414139876673,302.578351456671953 -166.766705014082135,59.891463144911143,302.633692796342075 -166.804156861133322,59.915721763770016,302.651728009805083 -166.869053660184164,59.948942613798444,302.693012725561857 -166.894853806902773,59.9599048209557,302.711978700011969 -166.998271557280958,59.992889944084531,302.80053442902863 -167.070123542831965,59.991688604492445,302.890252463519573 -167.114305134379123,59.988741841585458,302.947996781207621 -167.127386962126195,59.991092527798621,302.961283886805177 -167.135777964614732,59.994087285964021,302.968046771362424 -167.22273108460729,60.039522388987969,303.020840675570071 -167.250148773254921,60.058250356649388,303.032148409634829 -167.283878246286378,60.063279576846504,303.067426235415041 -167.313184529150874,60.064260991599255,303.102093957364559 -167.341629162775178,60.069545305937574,303.130560299381614 -167.345222236076069,60.07178117670324,303.132282361388206 -167.345405428242742,60.074365102981979,303.129421579651535 -167.336571707835617,60.087994901063347,303.102355319075286 -167.336382129750547,60.093450756577518,303.095607399009168 -167.345827100610137,60.122565787168099,303.072330287657678 -167.350390586320543,60.130524484667234,303.068372905254364 -167.365308439543867,60.146939756146459,303.066901327110827 -167.42558044887565,60.194453324292361,303.083235442638397 -167.424017288144285,60.204812074862154,303.0688686221838 -167.372458237237566,60.224877517773784,302.982032704167068 -167.315149795669782,60.237836262989212,302.896766031160951 -167.204476750431951,60.237206393772247,302.762842614203691 -167.108513965942649,60.23228136082821,302.651812781579792 -167.084474063732841,60.225152012096203,302.631003014743328 -167.048359521685825,60.218475882433211,302.594896130263805 -166.94051140205292,60.205260302508769,302.478881428949535 -166.912344208225647,60.205903824968296,302.443686595186591 -166.849982428955713,60.212983830569868,302.359046195633709 -166.815030465146151,60.227172120757103,302.299519798718393 -166.80601687241051,60.242193891550976,302.270736030302942 -166.812095019140656,60.259049324119587,302.258222148753703 -166.828718272026094,60.268034764949114,302.267888308502734 -166.837515250785373,60.270796522337541,302.275358718819916 -166.835426621372505,60.27483945445217,302.268016043119133 -166.817529945069481,60.285673508835067,302.233323239721358 -166.765076188653893,60.309227888534792,302.141380495391786 -166.740878185876397,60.313692234715489,302.106555113568902 -166.66466990557177,60.322385468866358,302.00321588665247 -166.611455191432981,60.320643539117732,301.940254828892648 -166.580865054925226,60.3212441120289,301.902155015617609 -166.57238860244658,60.325349166200589,301.886955630034208 -166.564644401540733,60.358415438246773,301.838510252535343 -166.496110853586487,60.391782876373085,301.715472752228379 -166.417138341785716,60.371265941987332,301.643123920075595 -166.411114032213504,60.365295216137362,301.642769489437342 -166.389752110046572,60.359067793114725,301.623946630395949 -166.369164543165851,60.357624228664534,301.600446502678096 -166.31322655331175,60.377008796399082,301.509273895993829 -166.202594728844844,60.392803518142941,301.35536275524646 -166.177482993142945,60.400402803694099,301.315737212076783 -166.173766295145953,60.428253142730028,301.278660720214248 -166.165782806299489,60.432040197717683,301.264466618187726 -166.138283889002281,60.423909943776735,301.240303301252425 -166.126958375894048,60.413653432785907,301.238399217836559 -166.126810039467642,60.409353548793661,301.243230881169438 -166.137504980017724,60.399529600376404,301.267785461619496 -166.126381534135731,60.377517395820398,301.279794503934681 -166.08736439746545,60.324691546656801,301.293291832320392 -166.014743707072881,60.317096153537378,301.212821879424155 -165.989911369487174,60.317238630712652,301.182113478891551 -165.930533220900713,60.3209986817808,301.104709276929498 -165.927217435455844,60.324656090021108,301.096408237703145 -165.92615003802905,60.329909531181059,301.089031996205449 -165.923372496784509,60.334804455693195,301.079964605160058 -165.919406806023176,60.337408463794425,301.072079814039171 -165.886038144816638,60.343308955082591,301.024216025136411 -165.789154325927086,60.32623028585575,300.924573250114918 -165.717091913323202,60.30990711627642,300.85443835426122 -165.69990731411454,60.29664980051168,300.848403475247324 -165.688331064431338,60.27697654597636,300.856597221456468 -165.688722286565536,60.267223796730946,300.868220373988152 -165.700913484079763,60.210090077208392,300.948472132906318 -165.711435524210799,60.188539446949257,300.986048422753811 -165.723959675171358,60.169034724232802,301.023768644779921-134.716789728959128,58.220868948278792,258.221858804114163 -134.715603728440357,58.215490397610957,258.218794495798647 -134.713313930389972,58.192678983953378,258.209930275566876 -134.706525899357132,58.166916739356623,258.193512765690684 -134.702754479867451,58.161616946975066,258.186527370475233 -134.692313261089453,58.158948238864092,258.170051135122776 -134.685610256509733,58.158966385432279,258.159887666814029 -134.634232472677184,58.162322433067686,258.082765135914087 -134.61171019255957,58.171761704769189,258.050894812680781 -134.611157336193799,58.17359667371457,258.050501213409007 -134.597604112110702,58.183635734871388,258.032387380488217 -134.562041990126005,58.19524624217555,257.981311712414026 -134.544409123324073,58.184452882490859,257.951954803429544 -134.522443428246163,58.175897565333713,257.916557763703167 -134.503539155113629,58.172673055739629,257.887101163156331 -134.482609027082304,58.171326546416971,257.855032823048532 -134.465432216913172,58.17397886079997,257.829647555947304 -134.449456178414692,58.173711217467094,257.805358960293233 -134.416751667834774,58.167675076506548,257.754261017777026 -134.404310330328713,58.163556446110725,257.734359414316714 -134.374242160994413,58.149096445338081,257.685098495334387 -134.330156710107332,58.14401153145549,257.616915587335825 -134.319833819998365,58.145571721085062,257.601651794277132 -134.309280360136597,58.152621786765287,257.587446367368102 -134.262502711981369,58.157844689729977,257.51783499494195 -134.218779002776131,58.162261544779312,257.45266664493829 -134.180264756992216,58.159774447583025,257.393611153587699 -134.169127618637788,58.132693327473852,257.369614856317639 -134.1700523080452,58.128712400761636,257.369970997795463 -134.17714705962112,58.125419322674141,257.379874124191701 -134.195517706664333,58.107820334162817,257.403139312751591 -134.19216180791031,58.083579978972047,257.391649504192173 -134.186774320783798,58.077431242060825,257.381834217347205 -134.172533486576441,58.066981800662568,257.357411325909197 -134.141019905472774,58.047240957236014,257.304210792295635 -134.101438644634072,58.018887494684215,257.236326661892235 -134.094671015696719,58.010916831615496,257.223858186043799 -134.090246303280509,58.001825143923028,257.214645590633154 -134.090356898932839,57.996615265028971,257.213394392281771 -134.104333316238069,57.988856143217006,257.23257474321872 -134.103908955239575,57.984210262775136,257.230662098154426 -134.092358186061119,57.974497746170179,257.210404312238097 -134.071731128678039,57.961224512884719,257.175314279273152 -134.019652649871205,57.93014939139298,257.08726104721427 -134.002726451384632,57.914954123552711,257.057177103124559 -133.999117624725017,57.904311456226338,257.048681592568755 -133.99875396593842,57.895776667820968,257.045728150755167 -133.966564761020578,57.854774351304982,256.984930762089789 -133.937507410638716,57.837773393237661,256.935628052800894 -133.907644046257673,57.807554770098427,256.881219151429832 -133.905464306627692,57.797946048381945,256.875099945813417 -133.906623080257134,57.794967094627204,256.87601188197732 -133.910853845729491,57.791819077871587,256.881580985151231 -133.912658003369984,57.780777303892648,256.881143753416836 -133.899606729728788,57.685675883319099,256.833282649517059 -133.870893045963015,57.660290275802204,256.781625029630959 -133.840181065809389,57.638640319367035,256.727922144345939 -133.835651849951404,57.635887484932262,256.720127903856337 -133.824429692094753,57.634041774365919,256.702306994237006 -133.82041837330209,57.629918961920069,256.694893857464194 -133.811039832171218,57.609759656264032,256.674373372457922 -133.808755852335736,57.583613342500414,256.662928505800664 -133.809885500289511,57.578926432108489,256.663244589231908 -133.814392024159474,57.572521490091468,256.668241880834103 -133.8203517310601,57.568509458128965,256.676207515411079 -133.843590410512434,57.577020744333737,256.714605592191219 -133.862389590474606,57.605479641415783,256.752148526720703 -133.860765466630596,57.617094394227401,256.753135953098536 -133.865867986465844,57.623855118638843,256.763016727752984 -133.914088083493823,57.663714099642419,256.849052609875798 -133.96534316133156,57.690037343897075,256.935563070699573 -133.972848587447459,57.695492048102743,256.948685568757355 -133.997727488062054,57.71996991317183,256.994001627899706 -134.01349453058495,57.759539613832729,257.029594911262393 -134.0159128286667,57.78953983856622,257.041885890066624 -134.033591096004926,57.818791749457986,257.077278505079448 -134.06460499678272,57.829952804044325,257.127903847023845 -134.101401641645765,57.850693502614234,257.190016597509384 -134.12411226417791,57.871378510771471,257.230495411902666 -134.121985390687144,57.873059517019414,257.227709542028606 -134.124680133939364,57.882662228339008,257.234485636465251 -134.128881736105029,57.890401951400158,257.243043702095747 -134.1349232014081,57.89633067760181,257.253908338025212 -134.153904768443681,57.903350094855973,257.284833453595638 -134.1793843051274,57.909865382079481,257.325531222857535 -134.205131076806339,57.906469900209444,257.363928964361548 -134.209651278187948,57.896041050702756,257.367996825836599 -134.165893584475185,57.848811138460775,257.288148758932948 -134.115718491762834,57.809407181025406,257.200387103483081 -134.108177463073815,57.796118665397174,257.185106570832431 -134.102550252394309,57.780406166632652,257.172058565542102 -134.10366698753495,57.776924226148864,257.172787632793188 -134.149108786120166,57.760402632499584,257.237803445197642 -134.13046515418867,57.739361547702849,257.203271527774632 -134.118861250986697,57.727728082243551,257.182166804559529 -134.022927727100324,57.656883892108176,257.014403263106942 -134.016125653835132,57.656048060729645,257.00369917973876 -133.996732109493109,57.649245648833237,256.97188444249332 -133.961210574516969,57.629688898620778,256.911484149284661 -133.938731395785283,57.614566756529555,256.87240662612021 -133.937115436555899,57.60191809977907,256.866159006021917 -133.947908041584242,57.56999464334173,256.873272249475121 -133.946168413958759,57.561708883648642,256.868114340119064 -133.935966109449367,57.544604524048182,256.847254888154566 -133.923306008987169,57.530243151217832,256.823401211760938 -133.903822011220512,57.517374890629256,256.789440884254873 -133.889016069982944,57.505155512464164,256.762872819788754 -133.860111946328601,57.464122148993113,256.705669730901718 -133.930283474540346,57.469726484355867,256.815851179882884 -133.928270503524658,57.456806846023234,256.808805597946048 -133.873064789897143,57.381457905730045,256.700167408213019 -133.869667784381107,57.368029311846982,256.690724856220186 -133.870015352526593,57.362220448123608,256.689453053288162 -133.873393077024673,57.358447468170468,256.693512772209942 -133.965629290376057,57.305584776785423,256.820165178738534 -133.971227188293369,57.304096692232939,256.828394905664027 -133.9862331287882,57.302997393662878,256.851354233920574 -134.011127253997131,57.317680487484843,256.894536774605513 -134.037297042306932,57.327795667350308,256.938258640468121 -134.058352261774502,57.330351146330521,256.971711940132082 -134.097625034390461,57.326557387396171,257.031497988849878 -134.103320695954181,57.321894379696964,257.038920230232179 -134.087106355048547,57.304120174615022,257.008333222940564 -134.08322688379755,57.297835415523807,257.00038752425462 -134.113043392425368,57.250105960087126,257.032097957096994 -134.158115357528601,57.208161033051105,257.089350654743612 -134.19635270446426,57.185036784503929,257.14180519990623 -134.295480313483637,57.137205840216112,257.281717071309686 -134.305441289629385,57.136718636532201,257.297107802703977 -134.352321470120586,57.124793921513962,257.366632509045303 -134.381077797804778,57.115171541597412,257.408602140843868 -134.373514684422759,57.100080087858935,257.392224228940904 -134.388768784931699,57.087548075028025,257.412247999571264 -134.483880865505341,57.046161066133919,257.54840000346303 -134.487001174403019,57.036636241188965,257.550408760085702 -134.500430802996021,57.031349085065429,257.569824662990868 -134.568399327477579,57.023890803173188,257.673940205015242 -134.604120095324475,57.03396477234957,257.732834386639297 -134.637283681126888,57.110013117906632,257.807048266753554 -134.649500253093237,57.226473907487907,257.859703958965838 -134.642897245518185,57.239998710317884,257.853287352249026 -134.607762663730682,57.273146640218123,257.808096290566027 -134.573686232775174,57.294770838182401,257.761308805085719 -134.520012658616309,57.314714505154548,257.683653741143644 -134.546120381622671,57.337560366935854,257.730700939893723 -134.56252930297012,57.336284042177496,257.75580036547035 -134.576849691091667,57.341317605219501,257.779447072185576 -134.578227879934076,57.34383951229303,257.782298713922501 -134.581251099010871,57.400435036298212,257.802908735349774 -134.558280609392824,57.407572358478063,257.769329977221787 -134.530334424981589,57.405476018419826,257.72545818425715 -134.528736866158368,57.397990075523893,257.72087225690484 -134.5304985750534,57.394085298001279,257.722499134019017 -134.530612271882546,57.390019396654317,257.721526807174087 -134.488760933393138,57.372638739210046,257.651730981655419 -134.479978066429084,57.374547882645814,257.638661084696651 -134.466771378161781,57.392330727506625,257.623268027789891 -134.547597371602592,57.458015339637832,257.766897537745535 -134.610305573072708,57.513182610774223,257.879031393676996 -134.601201267914234,57.522535578310723,257.867529011331499 -134.598731147071533,57.534247343416581,257.866913034580648 -134.613929349392208,57.563276297749759,257.898248737677932 -134.668092614791476,57.605838071935786,257.993160211481154 -134.677194281912392,57.614545659969153,258.00949492957443 -134.698189681996894,57.685469467375022,258.060482763685286 -134.703280495257388,57.696100097009811,258.071080709807575 -134.707621917014535,57.701590868422073,258.079180953092873 -134.723114356406739,57.707185393992418,258.104434123262763 -134.73456249918118,57.722053782004032,258.125862142071128 -134.731559146660999,57.756772003455232,258.130185681395233 -134.71179295429053,57.780629856330847,258.105990975163877 -134.708641664262501,57.829059753465984,258.11352195776999 -134.729853387036883,57.877227128405785,258.158138602040708 -134.740252451038401,57.890918571582318,258.177463496103883 -134.748886055131834,57.898657196702239,258.192588063888252 -134.761617384025215,57.980337960245805,258.232192787341774 -134.768075440805404,57.993887495183401,258.245347414165735 -134.77980829823187,58.004803977732664,258.265882324427366 -134.799594530737664,58.058978254085972,258.309072140604258 -134.786564349139269,58.082414982923886,258.294864997267723 -134.787720483072604,58.096915613677581,258.300082957372069 -134.823460008717774,58.141585772880312,258.364923936314881 -134.860020770166614,58.176407148957395,258.428504105657339 -134.867099105646872,58.180607894633432,258.440207644365728 -134.880718197913097,58.181653571226171,258.461096044629812 -134.888657399937188,58.18414933822082,258.473706211894751 -134.902466219177285,58.19443779278523,258.496997093781829 -134.917659852911129,58.215048974093449,258.52471839170903 -134.951135118348617,58.281430680829565,258.59031670447439 -134.972003976755531,58.367654208962243,258.640838664956391 -134.963319857703596,58.403869558012133,258.635623872280121 -134.958720376595863,58.410408507398849,258.630112562328577 -134.900107671750135,58.377003571845485,258.534477407112718 -134.808927181564883,58.321400870168425,258.384447272866964 -134.806641805468701,58.316684030390647,258.379923919215798 -134.805197575525426,58.301187423825851,258.374211593531072 -134.782161989515458,58.281397392195537,258.334862635470927 -134.762859496593563,58.275369957006575,258.3042899556458 -134.732668333465057,58.273631660576555,258.258237740956247 -134.727269914786064,58.26839690154322,258.248855891637504 -134.716789728959128,58.220868948278792,258.221858804114163-131.248583836839202,54.989834494015994,251.48873367253691 -131.259986470284019,54.979289588971447,251.50176436919719 -131.245333276117833,54.929920297823791,251.4507418544963 -131.235563062221189,54.927095583970527,251.433102550916374 -131.220367047326221,54.927704886946394,251.408402939327061 -131.200485599929351,54.921771474450246,251.372397038154304 -131.197758480873659,54.920049580826408,251.366958828642964 -131.197972385222755,54.918531619435363,251.366477832198143 -131.202721889050082,54.910451748929155,251.369866617023945 -131.256229326854879,54.867061856863664,251.434256931766868 -131.268606901075628,54.859651807511753,251.450608774088323 -131.355791179541171,54.859289981598806,251.594292391091585 -131.471659003741195,54.913429996161824,251.814754659309983 -131.494067173781843,54.930668032943061,251.860946812666953 -131.489180430088226,54.950669567121899,251.863613935187459 -131.48524056118174,54.952934585841,251.858337978832424 -131.412303494344769,54.971428599113992,251.748173812404275 -131.268650763494492,54.999084846058025,251.526754721999168 -131.251475600096569,54.99746925406528,251.497633985243738 -131.248583836839202,54.989834494015994,251.48873367253691-131.762489157570826,55.382102674454899,252.534872881136835 -131.718731184357495,55.349829407294145,252.447314088232815 -131.687781816916953,55.333761237723373,252.388706369325519 -131.669327311896609,55.327753158313278,252.355547894723713 -131.64982375225199,55.306401746501194,252.312857824377716 -131.660717006406969,55.292774314213425,252.323702985420823 -131.691230428026245,55.282374957799362,252.368250836618245 -131.697069658902734,55.224002465041544,252.348003000020981 -131.721049204963464,55.200362619864805,252.375145602039993 -131.750910684169895,55.128852998156439,252.387357847765088 -131.80152201823222,55.16261397750673,252.487653916701674 -131.832166022434564,55.192177498340513,252.552921691909432 -131.833299224741921,55.1952523880203,252.556339443661273 -131.830976443364079,55.198743339170505,252.554308467544615 -131.853425431907397,55.274622738834005,252.629370450042188 -131.864749436635861,55.289542082260752,252.655365714803338 -131.873160370054336,55.364808807643428,252.70666978508234 -131.856893020714978,55.421328585145133,252.708185758441687 -131.854926192292538,55.424036551922654,252.706322557292879 -131.83581401740301,55.422269006379118,252.674327737651765 -131.814292428370777,55.414303683483553,252.635329443030059 -131.812316324361461,55.412810766739675,252.631369370035827 -131.809384831611993,55.405431033293574,252.62292536906898 -131.801149426762834,55.399642368350221,252.606627996079624 -131.762489157570826,55.382102674454899,252.534872881136835-157.028566718799539,56.559449308098515,292.352508364245296 -156.993465536308747,56.547632387940418,292.307718279771507 -156.978045304501961,56.540139935459592,292.289393894374371 -156.975392090180236,56.536199113877792,292.287816257216036 -156.988585619740888,56.532442968249242,292.309550772421062 -157.005904516280765,56.535332528723188,292.333426658064127 -157.009018678590706,56.53860336230629,292.336079522036016 -157.020206708163897,56.542774301343989,292.350122226402164 -157.055879640493032,56.550117055916154,292.398423595353961 -157.115687769381282,56.552348784690452,292.485382898710668 -157.123887583879394,56.551653642233177,292.49790354911238 -157.144712599271458,56.54208052859849,292.534399325959384 -157.152801883712414,56.533290645805458,292.55162737518549 -157.171269345837601,56.529900383275702,292.58093118108809 -157.328548320055802,56.524856391645386,292.816065668128431 -157.331387467037246,56.527842239654554,292.818438295274973 -157.328600316672947,56.540061906384253,292.806896071881056 -157.30112708138509,56.559737831041048,292.754422757774591 -157.291194645754672,56.565725839828339,292.73613968398422 -157.252592368255193,56.581829102465996,292.66945786960423 -157.14913223919973,56.583340130104474,292.516044948250055 -157.093643020096067,56.580824323661062,292.435727232135832 -157.07988011620273,56.57872566649899,292.416686327196658 -157.028566718799539,56.559449308098515,292.352508364245296-169.270340801580545,63.343265002410376,301.057520125061274 -169.104708354272816,63.337295134044638,300.887658996507525 -169.090662075809547,63.340210342033778,300.868397919461131 -169.05469941962113,63.342400987843668,300.826534249819815 -169.001991901570904,63.34052404389692,300.772336076013744 -168.940137135365177,63.333065396558744,300.716078800149262 -168.939084865984256,63.329898484718662,300.719400635920465 -168.935374841072388,63.32841658804923,300.717479217797518 -168.798840178597686,63.308060660253524,300.598419478163123 -168.69569578039264,63.301563793239424,300.495766170322895 -168.687901464188627,63.295709069541566,300.495494361035526 -168.689431091331244,63.292304113007823,300.501909222453833 -168.719623650997022,63.25559831819529,300.585931091569364 -168.754283926788275,63.217244475699545,300.677123573608696 -168.785981735236902,63.183413595712899,300.758804384618998 -168.792008123491627,63.178928576619192,300.7716183392331 -168.821083666722615,63.162506371950833,300.82616913318634 -168.861486873952572,63.146239946346938,300.89284082595259 -168.874201388211276,63.145290721911131,300.907998880371451 -168.892418980115622,63.146989333861505,300.925439140759408 -168.952826336075901,63.160174883364725,300.972640926018357 -168.966312499500845,63.166383488693938,300.97858702391386 -168.985759133031053,63.168950058463096,300.996101471595466 -169.045407909199696,63.175788761762917,301.051221895962954 -169.108540144028893,63.178079497635586,301.116442262195051 -169.201126969881074,63.175285779070364,301.220664492808282 -169.264765393887131,63.169209689475352,301.29812232311815 -169.306201570703223,63.163712014196861,301.350724268704653 -169.378388056092774,63.150540917438093,301.447439561598003 -169.399027032075168,63.135888842039691,301.49051624443382 -169.439463601006281,63.112850571803087,301.566903893835843 -169.474662087686454,63.097836227314495,301.626272701658309 -169.516360478965794,63.083987733775992,301.691035309806466 -169.537692840134071,63.073625553723616,301.728823507204652 -169.563837231612297,63.054448476245241,301.784338539466262 -169.578577028776465,63.035720607653282,301.826877532526851 -169.579668121449998,63.02629579490327,301.841432140208781 -169.575479799751065,63.021388983292184,301.843854371458292 -169.570714771093321,62.976151075688215,301.9028006978333 -169.641001929364705,62.936798608932868,302.034857812337577 -169.749427194980541,62.955260131642213,302.126284070312977 -169.759940238069134,62.959355840297363,302.131852559745312 -169.760205563750162,62.962990754417255,302.126969125121832 -169.737631267921927,62.973736945678304,302.087225878611207 -169.737631465692118,62.975885897951564,302.084169568493962 -169.791163890200352,63.04228140731307,302.047474598512053 -169.832611858771429,63.077814833619385,302.041436259634793 -169.841211120954341,63.083603542274119,302.042426026426256 -169.883930751481813,63.105111255232096,302.057645529508591 -169.946757202499384,63.131621476547771,302.087184292264283 -169.990636781672038,63.142235408569981,302.119064997881651 -170.008896340887503,63.143800026880257,302.136418982408941 -170.02390831971195,63.148759632530435,302.145390771329403 -170.05232269670924,63.162635787904819,302.155873871408403 -170.053763032990247,63.16674767040729,302.151488116942346 -170.056103085099608,63.16811659591896,302.152022432535887 -170.104001514438238,63.178557456682249,302.188277733512223 -170.12705417750314,63.182921923046173,302.206656417809427 -170.156771473340456,63.185658298575646,302.234507899731398 -170.177119728972514,63.18471993266408,302.257639413699508 -170.189182981488585,63.180873787848157,302.276114518754184 -170.184682865120664,63.178059934941537,302.275373267941177 -170.196392359488271,63.176689742656997,302.289886524900794 -170.265727276746134,63.178401389412358,302.361559460870922 -170.284083395590727,63.186074873052014,302.370042451657355 -170.288343978027228,63.193823622493809,302.363343796692789 -170.282577400925874,63.196361676290309,302.353498721495271 -170.280611755910456,63.199492645032379,302.346852840855718 -170.280418560803014,63.208072460961915,302.334186247549951 -170.306329504666422,63.237944316793218,302.318412835709751 -170.339975990194006,63.265559076573268,302.314061525277793 -170.367507897943369,63.284846134694192,302.315243290737271 -170.43335843688098,63.313532263041161,302.343327973969281 -170.514804360935386,63.341127121520998,302.389312759973109 -170.561652055365329,63.354233950583478,302.419698109850287 -170.715271912504818,63.385216374517007,302.536479672417045 -170.868109515615458,63.413466877841969,302.655794228427112 -170.926146214292345,63.420095639978136,302.707018258981407 -170.970170022278495,63.422965748089005,302.74903435818851 -171.070354769554712,63.423812842817021,302.852994976565242 -171.103545555060379,63.422653243250963,302.889555232599378 -171.271930378526378,63.384616902944444,303.122991572134197 -171.282865654655183,63.380773781174334,303.1402075458318 -171.289836964818647,63.375872756843037,303.154851767234504 -171.29094475923236,63.37406377537399,303.158720728009939 -171.288090075149796,63.365695010906528,303.168249946087599 -171.293001879760595,63.354614159890517,303.189979964867234 -171.335763593408331,63.334623793621013,303.264761039055884 -171.435987664067227,63.306807523880359,303.411585583351552 -171.467122560376197,63.306143955706077,303.445238465443254 -171.564929839621982,63.333817521238338,303.506118439137936 -171.66978030782218,63.355390091182841,303.583207378163934 -171.741984792056144,63.365336526446164,303.643529335968196 -171.797962767357518,63.40707357277752,303.638633854687214 -171.820925995041023,63.428671674995044,303.629746777936816 -171.827539485500012,63.436360384701707,303.624945491552353 -171.852655094144382,63.484256878517094,303.578204696066678 -171.843059285207289,63.546940705507978,303.472801879048347 -171.836361551687787,63.579290135608026,303.416553420014679 -171.79456679823079,63.619841047923536,303.311509893275797 -171.759769840148863,63.639468279225504,303.245635267347097 -171.746669673990397,63.654121211836966,303.209763416089118 -171.745029733218445,63.664710017050069,303.191920480690897 -171.758246667944974,63.700388011633414,303.151092515327036 -171.757032119550018,63.718174904654198,303.122667954303324 -171.742614403176532,63.716310812209308,303.110664922744036 -171.735903086491305,63.719542496067895,303.098815110512078 -171.730683571187939,63.726005710355842,303.083566858433187 -171.728447127554205,63.733960357746305,303.069112543016672 -171.730685301114846,63.744152147580529,303.055844482034445 -171.740132743084814,63.759564021049094,303.042006026022136 -171.746100782532352,63.782184814555073,303.013538472354412 -171.74088079935882,63.783924981955401,303.005510836839676 -171.702350904051258,63.780942725550418,302.970461699180305 -171.695390809990556,63.781812895586235,302.961974011734128 -171.685199587780346,63.78678471970845,302.943894815631211 -171.676002246770082,63.787282053440556,302.933676224201918 -171.67003613126198,63.784796348631701,302.931337497197092 -171.662577829806224,63.774977524450911,302.938660346902907 -171.6466683406681,63.770006189506539,302.929874224588275 -171.64169568627446,63.758447249362234,302.942391070537269 -171.640949032162212,63.748752592584552,302.956409277394414 -171.644180163761519,63.744775221865588,302.965804321691394 -171.655614149688063,63.73843619309055,302.987254444509745 -171.655365337595725,63.735826088608206,302.990978823043406 -171.651636495480943,63.734086088926233,302.989789135754108 -171.649393077121516,63.728641450916392,302.995778142474592 -171.655328882582239,63.707739782224643,303.033758993260562 -171.652621405391471,63.701756959748252,303.040081878192723 -171.642724876088408,63.69264733832437,303.043743424117565 -171.634891683825487,63.687818587523296,303.043008050881326 -171.612136625284307,63.679050199988204,303.032847091555595 -171.524557604232712,63.658017288620812,302.974225436337292 -171.384377679621224,63.629869518426645,302.871533447876573 -171.205261463270631,63.606124391842471,302.72111046500504 -171.106264112919547,63.588497631725382,302.644399571232498 -171.047193252301469,63.579661933463427,302.595982514321804 -170.953526404065911,63.569359920093746,302.513496969826519 -170.909908047390047,63.571340701339246,302.464916042052209 -170.900292612267435,63.573909828174877,302.451025321148336 -170.861746117858985,63.586737283237603,302.391576876863837 -170.819298326938508,63.605563685416897,302.31912452634424 -170.700881137638248,63.646014069466773,302.135057955048978 -170.60901268339137,63.671969262948394,302.000385385006666 -170.490928912549037,63.695961999674452,301.841217456385493 -170.474918631682812,63.697916262841609,301.821559940464795 -170.465684874329355,63.697261452105636,301.812859147787094 -170.443804015616507,63.691220995033845,301.798873300664127 -170.376610787633723,63.686563370895605,301.735314732417464 -170.362103266714399,63.686562646957299,301.720098562538624 -170.357267871082058,63.691165642236832,301.708234498277307 -170.347596412827698,63.693466777964687,301.69469475466758 -170.318581147983423,63.691165378673873,301.667646819725633 -170.28473059690026,63.68426316831907,301.642282156273723 -170.270222185474353,63.675059638130151,301.640592183917761 -170.260549614954357,63.665855015999099,301.64397069439292 -170.179153323733146,63.624735433529629,301.618701474741101 -170.157494415801864,63.61831898185126,301.605280315503478 -170.142780669101995,63.615943312548893,301.593248132616282 -170.115807508958312,63.615492836469961,301.565462377853692 -170.098574731548212,63.611949240010553,301.552467638626695 -170.07942897917107,63.587237127525768,301.568380827084184 -170.043653951216669,63.522662179608282,301.624754788354039 -170.049845569178046,63.48938677013664,301.679777762852609 -170.029684324720449,63.47995435583681,301.672121784649789 -170.010674439400674,63.474680830974002,301.659619400277734 -169.977590054870603,63.469871564843679,301.631484881043434 -169.909037027916469,63.45677415312943,301.57764327712357 -169.859811138643579,63.441231425500767,301.547779807820916 -169.750369791786142,63.432014714588369,301.444504574872553 -169.659212455777634,63.429189519464103,301.351328348740935 -169.645905680410351,63.4270628197186,301.340182051993906 -169.582630332852943,63.40213256499333,301.30838284175843 -169.569299412228645,63.387988123369915,301.314408891834319 -169.568176147110051,63.384826212661373,301.317739781923592 -169.557111701246612,63.3764216048802,301.317940986715257 -169.549670523907565,63.372055841122922,301.316227124072611 -169.523260716622872,63.365205494264998,301.297744029201567 -169.418068122058941,63.355209726197792,301.199223462492228 -169.386820192395732,63.356000308955579,301.164555358700454 -169.315712130262654,63.352603747363659,301.093018350191414 -169.284164660206955,63.347650459797521,301.066153281368315 -169.270340801580545,63.343265002410376,301.057520125061274-162.617584406916109,63.621228730918226,293.318959398195148 -162.590491458932263,63.624512224417799,293.284227851778269 -162.561200184380226,63.633705646406824,293.240063733421266 -162.544355773236248,63.63512496579505,293.219201540574431 -162.515264913906776,63.629182683653234,293.192991222254932 -162.501141369284369,63.621468270909581,293.18590434268117 -162.454896601513411,63.620670098190033,293.134067736566067 -162.443197033816972,63.621891315554016,293.119289075024426 -162.433272631922449,63.625145456058128,293.104164975695312 -162.428388198066273,63.629350473717686,293.093685037456453 -162.428234379970149,63.631054443187693,293.091521736234426 -162.430665471153048,63.632534363712509,293.092569384723902 -162.427174883862278,63.635615374873019,293.084991760551929 -162.404173289959601,63.633767886474942,293.06089786440134 -162.37721316206796,63.625826600449344,293.039371809922159 -162.344859627259638,63.593464909792786,293.040039321407676 -162.34814214545807,63.551188681948993,293.092879213392735 -162.380949467773775,63.543216163326107,293.139703933149576 -162.419762831443194,63.546791290942458,293.179987204261124 -162.472988459392667,63.546901190548503,293.240769557654858 -162.555657627110975,63.540350616575687,293.342970733530819 -162.564962986184497,63.536504501574498,293.358105408959091 -162.617903965336978,63.539999340922257,293.414543519727886 -162.679535909624576,63.555044771147031,293.46731039788574 -162.683927919895126,63.55625565654276,293.470903180539608 -162.710515372395008,63.577002695387776,293.476865835487843 -162.685586696873685,63.583462080098379,293.440842073410749 -162.647473621820268,63.601995496658766,293.375610605813563 -162.617584406916109,63.621228730918226,293.318959398195148-168.21306627410695,64.998217474348152,297.573891747742891 -168.210852823643933,65.002548438515447,297.565363836474717 -168.172040385396741,65.023324823423025,297.495563115924597 -168.159113372420364,65.028431985079678,297.474939182400703 -168.132061853040341,65.033823420497683,297.439431630074978 -168.079063550239027,65.042548307848207,297.37252117972821 -168.007829388107382,65.038157795924192,297.305780126713216 -167.975219524233637,65.029795593474191,297.284328719601035 -167.956033367600782,65.022741101842669,297.274756428785622 -167.927252008053955,65.001991050710458,297.274950006045401 -167.919401704332131,64.987881464458027,297.28710347879678 -167.916781729189665,64.969206858858897,297.311166423372924 -167.92201155361812,64.96007692311909,297.329631946980953 -167.956041390479356,64.932257762244532,297.404553233645856 -167.979094531793692,64.922135493307607,297.442823986522853 -168.039974066919228,64.908546541768771,297.525072337128222 -168.093819517795851,64.910374445127815,297.577931839041412 -168.139972817309683,64.917692399291028,297.614930534735322 -168.18997499143461,64.934161108988633,297.642643287777901 -168.213055043660631,64.950630350082861,297.642603537999094 -168.216904726161289,64.967102970673139,297.622775574214756 -168.216907536819633,64.983575667567465,297.598986309021711 -168.21306627410695,64.998217474348152,297.573891747742891-168.955773420660933,65.758140350237682,297.202420425601304 -168.950286180647737,65.76304637403139,297.189641957171261 -168.940248910023882,65.766345514964385,297.174780515953898 -168.918528048978146,65.769713884726428,297.148276082240045 -168.905245409688575,65.768895160228993,297.13638127874583 -168.896226811537616,65.743935765947128,297.164848791435361 -168.901761040461395,65.738939742844693,297.177802542224526 -168.906445733818259,65.737684672208857,297.184315614402294 -168.93422583712811,65.738170117187224,297.211062805727124 -168.943765948431889,65.741943864620524,297.214839605614543 -168.954394351639365,65.748548542045711,297.215442811138928 -168.957522154828297,65.756373346159378,297.206798229366541 -168.955773420660933,65.758140350237682,297.202420425601304-166.03503597576244,66.26391851101701,293.565120253711939 -166.034507991804588,66.263910521905743,293.564603752456605 -166.023085870193881,66.252033943165927,293.569834503345191 -166.069559590072544,66.245810094956937,293.625033889897168 -166.100129513339539,66.237111610592365,293.667808890342712 -166.124815832912958,66.214051475372941,293.724882262758911 -166.141545707582793,66.209367209599733,293.748200797475874 -166.156167509463302,66.211566876910624,293.759737801738083 -166.174064697949973,66.217714414615088,293.768993265926838 -166.175226844126655,66.219186367483928,293.76808494515717 -166.181630649403047,66.227293107903563,293.763081828132272 -166.180763516843143,66.234009018527061,293.752765155397356 -166.168570455921781,66.238361197345682,293.734458858147264 -166.155533790103959,66.245650346691193,293.711180875077844 -166.13281333205552,66.252090706842679,293.679427610710263 -166.104943976956577,66.258021180181146,293.643252292647958 -166.069261754993562,66.262999828079742,293.600611469708383 -166.056318326700648,66.264223072430383,293.585961638018489 -166.03503597576244,66.26391851101701,293.565120253711939-134.285946811047751,55.925363949981872,256.859968326054513 -134.268506261308687,55.91756053679493,256.829004664905369 -134.233246423359674,55.905819612617698,256.767856163904071 -134.175738226306805,55.91871048908849,256.679984983988106 -134.154850362492937,55.921107870128104,256.647230844944715 -134.12547317143202,55.918846560227166,256.599064962007105 -134.120695893233517,55.914834772191959,256.589867222122848 -134.128154052665565,55.902287956351067,256.597182558849454 -134.133176748750685,55.89770497456275,256.603558998554945 -134.139279613108442,55.895585902180756,256.612601086497307 -134.148435714192715,55.896905670259429,256.627853334881365 -134.17099544525297,55.892511308473303,256.662573439069092 -134.210882438512471,55.876900884301655,256.721057561226189 -134.233787657650709,55.864938723456859,256.753543755970895 -134.24316693762259,55.854113820735861,256.764642767608166 -134.275784568153341,55.833249698335486,256.80951632373035 -134.285081282891895,55.828858620761437,256.822891731746495 -134.329866858430989,55.836630449711464,256.898085808381438 -134.347047333688607,55.84338789638025,256.92831696011126 -134.350785691934931,55.893005451258347,256.952585296705365 -134.338697969037298,55.926801782374952,256.945460473187268 -134.318416701124363,55.923191315093483,256.911473224870861 -134.285946811047751,55.925363949981872,256.859968326054513-134.124158471105915,56.070035470736777,256.652918173000216 -134.109860968459373,56.048345365164693,256.622008441016078 -134.120772849445984,56.01711197996714,256.628023099154234 -134.129542951677507,56.003782154890601,256.637194141745567 -134.133546719084308,56.000294164146432,256.64234100561589 -134.136820782400093,56.00116107046518,256.647924168966711 -134.159362182804529,56.0212690407661,256.691555079072714 -134.174373509389937,56.040415198935278,256.722683834843338 -134.193506648659763,56.056727346235448,256.759353783912957 -134.226717283669842,56.065409399253966,256.815809518098831 -134.233093504849762,56.0685271780725,256.827170462347567 -134.262561170202389,56.121459112841031,256.893467858433723 -134.264865993911911,56.133405740471829,256.901430412195623 -134.240913490600889,56.141047047574375,256.865792200900614 -134.230592990297481,56.163018676009749,256.857116314582527 -134.260133067797739,56.221592465827911,256.925146922469139 -134.248965263876556,56.267948462119442,256.923608127981424 -134.284046585714378,56.28639721492884,256.986046185716987 -134.298293811388817,56.289406828418358,257.009826105087996 -134.300952006487364,56.292171697357531,257.015027646906674 -134.295017219702999,56.352821205722407,257.026538318023086 -134.240805259783883,56.382983568483674,256.950616021640599 -134.196590062671106,56.410084245806146,256.889625898562372 -134.193163426507311,56.429925941377483,256.891024002805352 -134.199064538350996,56.439977348342161,256.903863275423646 -134.213638964920278,56.450674358113403,256.930693626403809 -134.239649127749232,56.452538749152744,256.972654361277819 -134.249298474341487,56.45731041531532,256.989611312747002 -134.248850921382882,56.463686256363502,256.991072750650346 -134.247339031122948,56.465275246896375,256.989212694577873 -134.22548672805047,56.475577444996553,256.958022776059806 -134.203580850654475,56.46347323617627,256.919101131148636 -134.18914694174839,56.45074765521435,256.891807302832603 -134.18188441267344,56.440482682988439,256.876735058613122 -134.148804502386071,56.411248152677075,256.814031315967441 -134.070132611954648,56.391168020640364,256.681864922866225 -134.048894372081037,56.402456178075894,256.652049756608903 -134.045371746467538,56.407878110202077,256.64835543371737 -134.043606712146016,56.421710781991109,256.650412541814148 -134.092276358667363,56.472760386207248,256.745552578940988 -134.136565488550673,56.488002031038761,256.821121911518276 -134.255064785563519,56.561033557467844,257.033826074562967 -134.283773566111421,56.585726290788472,257.0875404169783 -134.279418021793987,56.620460474730592,257.092182044871151 -134.312554206287302,56.650677970254414,257.15453870408237 -134.371722230859888,56.67818897588019,257.256997686810791 -134.404097646236465,56.725584042652365,257.323386925272644 -134.422489763131892,56.838546718095223,257.388218785636127 -134.421639347874077,56.846685526417524,257.389437747187912 -134.414171010285827,56.855998447642534,257.38061931822449 -134.379676717764369,56.88021656957573,257.334016712382436 -134.341871246679716,56.90199182729058,257.281489762477577 -134.31957174544246,56.909253123144047,257.248770522885025 -134.297065358365074,56.908876619593663,257.213325710035861 -134.289521525198325,56.906696838695524,257.20079527143389 -134.193650170690404,56.861841064093788,257.035885349847376 -134.189762808413036,56.856880275733211,257.028174030594528 -134.174374392990131,56.85138474974724,257.002207992598414 -134.14985994730219,56.859524070237505,256.966317508369684 -134.144634009221022,56.874354802057347,256.962917412631214 -134.153636797750806,56.885124330876778,256.980544214136899 -134.184085386551914,56.892737477097079,257.030813504941761 -134.222705338897754,56.905248320933026,257.095453913323581 -134.275818482239714,56.933985435458887,257.187918351963162 -134.274369632866097,56.936090412893229,257.186310269869864 -134.252032710397287,56.937536859118453,257.151734162122011 -134.226644330068439,56.932716531795052,257.110384905710816 -134.181210932018018,56.914182989303882,257.033187451772392 -134.160811978770624,56.915194404595027,257.001500790938735 -134.138944949132991,56.929007523920937,256.971634375862777 -134.143941914007542,56.942246077204345,256.983724053949118 -134.144091552080738,56.951051848898601,256.986781579442322 -134.129268278504981,56.947546259205033,256.962417473085225 -134.085996076253195,56.931745599271416,256.889464481733739 -134.037842330564899,56.894678589547475,256.801827339455485 -133.974954373560394,56.827105683835526,256.680664186365902 -133.949462325135244,56.799096955725645,256.631176685914397 -133.9283404272756,56.759086444238065,256.584409046918154 -133.947353848085271,56.736607615086662,256.60675189178437 -133.944491633841182,56.73366775295262,256.601241298019886 -133.910484751266836,56.722015788526953,256.543646754696965 -133.883470678819691,56.721572382941709,256.500890051014721 -133.872024567151186,56.734257301679555,256.487187937833369 -133.865673099269458,56.755825881297767,256.484557775780559 -133.867749361465769,56.773415382460321,256.493831872940063 -133.870309994720174,56.782200100621708,256.500855851918459 -133.874944300021184,56.786360893290578,256.509567505680025 -133.880089523360169,56.789366704711028,256.518688923679292 -133.887449496137947,56.788830559589655,256.530093815177679 -133.892699777413668,56.792642347971778,256.539651274681091 -133.896556504709906,56.802700005588463,256.549125857651234 -133.893500891496132,56.808153931166238,256.546161267906427 -133.864167908218661,56.809011542679308,256.500296716578305 -133.840620365884575,56.801963232672861,256.460847151465714 -133.8208885937253,56.791628924876633,256.426264580339193 -133.770473837057949,56.780646610412255,256.343124989420176 -133.750822682959694,56.774096991050619,256.309920271858573 -133.746068209180066,56.762469294315366,256.298407601192594 -133.746693253389736,56.749951048979,256.295051421038806 -133.768832595758653,56.729065036535609,256.322698795236647 -133.768831835959986,56.718421210723427,256.318999311886728 -133.764736364288808,56.696314894651806,256.304837088100612 -133.765466673800347,56.687359404076822,256.302862295880914 -133.762336221927228,56.676093062027682,256.293979545123875 -133.748359208855078,56.67420883631528,256.271249962970614 -133.731162687437859,56.643096494267724,256.23313557356596 -133.730410617695611,56.631028077735024,256.227681715972722 -133.716011916250721,56.59848095917868,256.193360958248377 -133.716011517455343,56.592847743063324,256.191354179754853 -133.725821663799195,56.58414535413727,256.20377881359309 -133.734295853317093,56.572487475928625,256.213038350455463 -133.850886091683009,56.573237944824221,256.397899706847966 -133.898420800782787,56.511398541661357,256.451445586979389 -133.901262303393622,56.490059041390147,256.448414980433881 -133.883752639189595,56.480985656930272,256.417411496862769 -133.87129692592157,56.471102185114411,256.394125998951495 -133.841786352936936,56.435069769692852,256.334370948374271 -133.841907152254407,56.432202842748012,256.333533360622823 -133.861773065737822,56.430532459575723,256.364506104029715 -133.872398183339641,56.431980192838495,256.381910920143127 -133.895708908035886,56.427547808527592,256.417375168763101 -133.9361773365207,56.375612312797948,256.463167322799563 -133.897022271174848,56.361174537256836,256.395646346732974 -133.85297725850009,56.34760384383948,256.320594910532236 -133.841761408977135,56.33565440209523,256.298383048735559 -133.837332491520613,56.322569844922164,256.286555058322847 -133.893595478153145,56.234655981429775,256.344144746661186 -133.91564570572794,56.208540207647282,256.369786554947495 -133.926073954090555,56.211913893500849,256.387695997022092 -133.944858825018287,56.209648551213476,256.416893700137734 -133.956478648504373,56.206849376982227,256.434444785118103 -133.960124372243911,56.202772408120339,256.438781153410673 -133.960228186212703,56.200075478245424,256.437959613278508 -133.939999829319731,56.16631881870299,256.393193296156824 -133.95905700192327,56.09567531403551,256.397562003694475 -133.973873187485651,56.08348432609548,256.416789492592216 -133.992004079805184,56.081537990317749,256.445147207938135 -134.01656539003875,56.085564355232727,256.486032938584685 -134.023673630907126,56.08893511178281,256.498678846284747 -134.041341825288413,56.105996272051691,256.533295692875981 -134.044412552258592,56.116525921863591,256.542086361907423 -134.032291808495302,56.135052681794775,256.52946359757334 -134.027144716069785,56.148352433703565,256.526093392632902 -134.027006556821533,56.160570107677913,256.530341816134751 -134.033616828962664,56.193401083145254,256.552886036224663 -134.057066046426428,56.225039731028801,256.601834275759757 -134.061154215161508,56.227399580036867,256.60921851079911 -134.089972130139586,56.225609009629274,256.65462501347065 -134.097667402649904,56.214936130827475,256.663086087442935 -134.107750082323264,56.181126822942552,256.667025439441204 -134.156314370547904,56.169885083945431,256.740685858763754 -134.164622412346176,56.170337893572636,256.754145016893744 -134.182707848438639,56.161819735224938,256.78003360517323 -134.193021237326093,56.152755758452678,256.793291312642395 -134.168790655920418,56.144749493960227,256.751610139384866 -134.128551276913043,56.139990485060366,256.685444015078247 -134.113404343039946,56.141239776090998,256.661637390032411 -134.111881063537396,56.07892049303895,256.636474638246 -134.124158471105915,56.070035470736777,256.652918173000216-132.549141553766788,56.606771367556242,254.351354838348925 -132.542375801070563,56.593407599213251,254.335250018164515 -132.543959195380609,56.584781787651323,254.334255263209343 -132.613505374810728,56.556460022773173,254.432799332775176 -132.630110147256602,56.552635764442975,254.457533439621329 -132.631186229339221,56.553760712173791,254.459690677933395 -132.653585185305815,56.552334267130952,254.494566705077887 -132.703948721682139,56.529786767855164,254.565235224552453 -132.726861777738378,56.515577643768729,254.595824092626572 -132.799298623990154,56.496676577135538,254.703055615536869 -132.820714567023998,56.495139156562772,254.736393797211349 -132.876954696111852,56.509311578073891,254.831170595251024 -132.987424197192269,56.512841109711587,255.007639706134796 -132.98958007140925,56.510985111662826,255.010331267490983 -133.044399725937865,56.518555735049198,255.100160324946046 -133.074504267689576,56.553681173340607,255.161426161415875 -133.078174055488546,56.578881439953378,255.176921273581684 -133.027770810009258,56.60524584210301,255.107326412573457 -133.113013584925369,56.669921334201923,255.266635356470942 -133.145883597747286,56.683172283938475,255.323501975275576 -133.187050361430551,56.706717789700029,255.397251818329096 -133.21487458075444,56.737012410246962,255.452364357188344 -133.227988949046392,56.755780645211168,255.479955493472517 -133.236023074715803,56.771284074035123,255.498311792500317 -133.237943403946019,56.775827916074135,255.503003769554198 -133.236338673328277,56.779635853091037,255.501875496469438 -133.247382641821815,56.792837276462429,255.524093518033624 -133.266742251748894,56.814731298125416,255.562536663375795 -133.280047414214323,56.816618962546627,255.584146246314049 -133.328085747890896,56.792050554445225,255.650797253474593 -133.337000442970833,56.773588835551649,255.658131021074951 -133.335536599986682,56.761850168559413,255.651560149155557 -133.322549860914421,56.737881064949484,255.622362052090466 -133.30644127093683,56.730067613518536,255.594114677980542 -133.275647478629736,56.733842180711427,255.546966473571956 -133.26953355403441,56.735071280995363,255.537783132866025 -133.268297791140384,56.738426221382852,255.537069589830935 -133.269458058224274,56.742132101076919,255.540260107256472 -133.264071441458356,56.747648075534379,255.533800262957811 -133.253376703622422,56.751620204246407,255.518412708304822 -133.22236846044359,56.707078018779036,255.453083752654493 -133.224203822832493,56.698077211095836,255.452635737136006 -133.235201667069049,56.681527400749403,255.463835374452174 -133.236367391088748,56.649478203515265,255.453730314970016 -133.216911372859556,56.649784614901968,255.423114822246134 -133.154126395669806,56.637866276072764,255.319455848075449 -133.108996932431126,56.618588747127774,255.240834950469434 -133.106043660510949,56.614840907763757,255.234740507788956 -133.092063035575507,56.535672263768404,255.182296776212752 -133.091889220814295,56.524114568413289,255.17756508756429 -133.115581650626723,56.52949291849238,255.217176523059607 -133.140981960330578,56.533120277388349,255.258810925297439 -133.144773663082987,56.52878830861475,255.263157397508621 -133.145156037409976,56.51989453213762,255.260351342149079 -133.141901769800853,56.516191698690371,255.253771815448999 -133.12739941840519,56.511637129490317,255.229033495299518 -133.124917047267985,56.492218689571288,255.217610739171505 -133.151400371068036,56.467555764495636,255.250101250596344 -133.163665898644325,56.460455686510912,255.266826592385769 -133.206253103549358,56.447855100772607,255.32957982365042 -133.351174930609886,56.469762410011484,255.567999331280589 -133.358971102014948,56.471988183993318,255.581212961114943 -133.36428711533631,56.486266695675944,255.59502930380404 -133.374561670525708,56.493882275297288,255.614191271364689 -133.378917812717589,56.495785131778732,255.621815032325685 -133.404469915209177,56.496547562028795,255.662628412246704 -133.420467790241929,56.494339275603643,255.687177462503314 -133.431256763327013,56.479439433741135,255.698724850080907 -133.463304059300867,56.454312403543902,255.740200375206769 -133.515352955427772,56.437206733729646,255.816485043615103 -133.535637833313331,56.434942357090222,255.84786959271878 -133.606338004290365,56.43560281933614,255.960444095544517 -133.641018306928572,56.439069982226364,256.016819857060909 -133.658137574162311,56.442467524591081,256.045262931846082 -133.665763993245292,56.448261208050567,256.059498131275177 -133.674325786789069,56.487842983428258,256.087519465945661 -133.678511261175913,56.52289997410503,256.106861182488501 -133.678372385901923,56.538857559375778,256.112401551567018 -133.674938766708465,56.54433748996712,256.108936653472483 -133.667186081371881,56.550912691043678,256.099024657160044 -133.665308639999182,56.555920024948925,256.097855241037905 -133.665742016143497,56.562255219730538,256.100822869688272 -133.670317544359392,56.576575013730547,256.113214834593236 -133.665311693755342,56.599107961762471,256.113371908664703 -133.670319759332443,56.607870621240366,256.124428926967084 -133.676302318755489,56.611984965273379,256.135360677726567 -133.682035275835972,56.633272482125314,256.15200992487371 -133.691861374413236,56.643916094768215,256.17131975479424 -133.700993270580682,56.64980606807471,256.187836189754307 -133.708505024076544,56.65856868634193,256.20280207041651 -133.712262394788866,56.683605077612668,256.217562043108046 -133.709059502329268,56.697134848970862,256.217263686470687 -133.702510197063305,56.71023507599287,256.21153031848371 -133.699237548554947,56.74462288506119,256.218410242348909 -133.692688570723817,56.761816896436919,256.214092787355185 -133.689109898057325,56.779996063658693,256.214789751917124 -133.68368442418975,56.795386078995712,256.211600411683321 -133.682047956705532,56.810942478878481,256.214424856007099 -133.692694150588977,56.839598702641602,256.241076369769871 -133.702519461843536,56.839598490371436,256.256521790288389 -133.715619116118461,56.828135625772902,256.27316939458251 -133.744275293858891,56.813397411351779,256.313167355954647 -133.76801943106193,56.807665608020912,256.348553997464478 -133.774997814941941,56.809671451709349,256.360221844166517 -133.790180691771468,56.821541818668109,256.388169041834772 -133.798060935696554,56.824761565718198,256.401662332937121 -133.871738586224353,56.84611142560459,256.524746493436396 -133.890126231090477,56.868563452274032,256.561187028884888 -133.919061598564781,56.914617647798956,256.621969388797879 -133.906338506556153,56.92743959539105,256.606260945089161 -133.924158013072486,56.961680336505111,256.645508057437837 -133.969769005775959,56.988211673904921,256.725647978484631 -134.051930116259456,57.029367849024631,256.867542571388185 -134.036693579389947,57.063445314832585,256.854617641307414 -134.011571368598055,57.074742573100522,256.818970629945397 -133.890673883075635,57.097910607294878,256.637600410729647 -133.776179642124731,57.078845235829135,256.452569621615112 -133.705639208776944,57.065377437148769,256.337903469800949 -133.616621528526821,57.058151547503449,256.196379202418029 -133.538969984594672,57.038875715555264,256.068459801375866 -133.448914465276658,57.020302134191624,255.921243412420154 -133.365211380575346,57.007604266564428,255.785878021270037 -133.349030108479923,57.0042987002468,255.759400429204106 -133.34692595293788,57.002014641999843,255.75530560221523 -133.336980962861304,57.002623003321965,255.739957609213889 -133.327767618296463,57.011891968598732,255.728802718222141 -133.311026806714864,57.014943253872829,255.703688974492252 -133.107319722664187,57.005886890300189,255.381799587979913 -133.000133880649372,56.942390811559299,255.190806169062853 -132.984072772359042,56.92757053371453,255.160158081911504 -132.949779623211015,56.871155705218754,255.08535592444241 -132.93862936709391,56.840156734264632,255.056205018423498 -132.937953142689537,56.823135182376092,255.048726509325206 -132.90590468149378,56.803805367018171,254.991023225709796 -132.875205217841568,56.798340169011887,254.940663543529809 -132.855843148240041,56.798006595382596,254.91008416749537 -132.823248782366505,56.793984401376058,254.857279115356505 -132.76565374076165,56.753426679573998,254.750993729569018 -132.74439662189846,56.72447887864265,254.706245084293187 -132.745893872723684,56.713921116833497,254.704480754211545 -132.668558297054943,56.680444642299484,254.569373914040625 -132.630812390408323,56.66903474854174,254.50529710482806 -132.625471368291443,56.668914866694131,254.496822097338736 -132.621940600732273,56.660982678609521,254.488090435042977 -132.628131805607921,56.653415076930607,254.494844865053892 -132.630883161317655,56.64584753613422,254.49616954382509 -132.628131024399494,56.642407829900314,254.490451153367758 -132.619187194044997,56.639656207466849,254.475229287520051 -132.608178527375856,56.623833544802665,254.451505990698934 -132.597858221328977,56.613514484209979,254.431057053618133 -132.57721900890337,56.612826978173288,254.398167951963842 -132.563459229749753,56.608011608243075,254.374482397921383 -132.555891582695352,56.608699721568279,254.362801342271268 -132.549141553766788,56.606771367556242,254.351354838348925-131.572146172223256,55.284378423929468,252.174738709814847 -131.565236142858282,55.284276573096882,252.163399273529649 -131.553501902873251,55.28117990783052,252.142638760618865 -131.519235537729912,55.261911170289189,252.07670995593071 -131.49522420476822,55.258015787181229,252.035451173782349 -131.484836325097092,55.25437721231156,252.016585750505328 -131.484105387597992,55.244715613906614,252.010374132543802 -131.46528288024578,55.223706378298978,251.968658807687461 -131.44787440327147,55.217245927100933,251.936809415929019 -131.433082430733037,55.218444206566737,251.913237659260631 -131.419532327946996,55.217567517720319,251.890612741932273 -131.400270849322368,55.211186103457621,251.85575616452843 -131.358220897113341,55.183216774763885,251.772213236428797 -131.343984732310503,55.165931559592401,251.739761430770159 -131.355231717148598,55.165094345273872,251.757739161141217 -131.364896174828829,55.156168391061712,251.76884681545198 -131.353146422001743,55.06731713642148,251.702317302115262 -131.35888378698229,55.041486743844551,251.697917561978102 -131.381140334306622,55.017583949408113,251.721685490570962 -131.391137043376091,55.012497882291846,251.735394706018269 -131.487563255257555,55.01072789741589,251.893009238876402 -131.501431664644969,55.016411443793174,251.918836435303092 -131.510159287541768,55.025699996680999,251.938116303645074 -131.51101852956063,55.029438872761951,251.941511403769255 -131.534710169660883,55.038217124302591,251.985099167563021 -131.58245102305392,55.017847692953914,252.052821754477918 -131.592631427826461,55.008016756647898,252.064374749548733 -131.608229264882993,55.004674522185852,252.088268090039492 -131.618200462970321,55.007270238116504,252.106038941070437 -131.643604796981748,55.026855146757228,252.15811750665307 -131.648846389349728,55.035848781385191,252.171451802365482 -131.623316183232077,55.049528933400694,252.136665222235024 -131.591960274443693,55.089209402359813,252.105960328131914 -131.607876773696347,55.107704642880861,252.141749433241785 -131.597554487248829,55.125770305840319,252.134240007959306 -131.580349127091409,55.131362356135305,252.108941664919257 -131.561178877113861,55.125777095517726,252.074588413350284 -131.550670031905469,55.143406613935774,252.066570886410773 -131.56825482310407,55.155622107125417,252.101763214915991 -131.59094683969181,55.170228217285889,252.146538717672229 -131.601033492704801,55.17983273452564,252.168042454868555 -131.609966460539539,55.240701841631733,252.214094621129334 -131.591655575764293,55.274215293995475,252.201390552334487 -131.572146172223256,55.284378423929468,252.174738709814847-133.347456505963976,55.569545793923865,255.200846652500331 -133.310013640659264,55.542469343909545,255.128446787595749 -133.294953445213395,55.53995673430142,255.102886985987425 -133.287924139054638,55.535536006926847,255.089561494067311 -133.284523416330131,55.524707380849257,255.079377653077245 -133.292458685414914,55.502091480960033,255.082548876293004 -133.30835079713475,55.484337000294424,255.100760513916612 -133.361594903651024,55.454053715305207,255.174425416626036 -133.37619738031438,55.460877213827665,255.201152261346579 -133.393846159089236,55.472199521719197,255.23475862108171 -133.399114247290726,55.473389376414914,255.243848004378378 -133.429118876521414,55.466921919462052,255.289951823651791 -133.476655018079981,55.437374737131499,255.354794019833207 -133.467900096351258,55.423590310175463,255.334626746363938 -133.428423165387699,55.425732088974115,255.271171190775931 -133.419248927500377,55.422367378389566,255.254764737561345 -133.415123618712073,55.417781594810357,255.246063658036292 -133.414180902936153,55.406904920378274,255.239839634858072 -133.421981567711782,55.386327333302823,255.243687938898802 -133.429963302302212,55.382054284025699,255.254871019162238 -133.448878359189791,55.382396872617562,255.285896058194339 -133.499624532084141,55.368380189684387,255.362718170508742 -133.579401835514489,55.325015720366281,255.47445757035166 -133.598396843649084,55.293987195881805,255.492204937152565 -133.606081422087755,55.271960657698344,255.495306213386357 -133.611661464427698,55.241708399018151,255.491394998505712 -133.615368357033276,55.239959370159553,255.496712816879153 -133.626045558952512,55.242793063112103,255.515430008992553 -133.637098062837339,55.250264616201605,255.536756766028702 -133.692766693477779,55.304627891455866,255.651148893870413 -133.693536974803948,55.308921753378513,255.654234452173114 -133.69175272774649,55.320503463084052,255.656235498376191 -133.674837123388983,55.326983638690415,255.631328549236059 -133.650320306108199,55.345698629804367,255.59920440427959 -133.635602316530822,55.361517495423122,255.581875319592655 -133.62502060353782,55.396691728127543,255.579503868706524 -133.63889172438175,55.428639534173804,255.615610592067242 -133.741680780626865,55.472536115590152,255.801464658230543 -133.751974763604181,55.472030910843948,255.818024703301489 -133.766950574577692,55.468805682898946,255.84108851570636 -133.791657484230711,55.45810459257968,255.876926776953042 -133.761738108342968,55.537581866856776,255.860902923159301 -133.755478555967102,55.544492806938223,255.853554734960198 -133.735638483346975,55.558967825045222,255.827229064889252 -133.618231762234501,55.550989546937615,255.633091297000647 -133.58693397627502,55.539921521892779,255.577603021636605 -133.584612817184222,55.537577636708029,255.572851348668337 -133.592768839398587,55.507451304863935,255.573536309413612 -133.598237468794707,55.501698349452113,255.580029820092022 -133.614276106595071,55.495800173339497,255.603670418262482 -133.627517068721971,55.494888917194849,255.624845187179744 -133.635582883574045,55.491878829912565,255.636719931848347 -133.64680552741504,55.471030175513903,255.646287143230438 -133.647168123801379,55.464895339889601,255.644312057644129 -133.641276224097055,55.459117709717333,255.632293199189007 -133.620969577261832,55.457261111165614,255.598425069823861 -133.576301492040415,55.472299639224019,255.531974923796952 -133.54669274002228,55.492000717217472,255.492053366266191 -133.54492774695936,55.507300326849155,255.495616937056184 -133.531727086364612,55.527916031805596,255.482799499295652 -133.528253172658964,55.529313066729763,255.477735730819404 -133.483571012092654,55.51295547411948,255.398159535601735 -133.4462763346896,55.518857102773502,255.339981309138238 -133.457183265865979,55.532640486169456,255.363554095849395 -133.445268606983205,55.553229165958221,255.352877088822424 -133.438711115723379,55.561089086706822,255.345535786822438 -133.41610870468449,55.570601303188973,255.312825261615217 -133.347456505963976,55.569545793923865,255.200846652500331-133.627581038728465,56.344097879562973,255.960310687310994 -133.596391172038892,56.352384230037714,255.913732488639653 -133.584779173685348,56.352698471197172,255.895360188558698 -133.42103145793979,56.332328527717415,255.626873148605227 -133.3312383322085,56.332995438507403,255.484098288230598 -133.287486850923187,56.327317528180735,255.412210274487734 -133.238014553885449,56.324475665622217,255.332293853163719 -133.199670083607202,56.333217258038808,255.274629923515022 -133.165871930670022,56.317647395043728,255.214684409089386 -133.097632149034666,56.250788629720837,255.079363060183823 -133.080884851486815,56.247008089260696,255.051121459342539 -133.074089261468743,56.238690455742571,255.036939940415323 -133.043629471166867,56.184744543089195,254.966527775861323 -133.054652501756607,56.155794078601225,254.972409819252789 -133.062642187248173,56.150970036158633,254.983233471401036 -133.064822532116352,56.141372245739461,254.982822190970182 -133.064112128059662,56.135514417464485,254.97930237930268 -133.058166425206394,56.125467813380681,254.965691604651511 -132.929944926145339,56.034673991838154,254.72268714569509 -132.900313883761925,56.020382009852575,254.669144044630229 -132.840231028919675,56.024544183235491,254.574452656321228 -132.637922569833933,55.921990269437757,254.20535352639854 -132.621094830974585,55.911700906698783,254.173784043639898 -132.617733592808321,55.908307070156695,254.166890528053045 -132.61738702033233,55.899860305790469,254.162636683322489 -132.594713443489866,55.877378397943339,254.116258377209306 -132.546024212702605,55.846155282842524,254.024008163250983 -132.507424041719815,55.81539594084375,253.948067518882453 -132.473318734865302,55.782393565048167,253.878228526562452 -132.463896099978797,55.683634460503278,253.818282882682979 -132.465145466496267,55.67408869525589,253.815954494290054 -132.451468996263117,55.667572165002639,253.790835863910615 -132.417850902815758,55.667498882869566,253.7363669462502 -132.396879970521383,55.669350278715875,253.703261176124215 -132.385118687342981,55.665572632585587,253.682482175529003 -132.361170519009107,55.648996596542773,253.636059989221394 -132.335009880480783,55.595310626984755,253.568764409050345 -132.331887802119752,55.579176137239045,253.556179052218795 -132.303724873072099,55.551201506676918,253.497373325750232 -132.243525092659581,55.526776460036061,253.388084714300931 -132.200892083138939,55.513289738313112,253.312410946004093 -132.19137375272436,55.508688067620355,253.294751173816621 -132.148662121513098,55.470593027926988,253.207084548659623 -132.145248494724939,55.461214359992859,253.197025852277875 -132.145544296557006,55.458188437491216,253.196052692830563 -132.16735591613272,55.451460160702069,253.22831916064024 -132.181209061497583,55.453075821777304,253.251643012277782 -132.222013450923924,55.472456418435094,253.327311707660556 -132.233352991646569,55.480188963541956,253.349442449398339 -132.234537259456715,55.484204827266431,253.353279572911561 -132.249928894595257,55.493195251596092,253.38258259370923 -132.318376506705079,55.514789200174626,253.504065359011292 -132.328331589669602,55.51563696516974,253.520644517615438 -132.344703926141563,55.504911913723625,253.542217172682285 -132.321170525845019,55.469451395479666,253.487221138551831 -132.29118427051435,55.451609527050906,253.429959234781563 -132.283867778836225,55.44443388150026,253.414635922759771 -132.287040655047207,55.442417870073434,253.418842937797308 -132.305927450004162,55.438512577442658,253.447740904986858 -132.421938352008738,55.432296286781444,253.633748073130846 -132.472634154150199,55.427269350114656,253.713973389938474 -132.482285777998499,55.421159315240459,253.726834302768111 -132.478129579848712,55.418303483000713,253.718722142279148 -132.457571233855589,55.413842043716265,253.683123072609305 -132.393378287722783,55.401982736711425,253.572895740158856 -132.276100116009815,55.419434740653671,253.390069372020662 -132.260652873669443,55.416388153232333,253.363445900380611 -132.228554084366181,55.375166981414267,253.29133278131485 -132.169450141981059,55.363288566172464,253.189183953218162 -132.152454847434228,55.328887886109719,253.144722332246602 -132.128986160597549,55.288670507790783,253.086717934347689 -132.118148662558411,55.281489938436948,253.065478431992233 -132.101118569764537,55.280813318235957,253.037307964637876 -132.105302776670953,55.268428576410756,253.038050036877394 -132.112117280686419,55.260493654411604,253.045283865183592 -132.145326945473983,55.23846556897854,253.08875921741128 -132.166615967001434,55.237870134806712,253.12330498918891 -132.217497633676828,55.245951830088899,253.210531268268824 -132.232548180961203,55.238331725355756,253.231432826258242 -132.216937131611502,55.222814492226824,253.198278320021927 -132.210014834480546,55.218525759450358,253.184839464724064 -132.12995239850386,55.199824980770416,253.044498055242002 -132.106958418946533,55.201154430124078,253.007494170218706 -132.090709735895928,55.206771616098749,252.983671155758202 -132.077678726404201,55.222645445843568,252.970216297544539 -132.075335453875766,55.233973177382538,252.972000061534345 -132.081453900655305,55.240589862115634,252.985290522687137 -132.078509277601768,55.2465307578166,252.983413962647319 -132.064211130555123,55.260306674478642,252.966844200156629 -132.039709039895143,55.275398770915714,252.934250946156681 -132.030750131122005,55.277204910179236,252.920500260777771 -132.006086298661927,55.265509760009799,252.874376577325165 -131.998493873607117,55.259310094427597,252.858878745697439 -131.982400761302273,55.212044760754715,252.808951855637133 -131.979977759507392,55.181207678924302,252.789512529037893 -131.991394793084112,55.165722873308837,252.800437648780644 -132.033996027874196,55.151929360827104,252.863350488245487 -132.041587559783807,55.144328414674874,252.871984487399459 -132.0434514861997,55.127584848004801,252.866628737188876 -132.041555331598602,55.125269953505963,252.862352996133268 -132.019509007215532,55.12123053386297,252.824141108430922 -132.041576884281,55.087222029328231,252.843206225894392 -132.096595994828448,55.039712214464309,252.909619416110218 -132.156631804125993,55.018456550794077,252.99764680210501 -132.170646675595663,55.015833329448675,253.019386997446418 -132.182904708733304,55.015816071005617,253.039550696499646 -132.198785272579954,55.00830594954288,253.061908133327961 -132.200184091747246,55.005417002343819,253.062757098115981 -132.195150087141513,54.989914550788221,253.046659890562296 -132.145831628605436,54.984893735461007,252.962904585525393 -132.138112692607535,54.986236860131946,252.950873387046158 -132.075114493234054,55.017217307938125,252.862886797636747 -132.041788664988445,55.037026448688771,252.818126316182315 -132.030859755395852,55.038933625395401,252.801123019307852 -132.003020484565297,55.035974297566149,252.753836113959551 -131.987162609554019,55.028241185549817,252.723810541443527 -131.98544980306238,54.853335884902606,252.630813864991069 -131.979406521098753,54.849162132169759,252.618656927719712 -131.968462643945429,54.835807746595812,252.593608886934817 -131.959938643716612,54.804548825687654,252.563162795267999 -131.960469822493764,54.79150919022625,252.55720130354166 -132.002143213319613,54.732246024576938,252.59504337515682 -132.021207895370111,54.71038025668603,252.615123320370913 -132.032297367713142,54.70146028198841,252.628809493035078 -132.144827090433608,54.69194319060977,252.810450062155724 -132.167732303225876,54.694318639657531,252.849686884321272 -132.182186086539787,54.706165991420924,252.879835173487663 -132.202117740782342,54.715711294849719,252.917848353274167 -132.258645099822104,54.734882548697747,253.021473567932844 -132.265653099611995,54.734577410002935,253.032930656336248 -132.282149472892257,54.728494799273548,253.057137504220009 -132.283253636174948,54.726449275295337,253.057913701049984 -132.28265499403895,54.716253583912327,253.051663658581674 -132.284354954774642,54.715555568401662,253.05412226356566 -132.310495239820028,54.718978918716608,253.099229312501848 -132.353562621482723,54.818443130903511,253.221376451663673 -132.353187818467376,54.821575048367279,253.222345165908337 -132.343568134699126,54.826979095139656,253.209177096374333 -132.335220087516774,54.826583282532042,253.195171230472624 -132.316705594698504,54.835381418996576,253.169024998322129 -132.311773367224134,54.847795165125298,253.167173518799245 -132.390058770294502,54.913921611598255,253.329784436151385 -132.487143107913909,54.899556975841861,253.482862682081759 -132.560956412014207,54.932865460396556,253.621161884628236 -132.583934321996878,54.946257590662746,253.665645991452038 -132.612354649427175,54.965979424560132,253.722161496058106 -132.615099923889318,54.970175246247415,253.728735459968448 -132.617405578825327,54.980345905989466,253.737496501766145 -132.612470296395912,54.991767683052153,253.734930369071662 -132.601127190859756,54.99055195750725,253.715651520527899 -132.580400391078342,54.994485282787984,253.683427258394659 -132.57757164506117,54.9985682257023,253.680761044844985 -132.544378939371853,55.098013091001313,253.674492033198476 -132.551571973693598,55.113804490097131,253.69394014403224 -132.553080021961932,55.11449543856655,253.696750269271433 -132.564397092098062,55.115145180674801,253.715648904442787 -132.597145560579918,55.105625758346378,253.764850215055048 -132.622487290343344,55.069342255150481,253.789014706388116 -132.627149804721057,55.061600377263026,253.792946550995111 -132.626870471050694,55.056411531155781,253.789982452988625 -132.629261294106186,55.053562561879829,253.792539131827652 -132.63343928068619,55.053194484046386,253.799233632162213 -132.635879415449409,55.055202375167617,253.804216384887695 -132.640441623654453,55.073849747000608,253.820705562829971 -132.6270962161841,55.114665867710869,253.818387949839234 -132.609474932606929,55.141968465361373,253.802542447112501 -132.601255477551717,55.150728390909762,253.793248357251287 -132.593664795284923,55.155941403824869,253.783289870247245 -132.590448805142245,55.156217464078708,253.77814595028758 -132.583714441019453,55.166322320390066,253.77193646132946 -132.60780231022909,55.194309018415815,253.824788928031921 -132.622706706311703,55.199861545774255,253.851856898516417 -132.640508873685036,55.186321551701624,253.874603540636599 -132.632631307433712,55.177862957924624,253.857665322721004 -132.632225087561466,55.174477062391389,253.855387422256172 -132.638338699682038,55.15275954835127,253.855065301991999 -132.666299213745106,55.144177199954427,253.896856722421944 -132.697806888202848,55.137955709670713,253.94561058934778 -132.73822475895247,55.134461953439349,254.010301793925464 -132.71477241807321,55.098981458875507,253.954915013164282 -132.686578938161858,55.04585157014283,253.883113582618535 -132.692239817152512,55.028148956326433,253.883907881565392 -132.695489642953703,55.025307968870138,253.887888627126813 -132.751424916185755,54.996254618546601,253.966013487428427 -132.816315024596548,55.011232817950869,254.080075801350176 -132.86669002546725,55.0250773565092,254.169616958126426 -132.918988733758766,55.044707355388397,254.264988827519119 -132.929347100652507,55.055265167588395,254.287005606107414 -132.934869087192197,55.070440616913096,254.303220666944981 -132.933748338807078,55.074395527611863,254.303233745507896 -132.911931748328612,55.081518785686157,254.270705377683043 -132.883661557286615,55.110616553898637,254.237905324436724 -132.872406416412502,55.124345401107256,254.225858618505299 -132.875988077995089,55.134482036829432,254.236490663141012 -132.896865392965225,55.169612596367372,254.287156853824854 -132.938034106969809,55.210135575010746,254.373444358818233 -132.94243021924143,55.211718437020551,254.381379294209182 -132.984751597022466,55.216118415576815,254.452758907340467 -133.010740993307252,55.205936153467,254.490678979083896 -133.043334831087122,55.233203690065352,254.556559514254332 -133.046525850744672,55.248803180917882,254.568890889175236 -133.10729696823114,55.264032461668315,254.675286320969462 -133.121882192742248,55.251637503060515,254.693565801717341 -133.075964758680215,55.18472737356138,254.587906646542251 -133.01485498416875,55.128294273363956,254.461645943112671 -132.99343678748204,55.07935212325723,254.403703918680549 -132.992970990940364,55.066970487077676,254.39715719781816 -133.013926401514226,55.057089326529045,254.427014778368175 -133.022314875071203,55.048606391982823,254.436856258660555 -133.016752038272045,55.035742878161301,254.421686557121575 -132.962080994118395,55.021287448482632,254.324888492003083 -132.912272662971247,54.923840302741894,254.196507222950459 -132.91721606396635,54.914255474817928,254.200079691596329 -132.892038902534068,54.896866508238993,254.150159450247884 -132.83090299555127,54.868996603707465,254.035692137666047 -132.807088080222115,54.871188042855387,253.997397537343204 -132.805577253579685,54.873974994197532,253.996254537254572 -132.806306746193115,54.897455300825271,254.008847924880683 -132.810517211662813,54.904627005065883,254.019272519275546 -132.81684754264316,54.909604727889047,254.032131532207131 -132.819951458460423,54.923888250677706,254.044150929898024 -132.803351066217829,54.93403130908505,254.021648797206581 -132.73349826693979,54.939732620050087,253.909159348346293 -132.652565840890418,54.904639338598962,253.758481257595122 -132.631175450705655,54.88356939717378,253.71280572284013 -132.628121642200171,54.807758652556402,253.670269309543073 -132.617407701554413,54.777426757792696,253.637434255331755 -132.621580043156797,54.766821977724703,253.639053104445338 -132.641587252879646,54.753507943029597,253.665556315332651 -132.669805957975001,54.763625054482709,253.717356007546186 -132.68372118627164,54.773952132171082,253.745539353229105 -132.703761251373919,54.798700320645047,253.790979132987559 -132.703712045091606,54.811265957378311,253.797101768665016 -132.711826475715043,54.817774597702041,253.813738350756466 -132.726097990397335,54.825381076446433,253.841094443574548 -132.731929121308525,54.827233899826645,253.851651726290584 -132.757434817513229,54.821488528425135,253.891028444282711 -132.762338560929123,54.817250547845795,253.897063229233027 -132.761923008731912,54.808529809447187,253.892094530165195 -132.750009505056028,54.800996279124149,253.868671117350459 -132.724567080804235,54.763513903879215,253.808031913824379 -132.678776794006893,54.68112326899584,253.691016415134072 -132.676874400060655,54.674910490524702,253.684739241376519 -132.678418288435267,54.67307051179305,253.686378812417388 -132.69652009654709,54.669322240363854,253.71455751080066 -132.778283649471916,54.675100350494596,253.853226489387453 -132.86890745701956,54.700639696002611,254.016327973455191 -132.872156591713519,54.702669568271958,254.022720583714545 -132.866637490236684,54.717170261022652,254.020701673813164 -132.868152247421961,54.729160879230768,254.029109487310052 -132.879765838163479,54.754023909827907,254.060556319542229 -132.894109778614222,54.768442187735715,254.091373708099127 -132.912074595600558,54.780766450487533,254.127141502685845 -132.921308788606268,54.783503176233886,254.143768043257296 -132.94304287262716,54.784080701282043,254.180048177018762 -132.95280817801148,54.788582364477257,254.198404677212238 -133.035314575246332,54.855300687110052,254.367027902044356 -133.101613775581683,54.919249437028171,254.506897184997797 -133.126509167800549,54.940306303222677,254.557885119691491 -133.162325432637232,54.95900000731671,254.625717074610293 -133.16735860141597,54.97714837794198,254.642468698322773 -133.159898085731925,55.000603860542796,254.64106831420213 -133.171505063597095,55.031126738088396,254.674318227916956 -133.174934189457133,55.032982612294276,254.680821297690272 -133.200293282442118,55.033641057096219,254.722878117114305 -133.212994747829754,55.040505591411268,254.746947593055665 -133.242273155159182,55.092649477551646,254.818976598791778 -133.226501764098231,55.100220607745229,254.796499242074788 -133.220679420569496,55.101276700778101,254.787410196848214 -133.147532399560617,55.099391289849038,254.666314425878227 -133.137565399698616,55.099709491698135,254.650077830068767 -133.131283512747302,55.101665568755124,254.640651565976441 -133.157360284844998,55.128345255003609,254.695725800469518 -133.189390206774476,55.136606287801982,254.752099723555148 -133.195822972195003,55.134342172375419,254.761633479036391 -133.203633787208673,55.134333007251279,254.774457326158881 -133.210282408224316,55.134453463035996,254.785431442782283 -133.217666794241836,55.137109430893496,254.798765488900244 -133.239492015529635,55.183557942344784,254.855599128641188 -133.190329585343733,55.193871690689036,254.77962198574096 -133.185105113987845,55.202196564843263,254.774817968718708 -133.226377969785858,55.229547913630832,254.854778550565243 -133.257065149073497,55.231379211137913,254.905877874232829 -133.284565292272589,55.217347026555309,254.944669303484261 -133.325606717074265,55.207259443349038,255.007444397546351 -133.343844665489229,55.205930094609187,255.036753971129656 -133.356305694758788,55.221443389462486,255.06407520826906 -133.364148991336748,55.225788099744271,255.078855961561203 -133.379202196436353,55.228515703122667,255.104731844738126 -133.407083385488647,55.21521949000482,255.144548889249563 -133.417843221529012,55.212386342509831,255.160935989581048 -133.425455138183025,55.210886223838457,255.172752751037478 -133.443660235735337,55.211880809642516,255.203037834726274 -133.456363702372244,55.218723345674213,255.226874915882945 -133.474526619473636,55.247752135485584,255.269368093460798 -133.476182143672986,55.25577187267691,255.275585453957319 -133.475455943990539,55.26809753834857,255.279777467250824 -133.462345454837106,55.307003714422947,255.275265896692872 -133.455411303572106,55.320203488326676,255.269661149010062 -133.438943938291288,55.330381550292977,255.247160847298801 -133.39796562069904,55.341977092887106,255.185232860967517 -133.354677907749277,55.347605853146511,255.116960538551211 -133.334954738107257,55.345582328913302,255.083852373063564 -133.316084800418651,55.331783118610872,255.046965625137091 -133.313122056983616,55.320483500359074,255.037154350429773 -133.313706865197446,55.317527571398436,255.036809423938394 -133.294993138977276,55.291604700929796,254.994764034636319 -133.271589806619971,55.287199321990734,254.954523212276399 -133.246934077141617,55.292093706678855,254.916358974762261 -133.237720860391107,55.304390554755429,254.906751783564687 -133.236164161172809,55.309050456217776,254.90627496317029 -133.257231853957222,55.319033727393659,254.945144793018699 -133.281864845932859,55.333490796792418,254.991791476495564 -133.283295389152357,55.341762533241138,254.997771875932813 -133.281037884691358,55.349410365676995,254.997448530048132 -133.2716635307346,55.359567278693895,254.98660303093493 -133.260330011467147,55.367252303077422,254.971474396064878 -133.229440921259481,55.382076542235652,254.927569621242583 -133.211391041683669,55.384463858497227,254.899161769077182 -133.185876672999882,55.379619536415134,254.855380512773991 -133.124111851138451,55.414763862394807,254.770162182860076 -133.106903627758953,55.427134881591165,254.747582715004683 -133.140730767005635,55.458599282885729,254.816587266512215 -133.160308404492326,55.498006766907181,254.865729295648634 -133.13589766620953,55.502733154303037,254.828074440360069 -133.135014395397718,55.513803864765158,254.831477453000844 -133.159174753655407,55.563811960571535,254.892508629709482 -133.179370328880054,55.586943889040221,254.935305287130177 -133.265651312386382,55.569013549975203,255.067724490538239 -133.278582093384671,55.580407958341503,255.093603720888495 -133.296768692326964,55.588899335505303,255.12676028162241 -133.389512906564903,55.619562510177921,255.290279412642121 -133.440794633208498,55.644076738656587,255.383732354268432 -133.44154772151856,55.645381686483653,255.385497939772904 -133.411048182470296,55.668139706925359,255.345550284720957 -133.402500980343547,55.665347966234641,255.330533216707408 -133.397102086876345,55.66709603298164,255.322513865306973 -133.389049839942771,55.69357947341549,255.320519590750337 -133.419169993066873,55.739859556219109,255.388470141217113 -133.441240618220263,55.748577845624055,255.427762507461011 -133.494052768372399,55.764292286844061,255.51960260886699 -133.515254257026299,55.756108059514688,255.55054006818682 -133.512325466177799,55.744393444334236,255.541017708368599 -133.499129710514296,55.73346902660434,255.515197331085801 -133.496707699482357,55.733369081017365,255.511237638071179 -133.493502252900129,55.726787330691984,255.50334994122386 -133.4918723467012,55.71329273741781,255.495165471918881 -133.495056913862868,55.706736850336341,255.497623164206743 -133.53000521264272,55.69531942033457,255.549520450644195 -133.557122477080611,55.698564752536882,255.594768351875246 -133.585915993821402,55.705547945734445,255.644248786382377 -133.627740041101845,55.720135651098076,255.717891144566238 -133.645944681651116,55.729245011461153,255.751042104326189 -133.697170225544966,55.780804498146871,255.854599158279598 -133.698373396800179,55.783323403182521,255.857549197971821 -133.649004026965883,55.823618350640444,255.793885842896998 -133.630161549123528,55.831835527791938,255.766750521026552 -133.564600700579945,55.835749820703555,255.662510019727051 -133.552655453064204,55.832388167837252,255.641880174167454 -133.450499547391615,55.791948456956227,255.460522129200399 -133.424688303793573,55.789032087825468,255.417629159986973 -133.350540181407752,55.804155256011207,255.304084294475615 -133.344683292738551,55.805976331171671,255.295377702452242 -133.326290123636284,55.818844371723713,255.270991506054997 -133.337768348559791,55.866328829968005,255.309031886048615 -133.3491990253182,55.876019321637656,255.331423847936094 -133.382102419612494,55.880925484997221,255.386458124034107 -133.393656308524555,55.878960291715117,255.404280581511557 -133.421427666505025,55.88348657500449,255.450877810828388 -133.473679106513458,55.94758671423925,255.560820502229035 -133.497691894033608,56.017292311729143,255.627123529091477 -133.54367826699476,55.977525404694184,255.685310961678624 -133.640755607778033,55.921184860197968,255.819279921241105 -133.702533115358875,55.91240777879851,255.915323958732188 -133.8025651657465,55.925548281758125,256.081547566689551 -133.828871794691452,55.948948081332013,256.132930033840239 -133.837006814825145,55.963775503577168,256.151718163862824 -133.81540749965805,55.97433267842932,256.121028740890324 -133.800729542277566,55.975293966310012,256.097792390733957 -133.78048404006077,55.983074187999918,256.068230983801186 -133.751442810324761,56.009734085834083,256.031816572882235 -133.696408890232419,56.07075961305874,255.96692300774157 -133.686853213010778,56.075704684254163,255.953494444489479 -133.661885740695197,56.084015994842154,255.916647891514003 -133.551450601658786,56.143038773536681,255.762452136725187 -133.545479826301204,56.160992420122902,255.759823517873883 -133.556104411127336,56.169212972123439,255.779989544302225 -133.604152073964713,56.19212132862544,255.865615616552532 -133.641934280411505,56.199008000757502,255.928645382635295 -133.66687839114195,56.310695821422193,256.010478315874934 -133.659076518836088,56.327100553492521,256.004154336638749 -133.652577499721446,56.326983696185678,255.993755098432302 -133.64584332600478,56.324650902718425,255.982154940254986 -133.627320576999352,56.337261467690965,255.95734690874815 -133.62778370897982,56.340039001890794,255.959120499901474 -133.627581038728465,56.344097879562973,255.960310687310994-133.848760831741032,55.904820860008144,256.147939584217966 -133.843465018211873,55.892925298375467,256.13480422180146 -133.842929614338857,55.886969472711954,256.131633870303631 -133.850195464194172,55.869798787426447,256.136688215658069 -133.863668082653533,55.849044068414166,256.150358233600855 -133.869616891928331,55.846086022472832,256.158807409927249 -133.897334916565995,55.845840437077406,256.203439985401928 -133.90581276170974,55.84829985514115,256.21807268448174 -133.922879943378518,55.860493489346013,256.250319103710353 -133.931955581092325,55.869736042030077,256.268517962656915 -133.94825140926983,55.896412963155122,256.305027292110026 -133.946132505636996,55.912642564569389,256.307818041183054 -133.942931844023661,55.917702494710362,256.304594463668764 -133.93765005222005,55.920885520676414,256.297302545048296 -133.894486073975202,55.936877007130448,256.233911229297519 -133.879129119233852,55.937880308180937,256.209572716616094 -133.866734005849935,55.936483611348336,256.189082234166563 -133.856925671779294,55.931778949421194,256.17148288525641 -133.849396310220783,55.911868653883829,256.151685205288231 -133.848760831741032,55.904820860008144,256.147939584217966-135.590739127986836,57.897429836681319,259.478806622326374 -135.599546780206197,57.889814806237652,259.490643589757383 -135.591947525177943,57.886519052380137,259.478322636336088 -135.578495302910227,57.883658415969187,259.457143858075142 -135.521657278985231,57.857495293951516,259.36455228086561 -135.506272005487006,57.840973031881177,259.33739014621824 -135.47225050703463,57.834579931000199,259.283899567089975 -135.380529007740932,57.802328720379336,259.136188014410436 -135.379214227768529,57.792155996969512,259.1318628070876 -135.366989946012723,57.77546467106562,259.109315759502351 -135.331653875810304,57.748539100310118,259.04891493730247 -135.294326026201219,57.737588183050754,258.989077548496425 -135.204226279730591,57.728293377370704,258.848563328385353 -135.154241028803341,57.738419221288353,258.774242963641882 -135.101189269461827,57.755021974673411,258.696817271411419 -135.066738940968264,57.750971825660891,258.642979901283979 -135.027603318133487,57.74311587166823,258.581009719520807 -135.015343548595666,57.746231063425746,258.562957727350295 -134.980887827626987,57.76325140138259,258.514270305633545 -134.94269183987214,57.763739223654767,258.455803849734366 -134.932493495950069,57.759330553597223,258.439068953506649 -134.924370204991988,57.742504140518953,258.422424092888832 -134.917553412807109,57.705950180666854,258.402816824615002 -134.920928622983098,57.682401682454262,258.402080303058028 -134.870190121927124,57.623571230656054,258.309046148322523 -134.859141261651729,57.599100072749252,258.285719392821193 -134.82763878322271,57.500203198954331,258.21123889926821 -134.839866492992684,57.482897361386918,258.225551227107644 -134.877091143731377,57.464542006391319,258.278245804831386 -134.905424784796509,57.459484515278085,258.320732097141445 -135.027892486599228,57.454447974928428,258.508855583146214 -135.087083296287233,57.464802428935464,258.603069512173533 -135.093961426025743,57.466483237398293,258.614135606214404 -135.099563696249959,57.470047026799271,258.623707159422338 -135.136810799477814,57.497810525872836,258.688310750760138 -135.245606507812454,57.546427950279806,258.868376432918012 -135.328602868605202,57.577301377362488,259.003876992501318 -135.395254607614731,57.60003036246308,259.112016988918185 -135.477461011334555,57.631499792771805,259.245977371931076 -135.517560458005732,57.650466450312486,259.31205109320581 -135.574367293625841,57.674512618485224,259.404880638234317 -135.596207490835042,57.663910403195651,259.436090433038771 -135.653460640158414,57.652634432336434,259.521653100848198 -135.687712540288771,57.677621068751577,259.579861450940371 -135.71507817169055,57.672760591484739,259.620876693166792 -135.707204086175921,57.658474115784372,259.605632012709975 -135.700181429360725,57.64982448256216,259.592922294512391 -135.663659871875751,57.629310786088489,259.532156756147742 -135.595533842372987,57.602590932700515,259.421210093423724 -135.573942058478167,57.605484331836848,259.388601321727037 -135.54889969499925,57.613943668599703,259.351955198682845 -135.529059128719098,57.606506285130614,259.319686067290604 -135.51376733304852,57.596024877848329,259.293708205223083 -135.522225783415792,57.588733873958383,259.305060268379748 -135.530364814185191,57.58912168693324,259.317695118486881 -135.560566399346214,57.583567166199245,259.36297220364213 -135.573328111381272,57.579730983118615,259.381766556762159 -135.59022829930052,57.568946882255368,259.405355109833181 -135.591229035945702,57.55219927628545,259.403055758215487 -135.578473834262041,57.522993280490333,259.376625794917345 -135.580581104923823,57.520648843952323,259.379336417652667 -135.58096435088936,57.516564386311416,259.378981028683484 -135.568019880135267,57.510328823571527,259.357537899166346 -135.552373759933431,57.482136867266227,259.32676650211215 -135.553055869159067,57.470262148910315,259.32502868399024 -135.556647725079671,57.454991452379325,259.326984573155642 -135.560509508120617,57.452087440950187,259.332273811101913 -135.613198042191783,57.442352664169832,259.411514320410788 -135.616319811641176,57.438294001298694,259.415394958108664 -135.614528591789423,57.431274687323402,259.41097614262253 -135.615624108380757,57.425027718285996,259.411205068230629 -135.624467067635379,57.419365868730942,259.423567725345492 -135.629299374395714,57.410081996564195,259.428869996219873 -135.649920090110356,57.406252644094756,259.459913178347051 -135.667189863911176,57.40734949972402,259.486922463402152 -135.670725929143288,57.40524457916154,259.491908450610936 -135.672577894805727,57.400698084480851,259.493715148419142 -135.673007351249538,57.396335391032608,259.49336030613631 -135.670893402679894,57.392952302223328,259.489292574115098 -135.672156076841759,57.389416139830338,259.490420985966921 -135.693782405031186,57.383638258492866,259.522588713094592 -135.695138790003114,57.375387436684505,259.522761807776988 -135.714138867720948,57.36787980198455,259.55046755168587 -135.723216671137919,57.373782866463308,259.565920802764595 -135.770757399189279,57.383553586423581,259.641886448487639 -135.846549951169379,57.391012750009203,259.761064705438912 -135.894872226098073,57.408163266985582,259.839801623485982 -135.903557981973279,57.41829582305499,259.8555196095258 -135.899722668148087,57.440833340060223,259.85460039973259 -135.946511013508285,57.4588928683266,259.93098152987659 -135.969732057237394,57.472871012196116,259.969949224032462 -136.017277560086654,57.506337138553668,260.050658381544054 -136.033207707913704,57.521649408545152,260.07852965965867 -136.024033463688397,57.531660358185853,260.066492543555796 -136.004468443572904,57.544608461126977,260.039046472869813 -136.064502019081232,57.592174967330564,260.14163551107049 -136.109552859424412,57.616672375847124,260.216099940240383 -136.133368460694157,57.624711656742463,260.254416820593178 -136.190654525355939,57.625833379627601,260.342853025533259 -136.210634455707378,57.63820963635083,260.376089810393751 -136.283573451153188,57.717478080590865,260.503774227574468 -136.317398589352507,57.758800321948591,260.563581115566194 -136.307452538368011,57.771148234878886,260.550659690052271 -136.312198179901941,57.779561924044707,260.559523972682655 -136.367824915523414,57.8286555019057,260.653885290957987 -136.373478083377876,57.831762292595542,260.663110570050776 -136.375150220795064,57.832681243012686,260.66583891864866 -136.393930215601614,57.832746830958747,260.694602092728019 -136.461603809328267,57.853992830544293,260.80200800858438 -136.477200165531627,57.8717390546419,260.829018319025636 -136.48703707163159,57.896550232303703,260.848426718264818 -136.536980387838497,57.914026712747585,260.927769829519093 -136.560430232509646,57.912223243890452,260.96327877510339 -136.574824711571665,57.918556774235974,260.986347689293325 -136.576068357810442,57.926931542446361,260.989673406817019 -136.566011758581396,58.035137130419557,260.992495411075652 -136.562789966571899,58.063442515874286,260.992258662357926 -136.5590390352192,58.077103267918332,260.988794664852321 -136.541501333315551,58.093566254853144,260.964830572716892 -136.502913242974643,58.104871828059608,260.908050938509405 -136.478604985379206,58.101379445005115,260.87053897883743 -136.472065643430625,58.096953694977927,260.859865952283144 -136.423245411435943,58.131942923230014,260.791545584797859 -136.3781404749964,58.20879907152537,260.735910307615995 -136.389919915599506,58.252497770950171,260.76091362349689 -136.380136178847522,58.268411607106216,260.74870162922889 -136.314403376035756,58.270473001479239,260.649627724662423 -136.290572149102616,58.267458596392871,260.613085880875587 -136.289069546443443,58.259826810764658,260.609541906043887 -136.292647702909562,58.249171985604349,260.613177072256804 -136.286689701240647,58.223771721257343,260.599895381368697 -136.280279535601835,58.208943215552587,260.58768008556217 -136.238044274097149,58.154505443271574,260.514301582239568 -136.19295383293138,58.161391267421827,260.447095073759556 -136.193181081927236,58.164563186568166,260.447995976544917 -136.197356656723969,58.171900919528738,260.455613288097084 -136.202297676384205,58.172175804571886,260.463154605589807 -136.206441857827002,58.174505657972333,260.469845520332456 -136.202654366721418,58.180960586812439,260.465226771309972 -136.164911360913123,58.218813512099182,260.414619731716812 -136.141810816037321,58.224482884128342,260.380623498000205 -136.038963438400145,58.219302264668613,260.223949803039432 -136.035832356017295,58.205554660526893,260.216736321337521 -135.979188098739087,58.202122985207481,260.130284979939461 -135.968921837759666,58.21147998787967,260.116439613513649 -135.916983424911166,58.244167351657801,260.043776020407677 -135.826370510924875,58.283070420549947,259.913880734704435 -135.803941887791524,58.287811801172523,259.880855045281351 -135.786188808921679,58.28680521485834,259.853830230422318 -135.767179192687905,58.2663731150164,259.821246590465307 -135.737905133911823,58.240311374333928,259.77200033236295 -135.715202477042226,58.231991069739664,259.736035205423832 -135.633324766016727,58.223034079070231,259.6103111859411 -135.59200103203824,58.213779205237032,259.545893265865743 -135.525446835897839,58.186013323863492,259.439464311115444 -135.507470968076433,58.175018979122576,259.409972689114511 -135.500710492763886,58.168987270627937,259.398487498983741 -135.527463722740322,58.120855829041886,259.429218806326389 -135.543506238629845,58.101855930592649,259.449680585414171 -135.589612676007448,58.081775399891463,259.515639365650713 -135.654157158584297,58.036589068647018,259.604596519842744 -135.641275893676863,57.994614360149392,259.576351316645741 -135.624367124877011,57.984729968457174,259.548527154140174 -135.596072510873768,57.989743467148365,259.50643752142787 -135.584539125295805,57.997675528723128,259.490515535697341 -135.567094478062756,58.015114491364407,259.467579633928835 -135.570605132895139,58.023527212380841,259.474681883119047 -135.568232510392818,58.041226839554277,259.47475095372647 -135.566223694793592,58.043597826697955,259.472185574471951 -135.547320047317868,58.060986824161148,259.447030074894428 -135.499532015999961,58.086319265467985,259.379624886438251 -135.454240772636524,58.134455110648766,259.320845263078809 -135.422904537233592,58.14430956343876,259.275333422236145 -135.414574634656788,58.145580715898866,259.262956775724888 -135.40031552727072,58.144263059915588,259.241038990207016 -135.278590795443222,58.097135849892624,259.046098379418254 -135.263744812924983,58.097435168163315,259.023601546883583 -135.111689034213782,58.088385716201486,258.790487495251 -135.087624443042444,58.080985419690542,258.752234438434243 -135.085772963250747,58.074853606246243,258.748030731454492 -135.073490903426148,58.061359196833621,258.726284673437476 -134.979972966042197,58.050062514814584,258.581404115073383 -134.970512779285826,58.047744777283427,258.566469472832978 -134.953632940041246,58.037113400475114,258.538297321647406 -134.937792734515398,58.021760113702847,258.510576814413071 -134.915638429739118,57.979409611118349,258.466788868419826 -134.923885028624198,57.935421485392013,258.468850333243608 -134.929174998070181,57.922042691146061,258.47371363081038 -135.007729149130483,57.88446087815813,258.584732588380575 -135.14345444953446,57.926232902587763,258.801915377378464 -135.176491946810188,57.919517341636933,258.850819889456034 -135.16799856261747,57.901642958532811,258.833723194897175 -135.149494792350225,57.891775601421571,258.803157459013164 -135.134734290339566,57.885361079127556,258.779100755229592 -135.068496038261571,57.86957290893416,258.674106706865132 -134.994592378058371,57.835560347107638,258.552888819947839 -134.957318845434799,57.815910637576813,258.491042104549706 -134.952207016983664,57.805153010052713,258.480580977164209 -135.026139187634357,57.780661989628584,258.587916348129511 -135.201728863311303,57.775213286911253,258.855840539559722 -135.227927080793563,57.777903649130238,258.896644483320415 -135.31654725712616,57.805857032447491,259.038958409801126 -135.346763472299187,57.821560990164443,259.088830415159464 -135.392668756702477,57.851106269001768,259.165773008018732 -135.421292496707053,57.860620412327222,259.211691761389375 -135.516928433531518,57.885482718124884,259.363412198610604 -135.555580777531787,57.902821452576156,259.426232562400401 -135.584104808209162,57.90316582031928,259.469892452470958 -135.590739127986836,57.897429836681319,259.478806622326374-134.669239221561924,56.170120924203474,257.561756727285683 -134.670802736651666,56.167200121516977,257.563271542079747 -134.676679734743772,56.167098998191712,257.572645702399313 -134.707659367222675,56.175895095602279,257.625201212242246 -134.808819578788274,56.235702308868092,257.806883270852268 -134.827561653231243,56.279859716825911,257.851276372559369 -134.842072727886404,56.309569606539164,257.884080960415304 -134.918576343918261,56.360718590553006,258.022434008307755 -134.948371399331108,56.389872169726218,258.079103998839855 -134.993435211100262,56.458157378139013,258.17210110090673 -135.026455181820381,56.500134550888184,258.237462306395173 -135.056726149367563,56.527814164287072,258.293925398029387 -135.060915278280817,56.529609026450046,258.301113510504365 -135.06355616256306,56.54212063791185,258.309089618735015 -135.059436184187604,56.570765968436021,258.311204993166029 -135.047735081859315,56.583546882808861,258.296519218944013 -135.029421866707281,56.594779980937631,258.270903956145048 -135.007931394406597,56.602407242986388,258.239183563739061 -135.000351037032971,56.597427537769519,258.225680706091225 -134.98856292872307,56.595999829560569,258.20658743288368 -134.969846425950863,56.603182043633112,258.179136636666954 -134.972525304280737,56.615547659982518,258.18712096568197 -134.982070181746963,56.627831130681642,258.20593025162816 -135.0010533594984,56.630171659684635,258.236660661175847 -135.032431299983557,56.629072011947315,258.285961214452982 -135.03911564458204,56.619782112533748,258.293754167854786 -135.068375825855128,56.608005792126278,258.336531528271735 -135.094293288105604,56.600221438785255,258.375229665078223 -135.105953142495366,56.598080243950179,258.393049198202789 -135.121391136268755,56.597880916394111,258.417429066263139 -135.126071499615449,56.602975680947807,258.426350577734411 -135.151521783266702,56.649065916874434,258.480205393396318 -135.150446997209912,56.652082860635765,258.479390895925462 -135.178513856300611,56.678025572706588,258.531316401436925 -135.226830588520187,56.688006267746204,258.610521532595158 -135.277599590710224,56.701779810153838,258.694635991938412 -135.30776836824441,56.726527509308305,258.749277980998158 -135.320121582526809,56.743455798772459,258.773538280278444 -135.32077496734604,56.748832643798863,258.776080690324306 -135.299123504003376,56.756438912240782,258.744084533303976 -135.284301658486442,56.758673173891523,258.721349008381367 -135.283569362034427,56.768501932603691,258.722965223714709 -135.312854070203116,56.778237045475493,258.771843777038157 -135.354870589899235,56.771339318198699,258.836122973822057 -135.401373177278685,56.779343104235494,258.911615592427552 -135.415686396721554,56.810219988037403,258.94264978915453 -135.411240540649572,56.826154668334858,258.94001321028918 -135.371602326351507,56.892728793492729,258.895837551914155 -135.349947853459156,56.900120070174566,258.863837184384465 -135.335060858393831,56.914091030131431,258.844264827668667 -135.35679649712074,56.936638976074953,258.884488492272794 -135.382432703235622,56.953176993550564,258.929150674492121 -135.386085772664273,56.981681178401317,258.94249823037535 -135.362943269207022,57.00236814630469,258.911757895722985 -135.345512237723739,57.002011533004193,258.88436337094754 -135.33220342484023,57.004644753442918,258.864224974997342 -135.327927886031119,57.011003682376398,258.859231724403799 -135.315494367186034,57.045121074884243,258.848880868405104 -135.33671258285537,57.050539904471712,258.883510851301253 -135.35194306573726,57.041671043745801,258.904984426684678 -135.376814435619565,57.045526387576736,258.944912351667881 -135.380478168454886,57.053045280107035,258.952624281868339 -135.372573771751235,57.058058099398906,258.941582449711859 -135.368425922770257,57.066197387068975,258.937239152379334 -135.381054063484953,57.08175671452301,258.961061802692711 -135.38733451156611,57.087859422049938,258.972471890971065 -135.39157660793947,57.089160296770771,258.979439849965274 -135.4044393159663,57.098787771413235,259.00204258505255 -135.40685901905988,57.109451849970284,259.008590612560511 -135.40801261368108,57.11464117282285,259.011736887507141 -135.408877899220272,57.11983049638544,259.014431214891374 -135.408014346991791,57.138281526575362,259.01784897223115 -135.412424998610618,57.148993315318286,259.027488535270095 -135.425469387952603,57.167855551423457,259.052668078802526 -135.402036652669835,57.185134619954091,259.020559544675052 -135.375166606507889,57.198194871016852,258.98203550465405 -135.380306215114416,57.206433550130498,258.992150218226016 -135.374748814004676,57.228134119989754,258.989035444334149 -135.364498751507853,57.233722095673087,258.974505548365414 -135.361444046898896,57.243906710856926,258.972346746362746 -135.368906352085645,57.24898271849996,258.98524778150022 -135.408815572544142,57.251807780221341,259.048048748634756 -135.417528548726892,57.251453599964776,259.061513653956354 -135.431958248635084,57.247342390751506,259.082927728071809 -135.451802319362599,57.2482329372273,259.114024591632187 -135.472918889564653,57.255880284826581,259.148785235360265 -135.480412970460151,57.256952094905358,259.160708806477487 -135.50585075270314,57.253936618840555,259.199527519755065 -135.513970256633399,57.247204613189915,259.21048941463232 -135.555302238114507,57.233321067995391,259.271371508948505 -135.564611880102944,57.241994645621538,259.287997738458216 -135.564582042562449,57.244193590458245,259.288492372259498 -135.571683865402491,57.255312154144107,259.302271360531449 -135.605029128528258,57.285831656480816,259.361555843614042 -135.606893479224425,57.290561496254568,259.365598289296031 -135.603420977760095,57.294198546489035,259.361082131974399 -135.604515042633665,57.300896462984554,259.364400976337492 -135.634149049014837,57.311691369564898,259.413030400872231 -135.640157324737515,57.315399145274426,259.423249591141939 -135.640943696171831,57.320401001798352,259.425667005591094 -135.677422922152346,57.336868792994395,259.486214363016188 -135.687333932631532,57.350449234859063,259.504800814203918 -135.698300632805456,57.357580600921423,259.523491012863815 -135.697857881994224,57.363197684621873,259.524122360162437 -135.690434209421738,57.36759773518596,259.513641516678035 -135.662352687041135,57.374028183931635,259.471609318628907 -135.642294992553929,57.372004656922478,259.440031857229769 -135.633366270503927,57.379716318228006,259.428012114949524 -135.63075506505794,57.383514810594299,259.424862320534885 -135.629761750669587,57.388328532998379,259.424460062757134 -135.636313199161776,57.394332239579185,259.436029402539134 -135.636394564185736,57.399223114911379,259.437307213433087 -135.628747599045113,57.399699269298985,259.425571097992361 -135.606925369995679,57.410053484053599,259.394206901080906 -135.588136881743168,57.416932720239565,259.366732736118138 -135.573613928266781,57.417581019970044,259.344395292922854 -135.557290611944666,57.426758145112217,259.32129683252424 -135.558064367714678,57.436859875249503,259.324889819137752 -135.560549480181891,57.438357783662191,259.329090885818005 -135.563733422204592,57.437576733926463,259.333834095858037 -135.564659278671797,57.438626245230409,259.335515340790153 -135.564977575060254,57.440535117541856,259.336459279060364 -135.564977747713357,57.442841680216468,259.337004628032446 -135.561239587836582,57.444909713583598,259.331708392128348 -135.558853555295229,57.446580034096542,259.328410885296762 -135.542902076648318,57.446362967386527,259.303675992414355 -135.536965376026473,57.450373996267217,259.295440772548318 -135.534815689613595,57.481238271988637,259.299411677755415 -135.551542785049861,57.509097213123361,259.331797865219414 -135.52878483542014,57.509817690843612,259.296811268664896 -135.494287483465797,57.531807895155886,259.248700371943414 -135.446156370904959,57.556997318404797,259.180350068956614 -135.421957914174214,57.564280665164461,259.144741980358958 -135.358501096793304,57.553691310432384,259.044330961070955 -135.350348842651528,57.550355570754924,259.030952483415604 -135.325675571884318,57.533600523877006,258.988834084011614 -135.297239858114267,57.510961705404107,258.939420024864376 -135.297585699146993,57.508845750450334,258.939437239430845 -135.311205688163227,57.495326789973859,258.957176153548062 -135.300530822318933,57.483847308095747,258.93786558508873 -135.2683035953782,57.480987080976355,258.887342859059572 -135.248860793070321,57.483725436149115,258.857964464463294 -135.230040253670836,57.489965690716311,258.83042140584439 -135.21187016434726,57.488881113327288,258.802069218829274 -135.163762038889075,57.460842858375102,258.720658655278385 -135.170800555151033,57.454341867105093,258.729905682615936 -135.161949903585537,57.445698275154413,258.714027116075158 -135.148692409177613,57.439179726201544,258.691857819445431 -135.067791865174115,57.419104987319265,258.561474833637476 -135.042376121166541,57.41826456125289,258.521901234984398 -135.029307956998736,57.420630786550753,258.502280565910041 -134.929258025917619,57.422402919170835,258.34783364739269 -134.896181836971436,57.42018069415878,258.296032293699682 -134.852218030211446,57.409807909014098,258.225183228962123 -134.809087946541922,57.342028539459896,258.139983884058893 -134.815501823863002,57.299906455803608,258.138399727642536 -134.832097416373443,57.294239237534718,258.162624900229275 -134.837943881665069,57.300455954406701,258.173412193544209 -134.887515121325976,57.330142132477199,258.258464899845421 -134.92438619963005,57.330851313309104,258.315885913558304 -134.954002066805316,57.328797721111435,258.361304898746312 -134.956685701840684,57.323860786645078,258.364149210043252 -134.957747641758232,57.309571122320499,258.361967167817056 -134.955744395483578,57.306269248797278,258.357969163917005 -134.949359171236182,57.303302462084034,258.347253534011543 -134.925062195389614,57.303846976343372,258.309659596532583 -134.882267014359257,57.288317296386168,258.238958263769746 -134.857678263372208,57.264907419377387,258.194328840821981 -134.844503057478903,57.248730112933657,258.169381240382791 -134.758600996662807,57.058183807577819,257.981548083946109 -134.74059147700666,57.01008542671994,257.939385871402919 -134.741008434872697,56.968210490902997,257.927754725329578 -134.742842016792622,56.948632954031879,257.924857124686241 -134.721980590990796,56.929183905600382,257.886372984386981 -134.698438529185381,56.900945142100227,257.84099701885134 -134.70179893127991,56.851019358431692,257.83126323018223 -134.67693606182965,56.82533356064166,257.784374201670289 -134.666130580449931,56.80484432518891,257.761120094917715 -134.636688114262284,56.728881935982045,257.69130933098495 -134.622485621952507,56.66604988337658,257.649241590872407 -134.618639585644473,56.637451715436292,257.634143194183707 -134.629621687520711,56.554032672128606,257.624992566183209 -134.636884783281118,56.541132855969231,257.632374191656709 -134.642409637705356,56.53899979325918,257.640449452213943 -134.67372483218432,56.541364056255716,257.690848399884999 -134.672454626938617,56.524293534568677,257.683384477160871 -134.666514146099303,56.503348216497976,257.667249995283782 -134.661296542776199,56.494841554051192,257.65623579826206 -134.657848353789035,56.492198698283346,257.649912111461163 -134.647980951710167,56.472381435890512,257.627850593999028 -134.639174275068143,56.405793394996707,257.592190232127905 -134.636672009288702,56.316010847107592,257.558612698689103 -134.637071197500688,56.285512297775064,257.549100684002042 -134.637326536829534,56.266004175030538,257.54299152828753 -134.656480887107932,56.198558581022027,257.550946675240993 -134.662522795802403,56.182667880748106,257.555248752236366 -134.669239221561924,56.170120924203474,257.561756727285683-135.706199148690899,57.322161357382384,259.527408234775066 -135.705653350986125,57.315703714109908,259.525034408085048 -135.708216829679259,57.308678836082493,259.527353331446648 -135.690964426582553,57.276266031846596,259.492832479067147 -135.660002380288574,57.262151062397869,259.441300386562943 -135.657738100037733,57.258364207664094,259.436865269206464 -135.657627841365354,57.254866298834045,259.435849160887301 -135.661588340581488,57.248088384903554,259.440372587181628 -135.661329068243532,57.245665839402605,259.439383470453322 -135.659092031650204,57.243160677006458,259.435296596027911 -135.640017464325553,57.236249154091482,259.40393658913672 -135.624073545297222,57.223818816263282,259.37608767580241 -135.623462116761857,57.21801097725551,259.37371480371803 -135.607677633601099,57.184331177597073,259.34084162209183 -135.599643940659178,57.161323938928831,259.322614224627614 -135.604779057174909,57.149289134945306,259.327629149891436 -135.601321777721495,57.145488307088563,259.321288578212261 -135.59510058049986,57.142811510468412,259.310914409346879 -135.584195160326232,57.150727544733208,259.295878292061388 -135.578396154507232,57.150658672295862,259.286815165542066 -135.568428916860455,57.147440970727899,259.270461006090045 -135.568477185258843,57.137473224446431,259.268035683780909 -135.578440759680319,57.104360855984403,259.275255018845201 -135.577411035552416,57.094469131905626,259.271147741004825 -135.638059791713175,57.022541667261663,259.347763668745756 -135.653252263420086,57.015269525748032,259.369701413437724 -135.683232425506048,57.017471819500194,259.417194606736302 -135.756393765468829,57.008386469391105,259.529464588500559 -135.767660607807983,57.006222281289723,259.546568072400987 -135.770365195633161,57.000556369191457,259.549390896223485 -135.775142968123959,56.997429346586429,259.55609437264502 -135.824625305183048,56.988342510158276,259.631352540105581 -135.856841798685167,56.995169635733397,259.683508955873549 -135.859738961533566,56.997413514903691,259.688599028624594 -135.854859321003573,57.029824782576966,259.688904196023941 -135.844535327754784,57.071023943804832,259.682792583480477 -135.837607826085019,57.091511566773605,259.676932835020125 -135.808663954583011,57.106902798818815,259.635449255816638 -135.779694379043491,57.112680278685048,259.591613113880157 -135.758717014877931,57.121350511186705,259.560973173007369 -135.738281254987328,57.151880172504015,259.536519183777273 -135.738127522933098,57.155528082525329,259.537166404537857 -135.755314509862586,57.168958366249825,259.567223384045064 -135.764964841101261,57.173465041681972,259.583356453105807 -135.788307177821736,57.178052417942951,259.620846787467599 -135.803547862703311,57.173778196446278,259.643580533564091 -135.827113274679618,57.192984194389801,259.684887301176786 -135.836625802324363,57.254353424208702,259.714163650758564 -135.831564338539067,57.302100322167398,259.717417936772108 -135.843093254738704,57.31446075851153,259.738184685818851 -135.858583670366471,57.320078279611991,259.763533248566091 -135.862306903764647,57.323226119003763,259.770037338137627 -135.86329347910646,57.330971901554321,259.773345283232629 -135.853897930599089,57.337033952476034,259.76015098951757 -135.841304068542769,57.338874179728919,259.741027453914285 -135.764207360855693,57.342750757839468,259.622278292663395 -135.733058963724545,57.337406569955213,259.572690548375249 -135.717968475710791,57.330843063784009,259.547726527787745 -135.706199148690899,57.322161357382384,259.527408234775066-147.5657426745517,60.579604671569406,276.690330153331161 -147.558333230564472,60.573842962766967,276.682507308200002 -147.554648958183066,60.559396365419893,276.683475963771343 -147.568712549297572,60.534497611216807,276.713377726264298 -147.610690582572204,60.506704309300886,276.783170567825437 -147.62676570466482,60.465662875942826,276.822651723399758 -147.622900129963938,60.436606614016434,276.829423878341913 -147.677276531779228,60.414214924163765,276.914293455891311 -147.693697512864929,60.404838775168031,276.941030596382916 -147.68481109463724,60.387952351708051,276.935739375650883 -147.633004776655838,60.389336457858377,276.863135731779039 -147.624943347398812,60.383580764905709,276.854314642958343 -147.621828042289337,60.368635171229059,276.856173804029822 -147.642393293702582,60.340366360115794,276.896495554596186 -147.674051129575815,60.308716384223246,276.953685860149562 -147.70651270191081,60.285376203559558,277.00859546661377 -147.701518199253456,60.245340226810249,277.01815674547106 -147.707639566270984,60.227662497000367,277.033982324413955 -147.723030110754593,60.201790752592771,277.066126043908298 -147.763582647899142,60.15618491257009,277.141582630574703 -147.769385390018897,60.153968836550852,277.150614832527936 -147.786484812774688,60.160861303410378,277.171712246723473 -147.823062046721532,60.179342077195578,277.2152482541278 -147.84858517150181,60.195220153269858,277.244339567609131 -147.835189531020745,60.1976413909955,277.224611774086952 -147.830895822891875,60.200416421292175,277.217458479106426 -147.831867414515017,60.207228243618083,277.215985288843513 -147.858358920284445,60.216204457408324,277.249252586625516 -147.911891038434618,60.224143102890231,277.320678030140698 -147.948063461990131,60.222107357513117,277.372029894031584 -147.959133901759401,60.228449969565062,277.384806581772864 -147.953439303705835,60.243573747489521,277.370473800227046 -147.936179140346894,60.273414442591182,277.333788559772074 -147.840379760887885,60.414233343191569,277.140789124183357 -147.79575180161018,60.475973931929957,277.0526037896052 -147.785478554617242,60.483080997919522,277.035339722409844 -147.781199665088224,60.483788076029711,277.029109627939761 -147.768755124302999,60.47628651786286,277.015054780058563 -147.782257226930938,60.456859658107028,277.042026811279356 -147.753791088536275,60.440763645578528,277.009359085001051 -147.741078253324218,60.441059918071275,276.991593175567687 -147.718240098369989,60.44769827018424,276.957102895714343 -147.712088522192573,60.451666316013984,276.946895530447364 -147.72002682297142,60.467064795430296,276.951408438384533 -147.729572164011074,60.471998474897333,276.962557442486286 -147.729392901703193,60.502314798614208,276.949462488293648 -147.724757503453247,60.508416763762135,276.940452606417239 -147.616782860688545,60.565688858410645,276.766774824820459 -147.56931372958951,60.580632570133268,276.694834877736866 -147.5657426745517,60.579604671569406,276.690330153331161-147.447421884181495,60.699437626164823,276.476575943641365 -147.38773447142205,60.709801713906202,276.389974642544985 -147.311489316514411,60.666580345677268,276.302816436626017 -147.305866815677149,60.660460604475269,276.297585366293788 -147.340377892959907,60.632472461670638,276.356810992583632 -147.347442440222153,60.628331397555336,276.368283311836421 -147.460353378411327,60.61887511983074,276.528207691386342 -147.488991095984147,60.619132483544938,276.567660157568753 -147.504552163204977,60.654555357144481,276.574254699982703 -147.489436236232365,60.686364988218834,276.539992899633944 -147.482766950217552,60.693375980717946,276.527841120958328 -147.452512865722895,60.699829505343985,276.48342670314014 -147.447421884181495,60.699437626164823,276.476575943641365-147.954991216082277,60.741650518563965,277.15668006055057 -147.908973144186803,60.735287671538714,277.096273833885789 -147.851125356202772,60.697890769818471,277.033183356747031 -147.849052048845095,60.694283895139534,277.031909783370793 -147.863004314111635,60.677007970219449,277.058679557405412 -147.871013639830323,60.670599935885967,277.072513887658715 -147.93587554094222,60.655487844283705,277.168481856584549 -147.973629772221784,60.673571613087958,277.212493013590574 -148.023208899740126,60.724720391145439,277.25794599018991 -147.968371996013929,60.751767001221637,277.170556866563857 -147.960191693222782,60.747477275733758,277.161232358776033 -147.954991216082277,60.741650518563965,277.15668006055057-147.134295921070901,60.912717891737323,275.956952259875834 -147.118312995657192,60.911724266531522,275.935460621491075 -147.080748228734876,60.89929036528401,275.889117311686277 -147.074763762875563,60.893620619960664,275.883253612555563 -147.092618795486686,60.874480638763714,275.915656390599906 -147.129770857284285,60.857798178723613,275.97354931384325 -147.144773327090036,60.853777934325251,275.99581147916615 -147.195325506779795,60.861420651810427,276.062025807797909 -147.220720992593783,60.86952591516588,276.093486892990768 -147.256099919198078,60.87275306368894,276.140665248967707 -147.312057415029074,60.873706807010677,276.217005892656744 -147.328611539153115,60.876935371432801,276.238339127972722 -147.324055870649374,60.87998040607733,276.230804341845214 -147.229278688162111,60.910204846411212,276.088158356025815 -147.213299703447376,60.908560235069665,276.066954912617803 -147.19637433881141,60.902733734955511,276.046202346682549 -147.181944560948978,60.903489037575767,276.026108577847481 -147.134295921070901,60.912717891737323,275.956952259875834-147.220623540665883,60.293301688496811,276.327314483933151 -147.197860762568126,60.304360938058956,276.291179058142006 -147.18619932217851,60.32047782960732,276.268564791418612 -147.188165516581819,60.322880732057925,276.27036361489445 -147.198530690145617,60.326021433239255,276.283590701408684 -147.21454740928192,60.324733110358721,276.306446780450642 -147.218234565292221,60.326905980194319,276.310733475722373 -147.221722210111722,60.334522731377255,276.312589254230261 -147.217603063879551,60.343589617103255,276.303258823230863 -147.214506316747588,60.346056629472969,276.297964786179364 -147.150441327303554,60.372267447119519,276.198312951251864 -147.115595449896801,60.380780021962039,276.146407257765532 -147.101631388355855,60.378495380517947,276.127845643088222 -147.09482512372594,60.37476761409804,276.119821183383465 -147.092290625604647,60.368924801334941,276.118575994856656 -147.095644077410441,60.36319485658133,276.125493091531098 -147.106936363784882,60.35652575846126,276.143848149105906 -147.098408129222349,60.341763278838549,276.137723847292364 -147.076857083172769,60.338781820004002,276.108817266300321 -147.0160901406351,60.343664046393407,276.022127692587674 -147.009064145549871,60.342920217704048,276.012610760517418 -147.006764917443775,60.340111331588403,276.010487702675164 -147.007016381239254,60.334149460476702,276.013141680508852 -147.018231211601744,60.32234948007379,276.033355443738401 -147.092786731969483,60.291906529250738,276.149278829805553 -147.106037533915043,60.279990508007948,276.172420247457922 -147.10702625335577,60.276955555086772,276.174979725852609 -147.083381444395883,60.265156342299449,276.146488436497748 -147.067687035052074,60.269989577553076,276.122674795798957 -146.965556795733818,60.311713878647673,275.963877008296549 -146.946948351335465,60.315823195154479,275.936306438408792 -146.919088532481254,60.314701833280949,275.897812995128334 -146.914696121770447,60.309611044805578,275.89361690543592 -146.914300034781803,60.297397329373965,275.897714990191162 -146.951009200970475,60.269778147027971,275.959566073492169 -147.004983316393805,60.232256812149963,276.049413258209825 -147.142551180482656,60.178860007935057,276.262624291703105 -147.205323067767523,60.150929269598542,276.361425879411399 -147.256771251656176,60.113652996848572,276.448047204874456 -147.368319864235247,60.042667189756614,276.632339362986386 -147.391400847604245,60.010916420116558,276.677149876952171 -147.391578250669852,60.004101574416168,276.680043905973434 -147.441258149619841,59.974480175674721,276.761522565037012 -147.496121896316026,59.95518742490647,276.846357005648315 -147.502669452088128,59.950868382455241,276.857272114604712 -147.508196214503585,59.937293578531857,276.870359124615788 -147.502509301955172,59.926095964595824,276.866697878576815 -147.49720105040879,59.922556163445527,276.860584826208651 -147.48594000497863,59.920673453728796,276.845425833947957 -147.479196135420324,59.921363585068079,276.835641493089497 -147.451564932186926,59.915693321943536,276.798839513212442 -147.446561780656765,59.913344486297767,276.792684313841164 -147.455240829408808,59.88032006998305,276.817673529498279 -147.469799776488117,59.86990199615196,276.842259423807263 -147.535918555603644,59.852201967082273,276.942558255977929 -147.544520541384344,59.853082758422808,276.954378253780305 -147.543314897846727,59.857064691129047,276.951130666770041 -147.545542226134017,59.861136546739921,276.952699974179268 -147.574156562224147,59.868508748258549,276.990270538255572 -147.5992173121642,59.868671196895662,277.02561401668936 -147.624857835040046,59.866282692890458,277.062771783210337 -147.65461420261218,59.851021402037617,277.11079646833241 -147.659890526688599,59.843833456112435,277.121071739122272 -147.659923135071352,59.839295562333739,277.122896098531783 -147.663262474935124,59.832046660313104,277.130456604994833 -147.68001236030409,59.821166551319038,277.15840551815927 -147.696741984922625,59.818868240372986,277.182968609035015 -147.730371688358559,59.819577489562512,277.23025147523731 -147.741410843494577,59.822746173781766,277.244612731039524 -147.74828967502404,59.821641049745573,277.254775365814567 -147.813658289486256,59.802029087059744,277.35498130787164 -147.833877025611827,59.789838934694316,277.388420579023659 -147.876964980294957,59.783055155797129,277.452083987183869 -147.915751332628503,59.792034097112598,277.503366974182427 -147.927774844202389,59.799505657832441,277.517375130206347 -147.930933135049429,59.80328949930464,277.520321573130786 -147.911120595035072,59.85262476490508,277.472481383942068 -147.898286141001137,59.868937660250246,277.447789067402482 -147.880812239325394,59.879470793501199,277.418887053616345 -147.859570071963873,59.886454092830235,277.386107604950666 -147.811149721705817,59.887942114975125,277.317201267927885 -147.800092685884749,59.909270855317665,277.293060371652246 -147.811915771872719,59.923273268538225,277.304105134680867 -147.807133952005216,59.936290067874204,277.292131029069424 -147.74252038239689,59.967801742629689,277.188473353162408 -147.731754628178464,59.969302942889627,277.172715307213366 -147.710330391238216,59.963945536333092,277.144694418646395 -147.693527490992153,59.963030925008866,277.12139755859971 -147.689165645324323,59.964270991401953,277.114760441705585 -147.662456286157919,59.979859211607085,277.070942218415439 -147.665532829207763,59.986470990184159,277.072637830860913 -147.649931649026172,60.005443889515867,277.043119287118316 -147.558423593825466,60.0509268357292,276.896360016427934 -147.482440631388016,60.076449908876256,276.77950472664088 -147.45438891480029,60.087717263102,276.735663194209337 -147.436153829614767,60.095956472493448,276.706812799908221 -147.408901562997613,60.11242869003231,276.662075038999319 -147.391603962097463,60.126270750577845,276.632358624599874 -147.322624340217743,60.190378792819054,276.510456079617143 -147.318601471763998,60.202688599658003,276.499979556538165 -147.325752450946339,60.214581171103156,276.505302235484123 -147.314993279994752,60.222668222650924,276.487057133577764 -147.284285948919091,60.226609806736782,276.442541053518653 -147.252699434239304,60.228387459591566,276.397648177109659 -147.247223731377545,60.231096518068888,276.388924981467426 -147.222023965580945,60.253311565716359,276.344973232597113 -147.209067522434566,60.269306486795671,276.320592440664768 -147.220623540665883,60.293301688496811,276.327314483933151-179.070892973536814,51.262388202775867,327.879323854111135 -179.074036441084218,51.25047771882231,327.894668872468174 -179.099333802592042,51.225650520827912,327.95116762816906 -179.12856974308221,51.219377389160641,327.995344712398946 -179.137909826297772,51.228730810188914,327.998760758899152 -179.149055279778594,51.276293401042459,327.968411433510482 -179.138954909474649,51.285518113988282,327.946474630385637 -179.115212133533532,51.300312764716573,327.901423985138535 -179.09638268263879,51.300741020682452,327.876405782066286 -179.077183606225162,51.2841320850061,327.867019620724022 -179.070892973536814,51.262388202775867,327.879323854111135-178.956061073612773,51.338759292799679,327.656809197738767 -178.956182825929432,51.332243597308398,327.663137594237924 -178.966893146853664,51.322194912373369,327.686670238152146 -178.980900440285382,51.313893097049579,327.712863173335791 -178.988957087579905,51.310551135926147,327.726572180166841 -178.992405012961456,51.311161056550162,327.730509853921831 -178.99381758422507,51.380820762111128,327.666264520026743 -178.979506651433269,51.398438146345555,327.630775766447186 -178.966048166399673,51.402001177395256,327.609787561930716 -178.928599516653037,51.383150612614294,327.578749626874924 -178.915932136168209,51.363503721046619,327.580818564631045 -178.910607407629556,51.340094898879563,327.596013681963086 -178.956061073612773,51.338759292799679,327.656809197738767178.784156406059481,51.632899809965501,330.258656638674438 178.802458805434412,51.634499995145632,330.234085944481194 178.863266443365518,51.622600417278697,330.170228756032884 178.902238593456048,51.614382356948198,330.129841896705329 178.917464487805773,51.605015012700179,330.120397979393601 178.915936921885987,51.594418487737578,330.133237772621214 178.917156128480286,51.587806815180265,330.138516369275749 178.919155150176124,51.585606946829344,330.13827059045434 179.001223964617822,51.551958695034195,330.069631858728826 179.075130767421996,51.497994285523276,330.031563628464937 179.099769520263351,51.484974249754039,330.0136927543208 179.141982868964078,51.468920607998136,329.976636133156717 179.162857432791554,51.46411413233357,329.955106747336686 179.176407029212243,51.464291317392828,329.937789555639029 179.189407716967906,51.462414591427006,329.923238839022815 179.216356805458787,51.438421107244039,329.913335165008903 179.225209094575206,51.423422941191149,329.91722115688026 179.22859637978317,51.412901486173055,329.923507572151721 179.234579344041464,51.409088751619173,329.919753802008927 179.262259672500505,51.405321324857155,329.888432853855193 179.333303630787441,51.404417383064029,329.799161574803293 179.384543155460591,51.403886141349851,329.734583598561585 179.399130870828117,51.400042531629211,329.719877105206251 179.461085958369978,51.375663570326175,329.665333685465157 179.465901984545212,51.371116854155126,329.663721933960915 179.448512727738148,51.364629911594449,329.692324770614505 179.397792412884172,51.358920455365869,329.762586464174092 179.388178635555278,51.360491243519178,329.773257944732904 179.383002669308667,51.363697017874813,329.77665130328387 179.365111912220357,51.371323401378646,329.791807365603745 179.259945495921869,51.357173567772527,329.939573786221445 179.218799006556168,51.376151082784787,329.972806509584188 179.216512683127434,51.386860543833365,329.964970901608467 179.204827809461335,51.392767097935753,329.97385870013386 179.095806277499122,51.440059310226012,330.064205214381218 179.058683845220031,51.454353107098463,330.096630529500544 179.032861740086219,51.478006624384598,330.105212259106338 179.011845339514224,51.496755442085401,330.112635121680796 178.967348740569236,51.530710211038972,330.134014981798828 178.94995586042478,51.541435459290177,330.144918288104236 178.841962704362373,51.578111200551561,330.24288139026612 178.830156983969374,51.580002943959791,330.255738326348364 178.79352725363654,51.574897663271443,330.306929860264063 178.783394683561369,51.571334686718565,330.323306027799845 178.766121038863503,51.575591241591617,330.340557003393769 178.704382243081398,51.592648564783659,330.400204056873918 178.632357252896952,51.623445099001003,330.458239034749568 178.629945258627941,51.625245980387483,330.459375872276723 178.623872017458751,51.636766354337063,330.454957180656493 178.643845679697705,51.657096685225639,330.408831366337836 178.662346972594008,51.661397746286347,330.381254356354475 178.673861736017528,51.658527043997111,330.369874876923859 178.680331878300535,51.649409562626516,330.371298756450415 178.688236846225294,51.643885933445233,330.367177629843354 178.736351847921355,51.632199163768398,330.319192111492157 178.784156406059481,51.632899809965501,330.258656638674438-176.764282568484333,51.867398784513838,324.256823806092143 -176.799604227297323,51.908030397314775,324.266199012286961 -176.812238625485321,51.926606360868107,324.265701943077147 -176.791365408827289,51.956727316320404,324.20953705906868 -176.775831184898692,51.965411161710229,324.18061741720885 -176.738358371476494,51.969324560211369,324.126847342588007 -176.72258979261008,51.969034815627374,324.106031954288483 -176.700581192447942,51.963971382985285,324.081338368356228 -176.632322301253197,51.969870166061462,323.984437938779593 -176.628967713599906,51.977811858649481,323.972511449828744 -176.605412116694879,51.996573373693401,323.923392325639725 -176.591769720241871,52.002258327156845,323.899795293807983 -176.58179001367489,52.00275545847164,323.885964355431497 -176.562380281960912,51.996250051252524,323.866055896505713 -176.556213205205665,51.990178420459067,323.863472633995116 -176.546679906420508,51.926766435135555,323.909808953292668 -176.556472937836162,51.909356073184711,323.939126492477953 -176.560187791735189,51.908247066268416,323.94514340441674 -176.568086980116504,51.914223617634129,323.950197598896921 -176.570728009864126,51.920821334167947,323.947610946372151 -176.567371285301448,51.925383179183584,323.938864912837744 -176.571496198682127,51.950843963040292,323.920691742561758 -176.577448089006396,51.952160811806586,323.92744529619813 -176.580743945903549,51.950847820463238,323.933089162223041 -176.584739700968726,51.947483911161008,323.941583814099431 -176.617904984569691,51.902534437246494,324.027910078875721 -176.621824580752474,51.89515171187044,324.040028457529843 -176.625260987895729,51.882727222904876,324.056174391880631 -176.627270995152685,51.85934725395596,324.080543105490506 -176.578189632037152,51.84179980609639,324.030825976282358 -176.545118387779524,51.838149480683526,323.989725311286747 -176.519409126000596,51.839082833793746,323.954280895181 -176.509799645103016,51.845495690175284,323.935445342212915 -176.399876516818665,51.867368390407727,323.767327691428363 -176.313390053696878,51.871990515419519,323.646511346101761 -176.292545606498294,51.871663852185243,323.618694775737822 -176.289005629103372,51.869840989540918,323.615590104833245 -176.283511520505471,51.863447364425653,323.61403525993228 -176.268306073211164,51.817246697316158,323.635715777985752 -176.270057731823243,51.785030135838163,323.667401241138577 -176.275606040983405,51.771551664008115,323.68714398983866 -176.291733389252443,51.741211798320279,323.736462444067001 -176.345566525331805,51.731053432152379,323.818478442728519 -176.475939614460003,51.746738709334871,323.980314415879548 -176.498861558955042,51.76095570805451,323.99825731292367 -176.511462292103289,51.762855427641284,324.013508261181414 -176.521136835556433,51.758011499928898,324.030974790453911 -176.584735451540723,51.691353570071371,324.177492160350084 -176.610283817085872,51.692880108272959,324.210548739880323 -176.704458936780867,51.684934028980067,324.344659980386496 -176.71486057101086,51.682859964754208,324.360556036233902 -176.737709109689121,51.661684585989384,324.410632010549307 -176.75361260361953,51.634548588451018,324.456757980398834 -176.803468395042046,51.613019816025059,324.543473042547703 -176.810793303507495,51.615766577816004,324.550836496055126 -176.82547560368323,51.633541536429789,324.554407912306488 -176.828045806537432,51.640462179189534,324.551553417928517 -176.816231891804449,51.659779472671069,324.518026155419648 -176.839309150443114,51.682273088077821,324.528462055139244 -176.864856537982661,51.684448597982993,324.560785801149905 -176.904975496359128,51.635177247640115,324.659803284332156 -176.932741038778374,51.592000810979904,324.736527598462999 -176.94070576264096,51.590512758143632,324.748590703122318 -176.95593540857007,51.592098453037984,324.76761516649276 -176.986118958619784,51.601664552636414,324.799434013664722 -176.9891710611424,51.606401288031925,324.799203931353986 -176.993110825058864,51.628580207318073,324.784195160493255 -176.986279128491475,51.656938007852474,324.749013692140579 -176.978039708503246,51.66592672061639,324.729702844284475 -176.951920225808692,51.68624518645813,324.675984852015972 -176.932665167144563,51.696720999881059,324.640517825260758 -176.908677802099902,51.696165391533206,324.608849113807082 -176.898760223291305,51.699950369483638,324.592059971764684 -176.875719790101897,51.723596638354131,324.539378204382956 -176.872793081786341,51.728935438714558,324.530532416887581 -176.872496191339366,51.73149432614867,324.527775531634688 -176.883815256305923,51.766151568379918,324.510945077985525 -176.906826820144801,51.771054992582499,324.537238956429064 -176.919862116823936,51.787525041150339,324.539423500187695 -176.918885501879117,51.79653764469532,324.529746854677796 -176.912814089367117,51.807118254785202,324.511786821298301 -176.906100439789412,51.811293167039288,324.49891911726445 -176.858005021979125,51.81788760221032,324.42839839309454 -176.791964786164414,51.816739665799346,324.340976140461862 -176.764282568484333,51.867398784513838,324.256823806092143-177.802419305613029,51.777803088683022,325.722301754169166 -177.798080134413595,51.770340496358735,325.723681036382914 -177.815656996126108,51.753789990970176,325.762663232162595 -177.84403635217663,51.731990564889976,325.820895993150771 -177.844187964041367,51.722156014705035,325.830439838580787 -177.839822873296129,51.716709330884989,325.829840635880828 -177.82929296758499,51.711597724513986,325.820767777971923 -177.828765743830672,51.705484013716223,325.825866176746786 -177.843178702335308,51.689072552220679,325.86047297436744 -177.85809895360245,51.680527721322662,325.888294723816216 -177.869726565472746,51.67888662205025,325.905225653201342 -177.878577397849881,51.680923395110085,325.915000882931054 -177.889534406246611,51.688994858536468,325.921838072128594 -177.901182200780198,51.69206854184884,325.934316463768482 -177.904459071318541,51.69109253753701,325.939572246745229 -177.920570952957377,51.673902087466693,325.977160734124482 -177.930670932183688,51.654880812942942,326.008519648574293 -177.930787185287556,51.65003254740904,326.01325935125351 -177.92740352328056,51.641994456728263,326.016383945010602 -177.917208350149707,51.630198154526518,326.014038075692952 -177.9048457575756,51.60601245778625,326.02046718262136 -177.907834332582496,51.597185821086541,326.032726391218603 -177.910947207191413,51.596186820562444,326.037787158973515 -177.93188481051061,51.601014283008034,326.060960332863033 -177.946718785470836,51.611053596166371,326.071130189113319 -177.952426953873101,51.619515119383472,326.070699646137655 -177.954786217264598,51.637688145766376,326.056655680760741 -177.959205816770549,51.646661763791677,326.054010115563869 -177.965614757354473,51.649743525343055,326.059562044218183 -178.071583587347789,51.670185992552199,326.180023627355695 -178.088063852450261,51.663128071254533,326.208466798998415 -178.111137471342062,51.669970409817473,326.232362689450383 -178.119623519132688,51.677339942699163,326.236517943441868 -178.106045819154673,51.701047053145892,326.196006874553859 -178.023581337526593,51.706415042624606,326.082226606085896 -177.964191499764951,51.719281342187656,325.991637172177434 -177.958208787424866,51.722371289921114,325.980799734592438 -177.949543712590781,51.739889614582609,325.9526631468907 -177.948416223989511,51.752189066342602,325.939432354643941 -177.95205062985633,51.765189414635572,325.931795751675963 -177.958765709800929,51.772047998806244,325.934082453139126 -177.966798704489207,51.777668620059117,325.939283914864063 -177.997038989147597,51.781041010711299,325.975881572812796 -178.041109651799104,51.778430468420012,326.036400366574526 -178.061100399527703,51.78633380547852,326.055104985833168 -178.082405266502747,51.798242939201828,326.071655640378594 -178.087839477440752,51.807550430755853,326.069826582446694 -178.174430290455689,51.839485667821535,326.152614907361567 -178.216887790858948,51.857300215411094,326.190961956977844 -178.225892813844553,51.864379756378575,326.195867964997888 -178.229586047870271,51.873024305479071,326.192285005934536 -178.226382418015334,51.880173026540284,326.181123710237443 -178.22250669044368,51.884338894169723,326.171988317742944 -178.198856165749646,51.904961306562974,326.120908132754266 -178.176790028205943,51.911081358290957,326.086046863347292 -178.147094086569098,51.916713547134655,326.041664057411253 -178.126554778455187,51.919590724415777,326.011953230015934 -178.092401713223097,51.918897269394797,325.967874987982213 -178.072318200349798,51.916906662204141,325.943484236486256 -178.062917273457913,51.912038025734113,325.93589433748275 -178.00411682593716,51.909468027768355,325.861232241615653 -177.965496224141418,51.917419246684887,325.802797830663621 -177.953867449463871,51.914848539110402,325.790016419254243 -177.915042137483823,51.879250748684612,325.773426389321685 -177.926086954171893,51.857025597839474,325.80940418317914 -177.923340888215023,51.853386805569961,325.8092972766608 -177.861535561235826,51.826449969004408,325.753785596229136 -177.854057735140231,51.825551122845809,325.744789292104542 -177.761416104626136,51.830702622262585,325.617627151310444 -177.693491925556174,51.843482726244233,325.515692161396146 -177.617091493427438,51.854588374459603,325.404087886214256 -177.61629143493667,51.852541480032812,325.404983872547746 -177.626787531048109,51.837038029422409,325.433658223599195 -177.650986195047153,51.820236431573036,325.481683008372784 -177.68733186815308,51.812254247413229,325.537359175272286 -177.693894730506202,51.813406095547471,325.544938836246729 -177.737684084029638,51.807499542397032,325.608452095650136 -177.799491975360525,51.792805445097116,325.704123160801828 -177.802419305613029,51.777803088683022,325.722301754169166-177.362190542872639,51.727051073435007,325.186392114497721 -177.392541939131974,51.73304233832944,325.221182742156088 -177.419459090091237,51.730392051857898,325.259481248445809 -177.446497127202576,51.724935892531704,325.300561968237162 -177.465356154477064,51.713460133731445,325.336405594833195 -177.491783075942806,51.704623139602397,325.379831612110138 -177.542169430724471,51.698271669307999,325.45275912899524 -177.572748561707726,51.697736231672458,325.493882174603641 -177.609829805061935,51.704699351295545,325.536562282592058 -177.618527516359478,51.703493275366142,325.549239475280046 -177.633296827198336,51.69635938036771,325.575551464222372 -177.642296610076045,51.671600383860664,325.61077284719795 -177.637655249486755,51.659058031555425,325.616382746957242 -177.653157587691766,51.653121071224504,325.642534489743412 -177.672722449003601,51.663496298073753,325.658765380270779 -177.709573958012015,51.702781933966257,325.670637652277946 -177.707033183870493,51.70675378962639,325.663521223701537 -177.699434625177673,51.712636633768462,325.64789748005569 -177.64175812687958,51.735574450620312,325.549791838973761 -177.599273931414729,51.725978533101404,325.502510892227292 -177.556973896450444,51.720640417690397,325.45139876101166 -177.538754415429622,51.720985677377399,325.426880396902561 -177.517369146085855,51.724493839830501,325.395176329649985 -177.49975317014264,51.738139480212183,325.358940048143268 -177.462980664753104,51.750233482458661,325.298704721964896 -177.283265953268796,51.78359168197273,325.028307058848441 -177.239963720821407,51.79803667999203,324.957080924883485 -177.213719992454287,51.811847448420856,324.90915668848902 -177.207465494404317,51.820155164333038,324.893021374940872 -177.202616579013352,51.844120144850706,324.864021779969335 -177.200913157609222,51.882655415283274,324.825404025614262 -177.201558799812574,51.924327510484225,324.786805371753871 -177.199301122515067,51.930850248626427,324.777615232393146 -177.193194557431241,51.937512039250805,324.763175743632019 -177.183067044040911,51.942677959224376,324.744811862707138 -177.156638823892081,51.943892307362276,324.708532686345279 -177.101064030285187,51.935631530735016,324.642445242032409 -177.056566173171092,51.908458444368833,324.608866196125746 -177.04688802734114,51.898120062033094,324.605710814706981 -177.082805318826672,51.855013474981227,324.694135844707489 -177.122170604556572,51.839203594936926,324.761467824690044 -177.130410144808764,51.833351736138049,324.77794560790062 -177.138769146565977,51.814010491163693,324.80722963064909 -177.132750263880524,51.762291946299491,324.847538284957409 -177.122370642233932,51.739336155137366,324.855048902332783 -177.124597167881632,51.728876600361488,324.867746354080737 -177.147462668464726,51.706816263681702,324.918787171132863 -177.263414434444314,51.680367715602387,325.098224746994674 -177.2769040493761,51.6800315262712,325.116543448530138 -177.298151276763377,51.683765698890966,325.141424629837275 -177.318283440244642,51.689873615040632,325.162593071348965 -177.319670523057908,51.692967533580045,325.161560850217938 -177.319721510621065,51.696386125186976,325.15844346024096 -177.318135709398206,51.700330968093667,325.152652191929519 -177.324759943336943,51.710935380759949,325.151590551249683 -177.344566788579641,51.720913622347879,325.168661280535161 -177.362190542872639,51.727051073435007,325.186392114497721-178.794152115839921,51.745566741718847,327.053636376745999 -178.809899706877133,51.746573461763887,327.073135529644787 -178.817499571480312,51.748671252325529,327.08096369355917 -178.874766228934163,51.78211586190838,327.122512117028236 -178.871860798688488,51.794753322988747,327.106287359260023 -178.859992128666818,51.820457316296221,327.065517292357981 -178.830390559149066,51.835641057529415,327.012103145942092 -178.821204953395437,51.83906603651176,326.996797473169863 -178.812995165804892,51.838509183956717,326.986692642793059 -178.790287564482213,51.832093815818375,326.963547062128782 -178.769441793498004,51.822671558364739,326.945761159993708 -178.750029833998099,51.809435455180648,326.93356329202652 -178.73510125418963,51.783441872858084,326.939681466668844 -178.752158759090293,51.757247826174336,326.987551672384143 -178.778404661237346,51.748107858100624,327.030658127740026 -178.794152115839921,51.745566741718847,327.053636376745999178.379079672354351,51.763360971483799,330.626263212412596 178.365803744530723,51.772211371121735,330.633318447507918 178.362018814077715,51.773401262156781,330.636742474511266 178.33742163891668,51.770982027486184,330.669765902683139 178.334003800025897,51.769379053975868,330.675699414685369 178.317097218239979,51.771774703515575,330.694077892228961 178.306903399543046,51.775153402035116,330.703097959049046 178.303232445917331,51.776886269408052,330.705795916728675 178.244549750034849,51.816527594188237,330.736042734235525 178.235271619584722,51.827657945191582,330.735590195283294 178.303906798076497,51.821198214701056,330.657738058827817 178.308636720825064,51.819443363180774,330.653766131028533 178.317727604860579,51.815187689677202,330.647070505656302 178.33052846766347,51.808488182412532,330.638386573642492 178.333969438337562,51.80648232442541,330.636268565431237 178.370686547496831,51.773599375407045,330.625797575339675 178.379079672354351,51.763360971483799,330.626263212412596-175.97338891077095,51.888163047309192,323.172122263349593 -175.959373484494819,51.892987046670925,323.148746498860419 -175.955078110534714,51.880908659899283,323.153894583694637 -175.956113556040208,51.867914232133742,323.167085179127753 -175.964866424438981,51.845787098890078,323.198995468206704 -175.98556711311204,51.851885501252845,323.221546885557473 -176.049715138075555,51.845841780579917,323.313965388573706 -176.102890262166937,51.810142577554664,323.418368657119572 -176.125784327171829,51.802278580670844,323.456504945643246 -176.141440889730376,51.801919354797654,323.478035063482821 -176.184959902823067,51.806631467619717,323.532672333531082 -176.218774213678586,51.812245689776411,323.573313373140991 -176.237361130438046,51.822687927998146,323.588937976397574 -176.238063224397848,51.825495789569494,323.587328661233187 -176.219363692204382,51.874155870330831,323.517633187584579 -176.207889344903862,51.88261766432079,323.494393470697105 -176.175692191505902,51.8819781914871,323.451487166807055 -176.171572209723166,51.879667359948222,323.448032828047872 -176.170596122711629,51.876859502282926,323.449279898777604 -176.162873023041612,51.869214968272942,323.445823382586241 -176.142729159472339,51.859092738974901,323.427819094620645 -176.100959126379905,51.85506456839947,323.374974330887198 -176.082264960835602,51.858099026950875,323.346910406835377 -176.074047961630811,51.867468929596072,323.327263361774385 -176.075254025042796,51.869843003333877,323.32673507463187 -176.080688452149275,51.874309010241703,323.330023392103612 -176.117311956661638,51.886544888606693,323.368406011722982 -176.113275176460689,51.889277827397812,323.360452335327864 -176.067112961135024,51.902515943755859,323.285935408435762 -176.022008520365205,51.910903264098522,323.217254831455648 -175.994477316084271,51.912185633451109,323.178819631226361 -175.986820351977514,51.907975942638551,323.172288383357227 -175.97338891077095,51.888163047309192,323.172122263349593177.599997919478625,52.015808292495997,331.308809088543057 177.575580082079171,52.004401479108907,331.351062841713428 177.570422355055939,52.001243553249495,331.360813081264496 177.536579225761102,51.978329142235935,331.427194427698851 177.531085716100904,51.969502474813311,331.443596947006881 177.537983895466965,51.958851065134908,331.446952191181481 177.541890895025375,51.955608270114418,331.445775330066681 177.570152202226524,51.951023877309488,331.41646998655051 177.578178985507719,51.950270024361721,331.407539203763008 177.605890000288525,51.954154231173483,331.36956759635359 177.609908020441424,51.950263467824684,331.368953544646502 177.608973565116941,51.936148109928197,331.385585054755211 177.604885114933012,51.924504593574063,331.403329653665423 177.599361385679856,51.921689647217697,331.413138792850077 177.558870831986212,51.915799355813824,331.468867106363177 177.482672894408324,51.922846965864991,331.553748940117657 177.407897903877313,51.930253580433991,331.636345075443387 177.37229739244961,51.91919259952666,331.691696650348604 177.347180714496318,51.903901961867312,331.738984351046383 177.325147505106912,51.873070092018423,331.799611869268119 177.32554558668744,51.870483218138297,331.801971998997033 177.33259552669773,51.866203515549081,331.798124783672392 177.332384341265623,51.843879554055619,331.822874896228313 177.320055291942168,51.827979125403616,331.855255695059896 177.310136687175969,51.825407107965816,331.870107209309936 177.301682818931397,51.828893827836609,331.876543682068586 177.292403818524207,51.83673633287642,331.879200700670481 177.294386665362111,51.839301240608549,331.873983394354582 177.29179253687073,51.845044936484079,331.870827256701887 177.271738732507458,51.856557121121021,331.882489184848964 177.233892304604666,51.872692843807108,331.910565834492445 177.210791895827157,51.875863375871582,331.935023265890777 177.20236600512979,51.87996306799193,331.940693997777998 177.198792600145566,51.894177355977803,331.929326979443431 177.201692445732817,51.895993311544714,331.923815755173564 177.232272037508579,51.909055127054351,331.872413562610745 177.27106147341658,51.919485179684187,331.813972379080951 177.28967792715747,51.918861467097827,331.79213367216289 177.339881099371041,51.95444651040394,331.692043764516711 177.343939684371207,51.96243519589332,331.678293163888156 177.411844000355501,51.97915436499877,331.577568806707859 177.482069668832224,51.984308104631438,331.486746108159423 177.495797940883961,51.992758904469468,331.460756163112819 177.501797190228416,52.008259270263345,331.436338777653873 177.504102843375563,52.01580395319121,331.42519252654165 177.503674035051461,52.038196911328541,331.400898312218487 177.543955512330911,52.100517596967784,331.28283432405442 177.561746198853911,52.121384884352892,331.238036028109491 177.601021431291116,52.136745727025463,331.173336273990571 177.659954541063314,52.112173683715376,331.129244323819876 177.674299864113209,52.09159583281432,331.134681168012321 177.665604715798253,52.075703443768433,331.162860494107008 177.657800205730837,52.068868649768312,331.17991160787642 177.651963351008021,52.069752527238464,331.18602105230093 177.640213783105338,52.067745455328776,331.202512147836387 177.630905194801812,52.064273485254134,331.217660971917212 177.607439246736078,52.027948835035318,331.286356184631586 177.599997919478625,52.015808292495997,331.308809088543057179.757284037271859,51.946060250784278,328.709392192773521 179.749817116781998,51.923399185290691,328.742347831837833 179.741304828408232,51.911215622957812,328.76573995873332 179.733065226912061,51.907072694352806,328.780453055165708 179.647781011038859,51.873137024103109,328.923420999199152 179.637374381918647,51.87139795379467,328.938373405486345 179.612662112884038,51.871238603629841,328.969761725515127 179.520167886549359,51.896229112966907,329.060527246445417 179.482934057012841,51.920730445064599,329.081892902031541 179.473868712321433,51.936917568139279,329.07639020588249 179.480761791526078,51.982293579421579,329.020183100365102 179.484862627976497,51.983418586974075,329.013846589252353 179.513321797039907,51.98321100797456,328.978274496272206 179.52503954991829,51.980624296348772,328.966244860552251 179.537519030019354,51.984638292375571,328.946334488689899 179.569343107521178,52.010570561980096,328.879088030196726 179.581150541790862,52.016300470032945,328.858214966952801 179.620575071248595,52.024434668186153,328.800051482394338 179.645932276006732,52.025718976961166,328.766771079041064 179.66161794097016,52.022401356598095,328.750488540157676 179.702723420840556,52.004338781552534,328.717571729794145 179.772211682982004,51.970157359796076,328.665475908666849 179.77675987222915,51.961681815310811,328.668539884500206 179.775448044501331,51.958164957906121,328.673853275366127 179.76554175806811,51.947037325715002,328.697937127202749 179.757284037271859,51.946060250784278,328.709392192773521178.4452927686892,51.977666962388476,330.315235329791903 178.461712917536062,51.987293750960269,330.284583181142807 178.476913472593196,51.986993980623403,330.26613577734679 178.550937759431037,51.973414659298264,330.189253815449774 178.568944440183174,51.967511187928963,330.173314748331904 178.589922386506146,51.952100198180489,330.163873348385096 178.588570694898607,51.944905511474893,330.17325558885932 178.565774103053513,51.925388090026225,330.222386536188424 178.537723785055505,51.902695742127641,330.281397255137563 178.517190528758277,51.899208612172885,330.31055523455143 178.500823022864637,51.899093385227538,330.330944158136845 178.48316117143176,51.909346659617142,330.341831865720451 178.46637486781222,51.931082415142676,330.339293667115271 178.452993196718126,51.959946890351951,330.32481122110039 178.4452927686892,51.977666962388476,330.315235329791903-175.681982027983082,51.96850295724817,322.703832277096808 -175.674478372803264,51.972003916768884,322.690463702194393 -175.671545439106296,51.971698976281132,322.686756085604429 -175.656894606883441,51.966184453266386,322.671849160455167 -175.654331600491105,51.964346576031801,322.670031138695776 -175.655032453051405,51.961202706653275,322.673831143416464 -175.719271585036807,51.933228965069297,322.786452176049352 -175.73184625215481,51.933350763526562,322.803425432182848 -175.749273288990565,51.945732933493474,322.815870847553015 -175.749671460132816,51.95018772646867,322.812369584105909 -175.744454253029346,51.966164087955804,322.790779308415949 -175.737313718924753,51.97286289764547,322.774999674409628 -175.728082075097745,51.975500922870701,322.760072411037982 -175.681982027983082,51.96850295724817,322.703832277096808-176.019920001736381,52.019624393171704,323.11473224312067 -176.045830860444624,52.008856475160641,323.159636260941625 -176.033985542631797,51.993193364472297,323.158063583076 -176.02937558442639,51.991156527832509,323.153710278682411 -176.023668462562739,51.984374922028856,323.152233822271228 -176.0244922680765,51.980148099718633,323.15722968429327 -176.029495908322701,51.974639270326215,323.169049303047359 -176.05891281548648,51.967352142208576,323.215484889224172 -176.081008260190032,51.96841075155713,323.244355531409383 -176.182181798815861,51.999949760600657,323.351751573383808 -176.186911885106866,52.005228449439549,323.353240489028394 -176.203761832460202,52.039733634857406,323.343932445161045 -176.213682595392385,52.065053342668868,323.333723817020655 -176.207152210603226,52.075765962700601,323.314958560280502 -176.174985152137907,52.101833291892724,323.247387408278883 -176.14574551243345,52.11561612798517,323.195201802067459 -176.059936450457911,52.105987893091012,323.088705726899207 -175.990485129591235,52.035033900798602,323.06078337598592 -176.000875733347016,52.024910451430294,323.084146508015692 -176.019920001736381,52.019624393171704,323.11473224312067178.115936072122281,52.048049052703043,330.643923786468804 178.117479912277901,52.051095934052917,330.638700521551073 178.140030253974686,52.050471281336726,330.611746822483838 178.174115754247424,52.036215420164325,330.585509027354419 178.178296759178153,52.032685642034146,330.584227749146521 178.189298529741393,52.002986168129013,330.603056342341006 178.17280946681214,51.991124483126022,330.636201147921383 178.130884905774025,51.986422108572327,330.692786193452775 178.104212289877353,51.997796206565447,330.713133187033236 178.101068178586985,52.003365904883239,330.710921196267009 178.092947335558392,52.032731434620736,330.688833136111498 178.105602490991885,52.045181039036649,330.659720852971077 178.115936072122281,52.048049052703043,330.643923786468804-174.303705570322109,52.278489917273333,320.540695616975427 -174.325358215564421,52.283530348978694,320.565980581566691 -174.347975665398337,52.284575941495142,320.596144057810307 -174.351290421103101,52.280876051684935,320.604006531648338 -174.370639872663759,52.279944783706242,320.631435963325202 -174.410162234269023,52.289410735244104,320.677264086902142 -174.453438759760985,52.305094353201817,320.722597694024444 -174.457863988470052,52.313226924249257,320.721357421949506 -174.455545290831338,52.318903711198722,320.713070099242032 -174.445017835751457,52.325190602385383,320.692973205819726 -174.434732206951537,52.327540663128538,320.676750067621469 -174.386086197040555,52.320676742179749,320.616164304316044 -174.368934349485755,52.313643325875034,320.598923555575311 -174.360511574814552,52.313728456707217,320.587278800085187 -174.342567391499983,52.321822387176937,320.555374548770487 -174.332953907658379,52.328003268875165,320.536626815795898 -174.319589958379339,52.344406761173033,320.50355260912329 -174.322703339512572,52.355263234229277,320.498075488954782 -174.332384541793687,52.365975608776672,320.501730189658701 -174.331708863109498,52.373084307428535,320.494402803480625 -174.326826185924887,52.377631185942086,320.483607108704746 -174.18724355771792,52.417324681945288,320.256231747567654 -174.1576712597182,52.415578232831699,320.217171710915864 -174.070146452433505,52.389870763782234,320.119825756177306 -174.018720006850714,52.348079422378511,320.086216785013676 -173.991312727233662,52.324818883994439,320.069044453091919 -173.987100508911823,52.317144288866523,320.070025724358857 -173.988317663519808,52.298110106168721,320.088538544252515 -173.989813486942722,52.294890223787661,320.093448977917433 -174.038115080616961,52.244557665809914,320.204566621221602 -174.062342611297595,52.224873146066095,320.255370014347136 -174.085932925465045,52.223223840890817,320.289418456144631 -174.108423538339906,52.227938272440475,320.316333309747279 -174.179567900867426,52.233182901865185,320.40990325063467 -174.184745728183174,52.232306857698944,320.417820320464671 -174.200511742149246,52.218789202661455,320.451514424756169 -174.202276383025463,52.211406500763388,320.460468132980168 -174.198722798056139,52.195402265378,320.469679644331336 -174.191986739868867,52.189866618018534,320.465257090516388 -174.176930774375279,52.181382234280861,320.451932297088206 -174.137104251067257,52.168062461022394,320.408598630689085 -174.092056183185491,52.138669484155457,320.372005771845579 -174.084701076957231,52.13161991443399,320.367975725792348 -174.082563961844187,52.127577127934543,320.368542063049972 -174.090985865532446,52.106802915114478,320.398300393484533 -174.096355600114947,52.103825961419325,320.408328756690025 -174.104046410750982,52.104085826887079,320.418754717335105 -174.110974592249732,52.112668335029724,320.420874044299126 -174.116255622952934,52.11665807347925,320.424707771278918 -174.144147247800817,52.12500225720634,320.456026409752667 -174.208236199804759,52.11610362814875,320.552444477565587 -174.220351391686421,52.10442995322714,320.579403032548726 -174.304827454460735,52.110873318936115,320.69049138110131 -174.33630379334528,52.114745644966135,320.730546350590885 -174.350342175343684,52.108792685767703,320.755151035264134 -174.367545220206978,52.096785945532211,320.789437828585505 -174.384538121103873,52.081206368126686,320.826563649810851 -174.413129993555174,52.048306378783771,320.894861172884703 -174.454634420116804,52.060595170704893,320.941374903544784 -174.509688720677644,52.054502567119769,321.022652443498373 -174.510694429585072,52.048170833557528,321.029601141810417 -174.558148686834528,52.036280610494764,321.105465995147824 -174.582546200963606,52.040000057167418,321.135816624388099 -174.595505060330453,52.044793637525231,321.149449173361063 -174.617811948829797,52.032211845396915,321.191248597577214 -174.716475402317172,52.009409301014536,321.347158053889871 -174.738456716898924,52.006854067320766,321.379654459655285 -174.785053526646607,52.031837212515811,321.42165002413094 -174.887416266508211,52.042543115174979,321.552685004658997 -174.969766844863415,52.036744073862621,321.670752491801977 -175.002650606062218,52.027894950926772,321.723695640452206 -175.016605913974047,52.020125078647617,321.74973951280117 -175.016664349887975,52.006541686120997,321.761918337084353 -175.09736495199428,52.000337692559292,321.877976001240313 -175.106743816613289,52.003088421553542,321.888359252363443 -175.157526796008199,52.011051265226499,321.950716114602983 -175.276700915762206,52.018156072894776,322.107152344658971 -175.294671443509657,52.018326782947121,322.131522906944156 -175.302489077367397,52.014506831466043,322.145626342855394 -175.304532879696467,52.011035955045259,322.151536890305579 -175.325171163655938,52.007024810967529,322.18330336175859 -175.343473256320863,52.021123891264146,322.195568897761405 -175.328919869501874,52.02656787564527,322.170817960985005 -175.197754375226282,52.050943845528536,321.969893457368016 -175.158599676234928,52.057179182877562,321.910813067108393 -175.134491383446147,52.058760491824053,321.876455365680158 -175.118971600534792,52.054036947559808,321.859486344270408 -175.119536533076655,52.052771995239915,321.861393619328737 -175.115577351366625,52.04584636744147,321.862193047069013 -175.094723428769896,52.034333211228436,321.843986887484789 -175.046202659941912,52.057057959489249,321.757264747284353 -174.997097125385665,52.060956559970336,321.686569646000862 -174.994169086191334,52.058142731933458,321.685076641850173 -174.982357518671051,52.061010790205181,321.666340036317706 -174.939359360100525,52.077873716131229,321.592381532303989 -174.924162314482203,52.091119365194494,321.559722414240241 -174.92941258505229,52.100953843586495,321.558108533732593 -174.921906111746665,52.108812611891835,321.540791125036776 -174.907273801557068,52.116047520846415,321.514274737797678 -174.868590270271397,52.102711727037033,321.473227748647332 -174.841580491754883,52.090878681957022,321.446772339753807 -174.788675890423832,52.090865520030931,321.374216903932393 -174.658165031447624,52.107504847654745,321.180206260643899 -174.606743980009895,52.121667033806915,321.096957713365555 -174.570276624492323,52.137968888477609,321.032350013032556 -174.558955561546611,52.153179392783869,321.00327431038022 -174.556545909492144,52.15994713063079,320.993945316411555 -174.528958238295218,52.174261934290591,320.943291181698442 -174.498758219959512,52.17869321843137,320.897829475812614 -174.467068119499316,52.180253653860973,320.85285752825439 -174.457586204130877,52.176344978166846,320.843283083289862 -174.425933709536793,52.168596825975754,320.806588746607304 -174.417169953372763,52.168919951294946,320.794235947541893 -174.40646873849397,52.180873591962765,320.768909825012088 -174.407344809549954,52.183103479184261,320.768139051273465 -174.459684246627603,52.20237279147684,320.823035903275013 -174.464842541465401,52.212572257728816,320.821045811288059 -174.455627028641118,52.218364148263184,320.803216373547912 -174.40202144837582,52.218594992718934,320.729292913340032 -174.362514230248451,52.212536890997335,320.680307717062533 -174.330483014175229,52.211190461798552,320.637396072037518 -174.30092891744701,52.214213799982609,320.594004273414612 -174.25173543733689,52.243237303555581,320.500495512969792 -174.257720573709861,52.273693863994836,320.481680951081216 -174.303705570322109,52.278489917273333,320.540695616975427-173.604346449710533,52.15333066610971,319.682104320265353 -173.592460399418087,52.144951228049734,319.672739109955728 -173.516071790116627,52.107909098090026,319.597877118736506 -173.498921030877398,52.103202582993255,319.577939921990037 -173.469779323457288,52.115984487230804,319.526356629095972 -173.377133351961277,52.107791345251641,319.403833246789873 -173.377499262289149,52.105906422742123,319.405943427234888 -173.374478186693949,52.102313630520968,319.404763236641884 -173.359402291026413,52.09569316704313,319.389277747832239 -173.240202524248701,52.100008903068364,319.218702680431306 -173.175115557136706,52.108702572273025,319.120130616240203 -173.126414811222332,52.108987348674155,319.051570455543697 -173.121165868397554,52.107195512918949,319.045709487050772 -173.109283814364261,52.098848074424545,319.036037501879036 -173.068341730637655,52.09589886852423,318.981010706163943 -173.021500988264535,52.097450559747436,318.913890448398888 -172.960437358216865,52.093218737933881,318.831550828181207 -172.962665017975809,52.086588994733589,318.840210733935237 -173.035077648565675,52.074181368313312,318.952412215992808 -173.049451228465642,52.072899191950249,318.973691681399941 -173.109842926758517,52.078396969819494,319.053960814140737 -173.208743754205443,52.063100045794229,319.205627487972379 -173.315608819442133,52.058267532357021,319.359544511884451 -173.426078465074994,52.045863299516078,319.524716446176171 -173.513812578559254,52.030842552598514,319.660155273973942 -173.55028155876019,52.028872052982933,319.712812383659184 -173.613909846827312,52.050710058859202,319.783163169398904 -173.719893619847937,52.062628825611114,319.920823060907423 -173.80146511521653,52.053208934344894,320.042509467341006 -173.818889449032156,52.048096882035992,320.071147642098367 -173.822582133086712,52.042871055182061,320.080764790996909 -173.833444744729206,52.04032199433609,320.098070639185607 -173.902963311195009,52.04899249426164,320.187354235909879 -173.93912671449462,52.05706955568288,320.230674287304282 -173.937449062293126,52.06428726164377,320.222124962136149 -173.973218598231767,52.098982147408954,320.241819359362125 -173.994162207141528,52.100144067507308,320.26987012475729 -174.003753729475562,52.097194737727605,320.285731131210923 -174.013225534826603,52.098415531870209,320.297810095362365 -174.036969512208515,52.112504526362343,320.318498933687806 -174.048637607757598,52.12195492028669,320.326449093408883 -174.054183801278015,52.129951476840894,320.327169724740088 -174.050339007511468,52.132462427050932,320.319656792096794 -174.038742434844721,52.135429481179351,320.30100870039314 -173.986134421491329,52.127407861373676,320.235079267062247 -173.89262479140757,52.125024284276861,320.107408875599504 -173.832798706056593,52.110005910075166,320.03727830760181 -173.825979689654787,52.105448221634191,320.031728878617287 -173.820169817671371,52.104919338356069,320.024107235483825 -173.804232273665633,52.105946548697233,320.001061297021806 -173.723162380155628,52.129763796152666,319.867783735506237 -173.65630278644403,52.145749164545059,319.760973780415952 -173.626670807407493,52.151770375455492,319.714537450112402 -173.604346449710533,52.15333066610971,319.682104320265353177.35357342772906,52.07082131060988,331.546187800355256 177.330987979781668,52.074633820000045,331.569199054501951 177.319725133571069,52.07985242217454,331.57695984095335 177.30354926656068,52.089747740114809,331.585405055433512 177.288959280224105,52.101572991279575,331.589752716943622 177.281847057695046,52.113581338341447,331.584859112277627 177.278518666987679,52.127000673310633,331.573804697953165 177.280165339081549,52.134547348450461,331.563342677429318 177.287184790244197,52.143611028649119,331.544700745493174 177.304365824033965,52.155528719220136,331.510606529191136 177.327651719939439,52.166089557744684,331.470678506419063 177.338883240387275,52.169743546244412,331.453037278726697 177.365710233332663,52.174719691550365,331.415114696137607 177.38200877093422,52.173696965966037,331.396620417013764 177.407188243832252,52.167053622843035,331.373723926022649 177.424128109428096,52.156625338964268,331.364991587586701 177.436277118293134,52.146295983871454,331.36190767493099 177.44433630452292,52.134553636944062,331.365326250903308 177.444917048657686,52.113877597530404,331.387749848887324 177.441377495475194,52.10468397193673,331.40229856595397 177.433932026807128,52.096436248402497,331.420506944879889 177.427156428070077,52.091163397124873,331.434582084417343 177.400390690752687,52.079093580934668,331.48039888497442 177.385162321077985,52.074621575169758,331.503789353184402 177.35357342772906,52.07082131060988,331.546187800355256-172.635083040539087,52.265783450749971,318.229451870545745 -172.62219278078345,52.298318238942876,318.184005981311202 -172.576088976970112,52.344888961240812,318.079964484088123 -172.56998631024976,52.34898588263971,318.067929710261524 -172.476549174603548,52.383328919284345,317.907567825168371 -172.450122178512515,52.391005019216976,317.863919663242996 -172.407184174623382,52.389008810888555,317.805172765627503 -172.328386152539395,52.366041103794849,317.713432013057172 -172.313369091213559,52.35602578620788,317.700629910454154 -172.30433470057946,52.341927548204033,317.699653824791312 -172.30338618119444,52.329522103973403,317.708655917085707 -172.315073482560422,52.3202683151342,317.732860378921032 -172.416355016419146,52.276311571070316,317.912397905252874 -172.530027177781818,52.253906688748664,318.091394141316414 -172.610865079676728,52.252583424408641,318.206406218931079 -172.618768979892167,52.254886194384952,318.215610592626035 -172.635083040539087,52.265783450749971,318.229451870545745175.909679695373569,52.33422430862214,332.958967588841915 175.901163891690857,52.336216101414443,332.966563824564219 175.889077994191098,52.343906584144449,332.971602825447917 175.871710939622233,52.360529585500153,332.97223702352494 175.872746549125367,52.370395147234973,332.959367190487683 175.905126358496005,52.375042374508872,332.916108104400337 175.948951241062645,52.367749305056179,332.873569879680872 175.964912051374284,52.359120917857275,332.865104866214097 175.942572600488347,52.335830682227765,332.918651550076902 175.909679695373569,52.33422430862214,332.958967588841915173.586017323787019,52.476140893764281,335.433277165517211 173.622344082272548,52.506302978861143,335.355191567912698 173.679045018941508,52.512233444241247,335.284786328673363 173.73472721353474,52.511778190607679,335.223439319990575 173.767959139482429,52.511428640028434,335.186888372525573 173.771255107708129,52.509261782521989,335.185925737023354 173.770858226770628,52.506233916390862,335.190150049515069 173.753436172479866,52.495484182998275,335.222974526695907 173.737842782471063,52.492614111615531,335.243918729014695 173.706200371692233,52.476734429513456,335.298960657790303 173.694179408204576,52.458293121666173,335.335342351347208 173.690061995960178,52.445293666754807,335.356125100515783 173.692321174457305,52.438053029765207,335.362626439891756 173.700713035898161,52.434163318226567,335.358122264035046 173.702760060036525,52.431551465250919,335.359091934747994 173.710784186653569,52.420393084138134,335.364027189090848 173.717622775204148,52.397064249534132,335.385372335091233 173.724158990377276,52.355942234703747,335.429016705602407 173.649758423372731,52.355732277496109,335.512265935540199 173.643258592886269,52.356960136291391,335.517988795414567 173.639290658966445,52.358790000122085,335.520143068395555 173.605233118732059,52.377609687783746,335.534725067205727 173.593863017277471,52.391252909759793,335.530424913391471 173.587259918215068,52.400332404700762,335.526476357132196 173.55835785637197,52.400524020925438,335.558365744538605 173.542245677653284,52.392025204629071,335.586848312057555 173.510630975661769,52.384394147664359,335.631464443169534 173.482312955638832,52.382843852666333,335.664833892136812 173.46391251851432,52.383979562021779,335.68383782915771 173.454056667126224,52.389014201744295,335.688496501185 173.393972186405222,52.40200382447636,335.738873157650232 173.384176458266751,52.403428632058535,335.747938795946538 173.355400408616958,52.403229269583399,335.780035058036447 173.35457637730741,52.404919180848488,335.77883371245116 173.378529683582002,52.431198276693898,335.71945075225085 173.438579958326216,52.453019046946103,335.625665720552206 173.444164727785846,52.454386056231989,335.617770117707551 173.466166372726633,52.443828827800651,335.606617735698819 173.474711181641652,52.441265056684998,335.600356111302972 173.499489404004862,52.440282423010864,335.574116481468081 173.523627363141401,52.447493403470283,335.53833207115531 173.528571137647162,52.4493243831905,335.530559138394892 173.548466891681926,52.466422853610986,335.48710457701236 173.548069803030074,52.469344713922133,335.483889129012823 173.543766734812777,52.475355381375863,335.481138377450407 173.554203272072357,52.47882735703265,335.465215969830751 173.586017323787019,52.476140893764281,335.433277165517211-171.296525573225978,52.450687518445314,316.180597806349397 -171.301319348640618,52.448298541485599,316.189369917847216 -171.306141285193661,52.449534407860426,316.195242510177195 -171.315055092360893,52.472513269577185,316.189283329062164 -171.314631022832856,52.49308239162356,316.171932736411691 -171.309473508544357,52.501094133148513,316.158056581392884 -171.293361501224979,52.514392830419801,316.124265847727656 -171.279140202156327,52.52221373182298,316.097634067758918 -171.254029148871808,52.529533836730202,316.055903598666191 -171.197989187980056,52.499688054118877,316.000339742749929 -171.196615129061882,52.497621165877106,316.00005794968456 -171.210893478768156,52.46860617518719,316.043943841010332 -171.216539084094308,52.462883327272003,316.056631350889802 -171.238815965945065,52.450110505605146,316.098751960322261 -171.254288538420667,52.449049293253196,316.121685932390392 -171.296525573225978,52.450687518445314,316.180597806349397-170.843923467545494,52.557756493050825,315.447732243686914 -170.835353568497169,52.599568850454347,315.401749121025205 -170.822632380411051,52.632673652344174,315.356776972301304 -170.81993459084191,52.635857562023709,315.350342617370188 -170.729712780305732,52.679560220179837,315.186031263321638 -170.673542975081659,52.697664397405113,315.091101938858628 -170.635751867199616,52.697052060406527,315.037591812200844 -170.581912471140839,52.681613623708401,314.973073552362621 -170.56473355760366,52.674370221086626,314.954328263178468 -170.5615223216044,52.667492567404089,314.955269985832274 -170.559322654138327,52.651691276063573,314.964829064905643 -170.565607982074795,52.640292654833686,314.982987738214433 -170.605857232224906,52.6013196361532,315.071909186430275 -170.637413192821583,52.595298361458291,315.121949918568134 -170.661034532886191,52.593398044860301,315.157312156632543 -170.667259447408469,52.594846878285075,315.165065685287118 -170.67006862502663,52.600263599978625,315.164740708656609 -170.676446592948139,52.602971377162547,315.171698376536369 -170.685847323551371,52.602071257335133,315.185880835168064 -170.698480829324524,52.597950220517362,315.20727901533246 -170.737815077157251,52.580409307566526,315.277682525105774 -170.769367287645281,52.557840741542421,315.340975933708251 -170.779131525997343,52.546251073156526,315.364254919812083 -170.790482959452845,52.539827157366794,315.385660159401596 -170.843923467545494,52.557756493050825,315.447732243686914174.067624457865293,52.734238395116051,334.573246522806585 174.090510453052076,52.741410371031378,334.538680205121636 174.095087252426111,52.742835366672772,334.531778242439032 174.131586406379853,52.733137287805981,334.503282941877842 174.143762195934215,52.7279016859896,334.496283576823771 174.154200326268494,52.71472742184347,334.501204457134008 174.157688497952364,52.706739830705466,334.507350440137088 174.156582581512993,52.705411876462286,334.510255611501634 174.107847083573091,52.707912120538644,334.561548206955194 174.070280963628448,52.717646183568071,334.591207194142044 174.06463369308193,52.730392530337461,334.581432671286166 174.067624457865293,52.734238395116051,334.573246522806585-170.172697097742088,52.784505194575146,314.304025860503316 -170.130729224491773,52.787012801418904,314.241798393428326 -170.06388419007996,52.773114522842775,314.156914445571601 -170.055459186955488,52.768665853583961,314.148353844881058 -170.054937722406692,52.758335298155913,314.155829982832074 -170.05737807045773,52.74547779928843,314.169564113952219 -170.072300717201898,52.723892457543855,314.20816639252007 -170.079747359508673,52.720007495304493,314.221959434449673 -170.116099291034487,52.715763057709644,314.277604132890701 -170.172656985642334,52.716949048080622,314.357950084842741 -170.186574861188319,52.721526618456288,314.374297224916518 -170.187694883435796,52.72259655421604,314.375053037889302 -170.172697097742088,52.784505194575146,314.304025860503316174.003268099761016,52.719207231075501,334.663921672850847 173.971041813683684,52.728772372999394,334.687714695930481 173.959321886902643,52.737484823352894,334.689737075008452 173.951234804174817,52.747233274567407,334.686394236981869 173.952516636408006,52.750758131437557,334.68050667271018 173.981872758691566,52.748401624154731,334.650844117626548 174.002091266826511,52.743632106433203,334.634378989227116 174.020142175570641,52.729635979236605,334.631964175030589 174.003268099761016,52.719207231075501,334.663921672850847173.931368499362662,52.745997069760108,334.710040962323546 173.929354437801067,52.749574880918679,334.707747855223715 173.923713074547805,52.75178080653648,334.711221238598228 173.893196603744656,52.750127381234208,334.747209155000746 173.874028836374777,52.761244625255294,334.754383374005556 173.860096877252829,52.772924912698798,334.755005948245525 173.865879632153337,52.774473918307635,334.746624974533916 173.879855176933631,52.774374106186869,334.731250095181167 173.895894766407224,52.771126463943595,334.717576381750405 173.929995119059811,52.757921510586549,334.69646074436605 173.938479080445404,52.751207926633462,334.695539755746722 173.931368499362662,52.745997069760108,334.710040962323546172.761844946232941,52.822985867414609,335.893619267269969 172.76586747470472,52.847700328586257,335.857050814665854 172.76516999764263,52.861996671136083,335.839143981225789 172.752712894915106,52.876816839547203,335.833238665014505 172.638851026370816,52.924764209830215,335.893152059987187 172.583556024602842,52.920649688649817,335.958046131767333 172.547182489886808,52.913644540938968,336.006357130594552 172.511480007324337,52.904503499103122,336.056735468097031 172.467507268973293,52.910658659414608,336.095822910778224 172.460151963906355,52.926480849246126,336.082850240170956 172.627553740375532,53.000643638733017,335.805283925496042 172.641742135212525,53.004298655774811,335.785210891626775 172.745038465162509,53.010070720954182,335.6664849659428 173.105710022640324,52.992554160052194,335.299543322063982 173.120448633336139,52.989678480291829,335.287301889620721 173.129970416503312,52.986847731017441,335.280661588534713 173.158107953629013,52.973490696964078,335.267534662038088 173.170866012647565,52.959873475823507,335.2714300211519 173.210211451081022,52.938818935090296,335.256025609560311 173.233723521985581,52.942958053277238,335.225017368793488 173.249783961819787,52.943692228517428,335.206554316915572 173.293856114902098,52.926318584246282,335.181049919687212 173.420137822762428,52.844813909091329,335.148260829038918 173.426126146435593,52.830100653297528,335.160631077364087 173.422275343442209,52.828136692197177,335.167383152060211 173.411472733007457,52.827228592886073,335.180403590202332 173.300791560598356,52.822622364506849,335.307619435712695 173.282877990040532,52.827268921570067,335.32123030629009 173.22753182833668,52.855489925697533,335.345266818068922 173.222512986203981,52.855736849505824,335.350427573546767 173.203410885072373,52.848244941474242,335.380975413136184 173.186416063753171,52.830834510595459,335.42204247135669 173.172008497563638,52.803713554760371,335.472802898846567 173.165365039933818,52.79456488432659,335.491862081922591 173.14114515906482,52.785589979111151,335.529883896932006 173.132988496369904,52.783692959968405,335.541234801523387 173.117028023130331,52.783775750105754,335.558546914719045 172.996943572782726,52.796312631805044,335.673191135749221 172.902103962814664,52.761001018244251,335.82200691755861 172.807865137439961,52.788621551438034,335.888479822315276 172.761844946232941,52.822985867414609,335.893619267269969-169.945544091436318,52.860686853356825,313.91697062086314 -169.907654634900467,52.8528288286997,313.868830899707973 -169.862238962204941,52.857966387406634,313.799462602473795 -169.820165904461845,52.8780352639196,313.722975588403642 -169.775532719081724,52.894039355800516,313.646044362336397 -169.751206245556148,52.892858820720669,313.612005862407386 -169.70676598024383,52.885862872838103,313.553639112040401 -169.668541868438496,52.863941443992125,313.51599089615047 -169.685509705438164,52.82621173595534,313.570262907072902 -169.706130694488792,52.79353275644204,313.625750968232751 -169.75216044138088,52.790170112328966,313.694769074209034 -169.840255577557571,52.816871487464518,313.80053714569658 -169.881888526062312,52.815678827996791,313.861386734060943 -169.888693013968293,52.808154028409874,313.877154511399567 -169.899099466504452,52.801722121643735,313.897234546020627 -169.929466300976969,52.7922660024187,313.948430178686976 -169.953517536619614,52.788205763944788,313.986249987967312 -169.964902322363201,52.78947251686224,314.00161471311003 -169.997441226871331,52.804265340529319,314.036603754386306 -170.014507044690163,52.830748936351362,314.03995412401855 -170.006238966534198,52.846330422413295,314.015605646185577 -169.992170746956418,52.855853262075634,313.987780136056244 -169.977367224292749,52.858471404264961,313.964433056302369 -169.945544091436318,52.860686853356825,313.91697062086314-168.213787694413071,53.255785390237563,311.105445018969476 -168.228997276309201,53.254423180118835,311.128573554567993 -168.272824678568099,53.242411904889927,311.201477539725602 -168.298308333126528,53.226836096141234,311.250525495968759 -168.314454377698638,53.214832304996349,311.283253901638091 -168.343754281002049,53.1855129935742,311.348467891104519 -168.346542735234067,53.154818202597596,311.376212754286826 -168.375222802973184,53.128494783278512,311.438156375661492 -168.394451103287224,53.123212665530851,311.470161512494087 -168.414593015049491,53.110286846219068,311.509377063252032 -168.435803719067394,53.09353816613725,311.553083418868482 -168.444928105879086,53.085166352043743,311.572780048474669 -168.453229413335492,53.074735637246889,311.592859880998731 -168.45917035167011,53.055444328969386,311.616300206631422 -168.499555437823972,53.035008470569814,311.69069267436862 -168.529468418166061,53.028193232698264,311.739413373172283 -168.548123032382733,53.029184868013338,311.765772468410432 -168.555259044035779,53.032900590735515,311.773291664198041 -168.580958285422554,53.0295192845416,311.813236563466489 -168.58987094747647,53.026779243151616,311.828293376602232 -168.616025462083911,53.008380550217545,311.88043749704957 -168.627317696431192,52.997818791450989,311.904959071427584 -168.690525712992411,52.96600501449015,312.021241484209895 -168.743906759830963,52.951046711335309,312.110297258011997 -168.810906997282103,52.925706605657773,312.22710217628628 -168.909051717453565,52.883610663561171,312.40200363099575 -169.043381473194103,52.838952212930316,312.631391315720975 -169.104506336491085,52.823952788583142,312.731656200252473 -169.056287294009024,52.862868991653244,312.631706408225 -169.040811957595167,52.869264991101289,312.60432177875191 -168.994449221788273,52.873043632004865,312.534129297360778 -168.973756922271122,52.877631797199491,312.5005605192855 -168.961030597898969,52.885651682176992,312.475913083180785 -168.863131763273088,52.9676479614035,312.270593513734639 -168.787295195875629,53.04463808462225,312.100973931141198 -168.765749936141816,53.070560387176691,312.049601582810283 -168.761752531060296,53.08106002324147,312.035636779852211 -168.770605908045894,53.093282365909388,312.038929426111281 -168.77823792457454,53.097364065459438,312.046792493201792 -168.791485767603632,53.100567703953487,312.063464839942753 -168.804091819304631,53.107823186645213,312.076032203622162 -168.806963316017061,53.119611651357978,312.07095564249903 -168.801532582161883,53.143389766917771,312.044451895169914 -168.794391321423518,53.155315400355029,312.024760637432337 -168.790820646413948,53.160344255576916,312.015646864660084 -168.765397302001844,53.182406790371438,311.961552236229181 -168.619216494464752,53.260579128288946,311.68877003248781 -168.541472860609844,53.251265861230749,311.583723401650786 -168.527066227829408,53.251907085781461,311.562383271753788 -168.503441022340382,53.256936291685818,311.524263114668429 -168.493033588007165,53.263605200667847,311.503976822830737 -168.447160720999165,53.264926945841552,311.436565150506794 -168.414929109133766,53.257456812379125,311.395746343769133 -168.368597903424956,53.251622858177335,311.333185233175755 -168.363837025124013,53.251851931846979,311.326107944361866 -168.346073917672896,53.26174883787116,311.292656292207539 -168.367469701410386,53.308701551639174,311.286944871768355 -168.37329992918626,53.316171145961391,311.28952369466424 -168.377755908990423,53.317886998398372,311.294623772613704 -168.408613558717889,53.345987317481509,311.317141617648304 -168.388973174808797,53.431087210245813,311.221459750086069 -168.344217402684762,53.475582194875123,311.121533416211605 -168.317938297853686,53.481319423156741,311.079074461944401 -168.297885126229971,53.488652478382768,311.044321803376079 -168.241666886357677,53.518081277449809,310.939832828938961 -168.240416083767627,53.521492162101865,310.935313913971186 -168.202539566992556,53.533669336181688,310.871001922525465 -168.146718422378314,53.544932862575223,310.78152867872268 -168.00672669756068,53.565645489792942,310.563035428524017 -167.983141028692728,53.561307078389433,310.532399956136942 -167.964826073513677,53.553662707004662,310.511974010616541 -167.96296404128276,53.55214380067526,310.510481593199074 -167.967816477478834,53.543034080893158,310.524681568145752 -167.967140268838278,53.538507274485404,310.527272864244878 -167.941083276680615,53.526502214624429,310.499042524024844 -167.903973816885411,53.520104124156468,310.450372904539108 -167.891004075736248,53.519287385081547,310.432240302674472 -167.819102646634207,53.517544720279439,310.329478301107883 -167.79897160031507,53.520710947580056,310.297837046906352 -167.793131399547747,53.520674051897544,310.289403195492923 -167.791269355783555,53.51892715481118,310.288068747147918 -167.788492150380847,53.513494421834423,310.288283435627818 -167.786203566516065,53.500646978174991,310.294981555081904 -167.790170047703242,53.492010255448449,310.307459031231701 -167.810219669149944,53.473460648641151,310.350970310159028 -167.845711866538437,53.45349282833984,310.417977591976523 -167.855325229744864,53.445068998779682,310.438470080494881 -167.860436739416969,53.437510213661767,310.451757739298046 -167.858936315569423,53.428209615152916,310.456800172105432 -167.853797070586353,53.420837002952325,310.455058580264449 -167.846899045062088,53.417098275075801,310.447941969148815 -167.841618813337021,53.409926657381924,310.445827719755471 -167.841985022990258,53.394034292854194,310.458647795952857 -167.844425576416256,53.386091570980902,310.468327678740025 -167.854313946583829,53.377896728613408,310.489020382985473 -167.874974934998761,53.366962808105868,310.527478418312967 -167.880223791892718,53.366504734484117,310.535458484664559 -167.961188698509346,53.341390331068638,310.672471575438976 -167.990578424280613,53.329180310987901,310.724592887796462 -168.011391342832098,53.316865446060525,310.764336301013827 -168.04184900671865,53.303878440036641,310.818607024848461 -168.161027474546131,53.267311842479991,311.019937235862017 -168.213787694413071,53.255785390237563,311.105445018969476-169.998735226850272,52.891060673669294,313.968916947953403 -170.001116823190927,52.883619944972239,313.978318810462952 -170.004390567864135,52.879825048323006,313.986065941862762 -170.017535787584762,52.869846243025485,314.012942407280207 -170.052294355291735,52.857019189803893,314.073106369003654 -170.097350893290923,52.87043586013003,314.12689810898155 -170.115209402654358,52.890661707892235,314.136148172430694 -170.114873920735619,52.901626253954191,314.126796739175916 -170.094243225988464,52.91896987847435,314.083216447383165 -170.086007622842089,52.923222840602392,314.067981499247253 -170.048583535184747,52.923436468845651,314.014225967228413 -170.022516851658423,52.916755192451056,313.982288755476475 -170.004094962887365,52.909627804643371,313.961642246693373 -169.998005752218063,52.901963229339522,313.959091818891466 -169.998735226850272,52.891060673669294,313.968916947953403-169.723776420603883,52.94670503935815,313.52958017680794 -169.743128163673106,52.951099525080032,313.55386193934828 -169.760040496532895,52.966832579644922,313.565527065657079 -169.762757633634919,52.971142353492105,313.56596542801708 -169.764772890075619,52.977636048348188,313.563638176769018 -169.747778337899092,53.021054531450382,313.504282370209694 -169.744573537183612,53.023656478096612,313.497586869634688 -169.70016505830344,53.033363834839776,313.42606732994318 -169.68207055260109,53.034660090881751,313.399066145531833 -169.666967390822208,53.023558810880822,313.386333765462041 -169.665613295308134,53.020843946920685,313.386574162170291 -169.668114096832625,52.996654910191644,313.409597116522491 -169.700307504555184,52.957854975627264,313.48693598434329 -169.723776420603883,52.94670503935815,313.52958017680794-166.731072002504703,54.002708860116819,308.373814064078033 -166.678795921594173,54.017017240378891,308.286888509057462 -166.646783492134034,54.014093928211643,308.242765889503062 -166.639092536405059,54.01159916320492,308.233558091334999 -166.621910368342469,54.000863889093054,308.216990914195776 -166.602102906386989,53.983295928336261,308.201886914670467 -166.589547957127706,53.959433083418737,308.202130923047662 -166.607592320818981,53.954955934412354,308.231802558526397 -166.624132865988457,53.95334570065549,308.2570711215958 -166.648937765980918,53.923387425754321,308.316263907589018 -166.642617328900968,53.912121979315103,308.31577464658767 -166.621153834789908,53.893118107143103,308.29920597653836 -166.599332835576888,53.883594870799236,308.274779700674117 -166.577241086961749,53.878841452728516,308.246275377459824 -166.562697389234415,53.878380731406125,308.225457281805575 -166.490000873244583,53.895054382644894,308.106844964437187 -166.445854594929472,53.909333616881035,308.031633378006518 -166.438682086045702,53.915757494788771,308.016276744194329 -166.437309336403501,53.920021352978289,308.011017264798284 -166.439241110405476,53.955248944416688,307.986839619465172 -166.375851341665566,54.009633968089851,307.852844271808863 -166.369622422462356,54.008507123900799,307.844653537496924 -166.359279313532227,54.001947564778483,307.834653037600219 -166.35677619822377,53.998643738179524,307.833549542352557 -166.356503021739798,53.995119880040555,307.835857704281807 -166.362085945483926,53.976741494283893,307.858078746125102 -166.322055958590454,53.959732876100915,307.812808337621391 -166.281570020497327,53.982138732880244,307.736723911948502 -166.266682093979455,53.977157194524864,307.718841657042503 -166.213126008455504,53.933166870631283,307.674213891848922 -166.210928827412033,53.928720083435998,307.674377135001123 -166.2133679068167,53.911944693501432,307.690635232254863 -166.238671747124584,53.880954447989083,307.751001890748739 -166.253093195657613,53.876462364194779,307.775456875562668 -166.322160283934579,53.869137409263608,307.881843093782663 -166.354154006861734,53.858142264812244,307.936868521384895 -166.391348834541276,53.831953622967966,308.010987269692123 -166.407047306605222,53.808956243422998,308.051294743083417 -166.43699605959938,53.797623151381991,308.103596999309957 -166.549583067360402,53.749015047047408,308.304757723584771 -166.554221899607427,53.728109788215178,308.327316009439528 -166.542674517928702,53.715538490820215,308.319912461563945 -166.471258127871607,53.735547979888793,308.200449443422258 -166.462470828167625,53.745450747084519,308.180153930559754 -166.422619544167134,53.761700821337094,308.109668029472232 -166.338919682628415,53.786703339369282,307.968488657847047 -166.305353655466973,53.791151767086582,307.916056440211833 -166.214758975447722,53.816741390538468,307.764332712627947 -166.216468107134432,53.82004423038731,307.764358569867909 -166.214486527845253,53.827382978492018,307.755957694724202 -166.200908256569079,53.835713896361753,307.729846948757768 -166.122081975277496,53.854662573091915,307.600321615114808 -166.115197058857831,53.853330749083824,307.591243612580001 -166.099724899968891,53.843605407880482,307.575869628228247 -166.096306728945677,53.838815656763806,307.574442700482905 -166.113473148551833,53.776473790754487,307.646015423350036 -166.1688557030472,53.733020503032918,307.759468507021666 -166.201211678433111,53.726946161025232,307.811428555287421 -166.265123061259658,53.703327944549471,307.922678466886282 -166.267330734210731,53.697866120338887,307.929968994110823 -166.277043959637012,53.686871379915914,307.95236932579428 -166.285414620105115,53.683837349571327,307.966896804980934 -166.447050825753223,53.640263177358094,308.236263770610094 -166.469724622417374,53.646190537062822,308.265081901103258 -166.534778363660337,53.630149009401308,308.372349347919226 -166.556121530292387,53.623063908925545,308.408899373374879 -166.58314424193594,53.530068123332384,308.517620453611016 -166.658363394766695,53.486738511221311,308.660069002769887 -166.664405171625646,53.484968474307692,308.670246310532093 -166.670050079885073,53.485646346661937,308.678031046874821 -166.714603708853673,53.498063057063654,308.734204713255167 -166.737167615893412,53.506257328008104,308.761205991730094 -166.745182846826708,53.51443685872426,308.76687073148787 -166.774782261687221,53.495988068642674,308.823983874171972 -166.791186732667256,53.452718507860567,308.880168278701603 -166.865241617527005,53.443495561042511,308.995625715702772 -166.880208585512548,53.429501856343578,309.027965478599072 -166.924795147459719,53.44075261324727,309.084962057881057 -166.961203059167616,53.455368380831281,309.127392644062638 -166.996447946370438,53.428816820502028,309.198837745934725 -167.038223007101777,53.448902940088743,309.244977894239128 -167.050328712707739,53.448458076570979,309.263025619089603 -167.052142887219418,53.432681677586849,309.277499162591994 -167.077502914868063,53.424593552868963,309.320673211477697 -167.114123683219702,53.416389233673598,309.380412422120571 -167.126392841658827,53.425147664325685,309.391794731840491 -167.136249664918182,53.426061453006774,309.405526718124747 -167.203544731643319,53.397513409860522,309.525391994975507 -167.293940018519152,53.363715173633253,309.682981214486063 -167.30508942501595,53.336525074427058,309.71969785541296 -167.310233181554281,53.333944087873341,309.729158570058644 -167.350759212479318,53.332875415571642,309.789241624996066 -167.389089709598068,53.340283439698688,309.839712986722589 -167.444907476944167,53.320627250063467,309.936094902455807 -167.468405709514485,53.29550085334423,309.989353285171092 -167.490314899901875,53.268734552795621,310.0415009399876 -167.517569220498871,53.267489123463506,310.082290331833065 -167.532983251755894,53.275271536284464,310.098970062099397 -167.541346169811789,53.277476299614193,310.109532384201884 -167.591278565264759,53.288308981395559,310.174301468767226 -167.600526322939686,53.287658845060164,310.188296102918684 -167.612000927101946,53.284910754691381,310.2071273913607 -167.624268938545129,53.249973957785578,310.251421363092959 -167.646274461045039,53.250453551470692,310.283205966465175 -167.801077584148629,53.284364454332284,310.483314653858542 -167.837183483784656,53.299226217081845,310.524551631882787 -167.853604549816993,53.30827356166219,310.541528503410518 -167.854426870072899,53.315204266013907,310.537412645295262 -167.793024253538704,53.335125536549477,310.432784283533692 -167.712546346183274,53.380931098095168,310.280546312220395 -167.69658504156655,53.387639107964212,310.25217426288873 -167.655215196433488,53.391881664849869,310.188711592927575 -167.624191562792646,53.38493549157009,310.148855563253164 -167.490359324816836,53.419608452466733,309.927407142706215 -167.476565221493416,53.431389221560572,309.89831954985857 -167.475436554976113,53.437607991218989,309.891928552649915 -167.459475155502588,53.442400080201494,309.865014793351293 -167.396095445706294,53.439360321801509,309.774950454011559 -167.375637564558019,53.432384963795307,309.750417628325522 -167.357734560706717,53.424107613141935,309.730580260977149 -167.334903504909477,53.432716670339154,309.690734773874283 -167.321255717393285,53.450926179700794,309.657004714012146 -167.303403851385127,53.465614905566454,309.619806569069624 -167.280941984640691,53.478173799054829,309.577499755658209 -167.270017209766934,53.477724010444852,309.561905607581139 -167.228297685530464,53.468302126920889,309.508171690627933 -167.219721715252405,53.464999411272096,309.498152292333543 -167.202081997174815,53.462649817898537,309.474172354675829 -167.195917333817221,53.466617767878382,309.4621696844697 -167.160638960693774,53.503356920645672,309.382854073308408 -167.104425795311101,53.514687464030821,309.292211013846099 -167.107937986699397,53.54011638525062,309.278067751787603 -167.133360750445263,53.546875664200769,309.310021749697626 -167.137816847788855,53.550835427007534,309.313509375788271 -167.163764000023377,53.605514785920633,309.309584004804492 -167.165320361417116,53.613418443563063,309.305794339627028 -167.161932613624913,53.616913364565086,309.298183619976044 -167.14255553776087,53.626573324177649,309.262570925988257 -167.109962581676569,53.632661660903025,309.210456231608987 -167.093503973275006,53.633043938107477,309.186198772862554 -167.086705778253844,53.626108334682584,309.181605057790875 -167.072208771931741,53.619463856551356,309.165564684197307 -167.064313960433907,53.61966498883605,309.153908067382872 -167.011763916060033,53.634951315269191,309.065663903951645 -167.010800274972695,53.641647066392267,309.059149999171495 -167.019992398234734,53.648213642108743,309.067527371458709 -167.032140373352775,53.653165229450927,309.081436386331916 -167.073952032842271,53.66516500964395,309.133116288110614 -167.069804221503006,53.686871222381384,309.110408106818795 -167.059826032877623,53.698467940259178,309.08697443921119 -167.043376863175439,53.707532873866199,309.056075094267726 -167.024517670987422,53.715070911081717,309.022845584899187 -167.00141534785385,53.718124201515707,308.986893753521144 -166.925459123792535,53.719324506926412,308.875438747927547 -166.897111663033542,53.717352090112541,308.835674154572189 -166.861156281300765,53.674047445080483,308.816315873526037 -166.863902451419165,53.658842998833912,308.831878962926567 -166.834859010354222,53.656985590016404,308.790911898948252 -166.808009035601856,53.665342737343252,308.745389623567462 -166.782129320206167,53.71873408614502,308.66707228217274 -166.789456939569845,53.734184345068961,308.66597892716527 -166.85862902893021,53.746906608565304,308.757009547203779 -166.944903212684551,53.769165191719154,308.865415641106665 -166.962818177455119,53.776443585273171,308.885839890688658 -166.97777175863942,53.774856381361666,308.908795472234488 -166.985430387032693,53.770950398982436,308.922941222786903 -166.994981727123076,53.762206573894709,308.94357343018055 -167.007913071418216,53.755048626178258,308.967892329208553 -167.018997794667541,53.754538448907574,308.98439469281584 -167.027115727747628,53.756843213310276,308.994409702718258 -167.077994047375768,53.785872161540752,309.045795279555023 -167.144101611116952,53.826529382133643,309.109954418614507 -167.143129661957602,53.866369832079322,309.077323970384896 -167.060310767182528,53.929372836861738,308.907961696386337 -167.033396170220101,53.944798713414485,308.856888533569872 -166.93260004714935,53.975686306844217,308.686778120696545 -166.881637853129831,53.988311725512624,308.603116133250296 -166.820786462673453,53.992794639592695,308.511515506543219 -166.75383515639831,54.015646948625964,308.39666726719588 -166.748249328428074,54.016533014234625,308.387884330004454 -166.744741333575746,54.015098132929324,308.383927181363106 -166.731072002504703,54.002708860116819,308.373814064078033-169.556166105765641,56.608133753987026,309.867075782269239 -169.530888970523961,56.611633086735026,309.830106685869396 -169.509645436549675,56.610154518233557,309.803736947476864 -169.475368800242165,56.601194440364118,309.768155114725232 -169.473780672008957,56.598317567638908,309.769120147451758 -169.492362283101414,56.582935763099407,309.809919647872448 -169.571208732686301,56.54038881583687,309.958924415521324 -169.584848143402525,56.536392709557276,309.981130545027554 -169.642957935439654,56.541614489960111,310.052079139277339 -169.652357811455033,56.543682250551512,310.06224671471864 -169.659958794160502,56.546771008115307,310.068957428447902 -169.669971955756012,56.553986580291209,310.074439276009798 -169.675041194585305,56.560317271450984,310.074355024844408 -169.673547612585395,56.566779075514368,310.065498565323651 -169.677551158572612,56.577864622157364,310.058928518556058 -169.685863230586335,56.582790303957566,310.064589282497764 -169.757972847956552,56.59137071964286,310.150097331032157 -169.787915315547423,56.61269245119496,310.166503970511258 -169.791882503687276,56.617664209403621,310.16636470798403 -169.765730337697761,56.620186590055788,310.129366496577859 -169.681531004274831,56.611042409825806,310.028690130449831 -169.613775499695151,56.606374782721723,309.944681099615991 -169.556166105765641,56.608133753987026,309.867075782269239-170.288558685779151,57.127590041238392,310.250284655950963 -170.293034585393201,57.144472396651864,310.237027727067471 -170.306204826566329,57.154329831922922,310.242835919372737 -170.327081376002752,57.156188396906643,310.267548797652125 -170.362057392717645,57.15553679410916,310.313184875063598 -170.42410602328647,57.160619516847014,310.387039676308632 -170.425787468896061,57.168744215363411,310.379994163289666 -170.422650911032918,57.191176522447996,310.35054712370038 -170.421160017023936,57.192260512894336,310.347407390363514 -170.405014004597149,57.201349498002251,310.316411265172064 -170.392363608462972,57.205664580040974,310.295308955013752 -170.334124865240852,57.216905245994113,310.207933701574802 -170.313952509499728,57.218539552145302,310.180223650299013 -170.294161614799293,57.211474141174378,310.162840693257749 -170.269910183777966,57.210067621655796,310.133321024477482 -170.241804185300964,57.214076990935837,310.092726934701204 -170.163897196335,57.229075886682161,309.975795433856547 -170.153063092912021,57.222588296384913,309.969195574522018 -170.173094997265281,57.180521338112342,310.042295852676034 -170.288558685779151,57.127590041238392,310.250284655950963-155.623037379351473,55.907250549255195,290.608326406218112 -155.57068519708443,55.907251602419898,290.528953776694834 -155.563070648542777,55.896784097326567,290.522636911831796 -155.562372201819443,55.882641346650502,290.528632159344852 -155.586870189111579,55.848243206064424,290.582941087894142 -155.566879024505539,55.809220887327491,290.571902645751834 -155.568785729163949,55.789236505315607,290.584659640677273 -155.591625628520688,55.761633954321184,290.63299563433975 -155.613506375684409,55.759729640341959,290.667230728082359 -155.651577596490085,55.775910280509343,290.717155789025128 -155.721064269610878,55.772102010925117,290.824697704054415 -155.730571541422563,55.778761600854068,290.835833142511547 -155.752469907737179,55.82159175301431,290.847675179131329 -155.745595677257541,55.831229601893163,290.832402432337403 -155.665847751695196,55.860230622739223,290.696839261800051 -155.640171262329773,55.893925639881665,290.640994170680642 -155.623037379351473,55.907250549255195,290.608326406218112-154.406554454552463,56.572032017306576,288.441429977305233 -154.396406943331044,56.562133532412339,288.431098227389157 -154.393832683403275,56.557676723661672,288.429436655715108 -154.395018406061411,56.553798820155265,288.433133464306593 -154.439330438575354,56.534301523065018,288.509324223734438 -154.532039917263887,56.502399627913384,288.664410338737071 -154.574232716161191,56.493909033335555,288.73202489502728 -154.636115294984847,56.471560472284487,288.836144333705306 -154.67104448632341,56.452287365457728,288.898256376385689 -154.694011088125819,56.43645439515263,288.940683570690453 -154.706654069351572,56.423973530188597,288.965920441783965 -154.73907322860245,56.403591512084233,289.024850193411112 -154.745409988949405,56.401421451548075,289.035466436296701 -154.767543632052934,56.40110401140349,289.068925298750401 -154.778288648326367,56.403817707400663,289.083732939325273 -154.791525906197364,56.410757219632458,289.10016833152622 -154.802430294359795,56.419128734293885,289.112365806475282 -154.80800474588014,56.427229365979215,289.116676036268473 -154.808638179659198,56.433923142514494,289.11426155641675 -154.780031473335498,56.461939844110383,289.057180351577699 -154.742173317973311,56.496072544436288,288.983136650174856 -154.708671488356089,56.521013446291306,288.920285028405488 -154.537265383957816,56.600281470663376,288.623364614322782 -154.527168763351767,56.603666571574578,288.606533264741302 -154.516617931419034,56.603800782780858,288.590654355473816 -154.452505647987891,56.600104206588703,288.496399874798954 -154.415975284185237,56.58651237480148,288.448380629532039 -154.404829033763662,56.58028779587093,288.434747065417469 -154.401928800201347,56.576155983536772,288.432443620637059 -154.406554454552463,56.572032017306576,288.441429977305233-153.943050374279267,56.558071927564768,287.751476336270571 -153.917834185940421,56.56467623905494,287.710370054468513 -153.881310785892452,56.565680955854965,287.654903627932072 -153.873350370492517,56.557771364038096,287.646664789877832 -153.871006966708251,56.551249614247375,287.64622194878757 -153.89022248913426,56.533393774903587,287.683617659844458 -153.955499765046653,56.506930261575235,287.794526295736432 -153.996449806833596,56.501551591350889,287.858804047107697 -154.122782955152132,56.501591007278023,288.049135020934045 -154.146249898893331,56.505924392653917,288.082392981275916 -154.166525711430324,56.507595926238061,288.112116594798863 -154.19981782922352,56.501753428184699,288.165058774873614 -154.23500057756209,56.490803051208154,288.223323247395456 -154.306907262527062,56.502071231313224,288.326076249592006 -154.345632209983023,56.509919195891406,288.380493707023561 -154.349936271017498,56.511794049538942,288.386048401705921 -154.363914970559108,56.525387340246986,288.400398267433047 -154.364899083933381,56.542258794434403,288.393582575954497 -154.343940815574996,56.5634515628728,288.351665867492557 -154.313454728081894,56.585193510052164,288.295179958455265 -154.292562705930237,56.595122628814707,288.258928221650422 -154.246778315714295,56.608941136288237,288.183411702513695 -154.226303872844085,56.612702438428443,288.150835196487606 -154.212880852142831,56.609431814270451,288.132291918620467 -154.208545729804769,56.606655988936929,288.127144332975149 -154.187363833086806,56.603521519283895,288.096875470131636 -154.139284919739623,56.609099330042341,288.021955060772598 -154.115943762252897,56.616494578734695,287.983301786705852 -154.105789976115176,56.617444757134322,287.967591552063823 -154.098380091591338,56.617535905969469,287.956419426947832 -154.092560976277042,56.614548117518787,287.94913171697408 -154.08437535121729,56.603466628064126,287.942212135531008 -154.081561468846559,56.589728111214185,287.944636452011764 -154.07773210645729,56.58349638271909,287.941893391311169 -154.0441157522514,56.55596192469465,287.904598893597722 -154.027877692434345,56.551516394937082,287.882295815274119 -154.011817906667915,56.551198733398799,287.858276464045048 -153.943050374279267,56.558071927564768,287.751476336270571-152.420079403061294,57.815213174140233,284.880608474835753 -152.36673616574447,57.829121897539416,284.795568212866783 -152.353809741888341,57.83451801574239,284.773980616591871 -152.326941353653979,57.824194870287208,284.739563670009375 -152.313581526000092,57.783204310428005,284.739740259945393 -152.319920597589885,57.771739502810746,284.754575138911605 -152.324825260734428,57.768067504318431,284.763551416806877 -152.345326537427013,57.762058245767108,284.796581545844674 -152.351296607891442,57.764145061573821,284.804351978003979 -152.351821900148536,57.768231934574082,284.803153589367867 -152.3598861873391,57.773669611482063,284.81238083448261 -152.383729064689845,57.776495032300545,284.846047785133123 -152.446438150795672,57.775891737242986,284.938456950709224 -152.468201190797544,57.766918536810479,284.974790515378118 -152.47365084380624,57.763215528041954,284.984599051997066 -152.499962658163838,57.738345685233689,285.035368989221752 -152.499704354156961,57.734136810478553,285.037037011235952 -152.470323896443404,57.68114193620989,285.019479731097817 -152.445674267005188,57.667801832570767,284.989598743617535 -152.40413818648824,57.686266173249763,284.919553710147738 -152.401215277695911,57.686963214459077,284.914914730004966 -152.397120148830737,57.684418372715626,284.910104201175272 -152.43158857968092,57.641915867530756,284.981253352947533 -152.463657534546542,57.606065225599771,285.045693547464907 -152.470811050405274,57.600750228850494,285.058788564056158 -152.470394855165068,57.59797531724216,285.059499997645617 -152.462567684842867,57.594127591196035,285.049784863367677 -152.442305677319155,57.590154128409402,285.021768984384835 -152.428701079467459,57.593112327497025,285.00027696788311 -152.405110464760526,57.607736400349594,284.958500284701586 -152.389780998649769,57.612183592994732,284.933762535452843 -152.364544808615022,57.618555937537131,284.893493879586458 -152.325375681385253,57.623158624178089,284.83350722771138 -152.267989688427775,57.626187736994929,284.747374633327127 -152.182175742819055,57.624568577806471,284.621427058242261 -152.164261876157866,57.623046996032159,284.595678965561092 -152.155037725416946,57.619245297746758,284.583825730718672 -152.162319748559128,57.593374886335262,284.606628141365945 -152.166638036849179,57.584368054287019,284.61719807703048 -152.262277578880997,57.526916707219705,284.785399252548814 -152.294105418824614,57.516863332361673,284.837195541709661 -152.31752186293204,57.485825739537056,284.886323247104883 -152.326314433674099,57.467622082458739,284.907813430763781 -152.328763508523906,57.441275794350943,284.923663407564163 -152.364220037257127,57.427522453792967,284.982631518505514 -152.419100824049394,57.43505309107281,285.060524728149176 -152.497842964125823,57.452136954142539,285.169226375408471 -152.519630215671214,57.431942086273317,285.211010487750173 -152.573153672825498,57.448665485583327,285.28241803497076 -152.603002687224318,57.468588285729886,285.317154630087316 -152.648643858197005,57.465888413269518,285.385983493179083 -152.665457447649089,57.463433134330003,285.412035633809865 -152.687039355614672,57.466350600216195,285.442571170628071 -152.719391754716412,57.478219582163312,285.484724492765963 -152.723097925662671,57.481324414939138,285.488710509613156 -152.722074403478899,57.487780249073481,285.484088997356594 -152.725473791015077,57.49383900268009,285.486194134689867 -152.745712342436889,57.50546124449798,285.510488278232515 -152.772823859665237,57.504040721041612,285.551227336749434 -152.801540734971013,57.49400541397533,285.598516824655235 -152.811662610443676,57.4942551960212,285.613349011167884 -152.828141560898445,57.496797779266799,285.63645554613322 -152.841531747118665,57.502019349160506,285.653689355589449 -152.88883168425852,57.510445120446064,285.719406481832266 -152.942255602008998,57.519834736572598,285.793629655614495 -152.957565410540724,57.520195407564763,285.816036265343428 -152.968925654287432,57.511916411224327,285.836876459419727 -152.969847484833195,57.509739455181773,285.839309625327587 -152.951634897750125,57.497959175819553,285.818231239914894 -152.942197999435479,57.497510385155309,285.804522137157619 -152.924373513027007,57.501144650537846,285.776427189819515 -152.892797905723654,57.486453733816347,285.736996065825224 -152.765300612202878,57.457312233342023,285.562683050520718 -152.745302197214784,57.447604931689135,285.537765896879137 -152.725274439707249,57.433105770155336,285.515075517818332 -152.675872691810326,57.4130013834666,285.451500975526869 -152.632640745364654,57.4053295067351,285.391072073951364 -152.622999595589278,57.401357823101293,285.378658624365926 -152.603769474937593,57.38192278976927,285.359309674240649 -152.609142080868281,57.363418217850324,285.375987098552287 -152.633057832030175,57.322426918711436,285.430739151313901 -152.660184097974195,57.303309914731692,285.480006453581154 -152.698310991678596,57.281076774646678,285.547105491161346 -152.710380450340864,57.275804678717492,285.567523964680731 -152.714620538207555,57.27787852968698,285.572855219244957 -152.776767543610816,57.290188876908914,285.659426750615239 -152.790605604541014,57.279661898756068,285.684964909218252 -152.820797153429623,57.265124699305936,285.736711712554097 -152.88899503435826,57.291091519652134,285.825695602223277 -152.903299657616941,57.302729880668899,285.841370998881757 -152.911664046472538,57.323975083305385,285.843601090833545 -152.987328091696327,57.33966905186638,285.948228480294347 -153.011137741165953,57.339483563005238,285.983605368062854 -153.058618321680171,57.328978885804986,286.059071145020425 -153.081898475158852,57.321709616264741,286.097109857946634 -153.101649382895658,57.310262543007525,286.131958307698369 -153.118888202787076,57.297061573861164,286.163943552412093 -153.103929679362324,57.286651190569934,286.146820849739015 -153.098740750732361,57.286616299199764,286.1391407456249 -153.041743016706477,57.293065291555578,286.051461469382048 -153.020252632936661,57.297466607933082,286.017452160827816 -153.018603834447845,57.2999825681514,286.013791133649647 -153.015601821893938,57.299204653317474,286.009713225997984 -152.973519226156185,57.282377021568486,285.955362129025161 -152.946808938826024,57.258837268989019,285.926966913975775 -152.946070798973324,57.256710346982373,285.926886068657041 -152.953589130502735,57.248745425806732,285.941860903054476 -153.000344213751106,57.230929981827501,286.01986320130527 -153.059574218865009,57.214509239271038,286.115774396806955 -153.080518688786185,57.211196903212738,286.148500124923885 -153.12807904114365,57.211592906076902,286.2190016284585 -153.165934844909771,57.216463977721389,286.272898432798684 -153.17232600171198,57.219986741084043,286.280686765909195 -153.20432364650739,57.22142903566813,286.327513275668025 -153.212333327555939,57.218522955812091,286.340821403078735 -153.217707869665503,57.213106004910152,286.351436930708587 -153.21856757193396,57.209047107329468,286.354686118662357 -153.216402304931052,57.204809277714951,286.35352729819715 -153.168601271744024,57.180394991264166,286.294286804273725 -153.126464506295861,57.175198017946443,286.234114301390946 -153.099619438254763,57.183042341309992,286.190415960736573 -153.076583032052014,57.186844705815325,286.15432599093765 -152.951935810486276,57.187102281355777,285.968718455173075 -152.882923195039069,57.164556379854595,285.876573185436428 -152.877441001592274,57.160708607536208,285.87021039519459 -152.872398363110989,57.150608011503742,285.867430320009589 -152.903139616015125,57.131834931387836,285.922059761360288 -152.913970095435189,57.126571863274556,285.940677541308105 -152.953334050983216,57.119546256516671,286.002678566612303 -152.999843375882421,57.11924830205087,286.072169116698205 -153.121266671108032,57.090788636194425,286.266684642992914 -153.131474633766601,57.092326379140552,286.281173964031041 -153.135301744606039,57.094691229441764,286.285754811950028 -153.136582034750745,57.099106071327789,286.285562031902373 -153.148954966148239,57.100637769679999,286.303274674341083 -153.182603043948035,57.094277263302232,286.356460723094642 -153.218031243722265,57.0756970853163,286.418151305057108 -153.223543628353696,57.067993201552248,286.430052315816283 -153.224830161402934,57.061552367505577,286.435047370381653 -153.223794076512803,57.060121431710954,286.434185274876654 -153.215907877161953,57.055645728580188,286.424557473510504 -153.207974007953197,57.055902884892333,286.412599565461278 -153.20280609965647,57.041794413848493,286.411603811196983 -153.20690745731477,57.033395580556117,286.421717126853764 -153.237868194382912,57.007153727529364,286.48040874209255 -153.303726131928215,56.99094685414132,286.586479830555618 -153.315166988897147,56.99124060911322,286.603427194990218 -153.351291642684231,57.008126356047192,286.64928609225899 -153.35162183373734,57.010949264463953,286.648425191640854 -153.323516016250977,57.036591075631904,286.594188029877841 -153.326852418159035,57.043060812853085,286.596057021990418 -153.367827832370637,57.07183110515539,286.643261477351189 -153.399508564184771,57.060149800434004,286.696118593215942 -153.405196156854231,57.069842392822288,286.699892875738442 -153.406851858485709,57.080261046925806,286.69730004761368 -153.387290569788604,57.11510341021441,286.651231162250042 -153.382980988919371,57.120217346712835,286.64232774823904 -153.348126824871628,57.139314497977445,286.581179402768612 -153.330800243586197,57.141742783913998,286.55422786064446 -153.286609110094673,57.173616750020045,286.473017157055438 -153.285332265009401,57.175564718577682,286.470171605236828 -153.288948807562804,57.184037392163297,286.471421383321285 -153.312741177689475,57.194174598991111,286.501822398975492 -153.352863454287814,57.192086830859843,286.562435292638838 -153.370776705051298,57.185084668252351,286.592473275959492 -153.371517378427683,57.180579786760504,286.595782638527453 -153.369121123787124,57.176455958858178,286.59424414485693 -153.489108048171175,57.085663186697317,286.817121067084372 -153.492187223018533,57.074450458697569,286.827190041542053 -153.501436439566419,57.065111547460582,286.845526264049113 -153.538528780796042,57.077735403797057,286.894556385464966 -153.56614920012376,57.089515481110524,286.929855586029589 -153.579593242125299,57.092923101676867,286.948170837014914 -153.657082516744225,57.084346759686184,287.067646337673068 -153.678565175976388,57.069574759410898,287.106922883540392 -153.678319134008461,57.054523216099696,287.114018218591809 -153.666393232772776,57.053439494518841,287.096808939240873 -153.60387834890011,57.056402694811403,287.002307150512934 -153.598403404384612,57.056055818147172,286.994328421540558 -153.583415117822568,57.048795345144242,286.975584303028882 -153.546009930065196,56.994994733476034,286.946142073720694 -153.55934091278769,56.968612253470219,286.978851961903274 -153.603240466412416,56.942379140670297,287.057119653560221 -153.630058698162514,56.936876754552401,287.099835087545216 -153.673891771834008,56.932674978957316,287.167322523891926 -153.703770887095232,56.926142561474883,287.215117668733001 -153.733284229238279,56.893744935762172,287.275015125982463 -153.717833386499791,56.878191725625996,287.259505832567811 -153.707173514479933,56.877795956943693,287.24376492202282 -153.698466844501354,56.880759046133363,287.229310808703303 -153.691283329024628,56.871725468173061,287.22295746486634 -153.699262495977223,56.861269621639025,287.239958863705397 -153.717212645965219,56.852675513674377,287.270971697755158 -153.780765450911048,56.834135771211457,287.37503704149276 -153.798677755123407,56.842404151245972,287.397800600156188 -153.803501974749565,56.846642923046772,287.402946404181421 -153.809919996619243,56.848332739691315,287.411717123351991 -153.82054484582892,56.848399519276747,287.427568824030459 -153.851854721353533,56.838663172345612,287.479140846058726 -153.85676147829605,56.836160147790402,287.487702363170683 -153.906141818815314,56.79316644565904,287.582600829191506 -153.926600733961976,56.76696482724374,287.626027598977089 -153.965831823817666,56.747348623382884,287.694358742795885 -153.974337512661378,56.744609532915405,287.708437002263963 -153.992715133704394,56.743011205020132,287.736743814311922 -154.018769763668104,56.743213664502349,287.775663608685136 -154.02516751712605,56.755693150521644,287.779114950448275 -154.039710810107067,56.76316062334368,287.79720791708678 -154.053075620105858,56.763269345939044,287.817153863608837 -154.066849183242766,56.759837168739274,287.83945719897747 -154.087644271136526,56.75093901535589,287.874968226999044 -154.109120571518417,56.745317747683828,287.909885952249169 -154.131572007743728,56.741913392108231,287.945169804617763 -154.139519902820382,56.742104223382846,287.956969388760626 -154.151299953156752,56.745421880107926,287.972952318377793 -154.127988855598232,56.783042203992345,287.919407811015844 -154.075440575769619,56.840842514690117,287.812121713533998 -154.069987943835173,56.845046498334405,287.801884773187339 -154.057791477383859,56.850208591229396,287.781103152781725 -154.043511939789482,56.853878772456341,287.757957275956869 -154.033066157106248,56.854795958942937,287.741906452924013 -153.987114204153954,56.889369850243369,287.656116436235607 -153.938561715313,56.915516053871293,287.570682268589735 -153.897135096431384,56.926730565464325,287.503331562504172 -153.865526757905286,56.944118688846949,287.447572682984173 -153.853037830425478,56.957022555352367,287.42255146894604 -153.875984915158142,56.963146898046048,287.453700688667595 -153.905375829881251,56.968188140992829,287.494970527477562 -153.9162004597232,56.965134010680579,287.512618858367205 -153.920276177532543,56.961912024299615,287.520299303345382 -153.937353702200028,56.958670771137577,287.547357459552586 -153.979442819548694,56.954886020253305,287.611942845396698 -153.982315262283066,56.961930747957652,287.612685855478048 -153.979443694068323,56.996571759811928,287.590988475829363 -153.934800932328159,57.062709685801309,287.491225967183709 -153.890043259701599,57.086697887091752,287.41262065898627 -153.877938636172388,57.089542051126266,287.393209533765912 -153.861473812624581,57.088584419075957,287.369244045577943 -153.807372301685632,57.112898805448246,287.276656410656869 -153.78605191615199,57.131562686658292,287.235606329515576 -153.779294785468494,57.142598496186267,287.220015469938517 -153.781675865056485,57.158560970406448,287.21548658143729 -153.79110990500709,57.161120699396179,287.228180763311684 -153.808878366777179,57.157163451007023,287.256529563106596 -153.825462071534616,57.14211155862796,287.288744320161641 -153.826564875142878,57.139529613063459,287.291687071323395 -153.864295884797855,57.118963450508645,287.358075149357319 -153.985371412124096,57.066015545338786,287.564654011279345 -153.9963851550811,57.050240793222947,287.589024464599788 -154.026863356947246,57.016347187577573,287.651510258205235 -154.058126862401849,56.986948432625283,287.712895328179002 -154.079194403389977,56.970328502378266,287.752653354778886 -154.126058712650007,56.955908976230234,287.829695113003254 -154.147735623403321,56.944772868651114,287.867605939507484 -154.161582436573156,56.945061575534993,287.888066800311208 -154.167977198158155,56.942982507297408,287.898640126921237 -154.214675200678755,56.909487566233835,287.985182047821581 -154.22612409151489,56.895802747743822,288.009185667149723 -154.229756144459571,56.882765070316694,288.021213703788817 -154.229056691752419,56.875996290946254,288.023603084497154 -154.234333341745725,56.872033303536121,288.033475747331977 -154.27929939412985,56.853386950475596,288.109959406778216 -154.30152457142691,56.846217713894447,288.146733646281064 -154.308272496924786,56.846609563620284,288.156594847328961 -154.302752931437198,56.851761519356025,288.145748148672283 -154.300982719736453,56.862914215107224,288.137437783181667 -154.302564684425619,56.891989296002635,288.124973013997078 -154.309499917957964,56.911519559059954,288.125309935770929 -154.315452300752867,56.918409227339907,288.130637157708406 -154.387851029800999,56.959500493555304,288.217099458910525 -154.41005628276065,56.968066778071929,288.245638730935752 -154.478881330287777,56.983934885108113,288.33953660633415 -154.514238091297955,56.988278028391562,288.389717105776072 -154.527261104493704,56.991352668125032,288.407419041730464 -154.531104752695114,57.001621277941233,288.407718922942877 -154.519410889554081,57.030040657046769,288.375413567759097 -154.517785208046973,57.077712250116733,288.3477962622419 -154.53242229248437,57.168606215179558,288.320968082174659 -154.53627825225513,57.183236697254635,288.318807556293905 -154.54213205728621,57.196074192355695,288.320541186258197 -154.57692556476411,57.239640174180913,288.348292500711977 -154.597560453160099,57.256881235219169,288.369313843548298 -154.616306908970898,57.267519532459161,288.391108927316964 -154.694438843762072,57.283827440377337,288.497090958990157 -154.700847757363334,57.284011303206611,288.506410861387849 -154.742743562906043,57.276233674534247,288.572272869758308 -154.779950229106845,57.279723806203485,288.625028295442462 -154.794636468845027,57.286411305034449,288.642907686531544 -154.79642259273362,57.288577203733631,288.644332543946803 -154.754121577029565,57.307496508647795,288.57173537183553 -154.745675198708483,57.314485474061669,288.555467045865953 -154.703189940341815,57.400875782925901,288.445224442519248 -154.702221782513107,57.412586456328036,288.437286491505802 -154.705181277478033,57.42024116906633,288.437354920431972 -154.695905229968389,57.445797605040781,288.409510653465986 -154.632278769616704,57.509909027551714,288.280601121485233 -154.621305279823076,57.514684113428956,288.261891013011336 -154.605147799637734,57.518463335475452,288.236164130270481 -154.594279957279639,57.518309564005854,288.220367279835045 -154.543527241717186,57.539333993818971,288.134462986141443 -154.524667258986796,57.577498265949558,288.085598737932742 -154.513840488034276,57.57835846423049,288.06931322440505 -154.50288935544441,57.574135813646997,288.055684358812869 -154.470935557068401,57.570052592486533,288.011299570091069 -154.434450152982066,57.584496923729176,287.949979791417718 -154.413995446957557,57.598165947266473,287.912513317540288 -154.346857807443428,57.630615389250039,287.796494853682816 -154.228277815371769,57.66108195646121,287.606613245792687 -154.19957748936443,57.664355455407751,287.562934061512351 -154.18921521077317,57.658294845589793,287.551151930354536 -154.08874905235524,57.648773201284818,287.40969258826226 -154.058845748639811,57.652149722586422,287.364172544330359 -154.034212728583839,57.660573988680945,287.323604240082204 -153.997193003164313,57.656625869896054,287.271670862101018 -153.985635667878597,57.649556314110896,287.258615975268185 -153.985201560269303,57.647972368996932,287.258839613758028 -153.987464384686319,57.604317588830263,287.28574379440397 -153.98481273467354,57.552880140821003,287.309523785486817 -153.973726919213078,57.539160770352957,287.30062481854111 -153.950163330874091,57.539969234407913,287.265646853484213 -153.941712316474764,57.537996466859965,287.254309100098908 -153.931878104897294,57.532978816784905,287.242564043961465 -153.928517854685509,57.528777008947202,287.239874502643943 -153.925594262267538,57.519879329206631,287.240322249010205 -153.924793765835773,57.498762962816699,287.250368887558579 -153.922506813009676,57.484929414811397,287.254347601905465 -153.912021922348799,57.442141885566045,287.261552516371012 -153.898405682395833,57.421837763271171,287.252208777703345 -153.805534015257564,57.3506297792268,287.152524907141924 -153.797900997528984,57.348780991530177,287.142222278751433 -153.776878100970407,57.359977096075653,287.105425398796797 -153.775794980942834,57.372175759148448,287.097518553957343 -153.81411224558434,57.412106792288178,287.133231521584094 -153.875529703808411,57.445472542551236,287.206137781962752 -153.876784832672342,57.447546455767167,287.206892905756831 -153.891502666941733,57.504409486632056,287.198501778766513 -153.878564584125087,57.542495642882784,287.159308540634811 -153.871711336626646,57.55157052035544,287.144434650428593 -153.850698277446952,57.56031570088787,287.108976296149194 -153.82744084641962,57.577343687336423,287.065835461951792 -153.81575480825515,57.588307610870793,287.042883226647973 -153.826372301633739,57.597377127450159,287.053614359349012 -153.849448035360666,57.612373214001039,287.079410610720515 -153.855122013008753,57.61324207120586,287.087253258563578 -153.880376787450132,57.629253083520446,287.115642380900681 -153.882564081888859,57.633795906526281,287.116404918953776 -153.876908034251784,57.645833675066115,287.101667774841189 -153.870897382360624,57.649411696077912,287.090955447405577 -153.861167632745236,57.650861855811947,287.075947750359774 -153.751801911864675,57.645950265915545,286.918572681955993 -153.70794618171692,57.640650329034365,286.857190411537886 -153.669885608361625,57.638736174138728,286.802470958791673 -153.6656317327446,57.639586237830997,286.795791958458722 -153.65131897480569,57.653853122522342,286.767294879071414 -153.660634368110664,57.661207716736293,286.777041171677411 -153.67934768194047,57.669390092055423,286.800090661272407 -153.800597817294772,57.696231801207439,286.963049568235874 -153.865512600171911,57.706665153545075,287.052246718667448 -153.890725113236442,57.705168673744772,287.08986775111407 -153.920968950581369,57.695384328930082,287.139323201030493 -153.932903852498839,57.696512048910236,287.15613763872534 -153.935589317454429,57.703498791547503,287.156267277896404 -153.937853217661541,57.81276460228289,287.099916992709041 -153.826023698525461,57.864731439152308,286.908752641640604 -153.757695083398545,57.88328433078857,286.799263163469732 -153.723818107876582,57.890334834644257,286.746165533550084 -153.651440418294243,57.879824639638315,286.646604856476188 -153.574002054839525,57.831825619032202,286.559675080701709 -153.553460057992766,57.786616338387894,286.553843091242015 -153.553723321700261,57.762837013975904,286.566863171756268 -153.555886027853376,57.759239072148951,286.571931123733521 -153.560280161701712,57.734468691560167,286.59147953428328 -153.55685831961344,57.722178115774746,286.592978976666927 -153.552237062441208,57.717695340670552,286.588590349070728 -153.517837463652086,57.716234097669052,286.539052960462868 -153.496034642422728,57.728045211620952,286.500947582535446 -153.472528768772037,57.766264604480462,286.446447196416557 -153.46510197482408,57.795019936296832,286.420410154387355 -153.483017125638838,57.814392010044422,286.436291867867112 -153.48999145653039,57.834000305379995,286.436043947003782 -153.4820991398974,57.841746248860765,286.420415128581226 -153.454202350933002,57.839010907644166,286.381195201538503 -153.409358233381397,57.828391144148654,286.321411980316043 -153.356221628144567,57.809460790648316,286.25382986664772 -153.346049860012442,57.810595970112878,286.238380980677903 -153.327515607744715,57.830777780896383,286.200724571943283 -153.325331016239289,57.835919679969649,286.194834502413869 -153.327525880297998,57.848150286099084,286.191604658961296 -153.330781937465218,57.849580177563872,286.195601873099804 -153.398457598917986,57.858499513735921,286.289582822471857 -153.449051047116768,57.874760997307341,286.354674784466624 -153.464656224470104,57.880313514402914,286.374444887042046 -153.514670583684136,57.908879661221761,286.431952493265271 -153.531344260425158,57.921439957527497,286.44944847561419 -153.539171810576391,57.93049253777864,286.455950208008289 -153.535852621810392,57.940839313730322,286.445541813969612 -153.523042453788008,57.963108950329939,286.414898086339235 -153.515997954163367,57.968472945478268,286.401766136288643 -153.487254952467225,57.976222325660252,286.355833477340639 -153.472073235068649,57.977004620098917,286.333361387252808 -153.463765024679219,57.972491920811137,286.323725361377001 -153.455296466233449,57.963232359057102,286.316405304707587 -153.276324711362008,57.890137160680268,286.094840092584491 -153.270797669535938,57.888470323220552,286.087661252357066 -153.23960135104943,57.891547886586636,286.040567705407739 -153.129926367516958,57.856481169441381,285.898861665278673 -153.125161428493783,57.856372271946221,285.89196080993861 -153.096069211335674,57.861302739033455,285.846927382051945 -153.092068538338111,57.864966718565853,285.839189238846302 -153.201270716049152,57.929652607506164,285.964692584238946 -153.235882027994251,57.940721572260294,286.00926317460835 -153.272978783119839,57.958293301690219,286.053956444375217 -153.301664363172506,57.985351939561887,286.08128794375807 -153.304853766288858,57.991431701621494,286.082682408392429 -153.300412180789209,57.996150661372653,286.073711433447897 -153.279192641689662,57.998173047396797,286.041799361817539 -153.237387144449286,57.996698961812612,285.981825416907668 -153.224232769995751,57.989046452016687,285.966760858893394 -153.219962413407814,57.983386700638647,285.963549023494124 -153.132148948382337,57.946281580818784,285.85529151186347 -153.072511917323624,57.934160168549013,285.77473614551127 -153.055326334334325,57.936443463068024,285.748501323163509 -153.053596602077903,57.93973040643079,285.744270605035126 -153.027082238183965,57.95668648222253,285.696816951036453 -152.878854556613391,57.932182271400428,285.493367020972073 -152.874320683021182,57.933015342711329,285.486324992962182 -152.858942945848412,57.947121266806867,285.45666057895869 -152.855446009638513,57.974318574681419,285.437598370946944 -152.857758453639036,57.994235966740547,285.430716562084854 -152.843558824388339,57.996494200489821,285.408869496546686 -152.726089124750587,57.991457800819667,285.240269732661545 -152.725187814184238,57.987101941896299,285.241175607778132 -152.742426414553108,57.944536777154063,285.287974765524268 -152.754637402816286,57.933204840680048,285.311554159969091 -152.807463119179232,57.898913702910946,285.406117713078856 -152.825954247778441,57.890666549304669,285.437324274331331 -152.895167699128308,57.842263473499017,285.563108659349382 -152.905282645868169,57.829884613554952,285.584196490235627 -152.912439096020506,57.810144024979301,285.6046924283728 -152.918979134619917,57.770956004054632,285.634115656837821 -152.906955816769909,57.75056583650872,285.626783156767488 -152.895518336634751,57.74175332671097,285.614447412081063 -152.884641222186843,57.738061659069835,285.600349033251405 -152.87714130272937,57.737702825799708,285.589527742937207 -152.852979798005094,57.739783270564544,285.553040307946503 -152.850455314368531,57.746367135335646,285.546037392690778 -152.8549136666403,57.752059879873833,285.549720881506801 -152.857363943518806,57.770012316925978,285.544294624589384 -152.852646759509895,57.821201959369724,285.511573530733585 -152.844011525213659,57.829960891102971,285.494506503455341 -152.825194746412677,57.842942916005768,285.460408460348845 -152.792864298163011,57.857798170769755,285.405605249106884 -152.760820445187704,57.840013344328149,285.367682776413858 -152.756089084622261,57.83419360817895,285.363682013936341 -152.727954552559765,57.835142169358868,285.322015992365777 -152.653111692670365,57.863463932689875,285.198282007128 -152.628264333160246,57.880974957794493,285.15317159704864 -152.629099001337181,57.890192680150122,285.149783701635897 -152.642545493620048,57.899430138158351,285.164821990765631 -152.644463674106191,57.902241018745592,285.166217092424631 -152.642034574159538,57.913961739210023,285.15678434446454 -152.638037954989926,57.918351699193934,285.148738819174469 -152.590366244119252,57.926703462116201,285.074880642816424 -152.58864487395951,57.90784402920427,285.08179674949497 -152.57005456320843,57.900101636590797,285.058472217060626 -152.552320795794458,57.89988101409773,285.032641388475895 -152.528944093788908,57.913010133808193,284.991916111670434 -152.490329758913077,57.94171213558802,284.921181503683329 -152.473001493980092,57.961842933674561,284.885841894894838 -152.435275055405469,57.975773334081055,284.823801139369607 -152.424075186037896,57.975427578610109,284.807613081298769 -152.417844079692316,57.972825782158537,284.799801922403276 -152.414284847193443,57.969026963232267,284.796486125327647 -152.425238164381284,57.948407311824255,284.822711268439889 -152.440268300346702,57.939579244610819,284.849056946113706 -152.440080091360386,57.936723328765822,284.850196032784879 -152.429121790337376,57.930596730547038,284.837201800197363 -152.391289845768796,57.924232702312629,284.785000150091946 -152.364825340476614,57.925947208907672,284.745434612035751 -152.326767157771343,57.916352276385808,284.694439247250557 -152.335871991734081,57.902298480627003,284.714645344763994 -152.367438177340404,57.883669343455558,284.769991775974631 -152.379724214153356,57.886476006951781,284.78661466576159 -152.388791382085287,57.890453704928454,284.797944657504559 -152.397411550155113,57.894349414601976,284.808655946515501 -152.406361909352029,57.900893042839989,284.818544479086995 -152.417638414279281,57.901977739892693,284.834518132731318 -152.450901396805307,57.902351068613349,284.883020234294236 -152.471171080919561,57.888367037955526,284.919594046659768 -152.436308828135623,57.824062583940233,284.900097902864218 -152.431981579491435,57.819862793377382,284.895802055485547 -152.420079403061294,57.815213174140233,284.880608474835753-152.245579581884982,58.240932961583098,284.414928514510393 -152.283318143465436,58.242084135689531,284.469110606238246 -152.314102108647063,58.220855072015453,284.524513483978808 -152.267792319669724,58.135475402993912,284.500073977746069 -152.276285442847524,58.125373504202258,284.517475245520473 -152.346200985080173,58.118916213942441,284.622475183568895 -152.404570288239483,58.120495943978611,284.706623449921608 -152.428069473746149,58.127354260197251,284.73735042847693 -152.485351834485044,58.129551996320842,284.819542185403407 -152.517470220767962,58.114059752097603,284.87411418184638 -152.531710481873318,58.093518024252162,284.905258653685451 -152.533062012964052,58.087505163194891,284.910275557078421 -152.544206549302345,58.083405043496036,284.928575105965137 -152.557134438362738,58.084358745724906,284.946905889548361 -152.55991053694629,58.086200636208069,284.950010064058006 -152.572270483609003,58.11453758873445,284.953560310415924 -152.560176097546417,58.160419569614874,284.912532256916165 -152.562563835000788,58.170677235429913,284.910742107778788 -152.565509322765109,58.177714978802356,284.911406852304935 -152.586902734684884,58.187212266839325,284.937570276670158 -152.600185960068217,58.179421203478192,284.960854700766504 -152.61777794645144,58.115960594368573,285.018989630043507 -152.633886151896206,58.081661211046381,285.059958890080452 -152.659471230458706,58.060786256738247,285.107853578403592 -152.709499739183514,58.050313500661254,285.186027490533888 -152.773970545776535,58.046618253262267,285.281752184964716 -152.780573710915633,58.05009901763863,285.289567831903696 -152.782141799737019,58.065003568342142,285.284163794480264 -152.794710171957206,58.072399098543094,285.29862027335912 -152.811731395136349,58.078650567463797,285.320130041800439 -152.88509262409687,58.095805552127693,285.417799085378647 -152.961350047305643,58.11617038725656,285.517821462824941 -152.975819510251569,58.125155833865179,285.534078948199749 -152.98652802365288,58.134086360878754,285.544895720668137 -153.000010827152352,58.134069079015489,285.564453458413482 -153.078413090659325,58.099298407626947,285.696560546755791 -153.079151819155499,58.095804489767836,285.699483653530478 -153.059866421276467,58.073304522243184,285.6833929810673 -153.038795389328413,58.055348465594633,285.662252704612911 -153.023252839142827,58.044932082484912,285.645141747780144 -152.96736386152665,58.034381547314695,285.56941660027951 -152.879450722303346,58.00204129373445,285.458282210864127 -152.874498568207315,57.999009482452557,285.452636324800551 -152.874078417031171,57.99689155069948,285.453117604367435 -152.950207312672688,57.983252341441556,285.571045859716833 -152.985065898070303,57.984429579435144,285.62119591422379 -153.100121703238614,58.004245617124241,285.778263779357076 -153.205185073350236,58.029848702211943,285.917430345900357 -153.212545322435602,58.034651413550336,285.925566572695971 -153.217228810557657,58.042144105343056,285.928379461169243 -153.220775869464404,58.043634989383868,285.932735049165785 -153.29236129729037,58.050054313686061,286.03320041578263 -153.34746576550836,58.040342435652448,286.118365846574306 -153.368232343151362,58.038775046134653,286.149338098242879 -153.422442071144644,58.059359336152184,286.216832269914448 -153.42100242053894,58.063774242247874,286.212353290058672 -153.415592928630701,58.069532193574915,286.201392721384764 -153.318793620239859,58.140111240747586,286.022961623966694 -153.284541660668765,58.14727675698316,285.969517205841839 -153.2768828143154,58.147823901881218,285.95813843421638 -153.265310759929264,58.144821227609121,285.943013992160559 -153.230233650493517,58.123087567591355,285.903935501351953 -153.201782472889221,58.101729759194029,285.874163378961384 -153.171281903114675,58.088110777790277,285.837213297374547 -153.159067208354969,58.089812985607644,285.818590302951634 -153.151406516359827,58.105846697682907,285.798935271799564 -153.170272861401202,58.127542697361676,285.81468609906733 -153.212340930653227,58.150073189118814,285.863513771444559 -153.226378605879603,58.161842567593808,285.877488058060408 -153.205474360461267,58.207801727287375,285.82243132404983 -153.17277548839931,58.216426172585074,285.77051355317235 -153.076601270914495,58.194831785774937,285.643060831353068 -153.063520416012807,58.194227076546447,285.624458510428667 -153.039337123586961,58.198960451827475,285.586939617060125 -153.003255590356616,58.211493860434608,285.528052536770701 -153.000770803554587,58.213847847297707,285.523203289136291 -153.009656255943895,58.221572447145554,285.531934733502567 -153.064355499265019,58.23537291878548,285.603626401163638 -153.085184861927843,58.244218237557284,285.628969887271523 -153.104519593025174,58.257660460672213,285.6496522706002 -153.105088766198776,58.260066382244219,285.649175669997931 -153.101963092654387,58.263787344923088,285.642654192633927 -153.046999090376545,58.306058331217656,285.540515062399209 -153.007073202988607,58.299858339416858,285.48625323921442 -152.995900071897324,58.295977680685084,285.472214861772954 -152.985038567240792,58.287219149856128,285.461237783543766 -152.943952567758515,58.27933922894524,285.406126014888287 -152.890887599646646,58.282826246289495,285.327614515088499 -152.88154214578654,58.288259292785462,285.311222968623042 -152.872496516255097,58.304632032082118,285.28944228310138 -152.88670847603899,58.306812673765613,285.308798954822123 -152.915135072449402,58.306916074243183,285.349779572337866 -152.923807407235728,58.312992725087582,285.359046115539968 -152.939443488028218,58.330236922921856,285.372361975722015 -152.939126827245246,58.334646808441981,285.369537671096623 -152.928273346299704,58.33940990550829,285.351328700780869 -152.898095210558438,58.345029384930534,285.304796855896711 -152.873242844186649,58.335468169180203,285.274067955091596 -152.824651996206541,58.328227388410745,285.207814075052738 -152.807478079753821,58.339236447101804,285.177173829637468 -152.776739599701216,58.366552344637384,285.118301252834499 -152.7901115737304,58.368741003701658,285.136418397538364 -152.841925089535266,58.372201820177501,285.209266792982817 -152.885799584934915,58.400166133434652,285.257465557195246 -152.891553183400617,58.409106768252713,285.260932803153992 -152.889051311327876,58.410307788023665,285.256684115156531 -152.867632145441547,58.404063408715835,285.229209873825312 -152.846866331838982,58.402565886050695,285.200112324208021 -152.814900841401851,58.403188540940462,285.15374193713069 -152.790470793067584,58.411037840270708,285.11435519438237 -152.777204626496911,58.419445889856945,285.090753337368369 -152.77380242398408,58.429239694419024,285.080614439211786 -152.736544344647996,58.460386630452199,285.010323277674615 -152.725868607018214,58.461804816557091,284.994206307455897 -152.692639914813299,58.459586576176171,284.947583228349686 -152.6136572676414,58.475501806895501,284.825461035594344 -152.604369525307305,58.490149605325371,284.804315943270922 -152.603237889043072,58.494672506605355,284.800283648073673 -152.611733861297239,58.49589329456326,284.811852515675128 -152.62190052415221,58.493400147968494,284.82780016772449 -152.625497512202685,58.493915058252043,284.832698673009872 -152.656377021197699,58.506297072413723,284.870486374013126 -152.668926729001157,58.543810793301972,284.868413994088769 -152.668707306164464,58.564216247019111,284.857129556126893 -152.641279474010531,58.587171206379438,284.805431900545955 -152.618841910755293,58.601575291776385,284.765507821924984 -152.570424112286219,58.621027790205751,284.685645803809166 -152.562885094406681,58.619403992862821,284.67571175377816 -152.553131561053448,58.610720431883045,284.666385595686734 -152.552347799905505,58.600748716426978,284.670601851306856 -152.547721341941127,58.593977996094743,284.667587975040078 -152.505532882488041,58.593176907638181,284.607487326487899 -152.456532522824745,58.618241268460693,284.52384443487972 -152.357427464398626,58.638007831417539,284.371217955835164 -152.340682633353396,58.637132208598238,284.347664906643331 -152.332553336403919,58.631830522295992,284.338803917169571 -152.339926896336948,58.588824520010284,284.372047671116889 -152.375026923618805,58.530905338233069,284.452913762070239 -152.390319067033715,58.522600239727296,284.479267396964133 -152.4209750454946,58.51497379906148,284.527375290170312 -152.469901380017291,58.476338812851658,284.61809388268739 -152.501272857372356,58.449267886124353,284.677500216290355 -152.50821717153741,58.441605947951615,284.691530142910779 -152.515182960158455,58.427079196129135,284.709194352850318 -152.496685674359384,58.354416566548402,284.720449819229543 -152.47950863348683,58.350688029963784,284.697568162344396 -152.390039547116402,58.359233680140846,284.563846881501377 -152.367379255885794,58.364348017820468,284.52845872938633 -152.347559597136893,58.39136469904988,284.485895088873804 -152.35108930217018,58.401236355989148,284.485897062346339 -152.357774091679858,58.412785900980381,284.489577175118029 -152.36142523414847,58.415318755173374,284.493536163121462 -152.3587918748795,58.423203596379835,284.485652983188629 -152.330766104369786,58.434105891067304,284.439572175964713 -152.323257168288563,58.433563064107545,284.42901932168752 -152.304416039571095,58.428431600636081,284.404482604004443 -152.282210368566211,58.415607417084466,284.379036104306579 -152.230535074144399,58.376161579323004,284.324582541361451 -152.237416878702646,58.361761826552637,284.341878165490925 -152.22766365978967,58.357110158915276,284.330139607191086 -152.203651838705383,58.355070720615757,284.296436860226095 -152.131959974326151,58.396153114287557,284.17189141921699 -152.128042027321356,58.396135197425018,284.166236018761992 -152.093138693300034,58.372368579841869,284.127771191298962 -152.091951328906731,58.367384740493833,284.128565963357687 -152.122228020347251,58.329511134171618,284.191480663605034 -152.140989168804168,58.295453669329738,284.235793139785528 -152.149834865547433,58.266734269442814,284.263030922971666 -152.149210519275812,58.248862772784989,284.271071506664157 -152.119260889114202,58.2482804195634,284.227881655097008 -152.110654916743357,58.260268272054411,284.209406267851591 -152.110329417413368,58.279982738791269,284.19908316899091 -152.08503902493382,58.309687459431522,284.147541583515704 -151.988872434344557,58.350156384042691,283.987950466573238 -151.984482308243173,58.347714543152676,283.98280811496079 -151.968918359567198,58.332481286468806,283.967837445437908 -151.966517107466416,58.328743439000981,283.966214282438159 -151.966798541862772,58.26879507038305,283.99631523154676 -151.974745524847947,58.230448953688779,284.026760953478515 -151.988818050861312,58.213521121937958,284.055548234842718 -152.08376825734814,58.154021761094363,284.222992141731083 -152.114889398846032,58.148305264043792,284.271123186685145 -152.197512183834306,58.173871819802635,284.378683347254992 -152.225861349359064,58.1945366534543,284.409582575783134 -152.227125903263271,58.202107418228543,284.407630411908031 -152.222513263587842,58.206031407202723,284.398963319137692 -152.210175434389413,58.206026666964377,284.381039781495929 -152.206386922875311,58.211797587807695,284.372647806070745 -152.236519869655069,58.243070093554941,284.400704389438033 -152.245579581884982,58.240932961583098,284.414928514510393-132.979831056984182,56.439876177570703,254.966932491399348 -132.960032663339575,56.449166360191803,254.939167858101428 -132.930332149407519,56.457062792349234,254.895147314295173 -132.89901115592653,56.458182436483227,254.84588204883039 -132.8745880333542,56.457242986080082,254.806747566908598 -132.845852110200724,56.445032922690437,254.756260517053306 -132.821923681298756,56.439717575873686,254.716140950098634 -132.810812745250473,56.441007780976456,254.699018534272909 -132.794540292668955,56.449375912221598,254.676550283096731 -132.78553243653613,56.451737044220351,254.663202540017664 -132.737134809004402,56.458722902335829,254.589213016442955 -132.718724507741825,56.455069393335826,254.558520655147731 -132.670794367405904,56.440488803767977,254.476521774195135 -132.637001015516091,56.422385002430751,254.415462226606905 -132.631257589115819,56.41649527964546,254.403923495672643 -132.623271816463529,56.391412106915084,254.380916321650147 -132.655042827395363,56.376090825730309,254.42511457297951 -132.664840381572333,56.369345792097675,254.437919192947447 -132.682062390716425,56.354510811406335,254.459209315478802 -132.686772801641723,56.345882936769655,254.463152535259724 -132.679212908568587,56.333317429132691,254.445938568562269 -132.665136993835034,56.320664063875299,254.418295854702592 -132.658124816766872,56.30396965360648,254.400205400772393 -132.658170249107059,56.295788868054487,254.396879660896957 -132.66473682463922,56.275009274918602,254.398702325299382 -132.723908839397978,56.25867743694841,254.486279557459056 -132.778699703351407,56.254797364419922,254.572079324163496 -132.846369780781544,56.239144327441082,254.673619688488543 -132.880235955588716,56.240532564417627,254.728242915123701 -133.013246050361317,56.309697881446887,254.968346721492708 -133.048042911375035,56.32098783646024,255.028290003538132 -133.070216849065957,56.333777022970963,255.068687442690134 -133.073525291929229,56.354397408437109,255.082117401063442 -133.072103444367855,56.356629380190853,255.080736585892737 -133.063023560712963,56.358581523799621,255.067057959735394 -133.048377440230439,56.37165449435863,255.048923679627478 -133.009241457264693,56.416084168558562,255.004255830310285 -133.008980589374715,56.417981124439862,255.004590168595314 -133.01353785314717,56.421606931468688,255.013261253014207 -133.013484053153064,56.42446685768472,255.014303361065686 -133.005024481719232,56.430857872102685,255.003384969197214 -132.979831056984182,56.439876177570703,254.966932491399348-135.450198418379216,58.399992334763226,259.368410698138177 -135.464113773802893,58.399984636342374,259.389377541840076 -135.468900331684694,58.39442866078074,259.395503927022219 -135.515218658175939,58.385858842560474,259.463648633100092 -135.524175113514588,58.391548512670013,259.478251274675131 -135.558884419204844,58.407838368967823,259.533686146140099 -135.624925060872584,58.428282439403148,259.637019471265376 -135.633245093146996,58.428676247206418,259.649620240554214 -135.730871581149643,58.397161836468072,259.790824703872204 -135.82889603357151,58.390338840874328,259.937316371127963 -135.910126274515051,58.38093027560123,260.058085834607482 -135.92073330461389,58.381328033064946,260.07414816878736 -135.923950665555793,58.385862855886863,260.079800046049058 -135.923115929734081,58.389174796523683,260.079126379452646 -135.900074091756039,58.416222669317655,260.049177671782672 -135.899990800273486,58.45009087928274,260.054994233883917 -135.918934907409096,58.46394713902815,260.085904564708471 -135.926090831025817,58.463008003479182,260.096505540423095 -135.937368950748208,58.452042011337248,260.111575419083238 -135.942747921547294,58.451688901238342,260.119607790373266 -135.99038693911433,58.464507553675425,260.193472497165203 -136.000241414256294,58.470462197823117,260.209304450079799 -136.002354208222471,58.480367920215663,260.214157290756702 -135.993772774584102,58.487401945082574,260.202445515431464 -135.970912369802903,58.494756276905811,260.169332334771752 -135.958450219349345,58.492852595553757,260.150280185043812 -135.947946387596915,58.494923778525205,260.134847555309534 -135.909767275471893,58.505898363574431,260.079359421506524 -135.895978930092497,58.514017478372693,260.060042358934879 -135.897916551009132,58.53416496783457,260.066406251862645 -135.916832072212515,58.540670400346222,260.095906701870263 -135.931403678007172,58.573011329985263,260.123226036317647 -135.915022389932261,58.618885631064458,260.106344670057297 -136.015068961915546,58.71232827636755,260.271117974072695 -136.018604805112062,58.722680961119408,260.27802998945117 -136.011773566281704,58.731990898673345,260.269296399317682 -136.014514493540304,58.743356578143377,260.275170334614813 -136.049020634834932,58.781874936678378,260.33260041102767 -136.085787803373705,58.808460518864834,260.391422157175839 -136.09245440411118,58.815806204383854,260.402454349212348 -136.080128167607228,58.825060266065343,260.385491785593331 -136.048132087901649,58.836151720707583,260.339539488777518 -136.053210461464516,58.913508856218364,260.358632722869515 -136.063588628034239,58.927655307412202,260.376117364503443 -136.123170991804301,58.968491069458551,260.470386004075408 -136.148170670614604,58.976777329969693,260.508613185025752 -136.165589710382108,58.977332932118742,260.534507525153458 -136.16651237340696,58.97327600300796,260.535307637415826 -136.163156445407054,58.962071329544642,260.528761072084308 -136.153162215486503,58.947183886131469,260.511838420294225 -136.127351356922276,58.924615966171991,260.470318421721458 -136.109852403310583,58.864516713194412,260.435580182820559 -136.153618594879276,58.757343188113573,260.484834811650217 -136.164789174364586,58.752248058159793,260.500733518972993 -136.216506070866984,58.751228940073787,260.577730977907777 -136.250189202012535,58.75301015587074,260.628238637000322 -136.400173045768582,58.813089470433582,260.860272963531315 -136.433906468798966,58.818485602215517,260.911234735511243 -136.477587457535691,58.830856355025958,260.977914567105472 -136.49656911697042,58.839030749205023,261.007242285646498 -136.531021474847961,58.928548951969383,261.06998074427247 -136.529382631434942,58.954587398534024,261.070822146721184 -136.547762678815502,58.967377702771486,261.099665687419474 -136.562699344802553,58.963477460589523,261.121326958760619 -136.575025828449469,58.957355326465624,261.138849006965756 -136.578377940312009,58.946663494385746,261.142502813600004 -136.578401478910678,58.929004894075995,261.14035199675709 -136.589147852946979,58.909428100840607,261.153869727626443 -136.633354242145202,58.890319558228583,261.21715784817934 -136.673269455172488,58.893286608546738,261.276819534599781 -136.679755594175219,58.895035425390482,261.286667066626251 -136.697458331263732,58.904142826881625,261.314059553667903 -136.707707174498637,58.914456365792383,261.330511803738773 -136.727853910945498,58.923574713176116,261.361499216407537 -136.753282461358083,58.930498993682001,261.400048444978893 -136.785768946707719,58.936718134157651,261.448970115743577 -136.791570913177395,58.936377013624664,261.457538841292262 -136.805691808418175,58.923177001446795,261.476979270577431 -136.843845493232806,58.919800234827946,261.533224028535187 -136.862874487996805,58.932054535400191,261.562842210754752 -136.860684389683371,58.942925336737126,261.560806405730546 -136.880688987147039,58.962448451101331,261.592629232443869 -136.921391688692466,58.947272895639422,261.651325536891818 -136.918855960149614,58.938440152503269,261.646602771244943 -136.935211113157777,58.916308294701565,261.668454867787659 -136.937700118242844,58.916401237566532,261.672159724868834 -136.936316897101165,58.90861476418695,261.669253758154809 -136.93150042982856,58.900187430555633,261.661174891516566 -136.871040618852049,58.885301419953066,261.569699772633612 -136.770785507253862,58.870668969174687,261.419011711142957 -136.747363023884049,58.876687349396413,261.384913435205817 -136.67924241180296,58.856411317139212,261.281185396946967 -136.615660629484012,58.846291952763025,261.185356582514942 -136.586283043036332,58.838891770675417,261.14071062207222 -136.540880510854009,58.819844208667767,261.070676192641258 -136.466106431199307,58.781676733126268,260.954216694459319 -136.359627226134251,58.69265512780008,260.782871317118406 -136.357062554072542,58.684378375097296,260.777844278141856 -136.375614170619741,58.667484355700132,260.803136756643653 -136.398914102694249,58.654495141996364,260.836109849624336 -136.412713675047002,58.649323957312248,260.856009602546692 -136.425146518589912,58.647485725733922,260.874346945434809 -136.452663723598533,58.637889341215455,260.914151442237198 -136.485229995299079,58.616812111913639,260.95990423951298 -136.462270292838639,58.60795382342112,260.92425381578505 -136.386163461455027,58.630061654949209,260.813489210791886 -136.345664369841359,58.64510553299754,260.755078258924186 -136.334204878748551,58.66362035797264,260.740650683641434 -136.320032510436107,58.671306493135575,260.720584840513766 -136.249206890232443,58.663262240427898,260.613481434993446 -136.235321030646446,58.677221224889585,260.594813907518983 -136.22614786253672,58.675105475924468,260.580782075412571 -136.216498056058498,58.665131918555069,260.564847222529352 -136.197039314294273,58.58181127398484,260.522904968820512 -136.184424551936047,58.535100636970142,260.496633369475603 -136.173325936621438,58.527405060475346,260.47874793689698 -136.103128817974294,58.500757226701275,260.369009492918849 -136.106748996865434,58.478085675966263,260.370729710906744 -136.086372528306953,58.447200846272189,260.334962702356279 -136.064985628757057,58.435881581715968,260.30087748169899 -136.055847158905038,58.417462214276938,260.28400700353086 -136.044634192827658,58.380249334424903,260.260762391611934 -136.095459697130025,58.349077950970297,260.332085584290326 -136.114743177495825,58.342617679515953,260.360084750689566 -136.268716891793247,58.314583958773845,260.587862489745021 -136.279579838809809,58.313978734455141,260.604170786216855 -136.291066011920861,58.316228428851829,260.621889597736299 -136.299092190819522,58.318531198004621,260.634389064274728 -136.30696958406179,58.323533906523998,260.647102422080934 -136.307932999679821,58.328774761349393,260.64941097330302 -136.305904603189589,58.336360626511571,260.647582582198083 -136.301531134855907,58.343024565100812,260.642064006067812 -136.292868815273266,58.351530554536211,260.630373409949243 -136.284444949922289,58.353173700876276,260.617930236272514 -136.276743774525784,58.363492626621735,260.607990148477256 -136.285419077109594,58.367344345080731,260.621699837036431 -136.291682264279672,58.369732151093828,260.631531921215355 -136.339543871429242,58.377651912217537,260.704973428510129 -136.384849662640335,58.362775267378204,260.770938063971698 -136.367961396729214,58.346745017308045,260.742915243841708 -136.363229193705564,58.34415918243517,260.73536126781255 -136.359926984795834,58.328920615482382,260.727936449460685 -136.373788819887551,58.301725955312321,260.744498175568879 -136.379273577707778,58.298707906435034,260.752299449406564 -136.392773447000025,58.297152646819939,260.772449349053204 -136.474830134104053,58.306436624076646,260.897905943915248 -136.535636293578165,58.334150630890406,260.994020181708038 -136.552815782141238,58.340449104147318,261.020910079590976 -136.595842500229168,58.349869935461065,261.087258783169091 -136.616313333610094,58.34796553072411,261.11786278616637 -136.633237741950438,58.340683331439486,261.142321223393083 -136.641445770623562,58.328534439310602,261.152907668612897 -136.629156155534446,58.320666896089278,261.133179346099496 -136.579606813462419,58.27802999818325,261.051852092146873 -136.572638086660106,58.268779371516416,261.039891083724797 -136.57076122736683,58.245232974153737,261.03340607136488 -136.594727059172612,58.217966099567967,261.065446852706373 -136.600000828350176,58.215086052728829,261.072985981591046 -136.622626409138888,58.209978678464992,261.106464219279587 -136.661440176286845,58.207401888494331,261.164864215068519 -136.704053094640699,58.219493663879746,261.231246292591095 -136.726196088461933,58.245002567713641,261.268589338287711 -136.733690995918607,58.256572126773392,261.281645752489567 -136.719900352504823,58.273584023546,261.263303656131029 -136.733026342080507,58.286228433876772,261.285007958300412 -136.765006362861897,58.286839717027043,261.333434307016432 -136.787134638708665,58.290571142140784,261.367418121546507 -136.860415620474214,58.316431916599811,261.481795160099864 -136.851803631378345,58.329065805156745,261.470556323416531 -136.949479641427473,58.393253134872097,261.626600351184607 -136.989201465537263,58.404110004416808,261.68786983564496 -137.012232826354079,58.408943383579889,261.723186606541276 -137.021226837550643,58.409207179585984,261.736766502261162 -137.080925839352176,58.397539143647229,261.825204008258879 -137.114618410882855,58.392658518795137,261.875352161005139 -137.137270500780602,58.406659688662003,261.911220229230821 -137.182848309418461,58.430001133347545,261.982696493156254 -137.242187091579979,58.45321927875672,262.074738412164152 -137.255531328755978,58.456397910055763,262.095179327763617 -137.281433546588914,58.459543265919166,262.134496620856225 -137.298610059947038,58.466237729760607,262.161091128364205 -137.411583886686941,58.515877071704004,262.336308337748051 -137.499831128826344,58.557773142095876,262.473073024302721 -137.571047460769336,58.588038862212301,262.582806375809014 -137.611636466141761,58.601282657176348,262.644866238348186 -137.635721325724944,58.600030156140498,262.680814773775637 -137.674523518406573,58.615569936558877,262.740342458710074 -137.683645013982328,58.621881587493831,262.754567549563944 -137.679693040898826,58.646816090000911,262.750900351442397 -137.686353124679329,58.66031262727649,262.762060686945915 -137.690464501065719,58.665034426198595,262.768623843789101 -137.797879184853912,58.724896660333371,262.934092614799738 -137.878194680787999,58.757271134923585,263.056404461152852 -137.904520292208844,58.765354366130474,263.096247025765479 -137.931002486550369,58.780570428049728,263.136820740066469 -137.944675589185238,58.794358805986036,263.15817651245743 -137.947107554764813,58.802385239106066,263.162368968129158 -137.947805429468133,58.804688497096222,263.163571185432374 -137.942202183674937,58.813757410349425,263.155874468386173 -137.934414696101811,58.819823441575402,263.144716599956155 -137.93047431085671,58.827223357072427,263.139378000982106 -137.927459691497546,58.843964036062019,263.136072014458477 -137.9354466966617,58.868529291884286,263.149644347839057 -137.954850103606958,58.886063458664651,263.179652244783938 -137.988054976890965,58.909558183629557,263.23048510029912 -138.069192750261834,58.957156295941473,263.353731845505536 -138.13910909448964,58.989053607557366,263.459086237475276 -138.133864389267842,59.002640823000505,263.452060746029019 -138.120416094636937,59.012521661182802,263.432698288932443 -138.121718968361421,59.021334663660454,263.435100855305791 -138.147460477217948,59.028098939706382,263.473525465466082 -138.253398827665904,59.047055163360923,263.631059032864869 -138.639575891737735,59.130598712474395,264.203995699062943 -138.708776393803788,59.162560452783424,264.306700257584453 -138.766345659662591,59.191329524030067,264.391998155973852 -138.850379254917385,59.224841902330958,264.516065658070147 -138.92263205388906,59.248535764831786,264.622452023439109 -139.04747838559004,59.280342278825287,264.805834305472672 -139.273920540856238,59.337415970723242,265.137407034635544 -139.345939944304121,59.356600941349342,265.242568586021662 -139.423060666088048,59.379750709629612,265.354972693137825 -139.544051959102944,59.423058051661826,265.530765951611102 -139.598083685335467,59.445398351084762,265.609005006961524 -139.749380128377311,59.503395693469699,265.827560424804688 -139.858469592618178,59.536637528534456,265.984936637803912 -139.865452220976806,59.544235203641122,265.994754832237959 -139.864211433854564,59.546655177074726,265.992843461222947 -139.850142400463824,59.557281251914915,265.971921887248755 -139.840723838087627,59.561961356487281,265.95802756678313 -139.810067289939326,59.554311207809384,265.913803949020803 -139.787975206320539,59.564021481510565,265.881286930292845 -139.771582162352502,59.597588097738686,265.856057715602219 -139.740102304609422,59.632607019137886,265.808883764781058 -139.735184688675787,59.636838034575653,265.801571210846305 -139.721872108237648,59.641134235141394,265.782084657810628 -139.711004276802129,59.642635443360803,265.766263798810542 -139.670149086316968,59.638782436534775,265.707180945202708 -139.658131607687579,59.633476403341767,265.689962930977345 -139.659344600115475,59.621190066554291,265.69220248889178 -139.67434806928415,59.615661855890878,265.714188650250435 -139.679221668688825,59.611228846028261,265.721435290761292 -139.675318959799881,59.602874118268474,265.716096242889762 -139.657489600256355,59.5979956226833,265.690398040227592 -139.6260355272928,59.595890368111384,265.644804768264294 -139.617423662948966,59.597116532161621,265.632255607284606 -139.590046519826586,59.605940944394909,265.592193821445107 -139.584358817090589,59.609152999482426,265.583824567496777 -139.585440134332913,59.613524347925171,265.585240273736417 -139.592281979290931,59.618655136568456,265.594987135380507 -139.596401086723176,59.624298396118441,265.600760721601546 -139.588703711608417,59.642746158655555,265.588922907598317 -139.521098853549319,59.687795666742524,265.489319372922182 -139.526931983931689,59.712490993391455,265.496866116300225 -139.555568392493456,59.706815481394493,265.538524433970451 -139.581944769648004,59.712177776801674,265.576490299776196 -139.590097042493824,59.715629519548372,265.588150126859546 -139.596281531426655,59.72148225325914,265.596863025799394 -139.594909843329873,59.725005206298476,265.594736211001873 -139.584500754669875,59.735042217246942,265.579274834133685 -139.579312044413143,59.738158264228211,265.571645653806627 -139.56229949717445,59.74267854344474,265.546865615062416 -139.549034413034974,59.752646619877069,265.527292833663523 -139.564975301758551,59.774865778322692,265.54942617751658 -139.580337513917783,59.789310120350052,265.571004687808454 -139.593359301325364,59.810209373734885,265.588893641717732 -139.620147897097581,59.863551614594734,265.625072650611401 -139.62760070509367,59.884362996232099,265.634804350323975 -139.624250688058936,59.906699586176416,265.628886952996254 -139.61985016927801,59.911973569916562,265.622295682318509 -139.613700346178149,59.913733668815652,265.613362964242697 -139.600170383652397,59.9136269726203,265.593907321803272 -139.580170860437363,59.918240318387859,265.564919055439532 -139.538842504293001,59.935223872123821,265.504687264561653 -139.530395957890477,59.940022956709903,265.49232080206275 -139.491647967244006,59.995009635740047,265.434080106206238 -139.488979521433379,60.012382322041439,265.42942232824862 -139.508338862986392,60.039402310617568,265.455852267332375 -139.558106676509823,60.039216204131186,265.52718055061996 -139.579766480101654,60.015398232046614,265.559471657499671 -139.604794458085507,59.959839870283034,265.598252225667238 -139.608732066264196,59.95557387459619,265.604125399142504 -139.660391922346662,59.944699958016315,265.678909303620458 -139.685396768264667,59.943956416777461,265.714878624305129 -139.696363441269455,59.940702242756011,265.730812687426805 -139.708267876385236,59.934798105238713,265.748240957036614 -139.772471637411826,59.87807990601992,265.84368524607271 -139.771544268119925,59.851132513722582,265.843807589262724 -139.778448719920846,59.845182489794361,265.854074749164283 -139.804127517378419,59.83255819377424,265.891764676198363 -139.814115195210178,59.829304042560985,265.90633939858526 -139.912778790260177,59.806040355953442,266.049922619946301 -140.10551357882008,59.754877193748634,266.331225988455117 -140.144011823046327,59.747945490732477,266.387281640432775 -140.167578197797155,59.741844101544373,266.421727259643376 -140.181052599342053,59.735593940107982,266.44160963781178 -140.19152965294299,59.725213936735059,266.457439493387938 -140.213825718140697,59.715500656194479,266.490317922085524 -140.259268449542105,59.70301692305749,266.556873285211623 -140.275183172833522,59.700573623657846,266.580058285035193 -140.288473954499239,59.698681370360667,266.599412363953888 -140.317316801164225,59.698265738823387,266.641158951446414 -140.387938613405851,59.699442143905614,266.743211300112307 -140.604588867283866,59.712910032591402,267.055350733920932 -140.639555580829835,59.711365290388549,267.106012008152902 -140.724896827499521,59.718517236108397,267.228696035221219 -140.886500756651031,59.737563223775929,267.460286104120314 -140.930138261103593,59.745658074680861,267.522471124306321 -141.016258269643544,59.773284547975074,267.643875803798437 -141.159420104947799,59.813524474952075,267.845764195546508 -141.2190720147359,59.82722584608095,267.930057139135897 -141.426849493529545,59.867296342666549,268.22394544724375 -141.444949925199609,59.873258808541422,268.249191627837718 -141.45343429438941,59.890353657010053,268.259196412749588 -141.470463044185834,59.971204421219824,268.273097102530301 -141.533230655093121,59.977586013713015,268.362110385671258 -141.634294989672355,59.962690135415968,268.508845035918057 -141.711986189567966,59.948865204288275,268.622044826857746 -141.872701729910034,59.998756532913973,268.844736567698419 -141.91515446523357,60.009700348469565,268.903757254593074 -141.969114993696081,60.019048943428359,268.979415372014046 -142.001755118967708,60.022525141498214,269.025496110320091 -142.065390863321028,60.023698701440047,269.116195648908615 -142.102995914297196,60.026688799939549,269.169413925148547 -142.132977057906032,60.030243055451763,269.211641781032085 -142.248118117390703,60.049691068757184,269.372721869498491 -142.540473406468664,60.083858821154273,269.783400275744498 -142.592615462576987,60.088086569786142,269.85686968639493 -142.70135824516737,60.093235041072433,270.010700290091336 -142.812790709115177,60.09511652504716,270.168910895474255 -142.878186042660474,60.092326134694787,270.262504243291914 -142.911796639375638,60.090225434948437,270.310741323977709 -143.07163466553834,60.068497368536761,270.542583885602653 -143.1385496435081,60.061975028766248,270.639166373759508 -143.19720924412016,60.061886729689334,270.722666054032743 -143.416307861066826,60.05181109601223,271.036591191776097 -143.627080088909992,60.037139753058533,271.339746061712503 -143.701916716489109,60.027642307952377,271.448399720713496 -143.888397001132176,59.99666490445054,271.721048447303474 -143.894351503017162,59.995675765032573,271.729759870097041 -143.934133435891937,59.998219827665437,271.785778477787971 -143.981490792945209,60.006222600083767,271.851242170669138 -143.992157933139936,60.008705308303121,271.865816785022616 -143.991562393221585,60.013868205507016,271.863716907799244 -143.99427970258489,60.017600061586499,271.866675391793251 -144.004167910217035,60.02078077139403,271.87996397074312 -144.01674712530172,60.024272414690834,271.896999389864504 -144.046459538272018,60.025047574470314,271.93905436899513 -144.058289493444533,60.036876010137945,271.952959005720913 -144.055349600535976,60.046874485787853,271.946314224041998 -144.036251087572509,60.05940619549709,271.916091863065958 -144.143434150252546,60.11426959663978,272.054450285620987 -144.207586699930715,60.137168665645106,272.13949781563133 -144.232735996348794,60.142654986570477,272.173696964047849 -144.256812870603824,60.165759938969799,272.201774842105806 -144.256915390140392,60.182799557809709,272.197470217943192 -144.321792458110849,60.189158979739702,272.287527289241552 -144.361710044737862,60.187995121707999,272.344263520091772 -144.372246742026846,60.185521943410066,272.35981687810272 -144.382159186734185,60.168953092733069,272.378247275948524 -144.444869160124796,60.162930838909901,272.468549124896526 -144.456890327352568,60.165865507433573,272.484760181978345 -144.481094527202401,60.181455624337765,272.514766014181077 -144.503994080089086,60.189674934463291,272.544892924837768 -144.537826777062122,60.18927919446201,272.592802615836263 -144.548035480016239,60.186858022460555,272.607889578677714 -144.556719957394193,60.181772943584065,272.621555395424366 -144.558026641193493,60.178343991104633,272.624342569150031 -144.56109655544816,60.177655938513887,272.628869807347655 -144.599189597060331,60.181524009377895,272.681633534841239 -144.65783419928664,60.20473819443648,272.758005606941879 -144.669492686462632,60.222427542749109,272.76949998550117 -144.665622319094126,60.229151478898679,272.762150109745562 -144.665302233177187,60.23933525969862,272.75883374735713 -144.669072597261248,60.24374007841913,272.76290937513113 -144.71841464826781,60.271068379823951,272.82469813618809 -144.756391443570521,60.283367266509984,272.874658888205886 -144.785462965866287,60.291823435591574,272.913145897909999 -144.895756134860903,60.292669975413496,273.068105956539512 -144.91695589205861,60.280782769920485,273.101432538591325 -144.94507444789636,60.289575952585949,273.138406460173428 -144.915654304913261,60.363024979412486,273.075267356820405 -144.874379633809866,60.407115923454384,273.004232835955918 -144.858409637269375,60.416733066219336,272.978981270454824 -144.837014251246615,60.443597951632178,272.941006277687848 -144.851618169805278,60.455038377511158,272.958045956678689 -144.877407147982012,60.457149759587146,272.993520075455308 -144.890297926762202,60.455893501302853,273.011944031342864 -144.90625057091043,60.442426442564319,273.038329366594553 -144.967089233988474,60.444310052950826,273.122954829595983 -144.986539292002391,60.44674556854519,273.149446520023048 -145.015363142031077,60.447762907528016,273.189487067051232 -145.128501502629348,60.429229808018988,273.353581890463829 -145.155315564330351,60.42139838641733,273.393557484261692 -145.183990279705881,60.407371401921623,273.438079964369535 -145.194130393566667,60.395078650942764,273.456111343577504 -145.205836914363374,60.374755296295341,273.478838441893458 -145.172876147143938,60.329829019720059,273.446467207744718 -145.115138601148061,60.296044046511916,273.375654297880828 -145.125379946675366,60.289719960489215,273.391973294317722 -145.225834811328184,60.297752560393853,273.530737362802029 -145.367237009046818,60.335798588577369,273.71744026709348 -145.506259474322974,60.387787362110195,273.895685882307589 -145.513403311211022,60.408820738935162,273.898856554180384 -145.506876572282181,60.410439980156575,273.889196123927832 -145.504495621852669,60.416631848380717,273.883850820362568 -145.505298448984917,60.420644106037649,273.883668470196426 -145.539890025313952,60.430364677317115,273.928878690116107 -145.56447194688252,60.442954855813852,273.95911461673677 -145.597107444479121,60.451659941951,274.001851784996688 -145.6717910071566,60.46525899022221,274.101646934635937 -145.738888237487998,60.474486302850949,274.192213852889836 -145.802266514631043,60.461856179851829,274.284959264099598 -145.856415532820165,60.445454345120808,274.366151998750865 -145.885239177645929,60.444456730138299,274.40674220956862 -145.949846555632746,60.455217064409638,274.493225215934217 -145.960350975215221,60.460922706139065,274.505906878039241 -145.964007296193159,60.464838538794318,274.50964957755059 -145.963455527300567,60.467331495904347,274.508014358580112 -145.917353208426192,60.492171966801742,274.435107553377748 -145.866043542335518,60.501643892683795,274.360307495109737 -145.805340769035212,60.519996831724207,274.269400314427912 -145.71585134183016,60.583073430735659,274.123228943906724 -145.73945522162802,60.595033646999553,274.151963599026203 -145.767005638631275,60.591411116071647,274.191517226397991 -145.783587352106053,60.579005020023075,274.218848036602139 -145.801776608029684,60.561740995109616,274.250098705291748 -145.823615324599501,60.549873771805885,274.284583648666739 -145.831578223663001,60.549568602301136,274.29577375203371 -145.967494671116299,60.513377391137801,274.497608021833003 -146.042158103617879,60.492787194539417,274.608853459358215 -146.07735660456899,60.479903701233226,274.662449203431606 -146.112659389590618,60.470163136663608,274.71510512009263 -146.219729555080335,60.45004421775689,274.871560747735202 -146.250087352959611,60.451003526267684,274.913551953621209 -146.315495292965949,60.457251943803911,275.002489182166755 -146.320297533766592,60.460421767483268,275.008034843020141 -146.354234636142479,60.454106158605413,275.057626968249679 -146.358276150090802,60.449162179198424,275.065057189203799 -146.359191989022207,60.425340688571048,275.074978766962886 -146.353042447138449,60.407594219398398,275.072819375433028 -146.333056577575292,60.406912675471318,275.045167201198637 -146.311723426708568,60.414060986931617,275.012814781628549 -146.287140969547181,60.417471453438495,274.977278633974493 -146.13689964773522,60.431341461501248,274.762641009874642 -146.129971649028306,60.430633630181198,274.753220582380891 -146.126537429798219,60.427849767798556,274.749408399686217 -146.129141067313839,60.424108793366329,274.754361872561276 -146.097190104149917,60.410115809630639,274.714660227298737 -146.13599634832255,60.383593543143185,274.778189044445753 -146.201615583419084,60.359746627182147,274.878329924307764 -146.27098584950798,60.347775364716931,274.979594154283404 -146.305100638750304,60.349050583914263,275.02685544360429 -146.3957898171289,60.327291072194683,275.161508218385279 -146.461250373891005,60.30706408404783,275.26040621753782 -146.493333961883167,60.294752654290619,275.309775043278933 -146.54282133988454,60.27078110479767,275.387779479846358 -146.610216027071431,60.240994294499522,275.493071055039763 -146.630900686462013,60.239444874429651,275.522632386535406 -146.643950670863063,60.240708558691637,275.540461662225425 -146.653375763834788,60.242793304128654,275.552906949073076 -146.69204890407309,60.27108881326776,275.596654548309743 -146.696560602538199,60.279417525855351,275.599887318909168 -146.696073052274272,60.284402424042305,275.597357665188611 -146.684394851078622,60.292056508357852,275.578178880736232 -146.65278130813428,60.304872915355588,275.52920657210052 -146.597907291441089,60.321013760350056,275.446503867395222 -146.574545569687785,60.321566262440129,275.413630452007055 -146.543236403884038,60.338622568982579,275.363597523421049 -146.527125624535842,60.350478657989377,275.336735262535512 -146.545636099747526,60.357785086345068,275.359918955713511 -146.578369716460884,60.357082380866295,275.405907159671187 -146.609968903941962,60.351482810312071,275.452119688503444 -146.627146814350965,60.341216662379175,275.479920358397067 -146.658823417583818,60.340270985983501,275.524534569121897 -146.72008063058945,60.349405431826263,275.606701054610312 -146.72804447917855,60.359746024259472,275.613944455981255 -146.726603978736335,60.387412435642716,275.601533909328282 -146.724015796875761,60.396222295405977,275.594605944119394 -146.640327010269175,60.466984561185321,275.451361595652997 -146.613385945104994,60.485419745705286,275.406936770305037 -146.593576632048894,60.490846062231078,275.377339555881917 -146.531797338364584,60.491943400870575,275.290977316908538 -146.526809951893796,60.487140617420536,275.285826191306114 -146.508388192588427,60.476770253953731,275.264039153233171 -146.457989629828546,60.465128624354207,275.198161930777133 -146.370947863332475,60.480483204692256,275.071301898919046 -146.319310886605933,60.497311972149049,274.993269002996385 -146.292634794798715,60.515505159215728,274.949525962583721 -146.158844034194487,60.526111881081818,274.759522861801088 -146.082916276997963,60.542873190411548,274.647893282584846 -145.954297557380073,60.576598294855948,274.4570875428617 -145.889481975226914,60.585533533481311,274.363844272680581 -145.875531023946621,60.584656861398727,274.344753989949822 -145.847188438329653,60.586330452090237,274.304764929227531 -145.803371526082572,60.5938182584039,274.241250096820295 -145.797705230357224,60.600943228301702,274.230909695848823 -145.7982484112907,60.60297317197638,274.230962642468512 -145.818670292561563,60.612038864239054,274.256200520321727 -145.835282143000512,60.614672096826844,274.278364541009068 -145.859007565553412,60.610756656982439,274.312689676880836 -145.891311209115145,60.610123955696984,274.357788428664207 -145.899227271860923,60.611608748061947,274.3682646388188 -145.900746428573598,60.613472673752298,274.369721163064241 -145.899122821655567,60.628503381851516,274.362190080806613 -145.898205756513136,60.629031903550604,274.360731191001832 -145.900109880838158,60.651032869333363,274.355633547529578 -145.886869644239368,60.658004010901628,274.334810682572424 -145.870736584378108,60.666603181305454,274.309408318251371 -145.844313587749639,60.685712351836116,274.266055236570537 -145.84438694585134,60.689606265777385,274.264788312837481 -145.847508952211882,60.689988188327249,274.26898096408695 -145.854751856610335,60.689677034604841,274.279128588736057 -145.861128671032048,60.688302923125136,274.28845027461648 -145.878788044094506,60.683271641054468,274.314700034447014 -145.897224017960468,60.673982434346264,274.343535736203194 -145.902174691718614,60.670936390863126,274.351475579664111 -145.924970717942955,60.651772302753436,274.389862479642034 -145.927887410080245,60.648716304690652,274.394988889805973 -145.93988375215298,60.631871406072612,274.417587937787175 -145.940029607414374,60.63030843692048,274.418342426419258 -145.968520632007596,60.622565975175284,274.460631784982979 -146.005493583991523,60.614899324334658,274.5146842924878 -146.007581669706695,60.616048253031103,274.517175174318254 -146.008715716166336,60.616671214328974,274.518528228625655 -146.010635962807697,60.619559108764214,274.520167095586658 -146.010708473939246,60.625142985247507,274.518280634656549 -146.002160976324319,60.640648836185505,274.500897105783224 -145.971699778934948,60.668051913924479,274.448890459723771 -145.939998417141425,60.682639298983418,274.399759764783084 -145.934403713855289,60.68529536523284,274.391062844544649 -145.914506928131686,60.69646456363995,274.359528835862875 -145.902131872585215,60.70545964283442,274.339195543900132 -145.904249750778348,60.715190385176356,274.338674365542829 -145.908447681463883,60.714862299266187,274.344603400677443 -145.981072207547442,60.684528348327028,274.456003544852138 -146.019367239293899,60.667037880599608,274.51533208694309 -146.027984982658268,60.665126731403639,274.527962732128799 -146.05863408532602,60.658500197224036,274.572830060496926 -146.089256185146581,60.651844664503649,274.617681885138154 -146.119874096630042,60.643141176789143,274.663279745727777 -146.133902583294827,60.638994956892176,274.684234275482595 -146.14620997935242,60.633682800604753,274.703227361664176 -146.150196715777582,60.631220766191575,274.709649136289954 -146.190635700013189,60.624334022222641,274.768245728686452 -146.256032872794492,60.622126624260623,274.859767737798393 -146.261339185808595,60.626099419988222,274.865670916624367 -146.266101657236902,60.631743191213957,274.870203739032149 -146.271644457299004,60.641050865138652,274.874466961249709 -146.273217780426137,60.644738749752293,274.875290579162538 -146.27321106551878,60.647845682022897,274.874137360602617 -146.265943459632979,60.651379765575562,274.862764672376215 -146.191124463019889,60.687144641310866,274.745994737371802 -146.181641935530536,60.691294760894046,274.731346278451383 -146.143607787395212,60.707464251420149,274.67278846539557 -146.12704138419457,60.712229514755855,274.64812445640564 -146.104030235343885,60.719089875457314,274.61378537863493 -146.046708027248968,60.743449617503465,274.525650290772319 -146.048298974431702,60.753853357322321,274.524075397290289 -146.051677843036629,60.763583072262833,274.525210241787136 -146.067531913364746,60.776756436613574,274.54231551848352 -146.070195607780676,60.773730442888031,274.547098865732551 -146.073941297940479,60.770768423827477,274.55335390008986 -146.088080248030337,60.7608753242421,274.576499614864588 -146.092752934714497,60.757968283550063,274.584018092602491 -146.12336114840096,60.741792955467822,274.632236734032631 -146.163189328655704,60.72619441146837,274.693022863939404 -146.171028158541617,60.725161260315396,274.704243109561503 -146.194125550809275,60.731800604961073,274.733740714378655 -146.201995694240168,60.734169379359855,274.743748383596539 -146.204881810020396,60.735722281797329,274.747165343724191 -146.203070489601146,60.74289116655055,274.742015307769179 -146.211710141128123,60.744200062924818,274.753472154960036 -146.219781404056079,60.741509436053889,274.765621985308826 -146.231219532656866,60.735452704543285,274.783672833815217 -146.23367425064842,60.721817946008429,274.792110415175557 -146.242479693974843,60.716698862253281,274.806180842220783 -146.260630167226822,60.712877543549709,274.832699095830321 -146.306364739790553,60.713022528303199,274.8958974275738 -146.316825073045038,60.717734194426654,274.908605608157814 -146.320267334625044,60.720932048766514,274.912171323783696 -146.320916576708754,60.723624975896136,274.912063222378492 -146.315251608126488,60.734208871461213,274.900278877466917 -146.349541400066727,60.735554083398306,274.94715893920511 -146.389858057548679,60.714404650935819,275.010826662182808 -146.40583692090226,60.692890765928865,275.041012757457793 -146.415483584543324,60.690256610001249,275.055348172783852 -146.477104162612193,60.68134444185651,275.14396027289331 -146.502810781133036,60.679938904225153,275.18005752004683 -146.520810336431737,60.687906332360384,275.201927258633077 -146.535358344413112,60.68955197482979,275.221419636160135 -146.581774928399824,60.690014938692833,275.285426191985607 -146.610114294920692,60.686179396125418,275.326082449406385 -146.626226587560495,60.68022217026364,275.350653237663209 -146.652019608107651,60.683239534342,275.38515545334667 -146.670715278373677,60.692561917464445,275.407395510934293 -146.702183591649117,60.731975362001826,275.435537829063833 -146.706562444625717,60.741702053353499,275.437782038003206 -146.607975971459126,60.758408869792547,275.295259318314493 -146.569698667151812,60.751000210637507,275.245305120013654 -146.503648252959209,60.771915884528831,275.146129475906491 -146.467794477118105,60.770525708014866,275.097197382710874 -146.361590947818939,60.785998723795949,274.944798916578293 -146.307419571712927,60.797844667360351,274.865609314292669 -146.258391152009182,60.80976949602438,274.793518431484699 -146.186138287390634,60.846777300676479,274.68010102212429 -146.174878872247007,60.862631209973642,274.658679352141917 -146.176113163195623,60.865879112953081,274.659166969358921 -146.191167326708666,60.869181708388503,274.678659747354686 -146.265553461887293,60.867593093563116,274.781654837541282 -146.271640035329796,60.863648043341229,274.791521319188178 -146.293180857614544,60.842500020449904,274.829162185080349 -146.316734247369936,60.827638818529465,274.867221447639167 -146.336400507073222,60.82172651030907,274.896556951105595 -146.397344017097907,60.812075368833931,274.984209761954844 -146.553550213312121,60.809202973009604,275.20055715739727 -146.558937221469733,60.809866839437994,275.207721376791596 -146.62339705792715,60.868817140625026,275.273438136093318 -146.66734578860283,60.870651128249982,275.333129432052374 -146.703716329051133,60.848141808693619,275.392024462111294 -146.721105976119901,60.835463697778891,275.42095653526485 -146.722505451302652,60.829962785734416,275.425056916661561 -146.717720591901355,60.820182103144141,275.422335085459054 -146.722761993067479,60.814272119545755,275.431607151404023 -146.727815723844799,60.811917058757011,275.439494126476347 -146.75781802847635,60.807678487022827,275.482475506141782 -146.803582313222563,60.804955534058053,275.546560919843614 -146.821989162949023,60.816140884606433,275.567440368235111 -146.82198150319968,60.84136233883973,275.557353582233191 -146.819279837060435,60.855422094750075,275.54801167268306 -146.790407057468315,60.865391518285186,275.504343321546912 -146.777132181324532,60.876019582822877,275.481857066974044 -146.759981562637478,60.878248914306376,275.457406549714506 -146.730202729295684,60.866065835893473,275.421337803825736 -146.70066761009798,60.872330354526916,275.378262190148234 -146.71426670326494,60.896260538421821,275.387445127591491 -146.739005744495699,60.910095693360141,275.415893401019275 -146.749740986149561,60.935247915769494,275.420557216741145 -146.748528069620249,60.957375468536412,275.410014550201595 -146.70434427658148,60.986802818271869,275.337677330709994 -146.656424476521778,61.047545587347379,275.2477419199422 -146.664513623919333,61.060569131622195,275.253561741672456 -146.69354764202879,61.063868417823663,275.291897497139871 -146.786722701131225,61.042726801285127,275.427770957350731 -146.851100058424464,61.00037727740051,275.53304812964052 -146.865695213155732,60.982313340201209,275.560388238169253 -146.864946625662583,60.975967492533357,275.561950577422976 -146.871811111959886,60.971238441757727,275.573276332579553 -146.882837409717695,60.964951332271895,275.590938263572752 -146.93277094018967,60.944052675169857,275.667871620506048 -146.976052612189363,60.934623919970861,275.731039982289076 -147.041932606192432,60.941866306796925,275.818308852612972 -147.058734748148851,60.945254862274361,275.839916793629527 -147.073534263191505,60.963098151619839,275.852767569944263 -147.066213345808251,60.973843083068765,275.838279432617128 -147.050073122029545,60.99099507270757,275.809064965695143 -147.065657520030783,61.004121361887229,275.82490155287087 -147.097849733754799,61.009973623493018,275.866450349800289 -147.115592541067144,61.002758370917185,275.893721918575466 -147.139867222479182,60.980752305330647,275.936139500699937 -147.147620504486525,60.963276508926853,275.954073789529502 -147.138550986854284,60.94603308014733,275.948879322968423 -147.146293305971142,60.939616046991802,275.962162505835295 -147.174602359106984,60.932661570768516,276.003838190808892 -147.184235278489581,60.932883353014802,276.0169364400208 -147.207908921992782,60.942443623734952,276.045331005007029 -147.218252318987339,60.947860278454407,276.057206344790757 -147.223788731983888,60.95290404751394,276.062655166722834 -147.229467517279602,60.961942727557336,276.066607101820409 -147.222556277675238,60.969287722519717,276.054049962200224 -147.223307411904045,60.9814844439856,276.04991886112839 -147.224598570544515,60.983323375961326,276.050905596464872 -147.255965871079894,60.9794027664501,276.095446883700788 -147.276627181144477,60.97437641756553,276.125827794894576 -147.280983868646842,60.96084461218085,276.137536076828837 -147.283412724999636,60.916745508883615,276.159555160440505 -147.381057044328685,60.877626198268032,276.309944494627416 -147.454540778828402,60.893998220890296,276.403635638765991 -147.455876057214255,60.897145123236214,276.404112759046257 -147.454673725729634,60.925658532885926,276.3901999713853 -147.456382161395652,60.94124615850415,276.38581648375839 -147.476067451065205,60.95732937671329,276.405779308639467 -147.49452329329435,60.957774959411445,276.430812126025558 -147.510242252278772,60.927012276454057,276.465643027797341 -147.508983700641465,60.920947435396528,276.466547685675323 -147.505338671013988,60.920206531907453,276.461880848743021 -147.496785013601112,60.912156894942939,276.453655454330146 -147.52039512425867,60.894596754068949,276.493567473255098 -147.528027156809173,60.895834558765998,276.503482760861516 -147.54597363904125,60.903108004976247,276.524901658296585 -147.552728001113621,60.907785754532689,276.532116513699293 -147.539780546677179,61.019120639691963,276.465850342065096 -147.537017679204013,61.03086444879046,276.456932440400124 -147.518768728252439,61.061182202907858,276.418753672391176 -147.505310877218704,61.071830272851628,276.395747812464833 -147.516766022278148,61.095900505708087,276.400754548609257 -147.52808737555435,61.100949147659755,276.413932167924941 -147.561190884259219,61.099569444981277,276.459575897082686 -147.557428163177917,61.091491700537034,276.45803012792021 -147.560214159985804,61.081174859222394,276.466381585225463 -147.59424169452322,61.016364495482591,276.541337618604302 -147.621777034800658,60.969813889292574,276.599406718276441 -147.616821356783305,60.951270398962272,276.600783749483526 -147.60072102810426,60.913680567485606,276.595222734846175 -147.590277474968616,60.874239653645915,276.598101833835244 -147.605371039795443,60.84975485325711,276.62941796798259 -147.629550321345477,60.84484142697346,276.664700055494905 -147.671557538439458,60.8413385769462,276.72381454333663 -147.674892846429401,60.845058422304156,276.726762179285288 -147.680259075080585,60.869734766587676,276.723319611512125 -147.665927695109417,60.87472597413808,276.701506381854415 -147.668823482568143,60.883548718483141,276.701607572846115 -147.733361328400918,60.911028698125541,276.777821030467749 -147.763813175909917,60.912998983630146,276.818590246140957 -147.790081196094889,60.873283267572461,276.872132108546793 -147.782682343506337,60.863207650149995,276.866461439058185 -147.769925567737516,60.853317146957096,276.85335848107934 -147.753176622358239,60.851914546780712,276.831031744368374 -147.735086282929046,60.824485544189145,276.818291536532342 -147.732382715608622,60.818026744916565,276.817414958029985 -147.736213555528536,60.816749688397806,276.823228914290667 -147.746217160297419,60.813661535443011,276.838304224424064 -147.780117522130041,60.810791851149759,276.886064613237977 -147.831725407223672,60.815719606208049,276.954666222445667 -147.858880562088274,60.820653899970509,276.989709814079106 -147.91635931719145,60.824922540362593,277.066589223220944 -147.918075725620582,60.818725638204633,277.071706743910909 -147.923404064864599,60.812212663493639,277.081915897317231 -148.036908097794083,60.782966806398669,277.250648831017315 -148.101102683228817,60.786323319941395,277.337162502110004 -148.13694171139349,60.791034427793115,277.384155537001789 -148.147310129940621,60.796855071697223,277.395718848332763 -148.154553986796799,60.817887450341182,277.396059201098979 -148.151256000701352,60.82846629085055,277.386715706437826 -148.104806068516041,60.899111769207799,277.290903926827013 -148.088187046688716,60.918377715798457,277.259389275684953 -148.068101074438772,60.937727737775667,277.223115031607449 -148.020248770705336,60.971572058742332,277.142361737787724 -147.953597892463932,61.028976289454661,277.025332132354379 -147.950764779419558,61.04039027226797,277.016262708231807 -147.964950509401092,61.059301605307134,277.026908060535789 -147.976374329312733,61.067154631457129,277.038840253837407 -147.985655820541893,61.070010167948148,277.050147135742009 -147.994223023092587,61.069296046972077,277.062122282572091 -148.004618216067485,61.059866498975843,277.080593593418598 -148.006196605893876,61.053560599704596,277.085640427656472 -148.068480230847911,61.003742299478731,277.193329900503159 -148.093065057298645,61.004872732931673,277.226288299076259 -148.097979588409601,61.011146489040136,277.230082758702338 -148.108365693609898,61.034884747794983,277.233232822269201 -148.128108355711191,61.070458549254688,277.243545525707304 -148.15200471634958,61.076431911797776,277.273223145864904 -148.168949206323163,61.069036676127574,277.299696819856763 -148.167429725825741,61.042425282672802,277.310056006535888 -148.180622543543421,60.999368921636467,277.348056086339056 -148.201940682541078,60.971345058861836,277.390120617114007 -148.221922774559033,60.953334009575912,277.425726321525872 -148.244631039783343,60.937498853661403,277.46405319403857 -148.268550633881972,60.936091357529165,277.497329344972968 -148.284212730384695,60.917552416483154,277.527334460988641 -148.29743447603542,60.862512328053583,277.57099090423435 -148.312666988822485,60.837498541299972,277.603424478322268 -148.34366498774051,60.808833489480648,277.659134562127292 -148.353413407264526,60.803752386969954,277.67483657412231 -148.378369071095648,60.803230849811278,277.709240460768342 -148.392470106181662,60.805382492448757,277.727539634332061 -148.399567767602946,60.813454158740683,277.733489675447345 -148.429509248153181,60.82687252023284,277.768174803815782 -148.449230782955624,60.808463974609822,277.803774191997945 -148.453073243403765,60.796164539628244,277.814791642129421 -148.453841307641341,60.789246125158726,277.819080349057913 -148.444615660952934,60.777715685257029,277.811836451292038 -148.434027517825342,60.771602324077413,277.800185749307275 -148.408526590604708,60.780061697678903,277.761314609088004 -148.398912646719822,60.779461922193292,277.748425421305001 -148.384949446684516,60.775529315845006,277.731125032529235 -148.369356714008717,60.765594877842666,277.714366034604609 -148.368261445211232,60.740731451530884,277.724366448819637 -148.387036120373779,60.687517466127446,277.77468519564718 -148.376958837488928,60.672403945393391,277.767790574580431 -148.350823117620394,60.680091615514932,277.72834203299135 -148.329301688983662,60.709303059508066,277.685374627821147 -148.283085558539256,60.753101049906853,277.601849569939077 -148.272473052049435,60.757153193707474,277.585436144843698 -148.232707126661722,60.763904918973594,277.527811890468001 -148.150613545725605,60.758302847805517,277.4177609924227 -148.123316974637703,60.748719659520845,277.38464190158993 -148.109937283086254,60.739538156402851,277.370419806800783 -148.09425964447459,60.676018906713374,277.377408919855952 -148.096675273775134,60.661303180252993,277.387315100990236 -148.14553517877772,60.622401972244013,277.471997286193073 -148.232896684544983,60.594830669361151,277.604766064323485 -148.240764062149935,60.599974381686543,277.613294492475688 -148.257787407271394,60.594892121617391,277.639048932120204 -148.295769288850749,60.565263951498679,277.70479010976851 -148.309053798511229,60.550469991967176,277.729795566760004 -148.331095848704706,60.531680930681837,277.768701034598053 -148.33617395725696,60.530231903162822,277.776366556994617 -148.34855303824861,60.502741199483509,277.805869065225124 -148.349302746673629,60.48849850429005,277.813322418369353 -148.331910815857668,60.475951168774046,277.794915350154042 -148.296458833160585,60.482770791931486,277.742827399633825 -148.258351164544621,60.49318006926422,277.685476000420749 -148.250793928344933,60.500274398560116,277.67185926809907 -148.253059540043751,60.507343189686743,277.671832812018692 -148.241482922889702,60.521213131525144,277.649634918197989 -148.194965697720733,60.557141345575445,277.569340034388006 -148.117703074395592,60.595800176979878,277.445503186434507 -148.105684390934101,60.597797396349705,277.428040050901473 -148.089315347041548,60.595289811850527,277.406578496098518 -147.981950627437925,60.518921878708554,277.291882340796292 -147.966547317644228,60.502526584943041,277.277708088047802 -147.974126765926144,60.486255784261033,277.295266764238477 -147.980178199326616,60.480713776112523,277.306051854975522 -147.944634271022892,60.443807387709484,277.272767998278141 -147.995855513924653,60.352375334897637,277.38320486433804 -148.028506601996071,60.27880929683927,277.460146891884506 -148.067402922744577,60.276012509007522,277.515528006479144 -148.118772643468617,60.279300308985363,277.585661078803241 -148.153041743279033,60.295987176947641,277.626154680736363 -148.156032318936326,60.302838954838201,277.627345233224332 -148.15653507269721,60.311376748770698,277.624339127913117 -148.153020925370356,60.320515617080936,277.615482154302299 -148.153143230562449,60.323958535838216,277.614156100898981 -148.173793986636895,60.335041830772795,277.638040033169091 -148.195582084087732,60.338878266125462,277.666645638644695 -148.219833142394094,60.331368906337545,277.703632869757712 -148.21875896812881,60.318044234044599,277.707968948408961 -148.214104014559695,60.306736594335298,277.706434869207442 -148.218061441394923,60.300789643681611,277.714535023085773 -148.287712989744819,60.270745807575665,277.824595279060304 -148.31552997628728,60.262858380063697,277.86677788104862 -148.328476718117827,60.261598125815006,277.885355789214373 -148.365000767888034,60.22162324671271,277.953788784332573 -148.342055277337238,60.21312494418644,277.925529655069113 -148.335552408311969,60.213775071360793,277.916178912855685 -148.324108932375225,60.218244218552691,277.898270711302757 -148.278656169223154,60.249045503882257,277.821473254822195 -148.219768782725737,60.259782545680963,277.734769663773477 -148.211233819668223,60.25911874766939,277.723169651813805 -148.194905396510649,60.252277261960231,277.703389299102128 -148.191203090248024,60.248351433089248,277.699930528178811 -148.195473444980905,60.241603494614665,277.708802505396307 -148.203682900356455,60.236488432528553,277.722459211945534 -148.231834513806234,60.235687835075268,277.762046339921653 -148.237129373606507,60.22346600036613,277.774730583652854 -148.193431385219696,60.206735341305048,277.721015647053719 -148.168000600155978,60.205951915597588,277.685868130065501 -148.161849154739798,60.211453923490105,277.674919017590582 -148.156678499391603,60.226014701662329,277.661442286334932 -148.155941329583413,60.235306504249813,277.656413253396749 -148.142773967979025,60.240859664845317,277.635664332658052 -148.09314128947176,60.215643330377169,277.577253391966224 -148.120200822964819,60.191115302970502,277.625505132600665 -148.136524381630977,60.188170013794675,277.649557712487876 -148.137890031849963,60.184376071398717,277.653087810613215 -148.133539775305792,60.169569508164471,277.653338350355625 -148.129189583572298,60.166843666230527,277.648423336446285 -148.093775116355573,60.168430404137624,277.598260599188507 -148.08308749194336,60.171349570548848,277.582085157744586 -148.082784611831897,60.184015285105687,277.576277712360024 -148.088692058585934,60.189822022058507,277.58205696195364 -148.085775295270935,60.192138032516098,277.576997331343591 -148.064767210922241,60.199875314010903,277.544369610957801 -148.054820494768705,60.201843486370493,277.529644922353327 -148.006333744867646,60.175950143641941,277.472876905463636 -148.009556030167147,60.168244250785705,277.48063010070473 -148.02130292820425,60.157202248550682,277.50170820299536 -148.031768205441153,60.150301178972001,277.519252672791481 -148.035392981137903,60.148206148081044,277.525205693207681 -148.067298636375739,60.148290448311258,277.569790531881154 -148.100124778461407,60.119902387365627,277.627725631929934 -148.124687424951759,60.073330931460745,277.681808819063008 -148.098609047651479,60.065718678301103,277.648467208258808 -148.082356867180465,60.073034863303164,277.622610462829471 -148.05632368767931,60.090546025544313,277.57877336256206 -148.043072727705322,60.112144814398583,277.551138158887625 -148.015166454675892,60.124518471461585,277.506873320788145 -147.964599097592725,60.140684870435358,277.429328381083906 -147.915721900176266,60.132362132047206,277.36439192481339 -147.895216975858318,60.119301882533655,277.341103098355234 -147.890630162352494,60.109470210296017,277.338749983347952 -147.895471361730813,60.100948301652068,277.349059485830367 -147.976003282683195,60.064422387941626,277.477100788615644 -148.001549798884668,60.062090883728757,277.513898506760597 -148.016439525590698,60.037945120208434,277.544837083667517 -148.026702211678071,60.006894240869791,277.572147320955992 -148.018920114254627,59.999130971469732,277.564433835446835 -147.989049441300267,59.999131623922942,277.522462200373411 -147.927290331826242,60.036018113342941,277.420499294996262 -147.895121045144521,60.06305318805682,277.364212051033974 -147.882571735394976,60.069381315564264,277.344000987708569 -147.863500534692292,60.076144575738404,277.314467676915228 -147.850965898928024,60.078750789463413,277.295816075056791 -147.824936129172556,60.066744637262069,277.264222213067114 -147.819343740498624,60.061613878636891,277.258472389541566 -147.818130468159779,60.058351980885874,277.258102269843221 -147.826629193327022,60.044825109211864,277.275556657463312 -147.866816405357838,60.006409124905829,277.347693495452404 -147.920423027740753,59.985786434868665,277.43148629553616 -148.008708939119003,59.961330078818726,277.565699188038707 -148.034651161914098,59.955649645549911,277.604536636732519 -148.039657176640532,59.956451517465148,277.611247597262263 -148.053588086943648,59.968694926423581,277.6257737679407 -148.053025973231854,59.97655331717511,277.621725616045296 -148.05925689229926,59.990209461585081,277.624813384376466 -148.072802630750914,59.98888403430351,277.644398774951696 -148.088702448308339,59.977297958325316,277.671566205099225 -148.107699519968463,59.969022737480898,277.701717026531696 -148.137975301720473,59.958840315448576,277.748530896380544 -148.156621712683489,59.95442801208641,277.776593904942274 -148.227716537913352,59.949978565483434,277.878425810486078 -148.25397743790586,59.952198940487229,277.914409138262272 -148.255747695458695,59.955396826741598,277.915547200478613 -148.216379523684424,59.99442577035903,277.84375262632966 -148.196725119537149,59.998762097825157,277.814324800856411 -148.182428076033148,59.996436464316048,277.795229544863105 -148.150497282175735,59.994736201114364,277.751101357862353 -148.135183690525992,59.997481471198483,277.728442147374153 -148.131577230444407,60.003226415589879,277.720968924462795 -148.14180289872013,60.01219998258518,277.731559771113098 -148.178693702611014,60.026119851960225,277.777469396591187 -148.215552574768282,60.017883239671974,277.832669322378933 -148.276727475073699,60.01309901631312,277.920536007732153 -148.320825323080101,60.028510693564172,277.975803718902171 -148.308611705280612,60.054247359147972,277.947648927569389 -148.293254360394997,60.059774565510786,277.923761869780719 -148.295711332910798,60.151066390813952,277.887866966426373 -148.308764093284481,60.161383866785911,277.901627087034285 -148.319745306424579,60.165213538218701,277.915298675186932 -148.349430678242982,60.1618839666111,277.958198362961411 -148.361083054126141,60.156285841633022,277.976909821853042 -148.372000805572213,60.120698428445408,278.007659072056413 -148.385211613134715,60.063076481223639,278.051139293238521 -148.40408467537344,59.997378606060302,278.105953509919345 -148.431983890178259,59.968936665469315,278.157355999574065 -148.448465235034718,59.963533433231966,278.182825085707009 -148.473082819110971,59.973485662614713,278.213090185075998 -148.483049221784171,59.979430305652009,278.224505295976996 -148.48538351251085,59.983085168895883,278.22619744669646 -148.479853114320207,59.989292143680508,278.215747909620404 -148.483315933252356,59.999170836317063,278.216320621781051 -148.51170491266393,60.002651135727909,278.254618829116225 -148.547013504013705,60.002584367588248,278.30415394064039 -148.559171812312059,59.984706522508475,278.329011837951839 -148.558130163663066,59.98043301928498,278.329415838234127 -148.601995371342184,59.950664390852374,278.403972081840038 -148.638714978547341,59.939435856004884,278.460438182577491 -148.676694988621591,59.944601907051762,278.511493196710944 -148.679045168145166,59.946989799523585,278.513741831295192 -148.678358596114322,59.951843699950821,278.510642391629517 -148.667157855923591,59.964901636010111,278.489178000018001 -148.664750602181414,59.967209254679176,278.484784988686442 -148.66370566305801,59.96950854932652,278.482306824065745 -148.665587081963764,59.971598759947298,278.484025359153748 -148.671021941593125,59.973270840427098,278.490911495871842 -148.677716390327078,59.97247222769866,278.500652879476547 -148.691632823077299,59.967779035178225,278.522242873907089 -148.718385004169079,59.961892591380057,278.562369387596846 -148.728746023489606,59.963499327893551,278.576191741973162 -148.730562117057104,59.964822257157529,278.578153127804399 -148.732605728097354,59.972148039979679,278.57777277380228 -148.740328375707094,59.980650671504982,278.584827593527734 -148.74610497990642,59.985160096144661,278.590921343304217 -148.752617706943596,59.988268137207946,278.598666934296489 -148.758242179195662,59.989008060869395,278.60621986258775 -148.76268246326282,59.988711946009403,278.612574256956577 -148.766678661326353,59.987675797551589,278.618636020459235 -148.769786792852813,59.986639667001981,278.62345342990011 -148.772746706012043,59.983235400090258,278.629118560813367 -148.80080137176779,59.977170436809544,278.671145014464855 -148.804097198556832,59.97561440173962,278.676459455862641 -148.813526985375574,59.962875496943973,278.695366617292166 -148.841175520493124,59.949670207047767,278.740038310177624 -148.875052161193537,59.950090459985717,278.787361410446465 -148.887136458014936,59.955157077323172,278.802032797597349 -148.891409357586809,59.966130725157392,278.803090610541403 -148.904853802350971,59.97308726839406,278.818799734115601 -148.915962528589773,59.982974793382802,278.829902209341526 -148.917442830501074,59.986658674294361,278.830311519093812 -148.915550373195202,59.992661573968704,278.824948273599148 -148.920693547017919,59.995362398386916,278.830928760580719 -148.941201607590443,59.998840870104765,278.858065966516733 -148.960428320136117,59.998137468277967,278.885300452820957 -148.980462347693162,59.989647232543007,278.917205614969134 -148.993173429226175,59.980779165265915,278.939036627300084 -149.019661693598067,59.975899704307778,278.978352635167539 -149.031289788614458,59.978586387935771,278.993411081843078 -149.032266234081646,59.983863242091786,278.992369757965207 -149.030146917710113,59.991463108818792,278.985932107083499 -149.034146459301724,59.998256861554218,278.988424554467201 -149.046138371130354,59.99887958600079,279.00492076203227 -149.070704611756724,59.981941451472366,279.04706123098731 -149.097941360819874,59.982782839303539,279.08480135537684 -149.103558528462827,59.985490653190638,279.091419142670929 -149.104656967213856,59.990706506121676,279.090558088384569 -149.105192895098099,59.992912040493827,279.090293443761766 -149.1045893094566,59.993918167132655,279.088985998183489 -149.101571108008358,59.995930455901316,279.08383724745363 -149.098150388254709,59.997137865736342,279.078495850786567 -149.092944843528471,59.9992085601518,279.070260616950691 -149.091950294044125,60.004267462442442,279.066542536020279 -149.075590803312735,60.019416461236084,279.036693785339594 -149.044475134965694,60.03048987754606,278.988100002519786 -149.040315689378389,60.040294177330928,278.977782194502652 -149.043235716549134,60.048507480881433,278.97808665689081 -149.05216847702215,60.058463052622869,278.985982075333595 -149.061578446703464,60.061181406585966,278.997871419414878 -149.099497689118607,60.044393353266592,279.058590997010469 -149.135991278276549,60.044679552563089,279.109439271502197 -149.207725318090269,60.008972833849583,279.226265222765505 -149.226650799483508,59.982524047392936,279.265028758905828 -149.238255860550481,59.938553837063829,279.301674516871572 -149.290450450888699,59.906267470973198,279.389780078083277 -149.329897705094851,59.986787850615329,279.407435902394354 -149.328691732078966,60.000790945567289,279.399174487218261 -149.344460536234493,60.076518269848108,279.38544721994549 -149.36329235398108,60.101420292602945,279.399865249171853 -149.396048922813634,60.099599821860878,279.446365398354828 -149.419705732483976,60.088680474753353,279.484537743963301 -149.419697830177938,59.99769058621569,279.527808162383735 -149.43061648777234,59.995870520433741,279.543925929814577 -149.437895272392922,59.990410982245244,279.556684268638492 -149.465719085812708,59.949907628399664,279.614771414548159 -149.478523149095253,59.952454289986264,279.631476022303104 -149.510293780394903,59.964274319677706,279.670290610753 -149.552537760359741,59.919436346857431,279.750714884139597 -149.587109872734402,59.866661459344733,279.824211937375367 -149.545250232767415,59.822987197299895,279.786136311478913 -149.514311885983318,59.806609662353608,279.750384330749512 -149.530685513362755,59.750195594762026,279.799788654781878 -149.6016589083344,59.755653453313464,279.897065808996558 -149.643518458221166,59.799327692756876,279.935279688797891 -149.669000278399722,59.850281478600806,279.946802292019129 -149.709041476045314,59.910333953249648,279.97408574540168 -149.756352563076348,59.861198378689316,280.063985919579864 -149.741783039402776,59.731993048407254,280.105309347622097 -149.754520467160091,59.71743439863895,280.13013809826225 -149.761948399928059,59.697581125346424,280.150008431635797 -149.780861850825801,59.685686188812106,280.182277270592749 -149.801140575125174,59.677301090275229,280.214813406579196 -149.8455100559583,59.701054265396472,280.265963654965162 -149.841874748237245,59.752008653063825,280.236455579288304 -149.892832458657836,59.784763921297611,280.292227166704834 -149.98018511767404,59.801140200234371,280.406799065880477 -150.031138952186808,59.78840053348889,280.484472692012787 -150.045696137766498,59.772022016346043,280.512907834723592 -150.018397354928794,59.753824629482381,280.483486223965883 -149.98200017109744,59.744726436608666,280.436805928125978 -149.951060920420616,59.717430149991706,280.406549411825836 -149.965617806007401,59.697412050356633,280.436681363731623 -150.005652615860953,59.682852813040732,280.500030861236155 -150.025668297126543,59.655555411379389,280.541393656283617 -150.034763877391697,59.613699893966697,280.574392736889422 -150.07116220831702,59.637356465381998,280.61425634752959 -150.098460435512806,59.648274663436823,280.647399163804948 -150.111195339503837,59.602779467505577,280.687402036972344 -150.171245815511611,59.56092283464789,280.792364729568362 -150.225838566801372,59.539084097075275,280.880005954764783 -150.256773944440397,59.520885460216938,280.932527200318873 -150.313187269449116,59.508145669409608,281.018399273045361 -150.345944315785204,59.511784557632474,281.062875856645405 -150.336847643579205,59.540901502199596,281.035766512155533 -150.318651301723236,59.562739454752069,280.999385863542557 -150.320474162770779,59.59913534605802,280.984053714200854 -150.3505192981942,59.60067393641944,281.025606265291572 -150.358315987073325,59.598157830307422,281.037828755564988 -150.415266589932628,59.554373682399351,281.139716475270689 -150.434332978619494,59.514033269154659,281.18653675634414 -150.481551731499394,59.458244637730019,281.280728743411601 -150.501709288687181,59.45604425908423,281.31030114647001 -150.519126563569699,59.462071734737314,281.331935123540461 -150.524346960589583,59.467669483328486,281.336540848016739 -150.524436519686731,59.474417313697913,281.333326388150454 -150.5211929498372,59.476881177751068,281.327525327913463 -150.518677945700546,59.48191200396974,281.321481890976429 -150.519097571369116,59.486523517502611,281.319789262488484 -150.525805998686621,59.4944887629742,281.325308602303267 -150.538931308644777,59.498201411543789,281.341988850384951 -150.546349842855648,59.509999847224357,281.346586538478732 -150.553059004426018,59.526768925531542,281.34768972825259 -150.552640740679152,59.53850738901459,281.341239319182932 -150.535873334174539,59.562823126393205,281.305461518466473 -150.540067216663516,59.58084995668893,281.302343857474625 -150.54467929296456,59.586719085229717,281.305893664248288 -150.550548869804089,59.590072810350129,281.312471712939441 -150.558933571534567,59.590072629899936,281.324271338060498 -150.578636743346578,59.579172192905837,281.357478614896536 -150.592132176625512,59.564895616419626,281.383652349002659 -150.59735910745232,59.552908800175061,281.397034459747374 -150.605045757445623,59.545633185378264,281.411515562795103 -150.617622799046416,59.545213685534947,281.429444437846541 -150.633973298535267,59.548986406292101,281.450578031130135 -150.642357833047384,59.546890071064901,281.463443234562874 -150.641518098072936,59.531797791765221,281.469856585375965 -150.634390226407021,59.521317178902066,281.465077675879002 -150.617964257641262,59.509941421054556,281.447623658925295 -150.597867652538184,59.499520111650661,281.424490668810904 -150.592456748427907,59.4998262203788,281.416704146191478 -150.587447350216252,59.494253466390305,281.41241766884923 -150.582405171882698,59.4792839465917,281.412762085907161 -150.582678850199585,59.475453035924211,281.41505569126457 -150.587151128524994,59.467459138574469,281.425348985940218 -150.58837464825092,59.449801551768353,281.435855969786644 -150.583989305476138,59.444977766156995,281.432054605334997 -150.603967425164001,59.425401825031379,281.470008721575141 -150.652850394145815,59.420628894258208,281.541490887291729 -150.654390445674352,59.421494839561042,281.543236724101007 -150.656816375975438,59.445201195985661,281.534840939566493 -150.659135743166956,59.454180007924826,281.533630585297942 -150.670018316072372,59.457642297807936,281.547266555950046 -150.686041818874116,59.458282882030929,281.569570661522448 -150.719369952257352,59.450591000531752,281.620488532818854 -150.73186751836397,59.441938174026447,281.642483617179096 -150.742762062062809,59.42495328847464,281.666403046809137 -150.747805487611458,59.400471359690798,281.68580951821059 -150.772651872677898,59.372708522223419,281.734858131967485 -150.798267703059935,59.36258722676947,281.776176367886364 -150.822361928060076,59.357017849925334,281.813068548217416 -150.837422960971821,59.351721993394328,281.837044034153223 -150.880239949502112,59.317861594601503,281.914682555012405 -150.914389980252366,59.311355334303485,281.966329456306994 -150.915608462169445,59.304955572296741,281.971277726814151 -150.898342098080775,59.285969011688223,281.956348060630262 -150.890614161197874,59.273268498297234,281.951755596324801 -150.890609703027678,59.26766264020003,281.954555570147932 -150.900595568927571,59.255390736987792,281.974863330833614 -150.944997146377972,59.232878357085312,282.049152051098645 -150.962315868589144,59.232279001609008,282.074037314392626 -150.977948955414291,59.235882575564226,282.094417119398713 -150.991180966426185,59.230290512602039,282.116008517332375 -150.998189760850011,59.223890639590209,282.129175307229161 -151.003980058435388,59.223890515697683,282.13739521894604 -151.009466343235999,59.233032864007598,282.140580344945192 -151.011600628654719,59.245527516773052,282.137310673482716 -151.010077337218235,59.251317770964349,282.132228588685393 -150.999594430156833,59.257479564558871,282.114251711405814 -151.001850619553608,59.270821871098093,282.11071461904794 -151.025884004091921,59.268784715412458,282.145814372226596 -151.035217428682756,59.275501345542658,282.155641375109553 -151.047199728458509,59.293349637415162,282.163558842614293 -151.048889176267153,59.299097455919515,282.163029212504625 -151.060545688463577,59.301459590252001,282.17833330668509 -151.073092912195335,59.287590228850718,282.203163958154619 -151.07095363415749,59.283840369541061,282.202041913755238 -151.074689335515927,59.280796366645198,282.208882880397141 -151.090105127617164,59.268528347504919,282.236967794597149 -151.094317618736397,59.268925388145924,282.24273528996855 -151.10842010029711,59.26288100445931,282.265798291191459 -151.103885644628662,59.240343767742097,282.270833052694798 -151.105177658747266,59.22845204225905,282.278703410178423 -151.110339701016073,59.217531209580159,282.291567905806005 -151.129027811465704,59.209662010245815,282.322082545608282 -151.166187722191438,59.202374401445809,282.378527905791998 -151.189033430461421,59.202550908636077,282.410862504504621 -151.193727743748553,59.206369398065526,282.415577366016805 -151.195414045451628,59.2109453986563,282.415635439567268 -151.208833506394683,59.219056065009035,282.430529093369842 -151.226409679121645,59.22408356134595,282.4528828272596 -151.264415838592498,59.220039852052665,282.508849910460413 -151.276559436014139,59.229398354258159,282.521254520863295 -151.283324818222951,59.230211059478748,282.530425691045821 -151.287659828109554,59.227320834959627,282.538058705627918 -151.289842860259569,59.224524194509357,282.542593407444656 -151.290550413914104,59.219152316223671,282.546362047083676 -151.295590927759434,59.214008339610459,282.556156481616199 -151.308502369134231,59.209279184338186,282.576900070533156 -151.344379914646879,59.221965094549212,282.621217949315906 -151.382392043131176,59.241756340973453,282.664813930168748 -151.390041712247097,59.250182649738314,282.671264441683888 -151.393325724683251,59.264648962585568,282.668379027396441 -151.402331506191047,59.275736488457397,282.675337566062808 -151.409985674713056,59.279080239991657,282.684418367221951 -151.432196784977435,59.268283416415336,282.721484036184847 -151.440475192023001,59.253720233320976,282.740812588483095 -151.451986584578293,59.248188128281569,282.759997841902077 -151.491390585867748,59.237444926936313,282.821400112472475 -151.512328500470602,59.234125047023092,282.852781627327204 -151.521265193452621,59.23003941370068,282.867577235214412 -151.527903692056299,59.22467711539953,282.879790604114532 -151.523021050478036,59.216660415619302,282.877081184647977 -151.507475208107962,59.212421204186164,282.857281849719584 -151.50236793717022,59.207569846293374,282.852584312669933 -151.500580251974839,59.203995111840264,282.851920178160071 -151.50160129207319,59.199909642743833,282.855502067133784 -151.505431025999258,59.194802749459221,282.863597854971886 -151.524229294000918,59.195213937836606,282.89002488553524 -151.560925164149751,59.199815037265211,282.939610101282597 -151.577437952083187,59.195056553079439,282.965504132211208 -151.582033522632429,59.187396237927601,282.976039943285286 -151.579223516697652,59.172331206211005,282.979962863959372 -151.583122037330099,59.164963456222097,282.98935304954648 -151.59349961117357,59.161455324904409,283.005908307619393 -151.701644230522362,59.162808984918975,283.158510859124362 -151.713393665327345,59.157824862511667,283.177800756879151 -151.723699359633741,59.155805694781648,283.193476979620755 -151.741836102552213,59.155732310246506,283.219221994280815 -151.751219182151317,59.158328043658543,283.231142616830766 -151.767677320243962,59.175236258893918,283.24547151569277 -151.764222774200022,59.204960570563365,283.224738570861518 -151.761302666502303,59.215468363842248,283.214997394941747 -151.764073975653446,59.221052262894744,283.215934368781745 -151.841106019249764,59.208858832369728,283.331421161070466 -151.877126742261112,59.21165399336796,283.380858136340976 -151.918455426720897,59.227243713738893,283.4308608667925 -151.920019707415491,59.230975584895042,283.431051211431623 -151.913730238063351,59.236428579353607,283.419213104061782 -151.908963382173255,59.237685112851992,283.411798694171011 -151.907879464640104,59.246796175925503,283.405334187671542 -151.92782447882044,59.254148826017079,283.429511539638042 -151.955495766295741,59.250167338255544,283.470743128098547 -151.962051444884139,59.247345270764093,283.481533902697265 -151.981520670234289,59.253498698715759,283.505668492056429 -151.994395357687296,59.313334897847689,283.491105153225362 -151.965910318643893,59.344675708146397,283.433787937276065 -151.955485830007063,59.349130817310332,283.416667129844427 -151.926799643866673,59.354135302076017,283.37354036141187 -151.905803078155941,59.360172776636752,283.340677969157696 -151.893521356360054,59.372874386585643,283.316441002301872 -151.889886465992873,59.382250377104434,283.306193323805928 -151.910800216293268,59.394991608456024,283.328621410764754 -151.907938729345972,59.400752523843373,283.32143393997103 -151.889300634503797,59.420750416477851,283.284249072894454 -151.828836967077336,59.438767253151774,283.189406041055918 -151.773666471192172,59.447636208329264,283.107043591327965 -151.75421163115783,59.446273658292007,283.080451963469386 -151.74332949389219,59.438152228352479,283.069582755677402 -151.731277280119059,59.439399260338625,283.051963930018246 -151.723212781111158,59.442837407155295,283.03875923063606 -151.709255599611481,59.462531210242219,283.008435877040029 -151.697520222084108,59.46809032145925,282.988926964811981 -151.637268223421898,59.482164256619193,282.896657878533006 -151.572828002056326,59.468667973428261,282.813413842581213 -151.545145091010227,59.466784865210251,282.775515447370708 -151.531289856601887,59.472061776971145,282.753203839994967 -151.508687557770145,59.476772142554573,282.718905200250447 -151.48842170569003,59.475183616056327,282.691268973983824 -151.473789250726924,59.471974564653792,282.672414244152606 -151.469070273810786,59.483774417175574,282.659467945806682 -151.472430189309023,59.502535273779102,282.654139647260308 -151.439161645652689,59.530052976892826,282.592665955424309 -151.423769575571669,59.537452852418205,282.567092873156071 -151.368580804977285,59.540980538643389,282.48773390147835 -151.326476186386344,59.55066919979145,282.423461256548762 -151.27526579937475,59.555550596409667,282.348975391127169 -151.269541393004829,59.562358721913718,282.3373271105811 -151.267619458844848,59.568325022719328,282.331462959758937 -151.274546020179827,59.576194678755158,282.337002371437848 -151.28171496969523,59.588755213309227,282.340376876294613 -151.281637300352543,59.592706116987436,282.33816400449723 -151.277605689634271,59.596712104138902,282.330376951955259 -151.204489227068052,59.591230808570216,282.23073816113174 -151.206645068189431,59.577689098100294,282.240927393548191 -151.211939634695398,59.573351092159271,282.25065229460597 -151.211172681817317,59.561789395664839,282.25568572897464 -151.195611923777165,59.562160720220561,282.233640280552208 -151.167070359757304,59.586741722747881,282.180606843903661 -151.161066036012102,59.593869674995098,282.168420763686299 -151.168239539102586,59.601057343045468,282.17468975763768 -151.19084487264243,59.608414307618482,282.202502688392997 -151.208273416496638,59.630010767592296,282.215477276593447 -151.21045425625374,59.640396464198297,282.213011157698929 -151.206001762310564,59.645715428450252,282.203944862820208 -151.17680064545587,59.651519912159195,282.159960341639817 -151.128940682001542,59.668063532239316,282.084161460399628 -151.12418128367915,59.674462476921974,282.074106885120273 -151.125610520220846,59.677509371223579,282.074492577463388 -151.1193111478064,59.695859055283321,282.055942353792489 -151.101075514695765,59.709169120240595,282.023368376307189 -151.021715563763706,59.75632067151664,281.887429100461304 -150.930143913224242,59.793159743089838,281.740052144043148 -150.950963528773968,59.791922325057499,281.76977510843426 -150.985826326990349,59.783270785619308,281.823029074817896 -151.00449348599841,59.788118265688013,281.846523299813271 -151.009547807058766,59.792713044892878,281.851140631362796 -151.030586795002137,59.795922513914839,281.878798613324761 -151.066588049727045,59.792871813692742,281.930661880411208 -151.116673023642932,59.776956124879334,282.009056660346687 -151.175264039909962,59.751070498338152,282.104708104394376 -151.217361653048414,59.729571120700172,282.175034288316965 -151.332629190029053,59.683366781671438,282.360983897000551 -151.379870345143019,59.681034825361017,282.428290257230401 -151.427654781501815,59.670242066512728,282.500940906815231 -151.439424270296058,59.666080916825962,282.519654086790979 -151.442000973885229,59.662967938460078,282.524946397170424 -151.443940134409871,59.653264136696471,282.532922613434494 -151.451481580619173,59.647892107825321,282.546384835615754 -151.464064977391047,59.642759964991747,282.566772255115211 -151.506632436432085,59.633382037731323,282.631420770660043 -151.645870778987103,59.646682971560082,282.818843609653413 -151.689296333383396,59.660579697107032,282.871848609298468 -151.749626609731052,59.685947777078951,282.941993572749197 -151.799112413970505,59.703868274188636,283.001008513383567 -151.831950291453069,59.719862175869686,283.037807265296578 -151.853086577997402,59.738745257284528,283.05662174988538 -151.862142334946469,59.749276803724818,283.063288834877312 -151.872284839744168,59.768868104049886,283.066330775618553 -151.870530644161619,59.778119914057321,283.058655605651438 -151.86015786537439,59.790853823364991,283.037024792283773 -151.836161147027212,59.813837773654228,282.990661176852882 -151.816442979286393,59.844005457691665,282.946183139458299 -151.805886032306091,59.878240847877763,282.912104533053935 -151.795422053836006,59.888517821795382,282.891755634918809 -151.780684001156317,59.897200926505192,282.866391019895673 -151.760524001303452,59.917344869026614,282.827009359374642 -151.745575513842539,59.944333534471639,282.790964235551655 -151.720849410522845,60.009179496285498,282.719814307056367 -151.705739579371084,60.031959271651509,282.685932222753763 -151.664281306170835,60.056845564117928,282.614481686614454 -151.626646500079914,60.087739631956083,282.54492440726608 -151.609729733675238,60.099264719788927,282.515019768849015 -151.548431090968563,60.128101349635855,282.414087736979127 -151.52074091944715,60.144715549420837,282.366481165401638 -151.49157729014857,60.167323638995711,282.313458680175245 -151.424563170949426,60.212639006994443,282.195486888289452 -151.409469711698506,60.22789097111658,282.166069040074944 -151.390785368848299,60.266773454883662,282.118290952406824 -151.384828068464742,60.296657878775719,282.093092910014093 -151.386102629411482,60.32605415964548,282.078061946667731 -151.384478498998561,60.358433434721746,282.057309178635478 -151.38015615788953,60.365227368870698,282.047497251071036 -151.369749932412077,60.37236042662164,282.029161911457777 -151.30896807214998,60.386963398519462,281.937599755823612 -151.304746291990455,60.384418748346015,281.933273045346141 -151.302660279496365,60.385187339768628,281.929978632368147 -151.295954807446861,60.41586900495016,281.903276366181672 -151.289701530529868,60.434353709406388,281.884150859899819 -151.286851125113429,60.451901362705634,281.870205559767783 -151.283881535669167,60.512331024937147,281.831443859264255 -151.281700232452238,60.519810899069313,281.824162613600492 -151.267353611376961,60.542966827696198,281.791266992688179 -151.271265953504468,60.548680457907125,281.793303204700351 -151.306018567994869,60.561028420520131,281.833500374108553 -151.326845419511528,60.573836674265024,281.85442825127393 -151.333303901172286,60.580240386869534,281.85949915740639 -151.341965005459258,60.593944883774398,281.863314416259527 -151.34737465053891,60.613158324766097,281.859480666927993 -151.348406487616529,60.622654084279539,281.855345890857279 -151.353053472563374,60.634359714928927,281.854826078750193 -151.365297994339102,60.653225017111936,281.860419865697622 -151.390741520676585,60.674198985607077,281.8826416535303 -151.407355131852512,60.694701156847799,281.89310591481626 -151.413178494054762,60.710719664879591,281.891553034074605 -151.412176369229826,60.720254469091309,281.884568536654115 -151.387707565575681,60.729642785513278,281.845896820537746 -151.373423096390866,60.733269012609306,281.824419211596251 -151.31213961235045,60.740422178759765,281.737238449044526 -151.282545660224145,60.747374662618384,281.69309214875102 -151.273416116158501,60.750984778645275,281.678616751916707 -151.264294832275965,60.757466829319952,281.662472043186426 -151.262255325906864,60.762594757161928,281.656707405112684 -151.26423192417721,60.769499557593655,281.655335138551891 -151.255815423345581,60.773691645164369,281.641490039415658 -151.215100573808911,60.780041384956839,281.58268781285733 -151.108995372914166,60.78345061170122,281.4371183430776 -151.065475315549094,60.787131473793032,281.376078371889889 -151.039925237489399,60.793351888309381,281.33789733517915 -151.028552746007335,60.797200048496784,281.320281715132296 -151.027718148050781,60.801489969755238,281.31667410582304 -151.014936013725901,60.809043077072296,281.295015214011073 -150.898433629504211,60.852870623810794,281.112203801050782 -150.889890206777608,60.857891696937543,281.09777014143765 -150.886700587300169,60.861569683779877,281.091346155852079 -150.848659580058438,60.877598152210844,281.030737870372832 -150.811348326619765,60.89104166344277,280.972626529633999 -150.773526685133675,60.911068039415518,280.910088680684566 -150.708748004748315,60.93749886128365,280.807553259655833 -150.681376266061875,60.957974002301654,280.758951996453106 -150.606009787210297,60.974142286639818,280.648108669556677 -150.585412775442308,60.981803566015621,280.615988058969378 -150.518002295593448,60.99915265269491,280.515284261666238 -150.514043877125886,61.004854612975912,280.506727867759764 -150.504868261899929,61.007666751081921,280.492772390134633 -150.457607699060702,61.016276592627257,280.424221099354327 -150.434820690418206,61.023649927475098,280.389363428577781 -150.40480823545505,61.03593831203942,280.342019233852625 -150.380120838686139,61.038855787077203,280.307121930643916 -150.3566514741633,61.031534461101479,280.279596473090351 -150.344657927746027,61.023913891075033,280.267688984982669 -150.313280136027487,60.989261341345383,280.244664717465639 -150.289313342301,60.966411370175855,280.224974509328604 -150.265038923854945,60.947555317948222,280.202592366375029 -150.247014309540702,60.938301916722608,280.183321605436504 -150.220120874803541,60.929718694434513,280.151664434932172 -150.190598785984491,60.924514454685706,280.114572173915803 -150.088108144046743,60.91374093270025,279.981690922752023 -150.073231307957258,60.913400265323013,279.961726177483797 -150.048512293383141,60.909725886988824,279.930230965837836 -150.052090782191499,60.91553767989145,279.931933470070362 -150.050031095742725,60.91864565599824,279.927461119368672 -150.042809361244366,60.920498772754748,279.916677101515234 -149.955600387712678,60.930116466228668,279.793370787985623 -149.915112602472647,60.937567186860534,279.734530250541866 -149.878137153948472,60.95996850104401,279.672453158535063 -149.856643094587383,60.967119813677634,279.639529234729707 -149.838530464256934,60.968580177876078,279.614232396706939 -149.819767530062762,60.966672630556189,279.589853155426681 -149.77321519159554,60.967333634981586,279.526476089842618 -149.767916871187538,60.963138843367723,279.521531365811825 -149.756032920440475,60.961786528022621,279.506155671551824 -149.738329983549647,60.987539927454335,279.468515872024 -149.739349057293623,60.994418574429496,279.466240399517119 -149.742648166255634,61.016687219668505,279.458855860866606 -149.754899669954597,61.023797795396582,279.471628670580685 -149.787350561433072,61.037871776177482,279.50795850995928 -149.788083798848135,61.040522702058716,279.507529634982347 -149.808775194138974,61.058364858316786,279.525900866836309 -149.834882493845896,61.075919902640017,279.551685296930373 -149.86012842951996,61.078742287914942,279.584215363487601 -149.918627760869924,61.101148517254359,279.650934076867998 -149.96306248127928,61.115065240386933,279.703204112127423 -150.042268150650187,61.14400787498024,279.79391878284514 -150.06861043923135,61.150795150308966,279.825596666894853 -150.078415796341972,61.155984822636661,279.835910620167851 -150.070969820391326,61.165847771237388,279.82045126426965 -150.012910620902773,61.203353502255126,279.721751413308084 -149.989974357677852,61.222468872362569,279.680417605675757 -149.989549215674828,61.228038965955875,279.676772952079773 -149.988847624690806,61.237231024382254,279.670755937695503 -150.077766958292727,61.2532137298492,279.781096114777029 -150.135607606348458,61.257627366766108,279.856122671626508 -150.207866795489537,61.259258748108863,279.951976725831628 -150.257267656368924,61.25421077498563,280.020964763127267 -150.269095189346359,61.250946586514949,280.038643968291581 -150.276546119559015,61.251268416366294,280.04843816626817 -150.289949494630321,61.257151995577743,280.06305330619216 -150.306659461702026,61.25717517202682,280.085406272672117 -150.306610121804994,61.25557966470835,280.086244460195303 -150.315196832187922,61.253737516518441,280.098782141692936 -150.337546273180237,61.251009086179366,280.130245481617749 -150.397380256663951,61.248813823822765,280.211575084365904 -150.427968506388055,61.245258231373505,280.254538703709841 -150.471779823260334,61.244332292734597,280.313692154362798 -150.487358859278032,61.246966894744844,280.333023578859866 -150.498694080102467,61.250949560401104,280.345898644067347 -150.564639737444054,61.281189892108145,280.416606710292399 -150.593135501095304,61.281189268708914,280.454670215025544 -150.594811428051173,61.279186845975552,280.458070092834532 -150.609930054570867,61.277433553224682,280.479281759820879 -150.63142838882743,61.284107938501172,280.504114237613976 -150.649191304329008,61.296389284253436,280.520675162784755 -150.658773945803802,61.297873165153305,280.532598742283881 -150.665589951830327,61.295055954418281,280.54333926923573 -150.674217782978417,61.273352235688897,280.56751920003444 -150.68286893104468,61.265588214862802,280.583601238206029 -150.693463163202665,61.258997126244111,280.601597854867578 -150.714256102164114,61.250788849942325,280.634169249795377 -150.830256355222161,61.228087809268999,280.802481564693153 -150.845370751989464,61.22391057020031,280.825138037092984 -150.851802321763387,61.220285508773081,280.835867077112198 -150.898863568494392,61.208611735972489,280.905652961693704 -150.929730895694661,61.206047118216674,280.948430473916233 -150.942209090981379,61.209994759649341,280.962774296291173 -150.944901826249378,61.209642809308569,280.966581431217492 -150.949201068512849,61.208339886711833,280.973098695278168 -150.950112834834442,61.205994779077436,280.975705618038774 -150.950382304931281,61.202835737675905,280.977935651317239 -150.954109843738081,61.198473751676325,280.985500268638134 -150.963070273696616,61.193732659827447,281.000286478549242 -150.974731172010763,61.191736512595611,281.017059935256839 -150.993041371972026,61.188602118181095,281.043399884365499 -151.015574525978252,61.182952750336732,281.076882023364305 -151.027858897505297,61.178085589030452,281.096199900843203 -151.075724791997715,61.14136335145659,281.182065324857831 -151.081448938345403,61.133075408992191,281.194655285216868 -151.122666422659734,61.090811442644466,281.274992696940899 -151.124635694186424,61.08326856640133,281.282114778645337 -151.130299994142376,61.076590590667188,281.293676904402673 -151.145528469156005,61.062472571448716,281.322488555684686 -151.169545612159283,61.046098411403392,281.364443213678896 -151.193256936656667,61.042430976645392,281.398445123806596 -151.255321798535391,61.039660687537477,281.483379414305091 -151.296558817411267,61.035406884919148,281.541251690126956 -151.310732179946427,61.030699681257509,281.563089740462601 -151.315588681455836,61.026055678899539,281.572391305118799 -151.333854382476176,61.014815531816453,281.603647630661726 -151.351937651352728,61.009695252674305,281.630994293838739 -151.36517640721982,61.009102978055125,281.649120714515448 -151.428052845800863,61.012796529026218,281.731275545433164 -151.470783167484711,61.012111615710182,281.78901628497988 -151.483231847689297,61.010590379148262,281.806637327186763 -151.541156254096478,60.991522546610469,281.895924982614815 -151.576625272312242,60.975563133410077,281.953233175911009 -151.623929893536541,60.957139519430008,282.027964070439339 -151.640269671988079,60.946413405544881,282.056448771618307 -151.643989200714373,60.941863427008265,282.064220053143799 -151.682438837932125,60.922177035513073,282.127894296310842 -151.695564212221882,60.917428857736816,282.148434042930603 -151.71683229302235,60.916231497911745,282.17774872854352 -151.723733568272536,60.90394255076896,282.19454250857234 -151.738932181813993,60.891192508881112,282.22277670353651 -151.786185412100167,60.868397999892245,282.300291767343879 -151.794611773776268,60.862744945236656,282.315093405544758 -151.803176793619372,60.853356972238778,282.332372625358403 -151.799634486574774,60.838419387463837,282.336750586517155 -151.790304130314837,60.821992962202081,282.334225554950535 -151.780219202252056,60.810147449606049,282.32786457054317 -151.754724603456168,60.78841649573183,282.306716967374086 -151.706705204838272,60.732065820012615,282.275997984223068 -151.70573580391607,60.727467946046772,282.277460894547403 -151.708454887169864,60.717742109536552,282.287001043558121 -151.71334532989863,60.712347127110654,282.296866490505636 -151.719280041787584,60.71010504998852,282.30624473746866 -151.747221815398007,60.712092399895305,282.342833936214447 -151.75239389994843,60.713864247436071,282.348757021129131 -151.763202397828792,60.721129847334076,282.358975490555167 -151.786940536828979,60.726502210847556,282.387804944068193 -151.806715446089726,60.728691732947034,282.4131975248456 -151.814187627353789,60.731909497709481,282.421337894164026 -151.825498376396325,60.742039021463114,282.430454009212554 -151.834087697903215,60.746989722525676,282.439037371426821 -151.854870005436254,60.753760118279665,282.462964017875493 -151.863081813634608,60.752967958721975,282.474531819112599 -151.867860488563622,60.75014391985583,282.482707157731056 -151.8525356141092,60.737972529522906,282.469444368034601 -151.850866404651953,60.735380624895065,282.468770114704967 -151.851515240167572,60.733662650149952,282.470693535171449 -151.873371316750564,60.726970330559695,282.50429574213922 -151.919812791552403,60.717601540920249,282.5727528790012 -151.920821217562604,60.722494407024072,282.571121784858406 -151.918810917304057,60.729930280217239,282.56385606341064 -151.921658058063429,60.731955172306023,282.566460833884776 -151.926284122198041,60.733420038753756,282.571809744462371 -151.947338750850861,60.732734599229843,282.600655646063387 -151.947498309133778,60.727860707378554,282.603860475122929 -151.951185741258456,60.722160758233819,282.612334973178804 -151.9646554488844,60.721115491026012,282.631166034378111 -151.971280311036281,60.728024298187165,282.63586944155395 -152.082326993355764,60.692486242911961,282.807714714668691 -152.117028197967784,60.633751945942919,282.890851416625082 -152.13904306822451,60.578159022868434,282.95487148873508 -152.151316663893681,60.575660816176125,282.973040620796382 -152.166399525478511,60.576617468728791,282.992891518399119 -152.197965410608447,60.569357956779292,283.040139898657799 -152.264374628243701,60.537919257247616,283.149570932611823 -152.312095092652413,60.506065972921284,283.233998191542923 -152.318022423485587,60.499505998675204,283.246099793352187 -152.334235856351199,60.473207265368153,283.284372078254819 -152.336244688967355,60.460323524245581,283.295059585012496 -152.333131191606554,60.442817002223649,283.301629452966154 -152.328688524141512,60.43448929349681,283.30072071403265 -152.315092458235853,60.420080924842217,283.291093034669757 -152.304816077285437,60.414012288731612,283.280837894417346 -152.237064286268918,60.393574227678599,283.201099277473986 -152.303484169400093,60.369289371810119,283.306438063271344 -152.310476792385828,60.366174295025814,283.317874272353947 -152.318716019837751,60.358756293170721,283.333644694648683 -152.355154217375201,60.355785580078525,283.385132539086044 -152.369072765026857,60.352988347081215,283.405820183455944 -152.374334412751836,60.34986030801484,283.414912574924529 -152.37960193487757,60.345297302822203,283.424894810654223 -152.389191242086099,60.327573516695502,283.448849377222359 -152.388835195423923,60.315529810028913,283.455749976448715 -152.394863906816369,60.301793006695888,283.472395488992333 -152.414134377777003,60.287548931437598,283.507430751807988 -152.423983010159247,60.285015780217094,283.52243110165 -152.447017699728661,60.285401276455666,283.553645466454327 -152.459143372568292,60.283726055996596,283.571229316294193 -152.48464517613121,60.274364731507788,283.611803846433759 -152.531054452126483,60.251029292213858,283.689552824012935 -152.542690435287739,60.241327274355086,283.711426885798573 -152.552082078950548,60.227314407980217,283.732892259024084 -152.55959767021119,60.223900328498722,283.745268417522311 -152.627492169744556,60.218369005276188,283.841487675905228 -152.629119708023637,60.220533842786551,283.842373046092689 -152.629745354645706,60.222410265004278,283.842067174613476 -152.630527468279865,60.225381273224272,283.841297439299524 -152.645205775662959,60.228447384203484,283.859454296529293 -152.662900655983719,60.241684688099149,283.875411937944591 -152.673248700399114,60.244000410882123,283.888103089295328 -152.701478955841225,60.240340893356247,283.928923731669784 -152.71872574762736,60.2409535090787,283.952088283374906 -152.749869584984253,60.232990032434678,283.999574060551822 -152.746230759045687,60.224002062504745,284.000213349238038 -152.757725687775178,60.210589879676583,284.024278158321977 -152.757724995269825,60.20258079188114,284.029269494116306 -152.752384351177398,60.189232375085929,284.030282258056104 -152.737089720416947,60.174481710789699,284.018537107855082 -152.702717418534093,60.164953676146524,283.977418854832649 -152.691230639334435,60.165501908959669,283.961360067129135 -152.680923595223476,60.16318618544225,283.948685776442289 -152.677013639405089,60.151413552633649,283.950605656951666 -152.690321454554095,60.139987543017305,283.975883635692298 -152.68920924856198,60.137399629234061,283.975957866758108 -152.661253282622255,60.121274616857342,283.947591631673276 -152.637807137417127,60.115483258697743,283.91901190392673 -152.599618445271233,60.100756432146063,283.875664952211082 -152.578104161716112,60.0820493451169,283.85756781604141 -152.571953343454283,60.071434733694929,283.855593272484839 -152.577983241487829,60.04794717373845,283.878176503814757 -152.592997966346331,60.035665150408761,283.906285752542317 -152.611426789021266,60.025116012291285,283.938041321001947 -152.615547846572809,60.014802174860662,283.949984720908105 -152.614477299846129,60.008208358168901,283.952522566542029 -152.652303005413899,59.987940042768798,284.016897010616958 -152.682223837422839,59.9677408958839,284.070379818789661 -152.696492626563867,59.932460453660624,284.111498654820025 -152.703639462492475,59.919996606314413,284.128923930227757 -152.709247952540039,59.914971609693275,284.139709304086864 -152.747898436180606,59.903919055344375,284.199724859558046 -152.796398070620199,59.896406204314786,284.271182379685342 -152.809747134628623,59.887715133007234,284.294895998202264 -152.812870267453036,59.878008305145798,284.305127355270088 -152.863678222665925,59.874718301940085,284.37722507212311 -152.87797821217805,59.877155936814859,284.395455383695662 -152.885483479784085,59.881670665528397,284.403037765994668 -152.903225196337331,59.881496291322222,284.427607488818467 -152.92322754937075,59.87742496491915,284.457687164656818 -152.953472007275451,59.876442344081504,284.499989433214068 -152.97007748772225,59.881176873300682,284.519961300306022 -153.005331059138371,59.886407992690138,284.56531138997525 -153.022786751023204,59.885911632746101,284.589667992666364 -153.049795017488378,59.882106150776593,284.629234274849296 -153.081994570289908,59.870783743795862,284.680622725747526 -153.147552615608333,59.859508625558227,284.777965060435236 -153.215669816428516,59.862462101912136,284.869953797198832 -153.228741241120332,59.858020933431703,284.890737353824079 -153.231418780181968,59.853032999827953,284.897549148648977 -153.259745925404133,59.836167814505409,284.947140133008361 -153.281608880302826,59.827743558115806,284.982548884116113 -153.288602140226601,59.820212596157752,284.996909602545202 -153.288211829178948,59.816432698276635,284.998741135001183 -153.281334446468065,59.810601989347973,284.99291218817234 -153.260535757735965,59.810485434734701,284.964305034838617 -153.239357012155097,59.821545610926002,284.928187639452517 -153.22028254561539,59.824399946094637,284.900105926208198 -153.200153864336016,59.824506371897115,284.872285639867187 -153.185108890987237,59.82206875258688,284.853057594969869 -153.147173233566548,59.807296926510098,284.809905982576311 -153.116388377735632,59.81531238318972,284.762454004026949 -153.091319251958623,59.833057477559109,284.716874066740274 -153.024750331861014,59.83381587702663,284.624566939659417 -153.011889234286343,59.830326237407753,284.608970135450363 -153.006768984686744,59.826430442905874,284.604302405379713 -152.994929760047086,59.809711109126809,284.598238294944167 -152.997268149818495,59.790945524505148,284.612989122979343 -153.034114932227624,59.723310422166847,284.705386806279421 -153.054351952410087,59.691247792109991,284.753016609698534 -153.111730977117389,59.6780009030714,284.840625041164458 -153.124530756441857,59.677693638583058,284.858548580668867 -153.157807283019338,59.654028524315137,284.919182633049786 -153.216941714573977,59.63395477189934,285.0134999724105 -153.242803165531456,59.632109268954238,285.050494961440563 -153.256193456222945,59.638097833965098,285.065367513336241 -153.265525728169393,59.643108509796406,285.075210319831967 -153.277962517349721,59.666984646022861,285.077678182162344 -153.289312587465645,59.669932330950644,285.091568982228637 -153.304474226727592,59.668398047388273,285.113512774929404 -153.3167888394199,59.666016845593667,285.132040522061288 -153.31790970266232,59.664576857937213,285.134486167691648 -153.317869503669584,59.662170919197841,285.135923558846116 -153.309985250520953,59.653635301024131,285.130297767929733 -153.300989596509112,59.636026934700404,285.128736288286746 -153.300831280733973,59.632184034738032,285.130893443711102 -153.305539809077771,59.627361056135584,285.140402355231345 -153.311620552252833,59.625387976701163,285.150051948614419 -153.345720663599224,59.620993363483073,285.200043308548629 -153.36939632570531,59.63340954828849,285.225150829181075 -153.384378450464453,59.637712121990468,285.243231773376465 -153.394805357491833,59.638535879953629,285.257162030786276 -153.412204879065229,59.636007574338016,285.282836492173374 -153.417680982344478,59.638279400933769,285.289004886522889 -153.420882226403734,59.641826243720047,285.291226264089346 -153.418290992934743,59.650597078035112,285.282166109420359 -153.396633985311155,59.658526338358627,285.247238925658166 -153.387671815664589,59.666867319055939,285.229632752947509 -153.381022724000957,59.688614914473035,285.206862497143447 -153.377569326323936,59.731264920049313,285.1754165366292 -153.442771743064895,59.784327210478352,285.232024015858769 -153.457767132236512,59.79177370635567,285.247988088987768 -153.46134176740938,59.764142319238431,285.270380146801472 -153.452411183104402,59.743486024773468,285.271085558459163 -153.448126004456412,59.728541489447942,285.274578052572906 -153.445008100124085,59.717096842080558,285.277467777021229 -153.444001776368367,59.700993266863712,285.286190744489431 -153.446789789231815,59.689634492512688,285.297171232290566 -153.467339297973126,59.651390017244204,285.349563742987812 -153.478880375011357,59.642407998467313,285.371162567287683 -153.545246056446956,59.629912846052342,285.4708694787696 -153.566646691609947,59.63857923348327,285.495037727989256 -153.58929904902709,59.651216524423333,285.51840892713517 -153.607593026673271,59.638409738389846,285.551798399537802 -153.613518086072077,59.628016506227233,285.566556429490447 -153.612031555792754,59.621315706868238,285.568726202473044 -153.594970930983493,59.610518341140477,285.551909819245338 -153.561070043077621,59.605467187300114,285.50813421420753 -153.555940401698138,59.596723517002204,285.506513857282698 -153.557924613301822,59.587535707291103,285.5150236338377 -153.580601636725845,59.555669033921021,285.566427679732442 -153.588179147382931,59.551152987953955,285.579766475595534 -153.620923726617548,59.552248266622506,285.624498275108635 -153.638034715970917,59.555370825018066,285.646266226656735 -153.653715448820037,59.555103499743254,285.668176957406104 -153.722079953271276,59.549939183541426,285.766210626810789 -153.764249854617617,59.543085243377313,285.828999765217304 -153.769009925345699,59.52201690058957,285.848928247578442 -153.736620075533409,59.505430008302106,285.814457192085683 -153.709184235029483,59.477671296711861,285.793814151547849 -153.701789175312996,59.463280820686812,285.79256113152951 -153.730307424635697,59.435023940571384,285.8499128613621 -153.749961653508251,59.429334670866069,285.880814592354 -153.809877884073842,59.419142666062065,285.970551455393434 -153.826142512023921,59.417711359181041,285.994073559530079 -153.864957396183371,59.423799383041072,286.04420995246619 -153.899333395470705,59.418160801797768,286.095563411712646 -153.91402477707544,59.4134066137022,286.118995561264455 -153.928062866573299,59.404928535222979,286.143879453651607 -153.948292989320009,59.385735602053707,286.184162356890738 -153.95414291703338,59.386691549631209,286.191695265471935 -153.957471368949314,59.392206241775021,286.192832735367119 -153.962647637343821,59.396524021413619,286.197295341640711 -153.992757154398532,59.396450387930884,286.239208872430027 -153.996747545619598,59.393722322956513,286.246489840559661 -153.99901490534117,59.390493409260017,286.251693351194263 -154.001259042122655,59.384396518952812,286.258685609325767 -154.009959726230989,59.382201391962639,286.272180431522429 -154.028448351202826,59.381194027925012,286.298533794470131 -154.038717580380876,59.386034686569189,286.309734402224422 -154.047315600399799,59.387967455415634,286.320458037778735 -154.054902385995177,59.386810325217276,286.331742879934609 -154.065204866809097,59.382425220968393,286.348861131817102 -154.090553266172293,59.367639067918681,286.393536418676376 -154.103738898280739,59.365687840321606,286.413119031116366 -154.120421104118066,59.365179408389182,286.436643233522773 -154.124557022925046,59.360215789172564,286.44556560087949 -154.124142790615394,59.3527705079388,286.449743350036442 -154.105761982815778,59.342391399678768,286.430787089280784 -154.036452129700422,59.343672545094186,286.333498477004468 -154.031488029533477,59.337054612513832,286.330782545730472 -154.033555338833878,59.326713878892782,286.340212653391063 -154.080688012905284,59.313037687940131,286.414537461474538 -154.116321339456618,59.299300293385436,286.472904521971941 -154.125424228314245,59.28729541324914,286.493215277791023 -154.13958099701108,59.262339763795424,286.528792978264391 -154.14392923412845,59.216272872739147,286.564035688526928 -154.13332191487774,59.210178255060008,286.553071358241141 -154.175677204582115,59.172171357946041,286.636258273385465 -154.2175488691488,59.151237026357904,286.708030822686851 -154.24694981115681,59.143835602688682,286.753831734880805 -154.262850466618062,59.142694298524866,286.776793048717082 -154.266020053307614,59.138136351650488,286.784112639725208 -154.259255571019878,59.118137019543923,286.787299123592675 -154.253960081663536,59.11091432084185,286.784448748454452 -154.246512488626507,59.114543381800281,286.771731934510171 -154.24256990551504,59.118999347410558,286.763400342315435 -154.229966589836721,59.125082452270476,286.741920778527856 -154.183420157565251,59.122911487537451,286.678133346140385 -154.176398027784046,59.119876714897352,286.670209969393909 -154.169472576288371,59.100225377345978,286.672850678674877 -154.169132790633569,59.09025964688302,286.678623833693564 -154.174228141917411,59.083100728430381,286.690252240747213 -154.197995660487209,59.069168596499132,286.732304712757468 -154.200145966178411,59.060832771333565,286.740544409491122 -154.192302749551061,59.043885383711618,286.740150550380349 -154.174183278776667,59.021642352479958,286.728605406358838 -154.162555460369362,59.010275325019876,286.719355159439147 -154.16092816402255,59.017532739585043,286.712551008909941 -154.135171115602617,59.024425098110818,286.672086056321859 -154.11100145235514,59.036507286367154,286.63063130248338 -154.066215955290318,59.071820295691353,286.545817003585398 -154.0345495763668,59.07336192081668,286.500426450744271 -154.011274880873628,59.072585430665761,286.468244813382626 -153.95268631485942,59.066464824050449,286.389778852462769 -153.935552257644844,59.062360292564414,286.368246105499566 -153.852966773488532,59.052602287119505,286.258200432173908 -153.840909149944537,59.05498147820191,286.239797038957477 -153.818454257499042,59.064536699311176,286.202395636588335 -153.812596820639527,59.070482666210609,286.190530286170542 -153.805513044125149,59.071909777813609,286.179704287089407 -153.796703116919559,59.071101984532625,286.167817846871912 -153.753666310449347,59.052527379271169,286.118632375262678 -153.751410521374027,59.058416501917506,286.111879601143301 -153.748932364698305,59.064886153835424,286.104460320435464 -153.70689485617234,59.075467761135734,286.038930869661272 -153.698396845658067,59.073681987060148,286.028067566454411 -153.650759004090361,59.028614175962005,285.988285450264812 -153.6187947387495,59.006428433926132,285.956594381481409 -153.550010972512865,58.983409490102424,285.873369392938912 -153.526249980467668,58.978915109292984,285.842518443241715 -153.508346452475791,58.981428420120544,285.815758638083935 -153.48266891608759,58.994980603674371,285.771476049907506 -153.465995506903511,58.986598176115102,285.752921080216765 -153.453400845885568,58.975814726066204,285.741528001613915 -153.440872545773118,58.969607153956893,285.727507310919464 -153.424743849082517,58.970344474403895,285.704293444752693 -153.401207843419684,58.965753091680895,285.673755210824311 -153.395828743563214,58.950794600172529,285.674957411363721 -153.391492354675961,58.94503484380494,285.672213311307132 -153.368097322005354,58.927451801913968,285.649444771930575 -153.355009043198862,58.921404237798853,285.634467816911638 -153.337506214215182,58.920220637992834,285.610393247567117 -153.325568396186469,58.907549225133963,285.600890004076064 -153.307511534015703,58.878620211501214,285.592145428061485 -153.307939345812031,58.87433867408167,285.595237387344241 -153.30515605522163,58.870913511677877,285.59328037686646 -153.297448759016675,58.865133610992764,285.58570681232959 -153.288885418732747,58.8627789493734,285.574930375441909 -153.270130035229727,58.866920470967173,285.5459417803213 -153.257520795551102,58.861458881713027,285.531219970434904 -153.254972260136924,58.855553077892623,285.531016268767416 -153.255384237154828,58.855500238050503,285.531631113961339 -153.320543725442121,58.847142934579288,285.628880585543811 -153.328858747629937,58.849021709479267,285.639583127573133 -153.339546552015037,58.848579496156866,285.654995363205671 -153.347550280494744,58.846654378827942,285.667462312616408 -153.353683921377922,58.843252340206021,285.678135714493692 -153.361636269922258,58.836468353377938,285.693353394977748 -153.372106897564038,58.820956546275781,285.717211782000959 -153.373446160783772,58.799003103840256,285.731840782798827 -153.387839358573729,58.765875686634139,285.771454440429807 -153.405183261817399,58.742309953175472,285.809724596329033 -153.429350227278803,58.72083002150341,285.856499161571264 -153.447710032596319,58.709012953145255,285.889443889260292 -153.461523765894157,58.708263682990861,285.909531240351498 -153.471670897675438,58.711936371012435,285.921842862851918 -153.480462806135904,58.712469171939212,285.934040907770395 -153.555354687387222,58.686877287618515,286.055430110543966 -153.580247021159721,58.670233213829349,286.100523734465241 -153.590500412840271,58.651443505998984,286.126032367348671 -153.594335454318497,58.639785740662468,286.138257906772196 -153.603956887509639,58.634334686231973,286.155125963501632 -153.680293950746261,58.611303708926727,286.277273223735392 -153.774331054861022,58.605337899670282,286.414732521399856 -153.808926598017194,58.606293148859592,286.463447287678719 -153.83553157993623,58.611368453687291,286.498348944820464 -153.854126309464135,58.611569058722807,286.524703175760806 -153.89984817186064,58.605933254244206,286.593112085945904 -153.90525040759087,58.597073381962616,286.60603406932205 -153.921819967604279,58.516357236158683,286.677155405282974 -153.912273954338843,58.514260493177694,286.66476321592927 -153.933157328751889,58.497180523779605,286.704582622274756 -153.937536027245699,58.494112516234352,286.71263213455677 -153.963053131968593,58.48752916307869,286.752924064174294 -153.976702960829499,58.488045863559911,286.772107949480414 -153.980300178500102,58.491628690169335,286.77513765078038 -154.004600834804137,58.492043170836176,286.809578311629593 -154.059207751508154,58.488918115302496,286.889347665943205 -154.067802405535446,58.486126012308631,286.903261349536479 -154.075712660538869,58.477955071266223,286.919378655031323 -154.077731167079975,58.471884195777527,286.925846425816417 -154.077914092982269,58.457802578837807,286.934420233592391 -154.076270264123679,58.446562922231401,286.938699513673782 -154.073337789358533,58.439715171877936,286.938543720170856 -154.05843540831853,58.418480067824298,286.929729018360376 -154.042688553623208,58.403995795898595,286.915702105499804 -154.036822518518647,58.4023369641233,286.908281822688878 -154.026388779171555,58.403651145730194,286.892586427740753 -154.009980898553806,58.401886537003882,286.870142998173833 -153.988091379057806,58.390577306051682,286.845414391718805 -154.001997067002748,58.376072416146584,286.873773408122361 -154.099924209557486,58.345021231562903,287.032142642885447 -154.136536043292608,58.350330320895246,287.081465842202306 -154.141893222590028,58.35380644622547,287.087096457369626 -154.153043311754431,58.357278784200545,287.101019244641066 -154.170667098310645,58.358075394620698,287.125776699744165 -154.177862941500877,58.344224628337855,287.144223591312766 -154.179828173568808,58.321168226995219,287.160579537972808 -154.177666104507296,58.319805309900616,287.158281453885138 -154.16931526887879,58.320267471133363,287.146045523695648 -154.151740087446484,58.314238004902379,287.124391932971776 -154.106077208899109,58.279861912259705,287.078961208462715 -154.14793637464436,58.210632971196404,287.179264809004962 -154.180309298341058,58.189533887699547,287.238035226240754 -154.222411258467702,58.184332157254332,287.301593801006675 -154.244527806778251,58.156029491215634,287.349840204231441 -154.218903200792511,58.142551402843097,287.320771439000964 -154.212730791599625,58.135764721994015,287.31580935139209 -154.225117340057182,58.13226856270154,287.335666332393885 -154.27167833649537,58.128471701388264,287.404905057512224 -154.29381450624544,58.135381046783756,287.432758053764701 -154.343096419584668,58.090622284053289,287.529725794680417 -154.386975952636163,58.120522529185727,287.575489561073482 -154.42922008024081,58.144598973504479,287.622151793912053 -154.439168176635803,58.147991671358533,287.634460127912462 -154.462770641402216,58.145764243792264,287.669697670266032 -154.469085264682832,58.142025217920974,287.680975551716983 -154.462037392347412,58.128786737246116,287.678628649562597 -154.454743949665215,58.12128010031428,287.672547436319292 -154.451857893068393,58.092916960712714,287.685018456541002 -154.465572100393217,58.058049662213008,287.725153888575733 -154.480621424099326,58.052078519086749,287.750326921232045 -154.503887892481771,58.049811100665778,287.785178714431822 -154.542008720815716,58.05558514633362,287.836713758297265 -154.571266042201501,58.025485393598004,287.896525898016989 -154.584185360473185,58.018983310515203,287.918960928916931 -154.646603398266279,58.032843623158392,288.000748174265027 -154.653257195071944,58.045083137750929,288.00310542806983 -154.647306103470214,58.056128947704444,287.988010557368398 -154.6488633524298,58.05983681028124,287.98805964179337 -154.65602352683743,58.063732551416592,287.996059342287481 -154.671535372860887,58.064967194899985,288.01764901727438 -154.678748247158069,58.064809049890698,288.02812091447413 -154.718800886103082,58.054950499567248,288.091600323095918 -154.724522448125526,58.050238514775629,288.102631874382496 -154.731617445140728,58.038149711137585,288.120020559988916 -154.733695676029015,58.028148952340608,288.128945889882743 -154.733362194499307,58.02153214741702,288.132388643920422 -154.748216252065504,58.011915113487269,288.159481822513044 -154.767921314423035,58.003404947870983,288.192911298945546 -154.777353051567786,58.001862796568773,288.207412570714951 -154.810400436588139,58.000633147629998,288.255743565037847 -154.822151437376903,58.003187831644716,288.271146922372282 -154.826151803656842,58.009041582067347,288.273421287536621 -154.827685311025391,58.016279344186913,288.271315546706319 -154.830864426743318,58.018542213960174,288.274542225524783 -154.87919330875053,58.027413961270838,288.338783613406122 -154.894446061865949,58.027367646993227,288.360752654261887 -154.993062436448156,58.013114013511178,288.511160504072905 -155.028904825105627,57.998991675603357,288.571227760985494 -155.121273017977273,57.953614065664546,288.731541974470019 -155.097309604957388,57.928970267098229,288.711902624927461 -155.075188698502728,57.911659220759134,288.690432998351753 -155.066821638047657,57.908985470281017,288.679975467734039 -155.064428314871265,57.904021662310484,288.679501255042851 -155.070768716943945,57.883465122613522,288.700959399342537 -155.08475865453957,57.871940165752974,288.728042591363192 -155.099713913696206,57.865048055793402,288.753749836236238 -155.155037299428329,57.855066202647841,288.839572241529822 -155.240546873378349,57.826821256141166,288.979967174120247 -155.275530079716617,57.82367062665891,289.032359359785914 -155.300997814792936,57.825709043161368,289.067880778573453 -155.305656915386919,57.828142876788647,289.073131564073265 -155.328981688361608,57.830233335987216,289.105515809729695 -155.340765123719848,57.825072242735459,289.125641820952296 -155.343846658610232,57.819332345481207,289.133565926924348 -155.337552948150233,57.780381604386861,289.14803228713572 -155.313589191659872,57.76450155873156,289.122975920327008 -155.305397097088303,57.761348818923487,289.11303102876991 -155.287947168091222,57.758417263227912,289.089565868489444 -155.287299082193329,57.757079315448976,289.089431856758893 -155.294257416650652,57.735500799854961,289.112434428185225 -155.308419342428863,57.723741850904752,289.139968728646636 -155.381213209878041,57.710456741247,289.253267107531428 -155.470891184321829,57.74432491059062,289.362464046105742 -155.509137734582112,57.760656648971121,289.407769800163805 -155.53623243654215,57.77656562925025,289.437166582792997 -155.542371844633749,57.783627297741745,289.441705325618386 -155.548281951484483,57.786454094099732,289.448499882593751 -155.571042775907387,57.789195546633231,289.479644202627242 -155.588016315112753,57.786665271389779,289.505671579390764 -155.599461879286565,57.783223136310738,289.524288626387715 -155.611957253586695,57.77738304949002,289.545893835835159 -155.61979155036363,57.769399120938097,289.56209590472281 -155.637922355591257,57.715126331634352,289.621529283002019 -155.637141603486498,57.70444965973838,289.626929369755089 -155.628970939969179,57.693309153277895,289.621925237588584 -155.61780072609298,57.687760544884483,289.609162711538374 -155.632507219604094,57.656063171824805,289.649726985022426 -155.702579049748266,57.641771154338038,289.759805247187614 -155.726759036294681,57.633130912563971,289.80006056278944 -155.738098054074555,57.593835836767589,289.840432127006352 -155.73353973214941,57.588249094818174,289.83722979016602 -155.73399838221664,57.555234059742368,289.857946411706507 -155.735364947813366,57.54942020354796,289.863452646881342 -155.789523864130956,57.546694175379564,289.943629348650575 -155.880439375559888,57.546858310163202,290.07528565172106 -155.917842918957518,57.535015895766335,290.136727505363524 -155.948393689554933,57.538933155044951,290.178583931177855 -155.970471689351768,57.544112550251846,290.207375647500157 -155.988570045819841,57.553403905135028,290.227856684476137 -155.990695336454451,57.558010725328742,290.228092259727418 -156.013400882495972,57.571060875035727,290.252886313013732 -156.036388393536583,57.569564449368166,290.287064226344228 -156.046612838834704,57.564136400994066,290.30521556828171 -156.051161268279742,57.50049119553703,290.351109167560935 -156.047900352539898,57.486720671521674,290.354857464320958 -156.039297362931023,57.470625326130261,290.352270731702447 -156.016970633197673,57.454970248256565,290.329473042860627 -156.015415385611249,57.451079395952739,290.329596129246056 -156.024448411584103,57.439345561372235,290.349882215261459 -156.094240262807801,57.439513131989123,290.451074882410467 -156.1016394105487,57.443374865785046,290.459438405930996 -156.140053739272616,57.471416245926648,290.497865790501237 -156.186505691871758,57.481792989048131,290.558749394491315 -156.198313349700214,57.479739809319028,290.577126445248723 -156.213455698742223,57.474089668795791,290.602567252703011 -156.214056639711174,57.459156101814727,290.612702053971589 -156.222675500244407,57.444976349272203,290.633981271646917 -156.229456062058546,57.44034834924787,290.646677832119167 -156.257031479915184,57.438641838113618,290.687710669822991 -156.341991558633879,57.417320744783623,290.824118259362876 -156.364603977586,57.400153798606311,290.867589104920626 -156.380003046963736,57.390544773266967,290.895901994779706 -156.484190653583681,57.338384221714229,291.079558802768588 -156.513969893374622,57.334698727412587,291.125077123753726 -156.536101067268703,57.328205473368314,291.161251720972359 -156.542274374644848,57.319737603320597,291.175503276288509 -156.553793150440583,57.290479252858873,291.210490680299699 -156.541237825751068,57.282720742411854,291.197084145620465 -156.509855226830354,57.280844436574256,291.152645796537399 -156.423421764730392,57.310823287864451,291.008441322483122 -156.338987919004069,57.335763253936904,290.870335291139781 -156.324468194841273,57.293052836259236,290.875542690046132 -156.33527406025803,57.264876467368531,290.908567186444998 -156.345497702728096,57.247740777754387,290.933958006091416 -156.360693733702476,57.251872343842734,290.953551781363785 -156.379061431999418,57.251967967612792,290.980234111659229 -156.401976310062565,57.24131082456401,291.020144145004451 -156.404040690901468,57.232853038838137,291.028346732258797 -156.40130246564155,57.214440652712781,291.035655955784023 -156.391143074949355,57.206305105934497,291.025834621861577 -156.358306675743393,57.192530191137799,290.986379851587117 -156.34385084978814,57.191543514766977,290.965898782014847 -156.340980792241851,57.190011619594316,290.9626460140571 -156.336954306693031,57.181986945150996,290.961658230051398 -156.357949117680249,57.159365926306094,291.006056098267436 -156.359906220653698,57.157257231010249,291.010194947943091 -156.371071512415483,57.149673235194335,291.031105034984648 -156.43765484768096,57.127116571402489,291.142046891152859 -156.459040022725588,57.105727790668631,291.186306194402277 -156.447152814544353,57.099774213692655,291.172561778686941 -156.444108496722492,57.094385440162014,291.171388533897698 -156.444140843450072,57.084845731255612,291.177229213528335 -156.511777641556222,57.054598286664884,291.294489290565252 -156.538124720594197,57.047591967793366,291.337277778424323 -156.565362382613728,57.020001263562861,291.39389965403825 -156.550201570722663,57.004317052890102,291.381234156899154 -156.549733345858783,56.986176620835877,291.391538470983505 -156.553053162530318,56.984298611490935,291.397537522017956 -156.557610013957316,56.983238551917665,291.404853450134397 -156.640372322899424,56.993591558201125,291.519733713008463 -156.756172181231278,56.99090929905671,291.690780865028501 -156.765247696016075,56.986026266230141,291.707050235942006 -156.783949398245682,56.971563334714332,291.743280850350857 -156.789427841699336,56.964719435432698,291.755494618788362 -156.790868523282285,56.960377540499657,291.760265509597957 -156.789328247206839,56.941128166895773,291.769803045317531 -156.799834061302391,56.911402875390216,291.803360400721431 -156.806955546799799,56.905566912570663,291.817357938736677 -156.828504627235105,56.89735273241677,291.853950696066022 -156.841844682840076,56.901539333247072,291.870937814004719 -156.878840818615515,56.94251131653732,291.899962628260255 -156.887897370981023,56.952966810091752,291.906769774854183 -156.888211682165917,56.957647658929346,291.904342735186219 -156.884989879624385,56.959754658804819,291.89833146519959 -156.88541904210652,56.962264572516531,291.897410570643842 -156.888833138612455,56.964551432867395,291.900991325266659 -156.896209086931407,56.965647250059796,291.911098965443671 -156.912250787114601,56.965262938077522,291.934788730926812 -156.921321497029055,56.963264816763868,291.949284613132477 -156.938216619373094,56.954554745247677,291.97937236353755 -156.938151271714048,56.919769824342794,292.000759313814342 -156.988691804083317,56.910813082900404,292.080245798453689 -157.008470000015251,56.903901898735519,292.11345939617604 -157.018184447600873,56.898167881051421,292.131221142597497 -157.037142181006232,56.884168934204524,292.167624239809811 -157.075967417872391,56.838027589650409,292.25298295263201 -157.162006613967606,56.833158009681462,292.382034530863166 -157.166323043549852,56.825747154341208,292.392950846813619 -157.165783883909626,56.823223244062561,292.393725061789155 -157.143500844712406,56.801957357391714,292.37422348279506 -157.142787095242085,56.790556728578004,292.380211913026869 -157.163880615563926,56.773816828743534,292.421470738947392 -157.18614389576112,56.768761539576587,292.457245954312384 -157.204231480068074,56.76719322512561,292.484744861721992 -157.286272283496544,56.800445533696163,292.584362936206162 -157.293019430381293,56.804392274470942,292.591784598305821 -157.293739842989226,56.810756060732274,292.58887083735317 -157.300792221454827,56.81824568455589,292.594520083628595 -157.335244950687922,56.838075371794325,292.632521008141339 -157.381281710945501,56.861371718532212,292.68517738301307 -157.397173617383231,56.864101313882124,292.706675864756107 -157.408189411577126,56.863891099058108,292.722902027890086 -157.439441485852683,56.858196648973532,292.772155203856528 -157.460098435209147,56.847878556552068,292.80885904096067 -157.474914184100328,56.833030723564647,292.839898097328842 -157.472431661799249,56.824564038517643,292.841620261780918 -157.464866773316118,56.80927866934001,292.840205234475434 -157.460127501531957,56.803966931016298,292.836620996706188 -157.450273470074933,56.80092222432242,292.824123437516391 -157.438863837789995,56.803457373908721,292.805836809799075 -157.423625963498012,56.801367745392291,292.78485665563494 -157.421065883288207,56.799497855428179,292.782285396009684 -157.413992575177105,56.778028671050443,292.785400171764195 -157.415943930920434,56.768862919717527,292.793998067267239 -157.519979564467661,56.760515094549525,292.951563397422433 -157.533265863092737,56.753451050320379,292.975460441783071 -157.547354632252507,56.738621234731305,293.005423814058304 -157.553694948825608,56.729990379577437,293.020139545202255 -157.566298946728068,56.703102975143658,293.055503164418042 -157.553287691669539,56.680706943392046,293.050468820147216 -157.544790462325892,56.674998294123114,293.041577459312975 -157.510084527853365,56.666848247249767,292.995745575986803 -157.501184690316023,56.66696442191423,292.982611919753253 -157.483486271264525,56.671098645875993,292.954061877913773 -157.481649214658603,56.669759725026587,292.952199285849929 -157.454654908845896,56.642901115827819,292.929245390929282 -157.454690620657033,56.638544253079161,292.931997761130333 -157.457354302944594,56.634429330043233,292.938460556790233 -157.464598579583281,56.625366472085332,292.954718213528395 -157.468990343938486,56.62294746078517,292.962670253589749 -157.499015403141328,56.616578061355327,293.010742353275418 -157.538977604538445,56.614997311268745,293.070445340126753 -157.548576681729287,56.618705001424217,293.08224271517247 -157.591806141835264,56.621941033335155,293.143719484098256 -157.607721801844463,56.620993744847269,293.167681061662734 -157.617531545369701,56.619698589635838,293.182893608696759 -157.638507706370604,56.612516397963603,293.218181251548231 -157.677075812974437,56.60918473227774,293.276891773566604 -157.70787154179888,56.628456504203257,293.30999075435102 -157.716770162530196,56.640250951889556,293.315620072185993 -157.718488654074235,56.648167666398976,293.313151255249977 -157.721538903255436,56.6527594597827,293.314727319404483 -157.73929107800123,56.675290390746483,293.326504738070071 -157.756633027410714,56.679141921838344,293.349465938284993 -157.766189844685812,56.678920737655019,293.363601937890053 -157.922532725964317,56.658307265656838,293.605613791383803 -157.936475211372993,56.654242116183411,293.628618383780122 -158.044493412215274,56.596414459012294,293.82376145478338 -158.045319844874001,56.58152123945441,293.834495243616402 -158.04183621926714,56.574555095422284,293.833839335478842 -158.003521211393206,56.571769360673265,293.779450634494424 -157.977703959048057,56.585394483852397,293.732927922159433 -157.961227420016598,56.587976730299985,293.707131687551737 -157.909130513074928,56.590598686599002,293.629083845764399 -157.840902739256421,56.560436010607148,293.548034458421171 -157.830620975737105,56.546008676424115,293.542010782286525 -157.820306057444725,56.513887909005504,293.546999423764646 -157.825551167222415,56.501660195669906,293.562363973818719 -157.862243328583276,56.483346050376461,293.627791021950543 -157.868119200330256,56.482962945458262,293.636674242094159 -157.888603134460823,56.487482392014705,293.663970326073468 -157.957102754752924,56.515520127669603,293.747001089155674 -158.030097198198632,56.511452802824664,293.856766061857343 -158.114751317485627,56.520993810415014,293.974932813085616 -158.122044993761421,56.518017760517154,293.987530768848956 -158.134202709093984,56.501616044403598,294.01582838408649 -158.125825500959081,56.496129387286139,294.007029419764876 -158.116182447501899,56.492673690222873,293.995073988102376 -158.114076296832991,56.489782824966383,293.99382074829191 -158.121153640010277,56.466231440739833,294.019176928326488 -158.129911110792591,56.46047845143422,294.035693486221135 -158.248613341313074,56.465794918751726,294.206605318002403 -158.287168623459365,56.480758670611657,294.253582315519452 -158.331267035979522,56.483876693535592,294.316241561435163 -158.405419822955764,56.454861154405215,294.443666316568851 -158.50129624771418,56.379778678327426,294.632738043554127 -158.504163922322334,56.375528759194552,294.639685209840536 -158.504498228610942,56.364847098904221,294.647049604915082 -158.492002954186631,56.341535103224466,294.643660363741219 -158.435253079113266,56.343176175204434,294.559181288816035 -158.399794777357016,56.328593351975449,294.516330664977431 -158.340595515100489,56.323596688668019,294.43238031771034 -158.332193800453155,56.325701787022687,294.418676775880158 -158.325021877992498,56.324915954858966,294.408616286702454 -158.209845944200737,56.294031244357093,294.258380197919905 -158.205541345343505,56.283510671869848,294.258626583963633 -158.21899718426198,56.269128872727599,294.287485676817596 -158.255786485230004,56.252802674527643,294.351999289356172 -158.279296784010654,56.248375352510827,294.389469532296062 -158.336958750047415,56.232616723386435,294.484453250654042 -158.342216689977107,56.217484113488965,294.501716097816825 -158.333490577481996,56.213286423616324,294.491466316394508 -158.267244286248399,56.209275499256655,294.396135458722711 -158.193414824208077,56.226086601708225,294.276581133715808 -158.177385794216121,56.235906780943523,294.246788362041116 -158.121950143583831,56.241675693302213,294.161299134604633 -158.117739224802733,56.241782773420901,294.155010371468961 -158.115175153804728,56.239966883500259,294.152347831986845 -158.120253484363332,56.230423489585725,294.165770465508103 -158.239477030121293,56.187066756556071,294.368931644596159 -158.316576698139528,56.163376392432028,294.497671283781528 -158.376769773509864,56.134201157887297,294.604872423224151 -158.398440077059718,56.109513330117842,294.652317345142365 -158.396830718033641,56.091629161221107,294.661063279956579 -158.39736298675092,56.064402048147834,294.678753034211695 -158.400764814797441,56.062638039074393,294.684886481612921 -158.426891725177313,56.068579326478911,294.719900962896645 -158.441086038659506,56.093351229218683,294.725498287007213 -158.440756825340628,56.095381216321499,294.723745403811336 -158.433547590305295,56.099943161195242,294.710232452489436 -158.434672182440664,56.102560244679154,294.710264320485294 -158.442386908585434,56.107458738948274,294.718621307983994 -158.457739695534968,56.108420403661995,294.740731573663652 -158.464252446403691,56.106322343938217,294.751676602289081 -158.477699368381707,56.09308351411012,294.779843665659428 -158.475147045721286,56.08726175643195,294.779703253880143 -158.450852438102913,56.054958302352382,294.763853936456144 -158.420327815607664,56.036477516139719,294.730082908645272 -158.410160592696315,56.014203453622756,294.728773622773588 -158.416081884990234,56.004633653357779,294.743461855687201 -158.43390690764403,55.994134648935699,294.776384676806629 -158.44176571556946,55.993302521275226,294.78855889197439 -158.448131851333869,55.997262264336477,294.795559821650386 -158.469772331549677,56.026899855760277,294.809307131916285 -158.477980257494664,56.028046655679084,294.820760640315711 -158.504403584842066,56.024850239501205,294.861904174089432 -158.507285927409328,56.015224501175545,294.872155531309545 -158.498801767730669,56.01028183237792,294.862646534107625 -158.496450603249144,56.007000987464188,294.861195395700634 -158.497548444919317,55.988888566015895,294.874043120071292 -158.501483902257121,55.981366737779837,294.88453506398946 -158.512273580031376,55.979298593407641,294.901821746490896 -158.59805617470937,56.044929726037431,294.988074638880789 -158.600803350430283,56.048499553755882,294.989903924055398 -158.596628316760757,56.110120602381443,294.944995966739953 -158.586802823007758,56.115332624828596,294.927192245610058 -158.577100185994141,56.118315718320943,294.910976140759885 -158.577483336724129,56.120804628807321,294.909973355010152 -158.602846471259255,56.130118821042728,294.941557598300278 -158.63074336808171,56.120617582676736,294.98876275960356 -158.642886715261199,56.113753568928935,295.011038568802178 -158.662176386415837,56.098227699841736,295.049350404180586 -158.669254987246774,56.078090224711545,295.072531763464212 -158.66334835268799,56.034604779124088,295.091179240494967 -158.654108294015742,56.03103507961476,295.079746334813535 -158.645649946160262,56.023092509535012,295.072207654826343 -158.641137556561347,56.01560984646882,295.070214151404798 -158.639121906064332,56.00468524836355,295.0740647893399 -158.641928666626598,55.9857488212619,295.090054058469832 -158.655643699394687,55.958294462981698,295.12750456854701 -158.675674893667804,55.951164305310705,295.161649971269071 -158.739436862641412,55.952990988163428,295.255033268593252 -158.750988033570536,55.959042559235364,295.268361045047641 -158.753643260859235,55.963436360753839,295.269540773704648 -158.737778580463072,55.995884595064901,295.225674628280103 -158.731998101681882,56.002530488418017,295.21293958928436 -158.749736225061127,56.009583904746805,295.234753545373678 -158.856560883754952,56.003017018019648,295.39693062286824 -158.900540813060871,55.950715892199341,295.495095265097916 -158.911819223290678,55.934561928907989,295.521996228024364 -159.002019472395887,55.92668469822285,295.660523817874491 -159.14116583567494,55.908991556416979,295.877681200392544 -159.273928248000516,55.890373575381922,296.085945251397789 -159.350093047825567,55.877470515458349,296.206841936334968 -159.377253158560308,55.871190194281205,296.251035835593939 -159.398809847724408,55.856435267930323,296.292415667325258 -159.402505506730705,55.852025343850443,296.300722380168736 -159.40853413429079,55.83162491228763,296.322776078246534 -159.411786745528758,55.810103573698903,296.341422895900905 -159.406732009547909,55.796662125903111,296.342564770020545 -159.413910379355087,55.788581258159404,296.358373344875872 -159.425873166115849,55.788695020311891,296.376014269888401 -159.437192196913429,55.792578667823086,296.390280624851584 -159.472622763964608,55.828578760815795,296.419522486627102 -159.475208342420729,55.838717368761223,296.416794780641794 -159.474380633058104,55.843173234942427,296.412690218538046 -159.467690334021455,55.852512051581094,296.396761296316981 -159.456356266858165,55.896485795990245,296.351512847468257 -159.484637054092815,55.901491074341322,296.390000091865659 -159.496293731757959,55.899773903765421,296.408319725655019 -159.530758370952725,55.888122620411231,296.466769634746015 -159.53682381510194,55.880963742239494,296.480386377312243 -159.500429880409001,55.854965328443996,296.443546229973435 -159.496806428708339,55.765467418187711,296.495955577120185 -159.506169154721505,55.747547841554059,296.521327452734113 -159.523989097919639,55.735690894992238,296.555334085598588 -159.539551346671033,55.728128847321919,296.583243229426444 -159.553830046199693,55.711213142255744,296.615251868963242 -159.554413622135911,55.704464359934185,296.620441783219576 -159.538358002844376,55.689502181505148,296.60620793979615 -159.532512616896497,55.665066126365829,296.613128274679184 -159.547509188116294,55.646189476315442,296.647411211393774 -159.566806028636762,55.632717999342397,296.684637673199177 -159.620159759346478,55.595470790195648,296.787582543678582 -159.699099934132562,55.572978021974272,296.919188663363457 -159.731719108161769,55.569321512195202,296.969980603083968 -159.736285043824836,55.5696564118537,296.976549308747053 -159.746882669465407,55.599688177729142,296.973071255721152 -159.74566991099303,55.60329407804354,296.968959761783481 -159.737584505162602,55.610602985646892,296.952274488285184 -159.726538929935629,55.614219077190448,296.933565541170537 -159.675822040366739,55.617020969421482,296.856502750888467 -159.669900996413332,55.614496171003253,296.849327404052019 -159.642009700478098,55.617586608979536,296.805946371518075 -159.629163637878349,55.629083467027968,296.779536860994995 -159.638258382662713,55.644068778745194,296.783456492237747 -159.647048712005898,55.652139332337136,296.791330183856189 -159.681593280890013,55.655564542231076,296.840365190990269 -159.683028806998664,55.68100864790626,296.826130456291139 -159.679158306023908,55.737023820592583,296.784228298813105 -159.675589206495857,55.75062742905773,296.770134125836194 -159.629884268958875,55.802913552463572,296.668616984039545 -159.627286406241524,55.804359554371452,296.663837988860905 -159.604550847382086,55.804669988037588,296.630035167559981 -159.610376225679772,55.812565607672248,296.633515987545252 -159.646142641337406,55.830088317681785,296.674938229843974 -159.715219339600452,55.846054430023997,296.766443140804768 -159.813472130743293,55.856230168723279,296.904613245278597 -159.841382351207073,55.85207176429013,296.948489962145686 -159.855655759864391,55.846821662922999,296.972994488663971 -159.860856331460752,55.841452742660294,296.984208958223462 -159.853149385040808,55.823736491260625,296.984550690278411 -159.849757123475058,55.80219128578581,296.993746736086905 -159.864880924774354,55.787290495215089,297.025867843069136 -159.878390486135288,55.784269334190043,297.047791723161936 -159.894715209970229,55.784756999506946,297.071558766998351 -159.939485487287726,55.802965510539892,297.125565922819078 -160.012716726956683,55.79674529464134,297.237628318369389 -160.028676132069933,55.791953146251224,297.264329798519611 -160.051103468878949,55.771719395812262,297.310823016799986 -160.054917052122136,55.766088512698303,297.320182714611292 -160.054336705839404,55.760252722114117,297.32319881208241 -160.05180856956926,55.75724687337987,297.321463981643319 -160.060832208097565,55.721393916706283,297.358509098179638 -160.132830392576864,55.681078891077625,297.491444175131619 -160.188094963577015,55.658303595647389,297.588114798069 -160.282207133583086,55.641042359877325,297.738520581275225 -160.327798439060615,55.643864379089251,297.803939342498779 -160.355873240069599,55.649387645638512,297.841681006364524 -160.413202096835505,55.665034998744829,297.915749602951109 -160.418830984710468,55.664956892324028,297.92409835383296 -160.424231723898941,55.662355876682369,297.933802871033549 -160.432105291378974,55.657700883472899,297.948530126363039 -160.435979667687292,55.648630119077829,297.960323094390333 -160.435399133884545,55.639634438587699,297.965493579395115 -160.394962653732449,55.60242849835776,297.93066640291363 -160.438232074463571,55.573349660043185,298.013916712254286 -160.450648955401846,55.55870692375769,298.041997861117125 -160.46667109703273,55.532901503146931,298.082816853187978 -160.467555726553087,55.527019688943405,298.088027058169246 -160.462184085279205,55.514645219934629,298.088285252451897 -160.465113529184464,55.506313451017817,298.098134186118841 -160.484000114523127,55.488727693673972,298.137711015529931 -160.503712106781421,55.478177677658927,298.173857964575291 -160.523700480392307,55.474079433281005,298.206148847006261 -160.539019219281926,55.474597119406752,298.228473078459501 -160.546590717544206,55.502009024779028,298.221483469940722 -160.556540764571537,55.522622120288574,298.222472792491317 -160.582452759071856,55.564040190720036,298.233059551566839 -160.598141130152584,55.57519450318339,298.248724494129419 -160.617674754167751,55.575170126424865,298.277552798390388 -160.640739223047518,55.557080304144115,298.323730765841901 -160.655142420103573,55.548322327985524,298.350864130072296 -160.669332892228965,55.544071200596342,298.37465746793896 -160.709249824967998,55.555719027756112,298.42569291125983 -160.739461206309329,55.555100465781699,298.470652209594846 -160.753405785036989,55.552559284302227,298.492925124242902 -160.768602171008439,55.54721117564516,298.51894071046263 -160.775314527776999,55.538650341818489,298.534621597267687 -160.773796983084964,55.529082701756906,298.538844672963023 -160.734514389651935,55.523249661426213,298.484831111505628 -160.662482466470522,55.518130228904518,298.381953233852983 -160.656482228996936,55.512251547989273,298.37703006900847 -160.649828653219004,55.50051808226759,298.375050676055253 -160.648668195554592,55.492507381875534,298.378687772899866 -160.653885977674037,55.473830927935531,298.398860860615969 -160.66927882192681,55.459433129995922,298.431214226409793 -160.783760146265365,55.451435199795206,298.605768953450024 -160.798347054444719,55.45460080873162,298.625196970999241 -160.839084355256631,55.472788392401107,298.67312582116574 -160.845767221018349,55.489434686340502,298.671763823367655 -160.838383810657945,55.496911569547976,298.6558240307495 -160.824134621599455,55.505868534019591,298.62875749450177 -160.823171745411969,55.507626491717417,298.62615015450865 -160.830635088576457,55.515763066161973,298.631658477708697 -160.851507152947221,55.523567393667541,298.657147652469575 -160.867742021958207,55.526618975089981,298.679006847552955 -160.911985996324773,55.523790220172536,298.746120274066925 -160.925294448757825,55.518950131274821,298.769017751328647 -160.946624348849042,55.50747511781563,298.808246843516827 -160.97890762714772,55.472386713354418,298.879667488858104 -160.981654188487767,55.465924884928256,298.888102327473462 -160.979731922351704,55.460836098732372,298.888718976639211 -160.985072410048502,55.453977234345608,298.901245255954564 -160.999689289288,55.439916442126886,298.932334678247571 -161.016015421507035,55.430653450483867,298.96269681956619 -161.233879821763168,55.357101833714275,299.334098399616778 -161.283018660204419,55.353687010927203,299.408921065740287 -161.327668130088057,55.359502951259792,299.470793331973255 -161.319888453915979,55.362405998711765,299.457337630912662 -161.314333158275304,55.372483752404612,299.442252192646265 -161.317293478423068,55.378878471880618,299.442236261442304 -161.348424255713695,55.385428645897051,299.483612464740872 -161.36692079891796,55.383840346911811,299.511949419043958 -161.44753726410994,55.367748365845785,299.64175122231245 -161.462732432037967,55.358715391479784,299.67035279981792 -161.488453940441673,55.358966890258202,299.708054970949888 -161.509996720190912,55.36243035648311,299.737377622164786 -161.516551917017011,55.384897443738694,299.731476256623864 -161.511647331138647,55.390269349539778,299.720539047382772 -161.498464965958817,55.396610380000048,299.696754793636501 -161.486931437366593,55.417636865572128,299.665212200954556 -161.480647900579811,55.440242196433708,299.640273218043149 -161.473815290372642,55.478229002957995,299.603780342265964 -161.479461571579549,55.484835664654995,299.607457473874092 -161.471619418516866,55.496470410084711,299.587820658460259 -161.378456610680246,55.569433665477085,299.400141729041934 -161.369760362073976,55.579123497086265,299.380608219653368 -161.358043204574955,55.606016792275867,299.344580764882267 -161.360027538796714,55.612241539099003,299.34311603102833 -161.365735778636321,55.618116226504597,299.347346479073167 -161.394970785920435,55.627858328305415,299.383284495212138 -161.418592565087664,55.631960732784094,299.414955814369023 -161.484420360375651,55.63361441116637,299.510067002847791 -161.528517276263926,55.630132684719783,299.57700489461422 -161.589400440072069,55.619693877107707,299.67341001611203 -161.605177751762085,55.613444790586726,299.700914178974926 -161.615278092570065,55.605791861679478,299.721121957525611 -161.701205205260123,55.519035226168555,299.908422015607357 -161.702413883278666,55.514025377395953,299.913741980679333 -161.699058550589058,55.422945620106972,299.973074750043452 -161.690696307406,55.416019022389953,299.965664422139525 -161.68883385177736,55.407680349909754,299.968777374364436 -161.722432334616968,55.376329806512132,300.04007266741246 -161.829871980602661,55.287512880422348,300.260061031207442 -161.836219650983196,55.284040881890647,300.271820022724569 -161.847801235956325,55.280889772282478,300.291053450666368 -161.855745866216949,55.277274748444128,300.305261972360313 -161.865666046129462,55.266629935318633,300.327283398248255 -161.877931804676081,55.249562304900017,300.357233091257513 -161.881867194144121,55.240445552441109,300.369377299211919 -161.878083790442474,55.232233915154467,300.369525008834898 -161.877562487802749,55.226866115138918,300.372491623274982 -161.880400219982903,55.223241189464609,300.379190757870674 -161.905729628774196,55.204583368359479,300.429462717846036 -161.921841497967137,55.207850945755197,300.450918570160866 -161.959777893650511,55.227639522213593,300.492962588556111 -161.981110941335658,55.235770828115697,300.518658854998648 -162.031958119921626,55.23913074149732,300.59106822963804 -162.043557731102396,55.236444615978158,300.610005330294371 -162.048015407013537,55.232413674017735,300.619388611055911 -162.048562978577507,55.225243917745381,300.625226144678891 -162.004029593103922,55.168877765867329,300.599084326066077 -161.969292450616621,55.154473938682358,300.55791209358722 -161.952199160281026,55.126330265631481,300.552198431454599 -161.958911186780227,55.111818655233044,300.572127255611122 -161.963181787131703,55.10637876805265,300.582185062579811 -162.055593067022357,55.073856174010579,300.741032879799604 -162.121052414324396,55.102552906055699,300.817670220509171 -162.134191298632061,55.122416947654798,300.823188830167055 -162.121347616652599,55.140756537595593,300.791470213793218 -162.128684181161901,55.153047960397323,300.793678596615791 -162.143399113682733,55.156978540991219,300.812584109604359 -162.179741214115978,55.154041955602437,300.868117668665946 -162.22050334274229,55.118542448151636,300.952994237653911 -162.226357633755725,55.108297702989525,300.968788098543882 -162.225838272280555,55.101850943180622,300.972535429522395 -162.209109465717631,55.082031968994492,300.961739717051387 -162.192656908328615,55.066622832355826,300.948227444663644 -162.191555543586645,55.059902093868672,300.951279398053885 -162.221632142278168,55.028617645219398,301.017382007092237 -162.250251078223016,55.020081409447997,301.065533479675651 -162.255804967608555,55.020096303724046,301.073716511949897 -162.270058744456776,55.02119499433514,301.09397831466049 -162.282816755154556,55.025848585669515,301.109554926864803 -162.294815928392751,55.033070099253308,301.12221413012594 -162.301924171372519,55.039792723435518,301.128001278266311 -162.302683315443034,55.042567609517057,301.12718256842345 -162.364273060837547,55.042318452467192,301.218102824874222 -162.41581266986276,55.036198696941263,301.298301504924893 -162.473666381893281,55.051569050934098,301.372640953399241 -162.492037751144039,55.064485240082355,301.390543593093753 -162.514407525571613,55.085862050655884,301.408292127773166 -162.523992353668746,55.103645232444038,301.409747515805066 -162.523291024358087,55.115050837512655,301.40060659032315 -162.509192512746409,55.118560978662252,301.37740863673389 -162.463264842770684,55.125474600609259,301.30505078099668 -162.455757885875414,55.123582810332408,301.295367810875177 -162.444862776854535,55.117861221124315,301.283420777879655 -162.439674530253541,55.111757537605122,301.280122196301818 -162.427102363789686,55.104449037028488,301.266817505471408 -162.419106484283361,55.103732214041777,301.25557063985616 -162.412880697642464,55.10525027760071,301.245345389470458 -162.408498643932177,55.120133828383516,301.22837857156992 -162.447490644138071,55.151154982044837,301.263639802113175 -162.483288480892099,55.16090395631111,301.309229985810816 -162.496779515556454,55.183546893456636,301.312842538580298 -162.500230321223967,55.198683288905258,301.307064527645707 -162.50133015121088,55.21340074422104,301.29812328517437 -162.512748030451462,55.249806233862735,301.288664981722832 -162.515434103307172,55.252003104956344,301.291012668050826 -162.58718631380242,55.298012113452273,301.362621963955462 -162.628414801815097,55.303710130507852,301.418684497475624 -162.651486040157351,55.298742869589383,301.455986390821636 -162.664272497577201,55.293919798464906,301.478169162757695 -162.684716041469727,55.276075044572607,301.521024734713137 -162.705160248527051,55.252400498738787,301.568124489858747 -162.716914781369724,55.23123702922593,301.600690771825612 -162.720384033150651,55.219537380195177,301.614260054193437 -162.713434675659869,55.210893819511028,301.610371315851808 -162.694615254553526,55.196940672667317,301.592951705679297 -162.670652521381726,55.193073263654711,301.56068363878876 -162.647041216210539,55.196743579338765,301.52347631379962 -162.641098202111266,55.194398775333759,301.516469148918986 -162.616803540774157,55.174364949375274,301.495322083123028 -162.582070068680764,55.136570956128359,301.471513216383755 -162.585212618780133,55.129872136222886,301.480912528932095 -162.58783747088637,55.128232145242897,301.485935343429446 -162.59790704968222,55.124478089140382,301.503390669822693 -162.606757937439397,55.125659879528925,301.515528752468526 -162.621219978852821,55.096728642102015,301.557422107085586 -162.6021119408083,55.054440520216914,301.559470567852259 -162.571590331738776,55.015510496228046,301.542164957150817 -162.571584782607488,54.970878104372588,301.573613117448986 -162.590262447798949,54.971647724082736,301.600580202415586 -162.617454799030241,54.987477640030768,301.629452554509044 -162.648767694728349,54.996798713173071,301.66893542651087 -162.690425787739116,54.995760964693282,301.73093874938786 -162.709377118313398,54.990793786387442,301.762329914607108 -162.718470677523868,54.986313776513946,301.778880808502436 -162.722697223372307,54.979857929770375,301.7896768450737 -162.709496025094779,54.97165847461369,301.776071754284203 -162.707388725518712,54.965645731449285,301.77722891792655 -162.710745228461377,54.958115940163943,301.787496236152947 -162.773272490624834,54.932371693019604,301.897733226418495 -162.836532865252963,54.926485715115845,301.994987586513162 -162.847762643585327,54.926623498776976,302.01140907779336 -162.883926346230368,54.934418535947941,302.059046890586615 -162.915971569010054,54.949905372363226,302.095098071731627 -162.972921286332905,55.000668465888957,302.142288134433329 -162.968162314774048,55.017002965954617,302.123540960252285 -162.961265614931023,55.019779995591584,302.111427889205515 -162.960117304396078,55.031454596300577,302.101323584094644 -162.967188750977471,55.041829089367404,302.10419368930161 -163.003843158142416,55.079669037447374,302.130442283116281 -163.053924453021096,55.102891260019788,302.186773237772286 -163.073761455615511,55.110100627674335,302.210497346706688 -163.081299366915147,55.111275443603475,302.220652279444039 -163.113799582383734,55.109327901938258,302.269559428095818 -163.167326872187033,55.098836272146009,302.35543611459434 -163.190717911549967,55.090525131283378,302.395698838867247 -163.215297021683767,55.066364539226193,302.449332773685455 -163.227378798205592,55.049305927198503,302.479492614977062 -163.228599374725491,55.042317156385174,302.486395835876465 -163.221303819468375,55.029904741390226,302.484812181442976 -163.215566702750948,55.025761998713349,302.479450332932174 -163.191732658805961,55.016302787970275,302.451489800587296 -163.177115758160085,55.012725191753468,302.432707972824574 -163.150901353434023,55.013648650846967,302.393668017350137 -163.069294065411725,54.978930439201143,302.299278498627245 -163.052752825287001,54.968700120190761,302.282401697710156 -163.038346616804233,54.942174351434964,302.280348343774676 -163.067885081036195,54.925802390071887,302.335469115525484 -163.15185907380507,54.885536276447851,302.487688106484711 -163.216673570611533,54.847117460382862,302.610475171357393 -163.302081777961064,54.828861526895238,302.749042241834104 -163.355267606436371,54.809803228054335,302.840869745239615 -163.375476664214659,54.800470191463013,302.877271194010973 -163.375075117733957,54.790565561491206,302.883814335800707 -163.344923296952658,54.764735071535114,302.858058693818748 -163.325116878114414,54.749911985404921,302.839543274603784 -163.230661009394396,54.753146633770044,302.698231506161392 -163.222035274437957,54.754705738070179,302.684422694146633 -163.191124955344151,54.773350633900186,302.625647670589387 -163.186567116194993,54.774545675515043,302.618087833747268 -163.146361192241613,54.76113391952881,302.568413944914937 -163.109829333783466,54.732388657067453,302.534916061908007 -163.059497870910462,54.68774023853684,302.492051004432142 -163.053239115599069,54.671902937879132,302.493896528147161 -163.061353325970202,54.660712197579272,302.513713158667088 -163.099011584435402,54.661236473336288,302.568988697603345 -163.128005356915025,54.667818688496567,302.607196154072881 -163.143193530727899,54.694466424353436,302.610874434933066 -163.187668927628579,54.70003438745465,302.672552051953971 -163.197219654644385,54.698661259227578,302.68760652653873 -163.211042041962543,54.692772217133644,302.712152087129653 -163.282898686082689,54.695001791505263,302.816499545238912 -163.32026228448359,54.719571189945427,302.85405973251909 -163.329724399234152,54.743046151143744,302.851230156607926 -163.333783544527762,54.747149924683164,302.854267604649067 -163.347058476170474,54.750842541037521,302.871151120401919 -163.366892967922723,54.749095234375375,302.901571702212095 -163.382884453033881,54.745807056167827,302.927443471737206 -163.394235983550715,54.741610998073519,302.947143413126469 -163.425331136820887,54.720057209042075,303.008321872912347 -163.430640714321243,54.714450316046189,303.020148752257228 -163.427740510560682,54.709712544444876,303.01927546504885 -163.441621212347542,54.65556128016852,303.0783855561167 -163.474275565531485,54.656100651124838,303.126090300269425 -163.491120140798074,54.654742387097464,303.151861432939768 -163.574638639249514,54.622843009088882,303.297621471807361 -163.58373609903424,54.616495074487702,303.315554607659578 -163.588221717253759,54.611276184093271,303.325889923609793 -163.673091844213786,54.627455005388285,303.439192918129265 -163.749568644047656,54.634639316691747,303.546447759494185 -163.805841548148067,54.636125215325983,303.628042297437787 -163.863456141687067,54.632537277424788,303.71524207200855 -163.954639089584816,54.630085674894055,303.85083042178303 -163.968554863817559,54.631305371391754,303.870351219549775 -164.087138725220967,54.619753600181717,304.052646501921117 -164.181858568884195,54.598809623229812,304.206800187937915 -164.234709696444042,54.585115154296858,304.294286549091339 -164.259823463172324,54.572343165163765,304.340470910072327 -164.333638581412657,54.53005237785618,304.479727470315993 -164.339772114009264,54.523880495077734,304.493254476226866 -164.343706449114023,54.494888506333339,304.520314812660217 -164.338273978551229,54.484132009206782,304.520232114940882 -164.338761775870239,54.480600132432805,304.523534280247986 -164.354934564245781,54.464646431545248,304.558938451111317 -164.419047392486107,54.43133649867702,304.677387038245797 -164.458779904317623,54.419479211885871,304.744370971806347 -164.501258694512103,54.413847641085304,304.810822437517345 -164.52219427125786,54.414274239485991,304.841219113208354 -164.585000446345532,54.405323420202812,304.939896564930677 -164.603828868213327,54.40207219619564,304.96989254001528 -164.642677427758656,54.390786906845655,305.03515069000423 -164.746195373610391,54.393834889394235,305.184560026042163 -164.791574819119973,54.40162976200795,305.24520664755255 -164.847148462973138,54.417199154782693,305.314905919134617 -164.87829319061936,54.443109607205372,305.341055537573993 -164.879591509207899,54.449522342037,305.338148185051978 -164.906297600170859,54.498806999477132,305.340078517794609 -164.912279923316248,54.50715357637997,305.34250536840409 -164.938343102771398,54.52086358346871,305.370130781084299 -164.94685755063918,54.532512990386365,305.373713091015816 -164.952004765697609,54.575305293877541,305.348707501776516 -164.951013014813611,54.579485155818297,305.344082866795361 -164.934412403261263,54.598352755941981,305.305564440786839 -164.920986052480401,54.604913757818544,305.281038315035403 -164.834165230046978,54.628636470327621,305.136697918176651 -164.763578392034304,54.640243337922612,305.025178538635373 -164.744047077302525,54.645050518883693,304.993106945417821 -164.729886685385509,54.650566574641559,304.96831408329308 -164.711698657163538,54.661127517240722,304.933833366259933 -164.631901581349211,54.755638486647825,304.745907275937498 -164.579141513432916,54.82416993376259,304.616924013011158 -164.56379330359681,54.850440251278386,304.574523174203932 -164.566298623611431,54.875143297407512,304.559184787794948 -164.552505659229439,54.888389066671323,304.529005425050855 -164.489032907132156,54.922045009286059,304.411131366156042 -164.437534614654879,54.932730573150543,304.328288394957781 -164.429557770988595,54.932453731220292,304.316939955577254 -164.375695951209167,54.914955370459452,304.252247795462608 -164.363885760154147,54.90699788080056,304.241193785332143 -164.355584432014865,54.897934366649025,304.236064059659839 -164.345788408373579,54.893746701762581,304.225035697221756 -164.297288894498564,54.901730309560229,304.148526572622359 -164.209329202191356,54.927187012580752,304.00140927080065 -164.207156453880174,54.930848919211037,303.995470761321485 -164.166603571298452,54.953140859653047,303.919630402699113 -164.12145942792165,54.969025120591446,303.841999107971787 -164.111596333857904,54.96360850148001,303.831785256043077 -164.089061780571086,54.963005942858921,303.7995037259534 -164.063428400632148,54.964318372263975,303.761260909028351 -164.032973336618284,54.969428753321395,303.713130409829319 -163.996445873765595,54.98292594270103,303.649830780923367 -163.966998290309704,54.996947981826949,303.596429510042071 -163.932639166820024,55.017256885106555,303.531142096035182 -163.911493432319645,55.031699755756463,303.489494427107275 -163.896967138212204,55.038725772188059,303.463075288571417 -163.887141391690704,55.039519926818045,303.4481988735497 -163.874416519598867,55.03701025530318,303.431605092249811 -163.856532921285492,55.037407574797115,303.405314208939672 -163.818053123282994,55.044237046072972,303.3442288832739 -163.79300810445946,55.052195225911881,303.301821743138134 -163.776368637788039,55.055392421184266,303.275222302414477 -163.743012916784664,55.047879316505018,303.232366796582937 -163.649111681850712,55.044082209985085,303.098557746037841 -163.570438602087705,55.048761513282969,302.980481216683984 -163.535242810787224,55.048497752527268,302.929392481222749 -163.529389384162357,55.040488634501358,302.926815481856465 -163.536916571511313,55.024922663926787,302.949350766837597 -163.532365557488077,55.016278401158864,302.949126722291112 -163.463778058114201,54.982131922491561,302.874247837811708 -163.445131732377405,54.969496729880156,302.856300826184452 -163.431825155102928,54.954381527555455,302.847947443835437 -163.420318476158229,54.938122333477111,302.843031343072653 -163.400568848856722,54.901996016902011,302.840505658648908 -163.401566357021665,54.893637302527544,302.848054853267968 -163.410300644039836,54.884205482595682,302.867715385742486 -163.418144078453707,54.859278244668701,302.897331333719194 -163.416962902815584,54.855716396730365,302.898186110891402 -163.412865902938677,54.854202528617471,302.893278586678207 -163.39366934445971,54.854957860199399,302.864584658294916 -163.336508522615077,54.872575287701466,302.767998893745244 -163.32116024498427,54.879747313833967,302.740297972224653 -163.321437304901792,54.898652620419554,302.727000619284809 -163.32223251734942,54.902711457857109,302.725220657885075 -163.33901598173091,54.917115619631872,302.739344254136086 -163.346678926541472,54.918958409089306,302.749227236025035 -163.350007182608977,54.924718137399339,302.749907509423792 -163.346013696942123,54.950040292656844,302.72559557389468 -163.340674134738322,54.955815183196712,302.71356491651386 -163.325385664218658,54.959553334178658,302.688462609425187 -163.316871780787267,54.958486532472854,302.676781072281301 -163.293187543519082,54.945602443881995,302.651496759615839 -163.281865714691435,54.944474697077254,302.635736935772002 -163.242181090709636,54.954243087023059,302.570512122474611 -163.23969540704735,54.958917964176862,302.563474268652499 -163.242289556840717,54.962510785289076,302.564661497250199 -163.29548794716402,55.006488195068862,302.610415747389197 -163.300161736809088,55.057240274338923,302.579989573918283 -163.312982207665414,55.105231304893572,302.563287516124547 -163.316357422099458,55.10476506194766,302.568554404191673 -163.321019034458175,55.110430197205837,302.571158583275974 -163.322161681563927,55.119240867818476,302.566297825425863 -163.316940832408676,55.125930562888939,302.553729600273073 -163.271058362040606,55.14508366062995,302.472663224674761 -163.203160957294102,55.165676199006462,302.358457115478814 -163.159827401494994,55.175129675857661,302.288301385007799 -163.107307979203028,55.183599361582601,302.205477046780288 -163.08393125879897,55.180029929589985,302.174016760662198 -163.083016073719307,55.176482073772306,302.175294746644795 -163.07279112770442,55.173735364669106,302.162399975582957 -163.034553806499019,55.171769155434099,302.108047748915851 -162.959481307856095,55.170894601811945,301.999080125242472 -162.884593542020014,55.18287558618632,301.880931193009019 -162.863823173122285,55.19796310612606,301.839578116312623 -162.842444764364586,55.223666926437915,301.789584033191204 -162.845477773037118,55.242187209477294,301.780464002862573 -162.854144869522429,55.246939876564937,301.789630274288356 -162.858905852657529,55.248343736659798,301.795547910965979 -162.871783550400323,55.247708516019721,301.814801612868905 -162.883196821983319,55.239186603894574,301.837703546509147 -162.896324752536856,55.242668232000661,301.854301149956882 -162.902758814682159,55.246037990515546,301.861211584880948 -162.903948861621188,55.247273924038893,301.862039314582944 -162.90233217355248,55.252087783198014,301.856144176796079 -162.890424459315,55.270045369253367,301.8255764702335 -162.884085784431221,55.273397369825538,301.813869685865939 -162.752682457148921,55.307245652611869,301.597420328296721 -162.734127850655852,55.307451996409313,301.570209902711213 -162.707060132344367,55.319919067024017,301.521601135842502 -162.682801603944171,55.336626934964322,301.473986671306193 -162.652226815729193,55.363773554630285,301.409514446742833 -162.622203036326312,55.408291553635884,301.333078197203577 -162.58284706432417,55.446135302259343,301.247932131402194 -162.578149179443102,55.446454046899817,301.240860353223979 -162.535541275818986,55.46724612584822,301.163544784300029 -162.506367752846757,55.482177156444642,301.110102791339159 -162.486014917230506,55.494858098938394,301.071155571378767 -162.405914235039859,55.557085447553661,300.908819948323071 -162.328774163737648,55.613537951305233,300.755073977634311 -162.288343096713163,55.648907494362085,300.670230309478939 -162.249315728300729,55.679632174715238,300.590862290933728 -162.195424153755425,55.701797437358934,300.496274571865797 -162.149407064279842,55.718034755993088,300.417510288767517 -162.093015314594425,55.75304662750861,300.309838886372745 -162.082030138026084,55.763019494440819,300.286536357365549 -161.974980549592715,55.800146268658679,300.103896751068532 -161.901316033445937,55.83308455209923,299.972803620621562 -161.860792789534003,55.865022237562194,299.890513982623816 -161.818590075916092,55.888613242713141,299.811962964013219 -161.810198425539255,55.891574302931943,299.797622153535485 -161.775775446420397,55.896930781712278,299.74380530230701 -161.714651100100838,55.903853720828266,299.650139943696558 -161.642377151724418,55.919125258065847,299.534170899540186 -161.58797666570004,55.936947032976157,299.442249179817736 -161.452818421491116,55.954110055056269,299.233718820847571 -161.382935498211538,55.965244025839269,299.124229948036373 -161.293158176229383,55.982756878705487,298.981233050115407 -161.282688588349828,55.97895009784277,298.968792732805014 -161.280711102440563,55.974539684742489,298.969113922677934 -161.265143418212546,55.958362532683203,298.958197160623968 -161.232824367701909,55.947096538275304,298.919356375001371 -161.213654007834862,55.951341764893421,298.888435680419207 -161.099000459959626,55.954383878155241,298.719521031714976 -161.078766080388988,55.94171169809767,298.699131646193564 -161.051545820684339,55.945040111992377,298.657133066095412 -161.030123804200826,55.954187217177505,298.619426944293082 -161.025761192127362,55.959101135536507,298.609573407098651 -160.90107207615884,55.998648216098566,298.399924989789724 -160.875619724957318,56.001082627445776,298.361145095899701 -160.865640598643751,55.995871996372372,298.350314343348145 -160.816593943051174,55.953471376731656,298.308824498206377 -160.815281785418165,55.950495502617116,298.309007815085351 -160.816500517290336,55.930271162131056,298.325020872056484 -160.820587215817568,55.910387755352978,298.344956380315125 -160.837463193650422,55.915385259336709,298.366078471764922 -160.852050938462838,55.915864960533789,298.387029901146889 -160.926239528120675,55.900211054102755,298.506307878531516 -160.953940060059153,55.85241014009754,298.580409293062985 -160.948779068187008,55.83451984811235,298.585439246147871 -160.943223422984232,55.822168375790341,298.585982928983867 -160.93296912493642,55.813997852196437,298.576714564114809 -160.808389917098935,55.737885857115572,298.447194795124233 -160.767605858827324,55.756818999430685,298.374325383454561 -160.733103948443699,55.747309991528127,298.330274625681341 -160.670479692902006,55.723204026699179,298.254888183437288 -160.663582818100394,55.723075164591506,298.244846696965396 -160.657938328921915,55.729689047927053,298.23203369602561 -160.657846928235614,55.739515714190944,298.225174963474274 -160.66541612426326,55.745138375758067,298.232435719110072 -160.678173238229817,55.751057926809871,298.247100478969514 -160.69760608580404,55.754721425643133,298.273099848069251 -160.753615480975014,55.779008513471076,298.338497140444815 -160.76008475029451,55.785485167589613,298.343500751070678 -160.771538952492449,55.857909483581537,298.309994602575898 -160.736567411384357,55.87063672949305,298.249988208524883 -160.699976594156254,55.862038730073223,298.202444158494473 -160.641474475721338,55.857944002983153,298.119662627577782 -160.566402257780169,55.86336427542944,298.005991233512759 -160.552731756380695,55.867194410982961,297.983328808099031 -160.534971242408687,55.869536676366252,297.955701163038611 -160.510822676000544,55.869025162423817,297.920677199028432 -160.497067622287858,55.863839604988861,297.904086166061461 -160.480280528286869,55.840746713138408,297.895312199369073 -160.481742352171153,55.822009320226023,297.910273998975754 -160.441121127563122,55.78925822073429,297.872963628731668 -160.388265557327003,55.796096014368842,297.790670875459909 -160.345263260994983,55.777818470289986,297.739833388477564 -160.296311423449112,55.765209849556044,297.67632426507771 -160.279769756956767,55.765515160477342,297.651776003651321 -160.266956603649277,55.775377074241185,297.626291064545512 -160.271319043960204,55.783931698909385,297.626955258660018 -160.295887647918477,55.801440627195547,297.651284733787179 -160.318045006846432,55.814195764009604,297.675229732878506 -160.320216237477098,55.81863457131773,297.675415057688951 -160.274924879545921,55.831325021579801,297.600282807834446 -160.275569415475303,55.856532155964693,297.584161230362952 -160.328030088695897,55.867507764813872,297.653707287274301 -160.382966365790111,55.889103967081027,297.719536986202002 -160.423128775205981,55.908266539443261,297.765247259289026 -160.488987466567522,55.923812735100455,297.850954690016806 -160.538152470927855,55.939260259009657,297.912179991602898 -160.536079765499522,55.95959261412974,297.895040669478476 -160.529489699519871,55.972653302508498,297.876335955224931 -160.528758296058157,55.982074999765082,297.86871497053653 -160.531688466399373,55.985744819403976,297.870440536178648 -160.53693757495023,55.989139603241433,297.87574209831655 -160.561993544512745,55.996478869574027,297.907205317169428 -160.570000493315803,55.991311335630044,297.922499894164503 -160.573290383845489,55.988569592335267,297.929215955547988 -160.576792621952677,55.986192927858013,297.935987318865955 -160.579050508021822,55.985056922201686,297.940076355822384 -160.583235344370337,55.983719885877015,297.947118911892176 -160.58588644072529,55.986108754014076,297.949321502819657 -160.570752822044369,56.003702456597722,297.914944565854967 -160.491110902824545,56.076853553497088,297.7476158849895 -160.484611527689708,56.084873411888942,297.732524718157947 -160.453823637485812,56.125202665214424,297.659384820610285 -160.413792703116627,56.193775164263528,297.552882903255522 -160.398752358003634,56.231411209736486,297.504448867402971 -160.385509846217957,56.250987820204095,297.471366384997964 -160.359574127490674,56.279217393627953,297.413722109049559 -160.342668192349407,56.290906338034468,297.380904152058065 -160.318316355314437,56.301862452487264,297.33780525624752 -160.277026096707715,56.316786767818868,297.267327194102108 -160.225302977493897,56.346503801932684,297.171261511743069 -160.210808964782046,56.357657719186882,297.14234599750489 -160.198756119975968,56.3721854783238,297.114581644535065 -160.148681842155753,56.399811553562408,297.022432153113186 -160.085023761947639,56.410730443663212,296.922445095144212 -160.00391230439692,56.441838018249904,296.782920955680311 -159.979194529551904,56.453588120136125,296.738812500610948 -159.940775561412948,56.473829215094419,296.668872765265405 -159.830494151509697,56.543572118095113,296.459997493773699 -159.817922714079572,56.54857820328391,296.438272407278419 -159.6386082559209,56.597029168932892,296.144667680375278 -159.53741706196837,56.626169226233586,295.977792191319168 -159.44183882806152,56.640973637338931,295.829091869294643 -159.371895169150747,56.656715514107418,295.716860010288656 -159.326883880576986,56.669998978235519,295.642454942688346 -159.26733713846221,56.702779107465631,295.533499729819596 -159.282360676563172,56.715309409840849,295.546540549956262 -159.265580492343076,56.722963497617116,295.516943737864494 -159.158927112998953,56.762967335453119,295.33489834330976 -159.109126213705025,56.780769756826984,295.250537045300007 -159.095942629350958,56.78334793640218,295.229685538448393 -159.040831125921329,56.805650322112285,295.134559565223753 -159.020782098739687,56.814738432029522,295.099287730641663 -158.959952406317257,56.850828452619837,294.986416890285909 -158.95781908161436,56.849406368989904,294.984316413290799 -158.956024174357708,56.84306282167244,294.986103094182909 -158.936069519060993,56.82755070879054,294.967946792021394 -158.913210076852437,56.814443577850454,294.943891881965101 -158.895691806410412,56.805435211211936,294.92472025193274 -158.895690805668181,56.805434836607986,294.924719060771167 -158.871276654822907,56.796295985895647,294.895629842765629 -158.855773675563285,56.79226842160088,294.875929910689592 -158.786070178246973,56.780400183220252,294.783010457642376 -158.662780989042233,56.788667373571897,294.598607663996518 -158.644777894903228,56.812501977995083,294.556382093578577 -158.645331458102504,56.836259216637949,294.541095764376223 -158.649299073746135,56.84664281001082,294.539800581522286 -158.666146432037181,56.85670515719039,294.557365423068404 -158.702279145959949,56.927008880443687,294.561623713001609 -158.681788911107958,56.988270714038777,294.489939170889556 -158.662444348152064,57.034229664556626,294.430346389301121 -158.639865563925127,57.061008280867121,294.379307706840336 -158.520939450242139,57.160193580630157,294.139505032449961 -158.456226118568338,57.211433294697102,294.0109848883003 -158.378769204049064,57.265185194236807,293.862488584592938 -158.35758722841382,57.27449333346177,293.825633875094354 -158.23240971572227,57.321178416842436,293.613704236224294 -158.152239783761217,57.3445613140155,293.482554321177304 -158.069563904342317,57.382560820002112,293.337800142355263 -158.062575344541273,57.38710182263447,293.324653333984315 -158.052466713391595,57.389786944476079,293.308311555534601 -158.036781004246677,57.389876257422706,293.28575929440558 -158.013074209427884,57.401102393824473,293.244049720466137 -157.997207380243935,57.413880325752821,293.212519426830113 -157.958779510221518,57.44902903562317,293.133280645124614 -157.939783426882798,57.471693733642013,293.090475039556623 -157.934166817515973,57.475853721284928,293.079569017514586 -157.788596043293637,57.541835672121643,292.825868174433708 -157.775046627408614,57.546701799688407,292.803144400939345 -157.706405009480733,57.563102694672281,292.693708083592355 -157.681444488196831,57.563536186199777,292.657702747732401 -157.687385951722547,57.557394250155603,292.670404125005007 -157.682967631412424,57.537375939829907,292.677755224518478 -157.651938577626083,57.499981690215563,292.6587585946545 -157.617686378988424,57.488342732418836,292.617535462602973 -157.58945977608866,57.486808349004576,292.578082595020533 -157.575680930958981,57.514176804903364,292.539810210466385 -157.576024497952574,57.52238355156971,292.534745667129755 -157.590895390743782,57.581801470629919,292.515674107708037 -157.602201998734898,57.607598470988528,292.514242484234273 -157.609945182186237,57.612185177364154,292.522176809608936 -157.654759536690904,57.614441203310882,292.584682962857187 -157.686838621735177,57.609620698427619,292.633829986676574 -157.693847576902328,57.610777522124089,292.643049641512334 -157.71320325316043,57.639591270624095,292.650856078602374 -157.706346146994662,57.721410975688123,292.584472768940032 -157.673629357523737,57.772508125106036,292.502395359799266 -157.644801707618711,57.868416883256508,292.394499398767948 -157.6264686126041,57.960139569169591,292.304092404432595 -157.614390147263549,58.033898666221802,292.23490209504962 -157.599193361191368,58.088304397312534,292.174842515960336 -157.586231184125865,58.123940630620375,292.131206481717527 -157.583519508867937,58.127729576396732,292.124685326591134 -157.559153432167392,58.148078485317065,292.075851176865399 -157.535927719991065,58.159968615646342,292.034660524688661 -157.517073254582158,58.162611923545413,292.006218432448804 -157.496383568900626,58.161782368887351,291.977659958414733 -157.399952131739951,58.173019010892929,291.833797993138433 -157.385702208828008,58.184242978931017,291.80577231477946 -157.354922288046851,58.218732617383083,291.737993603572249 -157.369535019479997,58.232303930530712,291.748941173776984 -157.377117842148266,58.231751791614649,291.760005056858063 -157.391843281092406,58.227725606477392,291.783588569611311 -157.410522755371431,58.211505690313075,291.821403119713068 -157.425929439524452,58.21099439077782,291.843455421738327 -157.445316639102799,58.218508779949566,291.865396258421242 -157.51808101441938,58.255269243273737,291.941447971388698 -157.544170732457957,58.271513246661904,291.966431693173945 -157.549816044857863,58.277164969985151,291.970293301157653 -157.55895180598435,58.303378035045853,291.964231464080513 -157.55947578279995,58.330343255548797,291.945497296750546 -157.53879165866411,58.391223947037339,291.872448226436973 -157.527094569907462,58.414132536550753,291.839458392001688 -157.490730484877929,58.4713306628582,291.747051464393735 -157.484110281152255,58.480396542550643,291.731206406839192 -157.463505068452292,58.499318430855197,291.688659959472716 -157.454543674294001,58.505243447384586,291.671836595982313 -157.399825294880827,58.526958956437703,291.579669707454741 -157.382887383833747,58.524024385492993,291.55816500633955 -157.361116489190408,58.533502565037629,291.520898004062474 -157.333314316085477,58.551142639627045,291.469298881478608 -157.316204641512144,58.564669611196948,291.435612638480961 -157.28396287138483,58.599862287952718,291.365101806819439 -157.270073385060329,58.609420280436552,291.338802029378712 -157.254099960834139,58.620412326854378,291.308560962788761 -157.18147627037294,58.660066713074009,291.178626131266356 -157.080561705410872,58.70773046371751,291.003620702773333 -157.064577360842435,58.725729294423111,290.96834659203887 -157.010883270993446,58.816764890961565,290.82766277436167 -157.006059864722204,58.836447450187514,290.806646007113159 -157.006266051280079,58.838931377840147,290.805122789926827 -157.013643614853294,58.84802497672338,290.808724318630993 -157.018748679823176,58.863114458371491,290.804788933135569 -157.015053698452789,58.875513195220684,290.790613135322928 -156.988495861361031,58.888278784784816,290.744503987021744 -156.983551431671316,58.890655430229977,290.735920881852508 -156.969313692373902,58.903698367505285,290.706680860370398 -156.978613361859459,58.940519172361078,290.692612465471029 -157.032184572553007,58.955824651749417,290.755429327487946 -157.041872603149471,58.945542731918799,290.776380998082459 -157.04328907050504,58.91301358930307,290.802238096483052 -157.073245560294623,58.887438670914676,290.862456914968789 -157.073262967683632,58.887431041613674,290.862486603669822 -157.119525162952158,58.867155273371296,290.941412455402315 -157.192210322487796,58.847345321289836,291.056617734953761 -157.203653671766574,58.844633413289444,291.074459612369537 -157.2183653713588,58.841146953667803,291.097398570738733 -157.24405059915324,58.837178534679957,291.135888096876442 -157.262317120795302,58.83528521128661,291.162575329653919 -157.278104868257088,58.835755873928932,291.184083365835249 -157.355783040021436,58.817347784677466,291.305235394276679 -157.432178605409433,58.790688951468155,291.43078105058521 -157.486708212990294,58.785578974018463,291.510074136778712 -157.535298303884616,58.7722543460102,291.587268904782832 -157.540186902466985,58.768158359090449,291.597092028707266 -157.544969238567262,58.760578470802649,291.609366830438375 -157.553245596379355,58.754130479699541,291.625636188313365 -157.69911003627746,58.729589173131636,291.845964295789599 -157.72442305445739,58.722825843018789,291.886084819212556 -157.756218785128993,58.71153787905105,291.938585955649614 -157.802230520226203,58.69520302018492,292.014581376686692 -157.858027174549989,58.677889362493467,292.104890679009259 -158.003642041431533,58.642503160614638,292.333295060321689 -158.039217471944454,58.633857894844844,292.389116891659796 -158.104268262092603,58.620698937460659,292.489194799214602 -158.142928078992952,58.614628319973441,292.547346575185657 -158.192903037441823,58.613317338680183,292.617531881667674 -158.216480750061578,58.615434798988176,292.648546298965812 -158.234895706324608,58.619508309548721,292.670910755172372 -158.275655949218702,58.633075098628538,292.716883261688054 -158.299809215304094,58.642751335308354,292.742832644842565 -158.32965889830092,58.659438259607576,292.77121433801949 -158.334714212858756,58.664916003154381,292.773968135006726 -158.335481495373443,58.668876876547358,292.771969617344439 -158.332837978610797,58.67464576877633,292.763865362852812 -158.335016820908578,58.686416394894962,292.757777083665133 -158.346169624561185,58.713235417906226,292.75240121409297 -158.354106531425742,58.727293863682235,292.752438642084599 -158.37949957977554,58.747642778808604,292.771604800596833 -158.403102119212434,58.760780931896122,292.793861935846508 -158.426455325745252,58.769445214904763,292.819232192821801 -158.457837261582625,58.776569377419349,292.856822484172881 -158.515173622762774,58.782706039164374,292.930828220210969 -158.541142521581889,58.78798936346719,292.962356519885361 -158.553252629572455,58.792509991152087,292.975432973355055 -158.567460095927771,58.802309429326307,292.987220514565706 -158.569024399992202,58.806731274506554,292.985880427062511 -158.568498037222696,58.815023054707353,292.978614944033325 -158.562129158348938,58.841412451618069,292.949032317847013 -158.561763754382497,58.860368748268684,292.93353708460927 -158.568350278561297,58.875420750939654,292.930641411803663 -158.601279015242369,58.900820557986144,292.955568061210215 -158.622318607766374,58.910638171933648,292.976544631645083 -158.720065419078423,58.87205138740994,293.141071503981948 -158.732210088291708,58.870807174826858,293.158686377108097 -158.747934000431684,58.873686775141195,293.177902109920979 -158.770375817399326,58.863852591427822,293.216475900262594 -158.792255607898596,58.813846536441531,293.286392246372998 -158.793409145037174,58.808013675431049,293.292627336457372 -158.793000872834369,58.804301787127734,293.295028821565211 -158.784987006444283,58.790747327749962,293.294846680015326 -158.777247210152467,58.778183835457909,293.294232944026589 -158.772420968676556,58.773732057756909,293.29115260951221 -158.773866260505713,58.764700280577173,293.300315272063017 -158.787504688660817,58.747330489011425,293.332835702225566 -158.80357625683456,58.732433579501823,293.366734648123384 -158.814732664645192,58.727436492941521,293.386024966835976 -158.829721121523761,58.724086282545144,293.409271528013051 -158.850840578237325,58.72232690321605,293.439673643559217 -158.863820290349651,58.695171401652253,293.479090750217438 -158.83046077380456,58.626026024065517,293.487954345531762 -158.77173512799942,58.548247413357124,293.468105477280915 -158.72377430002814,58.497570823530005,293.441364790312946 -158.706652505246126,58.482359603017038,293.429495698772371 -158.797909243439534,58.407632886821219,293.613908526487648 -158.833189760277179,58.396695486104527,293.671305764466524 -158.883517317252597,58.390269652429026,293.746061236597598 -158.898656980214213,58.389664363699644,293.76751459389925 -158.946743549330591,58.396483196300593,293.82881695125252 -159.048694078351019,58.417061546858321,293.953801162540913 -159.065935158752893,58.422734036164826,293.973182132467628 -159.083086374941303,58.44385008544598,293.980244852602482 -159.189943491692077,58.555197752529374,294.039151635020971 -159.244890112753865,58.61865284260633,294.063773127272725 -159.360231430939308,58.73410025440743,294.128240752965212 -159.393271856716751,58.761940804353976,294.150638881139457 -159.453440307373313,58.797312596045515,294.203727904707193 -159.504378282316054,58.82387882260695,294.251252607442439 -159.534957367892787,58.833182944276587,294.285205265507102 -159.558965171392202,58.836987352684389,294.314739889465272 -159.582896936227229,58.840263777468884,294.344595605507493 -159.646157560360336,58.844634480668546,294.427029900252819 -159.604511462880708,58.884241871110021,294.337388691492379 -159.592424005064004,58.889930510069256,294.316218533553183 -159.589580550960619,58.899885237655333,294.304053004831076 -159.597403015101008,58.911972901316346,294.304589111357927 -159.605225266144174,58.920505321794245,294.308081162162125 -159.618736117013356,58.931170751409304,294.3174984510988 -159.645045622768151,58.938280706476789,294.347238074056804 -159.6599777415787,58.938280404618148,294.367492430843413 -159.694107748673133,58.931169227900646,294.419752674177289 -159.714728143507017,58.929035687254903,294.4495106972754 -159.726105233967701,58.931879641099279,294.462546371854842 -159.735545906435902,58.930305992908686,294.476670815609396 -159.756361223438773,58.855293188927497,294.567928076721728 -159.811383736942474,58.861109329318658,294.637775203213096 -159.79552735629261,58.823539747808994,294.647770684212446 -159.808907665756067,58.805164596739118,294.681359906680882 -159.910984968235624,58.779471275684422,294.84173468220979 -159.998268579177534,58.847865118580707,294.902563743293285 -159.987955512351164,58.870028096675817,294.869790484197438 -160.056650414636579,58.886562962814914,294.948807439766824 -160.09571014482421,58.860359754495263,295.024033320136368 -160.153128181392105,58.865622733622665,295.097307842224836 -160.157083943358629,58.916432999741829,295.059172105044127 -160.235389246959414,58.900684793934126,295.178544694557786 -160.288949787492356,58.944562952918147,295.213066852651536 -160.325525018965266,58.953507432711447,295.254671010188758 -160.259199499431958,58.994034982114563,295.130162520334125 -160.320391728617551,59.070028040444832,295.146501719020307 -160.479183259412139,59.02559629900329,295.39877638220787 -160.644382056654933,58.964036927383184,295.674898189492524 -160.755658003873805,58.909978135723584,295.872144944965839 -160.837940429762796,58.823041986317492,296.059440589509904 -160.857780834268226,58.882068550301334,296.034172927029431 -161.002322348092378,58.85619892694735,296.251524640247226 -161.037100031083099,58.84343772734411,296.309627958573401 -161.096826154188989,58.821522037617413,296.40944096352905 -161.185952960026498,58.788818171295695,296.558453477919102 -161.340548277828816,58.742452580292863,296.807850315235555 -161.347961397811673,58.734990770506137,296.824495975859463 -161.375273965429784,58.707498816182941,296.885829360224307 -161.37487418047121,58.665713826323213,296.922565322369337 -161.523901155669535,58.63268035066482,297.152957106940448 -161.553088987459972,58.610700118410875,297.211972266435623 -161.628999200744119,58.602119606072044,297.321994744241238 -161.68545274564309,58.564209120733558,297.432119534350932 -161.754542117160554,58.551379297107246,297.536809921264648 -161.768842730405453,58.598759998689786,297.513401399366558 -161.873762663428607,58.637010602467853,297.619888900779188 -162.068810283748292,58.62032937075471,297.897025616839528 -162.174263462333442,58.647967786471739,298.013062965124846 -161.997192050695503,58.688356322187502,297.738685872405767 -161.941709887525491,58.655143806342942,297.694631434977055 -161.879761324895696,58.665669479066125,297.601882317103446 -161.8616068667543,58.708168159983686,297.538797922432423 -161.772059851748878,58.774467476565498,297.358299943618476 -161.759185512146786,58.826006638472165,297.293986532837152 -161.78655452298571,58.968946384638024,297.199139107018709 -161.83074997602148,59.062223678016871,297.171443407423794 -161.984546541896464,59.150513136358242,297.29263454861939 -162.051172727989723,59.253688876902807,297.283070849254727 -162.021574231651016,59.29178960845428,297.207893162965775 -161.945584995174471,59.263341894812207,297.134729254059494 -161.959126701750108,59.361281278139607,297.05964876525104 -161.906654854787803,59.386851538135183,296.966348786838353 -161.840542796821438,59.423347066840918,296.84478445071727 -161.830731948687884,59.427699713307376,296.827760537154973 -161.792985626501036,59.467707920621471,296.740171507000923 -161.740923705525177,59.466522622217767,296.672949912026525 -161.705144486005651,59.490417951095715,296.603308915160596 -161.760598822375016,59.556661078457424,296.61298531293869 -161.857374828893711,59.645718476505927,296.654125883243978 -161.913792781148089,59.741242433766729,296.635317469015718 -162.019693284748541,59.828922607153899,296.687379196286201 -162.094997781306517,59.880597431662316,296.73414842132479 -162.103349293697676,59.944166834354704,296.682259269990027 -162.111201736479671,59.953352666892734,296.683314003050327 -162.123714356196928,59.96473211621317,296.688197032548487 -162.145691033539862,59.966996616601079,296.714289519935846 -162.174401702598033,59.983652602952645,296.734771800227463 -162.193259694685707,60.001518755099816,296.741307372227311 -162.209869894224113,60.021321901843699,296.742975955829024 -162.231018165260139,60.055799573396015,296.735782061703503 -162.237290705022502,60.076818897034357,296.722836744040251 -162.236692842910543,60.090830542292636,296.708055812865496 -162.234076220497798,60.094782491325248,296.700744022615254 -162.222704946938109,60.100563567906143,296.680369255132973 -162.204793595412553,60.115935525142852,296.642011946998537 -162.188803634016665,60.149089981115289,296.588321637362242 -162.191097137921417,60.155993755407884,296.584344362840056 -162.219023137157478,60.173673938084391,296.602377628907561 -162.241923893827334,60.179583214608193,296.625754712149501 -162.255220697797085,60.17810551250404,296.644256842322648 -162.260760629233573,60.172195673235706,296.657289654947817 -162.259973099176847,60.162836197105619,296.665690707042813 -162.260982639230605,60.157422317828562,296.67242384981364 -162.289740094580736,60.12165667453619,296.745186718180776 -162.296500488671342,60.11606368527513,296.759466641582549 -162.303739964982526,60.111629656217453,296.773197747766972 -162.319571232861847,60.107073458465088,296.798065298236907 -162.324130157891318,60.107453357300194,296.803526844829321 -162.362836427903233,60.146841554196968,296.813453835435212 -162.373784266671322,60.168499824524936,296.80560521222651 -162.374523340317012,60.172932102218851,296.802074077539146 -162.373686109633951,60.178096230119884,296.795787214301527 -162.404923479561887,60.185904771668767,296.827815005555749 -162.428997065046985,60.184810033907112,296.859679698944092 -162.448378782565271,60.175927084689036,296.89343841560185 -162.450555250962992,60.169959196604715,296.902264459058642 -162.465675493173251,60.152499349422534,296.939270626753569 -162.478862584137858,60.145015281078877,296.963707436807454 -162.486881788732717,60.13744331850296,296.981628205627203 -162.494992302111541,60.121283578772463,297.008360235951841 -162.496972363196164,60.11015483037383,297.02215404715389 -162.483818815749345,60.087024699071989,297.028694171458483 -162.479399731780461,60.047171833546869,297.063234499655664 -162.506283245312147,59.998712573046532,297.146524438634515 -162.532752905517697,59.989592285582354,297.189688000828028 -162.588150594853687,59.976711521012859,297.273787742480636 -162.625200302438287,59.971289925811966,297.326817056164145 -162.646861888634675,59.972434463814885,297.353462151251733 -162.68534750485918,59.97891152560122,297.396286651492119 -162.741220952909543,59.975799495112696,297.47108784597367 -162.742687322418504,59.968275665151594,297.480597206391394 -162.751181638096625,59.962142658529224,297.497708349488676 -162.762634002114112,59.957491553841628,297.517112116329372 -162.831208904846704,59.938619690219504,297.624212906695902 -162.909880839536441,59.923158537209687,297.740817920304835 -162.977594890117928,59.905918651208054,297.845199999399483 -163.035742767521299,59.883610092182792,297.942514692433178 -163.112206199541276,59.861107177303928,298.063549960032105 -163.175241413100679,59.84453137215597,298.161335671320558 -163.351629267702236,59.819360557120888,298.413241401314735 -163.3902710365725,59.815349901113123,298.466869836673141 -163.561743819739291,59.800857905310586,298.701341834850609 -163.665199900764151,59.795175018445107,298.839543285779655 -163.707386817835953,59.794269211550059,298.89440403226763 -163.774819259699342,59.795086861290699,298.97969051450491 -163.933385069470347,59.803312518967772,299.173386411741376 -164.08242232506862,59.827489936794478,299.337682223878801 -164.117702136328973,59.836143010250233,299.373385448008776 -164.135978382442687,59.845066410474089,299.387153391726315 -164.162905204283504,59.864132367455618,299.401109469123185 -164.20440018840327,59.915570168132007,299.398956794291735 -164.211065454267157,59.933911544648019,299.387814084067941 -164.212434076850627,59.942324292030086,299.380556017160416 -164.210897596155945,59.948496156678921,299.372012201696634 -164.20113730891461,59.954559185853981,299.353174027986825 -164.181298318882369,59.961260396060652,299.320897939614952 -164.163617929353279,59.963526682785727,299.296095354482532 -164.128024844079647,59.964077367625379,299.250441970303655 -164.117675765425446,59.972617342568356,299.228225998580456 -164.134406765875013,59.990627532103126,299.230171708390117 -164.194197911209955,60.023944467243169,299.270094881765544 -164.305565503247578,60.053678486382587,299.378664983436465 -164.338707786343349,60.05497180102428,299.419047335162759 -164.388068267589773,60.076633255173441,299.457802726887167 -164.46379416407774,60.137264158407099,299.487184829078615 -164.501157818300925,60.169984558521783,299.498395395465195 -164.496463143799957,60.176835469490541,299.48502794932574 -164.496920054120977,60.184271263967986,299.477479131892323 -164.508280520571219,60.193741790739764,299.481366391293705 -164.520250632805187,60.198930418733596,299.490688057616353 -164.544302490451003,60.204715793883523,299.514477613382041 -164.560946214118445,60.206478420706816,299.533384641632438 -164.598673524802166,60.222309262691844,299.563226169906557 -164.622104894436433,60.234372484927391,299.57926819846034 -164.636966159839915,60.242413981485576,299.58899453561753 -164.648936678960553,60.25273647480843,299.592581879347563 -164.654601286785805,60.262178115189705,299.589250397868454 -164.655703668968243,60.267334957907238,299.584940752014518 -164.701495776257843,60.295729313436524,299.610713473521173 -164.729175695089538,60.290905897258426,299.650558920577168 -164.779837604940838,60.293262842135526,299.711087272502482 -164.852958534925676,60.303043152445468,299.791284747421741 -164.901899343146198,60.316213848045479,299.837509641423821 -164.965281555001951,60.339085007026185,299.890744596719742 -165.008180069406222,60.359235639276299,299.921434669755399 -165.060189855514523,60.385708928638913,299.956200504675508 -165.132009809799371,60.433126285202398,299.991660625673831 -165.135500133542877,60.43828608237915,299.990147048607469 -165.127400168437219,60.448609971758891,299.968470983207226 -165.123336433358276,60.450614999030037,299.961183400824666 -165.072303518782519,60.460312745283098,299.887160358019173 -165.051681096659706,60.460936132809913,299.860964702442288 -165.017767759248727,60.470834539597035,299.807879416272044 -165.000483928400485,60.4798796432163,299.776320170611143 -164.964056108933079,60.507811632637257,299.699828156270087 -164.959406796807826,60.527257220324039,299.672166705131531 -164.963462178315126,60.533264985388499,299.670398315414786 -164.968107290216466,60.536120820442591,299.672910708002746 -164.973899372859364,60.538977632993735,299.676835948601365 -164.989571201858297,60.541825252072918,299.692961004562676 -165.060057574903851,60.544048812991008,299.777388828806579 -165.193059400161957,60.497417417756346,299.994252745062113 -165.247050872992048,60.495713406254787,300.06275250390172 -165.365581661012897,60.506278815755742,300.196701353415847 -165.380165789359864,60.512576367325565,300.207452872768044 -165.4076788034792,60.534061272299461,300.216709403321147 -165.422957697984458,60.55010255799457,300.217105206102133 -165.422396851507784,60.551828524214159,300.214437642134726 -165.417802433205367,60.557570465159223,300.202211575582623 -165.38366391771396,60.577397618825543,300.137560601346195 -165.370288520625877,60.580568798184053,300.117503588087857 -165.349334019138155,60.580014222039303,300.092407182790339 -165.3155505479113,60.575724993315823,300.055815772153437 -165.292265105483409,60.575167463031619,300.027838947251439 -165.271331948435943,60.578900775964144,299.997846187092364 -165.181237874207454,60.623340393476376,299.836411202326417 -165.17307950388556,60.628504420405903,299.820497599430382 -165.149807897531019,60.65057330915716,299.766737884841859 -165.065777118735582,60.68805899592428,299.620830122381449 -165.055271505658681,60.689482165641557,299.606313011609018 -165.0459295341943,60.686882415490146,299.597806167788804 -165.030164821086203,60.685422762233955,299.580111501738429 -164.994296792236696,60.69825513817851,299.521466466598213 -164.973883347120051,60.710849217346393,299.482078364118934 -164.969224958236595,60.716853155590535,299.469530910253525 -164.96804455085865,60.723721003550317,299.460269165225327 -164.974473829625367,60.729144738916993,299.461986257694662 -165.013087068867321,60.744202596612247,299.492186489515007 -165.026539405629762,60.752541120001219,299.499160858802497 -165.034709760276343,60.759434784024258,299.501300820149481 -165.043479571132252,60.772072290245291,299.497602829709649 -165.045221492988873,60.783841956830237,299.486278299242258 -165.04052699075342,60.788421932688067,299.475294177420437 -165.035252937452555,60.786116094869413,299.471475756727159 -165.022947159529934,60.784951366217342,299.457743065431714 -164.980302656570956,60.789773081797911,299.400021186098456 -164.947555325595687,60.79979247137716,299.348486000671983 -164.926822597421278,60.808744652173708,299.312887334264815 -164.94195637263698,60.822875996545555,299.315288575366139 -165.012343862908352,60.814471825475195,299.411012743599713 -165.024070561992289,60.814497594351181,299.425327099859715 -165.032261249707233,60.825412156806337,299.422847730107605 -165.032825228843933,60.83746084065433,299.409734530374408 -165.006325015814042,60.874990413267476,299.334342789836228 -164.948609280361751,60.920470403485893,299.21174864564091 -164.942147756127184,60.924184437350036,299.199607177637517 -164.928646129371771,60.924473695929983,299.182804066687822 -164.920194604029831,60.927554784954594,299.168961759656668 -164.906557127028435,60.941623700356487,299.136202159337699 -164.92391003580866,60.945919250775368,299.15243802126497 -164.94271845413968,60.944778908963784,299.176677335053682 -165.009745779929773,60.921467175192262,299.285164727829397 -165.034687633903957,60.903395139375753,299.336346165277064 -165.019587954978476,60.890480761746247,299.332759112119675 -165.083549745499027,60.859633283006104,299.446248825639486 -165.135128575050828,60.849553524743499,299.52079170383513 -165.179413177343292,60.846556731157996,299.578278792090714 -165.180171123965295,60.858272419776085,299.565704172477126 -165.226122032091126,60.895855568172109,299.578314928337932 -165.219585450469253,60.913727234778854,299.549690326675773 -165.159756492901522,60.916769344151227,299.473346364684403 -165.157878891419017,60.928592379822732,299.45740634854883 -165.17511399756259,60.939733464545938,299.465502239763737 -165.197594200761387,60.97330417970084,299.453970699571073 -165.197613700756676,60.979319028457759,299.447023168206215 -165.192921086203569,60.982477041491897,299.437662488780916 -165.136590905772351,61.010654443421444,299.336601313203573 -165.118335786779511,61.015501681315122,299.308820854872465 -165.100080309747739,61.016063026440904,299.286001754924655 -165.099483182153875,61.014349081022416,299.287259839475155 -165.085937367269963,61.012338397809721,299.273131932131946 -165.022921859032181,61.010559682628056,299.198609630577266 -165.000829656800732,61.013233050882619,299.168668035417795 -164.964186473642002,61.023573514579638,299.112196463160217 -164.953763318076227,61.030427549010128,299.091626299545169 -164.953234761173377,61.047486134339898,299.071320202201605 -164.930490401126235,61.083798679748163,299.001808862201869 -164.904910520016699,61.077309345421419,298.978234682232141 -164.873116484917745,61.078971931361224,298.937701524235308 -164.870676964505378,61.095801561886155,298.91535213124007 -164.886109366530292,61.10533102109617,298.923099466599524 -164.893954358379318,61.10765280875188,298.92994119040668 -164.943920279600178,61.110268758197357,298.987533084116876 -164.98438412721876,61.109095989349825,299.037952651269734 -164.993938671233764,61.106636861971658,299.052381817251444 -165.000301269589244,61.103834806054849,299.063338863663375 -165.00121014933606,61.078897407361062,299.093295521102846 -164.996262005152573,61.075646585676942,299.091050641611218 -164.993889726932196,61.071597733092261,299.092852249741554 -164.998356422742603,61.057440997294457,299.114633665420115 -165.013931510020456,61.051389841127396,299.140536023303866 -165.03221120381022,61.053415430615068,299.160386209376156 -165.060501947258672,61.059150730636041,299.18808317463845 -165.12244091445956,61.078043041005209,299.241284712217748 -165.170297589342283,61.112903232818844,299.258697198703885 -165.177983012092625,61.120326897339488,299.259346606209874 -165.179772349409149,61.124894748813283,299.256187345832586 -165.169735285325316,61.132887748187628,299.234733421355486 -165.168520222328027,61.135968129633341,299.229673728346825 -165.171524200709371,61.144313429900187,299.223575321957469 -165.175658261258718,61.146319298847139,299.226232572458684 -165.206420741903742,61.149740608643079,299.259411567822099 -165.2923641254541,61.181111141633728,299.326435657218099 -165.310639652665799,61.181219779516773,299.348344328813255 -165.328214133558163,61.168702743569746,299.384221993386745 -165.347046799424447,61.12308850433854,299.46043476741761 -165.352810040829496,61.103942866983459,299.489824777469039 -165.35276844350804,61.096805045389203,299.498132769949734 -165.349736471130797,61.084245417648361,299.509168543852866 -165.344975190158749,61.079392632058813,299.509089197032154 -165.339650139042163,61.077107793580133,299.505322189070284 -165.340789751106485,61.07283087779912,299.5117012495175 -165.346095371529685,61.06996284510906,299.521471556276083 -165.373196345027139,61.066219406347606,299.558625975623727 -165.405658509668115,61.066457763205747,299.597597114741802 -165.501375992600344,61.07854458389825,299.699049863032997 -165.552262398800138,61.087556361470469,299.749855435453355 -165.580776662790299,61.099754498484465,299.769862394779921 -165.593332233851584,61.110561983162903,299.772240451537073 -165.634654337065911,61.220097455753368,299.692234762012959 -165.636707704086717,61.236945999412058,299.674682978540659 -165.630210615607524,61.257513619655704,299.642440509982407 -165.623251686503778,61.267974498531601,299.621657460927963 -165.625980447184958,61.27781920270543,299.613215412013233 -165.638454708925195,61.284843785165883,299.619797370396554 -165.665555756403222,61.293957029425982,299.641390434466302 -165.790103729109461,61.309447206836076,299.771845599636436 -165.812033865298588,61.306210856709654,299.8019282175228 -165.819094381998411,61.302746803571665,299.814516396261752 -165.834025264539093,61.306102428606266,299.82833212800324 -165.861653549635861,61.318247589009061,299.846750738099217 -165.882260365927664,61.334425788190828,299.851901272311807 -165.918109871155053,61.387065796536632,299.831223821267486 -165.923860026767045,61.402459307706778,299.819490199908614 -165.924616565304035,61.409017132746619,299.812471852637827 -165.921279461594281,61.418465967514997,299.797090221196413 -165.847196303920981,61.439980895133978,299.683012536726892 -165.803198267806465,61.449037537720564,299.619761507958174 -165.793758539423493,61.449232718174486,299.608297046273947 -165.769900791477937,61.456331013801346,299.571366526186466 -165.751179968778075,61.47582690795651,299.525625149719417 -165.749030130992764,61.488684638410163,299.507582474499941 -165.75699572373648,61.498084254273053,299.505721535533667 -165.810306903217281,61.528549470442691,299.532240154221654 -165.915175386016017,61.555575759684778,299.623791872523725 -165.966712959273622,61.555293755823932,299.685145384632051 -165.984556071013884,61.550623518866857,299.711943472735584 -165.988624564247402,61.546024550272705,299.722353849560022 -166.002210597784313,61.539094451597116,299.746866632252932 -166.03742225100072,61.534594870626051,299.794019649736583 -166.078196919239502,61.532045133861502,299.845373310148716 -166.091351246551824,61.522258153848213,299.872870740480721 -166.082654239338581,61.512837415538549,299.874061628244817 -166.060912637251448,61.499793510235371,299.864203102886677 -166.078067518026188,61.492354098959943,299.893579482100904 -166.110937577974823,61.491848468036416,299.933125770650804 -166.126871185253293,61.504017860769373,299.937151066027582 -166.161016416206849,61.540908298369004,299.932474385946989 -166.167904007762132,61.549988943816857,299.929504103958607 -166.181300721076951,61.574177096916742,299.915705541148782 -166.184524195328635,61.580711876030769,299.911501259543002 -166.185362787295389,61.587850687306677,299.903739373199642 -166.161660830313537,61.699804702426277,299.738321786746383 -166.155864616644294,61.714298511199978,299.713672373443842 -166.146444573084835,61.723719593699677,299.691007015295327 -166.136972848918134,61.723286384262245,299.680411020293832 -166.135707709503095,61.721285456832526,299.681386466138065 -166.137088553242535,61.708435736726237,299.698816440068185 -166.141366819320751,61.666469554715718,299.755424447357655 -166.142813795566667,61.638931477265231,299.790930148214102 -166.142088473832132,61.631684630761434,299.798964804969728 -166.134841603217211,61.63096010347185,299.791312570683658 -166.056665609893997,61.637572010836259,299.691049137152731 -166.034517475825965,61.640570373048817,299.661261027678847 -166.017818337154097,61.645237588489749,299.63585919700563 -165.970580371560771,61.653804309696483,299.56967244669795 -165.906471920751443,61.663005347696156,299.482805288396776 -165.824831752168393,61.669984784559553,299.377933286130428 -165.8126252948814,61.67240396664176,299.360577549785376 -165.812693715280545,61.688734575114687,299.340797368437052 -165.859483560174652,61.69010762264115,299.394335482269526 -165.937659781740535,61.705670715298396,299.46750483289361 -165.996542634811561,61.722475158252813,299.516273443587124 -166.009384873537272,61.729248744663842,299.523081711493433 -166.094776720429451,61.800099383817972,299.536281380802393 -166.096741066148411,61.804662237038265,299.53296019975096 -166.097008809500096,61.813225028775875,299.522716101258993 -166.088031288459035,61.815864142439423,299.508939214982092 -165.957967265084847,61.831776320648849,299.336842538788915 -165.873686014788206,61.825383129170142,299.245767743326724 -165.76112004342491,61.82481635830792,299.114197770133615 -165.749797553017544,61.827092527568801,299.098107477650046 -165.739612287578268,61.832273605904803,299.079809483140707 -165.739137854816136,61.838560466914309,299.071578326635063 -165.733148272936916,61.841447516832545,299.061014257371426 -165.698748650918276,61.846428077348357,299.014502180740237 -165.642928259025211,61.847415154704152,298.94766116887331 -165.611140817953924,61.855266596895142,298.900716728530824 -165.602757379476742,61.859037673576189,298.886268323287368 -165.615052128189348,61.871281143043518,298.885826600715518 -165.670655125293877,61.899647379823435,298.916562636382878 -165.706199043371356,61.920943179368173,298.932240054942667 -165.728536707322519,61.946554139223323,298.927066355012357 -165.744201432159088,61.970761264566761,298.915726874023676 -165.759529127446086,62.005705147416684,298.890740476548672 -165.759109826142719,62.013399976558148,298.880791313014925 -165.751368000620403,62.046512359754438,298.831019706092775 -165.74625049760175,62.061647109702029,298.806418039835989 -165.736847065499234,62.076239957273643,298.777480474673212 -165.708888665487535,62.107731781320098,298.706098672002554 -165.674774445504255,62.139256728577053,298.627520922571421 -165.623487814338858,62.171982990407372,298.527501365169883 -165.503074650837618,62.254818480504042,298.285488582216203 -165.376476702130645,62.337564114411812,298.036705166101456 -165.340488605990913,62.358399358779408,297.969343723729253 -165.314736135217601,62.37818042467881,297.915170595981181 -165.297733867361785,62.402721210532583,297.865304433740675 -165.272044792445115,62.426720182700073,297.806046467274427 -165.202584621251589,62.469005619025978,297.673671589232981 -165.098943383555536,62.52182150817152,297.488940599374473 -165.048836435289758,62.539790109128404,297.408967344090343 -164.870858174442304,62.570514985497283,297.165526315569878 -164.77303580577194,62.591456481232925,297.02680223993957 -164.780049218311575,62.608456966241377,297.014220698736608 -164.798860933449305,62.610859536605609,297.033050218597054 -164.845649004992396,62.60387647889597,297.0956657147035 -164.896541158766979,62.599042841920109,297.160397135652602 -164.916864873450635,62.601901372355066,297.180388426408172 -164.931614079410963,62.608362934910303,297.189521880820394 -164.938793303900496,62.61282669295521,297.192349134944379 -164.943265650595748,62.617801493909866,297.191421498544514 -164.944870222005164,62.624326318129171,297.185281896032393 -164.934949959013721,62.650440942247876,297.141835781745613 -164.915716092571074,62.656866185988108,297.11177898850292 -164.868702272696794,62.645188383373224,297.071830131113529 -164.8599145387075,62.634884785693956,297.074281149543822 -164.840142966778387,62.630818244501846,297.056413717567921 -164.819916741026049,62.636069560483719,297.026637564413249 -164.860000195674587,62.768198869444475,296.911068452522159 -164.866458380447682,62.771988657627574,296.913837839849293 -164.873166341183406,62.7735034902717,296.919686381705105 -164.880119123203031,62.783688129662259,296.915158672258258 -164.880593396220149,62.797141828134279,296.899160805158317 -164.878461266017439,62.805621686976345,296.886282542720437 -164.853663134007377,62.838877464320575,296.816911752335727 -164.839144748172401,62.851535482097319,296.784686351194978 -164.798056998808022,62.85785411094497,296.729801116511226 -164.771083380498226,62.87069989412754,296.68308409396559 -164.754814933114005,62.89253714249093,296.637601705268025 -164.744969577718791,62.919512363387817,296.59316189866513 -164.748352183758129,62.944232312225239,296.566619357094169 -164.768607599934484,62.954273690352984,296.577418087981641 -164.768955912228677,62.957594612323774,296.573724246583879 -164.71968593327037,63.005630577714328,296.458236083388329 -164.688060354400989,63.021557875027924,296.402504770085216 -164.586588683459695,63.057825148485307,296.242052550427616 -164.58305592296648,63.069494972683671,296.223673563450575 -164.614470799513157,63.077040180224849,296.250219883397222 -164.644039497636925,63.072046690323035,296.29008333850652 -164.646525653992853,63.074341591705462,296.290089772082865 -164.647740041067038,63.078634476449288,296.286183257587254 -164.643179341570402,63.090623314890905,296.266206996515393 -164.636799160861869,63.097186304792615,296.250846683979034 -164.49598589633095,63.177037464873919,295.992185757495463 -164.426322206187734,63.211345154315524,295.870758649893105 -164.366468267407242,63.225649065703294,295.785130040720105 -164.212357989160637,63.250843660017544,295.578975562006235 -164.142981665202797,63.258708902298721,295.490420319139957 -164.069878947738914,63.261650323379669,295.403605214320123 -164.039453667046274,63.260578962712138,295.370252594351768 -163.973155174402763,63.247667575573026,295.310363279655576 -163.912294244770919,63.231892138255972,295.260025819763541 -163.887947883400187,63.22168684444258,295.244561104103923 -163.791772992173492,63.216862898559739,295.140452980995178 -163.758174893024943,63.21684258199538,295.102048229426146 -163.735542080901467,63.212639129416999,295.081207734532654 -163.728697001295558,63.210002323333669,295.076543083414435 -163.726963645732951,63.205974442184484,295.0793990874663 -163.706870340664665,63.187490234792932,295.078583171591163 -163.653182735262504,63.156948962328933,295.053624427877367 -163.619160017362248,63.140598995265165,295.034115945920348 -163.593011199434642,63.145477425621308,294.998258153907955 -163.532827738239746,63.134787873519969,294.941848509944975 -163.523694776415596,63.122668312293555,294.945775157772005 -163.510105517772701,63.113074122616219,294.941554980352521 -163.477681592397346,63.098442755240164,294.921614904887974 -163.436855705867004,63.088686790742557,294.886155149899423 -163.420570599039706,63.083265235900164,294.873807900585234 -163.367865210512093,63.055197897555864,294.846200839616358 -163.319088710575812,63.037157270009551,294.811143017373979 -163.133744723489428,63.048784807453366,294.583134165965021 -163.056890618949069,63.057733190153073,294.483708047308028 -163.043395350047291,63.061550386170609,294.463623848743737 -163.00120114855676,63.08868568257553,294.383090123534203 -162.922631273331149,63.119553647964828,294.256175913847983 -162.904548287807103,63.12499790512841,294.228914201259613 -162.847468633494657,63.153592481594877,294.129599343053997 -162.84076031228139,63.15862551491859,294.115984110161662 -162.837836929393887,63.164022463213961,294.106320703402162 -162.843100096818489,63.186979881134533,294.085653505288064 -162.842080668456646,63.192404790107844,294.078152398578823 -162.83726830357142,63.19747678416514,294.066683622077107 -162.824037404287537,63.20499690044327,294.042644803412259 -162.772453900895385,63.21647072219114,293.969739500433207 -162.761659193261664,63.216588941225382,293.957141134887934 -162.750539117837519,63.212974243744839,293.948507718741894 -162.726998833917037,63.214017705345483,293.920111409388483 -162.691003371519855,63.220011320995766,293.87157794367522 -162.665535969598892,63.229309652950263,293.831373382359743 -162.590682355573477,63.275130921830723,293.691828488372266 -162.57462495551772,63.284960381891707,293.661911030299962 -162.440001839357848,63.377241277655891,293.399908502586186 -162.435112453886461,63.382011281935561,293.388760460540652 -162.42903974200388,63.39305618387651,293.368989913724363 -162.431689432394165,63.400459979770432,293.3634685408324 -162.424476435103912,63.408418967841314,293.345957267098129 -162.387575139910126,63.435202189169615,293.272525798529387 -162.355226856355671,63.453474489231716,293.214208167977631 -162.304825153109931,63.472828141301555,293.133926524780691 -162.274047422908666,63.487117490766273,293.082067999057472 -162.271200815545967,63.490205487793304,293.075232797302306 -162.270792269199717,63.494490410552523,293.069815119728446 -162.291493978786633,63.525817357456127,293.057357407175004 -162.30443377866618,63.536754872152954,293.0595329022035 -162.299694187376389,63.539512915119452,293.050906948745251 -162.255375503141181,63.541158798073546,292.998198716901243 -162.193109876712782,63.529293321431915,292.940476321615279 -162.154538630860259,63.517360356758289,292.909943384118378 -162.126213824900447,63.512216045126422,292.883324391208589 -162.111562109704039,63.511336365744455,292.86749985255301 -162.076122209526574,63.513178062304597,292.824653815478086 -162.044651514954069,63.489061194528951,292.816116023808718 -162.048671940374902,63.474845395280127,292.837026820518076 -162.053094559952143,63.472261355424848,292.845077940262854 -162.053505315584061,63.470000392132526,292.848140314221382 -162.042405393968579,63.458341855025701,292.84870338998735 -162.028512572087863,63.446951370549591,292.845724032260478 -161.933676710366171,63.444257387474138,292.739444093778729 -161.842862272348981,63.446729219245597,292.631830428726971 -161.768799819882588,63.453220624853216,292.538949595764279 -161.70860040429551,63.463479668844464,292.457806399092078 -161.679497236550304,63.464422254017819,292.423121147789061 -161.594604258780606,63.453665231071874,292.33712374791503 -161.586743794180308,63.447278521726581,292.335221488960087 -161.556049706064812,63.448639132145551,292.298176718875766 -161.453439103480036,63.456602106109401,292.170467264018953 -161.313162074016134,63.470738743728866,291.992189870215952 -161.1941489871069,63.48950085092136,291.833386516198516 -161.139746844999195,63.5039546991771,291.754284903407097 -161.137219138596549,63.506164708201425,291.748903205618262 -161.122956192611497,63.531973496121829,291.703737216070294 -161.105715219009596,63.547229555241806,291.66684256400913 -161.039048206946035,63.578996322681149,291.554460716433823 -160.927885841095758,63.644245370141945,291.353690668940544 -160.90736374711787,63.657455542180756,291.315371920354664 -160.812109893201296,63.730764115061042,291.124415150843561 -160.786327831602279,63.752325239284104,291.070878797210753 -160.768586479408555,63.772984213375253,291.027619851753116 -160.765002700569767,63.792884906015139,291.001502363011241 -160.769324077539352,63.834620015408014,290.960301520302892 -160.790660213603502,63.868625918116344,290.947114606387913 -160.813837468296839,63.904074756574339,290.934326848946512 -160.855022836712493,63.953835947867368,290.926066305488348 -160.880731679119975,63.976690975884189,290.929938672110438 -160.895501254351842,63.985368501955882,290.937107883393764 -160.936792177720434,64.049152433664844,290.912755256518722 -160.954697144979264,64.089489301272039,290.887827922590077 -160.958193326677019,64.137451331851921,290.837838363833725 -160.959492218173523,64.191152306031782,290.778788829222322 -160.956663957747736,64.197195253400309,290.768768763169646 -160.949925833905183,64.203578276695112,290.753938145935535 -160.97910959882168,64.235180078806565,290.75127225369215 -161.232021201492927,64.370158285767729,290.882632632739842 -161.266601385596005,64.397576059022555,290.889991994947195 -161.316749399495592,64.400282957152285,290.943101411685348 -161.413463285951934,64.421513541178626,291.026943351142108 -161.466105695629949,64.419479474621241,291.088191278278828 -161.473261368976949,64.418219347632217,291.09765359852463 -161.496003551090865,64.407256071214547,291.135784618556499 -161.507981946512274,64.422478542313328,291.131550955586135 -161.482179736520806,64.485804931357464,291.029315600171685 -161.472135273843008,64.505978776585181,290.994708819314837 -161.391715325725301,64.532187990574997,290.874673925340176 -161.376666970246845,64.534433266014119,290.855300003662705 -161.365995327776432,64.526318636433061,290.852789987809956 -161.354239006153591,64.520787983084318,290.846072603948414 -161.324436926638612,64.513271744603344,290.821501990780234 -161.237186651405352,64.499773821332781,290.739617917686701 -161.201124156893115,64.496035646794851,290.703607994131744 -161.158614030227966,64.494097575514672,290.658298308961093 -161.081128950274206,64.493506215991744,290.572285460308194 -161.027284964879641,64.499132247675888,290.505588235333562 -161.018195469701624,64.501537395666205,290.49266732018441 -161.016329034293847,64.506934664267703,290.484416791237891 -161.020242085315516,64.516536726769189,290.477831086143851 -161.040636618177302,64.521658211793707,290.49479219224304 -161.049049161832784,64.524360089793149,290.501110672019422 -161.056162213394288,64.527916284213262,290.504996196366847 -161.058652081553817,64.531828223486144,290.50330388173461 -161.05545196109108,64.53680717686953,290.494029802270234 -161.052251665419959,64.540363581581417,290.486383698880672 -160.995999483453488,64.540708158410723,290.423112830147147 -160.973661348919023,64.543297582494702,290.395181185565889 -160.943600812675356,64.549414106176116,290.354592652991414 -160.805166232776912,64.609767947593596,290.131181754171848 -160.796475481144654,64.618732971523201,290.11128681525588 -160.79473395398864,64.62247094181771,290.105093856342137 -160.786696770188456,64.679996091634393,290.030699407681823 -160.78652899485914,64.716574449611258,289.988854406401515 -160.872707506104291,64.783208458180511,290.008470945991576 -160.939113281613658,64.821779380760077,290.037800526246428 -160.989556331842977,64.833392112757707,290.080255860462785 -161.08285906170164,64.868954523287897,290.142295029014349 -161.105896760644214,64.880065843762623,290.154853403568268 -161.136205024152957,64.897622899054312,290.167919978499413 -161.152799202473147,64.911388309968487,290.170225747860968 -161.152510745456397,64.915961236737928,290.1645976183936 -161.148870306126781,64.919937244620968,290.15597150940448 -161.179154292303934,64.92656349081075,290.18160757701844 -161.195264192598813,64.920768251419389,290.206077566370368 -161.198345738771906,64.917580241710255,290.213177837431431 -161.204035141182914,64.905198336628516,290.23384409211576 -161.204105304854835,64.898061459145438,290.242221436463296 -161.201726869546945,64.893805583283978,290.244549951516092 -161.216895179623918,64.882726456203116,290.274144733324647 -161.267418369902714,64.861371763554615,290.354677093215287 -161.296182601850518,64.852644309972646,290.396551988087595 -161.330977970896356,64.829236986741378,290.462203077971935 -161.360993411991984,64.805322774426699,290.523206129670143 -161.369932771847886,64.793177799771854,290.547237650491297 -161.367561483112382,64.781500055152193,290.558232836425304 -161.370606034499758,64.778308047306581,290.56531694997102 -161.380107107612503,64.772436950868055,290.582658607512712 -161.416612961644518,64.762123364974315,290.635027742944658 -161.432979106689828,64.758427086109094,290.657427689060569 -161.521327123175695,64.752648331508496,290.761788670904934 -161.598621382746728,64.763874509740475,290.83394889254123 -161.63340225034338,64.77068565920689,290.864307447336614 -161.64863544311487,64.775847248277003,290.875029907561839 -161.670377313463433,64.788375570773766,290.884236661717296 -161.881464582125687,64.708867555878896,291.210819505155087 -161.905529299072811,64.703242152395774,291.24402323924005 -161.942377777882967,64.698509465694869,291.290270877070725 -162.09962165256843,64.690370323397573,291.473257389850914 -162.141923944338913,64.685320530097158,291.525876964442432 -162.171606505820506,64.679676011361778,291.565309222787619 -162.191235080755206,64.671780743116415,291.596363486722112 -162.219706477188595,64.655598439396016,291.647077260538936 -162.222803027458923,64.643561591172514,291.664883465506136 -162.23755881589301,64.618721730735601,291.710851386189461 -162.273104659722122,64.60809518127877,291.76277423184365 -162.293649744694648,64.604880811052823,291.789286946877837 -162.34538385693736,64.591623972723781,291.862241689115763 -162.543059631691079,64.53031197315822,292.15405801218003 -162.557937042998418,64.51972185719184,292.183239882811904 -162.617274892344454,64.470082533309181,292.308618542738259 -162.618506454953376,64.466457574280341,292.314349711872637 -162.605231676145337,64.456250037363134,292.311968342401087 -162.606072740083931,64.448047170685442,292.322777925990522 -162.635286966055105,64.385115725249463,292.430885259062052 -162.648199959256971,64.379164567553673,292.452364277094603 -162.67072286205422,64.374737182469659,292.482668520882726 -162.722257770862711,64.359351399488432,292.558353805914521 -162.771459524543985,64.332895871969825,292.64484098367393 -162.793201019411413,64.324561576990916,292.679024558514357 -162.7986701502671,64.327095416544694,292.682033434510231 -162.80841980070818,64.335402059983195,292.682814405299723 -162.813040506981565,64.352025655045949,292.667844479903579 -162.810242905865294,64.36402149009858,292.650238399393857 -162.803389201325842,64.374073445475659,292.630488990806043 -162.805307429912489,64.39470502338547,292.607650210149586 -162.809654449790941,64.404985743077887,292.600014183670282 -162.839585083115765,64.436078548663232,292.595415730960667 -162.861604724477587,64.474239389642733,292.573381206020713 -162.860613527263297,64.49915495258972,292.541993757709861 -162.943830013351203,64.541789447711508,292.581626504659653 -162.972303730678277,64.546241776580118,292.607483934611082 -163.033708539677662,64.541723587960519,292.680480018258095 -163.045668953169013,64.539416382661912,292.696444973349571 -163.035106631588178,64.524978865698216,292.702521074563265 -163.031935190882677,64.511279182585383,292.715802167542279 -163.030202458207469,64.47731684270795,292.755431836470962 -163.09452423344095,64.437107254608662,292.875464875251055 -163.11049363882762,64.40856345316233,292.927991014905274 -163.122483715495321,64.403179305335314,292.947804215364158 -163.153821131868369,64.396619779875564,292.990403492935002 -163.178367687721163,64.398704234334048,293.014924894087017 -163.232239593187927,64.429387553084595,293.036636594682932 -163.252127943486926,64.455590657636407,293.026302145794034 -163.256064305871433,64.468868331082717,293.014287730678916 -163.353964630255803,64.505223640331039,293.076929942704737 -163.415939034043902,64.524349010000947,293.121183520182967 -163.454521053416244,64.534182033640334,293.151233510114253 -163.600872138805386,64.562714493865528,293.27572161052376 -163.654980059593044,64.566656307471902,293.329863701015711 -163.832771903797294,64.574318509943808,293.514091107994318 -163.878805376338448,64.572287601439243,293.566778771579266 -163.899209859807769,64.563835337849412,293.599647373892367 -163.977378189781888,64.550720974825495,293.701303741894662 -163.997557658384892,64.551092553934254,293.722800916060805 -164.047864051992661,64.558516385143975,293.768145921640098 -164.07502151346273,64.560628789323999,293.795002903789282 -164.150081736532002,64.563899190597695,293.872431172057986 -164.26308346881973,64.563564882764595,293.995554697699845 -164.310290813420238,64.560831967308445,294.050263224169612 -164.424883728357031,64.544597924929505,294.195306195877492 -164.494336027473224,64.529164792696534,294.290391401387751 -164.551303944775213,64.516077873227005,294.368954085744917 -164.810738066482031,64.448767845504406,294.736940130591393 -164.8386687632715,64.444252362211515,294.773055910132825 -164.877409231922485,64.440529644531338,294.819861955009401 -165.004944724790391,64.433249190858518,294.967450232245028 -165.019502351471942,64.433723886436994,294.98259284067899 -165.217163401485834,64.469053213524319,295.15011946670711 -165.416421589457627,64.497261649622672,295.327738264575601 -165.55354907308481,64.511554609245778,295.456232209689915 -165.754065717150013,64.535752107844601,295.639075227081776 -165.822566067843212,64.539484656895567,295.707402059808373 -165.92267297877973,64.547971481157234,295.803064815700054 -166.192509758913531,64.575103546045256,296.054284665733576 -166.239902159699795,64.582862448895312,296.094211705960333 -166.395367351364854,64.637461307403015,296.185127543285489 -166.416891116062175,64.650528631724498,296.19012622628361 -166.454756380660626,64.69105911707328,296.174884837120771 -166.477684687131358,64.718564146194552,296.161508559249341 -166.486772959318358,64.73271570144253,296.15173696167767 -166.484053844506832,64.785451780568764,296.076647509820759 -166.481957109336918,64.796331621997595,296.059528497047722 -166.433497786447475,64.807011397611603,295.99389090295881 -166.420011421982764,64.818036465528237,295.964601640589535 -166.413182654138097,64.827264433067498,295.944782118313015 -166.410288442317466,64.833574375328453,295.933097840286791 -166.410302437490003,64.851577044901234,295.908455980010331 -166.412319204455486,64.859050867502376,295.900335638783872 -166.41861336148321,64.871223518328677,295.89026387501508 -166.435236095052858,64.882454979160642,295.892313331365585 -166.533511051954321,64.93640602237511,295.921134774573147 -166.589059396398454,64.955002569569487,295.953579563647509 -166.618103452102361,64.963619830406458,295.972022047266364 -166.639836195484605,64.967402325859823,295.989488070830703 -166.69380743524971,64.98465993059007,296.021914498880506 -166.70782430240169,64.996338437910836,296.020338585600257 -166.708277601039811,64.999133378186187,296.016935081221163 -166.698201514827616,65.00447148349059,295.999032615683973 -166.69175915648654,65.017316380245234,295.974508640356362 -166.695424342838663,65.028916097126967,295.962235415354371 -166.69945191558017,65.035143903912498,295.957786459475756 -166.735793755423998,65.052783857072441,295.971093899570405 -166.82390962817604,65.076336667010054,296.029843834228814 -166.863401935554805,65.090148627520051,296.051543016918004 -166.88845183196176,65.105137856522049,296.056568464264274 -166.91492390210405,65.125245554887442,296.055860120803118 -166.913133856331058,65.133305020489473,296.042729109525681 -166.909690189593221,65.135601064452274,296.035952858626842 -166.900724187387823,65.13830901589661,296.022887264378369 -166.889681507522795,65.138044241786261,296.011832277290523 -166.875670744113734,65.136209555261175,295.99989920668304 -166.840500865172771,65.127428417112895,295.97575765196234 -166.829757259757145,65.119060782344008,295.976310815662146 -166.819794271090757,65.11637203019356,295.969739199616015 -166.75855947023831,65.109869374255041,295.915316109545529 -166.673328057721761,65.109006099465702,295.828069481067359 -166.641420498374117,65.112872670661517,295.789569713175297 -166.637460013201633,65.125159530272583,295.768399406224489 -166.609083051739049,65.135278919266923,295.724899265915155 -166.524523210718314,65.148530382121123,295.618748484179378 -166.512583980226452,65.152007560214187,295.601537334732711 -166.482933562221177,65.166537897869233,295.550642572343349 -166.4672141749991,65.176375039233392,295.520714930258691 -166.463007013063645,65.182573013785898,295.507773299701512 -166.463073764810048,65.189185895035578,295.49869171064347 -166.468366159993138,65.194106701205001,295.497370247729123 -166.477865469953343,65.216951105170068,295.47558078635484 -166.478324218179665,65.223622977861154,295.466811664402485 -166.454740314057403,65.235466243250855,295.425976907834411 -166.389304427224289,65.253432244279679,295.333341055549681 -166.35022620272548,65.275630641198006,295.262182352133095 -166.363656195141544,65.287920154457112,295.259084767661989 -166.380759734647029,65.29727164545271,295.263832778669894 -166.442443222448134,65.318345032649731,295.298360058106482 -166.489007119910042,65.33018588713027,295.329972279258072 -166.521678656252249,65.335109142936858,295.35681979637593 -166.554134928100638,65.337690444289009,295.386682107113302 -166.575772214594849,65.337439013177885,295.409328361973166 -166.600000227496025,65.335529559083767,295.436950570903718 -166.629021026703526,65.324404170329061,295.482364593073726 -166.658212080437494,65.324220586537962,295.512691017240286 -166.682749522826811,65.3261380595943,295.535281354561448 -166.799031014213398,65.336463542307158,295.640458798035979 -166.854675540245097,65.347763227087825,295.681772300973535 -166.902710405039272,65.359919050184004,295.713987336494029 -167.029809787577079,65.381241128536587,295.814181158319116 -167.104886037794643,65.387009523819771,295.882841107435524 -167.17348900314866,65.388540123961491,295.950803017243743 -167.401475886292218,65.399525375393225,296.167809778824449 -167.477040863197544,65.412008648803493,296.226912835612893 -167.577656287570534,65.444241078515063,296.282974514178932 -167.623405919083865,65.462723843953398,296.302829136140645 -167.624389247174321,65.465849769787383,296.299329203553498 -167.713906992572646,65.4977824302362,296.343980023637414 -167.844854340399365,65.529504272949765,296.430404651910067 -167.85425294701551,65.537435948249609,296.428387491032481 -167.91261748361336,65.550129567658175,296.468798628076911 -167.970082471066775,65.55785129197676,296.515439608134329 -168.000194557168442,65.55859768104628,296.544656809419394 -168.050636013723363,65.568399509689186,296.58110005222261 -168.078215929168948,65.575604837456225,296.598301639780402 -168.102062973887712,65.591488089139489,296.599048439413309 -168.102373752578728,65.598293965168992,296.589413086883724 -168.099158072973012,65.600130997182362,296.583501030690968 -168.103022114798108,65.610220746051624,296.572627745568752 -168.130064024381568,65.625831939936447,296.576902235858142 -168.137684085205507,65.640087622912219,296.56366478651762 -168.131953655112568,65.654991623547957,296.536098625510931 -168.106735588504932,65.684799876916884,296.467204251326621 -167.982925651530849,65.727221103578103,296.281328830868006 -167.860260314884727,65.753591975305056,296.120173475705087 -167.738740801851748,65.775377008429857,295.966893304139376 -167.542705829252753,65.820092576761681,295.705829783342779 -167.318012286690589,65.884298495326291,295.388187392614782 -167.249229371776437,65.910668315604667,295.28137846570462 -167.142615361888318,65.947356950420968,295.121968630701303 -166.980973889229489,65.995511268731093,294.891244063153863 -166.959193016818602,66.006976255153404,294.853054909966886 -166.830797592736587,66.050544047911231,294.662428111769259 -166.600372438358932,66.118189486344477,294.335810696706176 -166.529296364543285,66.141120027391025,294.232241849415004 -166.334118219374318,66.188788824933866,293.969748226925731 -166.311433348545052,66.179561851032432,293.960092481225729 -166.285270027715654,66.176364643490601,293.938433019444346 -166.248840235634617,66.169196670408368,293.912075278349221 -166.226334102228719,66.170310110013602,293.887976703234017 -166.193840702591416,66.166687828788511,293.860530043952167 -166.184727651076457,66.163904058780105,293.855312922038138 -166.147025202050514,66.15854391168277,293.825055032968521 -166.130376742386602,66.154483419244826,293.814059564843774 -166.12539714008804,66.151901631190256,293.812686677090824 -166.125634668591687,66.148696505003826,293.817419820465147 -166.142170834426082,66.146270207564854,293.837410040199757 -166.153016778988331,66.140582078390395,293.856270343996584 -166.152012370345517,66.137026156016958,293.860252060927451 -166.141450993989622,66.13124546385859,293.857762839645147 -166.104764336359182,66.124478319154036,293.830415752716362 -166.09053810120443,66.118891036448346,293.823950418271124 -166.088324555227416,66.114649405562815,293.827664319425821 -166.0831605241369,66.111883201282836,293.826346630230546 -166.049616957666302,66.107114721257943,293.799296336248517 -166.013045492333561,66.110032418829647,293.758440562523901 -165.962889933489635,66.108693462025869,293.709848819300532 -165.928251247355576,66.110350141215704,293.672675340436399 -165.896150856932906,66.115051719937242,293.633810957893729 -165.879892256723167,66.114087066977191,293.618782927282155 -165.848234419843038,66.107256822522146,293.59639364015311 -165.802248999136282,66.100109875732826,293.559969180263579 -165.766663891599705,66.098172633191481,293.526766827329993 -165.761936875095586,66.092202401206308,293.530274414457381 -165.736770512963432,66.095519286197188,293.500282040797174 -165.701001619044888,66.103329891085153,293.45336826145649 -165.696204198714469,66.10259165806626,293.449547999538481 -165.66506048851403,66.117233402148031,293.397861471399665 -165.652504572306754,66.118851475946798,293.382953856140375 -165.649900891914228,66.11744127766336,293.382276020944118 -165.653379461413067,66.114035692200005,293.390495042316616 -165.650876624932238,66.112776571936664,293.389709507115185 -165.633953438053169,66.116933042800426,293.366882829926908 -165.610398403139101,66.118687496265821,293.340681148692966 -165.602964425718824,66.116976675718107,293.335537905804813 -165.591673895717264,66.118986249926252,293.32136364467442 -165.587455387199952,66.128779803760722,293.303586799651384 -165.548052213104455,66.142192622566498,293.24530965462327 -165.547827552320513,66.1512241612634,293.232625257223845 -165.554850426484734,66.160874957834835,293.226392961107194 -165.582073774087803,66.162560373851036,293.251514317467809 -165.597553884581856,66.167372980349327,293.260467943735421 -165.624047605235091,66.179861239271176,293.269889215938747 -165.656983044915791,66.191741376437136,293.286596052348614 -165.693678075453448,66.201316473743859,293.310232939198613 -165.763685784693251,66.208846923161005,293.370129909366369 -165.816638792434929,66.206458879584233,293.426626483909786 -165.851479201669463,66.21065110153468,293.455757841467857 -165.856456207053895,66.21196797897953,293.458916641771793 -165.870313788007394,66.220154565870473,293.461404741741717 -165.877628446462978,66.22728230324627,293.458797935396433 -165.880681892066946,66.239592045392243,293.444683306850493 -165.869637095569118,66.246356163520971,293.424178754910827 -165.856748745585406,66.262468196373646,293.388789500109851 -165.863105708984961,66.273503121939896,293.379753653891385 -165.875670143513076,66.283553571397846,293.378292386420071 -165.883628209070935,66.294441671222586,293.371040435507894 -165.885303874693335,66.299048203964986,293.366278380155563 -165.885672804127637,66.31088472993855,293.35010312218219 -165.872410522531425,66.315394437097638,293.330549567006528 -165.808212355579116,66.332592582592468,293.242394661530852 -165.671790161503083,66.361256720060112,293.066152133047581 -165.410410149574659,66.419731296793543,292.723843332380056 -165.190300169671133,66.464447540660856,292.442144853062928 -165.127247220591101,66.472474022164832,292.368060346692801 -164.71425245329371,66.541843085817703,291.8599988585338 -164.403985167801721,66.580417814569572,291.496883236803114 -164.403982280879518,66.5804181734932,291.496879858896136 -164.348274975102498,66.580143334598375,291.44136503059417 -164.097823223124948,66.591595371636913,291.174467458389699 -163.982854106132407,66.593270123644473,291.056590696796775 -163.981368123364661,66.591932907218819,291.056873550638556 -163.9817646237953,66.590328808891641,291.05940583627671 -163.988983436420284,66.575401882478388,291.086522952653468 -163.911611159655308,66.555288798078479,291.035251268185675 -163.878506470737108,66.557567454348884,290.998838094063103 -163.853748865304169,66.56242189796653,290.967433050274849 -163.757445243815283,66.55060608602767,290.885826166719198 -163.730449477717059,66.515711175197865,290.904540005140007 -163.731576104647189,66.497875420935628,290.929173565469682 -163.733514105401895,66.490695489012708,290.940591448917985 -163.765228373349544,66.454197380173369,291.020798906683922 -163.801944914142751,66.436197887844912,291.081754203885794 -163.847475204796353,66.418300211217257,291.151550800539553 -163.85961157874678,66.408618106080255,291.17664263304323 -163.87635543980889,66.388337067382125,291.220405482687056 -163.876337624622749,66.327872996810001,291.30011875834316 -163.852402654603395,66.306962817993778,291.303273715078831 -163.843064478477061,66.303403067495552,291.298439063131809 -163.833213731383069,66.279722639008355,291.319533441215754 -163.833312650237389,66.271324767078312,291.330672710202634 -163.846341701516366,66.259193683950755,291.359920773655176 -163.908041056754968,66.229626859621405,291.461836864240468 -163.959125837746654,66.216493001937607,291.531334387138486 -164.050158094353947,66.208725231283282,291.634582746773958 -164.081984157387325,66.201084689792026,291.677186064422131 -164.095931544227454,66.18385767019285,291.714213004335761 -164.092453370248791,66.181658776909643,291.713565725833178 -164.081893522549933,66.180340016860924,291.704515726305544 -164.010721467851909,66.178708520769547,291.633892806246877 -163.919773625166187,66.18981823728204,291.526209902949631 -163.881525933567758,66.159604506343257,291.526741994544864 -163.864623444264907,66.135991228974618,291.540392288006842 -163.850617019472281,66.121432749506596,291.545100859366357 -163.806794541787895,66.099387008769952,291.528938209638 -163.775680179626107,66.081250942647131,291.520638542249799 -163.771569259459284,66.072991158825587,291.527193773537874 -163.770721161217011,66.060132806307323,291.543106928467751 -163.627135618292385,66.057613409312182,291.398386225104332 -163.543333574275806,66.069254971864254,291.296822233125567 -163.50592510472265,66.080499574586085,291.243655135855079 -163.499066842520051,66.084722651082032,291.23111042752862 -163.34798524601041,66.084274812154376,291.075722359120846 -163.317068932240147,66.074625609985773,291.056202555075288 -163.290993930814437,66.068568250284784,291.037035315297544 -163.17179616502176,66.058631899181123,290.926419420167804 -163.149954828569378,66.05882935303913,290.903542113490403 -163.09623383781917,66.062303422714336,290.843436622060835 -163.050372856318035,66.067671298619345,290.78905005287379 -163.000708384880454,66.076190205283737,290.726703967899084 -162.879255674170167,66.082180657863631,290.59312673471868 -162.794474931876721,66.088487338472746,290.497144644148648 -162.753949233029061,66.089510173508415,290.453775438480079 -162.684546589791523,66.060926078896401,290.417746189981699 -162.683446182832654,66.05748115600899,290.420945595949888 -162.67682580759606,66.05303736478821,290.419659775681794 -162.639226193455897,66.039719363886917,290.3972920877859 -162.625525479771397,66.03887966503342,290.384078511036932 -162.53399980591837,66.044417502812863,290.281756363809109 -162.460918616761631,66.057935829178533,290.188642078079283 -162.426974361387067,66.048341693982607,290.165249803103507 -162.416698883138167,66.034443128014161,290.171897915191948 -162.395138686859042,66.028082681745829,290.157332460395992 -162.375394154250642,66.027344109187538,290.137634702026844 -162.33453275036149,66.030762916482743,290.090691776946187 -162.272921862271147,66.041465047663209,290.013005024753511 -162.209144538974101,66.056115164043618,289.928169541992247 -162.142776239344414,66.07818222111942,289.831468581221998 -162.140684263593243,66.077910269521553,289.829620650038123 -162.132968321022872,66.068850573425905,289.832785054109991 -162.125047276252303,66.066754773314472,289.827103334479034 -162.028962398979132,66.062194874056232,289.732274307869375 -161.95330363938865,66.039669824170588,289.680823475122452 -161.841279505135844,66.021952469969122,289.585109109990299 -161.820354432664004,66.032459749021029,289.550279647111893 -161.81557033374142,66.041059049723742,289.534728436730802 -161.801851796396193,66.054687794884444,289.503650061786175 -161.778806802881775,66.073102997072525,289.456945258192718 -161.683854321790989,66.110960423815243,289.311180300079286 -161.668579113655966,66.121549584490751,289.282253109849989 -161.630292190627785,66.152566919731399,289.204319830983877 -161.627268426495931,66.161454847545642,289.190308763645589 -161.617230601244273,66.17606583673377,289.161979781463742 -161.551726656047862,66.239285263696587,289.016440083272755 -161.487841377322013,66.261800280055553,288.922370730899274 -161.371180119416891,66.258029818871435,288.805241107940674 -161.344494392203359,66.254477440644251,288.781685979105532 -161.340572937664774,66.242540704894438,288.792051405645907 -161.335423199180951,66.235808916559463,288.794822667725384 -161.324079833787664,66.222969352838703,288.79850513022393 -161.316326715831991,66.220429556440848,288.793469255790114 -161.266957175250326,66.213533712285027,288.750148204155266 -161.202274534814535,66.210330138675218,288.686289569362998 -161.148703211226774,66.21956114026807,288.619069752283394 -161.090651638112348,66.233591165600359,288.541408872231841 -161.071181296126497,66.234547566449436,288.519867624156177 -161.05604178391954,66.230402214965906,288.508979368023574 -161.039176196335347,66.228821424831978,288.493201201781631 -161.003337730344384,66.232511537885685,288.451220749877393 -160.997276906136278,66.233829293094104,288.443290988914669 -160.99437847150557,66.236201077404786,288.437414751388133 -160.993588294061709,66.23909987013127,288.433117563836277 -160.999219466390116,66.25134684838784,288.424356879666448 -161.001854784957771,66.254319747291206,288.423557003028691 -161.064350871939126,66.283186978549921,288.454331841319799 -161.082647443057056,66.306508237664843,288.445425138808787 -161.092481230320885,66.314521907575923,288.446054758504033 -161.111316459107996,66.32774830739605,288.449791119433939 -161.132833908477238,66.33562873024357,288.46273925062269 -161.16642178206439,66.341670923210074,288.490465666167438 -161.223155092485428,66.348296614044841,288.541565950028598 -161.36406376215632,66.375318206796933,288.655375299975276 -161.528872958440132,66.396417382864541,288.80069805495441 -161.697718102431509,66.395541806000821,288.976705235429108 -161.820843964094252,66.360180722087819,289.147789564915001 -161.916246925006419,66.343799936359403,289.26684292126447 -161.919611140430931,66.34884527138091,289.264079179614782 -161.884209174843619,66.398126808120551,289.166431018151343 -161.875758445339358,66.413495757302258,289.138666319660842 -161.86670223069774,66.440146551420071,289.096305190585554 -161.867477506359137,66.487557829740453,289.038336309604347 -161.878204298970758,66.510808257481756,289.020530346781015 -162.032372927034913,66.585861878352929,289.085333230905235 -162.094783742546554,66.605319268687182,289.124881555326283 -162.101241080093814,66.609219074510449,289.126600416377187 -162.108973566140463,66.621939723992725,289.11855941824615 -162.116645633039951,66.638951312220271,289.105058951303363 -162.127683889226688,66.65064590715302,289.101652003824711 -162.143714238407,66.664091370870224,289.10112298745662 -162.178737336179694,66.687142292201443,289.107841815799475 -162.231975762989464,66.709121843767264,289.134357471950352 -162.272107696525666,66.71725587498436,289.164914297871292 -162.353113526626572,66.726062030932567,289.236108311451972 -162.425752061085461,66.730928422316552,289.303696309216321 -162.504752222140723,66.741848592110344,289.369948259554803 -162.503858229944314,66.749096505823587,289.359808691777289 -162.505841408128418,66.758220331565099,289.350193066522479 -162.51595866917387,66.777077844484296,289.336399530991912 -162.547725422231792,66.804215780432841,289.333898823708296 -162.575570390834088,66.824706896113639,289.335840637795627 -162.597584414725333,66.836989253761999,289.34234563075006 -162.618086012571183,66.845817693265872,289.35172076150775 -162.624912408839634,66.850201485927414,289.352986550889909 -162.628293878245472,66.854372354527172,289.351048975251615 -162.630045446698773,66.85891325231205,289.34699228592217 -162.626405571901898,66.873666117785945,289.324404880404472 -162.617943413208252,66.885282130507278,289.300983784720302 -162.604407530025185,66.897796238015388,289.271307533606887 -162.586212870553624,66.903633539699769,289.245510182343423 -162.500799539668122,66.919203126221475,289.13960421923548 -162.349720056072073,66.934138116413934,288.968417113646865 -162.284483340233265,66.915026771762896,288.926952407695353 -162.275135026449362,66.903492134082541,288.932160743512213 -162.232037133127932,66.865972583304057,288.936178491450846 -162.120660054353266,66.797834923507509,288.909390790387988 -162.100233285362464,66.787853500738805,288.901218716055155 -162.077069251308473,66.78267806711564,288.884199284017086 -162.052478597734364,66.779993628057312,288.862585198134184 -162.01697945709904,66.778761399991296,288.82804743014276 -162.014808747553246,66.758418739053923,288.851357890293002 -162.032964893293297,66.733935706857181,288.900544932112098 -162.04466208690377,66.723119614942121,288.926025250926614 -162.062171562194919,66.715608351974453,288.953287680633366 -162.071598422845454,66.709212244589807,288.970920253545046 -162.077978401887094,66.703036198784318,288.985174057073891 -162.084857764486316,66.692407207170362,289.005528032779694 -162.08134894712947,66.663403703881215,289.038336779922247 -162.076957343390234,66.650572984291571,289.049940286204219 -162.072404731187618,66.645056161469014,289.052204323932528 -162.03649186467706,66.6309421298768,289.033170433714986 -161.972196815438451,66.601969918932539,289.003568711690605 -161.956745882435968,66.591724397280927,289.000517101958394 -161.935972819006395,66.57190712950721,289.003912390209734 -161.928769506985674,66.560575449212124,289.010630535893142 -161.919184459047472,66.550699798211781,289.013080112636089 -161.880425631062991,66.536238834481537,288.991235735826194 -161.768693475199314,66.496298798368912,288.925736195407808 -161.627657230259132,66.449511490612721,288.837849149480462 -161.577452103495858,66.437935730622584,288.800143571570516 -161.519774156949467,66.441209909363977,288.736444459296763 -161.438641068436965,66.453534454121467,288.63739066477865 -161.329684340135856,66.477745418223193,288.49507456086576 -161.283143223721794,66.504554015853472,288.4142856458202 -161.29655191584007,66.519965503130592,288.409394624643028 -161.402345352881923,66.522901203508368,288.515114493668079 -161.457429631300357,66.521576048890495,288.573605597019196 -161.472564291971423,66.522213717010416,288.588445700705051 -161.486941261029301,66.524996369745892,288.59987236186862 -161.496846699714609,66.530347080002826,288.603532182984054 -161.498326122733857,66.533812997520997,288.600808116607368 -161.489646848664989,66.537407129610358,288.587450044229627 -161.486208306447281,66.54309441793157,288.576931375078857 -161.493742005281234,66.560213717482057,288.563699926249683 -161.545099109714045,66.580747312690747,288.591359536163509 -161.602295620322138,66.592547903487414,288.635660473257303 -161.668711524806071,66.609798255737473,288.682608185335994 -161.696469102210386,66.619926517088103,288.698576980270445 -161.86953057979332,66.704337608406306,288.770895414985716 -161.88502273924064,66.716155107944047,288.771971952170134 -161.864903259514676,66.796434380032338,288.651265054941177 -161.849623968076855,66.81300546796507,288.615030822344124 -161.827537185248076,66.817247877477612,288.587278308346868 -161.799677077359405,66.832485253163625,288.539946678094566 -161.788867232366499,66.845906292140839,288.51222351193428 -161.785592171299101,66.859315171125417,288.492172264494002 -161.722970834244109,66.916257699188193,288.357643316499889 -161.695534524192482,66.944392887944673,288.294785473495722 -161.689165202101094,66.955153872577725,288.274928241968155 -161.691896680030425,66.959158758055011,288.272701978683472 -161.689670962109517,66.960726783530575,288.268495354801416 -161.677750388545832,66.961325029495697,288.255686099641025 -161.570068703579551,66.934137710101055,288.180393829010427 -161.492562223184621,66.936314335172995,288.099074739962816 -161.488515547751774,66.945011299551723,288.084207475185394 -161.488779651346249,66.960182081219642,288.065698813647032 -161.50914494890975,66.973677457056382,288.069622119888663 -161.53392372224971,66.984313778811739,288.08152805455029 -161.62555932715577,67.007506497403867,288.145393339917064 -161.700789535461524,67.010207853595432,288.218024250119925 -161.715110753572247,67.000402684936262,288.244727398268878 -161.763039490851867,67.029929250190406,288.256199375726283 -161.802574712819592,67.046858171055405,288.274849845096469 -161.813655780120087,67.04963689604152,288.282528781332076 -161.839724232174063,67.051132319298375,288.306905888952315 -161.853586886372341,67.051541018024594,288.320350708439946 -161.897099184771889,67.048429133795437,288.368063243106008 -162.12656822759493,67.025139573629204,288.628303185105324 -162.215014975610444,67.006057961064741,288.741429546847939 -162.237344326927769,66.998915587046568,288.772952065803111 -162.23768162475389,66.993928650022937,288.779624397866428 -162.242609373384255,66.993161556144202,288.785555126145482 -162.357330174462447,66.994473102124857,288.899216002784669 -162.388448715449982,66.990579496766301,288.935447452589869 -162.419238901228141,66.984053935752598,288.974711496382952 -162.435987458057383,66.984432575253535,288.991053087636828 -162.452591423483284,66.987734176613628,289.003509332425892 -162.465988847889292,66.993665808898697,289.009374621324241 -162.470228417051743,66.998681648293712,289.007212473079562 -162.465195927644857,67.003768902736638,288.995652696117759 -162.468899415056171,67.025971530147473,288.970949445851147 -162.476143637163119,67.037709557938101,288.963177805766463 -162.484635622363953,67.042454598141987,288.965605964884162 -162.493930820083818,67.042672527122221,288.97463702224195 -162.507900889909791,67.038970282910867,288.993375865742564 -162.518254392532043,67.030410183679891,289.014724673703313 -162.522420253686562,67.015893299575268,289.037515304982662 -162.606933008694568,67.009829705801224,289.129998204298317 -162.643629855498546,67.010207812405554,289.166273670271039 -162.657463751333012,67.012437488125798,289.177257745526731 -162.665031327516857,67.018228246300083,289.177376461215317 -162.664104447614079,67.026109154883201,289.16629596799612 -162.662078002453256,67.029673147598629,289.159676366485655 -162.664112433989089,67.033222054585821,289.157139267772436 -162.680029749355839,67.046126536185483,289.156424006447196 -162.702443285089601,67.054812939757753,289.167619992047548 -162.785771256830003,67.043802331660032,289.265101733617485 -162.833787663821312,67.035507433313185,289.323805520310998 -162.84276894801252,67.032290288838453,289.336945472285151 -162.854328519396745,67.017256256736133,289.367978416383266 -162.869306991848418,67.011877349612675,289.389921114780009 -162.904709470743995,67.006166349261676,289.432712758891284 -163.101214278785335,67.040519716687839,289.584059892222285 -163.302622846860686,67.060072196963375,289.758816607296467 -163.402403645265593,67.073488907809434,289.84021073486656 -163.444553358906319,67.08077991844263,289.872385839931667 -163.498555532701175,67.086822697895727,289.917914343997836 -163.580362698029091,67.091808908724204,289.992315828800201 -163.628311169254403,67.09870780449539,290.030591388233006 -163.70222196033555,67.113758040918697,290.083607385866344 -163.734023264109993,67.123088242221925,290.102562543936074 -163.744697673109272,67.12843694296447,290.105956316925585 -163.741077850311029,67.136115910813288,290.092129131779075 -163.740258545236884,67.162543556759161,290.056016106158495 -163.740824522581278,67.184067243364709,290.027805644087493 -163.74418393241649,67.209272820710311,289.997404254972935 -163.761957878066795,67.25575080089844,289.95264686178416 -163.82556601978095,67.34912117632166,289.889608588069677 -163.856969447251458,67.387408992168346,289.868728246539831 -163.882169626984279,67.415432080353753,289.855510802008212 -164.010433618711289,67.535001767762012,289.818239117972553 -164.082920507653455,67.58515657321685,289.820109384134412 -164.112123895433797,67.601292744632886,289.826295483857393 -164.147788946360208,67.616526793033472,289.83988394588232 -164.213225993152747,67.638376129578276,289.873003816232085 -164.537348992782171,67.724895194741663,290.064616394229233 -164.781748824864565,67.820148833405483,290.164928684011102 -164.910717417820877,67.867123527509563,290.221399700269103 -165.060939304344487,67.920969694609738,290.287518502213061 -165.132990847859475,67.941106932485695,290.326940623112023 -165.194340353471461,67.965343341248612,290.350324936211109 -165.23065496917468,67.984593336548912,290.35713049210608 -165.235048179246434,67.993783126427473,290.348213301040232 -165.244276488421065,67.997984880187431,290.350904008373618 -165.363408343545558,68.02732224021463,290.420744895935059 -165.433870959905477,68.04467433725614,290.461848155595362 -165.496978861936697,68.058547848377003,290.500918097794056 -165.665115572831809,68.075260145653758,290.633595527149737 -165.75294079743162,68.076953304153989,290.712848175317049 -165.795567795774787,68.080125380711905,290.747890628874302 -165.866849182813269,68.092623744875681,290.796016838401556 -165.9689558759828,68.121174266956032,290.849283062852919 -165.977043198713659,68.125240047692557,290.850866377353668 -165.991353191879114,68.141991537545493,290.83977064397186 -165.99780164696017,68.146558345890341,290.839096046984196 -166.248711482234114,68.2445219187573,290.927279697731137 -166.311408217780723,68.264193376859765,290.955939572304487 -166.371977598013359,68.281013915870574,290.986702718771994 -166.478039361016073,68.304514434789141,291.049067063257098 -166.570650767101768,68.322527301993219,291.106974359601736 -166.684271350841016,68.340147744207343,291.184368903748691 -166.788003550314642,68.339665619641337,291.27946741040796 -166.833138307303074,68.335557745036581,291.326630263589323 -166.849878130667349,68.331741449681658,291.347542769275606 -166.854062067101921,68.332322356532913,291.35047921538353 -166.841601511765987,68.338947528706711,291.329265520907938 -166.81526172774673,68.347369963235124,291.292761911638081 -166.709572096764504,68.371018837025858,291.161480622366071 -166.381016543808471,68.421647970769158,290.787667351774871 -166.365588678274776,68.425482241522644,290.767971187829971 -166.345836560392542,68.433208553435222,290.738602899946272 -166.331916322225311,68.44150373816214,290.713708055205643 -166.309423069720964,68.460782964611013,290.664834257215261 -166.306925639519079,68.463925977455204,290.657931625843048 -166.305492567374387,68.469655936492416,290.64818365033716 -166.298812014604778,68.510142577441968,290.582427700981498 -166.247967453143673,68.553131103429251,290.472963239066303 -166.237259438555554,68.563506198661813,290.447976116091013 -166.229592556481663,68.575429212444618,290.423466541804373 -166.229049013703133,68.578258189372221,290.418806142173707 -166.234915092315674,68.586580967173887,290.411848795600235 -166.233248251201559,68.613013681975445,290.3713743025437 -166.217130698862746,68.663566407196015,290.282271884381771 -166.203324417386767,68.677798522471079,290.248833968304098 -166.20086529834245,68.689261436304903,290.229711479507387 -166.191309579472602,68.777947580714283,290.090234464034438 -166.193725344868227,68.789678392243403,290.075077054090798 -166.198892301148419,68.803231125531454,290.05968823749572 -166.207270251326037,68.817461784597114,290.046163159422576 -166.226022273806024,68.859680901342315,290.000494703650475 -166.227715238757895,68.87241471757774,289.983159650117159 -166.217962603647209,68.878763845653864,289.965051296167076 -165.818479545864875,68.863406320330881,289.630040463991463 -165.670111443391818,68.854638511649284,289.509585393592715 -165.576031400068928,68.852199501293228,289.428510649129748 -165.525908642320474,68.855093513399311,289.379189874976873 -165.330600914475497,68.857369566696079,289.199897042475641 -164.971116538913378,68.882295809845914,288.839455294422805 -164.887323853499822,68.89091647028053,288.751369467005134 -164.816252632940603,68.892810941950231,288.684364963322878 -164.658906654498224,68.908632071350794,288.519425964914262 -164.530482480764988,68.91718367960307,288.390950846485794 -164.30269688353718,68.92684837732692,288.170662324875593 -164.25676400571038,68.930218309912419,288.124217272736132 -164.164861407222531,68.944055097294225,288.021357038989663 -164.134356467503295,68.950283672677315,287.984936499036849 -164.072981617603062,68.968934762552607,287.903146788477898 -163.977303403179718,68.984329617604757,287.794783719815314 -163.897513550158095,69.011249009731713,287.684898897074163 -163.861705558143996,69.028147581971439,287.628937250934541 -163.831086545695001,69.039920101617241,287.584822334349155 -163.727831371957052,69.066003007606255,287.455021452158689 -163.65951765405697,69.089858198297435,287.360103637911379 -163.577696017206705,69.123369573464132,287.239724233746529 -163.538980270274266,69.140949206729843,287.180444213561714 -163.456362972406907,69.193924394303892,287.032829159870744 -163.301652627716237,69.274022075943662,286.783230776898563 -163.239821203290376,69.281959077225338,286.716582522727549 -163.23460268637524,69.283762169687193,286.709409229457378 -163.141329420862775,69.35147745073111,286.532884950749576 -163.114038326457006,69.374642792426755,286.476732874289155 -163.106889485720131,69.391560768767633,286.447237473912537 -163.108112014759854,69.400649647751564,286.435942583717406 -163.104296369383633,69.413521595454867,286.414960738271475 -163.074077306792304,69.459171769946281,286.325597540475428 -163.055808770259233,69.481270933817342,286.279101061634719 -163.050702103016476,69.48219203387859,286.273272106423974 -163.040053532160641,69.488328199189553,286.255373877473176 -163.02991599313188,69.506190233274154,286.221960699185729 -163.020207791966698,69.537442121888546,286.170693137682974 -163.023753900548229,69.544444974326609,286.164316461421549 -163.034044562128912,69.555890636813061,286.157899742014706 -163.077883482288428,69.569570556770159,286.178341070190072 -163.121933310410668,69.58845341989192,286.191783154383302 -163.120380113460556,69.59271341001255,286.184571978636086 -163.115363845766581,69.59590248531174,286.175742954947054 -163.028353915832582,69.607908231442607,286.081865588203073 -162.920740448995048,69.691812702286157,285.871804092079401 -162.92579267920749,69.699672515381408,285.86558457557112 -162.964871349750041,69.716464508144952,285.877358070574701 -163.014330622081104,69.727407336328227,285.906242318451405 -163.021960534590505,69.728372162776097,285.911680707708001 -163.039174649718603,69.726703809412214,285.92920420691371 -163.016385806252543,69.756760001582592,285.867946245707572 -162.964042235657161,69.782626872209192,285.786334665492177 -162.915670790190433,69.798770754465522,285.721568243578076 -162.880968862404217,69.803711453024945,285.684177194721997 -162.844408432808251,69.811064168346931,285.641866163350642 -162.771026241302792,69.851481355884005,285.522122557274997 -162.71337309599636,69.878429338259508,285.434688501060009 -162.620178167013705,69.916301985268021,285.301244025118649 -162.610130871811606,69.918293183154859,285.289699841290712 -162.60511723356035,69.913873333793561,285.2912627896294 -162.597606401804853,69.913401500529091,285.285283466801047 -162.591739882330444,69.914942612463662,285.27803048864007 -162.484864439373183,69.974549354168715,285.103455359116197 -162.475399213360902,69.9824394841322,285.084491584450006 -162.46615808826823,70.001745501529101,285.0503358412534 -162.472195350177003,70.015091245071972,285.037636763416231 -162.466639433716807,70.041524116822501,284.997100859880447 -162.45840303611925,70.04326527873657,284.987530829384923 -162.398395184505034,70.043882571973441,284.934076197445393 -162.354426315535704,70.058109391193,284.876370456069708 -162.3586094162834,70.06478823821989,284.871054843999445 -162.360340389112594,70.075700098986374,284.857892171479762 -162.316370016303324,70.108590746384493,284.775161696597934 -162.162050370967023,70.160842279766186,284.570114993490279 -162.102277865861339,70.186358678185172,284.483762012794614 -162.023175535904926,70.223359061569624,284.365311188623309 -161.988804184123609,70.246996595722294,284.303821445442736 -161.963524071895449,70.26818895519861,284.253556586802006 -161.926875645994755,70.290915549408126,284.191388637758791 -161.863676922722277,70.307365779198861,284.114520675502717 -161.853930515537314,70.30874797926387,284.104204684495926 -161.848145137734633,70.307847846987499,284.100366210564971 -161.846093902563581,70.303746902714323,284.104026489891112 -161.848618991760958,70.299372331794856,284.112032765522599 -161.851333122889514,70.295195343111914,284.119941837154329 -161.852836338003669,70.28150124628992,284.139433144591749 -161.838576968046056,70.271822643614925,284.139852281659842 -161.805527811194281,70.259953470196024,284.126768723130226 -161.783718545527933,70.254730992396631,284.114654530771077 -161.773422242151639,70.2618181532753,284.096284263767302 -161.771765412234004,70.267656803754193,284.087108575738966 -161.763104486555648,70.271763289157249,284.074116878211498 -161.696124703649446,70.266413797782391,284.022738589905202 -161.68014850442384,70.257343227512266,284.020762739703059 -161.66751966754137,70.245509609124497,284.0253418488428 -161.637814609217287,70.240016306583456,284.006611626595259 -161.526870567921378,70.23621376284558,283.914528639987111 -161.400691449859607,70.239934487034915,283.799125824123621 -161.313056767971148,70.247421337098743,283.712536670267582 -161.258665187236488,70.255943451689348,283.653748106211424 -161.084239528133651,70.306013830565988,283.435881128534675 -161.020379683691374,70.327080046524273,283.352701311931014 -160.996726503577634,70.315562844777219,283.346872285939753 -160.983088952151803,70.316997953474399,283.333071323111653 -160.843508698130705,70.343873784470688,283.176167434081435 -160.736684965580537,70.373723874398365,283.044304960407317 -160.534363488582414,70.44009676008595,282.782512785866857 -160.493783493075085,70.453809538117056,282.729590294882655 -160.489536153091592,70.456467609186447,282.722497086040676 -160.484070242128297,70.465317484109576,282.7064622733742 -160.218863055269765,70.55843873011122,282.357120654545724 -160.060781888187734,70.632188620651732,282.126674879342318 -159.917876131894928,70.690030318270445,281.930044637061656 -159.802597044368554,70.730585551009739,281.779421863146126 -159.652483727886818,70.793730385382119,281.570885340683162 -159.58981981985437,70.808838660758781,281.497957262210548 -159.532791967187507,70.820213841171338,281.434570864774287 -159.213212205887544,70.869438585333555,281.097738229669631 -159.175942418216863,70.874475378915903,281.059359578415751 -159.151767522615756,70.876025680595873,281.036565821617842 -159.160640598057626,70.85859384382681,281.065530641935766 -159.156153730826475,70.848916019205973,281.07346626278013 -159.136606953301452,70.82773262081362,281.082388056442142 -159.164956920272004,70.817333068655046,281.119656453840435 -159.294692484620555,70.810632224698409,281.240304621867836 -159.335134419735084,70.806763352783918,281.28009270876646 -159.339948761795114,70.799448302881956,281.293249105103314 -159.34718304492398,70.782484275153124,281.320358549244702 -159.303408619368099,70.759382078900231,281.3107142848894 -159.279739311696602,70.758901965856978,281.290740583091974 -159.141899413492638,70.75798304989344,281.172040986828506 -159.004790835549557,70.763713068394267,281.045776336453855 -158.980763119695695,70.766350584880755,281.021663419902325 -158.958688981898717,70.772090033435234,280.995495441369712 -158.969720574899611,70.786229885772897,280.987960506230593 -158.98057666084722,70.789241619389159,280.993749521672726 -158.980737132306473,70.795753978332343,280.985992365516722 -158.660231277525213,70.787339597086088,280.717169710434973 -158.611451999602934,70.788484681871381,280.673275387845933 -158.393640799703348,70.799119487936508,280.470595750957727 -158.389935008031415,70.810858373799633,280.453427557833493 -158.393414440482843,70.821438320667667,280.443901181221008 -158.389961808006746,70.825094640107508,280.436550075188279 -158.254468726953462,70.817127476924398,280.327795255929232 -158.161877140375964,70.820201536202561,280.243326437659562 -158.036555267071378,70.831661269937669,280.120399035513401 -157.88825310092173,70.852869450846754,279.966050033457577 -157.845166958410402,70.86042736534975,279.919606798328459 -157.772627208714425,70.875245890246077,279.839020764455199 -157.712962235336931,70.890795120297042,279.768888065591455 -157.50665738794433,70.948068356346454,279.52278664894402 -157.425207747467226,70.976215991968346,279.41947686765343 -157.397011934824064,70.987319548841882,279.382190582342446 -157.253310948389327,71.051951334672495,279.183314281515777 -157.123869140403656,71.128098726253441,278.98435299564153 -157.0767421177693,71.153938613580848,278.914223667234182 -156.966825820040185,71.211304709536606,278.75426934659481 -156.813944737526072,71.286308670958363,278.537909044884145 -156.77823255892315,71.298929398233696,278.492987189441919 -156.649922796492262,71.33743806180621,278.339481989853084 -156.624449907135869,71.343635601053634,278.310662255622447 -156.572962893367674,71.351988363661476,278.257092887535691 -156.570692179369161,71.333443896466534,278.275807133875787 -156.565817494182937,71.316237124088957,278.290780860930681 -156.560800524416806,71.311223272559602,278.29204424098134 -156.535425820637414,71.295766956578689,278.287379556335509 -156.528800595366931,71.293898120487128,278.283745639957488 -156.406958185433155,71.267377082750826,278.207985728047788 -156.36103500880759,71.260706177156507,278.175661705434322 -156.325001512400974,71.2583860161985,278.147058544680476 -156.306238397848631,71.260000433920553,278.129049548879266 -156.21850260417429,71.258828447348151,278.054421554319561 -156.078713773524584,71.241928759895174,277.951812752522528 -156.033500366854526,71.202650063057291,277.95537190977484 -156.042409645062634,71.195946905206185,277.970414249226451 -156.049045321027023,71.186210820339667,277.986786868423223 -156.048905870408191,71.184141837778057,277.988918824121356 -156.022862812666148,71.171482520939634,277.980034324340522 -155.962254599278594,71.185653810469034,277.911883984692395 -155.924501250886209,71.206600531255432,277.856325589120388 -155.899402023130023,71.193343196853945,277.848851386457682 -155.888476478513354,71.189501473427185,277.843499593436718 -155.833332440937028,71.191533722734874,277.793294285424054 -155.808153085573792,71.195866270048143,277.76669601816684 -155.765102877546894,71.194109268747269,277.731100048869848 -155.661479020472171,71.181920728094738,277.653879662975669 -155.592002726199098,71.172011389688706,277.603864870034158 -155.571224656982508,71.164590917262117,277.59364745952189 -155.572059363064568,71.140582062984862,277.620002092793584 -155.566063748327082,71.127910287876603,277.628277760930359 -155.525024172684624,71.101929409145072,277.62002453673631 -155.518273113651418,71.096247603445903,277.620154260657728 -155.515409784002969,71.089801713890438,277.624502347782254 -155.514919792071169,71.080605789065828,277.633855910040438 -155.537626248644216,71.067136362033636,277.66811921261251 -155.552560324988974,71.060138068384248,277.688684363849461 -155.643264902109763,71.041811117242034,277.787906886078417 -155.709751296860361,71.01960275036744,277.870103366672993 -155.71611446475211,71.01192265894727,277.883929240517318 -155.766323318897093,70.985092699742623,277.956887664273381 -155.835130139326822,70.965031268205664,278.039043865166605 -155.883194284589933,70.967130153558628,278.079108668491244 -155.956295680322512,70.964275502269885,278.146543690003455 -155.982649395510947,70.961640918709563,278.172590499743819 -155.999921836767868,70.947239627562325,278.203398024663329 -156.018999773793439,70.902576515016705,278.268618233501911 -156.018654826728067,70.898087555559428,278.273178703151643 -156.017741284879548,70.895426595803968,278.275255837477744 -155.97278248144903,70.862375864303175,278.271298230625689 -155.973410059526884,70.827427106735058,278.309630862437189 -155.982636296667067,70.825002913868261,278.320427204482257 -155.985188493959157,70.81679991612981,278.331557350233197 -155.983189731376712,70.808195025400892,278.33908639382571 -155.9761465167133,70.806273200481542,278.334915831685066 -155.932170534605149,70.805456211040664,278.296781429089606 -155.910828951279797,70.809434669229802,278.273555159568787 -155.886362162356704,70.821503139300376,278.238850484602153 -155.879314799459252,70.828342250017357,278.225237913429737 -155.736065134732058,70.830610509041833,278.095740786753595 -155.647740026015015,70.823661581188702,278.024751957505941 -155.547262576557415,70.846629714061962,277.911095584742725 -155.508437400672335,70.859758508065639,277.862705286592245 -155.494049218799205,70.871195754821031,277.837815592065454 -155.492219026063822,70.874754770989441,277.832420184276998 -155.490156343400542,70.885360741557079,277.819349725730717 -155.491818882733725,70.902134582450103,277.803039966151118 -155.497291881012387,70.916826351324943,277.792303656227887 -155.48019395040518,70.943002555822105,277.74942263495177 -155.4592463554566,70.946946008028505,277.726730672642589 -155.408486006388728,70.966934030106444,277.660731855779886 -155.386910058110033,70.978430443652584,277.629529779776931 -155.368427835808319,70.993652760197051,277.597140360623598 -155.348141591924332,71.003907153568392,277.568423493765295 -155.264317147988379,71.014687002717807,277.483153382316232 -155.264358291865449,71.010741029466757,277.487339546903968 -155.260449983454151,71.004222165035969,277.490746774710715 -155.215702383340727,70.977484381292015,277.479316272772849 -155.205733843432085,70.973767636544508,277.474404129199684 -155.196514032175429,70.973517850122775,277.466516273096204 -155.187048179923579,70.977680038220583,277.453787801787257 -155.1732056464989,70.987409287717213,277.4313645362854 -155.166008516147826,70.995177398463227,277.416872882284224 -155.164197092231092,71.002237390503367,277.407881270162761 -155.168215375778971,71.013263220838397,277.399881375022233 -155.181279992996622,71.026911825078074,277.397103795781732 -155.278049540530077,71.06418734161565,277.443154631182551 -155.280099990301181,71.066501278429541,277.44252110645175 -155.280275731496289,71.069923250629628,277.439071795903146 -155.266890981218495,71.078608497942241,277.418161115609109 -155.261149563598991,71.080578616230014,277.411041560582817 -155.154823146043043,71.111511847291737,277.28515347559005 -155.151247001535012,71.110420937032544,277.2831567581743 -155.151228359217498,71.102920989013981,277.290999544784427 -155.147154108719548,71.096716125421722,277.293920935131609 -155.130286234827025,71.076957649667477,277.299779022112489 -155.124608493971209,71.072878808445395,277.299051837064326 -155.112800163212654,71.069938100364595,277.291736302897334 -155.079654377551606,71.071505851933736,277.26092456933111 -155.06829926922245,71.083376031221846,277.238539411686361 -155.065725105550797,71.091463034738752,277.227833549492061 -155.068858528358561,71.107469852635887,277.213876198045909 -155.090086261394731,71.127035230163472,277.212075266987085 -155.065072845325602,71.14488568399716,277.17147658765316 -155.036049841633741,71.145937344897774,277.144923931919038 -154.947171731334066,71.125730528992534,277.087944558821619 -154.781637604915289,71.082701636944705,276.986826314590871 -154.620344303249453,71.025656748260317,276.902987115085125 -154.608706582213244,71.020977049017148,276.897475313395262 -154.585420092453887,71.00679668430125,276.891347361728549 -154.571880659979087,70.989405117363674,276.897101285867393 -154.598332178942087,70.976468597494801,276.933765035122633 -154.612574507225162,70.961191375895794,276.962009313516319 -154.65864173805457,70.902792725545396,277.062662014737725 -154.650052629975818,70.868642166250254,277.089932564646006 -154.581640134018244,70.834811984353905,277.063390669412911 -154.523292934991559,70.822277418869419,277.023982770740986 -154.506119147879929,70.821243822121843,277.009671496227384 -154.48995431043528,70.824783169340691,276.991621256805956 -154.43448597792397,70.830738405585663,276.935974472202361 -154.356863688702902,70.834310170510946,276.862926833331585 -154.265056781689935,70.814648429650333,276.800509946420789 -154.232882863137377,70.801902263601036,276.784456134773791 -154.227561463810218,70.794715437991499,276.786886370740831 -154.243416162328458,70.776351204106589,276.819524262100458 -154.18611276751767,70.767811588355045,276.77660197019577 -154.17388112935609,70.768090868728166,276.765331269241869 -154.131740196513107,70.777620773206593,276.71795076597482 -154.074239930101413,70.793191989723198,276.650786912068725 -153.999844776105704,70.821366508079151,276.556012165732682 -153.980282835710483,70.83341587480578,276.526514558121562 -153.955643751701928,70.853519302368298,276.484504691325128 -153.939727516065233,70.869219559876271,276.454699063673615 -153.937227539686774,70.873692586254222,276.448031848296523 -153.938630356784842,70.876100536880983,276.446903025731444 -153.937200503710159,70.878168555433192,276.443575497716665 -153.894762061615779,70.885211487945497,276.398631119169295 -153.778455815977139,70.894079118311737,276.285805216059089 -153.751540564879491,70.894512738619767,276.261288193054497 -153.530266861381051,70.885000932837585,276.072342853993177 -153.490280901911916,70.885374857556712,276.03612182661891 -153.430559252025205,70.889634213396405,275.978430295363069 -153.36340962007165,70.897796715194332,275.910315228626132 -153.330501663618236,70.903616438915023,275.875191141851246 -153.257691006827116,70.920282014987464,275.793880023062229 -153.242785727584049,70.921974349605989,275.778894122689962 -153.141619764255921,70.924947680039196,275.685341300442815 -153.053515155577287,70.912613812858012,275.618038613349199 -153.021344934096277,70.903516623355856,275.597789943218231 -152.778723506235991,70.884797397571973,275.397247789427638 -152.740201233995833,70.884064299640528,275.363245978020132 -152.594461090041278,70.886455678736567,275.22971904464066 -152.461262829342076,70.871313887529894,275.123623833991587 -152.264276979958453,70.842350681422189,274.972230958752334 -152.230773179532974,70.830574544106028,274.952660868875682 -152.191500684791237,70.801078663500107,274.943950798362494 -152.19295191854934,70.797672653087076,274.948367243632674 -152.196762220878099,70.794826583762472,274.954414515756071 -152.243644775010637,70.792947502496176,274.998656955547631 -152.267645672720732,70.790307960663881,275.022837844677269 -152.288061103968204,70.785130520142474,275.046089845709503 -152.375092255361295,70.729596877317633,275.176005683839321 -152.381554825376639,70.71421083470149,275.196002592332661 -152.475804210858655,70.688366820906751,275.305570964701474 -152.477620070669161,70.68319581524419,275.311990289948881 -152.464769389792281,70.645634381744316,275.334866628982127 -152.438039817223853,70.616454213083315,275.33728554751724 -152.425032430902576,70.608511573034718,275.332686815410852 -152.369993022168416,70.600771910621958,275.289426544681191 -152.359936783466026,70.603324126550831,275.277887165546417 -152.345851868135298,70.611723394430882,275.25731558073312 -152.336868210447506,70.61240159888726,275.248476811684668 -152.268306461792946,70.592187341634386,275.204155759885907 -152.204901469679811,70.585603866852907,275.152038337662816 -152.174201964055072,70.58475358869886,275.124664863571525 -152.150423808481378,70.58628913212614,275.101471760310233 -152.0649421848332,70.574472210677342,275.033726628869772 -152.068802754964281,70.56807916655552,275.043032934889197 -152.070003578460756,70.562611177879305,275.049064301885664 -152.030325656728763,70.558883130299606,275.015975086018443 -151.980042560857754,70.562754275714724,274.966299385763705 -151.884398869193234,70.554410568094951,274.885851902887225 -151.820958302831087,70.545241115270471,274.835661546327174 -151.778961669665364,70.547469080105799,274.795028837397695 -151.749307589608691,70.553585728960471,274.762309643439949 -151.722476423772179,70.554831346915464,274.736513058654964 -151.705728345498812,70.55276575304265,274.722925879061222 -151.699422733596208,70.549220925773128,274.720256282016635 -151.701518282118712,70.547286890663727,274.723896127194166 -151.713721759305201,70.546035614487209,274.736239805817604 -151.726969450701887,70.541153339994153,274.752760882489383 -151.755812160485988,70.523649792124957,274.794841053895652 -151.764500424684314,70.516255642531462,274.809405719861388 -151.738537208324175,70.50303734442565,274.797174106352031 -151.732827631057177,70.494920536526962,274.799090748652816 -151.779782536663305,70.484897512726107,274.851317725144327 -151.828355219948406,70.483554388518513,274.897351681254804 -151.923449819579616,70.472227251885542,274.995232495479286 -151.941020541202704,70.463104908664945,275.019609201699495 -151.950619036742097,70.452063765652653,275.038348854519427 -151.904265209257574,70.433676981884773,275.011918496340513 -151.880354020258522,70.430303564489833,274.992804540321231 -151.848608570233893,70.434502274301366,274.959694560617208 -151.789892231837314,70.436479630062863,274.903607035055757 -151.657421593993092,70.434347738641065,274.782854467630386 -151.609820123422935,70.436880832035357,274.736538889817894 -151.558886894199418,70.435445032555833,274.690615578554571 -151.449137005180859,70.424957674300472,274.598039326258004 -151.347440679692085,70.408432172985542,274.518010409548879 -151.301835932898342,70.40030429909136,274.48267571721226 -151.234153987744634,70.379398035538514,274.437766837887466 -151.191630880957121,70.384333994393657,274.393953746184707 -151.192832380039363,70.401313842198888,274.38048539403826 -151.190759842720865,70.417766770863665,274.364422366023064 -151.184682505702142,70.429959824556263,274.348301257938147 -151.127354548415809,70.438934101776255,274.287378921173513 -151.122850372128767,70.437648216555075,274.284298940561712 -151.118600374190976,70.432446353733482,274.284807363525033 -151.120345154616302,70.421963388871887,274.295403437688947 -151.064676523617067,70.418295719150237,274.246804351918399 -151.030588952142693,70.441017353235694,274.195753525011241 -150.96206866996377,70.452173878481474,274.12263672798872 -150.899710088390719,70.457723300384373,274.060033825226128 -150.8815798307009,70.454747746821525,274.045716340653598 -150.839232725286138,70.459737704057758,274.00217482727021 -150.791333235936435,70.476684706429296,273.943422707729042 -150.784294987275729,70.485554096514605,273.929425681009889 -150.766304205563955,70.496787015116197,273.903288438916206 -150.724114333629672,70.494567156437952,273.86602612119168 -150.655445685581157,70.494498768823448,273.802379594184458 -150.61900611590977,70.497863600567015,273.765759046189487 -150.434190730257512,70.49774794303228,273.594300128519535 -150.361660212764406,70.493315679146178,273.530579321086407 -150.358332064103763,70.492301764536563,273.528320698067546 -150.343122807626713,70.470653275027118,273.531971232965589 -150.374549326409067,70.447435701140023,273.580303279682994 -150.354805226691127,70.435576249610818,273.57165870629251 -150.300553353566528,70.440715488186328,273.516890312545002 -150.249592447035923,70.441238682592484,273.468970976769924 -150.189345288965967,70.434952144045596,273.41792828310281 -150.117166833688543,70.430955870245754,273.353845721110702 -150.108656146730226,70.43167506536598,273.345322170294821 -150.078731234648956,70.43891771810928,273.311541718430817 -149.870987207809861,70.510358108326841,273.060526920482516 -149.824026006850403,70.49101834965802,273.032261005602777 -149.815209971641849,70.490067564045503,273.024806897155941 -149.794713506287877,70.490781042109234,273.005143752321601 -149.744476915339533,70.49774317775811,272.952807437628508 -149.732537118896801,70.502385426968488,272.938000339083374 -149.72036580563028,70.50456069882209,272.924938831478357 -149.665457723169396,70.508796964214994,272.870447188615799 -149.661098700502578,70.508307070413423,272.866774787195027 -149.653847998537628,70.504351268837638,272.863147560507059 -149.585639387245578,70.495486939170732,272.806572934612632 -149.569569801904095,70.496046314389091,272.791151666082442 -149.541183947845326,70.498993963685777,272.762372400611639 -149.528528758197382,70.501725243390368,272.748431636951864 -149.514149422767787,70.508343536954683,272.729839564301074 -149.466053322713663,70.517869606417804,272.677565420046449 -149.436378790886238,70.503349407048972,272.661245559342206 -149.423020604206641,70.491856801811295,272.657747178338468 -149.404916442733764,70.489531245280858,272.642664642073214 -149.318769148286663,70.494927242128426,272.558073126710951 -149.183444551476185,70.485305505237221,272.439126085489988 -149.086372889554326,70.464501942792594,272.364299855194986 -148.963730431908459,70.423555125476469,272.280543060041964 -148.933267575095584,70.426446825644106,272.249780833721161 -148.862357992023192,70.422530529672045,272.186206382699311 -148.793862945205063,70.402361289775087,272.137033125385642 -148.732371171257284,70.412651673181188,272.071564636193216 -148.703062379033668,70.425495277934345,272.034458377398551 -148.701060953033789,70.42877732029288,272.030133087188005 -148.671310811821002,70.429702000424527,272.001515013165772 -148.614859202517522,70.422207388459483,271.954066001810133 -148.594299368971065,70.416575914070862,271.938920259475708 -148.584647606145012,70.41216617302932,271.933112191967666 -148.481326142472625,70.358690990233086,271.875256396830082 -148.468821400671231,70.339782418218391,271.877336530946195 -148.48130216612023,70.320495257793823,271.903268776834011 -148.47042283631805,70.313232566321702,271.898316903039813 -148.45491102057639,70.308060969870922,271.887445946224034 -148.415524472983321,70.302251943171555,271.854456107132137 -148.367468277410751,70.302253081049088,271.809005754999816 -148.35570985386488,70.304079346676872,271.796554872766137 -148.274079459211606,70.329245104196588,271.701113252900541 -148.26248119301394,70.336624327585824,271.684812196530402 -148.20776143980649,70.347817546556868,271.625041032209992 -148.156961060560434,70.346778757934857,271.577810971066356 -148.111515898085258,70.342432865478756,271.537997327744961 -148.094864119135821,70.33706390597294,271.526107082143426 -148.093859550314761,70.3350556246275,271.526595572009683 -148.093959420853452,70.3324448158248,271.528559404425323 -148.093456969636293,70.330637349209326,271.529378468170762 -148.081147199041851,70.327142691647595,271.520238813012838 -147.96578129774133,70.313836519969257,271.420554610900581 -147.867997519763293,70.292954984840947,271.34268366266042 -147.82191284829392,70.276577192407089,271.310497875325382 -147.793627283128359,70.247612066187841,271.303963070735335 -147.769368835237884,70.219446839772289,271.300612014718354 -147.685984050844041,70.199596958151176,271.235036601312459 -147.65226327171257,70.202942734674068,271.200575841590762 -147.589942268086304,70.203043213032487,271.14110713917762 -147.509534896999753,70.200031143039169,271.066519726067781 -147.435795650268659,70.188474975323345,271.004090587608516 -147.40654636707967,70.184922694956938,270.978596252389252 -147.389534624809272,70.184906099096722,270.962366024963558 -147.354409663984484,70.187333916299679,270.92717765737325 -147.248391749338282,70.218616216220269,270.804815854877234 -147.237597550460322,70.207206552433178,270.8022206928581 -147.235276071700213,70.195051692659817,270.808204238303006 -147.223474827854545,70.178480089376606,270.808101738803089 -147.186384578537343,70.160005100778378,270.785067280754447 -147.16586191161079,70.155267621878366,270.768612111918628 -146.995370807839038,70.147269731030477,270.610722899436951 -146.977474947098614,70.151517126710871,270.590769896283746 -146.913784299877449,70.172920491551238,270.515659922733903 -146.890042264192147,70.185578968047537,270.484607580117881 -146.738292320630023,70.175140652033463,270.346233337186277 -146.717324608288749,70.175064151678939,270.326208213344216 -146.629035327691383,70.18206620510648,270.237138275057077 -146.512409747521474,70.185714957605114,270.123119191266596 -146.453137039414315,70.183070388038843,270.068040302954614 -146.417473476918502,70.177923273385233,270.037150460295379 -146.339424154578865,70.17591014734775,269.963621308095753 -146.313836064696602,70.178582738833612,269.937403284944594 -146.27724316764278,70.176620624672992,269.903559855185449 -146.176949267886329,70.165573092076272,269.814289670437574 -146.133855423237293,70.158628167595865,269.777259977534413 -146.118399809757761,70.15463656370882,269.764904644340277 -146.101100608471512,70.144831877184942,269.754383030347526 -146.010685268924533,70.140085233263591,269.670427761040628 -145.959438918208093,70.139883457219355,269.621284741908312 -145.921949901874456,70.142210335681881,269.583812377415597 -145.877200802734791,70.148515360207909,269.536933489143848 -145.862578502618447,70.165682674461209,269.512399962171912 -145.846970364567483,70.163788977029441,269.498561592772603 -145.794664846612449,70.14825733202872,269.457737289369106 -145.787604056925829,70.139142229804577,269.456477024592459 -145.771367055589394,70.128406024539871,269.447359490208328 -145.764717606254521,70.12580220118771,269.442535059526563 -145.62757381040845,70.08406776323335,269.335462650284171 -145.584238817040614,70.076497850286202,269.298153496347368 -145.526651694960719,70.077160220821085,269.2421536706388 -145.50994930637583,70.074223640003865,269.227765127085149 -145.473772611807959,70.058832610532363,269.201917682774365 -145.473118396254819,70.04803319311965,269.207665150985122 -145.439090519634192,70.036691592539071,269.181433183141053 -145.412441749088259,70.03127026668119,269.158827507868409 -145.335811881779676,70.022296159400554,269.089872625656426 -145.251425976572875,70.01759320802158,269.010840110480785 -145.222850165567735,70.006982964590989,268.989281283691525 -145.201585915435913,69.994657558556597,268.975775501690805 -145.179327528933271,69.991411113015147,268.956045408733189 -145.015965376720601,69.980852090623841,268.803444983437657 -144.994384932883889,69.977388630598981,268.784442368894815 -144.971012505770858,69.96407128220045,268.769269253127277 -144.957887627309049,69.958971631559479,268.759389143437147 -144.906556310682106,69.964220821994161,268.706495786085725 -144.871877303320701,69.971977597094138,268.66840657312423 -144.867365613237837,69.973235696219362,268.663312976248562 -144.861210891935542,69.985698423466857,268.65033323597163 -144.85879633098952,69.986075811922689,268.647774963639677 -144.796870728682279,69.979509338459764,268.59125788230449 -144.743231389930514,69.969826688612613,268.544483743607998 -144.676560513068637,69.966592305899255,268.481404052115977 -144.622927634320064,69.969032572147739,268.427863549441099 -144.593430666374871,69.977329220564883,268.394603095948696 -144.516523037419063,70.004197876278468,268.305118220858276 -144.467555949133583,70.025455903154011,268.245974364690483 -144.348346075377748,70.034097699342226,268.125554801896214 -144.332663879217932,70.032279087364813,268.111306024715304 -144.235325659033009,70.035638396619916,268.014986782334745 -144.182470443331852,70.041469623745527,267.960561965592206 -144.134563304712145,70.057679662620146,267.905478147789836 -144.126921633170156,70.058866837809987,267.897436145693064 -144.083915069388922,70.05869086999428,267.855797240510583 -144.057993281888912,70.072912396032095,267.823175466619432 -143.915791538513048,70.12957043004198,267.655846814624965 -143.891985981201202,70.130469995340263,267.632347841747105 -143.844176475559834,70.125562175050405,267.588619373738766 -143.786510849140114,70.124404566688597,267.533396141603589 -143.773315146071781,70.134802814968097,267.515292312018573 -143.757365766618818,70.136979183528339,267.498745189979672 -143.666552817341227,70.142256329215783,267.408190362155437 -143.621709744434156,70.139655423061384,267.366116462275386 -143.599484516714483,70.142261939741957,267.343292449600995 -143.60218346211704,70.146944844311449,267.343540642410517 -143.598118627315841,70.152344906671871,267.336883320473135 -143.579292237266429,70.154339345832966,267.31766919977963 -143.547535555066617,70.149484140268612,267.289392829872668 -143.502362506096489,70.13984363473844,267.250508086755872 -143.502285345392295,70.136618311171404,267.252045910805464 -143.515917779998745,70.124934060169664,267.271092068403959 -143.520396903066825,70.116105010486947,267.279850482009351 -143.521544391077015,70.104036062241263,267.287002933211625 -143.514375838500911,70.096179286120645,267.283980567008257 -143.507781290011422,70.093201464106301,267.279071499593556 -143.459648672369838,70.092678623457189,267.232631476595998 -143.362257077256658,70.094716949324848,267.137115316465497 -143.331412074842149,70.102874636813226,267.103171727620065 -143.322199828165623,70.110892805652014,267.090296573005617 -143.270194034409258,70.119035002111133,267.035879545845091 -143.259878145889303,70.119079249725743,267.025856423191726 -143.20444782532158,70.110073640585625,266.97648555226624 -143.164227915719948,70.09895467980401,266.94284556619823 -143.144316825305197,70.092749198902652,266.926512815058231 -143.117246043020685,70.078023945908441,266.907312381081283 -143.055586622014545,70.077942428417344,266.847428298555315 -143.042398996780292,70.093642642840777,266.827109881676733 -142.943850902486844,70.074137139341161,266.740617626346648 -142.751098131213098,70.042292982283044,266.567927261814475 -142.502315222277844,69.973379418226813,266.356604591943324 -142.457203452174099,69.957894605488889,266.319434579461813 -142.414233830211941,69.93341680113214,266.288305329158902 -142.408634387462996,69.916282049796024,266.290460193529725 -142.27642360108004,69.906818292251245,266.16492716781795 -142.244138751783026,69.896373138309926,266.137812523171306 -142.116973832537269,69.861940426777622,266.027776474133134 -142.085954740087345,69.855277217454059,266.000119870528579 -142.07987034925614,69.853098378391365,265.995067104697227 -142.077320015775229,69.846404484611128,265.995431660674512 -142.062988850399449,69.835109905129897,265.986161223612726 -142.013569275239064,69.800507326865812,265.952210264280438 -141.965001498575788,69.799658500555111,265.904630162753165 -141.941425681813314,69.804588034276563,265.879273808561265 -141.924079132168998,69.811091407663241,265.859409959055483 -141.870989899523863,69.812789673238967,265.806312304921448 -141.84709487229992,69.811712255292093,265.78318486828357 -141.717617370693631,69.789285521016993,265.664640585891902 -141.610472607066839,69.76148628620173,265.570066495798528 -141.532436051010563,69.735818337269208,265.503172749653459 -141.435071555730985,69.694939729962613,265.422939342446625 -141.439099611351452,69.675040996376893,265.434848073869944 -141.433081151901575,69.66245422736479,265.43386244494468 -141.398303075376447,69.640643213655437,265.407890701666474 -141.381937962209008,69.634428650019117,265.394046453759074 -141.28506894642635,69.630825004615701,265.298966551199555 -141.262777971706299,69.632047577667734,265.276283294893801 -141.25876832934037,69.636853595807025,265.270422334782779 -141.24817046733267,69.652282744973178,265.253880343399942 -141.214687498623533,69.683991482908155,265.208290499635041 -141.12346253027323,69.673330602076106,265.121693760156631 -141.006896780687157,69.645415597334718,265.016272375360131 -141.006703401055063,68.498206321243714,265.438765509985387 -141.006055951980585,65.839917757089822,266.327378010377288 -141.006055786851419,65.839263765929445,266.327578005380929 -141.00514135860314,61.901825417468238,267.314946518279612 -141.004825184418422,60.391621395633784,267.55526066198945 -141.004807734458467,60.306040211501596,267.566175516694784 -140.538052456039566,60.224171377181648,266.912340031936765 -140.47526254338274,60.310536943961651,266.814215518534184 -139.992103177228529,60.185200397968622,266.13812215346843 -139.701337311452818,60.340384620641139,265.71294913534075 -139.089648914909617,60.35763095312246,264.843484281562269 -139.085222845411806,60.323802756442639,264.838688435964286 -139.203301437790543,60.090681025335591,265.016697879880667 -139.049373656222684,59.998220434090207,264.799162066541612 -138.799025201961427,59.928693509303848,264.440844134427607 -138.704993823137556,59.910240002730255,264.305721189826727 -138.665701419917497,59.813716958568563,264.24972949270159 -138.665904112533212,59.810223029624282,264.250036064535379 -138.62385974335578,59.770558825498021,264.189361797645688 -138.563152329744753,59.741202814850922,264.101492138579488 -138.004030581611971,59.452184584101516,263.28229012992233 -137.607162514539823,59.243091041056864,262.689711796119809 -137.501422215756946,58.986736171164729,262.514724309556186 -137.529281562093757,58.906877381114114,262.549394940026104 -137.528152524679484,58.906915672720544,262.547722209244967 -137.450240903859765,58.909558066213826,262.432298257015646 -137.267617852331625,59.002398986075953,262.169873596169055 -136.866773684516659,59.138524790917465,261.59073995705694 -136.829512392948544,59.158442171157944,261.537849998101592 -136.584401149295928,59.16496745772519,261.177273503504694 -136.489497329205051,59.261166428479228,261.048517885617912 -136.469705302142188,59.284310356974423,261.022064481861889 -136.475842545782172,59.421738440832961,261.0462242141366 -136.368729321310525,59.448065014970716,260.892465675249696 -136.361045479118161,59.449856146840695,260.881432992406189 -136.304751737901597,59.464186087113603,260.800772832706571 -136.237139981944722,59.524789279473431,260.708929488435388 -136.240253914614868,59.558791477470109,260.717293207533658 -136.228665436504855,59.604629405939868,260.70550833363086 -136.193272962494348,59.639910783740035,260.657931877300143 -136.008080613812695,59.658220518199734,260.3909185025841 -135.857091573987475,59.691909166371651,260.17573435138911 -135.725388396165499,59.72959166919388,259.989410910755396 -135.480370984787925,59.79969529454997,259.643770421855152 -135.287848501451549,59.714968366049348,259.353010636754334 -135.16965624997178,59.632319743045585,259.168937885202467 -135.156032628289381,59.625239196255002,259.148029644973576 -135.117507456347482,59.623496091032422,259.09173678047955 -135.030370233065582,59.563776296809898,258.955316849052906 -135.032675868941567,59.482529873833876,258.94523490127176 -135.042941430183333,59.444878413082748,258.953919965773821 -135.032669415000328,59.407227344905756,258.932523344643414 -135.008076320170261,59.357306214893086,258.887927934527397 -134.995010790713962,59.330784695278318,258.864150260575116 -134.964861946660363,59.280467836243247,258.811001110821962 -134.769089711749672,59.231527282799767,258.514235367067158 -134.684806159282545,59.190942994993776,258.382406712509692 -134.569565790297588,59.128381914941777,258.200146553106606 -134.484117682264866,59.128176812314031,258.074044672772288 -134.392666870924643,59.032782710504748,257.918943900614977 -134.386503064611816,59.00197733136843,257.903214933350682 -134.372808888191855,58.971856672226473,257.876418004743755 -134.366636170314479,58.964002559602434,257.865561680868268 -134.331823153022953,58.919706772636211,257.804206694476306 -134.25337997910259,58.858162873650798,257.673888848163188 -133.9949277688427,58.774705441483469,257.269627259112895 -133.843234724452003,58.728119830133295,257.031976405531168 -133.726469240045759,58.626137695353925,256.831493789330125 -133.702667684114232,58.607424641736124,256.790990961715579 -133.562767578707422,58.522457643985881,256.558659859932959 -133.446192232405792,58.442559024083344,256.361514156684279 -133.438889410686926,58.391469434746419,256.336156018078327 -133.440508696851992,58.358220514517015,256.32917895168066 -133.362497244928193,58.284938475505811,256.190413850359619 -133.346530115383814,58.271065145728905,256.162251506000757 -133.225696199784835,58.186522750629408,255.954404348507524 -133.17923925707683,58.150307609231881,255.873051279224455 -133.079204306914448,57.999924311030689,255.674474806524813 -132.872088719122416,57.84311153495333,255.307799227535725 -132.759572908080145,57.705269269938924,255.089022094383836 -132.660877164102061,57.619666471787276,254.907737170346081 -132.56192219918546,57.504112411987535,254.714237724430859 -132.37071608734189,57.348878340891467,254.361548947170377 -132.25490892133837,57.215854115684024,254.131134836003184 -132.217156277884271,57.108369282737208,254.030416165478528 -132.117783986932523,57.045808308090294,253.850540698505938 -132.082812454684614,56.924363005753811,253.746718558482826 -132.007801082035058,56.843133749678415,253.595655988901854 -131.939273581116311,56.817640790914218,253.477425697259605 -131.889188923078109,56.77630099607174,253.381300103850663 -131.821493483238157,56.664915787343155,253.227070873603225 -131.738683428569431,56.613395034869164,253.074015513062477 -131.583897344791154,56.613503706761797,252.829734680242836 -131.431083445691911,56.537368938175952,252.554098567925394 -131.170588276723123,56.448602808722498,252.100758681073785 -131.090093429879943,56.4076641894031,251.953817411325872 -131.088364047766106,56.406784648424967,251.950656696222723 -130.784887147012597,56.367763157772259,251.450392110273242 -130.743273272724338,56.343206681927683,251.37226951867342 -130.625130593994783,56.268197148734707,251.147218203172088 -130.543819879785332,56.248277403755822,251.007825043052435 -130.4695199981401,56.240051205600558,250.885415691882372 -130.428214010403309,56.140941663137276,250.768769037909806 -130.248175231327735,56.097146648444472,250.458598648197949 -130.10539694613027,56.116969178482393,250.241182663477957 -130.03420317314081,56.037067781035233,250.084787677973509 -130.019502782550973,56.017600603625141,250.050796091556549 -130.006887099500432,55.99365749963227,250.017676281742752 -130.01581993159823,55.916662333109585,249.990181975066662 -130.087126039243316,55.824278258851578,250.054261829704046 -130.126335078465644,55.807320875371182,250.108047808520496 -130.131152772181935,55.802428902946517,250.113126982934773 -130.153207520018299,55.767312368714286,250.129437548108399 -130.1541201206783,55.746310909340934,250.119414288550615 -130.152670850867025,55.72738144556029,250.106700068339705 -130.150649037921113,55.715323810775345,250.096819231286645 -130.13212594042372,55.700089611657404,250.058566714636981 -130.114283679139504,55.682335465833035,250.019985569640994 -130.129343065995471,55.581568854571444,249.988385085947812 -130.122730889717587,55.564206463231962,249.967998727224767 -130.088006966129768,55.491807157836313,249.871123555116355 -130.046894186170249,55.452262101837775,249.78206764254719 -130.03276761375821,55.367990696760167,249.711078334599733 -130.026141666554111,55.338554641726475,249.683417403139174 -129.984929128511737,55.302376503857516,249.595472528599203 -129.983067747159936,55.296631700743532,249.589118727482855 -129.98263795998821,55.284528041962751,249.581413497217 -129.987958564635449,55.278058107217234,249.586337175220251 -130.004313783147438,55.26485512454061,249.605350027792156 -130.032739748267318,55.246890018430584,249.641302419826388 -130.099120902282493,55.198250958464328,249.721494843252003 -130.121492590782424,55.176372091350572,249.7453782716766 -130.147294771078464,55.146336379113563,249.7701605129987 -130.160686970747975,55.117402899926986,249.775285523384809 -130.19010773825778,55.064964739544152,249.792980982922018 -130.224076413659645,55.026290103855651,249.82615122012794 -130.261641130061321,54.98794238652745,249.865448194555938 -130.278121263982314,54.973230452283154,249.883934300392866 -130.342062259845534,54.921676556319895,249.958969413302839 -130.477158552160432,54.838402068512757,250.13292143587023 -130.571916959796766,54.791168418413051,250.261788626201451 -130.639295448042105,54.778754355749811,250.365866538137197 -130.660303485751541,54.762126388554719,250.39094075653702 -130.630617955859663,54.739640654579553,250.328803203068674 -130.647026867601085,54.737196379689649,250.354515451006591 -130.68775997424396,54.720390004716144,250.412123726680875 -130.688738778698706,54.717209075222812,250.41189521830529 -130.698363969152695,54.719644803290763,250.42923569958657 -130.739972277769965,54.753841950780135,250.517842781729996 -130.749777513684108,54.772896200392019,250.545028587803245 -130.735759900143819,54.779906295008907,250.525901061482728 -130.734752085632294,54.782916230322343,250.525968461297452 -130.738846868298566,54.795093796951392,250.539735596626997 -130.744868340028745,54.802209467518523,250.553766672499478 -130.776159655038128,54.821139270192326,250.616271891631186 -130.789997838477689,54.823198920451304,250.640289922244847 -130.791122061121627,54.79493770212806,250.625986757688224 -130.794673454005277,54.78507890872023,250.626206829212606 -130.809366011937556,54.777156825951543,250.645945311523974 -130.839403408272489,54.76573152086317,250.689049321226776 -130.857516534086955,54.766635114224513,250.7195077650249 -130.86941675076153,54.769361786077162,250.740736045874655 -130.904352625727768,54.781168714022627,250.805203563533723 -130.918488229234413,54.789909167040491,250.833527222275734 -130.935007382642567,54.807229325092671,250.870632513426244 -130.949652642924747,54.826337471981404,250.905613949522376 -130.943584601662934,54.841877156935112,250.904363371431828 -130.949896481803336,54.887021740259669,250.940160145051777 -130.962292554246943,54.918965572874086,250.978468663059175 -130.962961509964373,54.933972133618774,250.987948127090931 -130.951667866801671,54.968132575669614,250.988394032232463 -130.956070534463379,54.972388075062717,250.998003267683089 -130.977594184064827,54.975138660872865,251.03493420407176 -131.010352354178167,54.991584505793242,251.097914318554103 -131.014626684993004,54.996522276292701,251.107670089229941 -131.006783786950479,55.029888501104935,251.113184938207269 -130.989372001774115,55.065504866743225,251.104192517697811 -130.986300228955656,55.069228826970935,251.101198024116457 -130.986728222061203,55.084692383851021,251.110390751622617 -131.015786693202813,55.090350611663283,251.161154246889055 -131.032248358126481,55.099759000210874,251.193293540738523 -131.054871641884773,55.118439998857085,251.240564562380314 -131.073266994965223,55.138422050795334,251.281561530195177 -131.079221743883892,55.146456903615942,251.295669983141124 -131.088155343525983,55.158511174356718,251.316822378896177 -131.090073660155838,55.163313999584517,251.322558477520943 -131.096384509352902,55.191612076089122,251.348147127777338 -131.095183593840403,55.192988063092599,251.346922936849296 -130.987885727799437,55.247563812969183,251.200919667258859 -130.955539279863359,55.273369781251539,251.162023611366749 -130.954156479714726,55.291925296517135,251.169772588647902 -130.927653968585446,55.300990606489549,251.131419683806598 -130.912532856804461,55.300155949566232,251.106301911175251 -130.873913312813983,55.294058935398134,251.03999977465719 -130.867502118862262,55.298646190847414,251.032026876695454 -130.867502840715446,55.309747604074573,251.038041416555643 -130.87444262900587,55.314269365541811,251.051805101335049 -130.884734590056041,55.359107910751298,251.092765860259533 -130.92339330813482,55.428995170502816,251.193095547147095 -130.925578735463603,55.435386948863055,251.20005243178457 -130.922889444822545,55.446358705094028,251.201518285088241 -130.913339320509408,55.460255526923362,251.193387106060982 -130.900724941877598,55.470450515387547,251.178313148207963 -130.883894547785189,55.495855177971869,251.164477805607021 -130.873124022240432,55.534040365091307,251.167241845279932 -130.882617367835394,55.599224391839734,251.216994603164494 -130.904482992121757,55.697647265826681,251.303760145790875 -130.94163197115742,55.75509592972135,251.393413569778204 -130.987392128152663,55.799611761387979,251.489989977329969 -131.096581021477419,55.89593286097918,251.714397726580501 -131.17403450411237,55.943206950771867,251.862361737526953 -131.190058447405164,55.956264261843138,251.894541954621673 -131.219106812954351,55.984594484422772,251.955103774555027 -131.23260216625286,55.984594196411116,251.976747089996934 -131.239566925468267,55.982545606765228,251.986912078224123 -131.246121548691178,55.973942024279374,251.993204021826386 -131.248579214333688,55.966157906537404,251.993325327523053 -131.24433358055532,55.955322128941752,251.981186184100807 -131.159459623289052,55.901403374700699,251.818183928728104 -131.072758410670559,55.828811161551727,251.642297266051173 -131.055835419323586,55.800104291022095,251.600500214844942 -131.046143181340938,55.767259378965875,251.568168847821653 -131.04358189322258,55.763099545263053,251.561917452141643 -131.001251106462234,55.723802503207374,251.473503469489515 -130.968604677374515,55.689240129299378,251.402970349416137 -130.949438058619876,55.650983570345588,251.352157550863922 -130.93025407011055,55.576854987668476,251.282395833171904 -130.947778890470346,55.558001128344877,251.300899360328913 -130.981518562843917,55.551104599898679,251.351973870769143 -130.989703869901263,55.540141724839259,251.359501269645989 -130.996972453061744,55.47266741372119,251.335825982503593 -130.972179172943981,55.393555110298898,251.253584605641663 -130.950088275100029,55.381097921080205,251.210979707539082 -130.930759500330197,55.339702471251655,251.157320848666131 -130.935986030184694,55.332182568155396,251.161799349822104 -130.949183460843642,55.32267255142424,251.17820452246815 -130.96235808723398,55.316168452292658,251.196193217299879 -130.970912167228846,55.316902250941304,251.210536956787109 -130.966675195594803,55.332939897528846,251.212231436744332 -131.003185598914769,55.398285323214942,251.306564850732684 -131.011318074694685,55.405090963709213,251.323411154560745 -131.03163738467228,55.408667434762684,251.358369342982769 -131.035645399972822,55.393390770110848,251.356800769455731 -131.036781504656744,55.379631124946691,251.351353283971548 -131.033111331510838,55.377190269948379,251.344081190414727 -131.029890958612555,55.371665490418209,251.335902095772326 -131.022469398119028,55.348179295400833,251.311312961392105 -131.033941332462177,55.285060798331031,251.296292129904032 -131.074930474408404,55.25409779025312,251.346632107160985 -131.163071148314714,55.19775649480902,251.46055546682328 -131.191325943768817,55.193020029614082,251.504253988154233 -131.213809000394406,55.192653564484011,251.540849664248526 -131.238095422329224,55.197847905919396,251.5833585197106 -131.265669214309639,55.208591022910703,251.634179645217955 -131.299744063914375,55.235317556721654,251.704044474288821 -131.30528006654518,55.250488016964987,251.721089636906981 -131.280885636300269,55.260590252009798,251.686550240963697 -131.242775244409472,55.287427312748648,251.638453730382025 -131.233017901847774,55.29807322384103,251.628137093968689 -131.194184850018615,55.360797309859606,251.59780590981245 -131.194523361023386,55.368604087097253,251.602455889806151 -131.20008086580296,55.391320342599499,251.623411728069186 -131.205069000331463,55.39310318773186,251.632466153241694 -131.275038918345274,55.388041844380432,251.74376130849123 -131.294693737251151,55.384213533474465,251.773780718445778 -131.295634396542539,55.378951658826431,251.772577102296054 -131.289606041169748,55.35852835093452,251.752119813114405 -131.267197138595151,55.34590817474205,251.709002721123397 -131.257049063424148,55.329967830924623,251.684108725748956 -131.257694570980505,55.322374027600027,251.681178947910666 -131.287571355785445,55.286707384463007,251.71121212374419 -131.293788073103912,55.282021383048743,251.718901278451085 -131.329573169399424,55.266181066037994,251.769032693468034 -131.405513625078413,55.238334234677993,251.878555000759661 -131.427084743853499,55.239032758729977,251.914188658818603 -131.430816798784548,55.239684661568809,251.920630878768861 -131.440440350168217,55.248675590244481,251.94105271063745 -131.447383481362493,55.264758611968418,251.9607715876773 -131.466117772120441,55.283655689216076,252.001184845343232 -131.478189105234264,55.303528880887548,252.031177421100438 -131.465555673575608,55.312913887695487,252.015404773876071 -131.474564883858449,55.32365138800462,252.035648221150041 -131.496735467975441,55.332575006674212,252.07641392480582 -131.5124005355637,55.33257467478515,252.101968430913985 -131.517845845008253,55.328202355459524,252.108606343157589 -131.530787766128782,55.29561398702409,252.112972027622163 -131.539096598766463,55.292616894456977,252.124997251667082 -131.552630710992077,55.293653578977455,252.147632044740021 -131.569264590823082,55.306331873924023,252.181300149299204 -131.587429879641945,55.309851391244933,252.21275735553354 -131.641621004351464,55.339742412305029,252.316429323516786 -131.701334200907155,55.355132719334648,252.421616042032838 -131.735033790193285,55.377811375649358,252.487973003648221 -131.738532085921065,55.382163180811673,252.49585849698633 -131.739247762262465,55.392463880170517,252.502188893966377 -131.744428162831724,55.39833160776552,252.513567350804806 -131.831043525421734,55.445468466044076,252.678044731728733 -131.846755331465005,55.456995814104701,252.709301509894431 -131.848144642031855,55.522370982900256,252.743683707900345 -131.844285935683615,55.526999937592279,252.739682976156473 -131.796320772862288,55.541934546360366,252.669124757871032 -131.768976579114792,55.540303172122798,252.623935873620212 -131.735656035963046,55.54881264659344,252.574043753556907 -131.667234997834555,55.58177919766603,252.47932109888643 -131.656778686560813,55.592685121742676,252.467755699530244 -131.674078680380973,55.606826367640778,252.502764645032585 -131.685456976882222,55.61074101882781,252.523126576095819 -131.703699247683204,55.613936543701122,252.554251627996564 -131.726968575756899,55.632810533786831,252.601185119710863 -131.72893180606772,55.636181400094991,252.606011243537068 -131.729225144055505,55.641251255617973,252.608962001278996 -131.722156738808422,55.650533153013853,252.602049837820232 -131.714713747664717,55.666047888902668,252.597571924328804 -131.703760789756757,55.697210274803282,252.595030022785068 -131.70935844014906,55.706684898425458,252.608682560734451 -131.729082464632228,55.721075088102651,252.647532999515533 -131.736024155696612,55.731080669015547,252.663586127571762 -131.721925332758985,55.749347474449273,252.649639926850796 -131.70752471783328,55.755789606814396,252.629502545110881 -131.652244422123431,55.768977427707839,252.546664855442941 -131.642913501148314,55.785523179708782,252.539626722224057 -131.6427607744846,55.789604072848945,252.54135584179312 -131.655744245166119,55.795983624130116,252.565377869643271 -131.680833602237414,55.800084978907343,252.607811582274735 -131.693678490999474,55.7978087665958,252.627426816150546 -131.699831256215418,55.794015737832225,252.635522668249905 -131.703570946698335,55.789224787458231,252.639247450046241 -131.707879025148372,55.790186669700283,252.646658754907548 -131.713069162031502,55.806867109058764,252.663046064786613 -131.716366311140121,55.853508782917217,252.690693470649421 -131.704111789272332,55.861188837818055,252.674631187692285 -131.691669730063012,55.875733712573954,252.661550870165229 -131.689943486182045,55.887017446656195,252.664157732389867 -131.692135726965404,55.890477307111041,252.669334071688354 -131.723011125761985,55.894903529771504,252.721106394194067 -131.779363233712388,55.879027753667238,252.804240736179054 -131.830802294548761,55.877526696711065,252.886316247284412 -131.839588199718634,55.875714557989248,252.899602880701423 -131.833171907801415,55.856859201909707,252.880374498665333 -131.818933571939084,55.837693021550145,252.848368274047971 -131.779655493343313,55.823506241220286,252.778334273025393 -131.773869585275662,55.810273721358506,252.762696380726993 -131.782528395313278,55.79215002602681,252.768000268377364 -131.817375447555094,55.731596922698984,252.795250326395035 -131.828775629485705,55.718827026488064,252.807542128488421 -131.834020160329828,55.681589927086705,252.798115738667548 -131.831499206622027,55.667396367219119,252.787193610332906 -131.868004893356016,55.630928585320262,252.828687969595194 -131.900021214212018,55.604162636234122,252.867635288275778 -131.941927664702035,55.62409119973487,252.945145878940821 -131.965730166462748,55.615509928186803,252.979595083743334 -131.965250729854347,55.608955117805934,252.975671951659024 -131.947909273296546,55.572689480522058,252.93009062949568 -131.93929278084741,55.535400687975148,252.898058877326548 -131.974393453035276,55.49852895765553,252.93718630168587 -131.989094651109156,55.50086858086518,252.962216660380363 -132.017215698695992,55.515486580502383,253.014989688061178 -132.046376138434397,55.535989396178955,253.072236715815961 -132.063108669065315,55.54327683998536,253.102907058782876 -132.101126241363573,55.550260839715534,253.167975754477084 -132.117259328096537,55.550868480049935,253.194457965902984 -132.143723958860988,55.559254686696015,253.241413049399853 -132.150989209330675,55.562725436755599,253.254854843020439 -132.185815007269724,55.58837099123803,253.32350660674274 -132.201261881964797,55.615962905321418,253.361552067101002 -132.204110597930281,55.626617552601346,253.371173429302871 -132.200480092366661,55.634208421868443,253.368852403014898 -132.202160069655349,55.638833849791233,253.373743166215718 -132.218023358615312,55.682509727289322,253.419837013818324 -132.226782684381874,55.702005008622358,253.44307553768158 -132.240148361804245,55.711585462659443,253.469135506078601 -132.262736825322008,55.732530410693684,253.515336778946221 -132.286213864850794,55.762010108207626,253.56682940851897 -132.283051112588851,55.765835071640836,253.563476246781647 -132.267690840447642,55.762410492124062,253.53709770180285 -132.254351406113841,55.756483937550236,253.512826818972826 -132.232265288904131,55.740725836843609,253.469877040944993 -132.209568990812414,55.737225415689437,253.431582204066217 -132.193097313416956,55.742739616628931,253.407522219233215 -132.188097013211603,55.7533994333481,253.404384788125753 -132.187602729355433,55.779013748291824,253.415436448529363 -132.190115194182766,55.785832509754158,253.422640119679272 -132.185785205196453,55.801067189082715,253.422679266892374 -132.133035766016206,55.811657027071405,253.34248292632401 -132.11598380407591,55.812956355512647,253.31558449473232 -132.088674051387898,55.832674404817034,253.280688094906509 -132.070038871626963,55.875315652125025,253.270390694029629 -132.044427462564983,55.959030950470371,253.267721157521009 -132.072978531812765,56.046965991892122,253.353600066155195 -132.041005482742321,56.091529490704552,253.322535562328994 -132.036009760471927,56.095804484098821,253.316469305194914 -132.01393744835508,56.077592439753658,253.272884240373969 -131.972936835807644,56.114275343673356,253.223890938796103 -131.938375067945913,56.177439413915828,253.197225255891681 -131.946050148202261,56.192788845004138,253.2164052054286 -131.961486347273876,56.19499345637854,253.242042259313166 -131.996542356527385,56.19358174287872,253.297378028742969 -132.020777727409921,56.183385492771571,253.33150964230299 -132.037493359868307,56.1336634489057,253.335907883942127 -132.063637157872733,56.129585997379209,253.375888086855412 -132.106662827894382,56.10833963993462,253.43519573751837 -132.179594454350109,56.055936473215077,253.528521746397018 -132.132329656360014,55.958089098237799,253.408512527123094 -132.13810557219,55.941860410119418,253.410407510586083 -132.161694348213047,55.922794418413517,253.43964852206409 -132.172828154691075,55.919465270174825,253.456038727425039 -132.194523384879574,55.9219507401342,253.492061614990234 -132.226872066012703,55.930653815442447,253.548027431592345 -132.282592843574719,55.925070775650653,253.635114228352904 -132.323115438896934,55.887879912300114,253.683565252460539 -132.322426538500309,55.874579285949018,253.676457560621202 -132.311932882769185,55.86529176071771,253.655359742231667 -132.312575698430834,55.862533821505508,253.655147740617394 -132.325868031799786,55.852110819580176,253.671848781406879 -132.374924062457438,55.850590813936606,253.750215236097574 -132.379144277324002,55.853608642244552,253.758374888449907 -132.399932053487134,55.879097509619214,253.803306777961552 -132.400977406579415,55.884282347285044,253.807311579585075 -132.399709856540937,55.905775794410928,253.81487974897027 -132.403824911378109,55.950695497112164,253.841498878784478 -132.448803668947818,56.018891706074918,253.94383140373975 -132.495436052262647,56.066659431416475,254.039461203850806 -132.524717853242123,56.077257521956916,254.090979341417551 -132.576318552401546,56.070921587020706,254.170938142575324 -132.624433678666492,56.056360946819446,254.241809244267642 -132.624132202039959,56.04939513966908,254.238333890214562 -132.631794419080592,56.03764629035738,254.245573397725821 -132.642718157617878,56.033415170065723,254.261279327794909 -132.687262625218438,56.082541902347415,254.353706191293895 -132.711341725928293,56.112341591270507,254.404913747683167 -132.726043074632855,56.146030378702591,254.442647747695446 -132.720994014440151,56.217918577802294,254.464677852578461 -132.692541398303376,56.238958630855038,254.428031185641885 -132.67512440332024,56.23965398590552,254.400526095181704 -132.666865168047167,56.2365472451446,254.386046494357288 -132.646902874674964,56.233022766336909,254.352710290811956 -132.618449897541325,56.234388340221777,254.307871762663126 -132.604148268701181,56.240281491073276,254.287526815198362 -132.584725901584306,56.279031885034215,254.27282901853323 -132.584689361767573,56.285671710888401,254.27555510122329 -132.577680107611258,56.296683571316905,254.268999780528247 -132.545735512612566,56.332491315615748,254.233117273077369 -132.532019913750531,56.338770445209988,254.213914993219078 -132.444499756789554,56.354199919303042,254.081142855808139 -132.434291602754058,56.35238018606163,254.064136759378016 -132.424701380564329,56.349558465791105,254.047688742168248 -132.406337320170564,56.335029240544252,254.012317757122219 -132.384423589295182,56.310975341591153,253.967205801978707 -132.383231379791624,56.308004445147709,253.964040658436716 -132.385449790230382,56.299422622908196,253.963912975974381 -132.366621901376845,56.287346344029118,253.928755230270326 -132.361366141746913,56.291020360197628,253.921954421326518 -132.351806062899897,56.304676206617025,253.912571409717202 -132.343337631255793,56.341973410553145,253.915021870285273 -132.363794395124472,56.380844954983665,253.964071987196803 -132.396937830038695,56.485793511154036,254.06077918317169 -132.392050223221332,56.491581466100243,254.055444677360356 -132.385049246624988,56.492186600909271,254.044601267203689 -132.365225906632816,56.488119132503222,254.011484370566905 -132.25605991147458,56.449757473947521,253.822217125445604 -132.248145306152509,56.441433860197634,253.806123030371964 -132.236591561010698,56.416955744870506,253.777352776378393 -132.244664368976487,56.413879651569935,253.788857720792294 -132.241136314452547,56.398926116771406,253.776865000836551 -132.225798245790941,56.384237828947114,253.746202860027552 -132.207028360303241,56.372307543066313,253.711243427358568 -132.201930273762059,56.37127567941485,253.702695230953395 -132.183820342368819,56.387349648952735,253.680837784893811 -132.182012594937049,56.391044591473104,253.679556859657168 -132.184310195724123,56.399557320403382,253.686870125122368 -132.211235315175259,56.457344240021357,253.75434198975563 -132.241711772814,56.476889078305952,253.81097155995667 -132.262280600397958,56.487847352290757,253.848210351541638 -132.28242253442491,56.486097964702495,253.879394887015224 -132.293144644303169,56.487233704815807,253.896867238916457 -132.360236783245938,56.529222175461499,254.020726163871586 -132.363966161394472,56.534445960206497,254.028803431428969 -132.369764022784352,56.574790794013467,254.054705886170268 -132.366513005414674,56.588825502339546,254.055365384556353 -132.36108713857962,56.595478715606852,254.049536117352545 -132.32198099718525,56.607328842525135,253.992638195864856 -132.299967563048426,56.630031748177814,253.967263211496174 -132.286896526071388,56.636911561041707,253.949473382905126 -132.28276975252291,56.65204661409642,253.949219747446477 -132.284146696202896,56.665805621344404,253.957073719240725 -132.301346894551841,56.678188413676324,253.989302058704197 -132.316482164758952,56.676812159939544,254.012604577466846 -132.327489543361082,56.67406012074197,254.028834515251219 -132.351567877249892,56.6644282682553,254.062865437939763 -132.374271514790479,56.672683212025689,254.102056546136737 -132.39215878862251,56.672682826725243,254.130270110443234 -132.40660600328016,56.669930700164137,254.151937617920339 -132.454764258308899,56.672681478118292,254.229021647013724 -132.470588194634388,56.680936569922906,254.257319642230868 -132.531131228266247,56.702261797978437,254.361355060711503 -132.525084530187542,56.716461477870496,254.357507926411927 -132.51981436094303,56.728837609026414,254.354152602143586 -132.435075975374843,56.782591066130593,254.242278013378382 -132.373725245738541,56.816619525466905,254.159475322812796 -132.376308535531166,56.820559369836367,254.1651147948578 -132.392822974570407,56.826042874494043,254.193255452439189 -132.407257990394385,56.825711571403595,254.215799177996814 -132.441023767323941,56.821321954095929,254.267095969058573 -132.508204393304737,56.785689409928978,254.358528542332351 -132.522147712284749,56.775659364481648,254.376477408222854 -132.523401618604623,56.760320728248075,254.372353362850845 -132.534691435677956,56.757345560637305,254.388939527794719 -132.559447507674037,56.757446024206004,254.427945865318179 -132.640149408334025,56.781111680171506,254.564267389476299 -132.773099796978272,56.837683371150327,254.795210501179099 -132.794786191748699,56.856348428735863,254.836413348093629 -132.799804835028084,56.865118097753758,254.84763767849654 -132.796298930360592,56.866560136878263,254.842683576978743 -132.795425310524593,56.871869021069877,254.843335211277008 -132.799697761482349,56.877985773678397,254.852369248867035 -132.82059018957824,56.897095838118837,254.892401437275112 -132.832046698449091,56.903767421664604,254.912893516942859 -132.849445249737784,56.910828866984176,254.942841365933418 -132.873042392644919,56.92587497640065,254.98549069557339 -132.914675455330212,56.966842041676159,255.065999081358314 -132.921674431672301,56.993863209284989,255.086963959038258 -132.895095321906865,56.993206800707526,255.045134630985558 -132.856344125577465,57.005534328750663,254.98909214604646 -132.816393838471384,57.030409568224343,254.935884967446327 -132.834932811428558,57.070598159936402,254.979751859791577 -132.855997567487123,57.080266462022621,255.01620234362781 -132.872829486823662,57.078613138981886,255.041867911815643 -132.8779098532153,57.069766250431258,255.046546486206353 -132.919197800578786,57.040275096078631,255.100197244435549 -132.940231449229515,57.048509434226666,255.136083329096437 -132.987019031975279,57.055032257868469,255.211558372713625 -132.996654415509482,57.032540614102999,255.218422026373446 -133.027762304524657,57.057508313786357,255.276102920994163 -133.079195199927142,57.081917588045357,255.365218248218298 -133.128020829210641,57.089074351329366,255.443994251079857 -133.164162714794656,57.08644663449828,255.499476063996553 -133.190788969129414,57.089154989928495,255.541999333538115 -133.211442527949998,57.109880023120382,255.581540533341467 -133.212978171862403,57.118633770653275,255.587013449519873 -133.209372558331211,57.124014714097662,255.583280093036592 -133.227374525515586,57.136702006670454,255.615796915255487 -133.23759865046182,57.138116749737812,255.632230695337057 -133.250132593164921,57.136981506513862,255.651374674402177 -133.325075981902643,57.112905485511867,255.759879154153168 -133.469652680407421,57.159530184392992,256.001283907331526 -133.519916513278417,57.177947676055638,256.085799556225538 -133.519919127155703,57.17794863382322,256.0858039483428 -133.547543950960204,57.242740418014066,256.150392847135663 -133.545292545888543,57.250852264972082,256.149577918462455 -133.525566572303632,57.278749999719913,256.128148809075356 -133.492469481869364,57.305362058286583,256.085550239309669 -133.478621662736003,57.308152289872794,256.064979462884367 -133.45866732763804,57.304140822520367,256.03267799783498 -133.447688844283931,57.297900215490102,256.013561575673521 -133.445166265366623,57.290149462345951,256.007064078934491 -133.42867793890062,57.286166919030848,255.980131182819605 -133.374320886395452,57.286886081219528,255.895961811766028 -133.3102950059926,57.290226388369312,255.797674292698503 -133.2897829175607,57.303094515272434,255.770195178687572 -133.277561947511572,57.330799096219778,255.760619703680277 -133.286243150438452,57.33329284614576,255.774925937876105 -133.3448035418198,57.336970483516545,255.866975578479469 -133.357453303704631,57.333425296296227,255.885404809378088 -133.406602100781811,57.342855995901886,255.964765231125057 -133.445416930760047,57.353014901936774,256.028306005522609 -133.456518204389624,57.356409576979075,256.046633529476821 -133.471002825284927,57.364386065476026,256.071707147173584 -133.474775162405535,57.368819874156735,256.079008703120053 -133.478735044302283,57.380562498652068,256.088993168435991 -133.475191637592957,57.388614377323051,256.086140820756555 -133.463917073300991,57.394745471435215,256.070688757114112 -133.50585755628893,57.453694111432249,256.154743176884949 -133.527885356376487,57.49050873064445,256.200615525245667 -133.528576215871198,57.501941436076244,256.205339234322309 -133.519498367415139,57.544074605504377,256.204762699082494 -133.51355567477458,57.548302631893023,256.196943309158087 -133.499114695451112,57.548935930890003,256.174877972342074 -133.49094687709146,57.551551045053706,256.163117922842503 -133.480836637489574,57.561894013500897,256.150829599238932 -133.4839723779412,57.57163370837619,256.15876392275095 -133.508733951841776,57.578621999240461,256.199135020375252 -133.531064652661911,57.574106622651449,256.232112630270422 -133.534656321477712,57.569628653333574,256.23623185697943 -133.540611168489477,57.567454576537472,256.24472186435014 -133.568228902549038,57.56325707724497,256.285963945090771 -133.581699077708265,57.565255735244293,256.307354902848601 -133.623512195612477,57.579079488147968,256.376118566840887 -133.667144749825695,57.611865740679974,256.453486954793334 -133.67920479129603,57.625350150575166,256.476201311685145 -133.683720547417664,57.64842249282264,256.490225099958479 -133.661312041445512,57.708080539630643,256.473997498862445 -133.657292473390214,57.713845488328531,256.469580276869237 -133.58497445161214,57.715253031952336,256.35900133382529 -133.546688962763824,57.696613316120327,256.29447248019278 -133.533717213332835,57.687073829027646,256.271590729244053 -133.525002950036509,57.683823097461307,256.257193650119007 -133.492436393413783,57.677301964873323,256.20512577611953 -133.443973911438661,57.672175145150874,256.129051279276609 -133.407738216209964,57.663946133632628,256.070763785392046 -133.237351701573516,57.608917175873628,255.790991411544383 -133.191616117879619,57.589240648115165,255.714123654179275 -133.181813951634211,57.587316908150406,255.698394642211497 -133.16521687130637,57.599965963540036,255.677018671296537 -133.176785672202755,57.610231463380877,255.698210859671235 -133.25388285686131,57.65013282027364,255.829836994409561 -133.28096681515251,57.662024943263148,255.87531359679997 -133.293820107159405,57.665523578778952,255.896193778142333 -133.325290207223247,57.665994881446515,255.944706808775663 -133.488167069592748,57.738836576649661,256.217739117331803 -133.547797417758943,57.768127572405625,256.318195169791579 -133.562656170418535,57.777614020638296,256.343865943141282 -133.558865033570072,57.788986830909884,256.341526399366558 -133.572560469837526,57.859519846807856,256.383847604505718 -133.604805158887444,57.86054813980158,256.433452259749174 -133.612951642192854,57.860807933645134,256.445984377525747 -133.634075612366189,57.84691980341163,256.474131846800447 -133.636702919659598,57.838182734466727,256.475537548772991 -133.64476590297059,57.811369419525107,256.479841638356447 -133.641668292700899,57.8034776760706,256.472728452645242 -133.638347024603263,57.800054830553769,256.466612999327481 -133.639822437807055,57.792357982722912,256.466555420309305 -133.642443301433559,57.790515969645931,256.47001516725868 -133.660881028263674,57.786522662844064,256.497058469802141 -133.680201079172235,57.786747235670738,256.526724277995527 -133.699552761922348,57.79522860981195,256.558905160985887 -133.705865548955614,57.792305542060276,256.567702179774642 -133.711909604242777,57.792892396025231,256.577135430648923 -133.817477865196452,57.833129126589611,256.750625575892627 -134.002115969538124,57.999158136013591,257.079669889993966 -134.060309198908271,58.039610904940147,257.17935239430517 -134.074509400236394,58.054775235778727,257.205068352632225 -134.091998901123048,58.082671861091455,257.239179897122085 -134.147611624078337,58.171376891608077,257.347135937772691 -134.589902858457094,58.205926380224192,258.026113699190319 -134.706158915296385,58.276656829560601,258.218861564993858 -134.842120881784354,58.359376393166606,258.443110388703644 -135.076921804035038,58.50222978247357,258.827405671589077 -135.199196919411833,58.907969860910057,259.089540499262512 -135.221992484308828,58.975064857624893,259.135599547065794 -135.178620372373814,58.973961841656376,259.07111475430429 -135.182982367562744,58.99796421083235,259.081940940581262 -135.211457960050183,59.07691482965096,259.138189842924476 -135.241144435852505,59.130222995566157,259.191341370344162 -135.286846698983368,59.192618611198313,259.2693608449772 -135.371219702198061,59.26335819205088,259.405170050449669 -135.433225143000101,59.327280423512171,259.506381643004715 -135.439331175083197,59.315871536031594,259.513556159101427 -135.447415944803822,59.277770186752043,259.519439127296209 -135.432487981962566,59.242804281967985,259.491941835731268 -135.406572289313431,59.222850293641507,259.450606963597238 -135.366944318329843,59.211487421461172,259.390432370826602 -135.345135482495323,59.177910641791954,259.352764929644763 -135.332337365834405,59.152786477936473,259.329698313958943 -135.380700901755233,59.099348585262334,259.392079811543226 -135.385225684427667,59.060836337940231,259.392256614752114 -135.385510401153425,59.033453939604492,259.388013563118875 -135.34224307988066,59.017756246300955,259.321274880319834 -135.329578559763718,59.011558664458768,259.301447917707264 -135.325471254134072,59.007901836731278,259.294728421606123 -135.300156263568113,58.959951465841449,259.24876866210252 -135.301486903678722,58.919354344496909,259.243491181172431 -135.308765425942539,58.901432585385109,259.251078587956727 -135.325480376008983,58.900753231145629,259.275784092955291 -135.342805416122161,58.889047111034131,259.299425398930907 -135.287508566529056,58.818208927991705,259.204301853664219 -135.277054152683377,58.813217271576534,259.187812506221235 -135.251834318381128,58.790974331091199,259.146103694103658 -135.24604867979221,58.783208634478925,259.136025511659682 -135.236722782045661,58.735584919692123,259.113112666644156 -135.14515705514026,58.616472654323566,258.95300708245486 -135.138675775212164,58.588328441989937,258.937660533003509 -135.140347936747133,58.577938643543924,258.938076136633754 -135.144992880343978,58.577210557930059,258.944893172942102 -135.148352980979922,58.578435455788878,258.950176983140409 -135.156659655158734,58.586729082454589,258.964293112978339 -135.161895377049035,58.595627762998724,258.973919492214918 -135.189190571817875,58.597872110103424,259.015264769084752 -135.193377141006494,58.592519140632533,259.020475612021983 -135.192199833833456,58.576346537813336,259.015494149178267 -135.168690431720165,58.546708737061948,258.974291712976992 -135.135098386891912,58.496641630900029,258.913663799874485 -135.091802474428107,58.423130285436869,258.8332559177652 -135.060884592031783,58.349557677235708,258.770996930077672 -135.051872398422006,58.30940681334193,258.748709531500936 -135.056296911359738,58.290610156275527,258.751304071396589 -135.059360770671077,58.288811131142566,258.755542906932533 -135.063260902727421,58.290450007079684,258.761794832535088 -135.072584887057332,58.302805512873078,258.778568797744811 -135.098623468804163,58.297344068850286,258.816732808947563 -135.104019105254196,58.292718058747994,258.823888460174203 -135.110506926684224,58.265145563224074,258.827732773497701 -135.101911346714218,58.245208220555739,258.810392309911549 -135.059027971294711,58.189998462612003,258.733281283639371 -135.076070035398402,58.190689072415616,258.759265592321754 -135.090673790992611,58.20018652783304,258.78349821921438 -135.115669921040791,58.201665944456217,258.82169983163476 -135.161857623882213,58.210289727443659,258.893560254946351 -135.223085655448301,58.23569378459829,258.991749827750027 -135.230540762551897,58.237009589945437,259.003315848298371 -135.249513728635975,58.23647718601898,259.031923624686897 -135.280002525222898,58.233742581243192,259.077500662766397 -135.290504631777736,58.235041320089138,259.093673476018012 -135.309312268896548,58.243023719023206,259.12381836771965 -135.347675485419131,58.27090122011483,259.187655187211931 -135.40107201087298,58.327792710798441,259.279950567521155 -135.410872229934171,58.343102136663148,259.297822253778577 -135.435878768027777,58.400000256852579,259.346834724768996 -135.450198418379216,58.399992334763226,259.368410698138177 + + + Florida + + + Florida + 0400000US12 + 12 + 53624.758999999998196 + + -80.251508208063385,25.344271931695623,85.571619968861341 -80.255843432317704,25.338678299320989,85.552673892118037 -80.261064466077144,25.326983936269507,85.507396411150694 -80.269065624137212,25.323018113089358,85.501219028607011 -80.289111807638378,25.285180155244497,85.35927724186331 -80.308512071600234,25.25990748224708,85.273272565566003 -80.35232759282593,25.192965048003625,85.034053879790008 -80.35494760652135,25.186656393749068,85.009260640479624 -80.350783391482111,25.171176308744862,84.932744432240725 -80.359498484394948,25.156425101291038,84.878559871576726 -80.378012740447886,25.132840340190633,84.798667958937585 -80.400696106589066,25.110890459572083,84.732354530133307 -80.429247677848792,25.097902027389722,84.715524960309267 -80.43196169388419,25.091605372464478,84.690875900909305 -80.444304883705456,25.078440052306092,84.649215521290898 -80.462941273904477,25.072291289233682,84.648850821889937 -80.474800478568994,25.0626097719353,84.622340840287507 -80.494811782959843,25.040859898264504,84.55292668286711 -80.490050617167896,25.033659342572701,84.513026375323534 -80.495711687233282,25.025377783889493,84.483671562746167 -80.53892645135619,24.992604400788519,84.398402811959386 -80.566762860570208,24.960517075582491,84.293348867446184 -80.572599963166681,24.956021298207229,84.281509204767644 -80.589204332353617,24.953515338760464,84.294798230752349 -80.59700549220284,24.950535461729203,84.292812636122108 -80.612625783696799,24.940782926287707,84.271547699347138 -80.636504150060887,24.91536724278399,84.191023375838995 -80.660328589072009,24.899797992047347,84.155409600585699 -80.662213650144977,24.9020688492039,84.168607372790575 -80.661131664583309,24.907344551540103,84.19111112318933 -80.65169846804028,24.910485429352011,84.191385539248586 -80.642239293796806,24.916675131439181,84.20555991306901 -80.624799013939977,24.933599264368997,84.256880958564579 -80.623828690700691,24.93795001952418,84.275311475619674 -80.625105079980543,24.941420811373082,84.293070969171822 -80.622591060479138,24.946627526865218,84.313105371780694 -80.598006593309705,24.960853860595879,84.341427772305906 -80.582063267773165,24.967099600403991,84.346193125471473 -80.579117184400531,24.965172729910993,84.333006982691586 -80.571745007595581,24.964576810405045,84.319306535646319 -80.559716796366985,24.973866350304498,84.343812116421759 -80.545041667292992,25.002275805367933,84.451630403287709 -80.54418570323827,25.009696383306846,84.484209585934877 -80.546902822876802,25.017128938209272,84.522152564488351 -80.525429336911884,25.019303947502337,84.500137113034725 -80.510067063202712,25.030675388985959,84.529158480465412 -80.502256979399618,25.043793682746006,84.57736015226692 -80.496499890378729,25.04985436998604,84.596432871185243 -80.489830753959012,25.052467261400707,84.598436523228884 -80.482127622612907,25.058960935979158,84.616591377183795 -80.461582309826113,25.08125978183455,84.687687306664884 -80.466426419673411,25.088964345444207,84.729962577112019 -80.471141710376941,25.091793248466693,84.749840691685677 -80.482693902698529,25.094259901668007,84.778216013684869 -80.495646284539561,25.104623224325003,84.844620240852237 -80.485119092166755,25.111783878639599,84.861584331840277 -80.478410919687931,25.109761037079213,84.842422927729785 -80.477104828888514,25.101808502599617,84.804286798462272 -80.464917581947418,25.09556519033374,84.757780216634274 -80.451329144005811,25.09110627977326,84.71732060611248 -80.445817046694359,25.095321071940596,84.728338168933988 -80.434504882500221,25.108671375218478,84.772345864214003 -80.43442894386493,25.117018895788608,84.810227008536458 -80.448589225262126,25.150080562651269,84.98161768913269 -80.447403061246149,25.153638863815509,84.99603913910687 -80.414189513346315,25.139405891761349,84.882097811438143 -80.404106891206098,25.144150346642633,84.88874667044729 -80.39639669399115,25.15304613655767,84.917789198458195 -80.388093486643498,25.173209862098894,84.997173431329429 -80.38927976760867,25.185070839853083,85.052833709865808 -80.392838424179786,25.194559606882432,85.101211804896593 -80.388093693588175,25.200490129383983,85.121132087893784 -80.37089394065184,25.208792920399315,85.13340387865901 -80.359625095795764,25.209386050245573,85.119436866603792 -80.350728678480877,25.212944402957934,85.122447819449008 -80.338273772581445,25.233701203377489,85.198289137333632 -80.334715370672498,25.256237102523162,85.295303559862077 -80.337087811431587,25.263946717651141,85.333781283348799 -80.343611946389487,25.270470223009251,85.373004443943501 -80.369115220020788,25.284703250460193,85.475217196159065 -80.364963571472003,25.288854621240155,85.487901328131557 -80.340350059335506,25.292413071915313,85.467676555737853 -80.33560525194595,25.288261758571938,85.441852726973593 -80.329674289625558,25.288854844945515,85.435785496607423 -80.316626212063156,25.296564568854773,85.451476030051708 -80.293495559126342,25.316728387726137,85.508733111433685 -80.290530151276059,25.327403297975522,85.552719821222126 -80.276889063927612,25.346380959612329,85.618556822650135 -80.265541843539992,25.356663699293076,85.648391143418849 -80.257910091501884,25.363579518089505,85.668454443104565 -80.255537858725461,25.383150151317192,85.753517069853842 -80.251979343962603,25.393825065993365,85.796564218588173 -80.247234633881888,25.400941690802981,85.821764580905437 -80.227069374698075,25.408651472097823,85.826956407167017 -80.219952241183037,25.413395909821499,85.837939481250942 -80.215207498996449,25.419326439445726,85.857772552408278 -80.207497376650508,25.436524905217322,85.924166113138199 -80.200380392951018,25.460839985820058,86.023545460775495 -80.193263336652294,25.475666257718103,86.080034078098834 -80.190891026845193,25.488120309009421,86.132764684967697 -80.192670397887568,25.497609084127006,86.178196574561298 -80.189705004089831,25.510063139402551,86.230027148500085 -80.180215538283491,25.521331140638107,86.266916860826313 -80.175470769031122,25.52073813154146,86.257278782315552 -80.174877388904335,25.485155157268611,86.095869179815054 -80.184959916200924,25.470921905557827,86.04641935788095 -80.205124803559613,25.414582095790195,85.821501645259559 -80.222917626255025,25.399755748831797,85.78062401805073 -80.238930992224638,25.364172685301121,85.643197414465249 -80.241303261383081,25.349346433392501,85.579571704380214 -80.250792781611366,25.345195028712428,85.574746366590261 -80.251508208063385,25.344271931695623,85.571619968861341-81.583875736541145,24.661104932660184,84.458493418991566 -81.581486906379283,24.671512253811976,84.502577208913863 -81.563869561924349,24.695283482986767,84.584625291638076 -81.55856307894804,24.694859029602405,84.574564740993083 -81.543068061728263,24.68339805517201,84.498326190747321 -81.536275755680393,24.681912403788207,84.481130703352392 -81.51993184532985,24.690189949794235,84.494112795218825 -81.517384827856844,24.702712250368894,84.5476307971403 -81.513351934262971,24.70610814790323,84.557036636397243 -81.49191378397957,24.712475548971671,84.553486836142838 -81.477592897949194,24.713614123560742,84.536848892457783 -81.475137200278397,24.708703227652677,84.510593132115901 -81.470225875899615,24.706657046080952,84.493720098398626 -81.459994002789955,24.709726430465423,84.492181011475623 -81.455082716371024,24.713205026663012,84.500634910538793 -81.452831729259458,24.716888222828381,84.514083146117628 -81.453650447535324,24.738578081588368,84.614711094647646 -81.457538599118777,24.742465863643371,84.638447132892907 -81.452218063569035,24.749832269304232,84.664071555249393 -81.441781433892046,24.737759673730633,84.592867938801646 -81.439530355047225,24.729370212239989,84.551001608371735 -81.436665400545849,24.726300908798205,84.53257105499506 -81.432981912084699,24.725277824278081,84.522268733941019 -81.423977904191119,24.734281221410694,84.549800503067672 -81.422545490045678,24.74001062822062,84.573865409009159 -81.428070781253737,24.748195448271286,84.619773118756711 -81.431549631513803,24.749627779621225,84.631633588112891 -81.431958948431472,24.754129442181888,84.652872250415385 -81.426433728762063,24.75535720589076,84.650076081976295 -81.403718882858684,24.751469543103454,84.597675791010261 -81.393896213436534,24.745740211489824,84.556478850543499 -81.391235886255274,24.740829313672773,84.529932700097561 -81.390417282376376,24.733667567669215,84.495874583721161 -81.386529121471227,24.72855206083932,84.466514715924859 -81.361358508734199,24.711159404114209,84.348482795991004 -81.346829217714202,24.709931768284171,84.320749776437879 -81.320229435447217,24.703610195804572,84.251312379725277 -81.315734259921385,24.694136773803773,84.201027047820389 -81.314880156630338,24.683080420734438,84.149003256112337 -81.310610939505267,24.667391358157342,84.070509254932404 -81.298974608415051,24.659148909887495,84.014980873093009 -81.299315597834791,24.656701049823194,84.004259777255356 -81.304059687397952,24.654040174393977,83.999253107234836 -81.333778282438317,24.641903691763428,83.988714411854744 -81.396044580630402,24.623438371712009,83.998707173392177 -81.402894757574657,24.625940183170751,84.020640818402171 -81.404267915581201,24.642669202770659,84.099568072706461 -81.415136218308433,24.649541735000163,84.14768881816417 -81.433264627355229,24.648323691237177,84.169737435877323 -81.449572959840324,24.642546923754345,84.168091935105622 -81.471361476005214,24.644359680725302,84.209666601382196 -81.481901742758055,24.647495431897401,84.240153620950878 -81.482780780043527,24.649743295747758,84.25181420892477 -81.478865708889046,24.652267173894227,84.25742151401937 -81.477360699206628,24.655570991496443,84.270287683233619 -81.481454843296888,24.662130584567763,84.306641329079866 -81.499531299644147,24.667353166783624,84.358207047916949 -81.503943370246887,24.66325037716361,84.346121485345066 -81.506536382506738,24.656982724844354,84.321321794763207 -81.509691376430979,24.646584309007505,84.278416856192052 -81.50997928694089,24.633891044763637,84.220583025366068 -81.512116287887977,24.627510402059123,84.194548971019685 -81.519546422527029,24.622679635832188,84.183719701133668 -81.54740202323876,24.617270774019801,84.201471788808703 -81.603951109617341,24.588821070534912,84.15733621455729 -81.665163416706619,24.57552045674726,84.190065982751548 -81.6756485911949,24.566736901507486,84.165783183649182 -81.686232791881508,24.561117161557338,84.156196672469378 -81.692529945269726,24.562264054897252,84.171139392070472 -81.73346685942758,24.558800996988559,84.218117310665548 -81.76694959544686,24.554481036113991,84.249750248156488 -81.787114016360789,24.54895822977041,84.255391001701355 -81.811290556821632,24.547079185709173,84.283979201689363 -81.813847628893612,24.548846066546876,84.296041179448366 -81.815403794545659,24.565957060054611,84.377087914384902 -81.812343771221066,24.572126720219057,84.400725712068379 -81.80163353487184,24.573365716153781,84.389927045442164 -81.795014497056499,24.588375884311855,84.44869485963136 -81.774765024435695,24.587353072578658,84.412836780771613 -81.749027473101364,24.592574932169178,84.397240702994168 -81.740197268568423,24.592349001407371,84.382628622464836 -81.735529117110318,24.586524370049894,84.348696242086589 -81.731429006320127,24.584336523418603,84.332343006506562 -81.716899718041205,24.590332266697086,84.337563512846828 -81.716435741857907,24.594874005342941,84.357714178040624 -81.706319749085083,24.600022617138258,84.365825112909079 -81.700304005356287,24.600022655320757,84.356587277725339 -81.695190570483064,24.594308201186443,84.32248679548502 -81.687971698875899,24.594909771655921,84.31416735611856 -81.679549694073955,24.600022787007923,84.324727015569806 -81.669924595611448,24.61024877346156,84.356923257932067 -81.656690039463157,24.618670205947495,84.375292218290269 -81.63804129798477,24.623783286311891,84.370173874311149 -81.615783223998719,24.645137569675928,84.434084708802402 -81.615482491539069,24.652957397168546,84.46950641553849 -81.598638463667641,24.657769701758053,84.465790453366935 -81.588712499988361,24.658371287990235,84.453355058096349 -81.583875736541145,24.661104932660184,84.458493418991566-82.151645590096081,24.578705170801314,84.95557024423033 -82.144040547154816,24.595768224754764,85.022068182937801 -82.136388398997696,24.599252070749007,85.026177533902228 -82.126233171078979,24.599799103983656,85.012932291254401 -82.105151618863218,24.590629773560718,84.938163646496832 -82.102015519764691,24.587053002139701,84.916885945945978 -82.100381389331659,24.574896721258384,84.858551505953074 -82.105393417022228,24.563542351189231,84.814189466647804 -82.117751607512361,24.551519973196328,84.778143491595984 -82.160404574810485,24.550587754510804,84.840071723796427 -82.166171736740665,24.554534487346796,84.867155216634274 -82.165391804831145,24.56574983818998,84.91744262073189 -82.151645590096081,24.578705170801314,84.95557024423033-81.250744618460558,24.675731251346566,84.017847277224064 -81.247040551454759,24.678206131081406,84.02358468528837 -81.244177471409216,24.676372255502148,84.010821758769453 -81.245706470622025,24.671576524120862,83.991128157824278 -81.28272421003814,24.656125187737562,83.976401862688363 -81.279258180411958,24.662822820842159,84.00188862066716 -81.260951865751053,24.677222100570987,84.040186214260757 -81.250744618460558,24.675731251346566,84.017847277224064-80.910892550478351,24.783524141275773,83.998693479225039 -80.907226380411757,24.77223781728658,83.941455568186939 -80.912980477951095,24.767421059962878,83.928031643852592 -80.939482112453746,24.76990575005464,83.979299300350249 -81.016873551096168,24.722254023831141,83.87741435598582 -81.024734711089351,24.719274147155705,83.875604400411248 -81.02955685089907,24.722990901591395,83.89993308018893 -81.033387990195891,24.729695489165593,83.936469888314605 -81.03523103308801,24.729713476557368,83.939334011636674 -81.065495645603875,24.717825975298243,83.930500946938992 -81.071975767790761,24.714095150801889,83.923174034804106 -81.076796823486148,24.706639552597764,83.89624928496778 -81.079657831848351,24.698930981412101,83.865196718834341 -81.079380794046045,24.694756225129304,83.845616540871561 -81.108983451596302,24.690966259038525,83.872977290302515 -81.12503694605013,24.707246214461826,83.971972403116524 -81.126314001374894,24.710664008326127,83.989585082046688 -81.108297617549042,24.715132862538582,83.982835783623159 -81.106229558479015,24.71365296130147,83.972919438034296 -81.100077421262299,24.714365958630903,83.966888347640634 -81.067757761810824,24.726298470196536,83.97278294339776 -81.05151148780773,24.7399527812325,84.010867820121348 -81.042738324826203,24.745336524507692,84.022309271618724 -81.037639205486727,24.745198564521512,84.013980711810291 -81.036133149129213,24.742353738741514,83.998663894832134 -81.02311059442826,24.735463299044667,83.947415334172547 -81.017858908052673,24.737048622188805,83.946762884967029 -80.99536585312957,24.746362343212915,83.955551820807159 -80.987394114015729,24.755120305386484,83.983689683489501 -80.961068589024009,24.766596806183454,83.99663476832211 -80.911369570365352,24.784694070597389,84.004771739244461 -80.910892550478351,24.783524141275773,83.998693479225039-81.318620822846157,24.75965895553016,84.505741639062762 -81.306415535463145,24.758981072034025,84.484094308689237 -81.291748046586264,24.739232309683601,84.371340612880886 -81.289205866831139,24.723252252366454,84.294235982000828 -81.303931156750778,24.716570546909551,84.285972252488136 -81.31169143356901,24.729438751577675,84.356753746047616 -81.319452631239471,24.731847562838269,84.379588432610035 -81.327791815660305,24.730745574037911,84.387213383801281 -81.351110492230163,24.748893374122012,84.50581977982074 -81.358365738166796,24.759202730406724,84.564072002656758 -81.343643393451927,24.758618857474382,84.539010435342789 -81.328503089472036,24.764683601711461,84.543769569136202 -81.325585059159195,24.769578336444333,84.561748095788062 -81.318620822846157,24.75965895553016,84.505741639062762-80.891478178277737,24.794047654195044,84.017718700692058 -80.885510038622684,24.793930698369866,84.008212495595217 -80.884958017161495,24.792783768171706,84.00212823599577 -80.893587249054036,24.788361090666292,83.994835522957146 -80.907812498360499,24.786114010747877,84.005928357131779 -80.891478178277737,24.794047654195044,84.017718700692058-80.78919904292988,24.826586413554914,84.01322343852371 -80.791433046644642,24.820157771131921,83.987133800052106 -80.796989132073762,24.814309074430895,83.968677294440567 -80.823278749244224,24.814997870015002,84.011263129301369 -80.847128231622492,24.805337279188244,84.002810600213706 -80.851275325342257,24.804969274487792,84.007351567037404 -80.85180334590423,24.806070207517202,84.013187241740525 -80.847079264464909,24.809857018149,84.023438998498023 -80.831094943572012,24.816648725615817,84.030551665462554 -80.815487683107051,24.830321033061335,84.069740265607834 -80.793716296260783,24.846285246904305,84.110171791166067 -80.781499986172065,24.842887519756847,84.076312330551445 -80.78919904292988,24.826586413554914,84.01322343852371-80.73020997782676,24.8677274060529,84.113183504901826 -80.720911606548768,24.867010193534011,84.095991002395749 -80.703962482489032,24.883238674749204,84.144880174659193 -80.692696256466846,24.888124463228628,84.150383874773979 -80.691288191884553,24.883904715634387,84.128980353474617 -80.704110400379889,24.871861330706505,84.093058007769287 -80.712784556249403,24.865689632802944,84.077792730182409 -80.762294506499089,24.838592888149105,84.027881011366844 -80.767901636620437,24.838525856924182,84.035973108373582 -80.746403630516923,24.853019253322095,84.070118247531354 -80.741546182356061,24.859787793623468,84.093821040354669 -80.733278045202908,24.86717641866306,84.115253482013941 -80.73020997782676,24.8677274060529,84.113183504901826-82.256761827388218,26.705688412483973,94.627524856477976 -82.256144158226533,26.710411143340963,94.647139711305499 -82.247519695326432,26.70868644457752,94.626448919996619 -82.243494848317198,26.696613206731701,94.567730875685811 -82.246944580341818,26.690864002304558,94.547966489568353 -82.247519497588485,26.685689744808702,94.526308868080378 -82.238424215580295,26.664229636480531,94.418903054669499 -82.219326156031613,26.628663050696154,94.234629235230386 -82.215320851356481,26.605201533000081,94.12612856272608 -82.197496636670394,26.56208285063952,93.910563937388361 -82.188296930455095,26.5298875315301,93.755751804448664 -82.178522332851685,26.504591228211694,93.630138620734215 -82.167022968980973,26.491943122173545,93.557198191061616 -82.150348921272979,26.479869967459489,93.478852011263371 -82.132525047658291,26.479295179716932,93.449106163345277 -82.121025761878244,26.47584575314475,93.416436427272856 -82.089402633773616,26.457448611085791,93.287555580958724 -82.077903447253732,26.468372116592089,93.317879968322814 -82.06352938255371,26.472396641962494,93.313590466976166 -82.039380811464696,26.45917370651182,93.218826656229794 -82.016584599911567,26.45712496162847,93.17510867677629 -82.014690550816809,26.456525008639503,93.169593221507967 -82.014890536891116,26.4543251321297,93.160253665409982 -82.064092455582781,26.427727305562275,93.118622737936676 -82.075993703269859,26.424327417209174,93.121867808513343 -82.083893886712332,26.424327363133859,93.133924421854317 -82.099094264108629,26.427227094342548,93.169847309589386 -82.127651022646404,26.438546255721914,93.263096494600177 -82.14969669660826,26.457724015315808,93.380840010941029 -82.173898361581166,26.469923156371774,93.471280137076974 -82.177998489789914,26.473822906761683,93.49463027715683 -82.181698615507415,26.478521614541567,93.520866147242486 -82.187422858381865,26.491484839228622,93.586378685198724 -82.202384776520603,26.558569929782244,93.902684612199664 -82.206505959397049,26.568795321486299,93.95366642717272 -82.223114548693133,26.592659853789375,94.08329198230058 -82.239856323271624,26.638688427435014,94.309742648154497 -82.249644075215656,26.6565910650014,94.402764155529439 -82.263993208707817,26.675640869451918,94.507723485119641 -82.268992405578558,26.685043302398551,94.556327633559704 -82.265336455755687,26.700747438760065,94.619123758748174 -82.256761827388218,26.705688412483973,94.627524856477976-84.77828047641448,29.709463592433668,111.079517892561853 -84.730907290932095,29.740945458290145,111.130807387642562 -84.718065860455965,29.751129448027651,111.151302955113351 -84.697797281990475,29.771992851886807,111.202765475958586 -84.695196165068538,29.766656162270799,111.177382542751729 -84.696010154649869,29.763907304713495,111.167687439359725 -84.714818491142523,29.743454661972127,111.11555509082973 -84.766189115800827,29.701790106995208,111.029827707447112 -84.778026309032271,29.694257420250217,111.018337912857533 -84.800201707880973,29.683631817915092,111.01075701508671 -84.8549027903004,29.666787290303109,111.029573869891465 -84.885706367574087,29.654315718795345,111.028269809670746 -84.958854630655921,29.614704281192122,110.985274122096598 -85.037296181850706,29.590988936586466,111.014441411942244 -85.052110500946554,29.588997924846907,111.029936174862087 -85.055701638196041,29.59415361477064,111.056270891800523 -85.070531146204431,29.607351186596762,111.132601793855429 -85.096268893169821,29.624557628867866,111.242244583554566 -85.098160965637476,29.627282465075723,111.256143528036773 -85.095960942210951,29.629824344539507,111.262822651304305 -85.067608010390785,29.612020300242975,111.146656107157469 -85.039574347143272,29.601621338847892,111.060622074641287 -85.024577976282998,29.599142595583018,111.026950428262353 -85.018281909227426,29.606448248744805,111.046231815591455 -84.988851714183099,29.612375930919729,111.02338985633105 -84.969390384725003,29.619307010151367,111.020355914719403 -84.933666931003287,29.639300342536281,111.043911517597735 -84.926917238973672,29.647016781705648,111.064122864976525 -84.921408151353191,29.650705625721269,111.070179780013859 -84.896960011148224,29.659511418822703,111.066809751093388 -84.863172649715978,29.674639266300748,111.07401258032769 -84.814424635624746,29.689094890894406,111.054995066486299 -84.799232874116939,29.701386861318635,111.080211261287332 -84.77828047641448,29.709463592433668,111.079517892561853-85.157495908517646,29.68169201964977,111.567693806253374 -85.138477522442557,29.686411917946671,111.556375020183623 -85.135719482874933,29.688632819605324,111.560869426466525 -85.115348037419238,29.690721872068139,111.536915959790349 -85.094981528774326,29.686902245848252,111.489389809779823 -85.084798232664227,29.681083645340479,111.450017878785729 -85.07831599664398,29.672927141886301,111.407165517099202 -85.092478084784972,29.650700236242901,111.340775461867452 -85.098297051761435,29.635071039819948,111.287509156391025 -85.125992638779991,29.630500063372786,111.313147681765258 -85.14382612236615,29.637470538532515,111.369312232360244 -85.16360073490894,29.652347567248675,111.460158913396299 -85.18561138632279,29.666051641598578,111.54985114466399 -85.20539593326734,29.674759006090902,111.61604359280318 -85.223628260600208,29.680102748895798,111.666341684758663 -85.221406093867529,29.682201339209648,111.671189406886697 -85.210063394629685,29.683838400242575,111.659707601182163 -85.185857815324241,29.684774004509958,111.625008665025234 -85.169706218488543,29.684472768696878,111.598171154037118 -85.157495908517646,29.68169201964977,111.567693806253374-82.822594676549528,27.966619184316325,100.891957365907729 -82.83081098248438,27.970645166060478,100.921489090658724 -82.829635433581686,28.021968323867597,101.135573078878224 -82.824035404724782,28.032867759954758,101.172811595723033 -82.824073573912955,28.046929867555775,101.231956235133111 -82.827292994691206,28.055621339260146,101.273392602801323 -82.832835911033015,28.06506390844234,101.321530483663082 -82.837337112465605,28.075363303910951,101.371660867705941 -82.834236124380965,28.084362827574438,101.404689375311136 -82.831536090404597,28.087462675548633,101.41356701310724 -82.827135973660788,28.085962791153033,101.400539757683873 -82.824073793685159,28.070429092786792,101.33064860291779 -82.819298801621159,28.059784306061378,101.2786431517452 -82.814445243172727,28.039332460228739,101.185300616547465 -82.816178360793543,28.014720883498129,101.084503185003996 -82.822418361761777,28.010561134667899,101.076564573682845 -82.822764981643118,28.004668225202366,101.052313959226012 -82.818258178860802,27.994269001000546,101.001672971993685 -82.816177998947467,27.975897000867274,100.921183088794351 -82.822594676549528,27.966619184316325,100.891957365907729-83.310503011406027,30.636444747569932,112.488192948512733 -83.310297653411396,30.636432647121744,112.487835632637143 -83.310297073385328,30.636432612944528,112.48783462215215 -83.257265177248513,30.633307778355416,112.395605525933206 -83.188436029581908,30.629252110742303,112.27603751514107 -83.175455712098938,30.628473256258641,112.253450527787209 -83.164353441771809,30.627924374486778,112.234596352092922 -83.157214267514647,30.627533452507915,112.222325425595045 -83.137659582866789,30.626376029810288,112.188382604159415 -82.879816472118094,30.61111454094797,111.741971216164529 -82.87829643516217,30.611056556136468,111.739471671171486 -82.699935052120651,30.600305543699985,111.431168682873249 -82.699651044902197,30.600266548015494,111.430592458695173 -82.690571769296895,30.599768352413751,111.415119393728673 -82.690303815490381,30.599753649323368,111.414662780240178 -82.585032155350675,30.593831580643425,111.234880045987666 -82.570266865413714,30.593000957484335,111.209692726843059 -82.566505771524362,30.592658005363145,111.202760465443134 -82.554188468617966,30.591970139151851,111.181775812990963 -82.546084268025012,30.591397233516005,111.167497532442212 -82.53726205120023,30.590921328421331,111.152538805268705 -82.525927771711608,30.590225454786939,111.132991621270776 -82.460818976693503,30.58632402740232,111.021163248457015 -82.460571160413778,30.586309177836775,111.020737871527672 -82.419941521617503,30.583782693690022,110.950661666691303 -82.375869068370406,30.581042123695177,110.874707855284214 -82.288365903948815,30.575497104732211,110.723683188669384 -82.259122179642631,30.573598434640058,110.673086105845869 -82.25086297336243,30.572902536206982,110.658171060495079 -82.215868478999695,30.569048940083423,110.591426895931363 -82.21540607798822,30.568998020450636,110.590545219369233 -82.213350323808754,30.501601594982521,110.321251582354307 -82.207059713105608,30.457552972514154,110.137706762179732 -82.211310493762383,30.426637574687305,110.021537053398788 -82.205170104301644,30.403378853655198,109.920309241861105 -82.190601493117967,30.37826329718402,109.799232438206673 -82.17252588880018,30.361920303705777,109.707741217687726 -82.166209717804705,30.360086450040544,109.691154856234789 -82.125851834463134,30.368615312392311,109.665570900775492 -82.051083989399942,30.364390117301998,109.538836907595396 -82.05104567961682,30.364542395929494,109.539385247044265 -82.01711856821278,30.49940024358569,110.024159788154066 -82.018005818317945,30.521402075408609,110.112505382858217 -82.006492999587138,30.565536837404071,110.270098590292037 -82.01430652392672,30.597705081098827,110.408580132760108 -82.038626504848224,30.635308910478482,110.592563797719777 -82.050419020563112,30.657332658866491,110.696658231317997 -82.051450265343263,30.67830154748971,110.780781942419708 -82.024231718224513,30.784017206438048,111.156791561283171 -82.000854219028611,30.790378056290606,111.147608275525272 -81.907030300669348,30.824205018839063,111.143530903384089 -81.869623083532048,30.794784854302506,110.973466532304883 -81.841389331396854,30.788415409275661,110.907320159487426 -81.828028033779788,30.790964380150498,110.897892650216818 -81.807665547202689,30.791714500060362,110.87121685128659 -81.760350206095623,30.77340982936617,110.730451148934662 -81.742289676299237,30.76471442623782,110.670002989470959 -81.733638332838837,30.751968162174471,110.607274941168725 -81.720937968863822,30.746668539133509,110.567968125455081 -81.638230845444454,30.735870749174122,110.405456420965493 -81.625306555620014,30.738229725918195,110.396019147709012 -81.607228927870864,30.720171813473886,110.298678172752261 -81.545624371404855,30.714673579804643,110.187829581089318 -81.445127892845363,30.71175251101613,110.031116471625865 -81.433728545629236,30.70505595025142,109.98825135268271 -81.428423364592547,30.700059253256807,109.960882671177387 -81.431846152078037,30.671433728369703,109.852827060967684 -81.444101744530244,30.602982228205519,109.599994923919439 -81.443566260888986,30.55723563738875,109.418165667913854 -81.435065719167355,30.52461741899246,109.276651626452804 -81.443786298440756,30.511968844419556,109.239118693396449 -81.448088842329469,30.505728313277118,109.220596989616752 -81.441109611070715,30.499727682891674,109.186707981862128 -81.42701125848356,30.498788840633843,109.162600940093398 -81.411809738186307,30.484089731464934,109.082315282896161 -81.408008032927057,30.424093922567799,108.838572782464325 -81.398421581606812,30.402681125398324,108.739588914439082 -81.397405940851172,30.342098331248511,108.497029376216233 -81.392604452975206,30.305501301710915,108.34426062554121 -81.386503005085885,30.275902913253979,108.217393087223172 -81.380876917020899,30.25497670204912,108.125741196796298 -81.356587156636536,30.164631032278258,107.72950966656208 -81.309971095256458,29.97151863929534,106.887317850254476 -81.296260357532915,29.930694915133866,106.703178550116718 -81.289947071359933,29.917261677886835,106.639935993589461 -81.277531624733015,29.902542555153968,106.562649944797158 -81.271433305247271,29.885189525411853,106.483877913095057 -81.265683919913215,29.860296895183385,106.375169310718775 -81.264386517959039,29.822749907104914,106.221762605942786 -81.257701001846414,29.786781876545785,106.066777574829757 -81.241913172904205,29.741309423016748,105.860001798719168 -81.230003644237399,29.716785822442326,105.743469853885472 -81.213865728070985,29.672762232824773,105.541714021004736 -81.212552756235993,29.669180498117647,105.525290015153587 -81.164566507169539,29.557391840820824,105.001821362413466 -81.124879765429668,29.476571469662385,104.615279166027904 -81.10290576721583,29.429164231203575,104.390104929916561 -81.047658299263645,29.309971993450034,103.822886013425887 -80.99640120715479,29.20817353750007,103.331314980052412 -80.96715283504318,29.150085200372125,103.050308753736317 -80.945351958258144,29.112988361998347,102.866135474294424 -80.908249623622936,29.066392149062832,102.620517090894282 -80.894649031282697,29.038294766609919,102.484999625012279 -80.879248419419056,29.012696262613229,102.357102800160646 -80.787990954710025,28.877407247320846,101.665721205994487 -80.733212311573851,28.793383609305451,101.238087692297995 -80.714150610554825,28.764145325772862,101.089103725738823 -80.714075068720462,28.7640294539741,101.08851311635226 -80.713681255268881,28.763425393013939,101.08543414529413 -80.710691992675009,28.758840235175821,101.062061763368547 -80.709511615934971,28.757350335796687,101.054164592176676 -80.673198012802018,28.71151444856887,100.811100115999579 -80.664148687453363,28.700092176365036,100.750494687817991 -80.648888314988028,28.680830173695572,100.648261783644557 -80.648724421229772,28.680623303121056,100.647163613699377 -80.648252762020022,28.680027963721226,100.644003228284419 -80.646803440023646,28.677969800117815,100.633338812738657 -80.642400715971306,28.671717548074689,100.600939893163741 -80.639983409950943,28.668284762747113,100.58314957190305 -80.632278221454953,28.657342723196809,100.526434394530952 -80.617753629902779,28.636716536552555,100.419489459134638 -80.58484649972101,28.599862776005381,100.218258360400796 -80.575830167992947,28.587324522583852,100.152908657677472 -80.568322779356663,28.564512818076309,100.046803461387753 -80.561934338109694,28.532897585803092,99.905449659563601 -80.537075266707433,28.480811601295489,99.651650512591004 -80.526053827459606,28.461619726030321,99.555373822338879 -80.527691796972775,28.453871137262372,99.525273099541664 -80.563837542490802,28.439945642253146,99.519089970737696 -80.575096723341204,28.429931109538852,99.493377465754747 -80.58877390017318,28.413023936346036,99.442255203612149 -80.597134919527392,28.392850979448074,99.369727852754295 -80.604334852248556,28.366153387877091,99.268096045590937 -80.607834688970911,28.338655866890107,99.157681372947991 -80.609034491327535,28.313458237005054,99.053529027849436 -80.605173918096284,28.259909195838684,98.822686110623181 -80.590933863067903,28.180170666194002,98.466072365641594 -80.56738956469259,28.097815350790874,98.084221926517785 -80.548631699115163,28.0509830546107,97.858964974060655 -80.509826075976534,27.972669631256085,97.470970276743174 -80.447925637830153,27.864153036040751,96.920451678335667 -80.448036734989444,27.862954138447918,96.915513199754059 -80.448131623340416,27.861930157136385,96.911295115016401 -80.384645057565834,27.742251196712843,96.309542573988438 -80.352665447848395,27.64483479895075,95.847061516717076 -80.351501296989056,27.630573595649089,95.784358979202807 -80.345318044194627,27.61843930915472,95.72347520571202 -80.331903561758011,27.599755434551273,95.624062770046294 -80.32564616803441,27.571394047037316,95.493495516479015 -80.322218123914212,27.559594269679916,95.437953346408904 -80.312703475798301,27.526843602474681,95.283713231794536 -80.302116014045126,27.502534021506253,95.164048063568771 -80.294116822327666,27.502534075885738,95.152473549358547 -80.266479813158995,27.422766686732793,94.769632549025118 -80.254608849203933,27.382017028832696,94.577034552581608 -80.234481040939087,27.343536301914174,94.382087550126016 -80.227695721320927,27.324966379434343,94.29218780528754 -80.200229547341024,27.265255531241174,93.994687418453395 -80.194031297798489,27.251780675018004,93.927496171556413 -80.162410064184428,27.195052044176702,93.636409781873226 -80.154314673449974,27.171547407167704,93.522937728092074 -80.16049377126302,27.165564698971213,93.5059614777565 -80.150759372910173,27.145797865242596,93.406240954063833 -80.139543836904153,27.113759725581208,93.251118903979659 -80.117709988460774,27.074642052310185,93.049792677164078 -80.094845994368569,27.020835206535821,92.782954040914774 -80.080467048057386,26.972751002636777,92.552973394282162 -80.067632921879124,26.929832783472648,92.347482738085091 -80.047197539554759,26.861495426052514,92.019861176609993 -80.032295667614818,26.798600044624333,91.723516853526235 -80.033053482769148,26.773792429008406,91.616107820533216 -80.037295581730035,26.773502417306105,91.620976166799664 -80.038395567946097,26.768602684545485,91.601129261776805 -80.033795040980124,26.717507578443289,91.370753150433302 -80.033794923640997,26.703108385851888,91.307655295357108 -80.036695791012789,26.678310757709674,91.203139273449779 -80.036295264125386,26.614617335424924,90.923016227781773 -80.039794999323504,26.571620727908371,90.739133986644447 -80.051294790314685,26.511826014560203,90.492707850411534 -80.061495510549662,26.44693260015611,90.22154673282057 -80.071494880726448,26.338741632311368,89.758309121243656 -80.073194912373751,26.337642683254376,89.755921018309891 -80.075768008155833,26.323319611119107,89.696316704154015 -80.076194850199727,26.32094360580896,89.686427110806108 -80.080795526212569,26.26664864057058,89.452780612744391 -80.086495541379819,26.251550456298606,89.394186032004654 -80.090295493137845,26.234151414547316,89.322605256922543 -80.102296110226092,26.150059091031022,88.966935835778713 -80.10619579514379,26.098563980141115,88.743743581697345 -80.107742605326237,26.095291056097711,88.73144218698144 -80.10992520282025,26.090672858042343,88.714082919992507 -80.110495825253224,26.089465467578961,88.709544168785214 -80.113263331937844,26.055495865902955,88.562410084530711 -80.118707225489089,25.988675126243184,88.272627162747085 -80.118727215722416,25.977458863502704,88.222633814439178 -80.11883304178437,25.918081710971549,87.957748269662261 -80.12179827618931,25.885463953004532,87.816321975551546 -80.120611755996734,25.843357456218424,87.626256595365703 -80.122983958163488,25.820228493122563,87.526192086748779 -80.128321645448466,25.793541224376597,87.414465426467359 -80.128914581938091,25.774563631603705,87.3302858537063 -80.138403964341379,25.752620731730914,87.245785967446864 -80.144927953946649,25.743131907471504,87.212774582207203 -80.153824128155946,25.705176674891451,87.055466831661761 -80.155010167737075,25.685606034905923,86.969315796159208 -80.153230818902131,25.679082497353125,86.937404004856944 -80.155899690667738,25.667814540526841,86.890684343874454 -80.16183066513922,25.667221455032116,86.896709056571126 -80.177844437147314,25.687385035948232,87.010763821192086 -80.171320571704854,25.712886202400934,87.11570552084595 -80.165389680047895,25.724154183288558,87.15758931543678 -80.167169033634678,25.731270768870655,87.192128627561033 -80.173693165979287,25.740166456249373,87.241592870093882 -80.18555518414027,25.747876036927501,87.293549737893045 -80.198603301347234,25.74668985802133,87.307351279072464 -80.230037368179453,25.734828654905268,87.300245607271791 -80.241306154508223,25.726525890520055,87.279534085653722 -80.245457779851037,25.719409290245103,87.253697137348354 -80.25138853298732,25.690349818007437,87.131966857239604 -80.266808822716357,25.660697238294521,87.021425771526992 -80.267994963301788,25.654173682174001,86.993854462169111 -80.278077507810721,25.639347389128378,86.942033135332167 -80.289346307808884,25.63282376893622,86.929272348061204 -80.297649616080278,25.624521024397779,86.904151211492717 -80.302394323291622,25.615625243347313,86.871123959310353 -80.306545847728657,25.595461541713973,86.786519489251077 -80.306545710137271,25.577670052040812,86.706441955640912 -80.302987065632465,25.569960436878013,86.666493440978229 -80.314848791697344,25.541493978755181,86.555736053735018 -80.325524518895705,25.537935624644561,86.555425468832254 -80.329676176452594,25.53497034821082,86.548179304227233 -80.340351663436422,25.501759494087963,86.414195355027914 -80.340351503588167,25.481002767470613,86.320563223212957 -80.337979020986879,25.467955687532548,86.258186790160835 -80.329082391497835,25.445419886290342,86.143325651064515 -80.321372080783277,25.439489435426147,86.105174742639065 -80.327302950071555,25.425256207982866,86.049618176184595 -80.326709663570782,25.400348141285839,85.936165755614638 -80.321371730683865,25.393824627912394,85.898798142559826 -80.311289058247652,25.392045548671064,85.875886985100806 -80.307730432606192,25.386708119348121,85.846502222120762 -80.311288931194767,25.375440168697729,85.800778778269887 -80.336198750092407,25.341043151314743,85.681850790046155 -80.353398510207001,25.332147299825809,85.66696107480675 -80.362591501612343,25.329775047062281,85.66979425214231 -80.375046465265939,25.319693124668071,85.642532754689455 -80.383942787441768,25.303680725889599,85.583139818161726 -80.386908177014888,25.290633637179944,85.528397059999406 -80.420121451193125,25.265725348940347,85.464597293175757 -80.438746254531964,25.255422940725722,85.445442849770188 -80.447996891754471,25.250305901965309,85.435931344516575 -80.463763605347836,25.238594262625494,85.406156588345766 -80.468755185969442,25.234886477148869,85.39672991540283 -80.469297227714904,25.234323625136525,85.394979237578809 -80.470774729467266,25.232789398592796,85.39020714070648 -80.484175587279765,25.218874050204118,85.346918845549226 -80.488523350945229,25.210177499293501,85.313887183554471 -80.488966922801865,25.209290251156826,85.310516818426549 -80.489147797622849,25.209105105760923,85.309944478794932 -80.496273037143681,25.201811634618998,85.287396859377623 -80.497111301468308,25.201985967848525,85.289432037621737 -80.499293589705118,25.202439816765072,85.294730396009982 -80.499576119801176,25.202498574346112,85.295416357927024 -80.503915519363503,25.205508691666445,85.31552224420011 -80.50405759002814,25.20560724202161,85.316180491819978 -80.508712586173885,25.208836279657415,85.337747936137021 -80.509045391784525,25.209067137386967,85.339289857074618 -80.50904836299928,25.209073307383061,85.339322278276086 -80.513860454634326,25.219066050803047,85.391823692247272 -80.515656303122981,25.220049396448704,85.398951763287187 -80.516229434665419,25.220363223817706,85.401226629503071 -80.521291813143037,25.223135210350261,85.421320010907948 -80.524122795518764,25.222427506196496,85.422309992834926 -80.52671649954867,25.220995998620221,85.419663155451417 -80.531140031836557,25.218554578972682,85.415149272419512 -80.541880561170046,25.22055681690194,85.440183377824724 -80.542972849157309,25.224197366518936,85.458326471969485 -80.541880612561343,25.22729185104679,85.470746485516429 -80.541698610020191,25.232024580630426,85.491949986666441 -80.549424830536807,25.23888110407044,85.534527912735939 -80.559156346728642,25.241357944588277,85.560215698555112 -80.57171883442274,25.241711708311854,85.580482604913414 -80.590120101413177,25.226142452573431,85.53720377292484 -80.588527552151206,25.210042551911357,85.461775011382997 -80.58571731815843,25.20304332851828,85.425825296901166 -80.585705141595199,25.203013001333257,85.425669514574111 -80.595272537272749,25.195785743492063,85.407084341160953 -80.602561594304476,25.190279553914809,85.392924511805177 -80.610541926920206,25.184251171380737,85.377421350218356 -80.610543579950146,25.184249922673764,85.377418139949441 -80.619924225598609,25.17969390145214,85.370686019770801 -80.619958765424457,25.179677126041835,85.370661234483123 -80.634927069250196,25.17917838649003,85.390678345225751 -80.640808606722061,25.178982415354248,85.398546048440039 -80.641210257285934,25.17896903247291,85.399083384312689 -80.641758694590848,25.178712874113824,85.398736703209579 -80.643391374734506,25.177950298952023,85.39770469814539 -80.646672419760677,25.176417822765103,85.395630970597267 -80.646757367289055,25.176378146362232,85.395577284507453 -80.6470347055009,25.175947810768157,85.394035804085433 -80.649500262931241,25.172122095185518,85.380331288091838 -80.650186406906258,25.171057430595674,85.376517228782177 -80.657879835380854,25.170565346708454,85.385743087157607 -80.661627733677008,25.170325625186074,85.390238337218761 -80.670885578841578,25.169733478709844,85.401344559155405 -80.675259696743097,25.1694537031794,85.406593138352036 -80.680788337394858,25.169100082535536,85.413228097371757 -80.684845483317844,25.1688405810307,85.418097850866616 -80.689296961764384,25.167060115608006,85.416647509671748 -80.695974136811074,25.159938263952988,85.394252063706517 -80.702206135499708,25.149032954763754,85.353997611440718 -80.70465439319527,25.141466027140154,85.323261163197458 -80.716035734071639,25.143222615232155,85.348227550275624 -80.722822924942889,25.14745132902117,85.377574359998107 -80.729539090516354,25.146665861002322,85.384030311368406 -80.735678225904962,25.145947877728592,85.38993311021477 -80.739267662656189,25.145528086438741,85.393385039642453 -80.743814396630853,25.144996337459535,85.397758307866752 -80.747316058058416,25.150908509189378,85.429851606488228 -80.747201792303045,25.157652573577526,85.46031994652003 -80.752803315466494,25.166111191418224,85.507106290198863 -80.758519105119063,25.169083115568348,85.529140181839466 -80.796394758391216,25.174685323292053,85.611176479607821 -80.797157762820717,25.174798179674458,85.612829557619989 -80.816132716502779,25.167304157497298,85.607177997939289 -80.818055659152748,25.166544705057845,85.606605853885412 -80.82438009254237,25.164046915346752,85.604724895209074 -80.827404342531779,25.162852509454385,85.603825867176056 -80.827469486339126,25.162826781373795,85.603806505911052 -80.827483568565839,25.162857386244227,85.603966560214758 -80.828118287592304,25.164236819622097,85.61118040792644 -80.828428250807718,25.164910461953756,85.614703194238245 -80.829374582284444,25.166967121938725,85.625458092428744 -80.830973626473025,25.170442320928299,85.643629865720868 -80.839166869033619,25.177138883608499,85.68629196472466 -80.844642708683054,25.178659863637108,85.701391498558223 -80.84733507706359,25.179407701190232,85.708815899677575 -80.847340486593438,25.179407478763665,85.70882298797369 -80.859107348060647,25.178923654246553,85.724242283962667 -80.859741016923223,25.178841026663786,85.724816008470953 -80.875263424273314,25.176816974223552,85.738874856382608 -80.875756210461446,25.176752717109824,85.739321328699589 -80.876400734228028,25.176668674094827,85.739905294962227 -80.876672148987254,25.176533151917702,85.739696715027094 -80.879922910847455,25.174909989176779,85.737198647111654 -80.88017558964286,25.174783822196961,85.737004482187331 -80.892622200736014,25.168569009726195,85.727442006580532 -80.900400278403581,25.164685278352128,85.721467982046306 -80.901007213845446,25.164382224780766,85.721001878380775 -80.901065320170218,25.164073872408554,85.71968902181834 -80.902050741700805,25.158844543839471,85.697422883473337 -80.902533627083088,25.156282019862196,85.686510780826211 -80.902558186859125,25.156151688696706,85.685955766588449 -80.901160916279579,25.152975878516628,85.6694391425699 -80.899852076587635,25.15000105997655,85.653966780751944 -80.901500184713612,25.142104130972736,85.620568730868399 -80.901518054230209,25.14201850897981,85.620206576772034 -80.901608878021236,25.142028165815855,85.620386615395546 -80.903252498311588,25.142202923679211,85.623644770123065 -80.907519352676417,25.142656596800943,85.63210339192301 -80.916865424525909,25.143650317510282,85.650633180513978 -80.916906797730121,25.143639921709038,85.650648015551269 -80.932294555527861,25.139773456094758,85.656169176101685 -80.93769191103857,25.13841726828413,85.658107795752585 -80.940213597957651,25.137783646678184,85.659013896249235 -80.941929782927772,25.137352422695145,85.659630693495274 -80.944106016849545,25.136805602697883,85.660412985831499 -80.94415800800229,25.136792538935893,85.660431678406894 -80.95550892281922,25.137799597580287,85.682045519351959 -80.956518948235399,25.137889207522001,85.683968972414732 -80.957092531579377,25.137940096112551,85.685061299242079 -80.95836934879128,25.138053375950545,85.687492893077433 -80.959669041024483,25.137895111218711,85.688725453801453 -80.968407644380065,25.136831003356018,85.697014383040369 -80.968449027417179,25.136825964105007,85.697053642012179 -80.968682549188003,25.136797527941578,85.697275188751519 -80.968774569349435,25.136786322560773,85.697362492792308 -80.971127159346338,25.136499845485798,85.699594557285309 -80.971670036345799,25.136433738847856,85.700109652243555 -80.971739433847532,25.136425288249484,85.700175499543548 -80.972528125749406,25.136329248501806,85.700923849828541 -80.972607164055347,25.136319623933613,85.700998849235475 -80.972707669403889,25.13630738530372,85.701094213873148 -80.974072164888028,25.135822764982144,85.700942411087453 -80.978140854249233,25.134377711062903,85.700490109622478 -80.992892038356317,25.129138614506868,85.698854701593518 -80.995038831395988,25.128376149884033,85.698617270216346 -81.000119233026396,25.126571771705891,85.698055978864431 -81.000715655161642,25.126639347736795,85.699259490706027 -81.010541484743555,25.127752637333355,85.719088573008776 -81.023932827129229,25.131742322200147,85.757348719984293 -81.026097830956118,25.131654192082401,85.760204571299255 -81.03434766765956,25.13131836861416,85.771088548004627 -81.038964860457298,25.131130418016927,85.77718111500144 -81.050252766205446,25.13067092481813,85.792079355567694 -81.050288562836116,25.130669467655959,85.792126609943807 -81.050389400736819,25.130665362879441,85.792259723879397 -81.050840730657981,25.130646990735123,85.792855511419475 -81.051449458922662,25.130622211426136,85.793659085407853 -81.08080406896579,25.121146570379128,85.794813651591539 -81.095469473572365,25.12940300099298,85.854407603852451 -81.112889020511304,25.147817828591787,85.964267808943987 -81.121562274872488,25.15464937954302,86.008347578346729 -81.13451360681934,25.15864206671062,86.045991246588528 -81.141970838651574,25.166214582719682,86.091594831086695 -81.143225015598972,25.185345472608571,86.180260920897126 -81.143418311598822,25.185784950011286,86.182545281946659 -81.143843595992038,25.186751875765289,86.187571195885539 -81.147684197676426,25.195483860121225,86.232953689061105 -81.156199160890864,25.210049605216479,86.311815688386559 -81.156428516762986,25.210441942690281,86.313939551822841 -81.156767997657425,25.210732512220744,86.315768265165389 -81.168994217398932,25.221197215775113,86.381623399443924 -81.172213201302398,25.223952418358046,86.398960459977388 -81.172992011738188,25.224619020176327,86.403154938481748 -81.172925845520354,25.225991395542973,86.409271998330951 -81.172403525172712,25.236825014894571,86.457553227432072 -81.172317437876799,25.238610580118163,86.465509565547109 -81.171901410433975,25.24723954401971,86.503954627551138 -81.171855168180215,25.248198670063218,86.508227366022766 -81.170656914891694,25.251572483573018,86.52169472258538 -81.170456697398251,25.252136217879499,86.523944892920554 -81.170242462732446,25.252739419072228,86.526352560147643 -81.169255164530796,25.255519265425097,86.537447814829648 -81.163018304238591,25.292172196641122,86.693889937363565 -81.16024130777393,25.300933710562848,86.729326773434877 -81.153248199090655,25.307881355979877,86.750203412957489 -81.149863217787001,25.320404657658681,86.801714990288019 -81.152864339813931,25.327103253227619,86.836509050801396 -81.149051313587023,25.335129816348367,86.867034475319088 -81.1410471921035,25.343453389443688,86.892585024237633 -81.134861062703905,25.345332321277784,86.891759150661528 -81.122357738451157,25.341086645750259,86.853759085759521 -81.119155714279728,25.347556294549317,86.878166862763464 -81.118212768168902,25.357288741371367,86.920705696567893 -81.129440229095707,25.382845200854547,87.052976931445301 -81.142343536267376,25.383692069032165,87.076218126341701 -81.151456794592804,25.389588671554012,87.116545093245804 -81.1516048914702,25.401538984227621,87.170681161805987 -81.148092849480093,25.406629714540529,87.188356538303196 -81.147713866308763,25.409909528645237,87.202578355558217 -81.169601817211273,25.466177157257963,87.48910201061517 -81.180356158716236,25.477755423285309,87.55742437299341 -81.192874523607458,25.487072807620809,87.618213690817356 -81.209152061713951,25.507263543836263,87.733577511273324 -81.21110020125036,25.519213845790375,87.790260734036565 -81.204126174923388,25.536484900703162,87.857412182725966 -81.205340240666317,25.541232620619912,87.88058088440448 -81.210272432174946,25.550935032364997,87.931610699743032 -81.226508888385936,25.560793361727143,88.000353372655809 -81.233657172705264,25.57568846151878,88.078019686974585 -81.23400328537187,25.588908701689508,88.137897348962724 -81.241471558024898,25.601361939547392,88.205039693973958 -81.241629677310286,25.615949102895875,88.270727664232254 -81.254904181502042,25.640499610304637,88.400818351656199 -81.269877679453558,25.659244439283903,88.507387531921268 -81.278327940455441,25.667296923079707,88.556196675635874 -81.291282421742252,25.68982154909995,88.676594169810414 -81.329890558657553,25.719546595274483,88.867822114378214 -81.335992688187588,25.717962645891507,88.869938470423222 -81.347033991975948,25.723786240268183,88.912642363458872 -81.346927821978014,25.738848089632871,88.979838436469436 -81.344939968265777,25.749979673891595,89.026604670099914 -81.347723151439538,25.75634055129288,89.059232412837446 -81.356072537486597,25.762701407555351,89.100250521674752 -81.360446065593123,25.768664711815553,89.133491767570376 -81.362831654111005,25.775025591886152,89.165506383404136 -81.345735434840435,25.784567055694616,89.182342004962265 -81.341361989561833,25.788940197460143,89.195278893224895 -81.342554806712471,25.796891321038931,89.232580854557455 -81.345520392003451,25.805631025750834,89.276068017818034 -81.350109192851619,25.81915441491628,89.343340710736811 -81.353687494483708,25.824322614565808,89.371795083396137 -81.363229633030031,25.826707897367797,89.396822822280228 -81.387085071549961,25.842212425257603,89.501954036764801 -81.39543450277182,25.854139067719892,89.567725131288171 -81.418494732777901,25.867258255123105,89.660993870347738 -81.42525374226372,25.870041118917648,89.683596099726856 -81.430024782638654,25.867655757111272,89.68016969319433 -81.442350005855644,25.866065440073985,89.691693670116365 -81.459446343196959,25.871233550340573,89.740543740801513 -81.472566840619677,25.883955271254663,89.817034830339253 -81.474952448191701,25.890713699000777,89.850736328400671 -81.488470422066428,25.890713609497571,89.871165686286986 -81.501988391307606,25.88634042215558,89.872129555791616 -81.509940162336932,25.886340369483793,89.884154368191957 -81.513916051748382,25.8887256734155,89.900788751430809 -81.51272338214018,25.899062143367793,89.945002747699618 -81.516699278015693,25.902242557408712,89.965172572061419 -81.52862694742926,25.903832698519885,89.990292405709624 -81.542144926864623,25.902639951418887,90.005438051186502 -81.578325361914068,25.891508123898628,90.010670620948076 -81.58548194013602,25.891110544470816,90.019742804579437 -81.615698686544746,25.896278551610386,90.088542079553008 -81.624445653301152,25.899458933796215,90.115958177484572 -81.641048148540023,25.900085292556575,90.143926634453237 -81.645517828363921,25.900253919196263,90.151457898318768 -81.655457498503139,25.895880755408914,90.147080671973526 -81.66478570799886,25.887906756133404,90.125752351246774 -81.673597677631165,25.858957352550281,90.010242844931781 -81.679251716846707,25.847604964194613,89.968263253569603 -81.685764883552963,25.849508812038412,89.986639275215566 -81.690505038305773,25.855013465724067,90.01836071908474 -81.714137951778625,25.899868743966451,90.253939343616366 -81.718653093042235,25.904339458359939,90.280689065344632 -81.728052353418462,25.909507100373911,90.317960267886519 -81.732916664500038,25.933804679499758,90.433384599164128 -81.739084893484502,25.944307038337453,90.489434389397502 -81.746546129122436,25.951940552463473,90.534692630171776 -81.750691313819161,25.962759906798858,90.589053629897535 -81.74880154655294,25.99656798902268,90.736273062415421 -81.751635646404424,26.000719733066685,90.759003234095871 -81.758430820240349,26.00266857635161,90.777978101745248 -81.763406982524771,26.008364217935579,90.810810998082161 -81.80263256910618,26.090516268180171,91.234496121294796 -81.809803264246398,26.154531571550905,91.528544270433486 -81.815580571674957,26.17545134106669,91.629756508395076 -81.817780904610274,26.209448390582054,91.78320827614516 -81.821646239995189,26.239015681821218,91.919526215642691 -81.834114010965109,26.296795311304066,92.193095908500254 -81.845527553561695,26.32998734736346,92.35653642937541 -81.846806159101519,26.332653160750386,92.370207408443093 -81.869956548278864,26.38092028813562,92.61759427562356 -81.902884584878819,26.413129235262705,92.809091361239552 -81.903684648033078,26.418428928975022,92.833571816794574 -81.912684949954979,26.429427243366494,92.895521280355752 -81.924586306834954,26.438926623069932,92.955292551778257 -81.939386721944032,26.447326045397766,93.014640488661826 -81.957587206891375,26.454625506876344,93.074334639124572 -81.96518843092781,26.460224137250151,93.110446259379387 -81.968088539727404,26.465123839419636,93.136338310316205 -81.967188537355838,26.467323720759495,93.14461194165051 -81.970485710696252,26.478771048794769,93.199798298999667 -81.981689008914998,26.483222719619508,93.236351526342332 -81.997989420998607,26.487121386888539,93.278242353349924 -82.009939049019749,26.486317646407684,93.292915550991893 -82.014657665890539,26.493094004897021,93.32978349737823 -82.010058093647928,26.507466974887016,93.38572065718472 -82.025582157228726,26.514940795638296,93.442079174332321 -82.044556030897553,26.521839676907113,93.501176940277219 -82.068129463898686,26.515515419472614,93.509425591677427 -82.072728982258354,26.494818354031079,93.425830744206905 -82.095727467192489,26.486194437823986,93.423147126100957 -82.106651773266222,26.486194362849563,93.439818347804248 -82.112976846498654,26.543111145771022,93.698552982881665 -82.119876580653397,26.563233205894438,93.797053282149136 -82.123326507695509,26.581630542720077,93.882709448225796 -82.138851025717145,26.639697098090377,94.15988234244287 -82.150925398109592,26.656369628933223,94.251015160232782 -82.182548629947092,26.68396542526078,94.419550313614309 -82.180823861911634,26.698913293330211,94.482031296007335 -82.174499316165779,26.704087596366765,94.494914170354605 -82.152650700918016,26.706387416609118,94.471600830554962 -82.140001510573157,26.70523766692628,94.447306245565414 -82.126777327582303,26.701788252248946,94.412124306894839 -82.119877690494377,26.693164540088265,94.364042429253459 -82.107228285798271,26.669593010104684,94.242039741016924 -82.100903656177167,26.664993713240065,94.212350774556398 -82.094004117604825,26.667868348382132,94.2143719708547 -82.087679694582079,26.687415587545988,94.28994033113122 -82.085954968220719,26.704663124938953,94.362458088435233 -82.080780402268246,26.719036096037968,94.417176250368357 -82.067556470505579,26.744907479407107,94.509671306237578 -82.063010452507967,26.772687872194759,94.623608255758882 -82.062382052890044,26.77652797778147,94.639351578429341 -82.062382181440199,26.791475846694919,94.704338683746755 -82.056057704710483,26.804698989657471,94.752191696316004 -82.058932693024886,26.824246166327626,94.8414814081043 -82.059507809669171,26.840918779660424,94.914753693155944 -82.057783086861747,26.861040904798273,94.999469712376595 -82.060083087891002,26.878863316289046,95.080283191986382 -82.067557674035982,26.884612468318235,95.116574304178357 -82.091706189885699,26.890936386870873,95.180699899792671 -82.094006191270338,26.908758820945796,95.26144945807755 -82.091131515763479,26.925431437131291,95.329317724332213 -82.084231992088405,26.930030835179913,95.338755405507982 -82.068707968468914,26.930030943305479,95.315170692279935 -82.062958380601984,26.933480501432875,95.321379601024091 -82.062383472473684,26.940954424201454,95.352875655516982 -82.064108490965666,26.952452753982559,95.4052819525823 -82.077332715157127,26.960501507804477,95.460206714458764 -82.108955685789525,26.95992638239678,95.50576750561595 -82.114023514020772,26.958026048956459,95.505246814340353 -82.118155066442739,26.956476800073041,95.504822903312743 -82.125629527945804,26.947852997217186,95.478860257193446 -82.138278561620822,26.928305699421642,95.413463260047138 -82.163001990363313,26.927730599835435,95.448600945994258 -82.170476462107274,26.925430883864873,95.4500219700858 -82.17622606931883,26.91910675716635,95.431387586519122 -82.17392603035502,26.899559564361898,95.343197094276547 -82.15725169036044,26.854141199833002,95.12085999455303 -82.148051766166446,26.792050157171463,94.837237967178226 -82.152076455010786,26.785726043370907,94.815887136384845 -82.173925006137623,26.781126553478504,94.82920153439045 -82.179674591297115,26.774802416651504,94.810480188578367 -82.210313393366476,26.774393720237029,94.855447226203978 -82.222796850140014,26.774227201149809,94.87377835996449 -82.233178688541344,26.785127100011923,94.93699783552438 -82.234296211253408,26.786300387829002,94.943802194669843 -82.235004542003765,26.78549766355529,94.941395871341228 -82.242920575080419,26.776526724671736,94.914501253515482 -82.25211983734772,26.758129308654098,94.848582588136196 -82.26085251431266,26.719648400218048,94.694542062468827 -82.264789676778108,26.727893906322503,94.7364407684654 -82.265667966126372,26.759084135945177,94.873437457717955 -82.270485318467337,26.786920528564881,95.001776815392077 -82.272685559068023,26.791762653573411,95.026174274273217 -82.282539072152062,26.813447528269762,95.135402704589069 -82.290073146746593,26.830027955998666,95.218883632682264 -82.302723560417263,26.843831087974216,95.298106387257576 -82.352638301133595,26.910622967717217,95.663894987665117 -82.376727423820526,26.948277693939193,95.863701452501118 -82.401609108015705,26.987171305959503,96.069916332140565 -82.420209854255063,27.022968157291707,96.25298288743943 -82.446710820937014,27.0628637227918,96.465672716498375 -82.461312506726287,27.102160406961353,96.657389297150075 -82.466312718289842,27.112958763796033,96.711552619002759 -82.469883826733962,27.11583857645261,96.729420610703528 -82.478013259879773,27.143455964898525,96.860745202749968 -82.513314668431676,27.2097489867094,97.199794208630919 -82.540715722002872,27.256544162505126,97.442627120763063 -82.546116907319288,27.263243747742585,97.479637023992836 -82.560017300080716,27.271043210661073,97.53437792416662 -82.570751644495402,27.281668537441785,97.596379051916301 -82.570245803724532,27.300803466720247,97.677611264400184 -82.577018057202963,27.311538815783802,97.733977247029543 -82.598627796325601,27.337967178271789,97.880251171067357 -82.624862643595151,27.364417506701766,98.033634448423982 -82.643821331678637,27.391929827955231,98.180328918620944 -82.64383716247616,27.391946783421133,98.18042565882206 -82.676122394271005,27.42652565675969,98.377651937305927 -82.692822898888934,27.439424813843367,98.458338097669184 -82.692005944141627,27.446537421166258,98.487438939511776 -82.708823726609765,27.489818875784636,98.697830508463085 -82.715523998362215,27.50261811087007,98.762656642124057 -82.725525350582572,27.515816299915993,98.834228899329901 -82.744020939195124,27.533287188600266,98.937010080553591 -82.746752073092736,27.541034735324487,98.974181783385575 -82.743441000895871,27.541560729807923,98.971338715404272 -82.709124059033883,27.525715864163537,98.851229194551706 -82.711623919468323,27.503918066207866,98.762212002649903 -82.707823801203247,27.500618278332343,98.742321670055389 -82.691423401714474,27.498618508458126,98.708645076490939 -82.687423315931625,27.499418492488314,98.705920517444611 -82.68792342540695,27.510217884378211,98.752704428508878 -82.68462339486797,27.515317622735605,98.769371214322746 -82.675623244401862,27.521816323920241,98.783258147537708 -82.663021980202828,27.525016235676571,98.777577833272517 -82.651721719951723,27.525317300244353,98.761549047194421 -82.647015704904675,27.535741750974321,98.798737656325102 -82.633054546437251,27.554108824362491,98.855559258721769 -82.613020255157139,27.573430888557169,98.90713132917881 -82.614004383453462,27.585036232851422,98.958007090725005 -82.613750769791324,27.585518583526401,98.95967083889991 -82.612718375706635,27.587482105444749,98.966443311423063 -82.597489100420134,27.596243725717393,98.980417791754007 -82.585629841961108,27.598219700839721,98.97069283016026 -82.57160763188692,27.61108008360447,99.003947385586798 -82.566667578762917,27.617910737767481,99.025437992997468 -82.559538621288539,27.640874507127105,99.11213412694633 -82.555499784520308,27.647341506169003,99.13343932107091 -82.538146433937072,27.675127750216028,99.224943516775966 -82.515265197321128,27.707781094622874,99.328607885167003 -82.495890866743309,27.721155489148916,99.355805961415172 -82.483448584450656,27.722078527586575,99.340767924673855 -82.478637500458376,27.725196388600878,99.346662414260209 -82.477296532278615,27.732121012471534,99.37398071680218 -82.478128599959078,27.737407711935095,99.397659623064101 -82.483304788774149,27.744840260496904,99.437044555321336 -82.47933872895257,27.748441088596064,99.446266263723373 -82.458542300492084,27.754761886869645,99.4413982052356 -82.435633872329959,27.766545396300661,99.456477448344231 -82.4329788443426,27.770282207460845,99.468270579352975 -82.434979945899741,27.776276859314951,99.496705441735685 -82.420064776732502,27.795955871984091,99.557364113628864 -82.419399847287039,27.805375352742821,99.596227024681866 -82.411835740484364,27.813055980205249,99.617240561172366 -82.40385557016333,27.814858937634941,99.612748405896127 -82.39438157568884,27.839705624574773,99.703476306051016 -82.398461800492427,27.853816810668651,99.769339382648468 -82.403614205188319,27.884786052537422,99.908036572858691 -82.414914642558443,27.903583926500964,100.004577497020364 -82.433316072667409,27.903483798548329,100.032094235531986 -82.45259158113798,27.909688314020361,100.087564840912819 -82.461016816092496,27.913782025470073,100.117644218727946 -82.460616855515653,27.91908173405881,100.139401912689209 -82.463078942318589,27.922247540369373,100.15650150179863 -82.479064386745421,27.929861001412931,100.212915160693228 -82.490818587452679,27.921781364618379,100.196697465144098 -82.492118570892998,27.91668163840114,100.177156353369355 -82.488418304760415,27.897183748413148,100.089234401471913 -82.489058030691339,27.865750490654214,99.957450101152062 -82.481137750609889,27.855431121810579,99.901795486919582 -82.472624497238996,27.849527511787805,99.863894497044384 -82.469840394967704,27.845480756983029,99.842553433962166 -82.473440289052931,27.82474588405001,99.760348056443036 -82.476273340950954,27.823177950741194,99.758025787770748 -82.490849696681934,27.824793755226633,99.787038957700133 -82.512194245398518,27.830201299650792,99.842397413216531 -82.554948432655152,27.850646852026859,99.993944658897817 -82.553920539603823,27.864886067615895,100.052540325559676 -82.539620225519641,27.867085049273037,100.040046978741884 -82.534220152613315,27.87288476606798,100.056321771815419 -82.530920138015375,27.879684412059657,100.080014917999506 -82.54032042688732,27.887183926870538,100.125995015725493 -82.543820560314586,27.892783590191932,100.154965413734317 -82.542749563874182,27.895888425430012,100.1664411239326 -82.536820464772632,27.900182229947383,100.175537998788059 -82.532320413885103,27.906081934866062,100.193587474524975 -82.534720738417931,27.935179301098572,100.319992363452911 -82.542221061652143,27.951177358129083,100.398857226595283 -82.554921525226263,27.969176266352026,100.494038077071309 -82.590423391812195,27.97307579083677,100.564522841945291 -82.620525084567376,27.971875637635126,100.605336719192564 -82.649621277815911,27.968486202134894,100.635429002344608 -82.717529246011935,27.960575555893936,100.705784558318555 -82.721529315263112,27.957975671055028,100.700946343131363 -82.725129327844058,27.950276072508363,100.674014288000762 -82.722982268910741,27.943997143454066,100.644278853200376 -82.722436297611267,27.942400487202733,100.63671678584069 -82.72140253558409,27.939377319852596,100.622397701255977 -82.721129125965902,27.938577751856485,100.618610414676368 -82.711028815136302,27.930478275870811,100.569038546644151 -82.692627354074858,27.927078599318229,100.526593118906021 -82.686127122701166,27.918479124789393,100.480406840331852 -82.67222676762394,27.915180409654294,100.445267498493195 -82.629067735508343,27.912577869220733,100.368420015089214 -82.635224817473855,27.905881196538108,100.349563734605908 -82.633124652060616,27.893281912268126,100.293196734972298 -82.61102397346059,27.875684051765575,100.185193939134479 -82.568922083623832,27.885883791098866,100.164072161540389 -82.568829450957779,27.883720276649321,100.154796691611409 -82.567821821273725,27.860186227923428,100.053868308663368 -82.599446556338378,27.859766021310264,100.100308666937053 -82.595822341157671,27.845586836425731,100.034873720258474 -82.590322141852354,27.837887304789042,99.993944660760462 -82.587521901824246,27.818889382345052,99.909355432726443 -82.608423226408547,27.801091221337742,99.86596850771457 -82.623726408859795,27.782056170278612,99.808789379894733 -82.631523352668637,27.756094560116328,99.710789266042411 -82.626023030169094,27.734896781500009,99.612590822391212 -82.626722994320659,27.729197094176296,99.589507728815079 -82.634623028523094,27.712798951287976,99.532074807211757 -82.64082311181653,27.706099280024809,99.513147332705557 -82.653524374998852,27.702499388796021,99.517303972505033 -82.663924635714977,27.704499201863921,99.541690418496728 -82.664249876969166,27.704633770941218,99.542758487164974 -82.668448395913558,27.70637091471577,99.556546216830611 -82.669775848916785,27.706920150469681,99.560905526392162 -82.671452403252417,27.707613827444842,99.566411288455129 -82.671945950025602,27.707818033193085,99.568032084032893 -82.672552895346229,27.708069157767302,99.570025282911956 -82.672624871431779,27.708098937985092,99.570261652581394 -82.673097173517178,27.708123790587301,99.571089594624937 -82.674064905686492,27.708174712790097,99.572786048054695 -82.675126694858889,27.708230584285396,99.574647421017289 -82.678325007020007,27.708398879919194,99.580254465341568 -82.680022614316371,27.698246895545026,99.539809074252844 -82.680254946373182,27.696857509808279,99.534272962249815 -82.694752334964562,27.702409094937263,99.580001538619399 -82.714633783852264,27.70085303752365,99.60384554322809 -82.719826843871374,27.694199371137852,99.583588179200888 -82.724026751336368,27.673401501549503,99.501811091788113 -82.722626651982338,27.666101919240347,99.468694745562971 -82.717326414353579,27.653603655543918,99.407531212083995 -82.71355928315414,27.648841948757326,99.381545901298523 -82.699094875280849,27.64105348848399,99.326318696141243 -82.706020912920735,27.627506195087516,99.279394697397947 -82.734080453415444,27.615168681350912,99.269993579946458 -82.737556574015755,27.619522412886468,99.29381993226707 -82.738316345449164,27.625310886776031,99.319572877138853 -82.73879446870599,27.628953566437382,99.335777273401618 -82.740126812594312,27.639104300186784,99.38092489913106 -82.739027426583178,27.708998405944818,99.675742026418447 -82.741328584693193,27.720396753288775,99.727571715600789 -82.747228842307095,27.733495979709947,99.792105834931135 -82.754729062881225,27.738495646321262,99.824773764237761 -82.761929312307615,27.747394097680964,99.873488404788077 -82.771029732978405,27.77009176588227,99.983507409691811 -82.784131184493972,27.785990784195992,100.07084767986089 -82.791231421715423,27.793789297802263,100.11471158452332 -82.821441329434435,27.81592684379558,100.254611767828465 -82.82956959731672,27.824438310228278,100.303041838109493 -82.847535312059819,27.856483394065943,100.465923861600459 -82.850135455027072,27.865381879570201,100.507469303905964 -82.852135715751899,27.888480579122984,100.607987131923437 -82.848835860706473,27.912378273560797,100.703687477856874 -82.841891949469769,27.939339824939587,100.806650269776583 -82.83239749051414,27.964293249440473,100.897181466221809 -82.825884607517168,27.962377898892171,100.879141237586737 -82.822984848006897,27.959045143576351,100.86066785082221 -82.831828699106651,27.9331044867454,100.764960632659495 -82.8394933581435,27.911290734876893,100.684780151583254 -82.833164184614816,27.911421502149587,100.675629743374884 -82.821724256953658,27.929446958599264,100.734067841432989 -82.809754673454322,27.955288975626239,100.824589704163373 -82.806471138687883,27.962378041305584,100.849411894567311 -82.798829141966365,27.992738280264469,100.965493309311569 -82.793644858846861,28.013334479131348,101.044191095978022 -82.793645056111188,28.034479641881941,101.133084466680884 -82.783733699545763,28.058065658024059,101.217027215287089 -82.784834196707976,28.108460855401418,101.430255497805774 -82.783191599669095,28.122455151994743,101.486441938206553 -82.782334337922862,28.129758693548386,101.515757322311401 -82.787634624996599,28.147157690578847,101.596789090894163 -82.791734791202217,28.154656245000329,101.634475648403168 -82.800034978553597,28.153956222526741,101.644224898889661 -82.809485227629722,28.156968985909032,101.671290047466755 -82.806108312081491,28.174346048529603,101.738915420137346 -82.798773287491301,28.189953238678914,101.793055502697825 -82.763653760322853,28.221175770514158,101.87009694147855 -82.765470812765201,28.222231698679575,101.877286807633936 -82.765114033185185,28.246506358889178,101.978257185779512 -82.76008300672882,28.25618086125035,102.011023788712919 -82.747198772893668,28.263352560142923,102.021349147893488 -82.733802749499219,28.294091960829739,102.129346310161054 -82.736473891942254,28.302548473983531,102.168727124109864 -82.732471031619056,28.327232140699905,102.265653614886105 -82.716832858603823,28.347657129297506,102.327043302357197 -82.707122844709104,28.370211956986196,102.406305274926126 -82.707333165176223,28.403478121158141,102.545230778865516 -82.698444135657525,28.42231814883348,102.610158041119576 -82.68514789839432,28.430170814913183,102.622630101628602 -82.679753661999442,28.435607541378964,102.637058888562024 -82.678849810957558,28.436518512003239,102.639476434327662 -82.675797811474837,28.444107116692457,102.666417011059821 -82.681407088010005,28.459344235928725,102.738328530453146 -82.673420972450046,28.466895879510908,102.757601365447044 -82.666065987235868,28.486582850578714,102.828280022367835 -82.665481014974688,28.490936615344442,102.845487509854138 -82.667401141448281,28.499478131082402,102.883898937143385 -82.671157262418745,28.502916913942922,102.903890806250274 -82.670427427548873,28.522025868247415,102.98215698543936 -82.66905147464368,28.530345420973031,103.01461368240416 -82.664716391863095,28.532339343614016,103.016311464831233 -82.657705366789088,28.546959592037947,103.066360224969685 -82.662740532166836,28.551888283606139,103.094455307349563 -82.662661572359681,28.556288042365818,103.112592258490622 -82.658061597025295,28.570172313646925,103.163212419487536 -82.655149746840436,28.592980082404999,103.253371844999492 -82.665067130772641,28.60872614367165,103.333675129339099 -82.657660678275818,28.625868738517635,103.393461698666215 -82.659522009996536,28.638896108313716,103.450233979150653 -82.655179514187111,28.670534061296888,103.574598985724151 -82.647423376629945,28.696571384610628,103.670536568388343 -82.646494195163157,28.699690643246164,103.682025581598282 -82.653939075817974,28.707755156971331,103.726641749963164 -82.657041144807465,28.714578991919105,103.759544430300593 -82.653939207297199,28.721402885389335,103.783043656498194 -82.657041294285648,28.730087781424366,103.823624166660011 -82.663245366532578,28.739393003938186,103.871457164175808 -82.652078269735625,28.749318706407276,103.895531573332846 -82.6464948650748,28.769169998161345,103.969024785794318 -82.644013421895266,28.784678807169456,104.029261714778841 -82.644013493865259,28.792123027607907,104.05996960401535 -82.649597150233191,28.798326482734836,104.094005205668509 -82.651458441077637,28.807011412752654,104.132634177803993 -82.653940286481784,28.833066130351884,104.24377700407058 -82.639671186502028,28.84547328030061,104.273303360678256 -82.644014172923761,28.862222750753908,104.348849541507661 -82.640912326122901,28.878351915695308,104.41055388469249 -82.645875662925008,28.891379259360722,104.471665136516094 -82.657042952405973,28.901304771520451,104.529381503351033 -82.674414164181456,28.902545364222199,104.560759369283915 -82.689879603245217,28.907734582447688,104.605499669909477 -82.703634193847492,28.935078985518164,104.73870949447155 -82.709809368862651,28.938102773819764,104.760479192249477 -82.724877853229401,28.955628932196603,104.855274705216289 -82.73677166808767,28.975830130917643,104.956210196949542 -82.738889929214636,28.997823453320574,105.049651889130473 -82.759924272108066,28.995397012661154,105.071548561565578 -82.761569146757822,28.99520726626362,105.073261559009552 -82.765073294184717,29.00182687866462,105.105717520229518 -82.760396327666967,29.008738502064791,105.126975649036467 -82.754531172088463,29.028614011378629,105.199568945914507 -82.760722646345727,29.056309277176609,105.322400754317641 -82.784347073751618,29.066735578059536,105.400858611799777 -82.78157741252835,29.075695845130959,105.433341977186501 -82.817945291679024,29.078330307349336,105.499210919253528 -82.824679673994041,29.101016020553303,105.602218785323203 -82.810503831070704,29.106734302907853,105.604127274826169 -82.802186681461919,29.107216480952296,105.593502535484731 -82.800137581492137,29.112760830466971,105.613070406019688 -82.799896538676606,29.116617764534592,105.628474567085505 -82.80672355614503,29.131960472732601,105.701524532400072 -82.805756699075957,29.148735567369961,105.768599381670356 -82.82809434249819,29.160535755234868,105.850615764036775 -82.859201113909904,29.164385308568015,105.913459951989353 -82.888233792767082,29.16385111601695,105.955293718725443 -82.923636706304166,29.171878408821506,106.04176607914269 -82.933428918268888,29.170000436141059,106.048965640366077 -82.946326221246835,29.169930341339491,106.068261018954217 -82.975700943377603,29.17301894854916,106.125482525676489 -82.98054706643866,29.173925862106881,106.136546365916729 -82.988187328501937,29.182202353261228,106.181918348185718 -82.992678439856164,29.182772287857606,106.191068638116121 -82.997169519783526,29.180182394384509,106.187331843189895 -83.019238117963155,29.153527103765732,106.11213812045753 -83.020097033591171,29.143434512106488,106.072249534539878 -83.031478840212273,29.136133409347725,106.059762065298855 -83.054233392291323,29.13294952898789,106.081403681077063 -83.057893522787495,29.148373147615175,106.149936593137681 -83.069275470132638,29.15524460577678,106.195310105569661 -83.061974066750409,29.173067732937884,106.256899978034198 -83.062188865783796,29.178221383173483,106.278244946151972 -83.066269247513233,29.186596043519934,106.318604838103056 -83.080013533965896,29.199050618440097,106.390300018712878 -83.088867058534944,29.218525604855966,106.483131587505341 -83.07576206557971,29.250078989741851,106.591662164777517 -83.078293198662323,29.257434570442449,106.625450287945569 -83.090041586762737,29.268604872945801,106.688779902644455 -83.10850604491462,29.270991601094835,106.726597791537642 -83.126596570042736,29.280946920728809,106.794635127298534 -83.129056666861061,29.284834690508969,106.814190111123025 -83.147475164687691,29.291295197469619,106.868513483554125 -83.150794248471357,29.291869140686895,106.875903891399503 -83.161760474555123,29.288712227649363,106.879784064367414 -83.167122119145944,29.290981273959641,106.897180018015206 -83.17060672004061,29.29245595596332,106.908485921099782 -83.17776712808049,29.316319604198796,107.016362498514354 -83.17929130164346,29.330014848625726,107.074303584173322 -83.177883282156358,29.331367786036246,107.077650862745941 -83.176549406001541,29.346787959121158,107.138215619139373 -83.190613388528121,29.365513610664767,107.235629635863006 -83.201734482853396,29.375951431258823,107.294914790429175 -83.203478540695116,29.39651705226137,107.380949346348643 -83.219108171755792,29.422585517437774,107.510389900766313 -83.24154282769581,29.435270655654584,107.59595743753016 -83.264999556797619,29.437898055330376,107.642369392327964 -83.273053141283754,29.434348711873312,107.640289461240172 -83.295782296133439,29.440015454832228,107.697916768491268 -83.308129661286273,29.461741703323447,107.804669732227921 -83.308863772109078,29.470951198514001,107.843035630881786 -83.312581928651511,29.477755800857569,107.876225161366165 -83.324250214245012,29.47887864916272,107.898579939268529 -83.332166388076118,29.477683652262119,107.905838176608086 -83.351103973024109,29.491446758976693,107.990393739193678 -83.357759223506307,29.501988783237799,108.043155060149729 -83.371325867832482,29.501988677419803,108.063885202631354 -83.380291684602014,29.505645419855473,108.092359364032745 -83.385010613853609,29.515082311635151,108.137683472596109 -83.401290631669724,29.51932880583519,108.179718401283026 -83.402590528259182,29.525377519270819,108.206124457530677 -83.400868587423417,29.535128004741065,108.242846170440316 -83.406295178029595,29.580402511987185,108.43374474067241 -83.406107350368231,29.597652580413865,108.502974847331643 -83.400519397329802,29.615037684158541,108.564468253403902 -83.405120791309187,29.642878143410638,108.683578531257808 -83.413318105874936,29.669001079297345,108.801189579069614 -83.413808513718607,29.670563895064813,108.808223331347108 -83.415741701318609,29.672614043911835,108.819419899955392 -83.437299455851957,29.679467282679433,108.879904875531793 -83.445676490054865,29.679232910788258,108.891763024963439 -83.449235182694011,29.677331935957302,108.889559561386704 -83.456397363273624,29.67852181541441,108.905289852060378 -83.484185160916468,29.692554839087613,109.004173473455012 -83.484609254101073,29.700618400356593,109.037218143232167 -83.494770594518911,29.710463788850454,109.092302628792822 -83.513759124244345,29.718555202514029,109.153839075006545 -83.538688777848819,29.725134650878605,109.218401063233614 -83.548216096438523,29.734297081202811,109.269756416790187 -83.556037387599631,29.744673459514146,109.323361382819712 -83.567062913113588,29.763506417239146,109.415770367719233 -83.579999911504942,29.770449863351963,109.463415810838342 -83.585761432933054,29.778151418662922,109.503107335418463 -83.587134418448116,29.786714829846701,109.539524679072201 -83.584090461071241,29.789378132372153,109.545534040778875 -83.582949016565891,29.794133997383923,109.562839232385159 -83.586944448286417,29.813823213266126,109.647810183465481 -83.596539225928709,29.830052535518043,109.727465222589672 -83.60629054254467,29.838455005559791,109.776018852367997 -83.619614917535486,29.844403579485917,109.820222455076873 -83.639027830261611,29.888138070311665,110.02479693852365 -83.660999487088631,29.901588171786081,110.112181988544762 -83.680268138568522,29.920575996752547,110.217517659068108 -83.68747236251474,29.925797658477922,110.249399017542601 -83.758300384707937,29.960003254020869,110.494451686739922 -83.789781323974552,29.979040978871236,110.618638060055673 -83.829743326859443,29.98524532578049,110.704733224585652 -83.846480876509972,30.000125391794217,110.789700927212834 -83.932566328526491,30.041122498002629,111.085193060338497 -83.934724401202359,30.043206368690615,111.096798215992749 -83.932935391351322,30.046229220629233,111.106059045530856 -83.934488450345754,30.048359093713817,111.116914476267993 -83.960737263325868,30.066995881511307,111.231371710076928 -83.992665213142118,30.085971605394068,111.355895927175879 -84.001774061265863,30.098260333569112,111.418700913898647 -84.025333184426358,30.10532130314331,111.483023102395236 -84.04977475603124,30.105258109420458,111.520459021441638 -84.064050070655966,30.103428092518826,111.535221004858613 -84.077102890122674,30.097514414774619,111.531904960051179 -84.084117443225821,30.094336418893008,111.530124826356769 -84.088094534320163,30.094153396626396,111.535538313910365 -84.095785744787221,30.097014180867109,111.558761280030012 -84.103790917598772,30.095661188916846,111.56575568113476 -84.114901090615604,30.087528536147197,111.550653540529311 -84.125950403689743,30.092651171672504,111.588045933283865 -84.136744575075795,30.085068491933875,111.574646480381489 -84.158339969787065,30.074764871280404,111.56715286616236 -84.168943203745073,30.073472855065976,111.578426024876535 -84.180211485853505,30.075237669121925,111.602861094288528 -84.199593096270377,30.089986719553476,111.691358220763505 -84.202648168110855,30.09003169242003,111.696264943107963 -84.204412186775244,30.087924791398269,111.69063969142735 -84.209073283880841,30.086825812762278,111.693496317602694 -84.238077969519523,30.087609535880617,111.74151864554733 -84.246732593454666,30.095069915198867,111.784505732357502 -84.248555406696596,30.103188674271411,111.819513057358563 -84.257503342443997,30.105839628008624,111.843882564455271 -84.270428026727302,30.099709017493321,111.839612848125398 -84.273576308238461,30.094406942781287,111.823475695215166 -84.275067525629609,30.085128332638714,111.789001012220979 -84.271432639943939,30.077518808367227,111.753190035000443 -84.271856570891927,30.070144201574365,111.724597135558724 -84.278232635835224,30.062313571181679,111.703419215045869 -84.290791895957369,30.059247634430623,111.710734633728862 -84.298901087782227,30.059501555088612,111.724322472698987 -84.316410033328779,30.071541486255086,111.799249318428338 -84.343087989358708,30.065907833912167,111.818321822211146 -84.359989533875691,30.060274260852481,111.822230216115713 -84.366948656065276,30.026639295688948,111.699579594656825 -84.363027836623971,29.98979278976903,111.547142478637397 -84.361051758580331,29.986792967448377,111.532149503007531 -84.348765465935742,29.98617710006711,111.510602231137455 -84.344106261152831,29.977154624082967,111.467498510144651 -84.342326150831852,29.962830901936876,111.407780813984573 -84.340490866827309,29.9480632219421,111.34618918877095 -84.337575761697252,29.944564434210768,111.327737336046994 -84.334810497349665,29.925778470020113,111.24867579434067 -84.337017434276007,29.91502003277456,111.209275679662824 -84.344453464609515,29.901597697274557,111.167387725785375 -84.350130567708831,29.898870798681656,111.165357680991292 -84.380002223171175,29.895170757336775,111.197109036147594 -84.406023914549095,29.903287108851085,111.269954141229391 -84.424900372138367,29.905053860867767,111.306396476924419 -84.435353650567265,29.908385596421521,111.335950694046915 -84.444718947666971,29.915842118023221,111.380227967165411 -84.45277229797918,29.931141226868146,111.453658305108547 -84.471390681914542,29.926580322336765,111.464541245251894 -84.495630132149373,29.916013696609113,111.460310726426542 -84.513064564890485,29.918630414033519,111.497932600788772 -84.536942049913478,29.912148570628734,111.50942612066865 -84.578509776462354,29.889885436708703,111.485785242170095 -84.604373251019638,29.87817486011901,111.479620760306716 -84.614224392496396,29.870042220044912,111.462655111216009 -84.649028975871303,29.849163067365094,111.433996895328164 -84.657389071695846,29.840002495355911,111.410599328577518 -84.657521035646496,29.836336692716671,111.396198856644332 -84.670799285759827,29.830969875580202,111.395624427124858 -84.685005640316817,29.83338662949944,111.427529915235937 -84.693124803984304,29.831118686421696,111.431225836277008 -84.731399452794065,29.808960575992906,111.402972587384284 -84.756667841007754,29.79060136586628,111.36945594009012 -84.764071015329876,29.790907289201765,111.38230914529413 -84.825271102638098,29.760350449490481,111.356668499298394 -84.83824237676815,29.757988472312721,111.367664131335914 -84.869345950539511,29.744516950790661,111.362896005623043 -84.882852170534562,29.735945306410155,111.349969019182026 -84.889106192350667,29.724469878736517,111.314014296978712 -84.89356829790124,29.724723828702874,111.322064341045916 -84.902856651282832,29.737786043920124,111.38885763194412 -84.891141595537121,29.757864049217094,111.45050613861531 -84.878186479277176,29.774949227479365,111.498236259445548 -84.895067999950996,29.787236423596664,111.573828261345625 -84.905206245532838,29.788339281255269,111.594203813932836 -84.91618646685788,29.785363353301175,111.599651955999434 -84.921993489464228,29.774961870372582,111.567341736517847 -84.939446649116491,29.752272959803328,111.504386763088405 -84.947671783260517,29.747094174051,111.496707146055996 -84.965084156406689,29.744484174063611,111.513783128000796 -84.969918103810457,29.72914296796543,111.460198833607137 -84.97808122904047,29.723272220481451,111.449660614132881 -84.994341536568214,29.717024427643302,111.450413335114717 -85.038290506088856,29.713137281092145,111.504388788715005 -85.073202393838557,29.721089564337667,111.591375712305307 -85.102762070215036,29.720810338443229,111.637070429511368 -85.122553493922581,29.717916334300195,111.65688085462898 -85.154319141765484,29.7102934895453,111.676824352703989 -85.178365607615206,29.70225573041434,111.682897246442735 -85.218437939601841,29.697016102683008,111.725606146268547 -85.22853305402964,29.695696123527796,111.73637458588928 -85.260801845335791,29.683358685471514,111.738420858979225 -85.291824036274036,29.686143679873137,111.798875082284212 -85.320299660677421,29.683556587695573,111.833868733607233 -85.344704117483857,29.674066904752575,111.834860310889781 -85.34879615946079,29.66925313348694,111.822165984660387 -85.345852959092639,29.656856833008057,111.767988895997405 -85.353700192233177,29.661850496666123,111.800429325550795 -85.370504805048512,29.68311020079253,111.912054156884551 -85.381389241575548,29.700546161944995,111.998947237618268 -85.39895809613607,29.742556730885923,112.194373594596982 -85.41507110626867,29.801920369843142,112.456303220242262 -85.419059511521027,29.830908761723435,112.577885998412967 -85.417636628250463,29.844681025354991,112.630333366803825 -85.414663672014427,29.85499248989473,112.666551092639565 -85.406903633990851,29.867868854804271,112.705320187844336 -85.393557176892259,29.872965725672962,112.704309841617942 -85.399828489459964,29.861319629829154,112.668055915273726 -85.406099612676087,29.832204416402089,112.562393119558692 -85.406995224464026,29.803985096358279,112.451647944748402 -85.396615278497947,29.764425560400444,112.277719721198082 -85.379046307791384,29.711681574850065,112.039611856453121 -85.364885818216592,29.695587513459195,111.952873630449176 -85.354970489501355,29.686827125632529,111.902131644077599 -85.346071410355577,29.687077085053264,111.888953450135887 -85.318745920276214,29.693348262621399,111.870463625527918 -85.312474531386457,29.699619267821713,111.885498220100999 -85.302416495481665,29.799173445394842,112.266100514680147 -85.303676642892839,29.810149838746835,112.311768033541739 -85.305962727741331,29.813151656910925,112.327340621501207 -85.312505913187536,29.816428425162453,112.350772315636277 -85.315633070341903,29.824333970096841,112.387177384458482 -85.315869165456988,29.832629517679873,112.420530391857028 -85.313997140888873,29.834327440879715,112.424303996376693 -85.318550316935443,29.840948043976628,112.457853518426418 -85.326094555665549,29.847019652293625,112.493971183896065 -85.333375732802111,29.847958541408378,112.509276143275201 -85.337740869605597,29.851348321464538,112.529682949185371 -85.34813135372795,29.874033004716892,112.636291178874671 -85.364819028757594,29.900965406050936,112.769705676473677 -85.385818749863745,29.922998037929265,112.890473188832402 -85.389766107247837,29.926404302109159,112.910253960639238 -85.406141406790269,29.940534919303467,112.992300982587039 -85.427046010314768,29.951935128526468,113.070721576921642 -85.461578907521044,29.961625317535631,113.164061831310391 -85.470516092737981,29.959834340598963,113.171202827244997 -85.488855550426564,29.9632730023025,113.214028207585216 -85.510240152128276,29.973511270141355,113.288623992353678 -85.542269151823419,29.99783468634012,113.435892645269632 -85.573001191608711,30.028481770916915,113.606023120693862 -85.582484533314229,30.039824077854639,113.665947585366666 -85.58933688546648,30.057583059428794,113.746990701183677 -85.60227319039177,30.058381908459371,113.770779580809176 -85.61934968184913,30.067520271560262,113.834088610485196 -85.638381203721806,30.075357688724146,113.895382985472679 -85.654347618858324,30.079877310942788,113.938700047321618 -85.697907825475312,30.098926916382641,114.083381958305836 -85.731152820733939,30.120188488118334,114.220281005837023 -85.751029478731013,30.138571327455558,114.324437435716391 -85.776505280117448,30.158323045956475,114.442900583148003 -85.812320343296236,30.180351554657001,114.586823769845068 -85.879241287290839,30.217647976650252,114.840487566776574 -85.923704552569461,30.240051391874321,114.999659332446754 -85.997189505651662,30.27117270299436,115.239546584896743 -86.001043683848195,30.27280497017037,115.252128412947059 -86.091072104380004,30.305591438001251,115.525126425549388 -86.223673574507202,30.345604152021089,115.894991773180664 -86.299814526073192,30.365066452994736,116.093765766359866 -86.365291143655767,30.376540274898293,116.24425215087831 -86.398441643037373,30.38056886666465,116.313537254929543 -86.401520062957403,30.380942969529794,116.319972728379071 -86.413193297142385,30.382361551275832,116.34437810909003 -86.430439388081538,30.383404193253412,116.376334764063358 -86.455849054862497,30.384940378097923,116.423434861004353 -86.45731488421491,30.385028997313754,116.426152561791241 -86.458163125743482,30.385080279203226,116.427725267596543 -86.471967670681849,30.385914856512187,116.453322980552912 -86.475109083334118,30.385772457513845,116.457853368483484 -86.507269452590037,30.384314640547501,116.504252805374563 -86.530187024211045,30.388910195947815,116.559298940002918 -86.634075483212769,30.398311796411416,116.764464575797319 -86.752031098282828,30.393893020370648,116.939041244797409 -86.801408878905775,30.388488725273543,116.998424559831619 -86.851752222800258,30.382978750923915,117.059057070873678 -86.910807455238881,30.374434703463322,117.122196931391954 -86.920420738322107,30.372686884645201,117.131097258068621 -87.156525463184479,30.329759997942755,117.350712489336729 -87.207388524877416,30.322954926074438,117.407788339070976 -87.268962840783445,30.317491688182258,117.487806565128267 -87.283923213252848,30.320755381140032,117.525136355310678 -87.296558550910177,30.325514013117076,117.564458819106221 -87.320655024267978,30.319825112477165,117.582013139501214 -87.351623661849061,30.315075101112594,117.614570286124945 -87.420998027520127,30.299139363090514,117.667020164430141 -87.519465030969513,30.282446412762376,117.764813897199929 -87.453517788900882,30.302211913007035,117.732688888907433 -87.451217863662706,30.313110340936756,117.771287267096341 -87.452102290653897,30.348270423892171,117.909446611069143 -87.452518542787416,30.369206283997919,117.991468706168234 -87.44181858592755,30.393504059310352,118.068147217854857 -87.428618487360254,30.410403258278247,118.111949371173978 -87.420317322751075,30.41220323319963,118.105241125449538 -87.431719519948459,30.493096752012985,118.43755151797086 -87.44947417363565,30.515062407906296,118.551824599504471 -87.450983222652383,30.516368324029571,118.559364326298237 -87.451063228194386,30.516689305963308,118.560737939551473 -87.395621281750138,30.627185822165814,118.89631774276495 -87.395361469849519,30.6436919338812,118.95955625642091 -87.398139672505707,30.655632265419477,119.010162184014916 -87.408261113022448,30.673787197428982,119.096774121746421 -87.450506379414179,30.700902363809945,119.270687163807452 -87.482370301050892,30.718496134733051,119.390829818323255 -87.49866070865005,30.722110796209773,119.431553057394922 -87.504071856388478,30.724356627432901,119.449100916273892 -87.533753770965149,30.745475227490061,119.579180093482137 -87.625287034911295,30.847692915033097,120.122248716652393 -87.636088517407188,30.867864734505861,120.217313311062753 -87.623353610181141,30.899485148533699,120.317350089550018 -87.602505607307066,30.938269251564773,120.431328913196921 -87.595261924916628,30.978308168164329,120.572364997118711 -87.600078709122997,30.999426461484742,120.66089927777648 -87.600079286510464,30.999428992932607,120.660909888334572 -87.572431671353073,30.999842217203913,120.617018249817193 -87.549693161825942,30.999899416704793,120.579859834164381 -87.481391631468696,31.000175009866414,120.468740249052644 -87.48085161927672,31.000170014937211,120.46783491410315 -87.479854597068822,31.000186022947773,120.466259750537574 -87.468027330905201,31.00015113000185,120.44671842455864 -87.467975329736689,31.000151130464239,120.446633104234934 -87.462931216662227,31.000174174081966,120.438445260748267 -87.462786213415612,31.000175175317633,120.438211189582944 -87.459806148648298,31.000359191957752,120.434024850837886 -87.456853081465638,31.000291221853342,120.428920935839415 -87.450958948439222,31.000245276712889,120.419077246449888 -87.433439553802813,31.000178436003715,120.390091206878424 -87.42692140587144,31.000063500078078,120.378965403884649 -87.368988105059174,31.0002660036942,120.284813854843378 -87.365157017951276,31.000192041654305,120.27825781609863 -87.35680183020142,31.000218114400464,120.264677193947136 -87.335118342364709,31.000246305248993,120.22929229401052 -87.313327853566108,31.000409489739003,120.19426329433918 -87.305174666990297,31.00016557507033,120.179995437152684 -87.302711614404416,31.000408583896071,120.176895647309721 -87.292139375227677,31.000326681978393,120.159294076263905 -87.290049328049761,31.000319700873213,120.155850001610816 -87.266707801068591,31.000241911827672,120.117396979592741 -87.261683686955706,31.000169960175999,120.108911508694291 -87.260832667496686,31.000146968943227,120.107432972639799 -87.259103629604041,31.000237979385766,120.104955401271582 -87.258145607183096,31.00016899156153,120.103126301430166 -87.256735575657331,31.000191002870498,120.10090643260628 -87.256123562682987,31.000260004597919,120.100170131772757 -87.164225549209149,31.001026858115608,119.953080774284899 -87.163755487945622,31.00103078059195,119.952329114079475 -87.069772365584498,31.001119605839456,119.799528143368661 -87.065202262822197,31.001167643592122,119.792272414080799 -87.054876028599637,31.001107737886795,119.77523613628 -87.041127723150225,31.001570834383124,119.75463602039963 -87.037504638271443,31.001324879478169,119.747800610028207 -87.028245427698479,31.00123196608034,119.732382887974381 -86.889270260264198,30.999555279139084,119.500221782363951 -86.874123917466079,30.999609409380476,119.475863577798009 -86.833067983145668,30.999356783541092,119.408346202224493 -86.831630950809199,30.999379794930839,119.406105928122997 -86.787050933861536,30.9989572087723,119.332288812845945 -86.786825161435289,30.998956272820461,119.331919745542109 -86.729523624186356,30.998718725896506,119.238302915357053 -86.728424600897043,30.998861727893836,119.237073697149754 -86.726510557277152,30.998851745198436,119.233940673060715 -86.689424256299091,30.997009575508198,119.166941436007619 -86.679513461205843,30.996517281388169,119.149043943732977 -86.665811149497358,30.996514401467568,119.126901749521494 -86.568713945837501,30.997090219622521,118.972458646632731 -86.564563852628879,30.997204249785987,118.966207191348076 -86.521064837997159,30.99522673496762,118.888551295734942 -86.513960681376986,30.995681772682353,118.878857816569507 -86.459444441374913,30.995980232109503,118.792280464433134 -86.455829356449314,30.995773274645199,118.785673015750945 -86.406036222754025,30.996031694539155,118.706632900051773 -86.393060927844573,30.996154800913782,118.686263634823263 -86.389770852796559,30.996163829064482,118.681014460511506 -86.389769853205465,30.996163849840276,118.681012933142483 -86.375668534056643,30.996456936148121,118.659495034255087 -86.370393413561288,30.996459981875777,118.651038145646453 -86.366030313604398,30.996438020998305,118.643950127996504 -86.305717929782531,30.996012567943392,118.545565957203507 -86.290368575972451,30.99578171356448,118.520075735636055 -86.188365187259308,30.995976269906553,118.357513121329248 -86.181351082370554,30.995989648204077,118.346347292885184 -86.176322964734467,30.995782702789789,118.337512359023094 -86.170097820999388,30.995690761617809,118.327206125482917 -86.164004681070466,30.995666815675257,118.317373313009739 -86.057329227732566,30.995118767859079,118.144926931709051 -86.053578142946748,30.995232794210903,118.139382082037628 -86.036154743746437,30.995305940871205,118.11187877971679 -85.499375410173599,30.998918360854169,117.274706164374948 -85.499095405794691,30.998921544835348,117.274276963435113 -85.489400923125771,30.999031782567929,117.25941860396415 -85.15554747684638,31.002828080877642,116.749654721468687 -85.153313424865857,31.002827099881795,116.746154362335801 -85.153180422389141,31.002881098149224,116.746154458262026 -85.146930274781596,31.002688161387994,116.735628952272236 -85.058627217880996,31.002578915451746,116.597153292037547 -85.055895154238726,31.002578938579468,116.592886168509722 -85.053181091013315,31.002578961553493,116.588647405616939 -85.032247603981986,31.002641135423961,116.556201431900263 -85.031199579628193,31.002647143973292,116.554588601924479 -85.028604519347496,31.002664165028396,116.550603421404958 -85.025200440141802,31.002675193243945,116.545332589186728 -85.003459933406049,31.002676377062958,116.511411757208407 -84.999719512667369,30.973381960107645,116.39247633703053 -84.98461775273168,30.937483989985111,116.230191036127508 -84.960715913304711,30.912586511661747,116.096600474789739 -84.943014244852293,30.889988859432261,115.981522339396179 -84.897208629125501,30.752599543005786,115.377102493308485 -84.865778459364449,30.713552883872438,115.176214568316936 -84.864550769084204,30.713497399568634,115.174083240330219 -84.607465302699026,30.701878658333829,114.728828550316393 -84.607328299575059,30.701885659100185,114.728643234819174 -84.540447701382419,30.698789379189247,114.612869346514344 -84.536119597337105,30.698537428500522,114.605181035585701 -84.381793112442253,30.69168904822655,114.339755806140602 -84.283633729623631,30.687333132665103,114.171329575590789 -84.282281524234591,30.687273127257978,114.169011561200023 -84.084819551851297,30.677973734408528,113.829047235660255 -84.058294142361689,30.676724530270253,113.783474600873888 -84.047670886684912,30.676219644232848,113.765211467631161 -84.042875770234119,30.675897700657295,113.756601508706808 -84.040772720061412,30.675838721038819,113.753146888688207 -84.008518941481341,30.674120433735993,113.697002043016255 -84.008455939960214,30.674117077393703,113.696892407722771 -83.881378874678973,30.667828451070196,113.477892623282969 -83.881281872663138,30.667853450536793,113.477842207066715 -83.856277266955601,30.666433730116445,113.434098140336573 -83.821946436665399,30.664634105829524,113.374656263738871 -83.811596184209876,30.663902229094376,113.356002017855644 -83.744787567453969,30.660419343152508,113.240532159805298 -83.677829945768408,30.656928688399393,113.124948509968817 -83.675114879804028,30.656770718852037,113.120200422592461 -83.612775367307535,30.653282376747146,113.011789564043283 -83.612722364850995,30.653279410879893,113.011697445064783 -83.449946410000919,30.644436198497257,112.730250695720315 -83.441072195197322,30.644049290755692,112.715304546058178 -83.430634941753141,30.643522403048149,112.697447526268661 -83.430527939461754,30.643545402694993,112.697375836782157 -83.391111979932674,30.641359836931635,112.629203421063721 -83.380509721055745,30.640706957121797,112.610619735904038 -83.358752234200324,30.639386473016213,112.57257014978677 -83.342059782315204,30.638373390996666,112.54338856600225 -83.341900484935621,30.638363796338794,112.543110416270792 -83.312695065245862,30.636604721430992,112.492128046229482 -83.310503011406027,30.636444747569932,112.488192948512733 + + + Idaho + + + Idaho + 0400000US16 + 16 + 82643.116999999998370 + + -111.050855559961335,44.475100891397759,202.170754219405353 -111.051074407199437,44.439088364246743,202.099248085170984 -111.05109633547238,44.436841456076472,202.094798696227372 -111.050501483891537,44.063948881306473,201.342911113984883 -111.05061942071687,44.061883965381391,201.338944098912179 -111.050619407037132,44.061448983499496,201.33806171733886 -111.049973405961111,43.984145054568017,201.179795181378722 -111.048575734089482,43.816888252634406,200.835703054443002 -111.048197975190533,43.728017002753575,200.652630837634206 -111.048292963872683,43.727605018595824,200.651963317766786 -111.04827882502812,43.723119208151637,200.642714750953019 -111.047966764190804,43.688909658141483,200.571743628010154 -111.047907700512951,43.686873745152944,200.567440384067595 -111.047974673444983,43.685963782528731,200.565693335607648 -111.047736550586947,43.682094949945103,200.557276806794107 -111.04756187244557,43.6601748798806,200.511786272749305 -111.047056029109442,43.502205499614888,200.184211021289229 -111.046462372997439,43.316797523590097,199.797113845124841 -111.046070743119401,43.196661692621802,199.544757823459804 -111.046009551739459,43.190326966490716,199.531340592540801 -111.046073408281643,43.185523172441869,199.521373764611781 -111.04610719230557,43.178319482351284,199.506306027062237 -111.04607618839249,43.178204487806759,199.506005359813571 -111.045981048172635,43.073452013396974,199.285290669649839 -111.045999924691927,43.069310192339721,199.276588185690343 -111.045987863271662,43.067260281257951,199.272239683195949 -111.045954687664903,43.06139753558076,199.259803535416722 -111.0459235232765,43.055907773776113,199.248155762441456 -111.045900268711478,43.047391142998727,199.230128707364202 -111.045895219041299,43.04572921507053,199.226609238423407 -111.04583412191549,43.042504355757337,199.219681326299906 -111.045930761109688,43.030359880476517,199.19420765992254 -111.045869674971158,43.027501005378781,199.188049106858671 -111.045870628271999,43.025934073289989,199.184739123098552 -111.045870620432069,43.025671084691069,199.184183241799474 -111.046042564334797,43.023704167204237,199.180354149080813 -111.045992057497713,43.021142186725932,199.174841859377921 -111.045965446608875,43.019792338051403,199.171937333419919 -111.045759144583144,42.976155235076334,199.079208330251276 -111.045791979148845,42.97057447696168,199.067450867965817 -111.045793829620223,42.96554269554143,199.056794682517648 -111.048070922927693,42.514228061517947,198.096394428983331 -111.048896882775949,42.350539676010932,197.743802482262254 -111.048888909673366,42.281909730600546,197.594604976475239 -111.048909447065,42.195899569030324,197.407110810279846 -111.048870100860881,42.183799110672304,197.380599999800324 -111.048918140104533,42.150099617890135,197.30700655747205 -111.04891995562329,42.143625907755613,197.292843592353165 -111.048495948035679,42.002702241791262,196.982736432924867 -111.417685239855132,42.001877458870347,197.698834225535393 -111.422710312956283,42.001922377508393,197.70871867146343 -111.4273473805561,42.00196930217875,197.717852218076587 -111.509077509039599,42.000646071098515,197.874184134416282 -111.87830970243941,41.99965027444896,198.592635919339955 -111.91744125048514,41.999617655844915,198.669059013947845 -111.917656254154039,41.999640651396163,198.669529367238283 -112.111350322095106,41.998223906103959,199.045428270474076 -112.165778663476019,41.997825797605373,199.151160595938563 -112.24093083372469,42.002333399440793,199.3081723023206 -112.266760184530639,42.00210699928509,199.358308995142579 -112.387995860309701,42.002240065732082,199.59635603427887 -112.452393744104427,42.002205042751037,199.722661637701094 -112.452640743518018,42.002066045136431,199.722846566699445 -112.649848420072274,42.00141693401779,200.108852375298738 -112.711205254209929,42.001417955895555,200.229503821581602 -112.790373309307782,42.000788721896093,200.383906132541597 -112.834915900745131,42.000412028328157,200.4707708125934 -112.834956902446152,42.000452025851516,200.470937370322645 -112.882451531190597,42.000027287123153,200.563542290590703 -112.884199554783535,42.000028259172929,200.566986841149628 -112.911419917748773,41.999896830564474,200.620317145250738 -112.981051838816185,41.999367742560437,200.756377104669809 -113.002653981291402,41.999327401390119,200.798867183737457 -113.002655127578706,41.999327399249488,200.798869440332055 -113.398336276962539,41.995348249943405,201.571444982662797 -113.40406935001883,41.995259162157559,201.582589119672775 -113.433402726210147,41.994896708673849,201.639814763329923 -113.766373955680564,41.990551565224713,202.289805729873478 -113.797926354832455,41.990196074644658,202.351603263057768 -113.895106582003208,41.989147560885819,202.542126890271902 -114.043570656444658,41.994807912684244,202.848777151666582 -114.050093740146693,41.994808807647559,202.861733618192375 -114.050104742977553,41.994901803197905,202.861951583065093 -114.063621915797697,41.994884586400957,202.888761664740741 -114.063610919764088,41.995026580053718,202.889039206318557 -114.109107499224123,41.99491785253398,202.979188934899867 -114.109276505263239,41.995051843654018,202.979807035066187 -114.283704860730339,41.995348496037593,203.327195343561471 -114.500096481108244,41.995716511169242,203.758728986606002 -114.500112480235899,41.995679512615858,203.758683357387781 -114.600121732161483,41.995589901409161,203.95779378246516 -114.765681953376713,42.000984975872804,204.299272112548351 -114.91604581492615,42.0009825423301,204.599471759051085 -115.033643148292725,41.997079817779444,204.826357782818377 -115.040116191974079,41.997096831517119,204.83933430723846 -115.988751682861306,41.999590175753205,206.746876481920481 -116.01408396515086,41.999090785917069,206.7968126880005 -116.014090965613832,41.999103785197811,206.796853377483785 -116.020817034832291,41.99877769068879,206.809717597439885 -116.020832036180195,41.998817688582221,206.809829640202224 -116.032630163183214,41.998438513820417,206.832790880464017 -116.032626163605343,41.998454513140807,206.832815571688116 -116.040442255467951,41.998468385016452,206.848570513539016 -116.04047425721987,41.998515382306437,206.848731061443686 -116.162706684274951,41.998561385771097,207.094865313731134 -116.16580472167648,41.998608333014992,207.101199613884091 -116.46540514981379,41.997595485423453,207.703001417219639 -116.484971383777747,41.997933149674608,207.743163576349616 -116.487700414302168,41.997909106164272,207.748621046543121 -116.512329702863227,41.998143692363868,207.798795827664435 -116.588815583382598,41.998416428203278,207.953733362257481 -116.628649047610509,41.998795758508379,208.034932965412736 -117.020177499769375,42.000397266854392,208.829742933623493 -117.028105614419843,42.001291094877033,208.847591072320938 -117.028238903749624,42.808016823541195,210.443770087324083 -117.028210908197124,42.808171816950669,210.444015208631754 -117.028160916145751,42.80844880517224,210.444453335367143 -117.02859764026249,43.025867937986433,210.865565361455083 -117.028566647742863,43.026119927122842,210.865988302975893 -117.028678061505886,43.57849322958463,211.915380225516856 -117.028706098531416,43.579641178318617,211.917588604614139 -117.028854578683067,43.594598514207213,211.945924681611359 -117.0288216551413,43.596999408600851,211.950359326787293 -117.028756792796472,43.601323218531256,211.958333539776504 -117.028692841843522,43.602878150872819,211.961120716296136 -117.028722122576113,43.611634763345414,211.977580978535116 -117.028870346738117,43.618579453982427,211.990877105854452 -117.028934456988438,43.621997301907527,211.997401867061853 -117.02883857921141,43.625845133566557,212.004414919763803 -117.028638794237224,43.632623837584383,212.016705889254808 -117.028595843888894,43.66534839421049,212.077803083695471 -117.028652202345185,43.676485902178868,212.098715988919139 -117.028558799716222,43.68182719987098,212.108504358679056 -117.028521441198052,43.68396357480222,212.112418771721423 -117.02876118994098,43.707154549157373,212.156156769953668 -117.028661466365236,43.715776171285725,212.172033521346748 -117.028778050468375,43.733865373350255,212.205965750850737 -117.028588081491137,43.734895331266173,212.207509995438159 -117.028573476507731,43.809061073944122,212.345365893095732 -116.998444964864348,43.865669105542011,212.391133857890964 -116.98442306601072,43.873753990015807,212.378579664044082 -116.981127025781532,43.880927650553332,212.385393631644547 -116.963477306142281,43.919341353884661,212.421835976652801 -116.937245291859526,43.989566738699352,212.50007910747081 -116.933666977960399,44.103419854606791,212.70245866291225 -116.899094024227793,44.153481693718504,212.726663649082184 -116.897880266727967,44.155239221843424,212.727511942386627 -116.896032439376668,44.161134998476037,212.734698859043419 -116.89770682360836,44.172210491220895,212.758238852024078 -116.904702175037215,44.180410017553832,212.786893632262945 -116.977858115988951,44.243783032744084,213.045300791971385 -116.988823330027785,44.246415731745678,213.071484640240669 -117.02951191305597,44.249818889141764,213.157057696953416 -117.035123955047695,44.249129822860631,213.166754267178476 -117.043097896839782,44.244590882221225,213.174058171920478 -117.172297887634628,44.259825013954703,213.453913304023445 -117.192063477481867,44.274891649960658,213.519807886332273 -117.198554442968586,44.288461894077287,213.557050541043282 -117.199734831744877,44.296722087039271,213.57430300489068 -117.199463872067199,44.298212537303314,213.57647093012929 -117.198554932946678,44.30321227974364,213.583742135204375 -117.19678505870705,44.311472517756123,213.595228032208979 -117.193504479906537,44.33055260294028,213.623316185548902 -117.191727691300429,44.33751633377468,213.632431169040501 -117.216851903670289,44.467826264100509,213.91598654538393 -117.210417896641985,44.486852606578424,213.937600136734545 -117.158453722070035,44.529235689213778,213.912532924674451 -117.151206902071536,44.537074479324424,213.912493021227419 -117.146126162860952,44.546570161621901,213.919627002440393 -117.117867455212846,44.624259339773666,214.00366174057126 -117.097836622847211,44.665655926557115,214.038662196137011 -117.064243348177513,44.728059861143336,214.084696036763489 -117.046187749386249,44.746056411340739,214.081751059740782 -117.040240783425858,44.749095385466404,214.075647147372365 -117.018186777772513,44.756488453538338,214.046128141693771 -116.933470036410483,44.793197365826288,213.947619774378836 -116.893435645404054,44.84144609079538,213.956012370064855 -116.854400358355534,44.888490721262471,213.964155616238713 -116.833964672381427,44.933919168909071,214.005220897495747 -116.83767697756933,44.941544785203106,214.025859386660159 -116.846628381690763,44.950249265772143,214.058486950583756 -116.852712754516617,44.959023793083539,214.085707587189972 -116.860253526554345,44.978917829973632,214.135350714437664 -116.847346717059125,45.017967421062266,214.179376106709242 -116.785881125431672,45.079928901739301,214.170327966101468 -116.731587660610828,45.142996220507847,214.176966995000839 -116.711518534050583,45.203918042536273,214.245342222042382 -116.698031169664134,45.255580139722312,214.30991801340133 -116.693181232901836,45.270146037830656,214.326091734692454 -116.675779234583743,45.322409769122984,214.384026643820107 -116.555464018760517,45.500000577116353,214.463250880129635 -116.483201020419358,45.581488513997101,214.466896791011095 -116.465628592175207,45.603675918010843,214.471872860565782 -116.465498051159798,45.616675391876633,214.49408465065062 -116.473498598130405,45.62935673698636,214.531169989146292 -116.491115617072225,45.652028508802047,214.603713287040591 -116.512934485405566,45.669001438918798,214.67435566149652 -116.530269171072305,45.682359594203739,214.730232033878565 -116.53739362275482,45.692620053709973,214.761389611288905 -116.540012480785876,45.715814068309108,214.806201277300715 -116.537697140990247,45.735115327611105,214.834936724044383 -116.550089938849666,45.753247377388313,214.889514210633934 -116.596211453565033,45.779961490116079,215.022640877403319 -116.635379128450708,45.785561577644287,215.106429321691394 -116.791105269086984,45.848624300266124,215.508904028683901 -116.79842449304337,45.854681592666836,215.533053940162063 -116.85926311869801,45.905030829490833,215.733588011004031 -116.868553691932433,45.917829150947348,215.772815345786512 -116.87713570662666,45.943069984707655,215.831687362864614 -116.918002122754004,45.996280128128831,215.998651813715696 -116.945545877682477,46.063036967586122,216.162805379368365 -116.927640191703304,46.159748421614282,216.290778829716146 -116.960823648794914,46.243176516077291,216.492252984084189 -116.987357891783546,46.29547097163514,216.628966896794736 -116.989964048884957,46.298884790184673,216.639525697566569 -117.04949641790482,46.343734959193071,216.825674730353057 -117.063073500068995,46.36859673511816,216.892218589782715 -117.048943768928922,46.380426518285468,216.88516042381525 -117.041843383908571,46.42627283491796,216.947310015559196 -117.041772768431485,46.463550367657831,217.008442681282759 -117.041795024154979,46.470416097052706,217.019756657071412 -117.04180310645998,46.472625009991603,217.023397674784064 -117.041817328104955,46.542628244842511,217.138140061870217 -117.041873015752998,46.816275588358216,217.583120701834559 -117.04170240633772,46.826630190174988,217.59952590521425 -117.041877987805407,47.128085539134517,218.083213768899441 -117.041893995750343,47.155553536953725,218.126951102167368 -117.041930044095437,47.182676501491812,218.170121844857931 -117.041947873089413,47.204099684711835,218.204162354581058 -117.041959734319605,47.226331838041581,218.239440232515335 -117.042081045184204,47.260087552281469,218.293125080876052 -117.041908464946971,47.348013221161267,218.431665753014386 -117.041923403140004,47.366904510860557,218.461454155854881 -117.041949492215309,47.399895259235336,218.513412456959486 -117.04201801456901,47.41322175499262,218.534485163167119 -117.042016894828677,47.435693907495498,218.569775111973286 -117.042041010033017,47.464116836357604,218.614404397085309 -117.042015579684303,47.478630290624913,218.63710102904588 -117.042586338073818,47.523156606890119,218.707830840721726 -117.042617543695016,47.528367410711787,218.716033185832202 -117.042817756801909,47.533714206422175,218.72475687135011 -117.043349760931122,47.559014247930158,218.765243030153215 -117.043247772308405,47.559334237780035,218.765554937534034 -117.043509510386002,47.678939762209367,218.952177659608424 -117.043509512173173,47.678984760531932,218.952247498556972 -117.043509584259596,47.680799692878324,218.955064240843058 -117.043610712372995,47.683993572006969,218.960205734707415 -117.043712636073948,47.707198705805745,218.996378500945866 -117.043758285661184,47.723508098033307,219.021731090731919 -117.0442161433362,47.744897294436875,219.055680071003735 -117.044140182260875,47.745897258652789,219.057088047266006 -117.04473881795299,47.761653662468113,219.082552661187947 -117.044704832136432,47.762019649493737,219.083056232891977 -117.044602977430984,47.765692514963142,219.088547349907458 -117.044567041992948,47.767321455137854,219.090999310836196 -117.043964149232863,47.978175983266361,219.414202935062349 -117.043769252256396,48.04634617779076,219.518020554445684 -117.043495868881095,48.08628472060682,219.578401397913694 -117.04165044663911,48.174741525637891,219.709483346901834 -117.041511579166936,48.178031408354563,219.714220550842583 -117.04171661811074,48.178923372128928,219.715945615433156 -117.041681706283612,48.181094293714196,219.719174071215093 -117.041680728312315,48.181634274070419,219.71999104321003 -117.041680739373902,48.181905264203195,219.72040194272995 -117.041713857797177,48.184796158345904,219.724845011718571 -117.041697872785718,48.185168145095403,219.725379910320044 -117.037284470322092,48.371652466859935,219.998880475759506 -117.037284484468699,48.371995454483844,219.999396033585072 -117.037397613382424,48.423504596137093,220.076928744092584 -117.0373626299873,48.423916581949527,220.077483255416155 -117.037393906390093,48.430588341280121,220.087542050518095 -117.037393918679143,48.430885330593938,220.087987244129181 -117.0366158392155,48.621534516523703,220.371097518131137 -117.036475161742501,48.629288242726297,220.382362395524979 -117.03530372514328,48.847320516861885,220.702459571883082 -117.03448380146564,48.999940188469949,220.924603588879108 -116.759314334879278,49.000548249638818,220.43415704369545 -116.759363341984951,49.000700243426543,220.434467880055308 -116.051313171259366,49.001682248382487,219.175421465188265 -116.05114336463555,48.959122730903879,219.111430206336081 -116.051141347501613,48.958718744998706,219.110821479931474 -116.051325196731284,48.502845981005606,218.421236756257713 -116.051441017338277,48.216258334467028,217.980428898707032 -116.051496948856141,48.078023051312357,217.765763614326715 -116.051479875011921,48.076198117889469,217.762888503260911 -116.051449743086536,48.072937236860085,217.757751210592687 -116.051401521071497,48.067447437146733,217.749105244874954 -116.050501974296409,47.977932995230617,217.607620692811906 -116.050498896546571,47.97762672349338,217.607135629281402 -116.009330085264594,47.945776630639187,217.482578330673277 -115.9213624438446,47.858219422881561,217.185175929218531 -115.731185842027116,47.703924519251004,216.594725374132395 -115.725832518194167,47.697493852559255,216.574723546393216 -115.708344131723507,47.638689132946787,216.448861690238118 -115.720130760665356,47.593502155152983,216.397894345223904 -115.723264754189117,47.577150348284547,216.377362271770835 -115.737812016635417,47.556173654149475,216.37019778881222 -115.741740792448923,47.538491829333495,216.348948584869504 -115.731916317804931,47.518845578494698,216.29942134115845 -115.714232449680267,47.489376294116745,216.219674630090594 -115.727984857984978,47.467764987501539,216.209938491694629 -115.731913560637707,47.448118530598748,216.185410636477172 -115.723135745335412,47.423183079520115,216.129083109088242 -115.69262106385257,47.415892897775613,216.061507504433393 -115.663391128400932,47.403497985483341,215.988002942875028 -115.578883705173396,47.367662733465913,215.775344273075461 -115.563485925266434,47.352725567216346,215.722894453443587 -115.553355095472838,47.334695422965744,215.675011632964015 -115.52573438470759,47.299760224876962,215.567508822306991 -115.481298152118072,47.282931648484684,215.458689411170781 -115.423686994596224,47.272580063674248,215.336318128742278 -115.341241516084551,47.262468911569719,215.168899389915168 -115.322224037285807,47.256563471687386,215.124415163882077 -115.296823365336053,47.221762230093525,215.020719552412629 -115.29414790636983,47.210709692960627,214.997626272030175 -115.26875946900131,47.181951225800319,214.903742223978043 -115.202580988214734,47.140006980735123,214.713225929997861 -115.195254657137099,47.133879341707228,214.68966087885201 -115.101207176605087,47.048987213901796,214.376321375370026 -115.075012525076048,47.014619977924731,214.270987797528505 -114.977812574769715,46.933729670703201,213.957234410569072 -114.938036393942681,46.900627723780914,213.828579372726381 -114.940733275770597,46.869888845350779,213.781807942315936 -114.929855891933315,46.836859295325581,213.706146955490112 -114.922477482621531,46.828566741579316,213.678587392903864 -114.890163334184408,46.809444040609115,213.586858777329326 -114.855295538242999,46.800665989971819,213.507881786674261 -114.827938504440013,46.782822152909517,213.42735118791461 -114.76919310720136,46.739703834299988,213.246104031801224 -114.74126524808436,46.716044477972773,213.154465079307556 -114.719656516129746,46.714871655207354,213.1126943314448 -114.692641667932023,46.720838948641109,213.073142630979419 -114.677516429092279,46.720394387904868,213.044556156732142 -114.669357028864511,46.720154566955365,213.029135992750525 -114.65771443549319,46.71262191228012,212.994875512085855 -114.64675661885174,46.703034806557021,212.958361331373453 -114.644701807148522,46.695501983575006,212.941725221462548 -114.643331823076167,46.687284317961691,212.925174993462861 -114.643754202800565,46.68016631732209,212.913796697743237 -114.644721988301683,46.674025535556027,212.905088508501649 -114.637876390669021,46.660391178226682,212.869182693772018 -114.616430348533271,46.640070333819494,212.794923167675734 -114.596713602261161,46.63444136147627,212.748969933949411 -114.594270814581861,46.63374396525635,212.743276251479983 -114.483948284406466,46.632877932848061,212.538679002784193 -114.463216697003332,46.640035859410737,212.512820173054934 -114.44883525107447,46.646199375224278,212.496946175582707 -114.424181221299818,46.653047862043636,212.463362576439977 -114.372133318292285,46.655103199794333,212.371198643930256 -114.351587767977946,46.647570687353131,212.320477020926774 -114.34333945433778,46.643689536648189,212.298636431805789 -114.339945276623467,46.642092444708204,212.289648330770433 -114.33309644816174,46.631135671665284,212.258193209767342 -114.333095614924005,46.608537055677175,212.219253400340676 -114.348527894635382,46.536679997178901,212.123613677918911 -114.387294908853548,46.468054963359727,212.076314939185977 -114.37999664732871,46.436265318311754,212.007731188088655 -114.428877010423221,46.290570114367839,211.844619870185852 -114.474631023646012,46.163105290956707,211.706579312682152 -114.48510734447926,46.130050978344698,211.668071432970464 -114.478270326260699,46.113893076620215,211.627008602023125 -114.470190409575721,46.100842511173418,211.589070226997137 -114.469568281730957,46.082820108818808,211.556230998598039 -114.478268497977737,46.062933163906699,211.53742000926286 -114.493183713640235,46.044910505095984,211.533436907455325 -114.493183357783579,46.034967114814691,211.51592461578548 -114.492561500598882,46.023780802699804,211.495057702064514 -114.485361638605298,46.008956156711896,211.455519581213593 -114.467357968762201,45.996986940590133,211.400883878581226 -114.431619150318639,45.98754893222857,211.31768156401813 -114.413987606459827,45.978968576068553,211.269690221175551 -114.403531935730967,45.964107343296256,211.223931512795389 -114.395737371077658,45.894935210787537,211.086788616143167 -114.450656864750826,45.859806651575155,211.126838128082454 -114.500786246745136,45.851591109963309,211.205818431451917 -114.511280205156751,45.846446132478377,211.216278628446162 -114.516573107976896,45.841700229214645,211.217736934311688 -114.568147431393882,45.774780997192067,211.195201152004302 -114.549737107742743,45.744227532562846,211.106361828744411 -114.530640441365833,45.732555327815497,211.049818887375295 -114.506841790122422,45.723096116050215,210.988405582495034 -114.499525287685714,45.711597701069948,210.954182121902704 -114.49739300049626,45.704242031418659,210.937050926499069 -114.502895788356369,45.667637398611866,210.881905600428581 -114.517381495232129,45.653764703504365,210.884218009188771 -114.543790443153895,45.642227709669662,210.913063623942435 -114.547544550105101,45.643850579952087,210.9230055809021 -114.552804608731307,45.643522502351615,210.932278988882899 -114.563016650382423,45.640828434051393,210.946603122167289 -114.565622597678114,45.638334488959892,210.94702628441155 -114.56374104321786,45.566034420967597,210.813910417258739 -114.562823186832716,45.565500409277554,210.811228593811393 -114.553253690638712,45.559932846727655,210.78326550591737 -114.516163396426649,45.565660255549361,210.723931446671486 -114.475725805957339,45.564205010319036,210.645432486198843 -114.462508559756969,45.562210317947361,210.617045880295336 -114.368582877456319,45.492547733023159,210.315158643759787 -114.352780864653667,45.469474933174553,210.243760196492076 -114.311574342494836,45.470365604969523,210.168002263642848 -114.249791153327777,45.546420610405313,210.189706879667938 -114.189814227137148,45.543083774734043,210.071295058354735 -114.137211047659534,45.558398064582931,210.000496406108141 -114.036893839385229,45.648898171688529,209.97654196806252 -114.024498777154221,45.680550123679083,210.010539842769504 -114.021280199431402,45.69386664899271,210.028553968295455 -114.017598260858151,45.697056585405619,210.027435787022114 -113.989724199230594,45.706176702147857,209.991879579611123 -113.973529816050473,45.701566164018885,209.953355035744607 -113.9445640267638,45.687293032749643,209.873555359430611 -113.936183660199333,45.683163538087705,209.850461734458804 -113.89864272043728,45.642384806620804,209.706637263298035 -113.83735559229018,45.613895925136816,209.540588028728962 -113.815891873885803,45.601495948765759,209.478001594543457 -113.806829198584083,45.590049629628226,209.440275660715997 -113.803967068896199,45.580034036744166,209.416714049875736 -113.815413146981484,45.550940711562568,209.385131546296179 -113.812073752494697,45.531863319131723,209.344131511636078 -113.788225342093696,45.522325002931737,209.282169030979276 -113.77487009747864,45.513263441897635,209.240672737360001 -113.767714655624658,45.484170456775132,209.174150073900819 -113.776109923614811,45.466314944893504,209.157200411893427 -113.762875711204458,45.407446534832637,209.024608748964965 -113.740677768463954,45.330690004141708,208.841983864083886 -113.676354135929316,45.250364344230142,208.573145075701177 -113.652008299315924,45.23566435335627,208.500263914465904 -113.601448118054947,45.192070978508397,208.324558050371706 -113.56791923646783,45.150294242226771,208.183959660120308 -113.568119028411758,45.144079491028009,208.172770027071238 -113.578299851834075,45.134730697603608,208.174494955688715 -113.578392735830391,45.131270836520322,208.168228421360254 -113.487214217794175,45.064483098860144,207.87224246095866 -113.475705997257762,45.062664367974541,207.847206619568169 -113.465896911968514,45.064158473458029,207.831562844105065 -113.451284121156661,45.046710431287892,207.771435643546283 -113.447685148472942,45.01931760815792,207.713340651243925 -113.447847858207155,44.980886173086489,207.641534245572984 -113.449131607442169,44.972892477749589,207.628936883062124 -113.474647161076007,44.949092018525178,207.632261374033988 -113.482768346547203,44.95127879171239,207.651667967438698 -113.496378476846573,44.94956563146085,207.674086776562035 -113.500677325347368,44.943282815665391,207.670380528084934 -113.477768412704378,44.895619154401267,207.537528833374381 -113.457000149404649,44.866396703376253,207.443277115002275 -113.355556281045935,44.792372455135016,207.111897899769247 -113.343628898526617,44.785830925156226,207.076984797604382 -113.331415855427394,44.78962297509652,207.06113157607615 -113.28030694659607,44.81368384806887,207.0103714838624 -113.24909085358253,44.823927953788292,206.970959567464888 -113.209801810930202,44.809019227602178,206.86861821077764 -113.160128215507939,44.781828180433536,206.723304765298963 -113.136538299436523,44.764131304457706,206.645142447203398 -113.103001364215558,44.719816690938572,206.497375415638089 -113.053419970812143,44.637938898555184,206.247107077389956 -113.051264691645173,44.63036924724566,206.22851659823209 -113.055444480627258,44.62217651550943,206.220688388682902 -113.058685442728773,44.61964656566834,206.221953724510968 -113.029058007171017,44.496910144749314,205.929717741906643 -113.005453206594225,44.451811413102433,205.797896180301905 -112.972207964863259,44.427931961863784,205.688715802505612 -112.877726711952889,44.37536011893679,205.407732388004661 -112.851170105005821,44.372041180990209,205.350979145616293 -112.833244825491491,44.382663495899841,205.337705171667039 -112.831152059516555,44.386430513138649,205.341071826405823 -112.826606081581502,44.394613357221886,205.348383016884327 -112.825278669732455,44.407227016724349,205.370396141894162 -112.823951322835768,44.42183228456053,205.396267034113407 -112.823951754288203,44.435109809018265,205.422055406495929 -112.813993631128398,44.452370742048416,205.436729827895761 -112.78320119857085,44.485887711560132,205.44354856107384 -112.721016954678376,44.505343943797669,205.363845826126635 -112.690066337756889,44.499850687933353,205.294767245650291 -112.546127803348199,44.484766713254395,204.99388393945992 -112.475109669478186,44.481032051232539,204.85270734783262 -112.412245784824663,44.463975233494459,204.700941412709653 -112.388981234266211,44.461483128571757,204.652230776846409 -112.373195002531901,44.473114994531457,204.645209224894643 -112.360827237283303,44.487286695691402,204.649589270353317 -112.3585014263505,44.494133451475065,204.658576008863747 -112.349101210451664,44.521303397601244,204.693890806287527 -112.341623944421343,44.539581746418492,204.715455682948232 -112.300911796430839,44.560353109983915,204.679370170459151 -112.275985743762902,44.565338510463306,204.642231523059309 -112.260199133130072,44.565338773418084,204.612563426606357 -112.248566756522862,44.562015632883046,204.584224238991737 -112.237765218712795,44.556200018056082,204.552582437172532 -112.231378430262936,44.550500242594524,204.529458173550665 -112.223599123479289,44.544525618197127,204.5031758826226 -112.189015328915687,44.535459567245411,204.420474668033421 -112.080369725760789,44.534560411244826,204.214633223600686 -111.949838580151862,44.557786625332056,204.01520961523056 -111.872400683659009,44.565044613527263,203.884296611882746 -111.851188587341667,44.540849959489705,203.797044925391674 -111.845190122827773,44.5292385362741,203.762983445078135 -111.808422170044778,44.516473671039954,203.668959917500615 -111.739085045707469,44.544074686902427,203.593383390456438 -111.706112116109011,44.56121953019418,203.565399237908423 -111.633397777470904,44.553038071241005,203.413240533322096 -111.619394816768207,44.554050890563346,203.389044458977878 -111.603141400909493,44.555226482894341,203.360964400693774 -111.527656925558603,44.605898659156409,203.31976377684623 -111.518482051165549,44.644721225126041,203.379059657454491 -111.490903655931831,44.706565161487106,203.44916339404881 -111.483431569387974,44.71019817775889,203.442371500656009 -111.396710745027278,44.752362862880091,203.363656907342374 -111.379577501339995,44.752756131300913,203.332551024854183 -111.325562801171529,44.725488134978413,203.178474712185562 -111.221124919763113,44.623636010174479,202.783155960030854 -111.14133930894576,44.518137637487719,202.425202697515488 -111.133262633752253,44.500951474255885,202.37594164442271 -111.124537300685901,44.494685874741926,202.347193474881351 -111.108456822681717,44.487357440045521,202.302604863420129 -111.050855559961335,44.475100891397759,202.170754219405353 + + + Kansas + + + Kansas + 0400000US20 + 20 + 81758.717000000004191 + + -99.542609715512896,37.001106993978617,162.081146803684533 -99.559562136428852,37.001062256740589,162.112437411211431 -99.626894422265778,37.00120440177875,162.237736102193594 -99.659154046556694,37.00172996937512,162.299164212308824 -99.775753274365101,37.002368467154703,162.517646757885814 -99.776314285087238,37.002372459876142,162.518701473250985 -99.787514499316984,37.002462314053787,162.53978974185884 -99.996703470795751,37.003159635099415,162.93128826469183 -100.002788586961415,37.003227554715629,162.942832888104022 -100.00406561119479,37.003234538204133,162.945234229788184 -100.007208670890236,37.003254497427577,162.951152862980962 -100.090987996566426,37.003618940617187,163.108504326082766 -100.117226753271751,37.003733079957165,163.157818482257426 -100.189053101168625,37.0036081750943,163.291600324213505 -100.193877190869685,37.003562116152047,163.300478517077863 -100.195260218757795,37.003659093811642,163.303349625319242 -100.203182366501565,37.003606995844081,163.318000469356775 -100.553110880069312,37.002141617525851,163.969079618342221 -100.554195902546041,37.002256598004898,163.97145513817668 -100.592841614490169,37.0018971230825,164.042953542433679 -100.592926616526881,37.001920120860007,164.043180931359529 -100.63128432212595,37.0015456501282,164.114129232242703 -100.634837210464596,37.00145671368746,164.120542791672051 -100.634841386447093,37.001456609153664,164.120550330728292 -100.677067165585285,37.001208082565498,164.199178830720484 -100.758410667092946,37.000876060109441,164.351197221316397 -100.767000822597254,37.000695959262906,164.366833124309778 -100.807633572894886,37.000609444159743,164.443068469874561 -100.815794723725148,37.000603340110885,164.458418204449117 -100.857152479082274,37.000143833920504,164.53496862296015 -100.893179143936337,37.000121374033291,164.602794699370861 -100.905793379542189,37.000262205587404,164.62698707729578 -100.90610738167554,37.000078210693886,164.627038315869868 -100.946989025079731,36.99966967668643,164.702927571721375 -100.947086129298356,36.999668706314736,164.703107874840498 -100.99802306547943,36.999560059148266,164.798893384635448 -101.014162365167081,36.999691845761753,164.829743338748813 -101.055111114159033,36.999482331169737,164.906445910222828 -101.068264354999897,36.99943616477325,164.931153943762183 -101.213010994238303,36.998637346345866,165.202466826885939 -101.214434018695485,36.998557332038793,165.204925009980798 -101.359324651154324,36.997782507374097,165.477067774161696 -101.361201684613192,36.997743485156725,165.480511637404561 -101.379708020738704,36.9976752503377,165.515396834351122 -101.415396667992297,36.997518798590299,165.582620673812926 -101.416533687862469,36.997476786037019,165.584654509089887 -101.486855960500236,36.997120897693144,165.71706261485815 -101.520596572400066,36.997055465958695,165.780939999967813 -101.556770226584121,36.99692300600249,165.849270097911358 -101.556791530881313,36.996922882600721,165.849310216493905 -101.601928040452918,36.996661436326214,165.934331373311579 -101.603125060988873,36.996603423765656,165.936437526717782 -101.903977465514714,36.995206603386599,166.505336173810065 -102.001986216975112,36.994752355868656,166.691110275685787 -102.001986217438599,36.994775354720282,166.691177243366838 -102.029743834156179,36.994628017318362,166.743776254355907 -102.029746712332468,36.994628002041004,166.743781707249582 -102.043779963020199,36.994585822100547,166.770474525168538 -102.043492596641414,37.026243245437101,166.862029237672687 -102.043490719052812,37.032305942965188,166.879653419367969 -102.0434617462668,37.033678874846728,166.883589498698711 -102.043289788009389,37.035897766386434,166.889711490832269 -102.04346080493471,37.036583729946557,166.892032160423696 -102.043525252500842,37.108048167822389,167.099648130126297 -102.043351359322287,37.113469900202311,167.115038018673658 -102.043634629104218,37.126517247220661,167.153400979936123 -102.043677629876186,37.126517246661138,167.153483009897172 -102.04354496699473,37.143239416572399,167.201681387610734 -102.043508337635004,37.259653637366988,167.538172676227987 -102.043210139650768,37.299137685405597,167.651461881585419 -102.043363384811556,37.310977097372231,167.685864903964102 -102.04352127172649,37.354097962604307,167.810290718451142 -102.043636278025105,37.354303950918478,167.811101970262825 -102.043373845339261,37.390674487688898,167.915158776566386 -102.043224443715729,37.411380137537407,167.974342020228505 -102.043217955197278,37.436220912304499,168.045619360171258 -102.043303959117353,37.436335905507235,168.046112633310258 -102.043350674252224,37.470967198135128,168.145490173250437 -102.043336429735945,37.507543397594603,168.250204398296773 -102.043567038082799,37.53673695869243,168.334150899201632 -102.043450158696743,37.542661668973757,168.350867059081793 -102.043445506598104,37.55945184392025,168.398840926587582 -102.043170537308313,37.609340398291913,168.540733017027378 -102.043138294254334,37.645752613366525,168.644466951489449 -102.043135506913103,37.655965113013814,168.673550480976701 -102.043247742040322,37.667150563647411,168.70561186876148 -102.043128047543831,37.681904842805459,168.74737760797143 -102.043430960113824,37.725341713834176,168.871458182111382 -102.043545234734012,37.740006623896384,168.913331976160407 -102.043713724519236,37.761628936995862,168.975034650415182 -102.044224333014157,37.790221534477375,169.05710446741432 -102.044509648200815,37.804997809854768,169.099527168087661 -102.044590082454008,37.825607803874313,169.158063732087612 -102.044777006682665,37.869388668757217,169.282307939603925 -102.045404245352316,37.927591829598519,169.447916427627206 -102.045403286871945,37.929558734032319,169.453465572558343 -102.045964149885933,38.251456160807614,170.358104838058352 -102.046076490948735,38.263852146399131,170.392919214442372 -102.046133923390613,38.270189374559422,170.410711918026209 -102.046134556688159,38.270259253989607,170.410908094607294 -102.046180492968148,38.313762162616534,170.532293742522597 -102.046513053686212,38.38585369957444,170.733545019291341 -102.04683468084761,38.506823908952072,171.069722824729979 -102.046833683806824,38.506960902424964,171.070100215263665 -102.046684077926102,38.52521203331812,171.120332013815641 -102.046795515524565,38.5452240772265,171.175890780985355 -102.04676184023424,38.560158365684366,171.217109675519168 -102.046784339440052,38.583034275410462,171.280346472747624 -102.046861889201608,38.616592118395758,171.373108071275055 -102.0468620753594,38.616672673000942,171.373330617323518 -102.04664926113422,38.671038091337572,171.522757032886147 -102.046677378431454,38.676366837866972,171.537480346858501 -102.046735385522098,38.676641824026134,171.538345703855157 -102.046702637134331,38.688145278252456,171.569945990107954 -102.046731677800835,38.689975190990147,171.575035659596324 -102.046787876528569,38.698986762501022,171.599933572113514 -102.046952126999756,38.755756068520547,171.756255044601858 -102.046864151549087,38.756945013384012,171.759355229325593 -102.046948473084811,38.771480323838212,171.799409929662943 -102.047025769447771,38.784868688985398,171.83628620300442 -102.046912120301059,38.800877932987973,171.879975476302207 -102.046966428591816,38.814806273497943,171.918252618983388 -102.048154636984577,39.048441250481282,172.558195484802127 -102.048719496915112,39.131100368123612,172.783684712834656 -102.04877418445065,39.13454576851332,172.793127916753292 -102.048835663183382,39.138419023970883,172.803742497228086 -102.050038426720505,39.304529253858028,173.255026231519878 -102.050551035112107,39.375099965278345,173.446000373922288 -102.050758717728698,39.404983575090647,173.526717189699411 -102.050962053766426,39.419595894419984,173.566344591788948 -102.050961170294983,39.424718656855191,173.580099143087864 -102.051273065013135,39.507564815941585,173.802816803567111 -102.051267762456376,39.53807140584928,173.8844522126019 -102.051148811530069,39.540312303951431,173.890226785093546 -102.051359315461312,39.569558951415033,173.968804700300097 -102.051401620760004,39.575436678719619,173.984587354585528 -102.051550042607019,39.593708833756025,174.033662528730929 -102.052191969038546,39.676967990429993,174.256838499568403 -102.05285529738903,39.820359401987353,174.638939552940428 -102.052919631018256,39.834677745834853,174.676990681327879 -102.052964867881116,39.844837280458144,174.703977983444929 -102.053171018924672,39.851170987952351,174.721124831587076 -102.053349598604484,40.004436994766451,175.126137867569923 -101.918299073179014,40.004502861317476,174.878960532136261 -101.905778838929791,40.00452303357293,174.856102143414319 -101.842626645016423,40.004145923803677,174.739591694436967 -101.833762482002356,40.004295039525829,174.723778121173382 -101.809288018946702,40.004160383798464,174.67868250887841 -101.806462964767718,40.004114424912665,174.673397693783045 -101.628668611736131,40.003984884306895,174.348437692038715 -101.627406590023313,40.004075897574367,174.346376659348607 -101.543869008290486,40.003975053149411,174.193823911249638 -101.418802633152666,40.003791782515449,173.965628584846854 -101.412636064629226,40.003732381093684,173.954252322204411 -101.411546493740715,40.00372188545682,173.952242331579328 -101.375918820727463,40.003889367634621,173.887886200100183 -101.344451223728214,40.003948797348862,173.830833048559725 -101.327105803069415,40.004055922919484,173.799591016955674 -101.325627868258053,40.004065050664117,173.796929317526519 -101.295582293024538,40.003928469471056,173.741973894648254 -101.288146151376708,40.003928571565417,173.728465666994452 -101.250263428978059,40.003913092258649,173.659625465981662 -101.216622787498366,40.003925553260721,173.598589714616537 -101.193808350474569,40.00386186906178,173.557018842548132 -101.180394093738585,40.00383905404167,173.532620454207063 -101.170292902586695,40.003918188957613,173.514506521634758 -101.132495177242873,40.003798712454291,173.445641207508743 -101.061903823150871,40.003679684795642,173.31738762371242 -101.029272196497899,40.003629133789033,173.258149572648108 -100.939011461164597,40.003519373446146,173.094495221041143 -100.760411024550521,40.003678805378804,172.772200142964721 -100.753763892202429,40.003504903903703,172.759738712571561 -100.740406481816549,40.003605505974271,172.735901308245957 -100.734876530705421,40.003647155096431,172.726033826358616 -100.73148446151032,40.003488208527855,172.719489048235118 -100.722708290975433,40.003446330093482,172.703542927280068 -100.685014566066172,40.003611836491011,172.635995545424521 -100.661809115448747,40.003540155957637,172.593963420949876 -100.64702382283518,40.003261369970659,172.566566224209964 -100.602522961364173,40.003284974978634,172.486439285799861 -100.596334843056496,40.003356056025901,172.475481811910868 -100.568815307407732,40.003268434579908,172.425683464854956 -100.553463009557689,40.003268643495225,172.398040991276503 -100.512641215896366,40.003220201017392,172.324433940462768 -100.488734749715121,40.003147529384904,172.281226025894284 -100.478593552243979,40.003132667930885,172.262943614274263 -100.477429529982089,40.003148683033956,172.260892692953348 -100.470348391293257,40.00310478127296,172.248038741759956 -100.448646970837046,40.003176073019056,172.209203242324293 -100.440655814871462,40.003155182552902,172.194779244251549 -100.391653861579215,40.003190846606607,172.106800340116024 -100.233222764698112,40.003007004296052,171.821914663538337 -100.231049723800226,40.003077030598028,171.818205635994673 -100.21697644702445,40.003013224188528,171.792799877934158 -100.198529082911264,40.002878480195506,171.759367309510708 -100.195166904695498,40.002957360730875,171.753552304580808 -100.1951600187694,40.002957522282607,171.753540395759046 -100.191892955107392,40.002970565954229,171.747719483450055 -100.189750912139004,40.002925596993336,171.743759536184371 -100.179392710501617,40.00297773495339,171.725335389375687 -100.179364593186648,40.002977721795205,171.725284965708852 -99.99249203985778,40.002890267384174,171.390548225492239 -99.988176956035758,40.002937323577612,171.382959983311594 -99.949732205279943,40.003200831085273,171.314953506924212 -99.945982126195588,40.002971892010919,171.307636739686131 -99.93199784917168,40.0029040838943,171.28246861603111 -99.908222380521821,40.002900405038488,171.239989121444523 -99.814963537456705,40.002789668112328,171.073227564804256 -99.77720179665971,40.003037166011431,171.006546806544065 -99.773682730641397,40.003194206389765,171.000695354305208 -99.765775568479754,40.002941324280279,170.985916471108794 -99.758396417738311,40.002732433072303,170.97219867631793 -99.74818922665456,40.003210549140725,170.955292586237192 -99.73351993646358,40.003217746412787,170.929167965427041 -99.72119969209642,40.003198913182153,170.907163475640118 -99.629904883577055,40.003258139246363,170.744749924167991 -99.629813423857968,40.003258101823164,170.744587048888206 -99.627538836596855,40.003257171114967,170.740536483004689 -99.62688283247752,40.003258030341073,170.739371339790523 -99.503348371792214,40.003419832945106,170.520133651793003 -99.500555314625501,40.003350873541237,170.514984647743404 -99.49921628694716,40.003305893536798,170.512484006583691 -99.495021203995506,40.003330948747482,170.505098280496895 -99.482283950474027,40.003336119536442,170.482484414242208 -99.414199591738594,40.003263036488917,170.361396989785135 -99.404943409365231,40.003364156118387,170.345243349671364 -99.2922551574935,40.003345667271532,170.145361202768981 -99.288208078064059,40.003413718429314,170.13837403152138 -99.284519001126341,40.003275774002049,170.131463971920311 -99.255563425955799,40.003471152956102,170.0806974042207 -99.251921350378836,40.003354206938823,170.073930088430643 -99.21792667070055,40.003413659234496,170.01389598660171 -99.199142294544501,40.003430909770707,169.980692183598876 -99.190455120124,40.003421026413399,169.965290827676654 -99.18851208011732,40.003375054456583,169.961727711372077 -99.180682923090245,40.003375159161962,169.947873756289482 -99.180514919720338,40.003375161408677,169.9475764837116 -99.171365735004898,40.003323286077766,169.931247604079545 -99.124581801287832,40.003563900736808,169.849151666276157 -99.115058610624914,40.003592026740726,169.832390155643225 -99.087145048314326,40.003532402328041,169.782887034118176 -99.068569645882505,40.003569935997312,169.750163906253874 -99.021884738355766,40.003664267787762,169.667957156896591 -99.020247706952759,40.003733286554372,169.665253763087094 -98.993681168706942,40.003592647327196,169.617969200015068 -98.973832769927654,40.003645909719452,169.583082284778357 -98.9732667590376,40.003668916241978,169.58214589394629 -98.962554544195299,40.003718056916121,169.563376676291227 -98.962464541343579,40.003672060169201,169.563092981465161 -98.936337012924696,40.003606411473541,169.516821503639221 -98.835998989913918,40.003765741132035,169.340388187207282 -98.822132708487928,40.00372192768323,169.315845211967826 -98.778744831315308,40.003762503266451,169.239561473950744 -98.776482784995011,40.003739534383961,169.235517350956798 -98.727914215123747,40.003626369119566,169.149747715331614 -98.727835796824536,40.003626186403778,169.14960927516222 -98.711944473675743,40.003584399518338,169.12154486309737 -98.694636126941433,40.003777620948526,169.091634435579181 -98.692983096370682,40.003909637033736,169.089087350293994 -98.691827073882791,40.003952650479476,169.08717189822346 -98.674358715266422,40.003768890772008,169.055962149053812 -98.671263653477098,40.003814929840047,169.050647092983127 -98.655372327683196,40.003674147207199,169.022333942353725 -98.654033299953809,40.003650166060616,169.01991549320519 -98.6422490661936,40.003898311514504,168.999884031713009 -98.615293516414184,40.003805673547525,168.952277624979615 -98.594880103126641,40.003881941109142,168.916635418310761 -98.576756734614818,40.003886181420221,168.884826882742345 -98.562115432100626,40.003680384832407,168.858565096743405 -98.544723078350543,40.003691615031798,168.828072093427181 -98.52458966952986,40.003742879741516,168.792886480689049 -98.505991275470066,40.003735692002934,168.760243175551295 -98.492069006639511,40.003730311411076,168.735812519676983 -98.275548456661312,40.003926166596294,168.357209297828376 -98.275546586766154,40.003926168287734,168.35720603261143 -98.26974946743195,40.003900246048666,168.346999211236835 -98.251539090205156,40.003717494780609,168.314664826728404 -98.195012937827101,40.004025227607976,168.216738284565508 -98.180844644107893,40.003894420439885,168.19163606967777 -98.173798498451234,40.003849515430197,168.179209118708968 -98.143559877722851,40.003863913783768,168.126458433456719 -98.101187001737031,40.003639482576737,168.051906326785684 -98.077561517405059,40.003713790720475,168.010903091169894 -98.070228367710897,40.003767884968447,167.998263685032725 -98.051583982229275,40.003691134060034,167.965547187253833 -98.048995926896097,40.003599172240314,167.960783724673092 -98.015938246842083,40.003636606026539,167.903272482566535 -98.011683157606058,40.003566665165216,167.895666861906648 -97.973711373944624,40.003528166781592,167.82941862475127 -97.93335008574519,40.00346472373792,167.758976888842881 -97.933335539433386,40.003464700872875,167.758951508440077 -97.87778439314765,40.003517429017371,167.66244597081095 -97.858973003440468,40.003480677886579,167.629632839001715 -97.839901605570034,40.003325935338069,167.596052282489836 -97.823120260453081,40.003420151610221,167.567143246531487 -97.823018214744877,40.003417991903042,167.566959973424673 -97.820948214482598,40.003374182176927,167.563242346048355 -97.778676343898283,40.00358372795727,167.490376771427691 -97.772297207532105,40.003393820107085,167.478776264935732 -97.770725175362614,40.003411839942878,167.47609562985599 -97.769267145132304,40.003410859123719,167.473560862243176 -97.516823898012063,40.00332117079693,167.035670234821737 -97.512896816141492,40.003319222248344,167.028868699446321 -97.511779791450223,40.003255239688492,167.026759550906718 -97.464799816664637,40.003467844547238,166.946071472018957 -97.446176426142273,40.003379091862556,166.913623964414001 -97.426957026971579,40.003469338986854,166.880647484213114 -97.419339867404432,40.0034454395485,166.867416123859584 -97.417346825279793,40.003422466598032,166.863908287137747 -97.370711970802702,40.003481951571018,166.783500709570944 -97.370711362455793,40.00348195234703,166.783499661833048 -97.370615850267569,40.003482074176944,166.783335031010211 -97.35240846673365,40.003352317556931,166.751534445211291 -97.351784454699526,40.003398323667476,166.750583768822253 -97.246679244030119,40.002936714720285,166.567956670187414 -97.246590241151239,40.002890717911519,166.567676299251616 -97.203819343704467,40.002866276183433,166.493885098025203 -97.201699301581598,40.002973299068117,166.490527352318168 -97.183283915159521,40.002974538808999,166.458802835084498 -97.143956088139234,40.002920053114693,166.390921512618661 -97.139373998895195,40.003239098656934,166.383913730271161 -97.051169133195444,40.002749267273884,166.230797601863742 -97.032308736525863,40.002768511498559,166.198424278758466 -97.010670283405574,40.002889787242445,166.161567345261574 -96.917910325701882,40.002933844258457,166.002381023019552 -96.917596321453246,40.002933993394414,166.0018425071612 -96.881961567607334,40.00287645805188,165.940538649447262 -96.879755521393037,40.002894485858491,165.936804273165762 -96.876559453468786,40.002876528084734,165.931272188201547 -96.875314427205197,40.002878544136344,165.929142178967595 -96.807268986594934,40.002800399934785,165.812264545820653 -96.623898093877855,40.002589810383938,165.497855235822499 -96.611845831745342,40.002312978238336,165.476488957181573 -96.606380715820507,40.002323048377256,165.46717781573534 -96.58234820656341,40.00239835537954,165.426327402703464 -96.572349996666958,40.002523478944866,165.409597001038492 -96.559358717639157,40.002400652026871,165.387069485150278 -96.540472313208326,40.002283900874275,165.354498346336186 -96.528606064552463,40.002464046042824,165.334742429666221 -96.471438845390011,40.002399786039291,165.237025131471455 -96.4690297955446,40.002468814056513,165.233108356595039 -96.465206667783193,40.002402139608598,165.226403120905161 -96.465133711012186,40.00240086725961,165.226275167427957 -96.306045306570056,40.002064930104694,164.954346702434123 -96.302556232002829,40.002067974836493,164.948418724350631 -96.240696790775516,40.002127733077657,164.843384326435626 -96.240660908404791,40.002127767741008,164.843323426321149 -96.225327580748669,40.002165963031814,164.817367789335549 -96.221659501957262,40.002157010537381,164.811109094880521 -96.155852085983781,40.001932865175895,164.698703169822693 -96.155733082454105,40.001887868677088,164.698375741019845 -96.148653931169861,40.001916958231199,164.686438356526196 -96.127423474424887,40.001870232626743,164.650272033177316 -96.127274471984649,40.001905233002503,164.65011671371758 -96.091266699711952,40.00195769242,164.589169601909816 -96.082880521323673,40.002041796230984,164.575180096551776 -96.053175885437284,40.002166171446191,164.525158118456602 -96.025574291542981,40.002158525353487,164.478353466838598 -96.012164079642588,40.002077713180036,164.455405104905367 -96.01216200116157,40.002077700654809,164.455401547253132 -95.959621867203097,40.00196137826017,164.366092876531184 -95.884005235545985,40.001911347432724,164.238004917278886 -95.789590610696067,40.001894570690254,164.078400075435638 -95.789503193742789,40.001894555156156,164.078252401202917 -95.786054119397761,40.001905598693064,164.072458610869944 -95.376727220243453,40.001447827096158,163.382010375149548 -95.341365448758879,40.001447275595204,163.322666801512241 -95.309758758722595,40.001446676273311,163.269651019014418 -95.309248546668556,39.992067092249442,163.24245869088918 -95.303017260416169,39.985052477530964,163.212306387722492 -95.182685846973854,39.901450654432537,162.775293730199337 -95.134157273977721,39.877381320409768,162.626075494103134 -95.109206383018588,39.870035849180027,162.563539215363562 -95.086463932194548,39.863340536346556,162.506539949215949 -95.043602055293405,39.866262948054278,162.443039159290493 -95.036506942229963,39.868264949709257,162.43682227563113 -95.029390886186064,39.872979832879473,162.438236596994102 -95.026709958132599,39.879145596771238,162.451169431209564 -95.026700212692404,39.891157071360745,162.48507587891072 -95.017780209428395,39.900222787179722,162.495755189098418 -95.009900075388629,39.902052806381313,162.487746343947947 -94.994807545035883,39.902203675496892,162.462942887097597 -94.95561389516395,39.90259546588122,162.398558271117508 -94.937421351720715,39.895812991172207,162.349010701291263 -94.929354999848428,39.887570452945795,162.31224578153342 -94.909722819988119,39.813633911237744,162.070224188268185 -94.896722688660844,39.764674246757266,161.909673638641834 -94.918386427473081,39.729651513733586,161.846497000195086 -94.939378492604291,39.726936711511243,161.873928773216903 -95.012558154518629,39.679039028182466,161.860496350564063 -95.016765449263715,39.675728654059995,161.858145493082702 -95.071047009021584,39.616574204136093,161.781044472008944 -95.108909357204041,39.575312932824779,161.72722517605871 -95.114532172249753,39.560603513252978,161.694778360426426 -95.115012074228574,39.555411737042867,161.680790486745536 -95.110758738158154,39.54375630631818,161.640407644212246 -95.104342411848322,39.534818782437014,161.604122271761298 -94.970510288169478,39.420354962891722,161.051705026067793 -94.948110230865552,39.401196661338389,160.959107014350593 -94.911400794701649,39.368941048143625,160.804805767722428 -94.909783484889246,39.357129098105524,160.768167994916439 -94.912087384388514,39.349817394923456,160.751043883152306 -94.909014746547626,39.322106667246452,160.666239576414227 -94.902454213797554,39.303164592956243,160.600720616057515 -94.833841190309442,39.228706766568834,160.270704892463982 -94.795389296908581,39.202766868640836,160.131099215708673 -94.753777340372267,39.174695171239833,159.979943737387657 -94.737975913935301,39.170695545310565,159.941787644289434 -94.725075628200187,39.170495713529078,159.919505427591503 -94.715575449248263,39.171895768185038,159.907574168406427 -94.708161356522339,39.175293707735939,159.904932850040495 -94.603168771835229,39.16109763732323,159.687397088855505 -94.597468608457092,39.159197792497544,159.672322002239525 -94.593368463846033,39.156497963730502,159.657616384327412 -94.591368123544243,39.141898641370332,159.611956804990768 -94.608788957659456,39.114940633565304,159.563074072822928 -94.608668471840815,39.091101703045396,159.493714833632112 -94.608768314034805,39.083202055909702,159.470955007709563 -94.608667988007227,39.067202774573488,159.42433396819979 -94.608824842339487,39.045585725395831,159.361799718812108 -94.609565512688945,38.943510322769569,159.065969713963568 -94.609565472475254,38.941510412838085,159.060140169225633 -94.609297414195922,38.93890253358272,159.052086381241679 -94.609409406024994,38.938374555990308,159.050735909491777 -94.609463341927011,38.88531394734742,158.896020687185228 -94.609463049310065,38.870714606224169,158.853383215144277 -94.609463027272213,38.869614655878173,158.850170056335628 -94.60942300965246,38.868778694106197,158.847660519182682 -94.6094628890623,38.862714967384612,158.830012359656394 -94.609462764914227,38.856515247348277,158.811896119266748 -94.609462608782422,38.848715599640364,158.789099968038499 -94.609469886277651,38.812574233124323,158.683413413353264 -94.610467323878453,38.762123082802937,158.537358672358096 -94.610826547262931,38.74395332343542,158.484703904017806 -94.610883513862476,38.742213401606314,158.479698359966278 -94.610936405468408,38.739615355651075,158.472169255837798 -94.613027469391241,38.636902157206023,158.174040146172047 -94.613283180000678,38.622003831870671,158.130640781484544 -94.613332959249888,38.610791341575315,158.097724173218012 -94.613311383008664,38.581659668553847,158.011895093135536 -94.613326382761514,38.581630669692593,158.011835058219731 -94.613600318327073,38.578066828748504,158.001798364333808 -94.613580790468404,38.551339047449744,157.922978395596147 -94.613695755497261,38.549439132704244,157.917570298537612 -94.614066655514691,38.493168696997195,157.752113343216479 -94.614148514229598,38.485892028525903,157.730754316784441 -94.61411848973728,38.484679084326103,157.727119490504265 -94.614287429579932,38.479127690140928,157.71100149769336 -94.614288383704334,38.479096337440531,157.710910462774336 -94.614785940208591,38.404950724759345,157.492392973974347 -94.614685722831524,38.393955229873598,157.459651139564812 -94.614696054256143,38.390247767558435,157.448683747090399 -94.614749278197536,38.371148274853866,157.392164518125355 -94.614732175997446,38.365937514091833,157.376685531809926 -94.614419610706122,38.337332830744181,157.291298603639007 -94.614244384281506,38.325919357038046,157.257122453302145 -94.614207300711485,38.321674552480779,157.244456710293889 -94.614092194713749,38.316364797824832,157.228494295850396 -94.614091954951178,38.304060363298703,157.191947490908206 -94.614262742412862,38.292956871700582,157.159246988594532 -94.614267713144372,38.29144794102524,157.154771241359413 -94.614110329942562,38.271928840765753,157.096479098312557 -94.61403169422519,38.239302343693154,156.999280893243849 -94.614052485445768,38.228523839973278,156.96722926478833 -94.614076335868333,38.220788196145008,156.944234919734299 -94.614075304771532,38.219186269985265,156.939462341368198 -94.614239042063815,38.205455900950746,156.898840215057135 -94.61426498052451,38.202252048367967,156.88933814689517 -94.614489788485045,38.19209051430353,156.859437483362854 -94.614838357627349,38.16944755492559,156.792517672292888 -94.615164223921767,38.162172886832266,156.771372565999627 -94.615272016172881,38.151309387190857,156.739141962490976 -94.615475430390603,38.068887196395856,156.493217566981912 -94.615503403232168,38.06744526282916,156.488951501436532 -94.615469290605631,38.061632532433237,156.471501743420959 -94.615469187190996,38.061600391426296,156.471405393444002 -94.615395192513816,38.038602944608456,156.402441594749689 -94.615394843931639,38.038494605351175,156.402116598561406 -94.615624994632611,37.994009665814012,156.269219574518502 -94.615877910646063,37.989346879202195,156.255670102313161 -94.615969591311185,37.972585656343853,156.205552444793284 -94.615974217571292,37.953066563090317,156.146982431411743 -94.616006188800327,37.951527634224099,156.14241717942059 -94.61602408170512,37.945911895014376,156.12558750808239 -94.616166016010965,37.942319060320436,156.115041682496667 -94.616246939910994,37.938250248506591,156.102961017750204 -94.616189890865854,37.93575036542137,156.09535548556596 -94.616592550521133,37.917495209623176,156.041199797764421 -94.616804372593023,37.90794365150898,156.01285436283797 -94.61688028605208,37.903326865460997,155.999105330556631 -94.617117006114881,37.888395557726248,155.954611096531153 -94.617331848347575,37.879883951538844,155.929374868050218 -94.617244735465547,37.874063223715282,155.911712965928018 -94.617410560139305,37.864679658921958,155.883757649920881 -94.617836229348697,37.846836485510813,155.830766816623509 -94.617860082845738,37.839114845279902,155.8075519092381 -94.618271747235212,37.821011684824917,155.753713056445122 -94.619216064451933,37.731266866864729,155.484502834267914 -94.619382925468472,37.723736217265646,155.462030264548957 -94.619212316676951,37.691739717468408,155.3649837160483 -94.619058266003378,37.689232836747586,155.357135155238211 -94.619094247541042,37.688214884009128,155.354116910137236 -94.619292167926503,37.683776089621617,155.341025063768029 -94.619140993079313,37.674689517253114,155.313265604898334 -94.6191408169868,37.674667885135719,155.313199826516211 -94.61898262252268,37.655234431268525,155.254088615067303 -94.618982054229178,37.655140013268067,155.253801682032645 -94.618883309275603,37.638734206466083,155.203932639211416 -94.618705803067243,37.612060460645985,155.122770750895143 -94.618833787495191,37.611087504810953,155.120039815083146 -94.6186880768783,37.573463274398421,155.005624919198453 -94.618720070105269,37.573066292681347,155.004474595189095 -94.618485980832091,37.568580506378055,154.990452498197556 -94.61856480029104,37.558875961821471,154.961115815676749 -94.618590729086577,37.555053141327789,154.949548365548253 -94.618312241437053,37.52937335308323,154.871032118797302 -94.618193120927984,37.523079650812036,154.851692477241158 -94.61842641928132,37.485336426200561,154.737265977077186 -94.618586159064279,37.471237089071401,154.69461261946708 -94.618583075609166,37.46677529953525,154.681018834002316 -94.618624988183498,37.462048521993054,154.666693428531289 -94.618607985895778,37.461945527053402,154.666350454092026 -94.618603881482343,37.456360790567928,154.649329957552254 -94.618534600510301,37.441391497800225,154.603594090789557 -94.618667336893353,37.427110170465859,154.560283219441772 -94.618913069448027,37.41248385837914,154.516095902770758 -94.61895879965877,37.397950544573057,154.471828884445131 -94.619026265154218,37.369152905419057,154.384017594158649 -94.619027262739394,37.369021911603717,154.383619177155197 -94.618938203379471,37.365932058827362,154.374027103185654 -94.618938917063062,37.365744171270848,154.373454353772104 -94.619036723511357,37.339995285157443,154.294932089745998 -94.619036806576617,37.339993066787279,154.294925450347364 -94.619095695523669,37.338420359025633,154.290218606591225 -94.619048448510782,37.325167987170353,154.249611441977322 -94.619473917759407,37.242018925449727,153.995709341950715 -94.619556867066493,37.239180059274354,153.987147535197437 -94.619521713670522,37.23091745210705,153.96174690220505 -94.619548691842283,37.229704509403028,153.95807302929461 -94.619617317675178,37.209356475430972,153.89575862698257 -94.619703311481459,37.208921495090323,153.894571963697672 -94.61971696944839,37.190359377430411,153.837608626112342 -94.619902833528499,37.182769736212805,153.814619660377502 -94.619870714900998,37.176368041129692,153.794898854568601 -94.619748443996983,37.161797735917325,153.749915227293968 -94.619468925481868,37.133933066017029,153.663753917440772 -94.619471877940455,37.131343189357253,153.655792008154094 -94.619608576142809,37.114757978047159,153.604993951506913 -94.619547405914773,37.105557417349672,153.576566427946091 -94.619455270131425,37.098265766105143,153.553956000134349 -94.619484215613284,37.095260909059512,153.544752543792129 -94.619486212408518,37.095083917476735,153.544210923835635 -94.619478082699814,37.088022254379744,153.522447065450251 -94.619516074374928,37.087524277686249,153.520978790707886 -94.619377872382898,37.076667797258935,153.487292705103755 -94.619270535214724,37.058389670916654,153.43077040091157 -94.619270539937261,37.058388814886271,153.430767768993974 -94.619360239462139,37.042129446338343,153.380782498046756 -94.619389663773404,37.010609952204646,153.283564861863852 -94.619474466841083,36.99972947147414,153.250113412737846 -94.701131212474408,37.000398479530496,153.393551090732217 -94.703193256375073,37.000407454844421,153.397151061333716 -94.7141664887221,37.000387326712271,153.416100763715804 -94.738580003923403,37.000258045607772,153.458011191338301 -94.740721049703382,37.000280019355962,153.46179024502635 -94.778654854762067,37.000356569073048,153.527800110168755 -94.83267899911705,37.000403930300514,153.621684215962887 -94.842325203542785,37.000424815595359,153.638493929058313 -94.851200392027835,37.000467708909973,153.65403520129621 -94.854596463804228,37.000465668966932,153.659925688058138 -94.996695476237065,37.001118960427085,153.908942472189665 -95.009022735846031,37.001103815479716,153.930348538793623 -95.012835816606369,37.001124769410183,153.937049643136561 -95.03172721438915,37.001106546975755,153.96987917739898 -95.039260372731292,37.001086458874525,153.982933455146849 -95.050902619489619,37.001169317236887,154.003461991436779 -95.074907996541839,37.00109805188351,154.045056024566293 -95.074913123759998,37.001098036662178,154.045064909383655 -95.156592842348303,37.001127068411662,154.187539556063712 -95.156777846254798,37.001128066172527,154.187865325249732 -95.178707306658779,37.00110780735919,154.226060518994927 -95.196713685675789,37.001152591836139,154.257621021941304 -95.323974350750674,37.000944092181051,154.479302551597357 -95.329467465924054,37.00095102662037,154.488929738290608 -95.329736471576055,37.000952023378076,154.489403234794736 -95.332619532209876,37.000965988470504,154.494488111697137 -95.408983078200322,37.000826289659038,154.627684520557523 -95.409094129825746,37.000826086501405,154.627878330647945 -95.512991299667476,37.000818850671713,154.80990487895906 -95.523828514688475,37.000864777680434,154.829050851985812 -95.535814777522475,37.000915574212044,154.850230349227786 -95.575012594192742,37.000893108261955,154.918939613737166 -95.613555397174892,37.000903648266238,154.986639522016048 -95.617349476979797,37.000947600907089,154.993437398225069 -95.625765652082293,37.000942500778386,155.008203526027501 -95.631494770583345,37.000902434371113,155.018144109286368 -95.665717482617339,37.000904025981647,155.078280029818416 -95.68786894370578,37.000930760295745,155.117299295961857 -95.698076153382786,37.000796644886719,155.134834688156843 -95.711797441413097,37.000952473543862,155.159441007301211 -95.716304533347298,37.000860424147312,155.16708583664149 -95.71947159869724,37.000836387479197,155.172582567669451 -95.743326093928232,37.000825103067669,155.214512545615435 -95.761323468055394,37.000851886724419,155.246265028603375 -95.770137649760827,37.000785784563256,155.261576222255826 -95.78818102608318,37.000890563830879,155.293660907074809 -95.80939946269514,37.000704319082097,155.330454820767045 -95.86831968622208,37.000840607580052,155.43468670733273 -95.875364832840944,37.000879521374848,155.447224957868457 -95.876677860066394,37.000881505561274,155.449545773677528 -95.878571899321287,37.000883482792325,155.452890918590128 -95.911601583574765,37.000915085767801,155.511232047341764 -95.929543953058726,37.000823875237998,155.542604364454746 -95.93841413693508,37.000846767862164,155.558324901387095 -95.965692631188105,37.000672056618619,155.605933480896056 -96.002233448199775,37.000438022546412,155.669737637042999 -96.142636345597722,37.00054933165643,155.918303324840963 -96.144633389724817,37.000710299892354,155.922329113818705 -96.148569468673273,37.000598257994156,155.928953277878463 -96.151135521838668,37.000616226287562,155.933549868874252 -96.153810577114356,37.00062719360745,155.938318190164864 -96.155443612786343,37.000737168674199,155.941544498316944 -96.186195246547371,37.000786796582062,155.996140573173761 -96.201455557010362,37.000603621899963,156.022608283907175 -96.218998918512838,37.000645408857054,156.053813349455595 -96.277797130275772,37.000845691524681,156.158640726469457 -96.280508185956634,37.000846658834597,156.163450981490314 -96.395703547180176,37.000794273142859,156.367731188423932 -96.416843978029235,37.000686023360473,156.404956445097923 -96.526927015847392,37.000718853388243,156.600797855295241 -96.706868898595388,37.000772512907744,156.921581029891968 -96.71192000263369,37.000840448426267,156.930799399502575 -96.738028533880978,37.000855131343052,156.977435378357768 -96.74270862814231,37.000808076896902,156.985645930282772 -96.751276797579976,37.000556985193867,157.000177738256752 -96.793499658998044,37.000748463943651,157.076158023439348 -96.796638716707179,37.000428441363916,157.080793078057468 -96.824231282888618,37.00075009103103,157.131069405004382 -96.86895819076625,37.0007845464499,157.211127524264157 -96.877731368915846,37.000800439147682,157.226864543743432 -96.903524890127102,37.000722129655912,157.272763693705201 -96.904951918601796,37.000699113435189,157.275246846489608 -96.918535194673368,37.000748945990729,157.299701733514667 -96.92335729173935,37.000717888901953,157.3082364378497 -96.936084547897579,37.000636738165696,157.330767934210598 -96.968814210189564,37.000633340455003,157.389352118596435 -96.977005374972876,37.000585243182542,157.403874699026346 -97.031526475368622,37.000494584316478,157.501277497969568 -97.041228672696207,37.000565462797383,157.51888230163604 -97.102097901272884,37.000562721744288,157.62802760116756 -97.105721974788082,37.000584676530224,157.634595929645002 -97.121731297518053,37.00057848177552,157.663302687928081 -97.124043344550088,37.000600452536453,157.667518302798271 -97.149167852378071,37.000675142701539,157.712839874438941 -97.373872364370357,37.000422411575997,158.116091781295836 -97.38637661471796,37.000404259544254,158.138556422665715 -97.463733161045866,37.000245320695285,158.277477811090648 -97.463799484302882,37.000245545521068,158.277598075568676 -97.474314373450326,37.000281189396496,158.296665869653225 -97.528746462350568,37.000309521259695,158.394945295527577 -97.547354833335547,37.000268295209047,158.428406557999551 -97.547952846004279,37.000306286031574,158.429600782692432 -97.565991205545131,37.000270066666005,158.462056846357882 -97.608005043450788,37.000240552854294,158.537848454900086 -97.638593661188978,37.000648157703715,158.594351905398071 -97.651922925213555,37.000561998297499,158.618184825405478 -97.698561850753279,37.000383434325251,158.701981661841273 -97.770163273549613,37.000306558192676,158.831329033710063 -97.784891570265117,37.000517366831403,158.858634476549923 -97.784948569218798,37.000403371681848,158.858394048176706 -97.803757940299334,37.000269146890524,158.892057151533663 -97.803772933073489,37.000269124249918,158.892084240913391 -98.035419522606588,36.999919310005261,159.311306452378631 -98.041354639533964,36.999902237603465,159.32204048987478 -98.046806746809224,36.999880171400058,159.331882535479963 -98.113451058459063,36.999685358107598,159.452472220174968 -98.148918758239802,36.999713918526751,159.517091407440603 -98.179063349140435,36.999560553425724,159.571502625010908 -98.209685951749748,36.999548175381832,159.62723052687943 -98.220967170401536,36.999375044303335,159.647259757854044 -98.239180531506051,36.999522811773183,159.680886914022267 -98.347658662018034,36.999511469217602,159.878658500500023 -98.34861965637549,36.999511335443096,159.880411712452769 -98.355543816671869,36.999510371566224,159.89304465148598 -98.410462903816111,37.000061663833094,159.994960999116302 -98.419740086014002,37.000086547564415,160.011979570612311 -98.421681123604955,37.000064524567009,160.015458908863366 -98.546134651612633,37.000543138660596,160.244404072873294 -98.546346570911822,37.000543953641859,160.244794237427413 -98.715989878565253,37.000604840746661,160.555701171979308 -98.719942957780873,37.000724785651457,160.563308956101537 -98.763075801066734,37.000969236437768,160.643158590421081 -98.793415387102357,37.000798866703718,160.698327623307705 -98.795190421026021,37.000770845952005,160.701502026058733 -98.798931493701019,37.000772799225302,160.708375110290945 -98.870929891490377,37.000828898597966,160.840771198272705 -98.881490095703384,37.000805767965943,160.86010685749352 -98.882061107660434,37.00085175858657,160.861293623223901 -98.995854313349398,37.001034328604966,161.07110958173871 -99.001786289036815,37.001051557570918,161.082078685984015 -99.030820990830108,37.001135886540489,161.135780261829495 -99.126368830435126,37.000959699824797,161.311290834099054 -99.130934918445092,37.000961642567923,161.319714613258839 -99.24960820430114,37.001103148796119,161.539095490239561 -99.278994768936101,37.001116779597581,161.593407846987247 -99.457695190288476,37.001006540980477,161.923550140112638 -99.485825730908331,37.00116117965608,161.97610086388886 -99.501888036729497,37.001110980097003,162.005703431554139 -99.501888037922143,37.001171977096661,162.005884788930416 -99.504158081428159,37.001179948149087,162.010113727301359 -99.50558610875575,37.001182930038432,162.012768067419529 -99.510067194514008,37.001192873177068,162.021099315024912 -99.542609715512896,37.001106993978617,162.081146803684533 + + + Maryland + + + Maryland + 0400000US24 + 24 + 9707.240999999999985 + + -76.04932110746762,38.122280460919725,129.998976548202336 -76.057759627992908,38.126852900172707,130.023937838152051 -76.061948770904465,38.128731787308901,130.035018875263631 -76.062059773548157,38.128693247825389,130.035016504116356 -76.06241875020811,38.128568613180434,130.035008837468922 -76.064609904003461,38.127807857103797,130.034962143748999 -76.065631581590395,38.127453136483716,130.034940425306559 -76.08207584738463,38.121743781349188,130.034595966339111 -76.082536404229117,38.121583878643548,130.034586455672979 -76.086179482543272,38.120319022661988,130.034511492587626 -76.086260349781611,38.120290946018756,130.034509832039475 -76.086491501006478,38.119599329587388,130.032456110231578 -76.086834091386223,38.118574281437709,130.029412221163511 -76.086896343144417,38.118388020955088,130.028859111480415 -76.087173522622962,38.118264323053126,130.028761385008693 -76.089967258189887,38.117017552440785,130.027776502072811 -76.090115251143217,38.116951507083002,130.027724335901439 -76.091821454060209,38.11619007365276,130.027122976258397 -76.096497724473835,38.126852587190967,130.068202363327146 -76.091598664358813,38.132914371795401,130.082912144251168 -76.091589475294896,38.132969821997627,130.083087420091033 -76.09147700092025,38.133648533878414,130.085232768207788 -76.089966745787919,38.142761970843807,130.114036193117499 -76.090867969642403,38.145566124840038,130.124458624050021 -76.091166261771065,38.146494259463076,130.127908147871494 -76.093283973529083,38.153083510081977,130.152395726181567 -76.089589405000879,38.194375805450555,130.286383174359798 -76.072420059595302,38.205228488946887,130.303084949962795 -76.068746537512297,38.205265601088833,130.299016722477973 -76.068050364875205,38.205272634245524,130.29824580065906 -76.067944200678227,38.205273706780346,130.298128238879144 -76.062855788439549,38.205325112991972,130.292494005523622 -76.06068024646008,38.205347091628248,130.290085370652378 -76.06051172369402,38.205348794146808,130.289898797869682 -76.060168027623988,38.205352266371541,130.28951829392463 -76.060107712297224,38.205352875713317,130.28945151809603 -76.059969708404239,38.205354269911702,130.289298738352954 -76.059875025421832,38.205355226456213,130.289193915203214 -76.054703036712596,38.205407476997756,130.283468581736088 -76.053114654800808,38.205423523786102,130.281710444018245 -76.051460617971529,38.205440233859314,130.279879729263484 -76.049894258314467,38.205456058164444,130.278146139346063 -76.049735419687892,38.205457662847479,130.277970350347459 -76.047488334788767,38.203275531862474,130.268107726238668 -76.047221862089984,38.203016761785392,130.26693813316524 -76.043639913854861,38.199538352829038,130.251215874217451 -76.043563760807217,38.199464401050363,130.25088160391897 -76.043334553866302,38.199241819532084,130.249875512905419 -76.043228682311323,38.199139008284895,130.249410794116557 -76.042901242738864,38.19882103363318,130.247973503544927 -76.041667240348929,38.197622701137121,130.242556812241673 -76.03987764207902,38.195884832733789,130.234701113775373 -76.037706324265329,38.193776278714836,130.225169497542083 -76.029528114190924,38.185834466769492,130.189265839755535 -76.029359585411129,38.18567080945747,130.188525918871164 -76.027848947478049,38.184203837798201,130.181893425993621 -76.026847538982167,38.183231375865951,130.17749662604183 -76.023118329955565,38.179609962792682,130.161122466437519 -76.022889246934213,38.173704212624088,130.141089393757284 -76.026840392962171,38.172674226785425,130.142145867459476 -76.033715804621124,38.170881942567441,130.143985607661307 -76.033764518369551,38.170869243854014,130.143998648039997 -76.034986407387962,38.159630706089708,130.107758439145982 -76.034926270507796,38.159364309282168,130.106797645799816 -76.032893698511884,38.150360338751291,130.074320158921182 -76.032816221427979,38.150017127593507,130.073082049377263 -76.032390140351438,38.149341375840713,130.070332248695195 -76.023462764554978,38.135182826683931,130.012708384543657 -76.021929874938778,38.134506148156454,130.008692058734596 -76.021423701670813,38.134282703116327,130.007365836761892 -76.020585068232236,38.133912496915734,130.005168540403247 -76.019521619331996,38.133443048216215,130.002382206730545 -76.018737603748093,38.1330969525117,130.00032801926136 -76.016102271822731,38.133277851416928,129.997928566299379 -76.014850438626056,38.133363781865079,129.996788864955306 -76.013434458241534,38.133460979981123,129.995499789714813 -76.01286331907427,38.12394438480073,129.962949387729168 -76.014310453741956,38.123072436312526,129.96167687419802 -76.015645842776024,38.122267818418266,129.960502667352557 -76.016649311780569,38.12166319377598,129.959620345383883 -76.021443495269779,38.118774533077747,129.955405283719301 -76.022252724373942,38.110339113629564,129.928045102395117 -76.022300691625389,38.109839102111764,129.926423145458102 -76.022317402338913,38.109664909325204,129.925858090631664 -76.021943287459578,38.109309331406017,129.924238815903664 -76.018341014045873,38.105885546477097,129.908646666444838 -76.01642393594858,38.104063457382331,129.900348386727273 -76.009114866544834,38.097116543904448,129.868707966059446 -76.006850567558104,38.078902329137257,129.805010162293911 -76.012490664589436,38.074044488348733,129.795142516493797 -76.01364777986872,38.073891729837747,129.795950452797115 -76.016182190099599,38.07355714542684,129.797720236703753 -76.024246977303349,38.072492459028631,129.803353464230895 -76.037623429974687,38.078241109025178,129.837920627556741 -76.053155088433471,38.09144744690029,129.899968929588795 -76.059258317521994,38.096636931682404,129.924347696825862 -76.060252318758643,38.097482116126734,129.928317957557738 -76.051104215019279,38.109488684519732,129.958129663020372 -76.048239491706951,38.110235267018567,129.957361306995153 -76.047442438380102,38.110442989021259,129.957147578708827 -76.04622711192745,38.110759718198693,129.956821739673615 -76.045429861085736,38.110967491675936,129.956608019769192 -76.043031013681642,38.11159266112076,129.955965096130967 -76.04203092550722,38.112456681206424,129.957720165140927 -76.041822221284264,38.112636989948413,129.958086422644556 -76.040567971455843,38.113720591447837,129.96028752438724 -76.040644061502277,38.113838186647222,129.960768656805158 -76.041613387186985,38.115336254429934,129.966897777281702 -76.044371155111719,38.119598313445962,129.984334282577038 -76.04932110746762,38.122280460919725,129.998976548202336-75.994849639181822,37.955226645493539,129.375611424446106 -75.9956832798931,37.955238667396735,129.376604388467968 -76.006832785153307,37.955399454001153,129.389887012541294 -76.018631496052492,37.955569602743573,129.403947613202035 -76.021741793341491,37.955614456212047,129.407654955983162 -76.021877407952587,37.955616411904664,129.407816608436406 -76.022659430151123,37.955624405282229,129.40873774792999 -76.023270082132413,37.955615574951167,129.409406314603984 -76.030350918414669,37.955513182534474,129.417159653268754 -76.030408647659669,37.955512347740857,129.417222872376442 -76.03106766474022,37.955392347519194,129.417572754435241 -76.038972195160639,37.955638231968258,129.427442518994212 -76.042347987918504,37.955743241989353,129.431658235378563 -76.042636996005797,37.955737239919358,129.431968713179231 -76.046506904631087,37.955406142277724,129.435282555408776 -76.047476127393878,37.955323218517989,129.436112597584724 -76.050554599979435,37.985363923666029,129.540698541328311 -76.050508985402345,37.986801194432651,129.545479785650969 -76.05049535067343,37.98723081143055,129.546908921562135 -76.050473479179686,37.987919960855407,129.549201375804842 -76.050342392796054,37.992050365087565,129.562940339557827 -76.049563973268562,38.016577613272887,129.644497127272189 -76.047160042865372,38.027267181452075,129.677665999159217 -76.042614999496266,38.033881938950685,129.694692162796855 -76.021773499821521,38.040857812519995,129.694311858154833 -76.014074290228578,38.041495847590873,129.687662434764206 -76.009781590532128,38.040008937200241,129.67776633054018 -76.0096410535524,38.039960257835091,129.677442353218794 -76.005538010687047,38.038539040997669,129.667983715422451 -75.992791504691382,38.027231620524482,129.615441601723433 -75.982139671789085,38.024194413224642,129.593078546226025 -75.978190734916254,38.023068434242795,129.584788464009762 -75.976438982139669,38.022568948716511,129.581111067906022 -75.976431855113631,38.022562059172799,129.581079779192805 -75.974377069177521,38.020575741529797,129.572059128433466 -75.97324876353477,38.019485032582125,129.567105659283698 -75.971116320120601,38.017423645112849,129.557743593119085 -75.971112765336429,38.017420208779022,129.557727987878025 -75.971112811097854,38.017418278883994,129.557721553370357 -75.971122831980324,38.016995668121751,129.556312322616577 -75.97128972044888,38.009957480116149,129.532840818166733 -75.971334651523989,38.008062601949355,129.526520951651037 -75.971861455987181,38.007974391268981,129.526825408451259 -75.980824258867912,38.006473616313208,129.532006870023906 -75.981627976699997,38.006339037920966,129.532471649348736 -75.983824933162737,38.005971168928632,129.533742249011993 -75.985196013841787,38.005741588562579,129.534535295329988 -75.985423845857483,38.005104314000242,129.532652606256306 -75.985619564905704,38.004556863414031,129.531035260297358 -75.985965117404419,38.003590309982194,129.528179700486362 -75.986667891770566,38.00162456244621,129.522371960803866 -75.987194486674994,38.000151610839566,129.518020002171397 -75.987516172424577,37.999251815690791,129.515361413359642 -75.989485790540897,37.993742548293952,129.499082239344716 -75.989663767924412,37.993244723369735,129.497611133381724 -75.990045979107521,37.992175631055311,129.494451834820211 -75.993412943065167,37.982757813354638,129.466617805883288 -75.995674934193104,37.976430742452884,129.447915096767247 -75.995674646836335,37.97643003742018,129.447912396863103 -75.993734052348472,37.971668768811305,129.429675173014402 -75.992487672539681,37.968610763071972,129.417960946448147 -75.989823584820797,37.962074396294,129.392919483594596 -75.994849639181822,37.955226645493539,129.375611424446106-76.439816638815287,39.054588790786859,133.531843380071223 -76.439899849858776,39.054476310994296,133.531570296734571 -76.438015824518757,39.053386696535313,133.525857617147267 -76.423903854158524,39.045225125314772,133.483066447079182 -76.408368785434746,39.036240513864129,133.435957442969084 -76.408183493380605,39.036133351344013,133.435395541600883 -76.408175608383758,39.036128791104559,133.435371630825102 -76.406309115616523,39.035049316488639,133.429711434990168 -76.406051614917402,39.034900392542518,133.42893055267632 -76.405991977693901,39.034813816113903,133.428579200059175 -76.403570553922151,39.031298591721701,133.41431290935725 -76.39875026141452,39.024300886468161,133.385910090990365 -76.398707966902137,39.024171731453464,133.385439000092447 -76.397387372680825,39.020139024675174,133.370729107409716 -76.397364696677784,39.020069778823661,133.370476510375738 -76.396609591942521,39.017763910790713,133.362064876593649 -76.396308579163474,39.016844706190298,133.358711560256779 -76.395668556608499,39.01489026531943,133.351581395603716 -76.39532803249439,39.013850404704179,133.347787658683956 -76.395050001328201,39.013001379193206,133.344690078869462 -76.413296297972622,38.998522434393749,133.318057640455663 -76.415601591093875,38.996693120080195,133.314693042077124 -76.422505145420018,38.991214957416389,133.30461754091084 -76.423151499153363,38.990702057725393,133.303674234077334 -76.428271504316015,38.989517614873613,133.305633961223066 -76.449898755189523,38.984514447461159,133.31392261851579 -76.449952179332158,38.98450208851947,133.313943117856979 -76.450159531716182,38.983783419329889,133.311824974603951 -76.451123515120145,38.980442318763806,133.30197726842016 -76.451452151111909,38.979303288894222,133.298619872890413 -76.452570375993403,38.97845784249288,133.297126087360084 -76.455552225745862,38.976203381711997,133.293142843991518 -76.475169759864116,38.974338294778136,133.30944038182497 -76.4751698959587,38.974337233239886,133.309437057934701 -76.475421590573802,38.972374013908315,133.303290903568268 -76.475853706479285,38.969003507609735,133.292738359421492 -76.475714526299257,38.968586130284706,133.291211351752281 -76.474214898085847,38.964089004224746,133.274757308885455 -76.472252456284878,38.958203980087518,133.253222617320716 -76.464052114623442,38.95030437210341,133.217950553633273 -76.461205287887807,38.950196975886143,133.214345476590097 -76.458751960753347,38.950104424395349,133.211238916032016 -76.458199970077899,38.949567347740476,133.208847037516534 -76.452666143700824,38.944183037651179,133.184866726398468 -76.451250647299361,38.942805785990977,133.178732450120151 -76.451726219866899,38.942104757119274,133.176976389251649 -76.462850744960022,38.925706390804528,133.135893004015088 -76.46271784213809,38.925367175356079,133.134628082625568 -76.46124280262552,38.921602347916441,133.120588513091207 -76.459961700726367,38.918332518490082,133.108393868431449 -76.459729103096734,38.917738846295741,133.106179700233042 -76.459050504496574,38.916006820388183,133.099719744175673 -76.460449446331708,38.908807104257505,133.07768798340112 -76.461223095499534,38.908846164327002,133.078700670041144 -76.461686238744477,38.908869547545116,133.079306923784316 -76.463282223455124,38.908950125765507,133.081396113149822 -76.466250645078404,38.909099995703116,133.085282079875469 -76.470350735314653,38.909307001423905,133.090649969875813 -76.470450791283128,38.913206840517006,133.103564159013331 -76.4767320105599,38.916162666965867,133.120447709225118 -76.494651460445056,38.911706700787278,133.126324596814811 -76.494762709575781,38.905918602242856,133.107455780729651 -76.494769615491563,38.905559299511957,133.106284391134977 -76.494777738357428,38.905136680999753,133.104906567372382 -76.494827647021353,38.902540020591225,133.096440613269806 -76.494851324439438,38.901308126064478,133.092424054630101 -76.493751238617207,38.897308299478979,133.078034800477326 -76.49185116951152,38.896208360459028,133.072249135002494 -76.491373713058266,38.893948706723826,133.06428409460932 -76.491310402525642,38.893649077551387,133.063227902166545 -76.49090396451119,38.891725532111657,133.05644722096622 -76.490684327208172,38.890686056671072,133.052782839164138 -76.490646159019803,38.890505418437364,133.052146041765809 -76.490638056779886,38.890467073040831,133.052010862156749 -76.490351030111214,38.889108664564851,133.047222011722624 -76.491651031747409,38.886508760566386,133.040172824636102 -76.49207839099553,38.886186659394696,133.039604304358363 -76.492413258365502,38.885934269461117,133.039158826693892 -76.495370755117264,38.883705200657097,133.035224514082074 -76.495559502783593,38.883562941317635,133.034973428584635 -76.495829430369952,38.883359496576311,133.034614352509379 -76.499438573904698,38.880639280826117,133.029813336208463 -76.50882949199223,38.873561334784974,133.017321981489658 -76.512106145024291,38.871091717538199,133.012963800691068 -76.520413555667886,38.864830412379739,133.001914977096021 -76.5179153216164,38.852852925778414,132.959700109437108 -76.517553479145917,38.852722119655013,132.958855587989092 -76.510256065974076,38.850084103369554,132.941824123263359 -76.510182108424729,38.85011161655892,132.941829794086516 -76.500128463150872,38.853851705955805,132.942602676339447 -76.498533116475514,38.854445196079318,132.942725643515587 -76.497549768546946,38.854811014551515,132.942801481112838 -76.497444609156489,38.854649391233231,132.942149915732443 -76.49460925042888,38.850291624563724,132.924581266008317 -76.493731110577869,38.848941979263721,132.919139742851257 -76.492987045820968,38.847798398885928,132.914528913795948 -76.492551628691132,38.847129190350394,132.91183066368103 -76.492464877560082,38.846995859359616,132.911293067969382 -76.490889437645222,38.844574508046776,132.901529828086495 -76.4908484378319,38.844511493931854,132.901275738142431 -76.490848382147064,38.840411662626799,132.887798555195332 -76.491077112094032,38.839872920315287,132.886289460584521 -76.492357284156242,38.836857648976036,132.877842952497303 -76.49257668615958,38.83634087737218,132.876395292580128 -76.492654084599124,38.836158575865781,132.875884599983692 -76.492800890842972,38.835812793708698,132.874915931373835 -76.497935336196207,38.823719305589272,132.841032930649817 -76.49866269436626,38.822006112313062,132.836232280358672 -76.499848350505061,38.819213460496655,132.828406428918242 -76.500025935807273,38.818955021876143,132.827759955078363 -76.503880593905038,38.813345365535334,132.81372691038996 -76.507500320858185,38.808077602851412,132.800547959282994 -76.507846856221704,38.807573292423406,132.799286209046841 -76.510284100337188,38.804026388561894,132.790411804802716 -76.511048448000764,38.802914038899154,132.787628581747413 -76.512100195351678,38.802467456848703,132.787365302443504 -76.515266556348962,38.801122989486103,132.786572902463377 -76.516800233651679,38.80047177533811,132.786189211532474 -76.52437569061226,38.797255163379361,132.784295133315027 -76.525649779163771,38.796714173113671,132.783976763486862 -76.525776370504772,38.796569504077794,132.783645988442004 -76.525969684940861,38.796348583650889,132.783140867948532 -76.526009577086768,38.796302994764432,132.783036629669368 -76.526180800957633,38.796107319514498,132.782589231617749 -76.526501355395766,38.795740988759917,132.78175163641572 -76.52842541954162,38.793542161399095,132.77672406565398 -76.528449815379545,38.793514281748664,132.776660316623747 -76.52843428026938,38.793365174622153,132.776151849888265 -76.528342700836888,38.792486188514651,132.773154421709478 -76.528341264130205,38.792472398898148,132.773107395507395 -76.528075511079564,38.789921681605342,132.764408827759326 -76.528015271181431,38.789343494634906,132.762436995282769 -76.527949736065921,38.788714483776282,132.760291802696884 -76.528286175858469,38.788358034720623,132.759504807181656 -76.529106635533495,38.787488779410893,132.757585590705276 -76.533457430807559,38.78287922698911,132.74740797560662 -76.534945632461884,38.781302516736659,132.743926607072353 -76.536177661308727,38.779997214793724,132.7410444682464 -76.536322702309462,38.77984354769378,132.740705163218081 -76.536349854206406,38.779814780977929,132.740641644224524 -76.536396684760277,38.77979422843562,132.740627753548324 -76.536613222462961,38.779699196454978,132.740563513711095 -76.537254698023546,38.779417671841436,132.740373223088682 -76.537790384334258,38.779182574994579,132.740214325487614 -76.537819513005815,38.779169791283827,132.740205687470734 -76.538200798030516,38.779002456585786,132.740092590451241 -76.540059261328082,38.778186832119438,132.739541419781744 -76.543943708438576,38.776482063396379,132.738389758393168 -76.545342739743134,38.775868070016287,132.737975089810789 -76.54538443074442,38.775849773071414,132.737962733954191 -76.555414414558953,38.771447910405534,132.734991772100329 -76.555664781920242,38.771338031590055,132.734917649067938 -76.560668313306252,38.7691421299387,132.733436823822558 -76.560855404849235,38.769060021004762,132.733381466940045 -76.560749808554817,38.768040945571556,132.729905386455357 -76.559903829825373,38.759876680256831,132.70205385889858 -76.558506030838743,38.746386976417291,132.656023132614791 -76.55827112661602,38.745929321859947,132.654245777055621 -76.558062423165424,38.745522713224879,132.652666651643813 -76.557924587597796,38.745254173668783,132.651623725891113 -76.554948437414922,38.739455858580989,132.629103354178369 -76.55371376829784,38.737050401815161,132.619759817607701 -76.552941962586118,38.736336817328421,132.616521924734116 -76.545531254517854,38.729485136600594,132.585430429317057 -76.545445430001323,38.729405786263051,132.585070334374905 -76.544822923718016,38.729436899680458,132.584457620047033 -76.544540026131656,38.729451039153311,132.584179179742932 -76.544404902519631,38.729457792751496,132.584046185016632 -76.543023732476527,38.729526824857516,132.582686813548207 -76.54073919520043,38.729641008059616,132.580438479781151 -76.530838024936486,38.730135877328841,132.570696327835321 -76.53025372499205,38.729837451241593,132.569041807204485 -76.528149930008652,38.728762956349634,132.563084628432989 -76.527624879512715,38.726131069440228,132.553807571530342 -76.530206683939639,38.715262765339226,132.520947912707925 -76.530502265332785,38.714018492780276,132.517185402102768 -76.530690952113645,38.713224201298608,132.51478351932019 -76.531544700018046,38.70963028401458,132.503915195353329 -76.53176920935114,38.70868519476501,132.501057013869286 -76.531793572707087,38.708582635350389,132.500746847130358 -76.533434313494681,38.70167581131291,132.479856959544122 -76.533506712042254,38.701371044084539,132.478935105726123 -76.533497151048977,38.699908658477007,132.474101453088224 -76.533401655505884,38.685302286775169,132.425813376903534 -76.533378540741964,38.681766800867393,132.414122645743191 -76.533367420545602,38.680065926561596,132.40849803481251 -76.533024900451792,38.678639000814989,132.40339620411396 -76.531423256132783,38.671966611143077,132.379537424072623 -76.528819452483972,38.661119263385594,132.34074193239212 -76.528396839727861,38.659358674564437,132.334444246254861 -76.525975664949698,38.649272151518396,132.298359304666519 -76.52558876304434,38.647660332714054,132.292592152021825 -76.525090727233831,38.646748785578659,132.289009493775666 -76.51883053531958,38.635290854417718,132.24397015478462 -76.517956086254713,38.633690363989892,132.237677961587906 -76.51652228247039,38.631066095375154,132.227360393851995 -76.512245978096402,38.617450695200269,132.177456283010542 -76.513420018654202,38.611532717133421,132.159247185103595 -76.513550764415157,38.61087366789463,132.157219192944467 -76.515780144008218,38.599636050112153,132.122634551487863 -76.516708808856805,38.59495493599492,132.108225368894637 -76.516727555680788,38.594860439017076,132.107934475876391 -76.51673201747677,38.594837948475181,132.107865246012807 -76.517307778966838,38.591935711783975,132.098930899985135 -76.516073281726776,38.557471153150807,131.983497859910131 -76.516343170159374,38.555602805525567,131.97762500308454 -76.51637608514659,38.555374946046108,131.9769087433815 -76.516382444017296,38.555330925705022,131.976770371198654 -76.516486843348261,38.55460820395384,131.974498523399234 -76.518473127201275,38.54085782379623,131.931267328560352 -76.516721176809909,38.530969516924564,131.896508393809199 -76.516672940178026,38.530697261141057,131.895551255904138 -76.516317365236361,38.529802158442727,131.892177627421916 -76.508455187576175,38.51001039109434,131.817564930766821 -76.507826096867689,38.508426756428229,131.811593329533935 -76.506989339851046,38.506320355231026,131.803650131449103 -76.500222310957341,38.495269390109286,131.759234163910151 -76.499758077927623,38.494511269652087,131.756186741404235 -76.4991880133378,38.493580319892061,131.752444526180625 -76.493664671872878,38.484560371067012,131.716182407923043 -76.492607814077118,38.483654935435872,131.711963613517582 -76.474336956323754,38.468001849715101,131.639020290225744 -76.472217675755203,38.466186210791101,131.63055828679353 -76.468306925401819,38.462835776367449,131.614942565560341 -76.468158276850119,38.462708425557508,131.6143489908427 -76.468150943800566,38.462702143156605,131.614319709129632 -76.464974420342273,38.459980738670858,131.601635160855949 -76.46204261733871,38.457468992115899,131.589927362278104 -76.456763205482332,38.452945992261142,131.568843541666865 -76.456966166761674,38.449604129902255,131.557985560968518 -76.455103768083376,38.447593365559186,131.549168851226568 -76.451900950568799,38.444135399583864,131.534005753695965 -76.446339868611972,38.440725728918686,131.516289316117764 -76.443404346248101,38.438925869721736,131.506937158294022 -76.443394644302685,38.438919921160071,131.506906249560416 -76.442143911795128,38.438153058527341,131.502921550534666 -76.439882489638421,38.436766510932763,131.495716842822731 -76.437234415672933,38.435142895200926,131.48728019092232 -76.43663741289879,38.434607107805448,131.484814488328993 -76.416346575234954,38.416396848873944,131.400997989811003 -76.403671968675368,38.397718732555525,131.324355686083436 -76.394339617986063,38.391193081610638,131.29193502292037 -76.389309453098093,38.389497193691895,131.280515640042722 -76.389289529222083,38.389442966048492,131.280312436632812 -76.387190316746086,38.383729451957095,131.25890132971108 -76.387204538347461,38.383347659488017,131.257648021914065 -76.38789167630577,38.364900788029033,131.197078892961144 -76.387918549280329,38.36417935761812,131.19470957480371 -76.387963064204556,38.362984312406674,131.190784720703959 -76.388368626401657,38.36252812767723,131.189733133651316 -76.389767259543788,38.360954916255515,131.186106554232538 -76.389876061895222,38.360832533125397,131.185824434272945 -76.399222419112775,38.350319557725889,131.161588193848729 -76.401832031116186,38.347384212336088,131.154820652678609 -76.402492831683332,38.346640930234621,131.153106951154768 -76.403003974896365,38.346065985810952,131.151781361550093 -76.404062770736004,38.344875030423758,131.14903546962887 -76.405901305141768,38.342807009027524,131.144267308525741 -76.410252694372019,38.327609115669418,131.098679628223181 -76.40667737122682,38.319512895642504,131.067604705691338 -76.40385468848504,38.313121008875044,131.043067284859717 -76.38312340927861,38.305108833452493,130.992522948421538 -76.382453140849705,38.304849789704612,130.990888856351376 -76.381080450792638,38.304062527848366,130.986686814576387 -76.376269546068031,38.301303389491878,130.971959647722542 -76.375982908933238,38.301138998060544,130.971082184463739 -76.375477238038016,38.29827578792721,130.960959171876311 -76.375440647167579,38.298068603071691,130.960226632654667 -76.377566522925818,38.296112841422797,130.956153958104551 -76.383010522540886,38.29110447459567,130.945724435150623 -76.3951311713503,38.279953728963143,130.922503350302577 -76.397873547322476,38.273371320782843,130.903714884072542 -76.399812155739014,38.268718161670471,130.890431552194059 -76.399973465454778,38.266059261961409,130.881750801578164 -76.400008936742324,38.265474581775933,130.879841868765652 -76.400037953412763,38.264996294311857,130.878280276432633 -76.40027318015288,38.261119005972162,130.865620417520404 -76.400280067452115,38.261005481274907,130.86524972692132 -76.400037569635529,38.260290041103438,130.862584350630641 -76.393423850741144,38.240777616982726,130.789873396977782 -76.393239508661253,38.240233753393504,130.787846270948648 -76.392618924933032,38.2384028480759,130.781021799892187 -76.392582521161557,38.238295446196055,130.780621464364231 -76.386203123835983,38.219474339353589,130.710450945422053 -76.379062705639853,38.211620816673921,130.676003723405302 -76.378651927289823,38.211169014411709,130.674021870829165 -76.373493385801112,38.205495295930525,130.649132396094501 -76.365093343854625,38.196256352428811,130.608597372658551 -76.362835126654304,38.193772609930143,130.597698993049562 -76.360845001517319,38.190461292383524,130.58434347063303 -76.354756662220382,38.180331062655547,130.543479302898049 -76.354473708294606,38.179860262961313,130.541579931043088 -76.353518354765868,38.178939498793319,130.53740241844207 -76.353352426892883,38.178779578475449,130.536676849238575 -76.348940924957589,38.174527798594177,130.517385584302247 -76.344474629027957,38.170223208573731,130.497853285633028 -76.338568437426702,38.16453085547618,130.472021748311818 -76.337062549175059,38.163079489140223,130.465435137972236 -76.330667554110576,38.156916030093576,130.437462243251503 -76.330661735642579,38.156910422287901,130.437436792068183 -76.330645025539965,38.156881009171499,130.437319184653461 -76.329820286824813,38.155429304386807,130.431514471769333 -76.329761998730859,38.155326705705157,130.431104217655957 -76.329734663924711,38.155278590989298,130.43091182783246 -76.32937601923544,38.154647304738162,130.428387531079352 -76.32808071665535,38.152367313606931,130.419270345009863 -76.321448338625174,38.140693004153569,130.372580167837441 -76.321092245449591,38.140066209069822,130.370073029771447 -76.325063953527177,38.135993675587422,130.361016008071601 -76.331938635335234,38.128944473802221,130.345338392071426 -76.332768760375245,38.128093275295704,130.343445242382586 -76.336199101975382,38.124575851414619,130.335622010752559 -76.336593198915736,38.124171749972874,130.334723220206797 -76.338298181328824,38.122423485066527,130.330834744498134 -76.339117124255054,38.121583752547714,130.328966998495162 -76.339491518761548,38.121199853704901,130.328113120049238 -76.33836733151243,38.112616618953737,130.298083562403917 -76.338358373945866,38.112548227412915,130.297844261862338 -76.332763227545016,38.102821175878113,130.258828051388264 -76.332440429529271,38.102259997900028,130.256576855666935 -76.332195877020794,38.101834848191444,130.254871325567365 -76.33176340301533,38.101083000669718,130.251855173148215 -76.331750037704396,38.101059765340523,130.251761964522302 -76.3317430358086,38.100929422977352,130.251317358575761 -76.33038856706051,38.075715582605412,130.165285179391503 -76.330263635516189,38.073389944221056,130.157347212545574 -76.330120273972028,38.072976674617763,130.155796982347965 -76.325999842543339,38.061098670059629,130.111234535463154 -76.321546836160664,38.048261948498222,130.063061327673495 -76.320431425204305,38.045046543265869,130.050992393866181 -76.322453625703105,38.039781845573046,130.035664326511323 -76.322905449570996,38.03860554477653,130.032239305786788 -76.323047975061328,38.038234486805813,130.031158885918558 -76.327949644136666,38.046836402962711,130.06565894652158 -76.33376735785987,38.051669143360961,130.088570214807987 -76.342127692227592,38.05532644312342,130.11047004442662 -76.342359630848378,38.055427906656284,130.111077608540654 -76.345283082199799,38.055295118695334,130.114002832211554 -76.346652908731315,38.055232898924181,130.115373591892421 -76.35161177634599,38.055007659007998,130.12033639382571 -76.353706056319382,38.05491253336821,130.122432596981525 -76.362193378383139,38.061272195861378,130.153540442697704 -76.362494855082844,38.061844153412686,130.155805318616331 -76.362624504576559,38.062090122693284,130.156779313459992 -76.362735064675306,38.062299875829595,130.157609895803034 -76.370263216711876,38.076582184825497,130.214155954308808 -76.371161055142878,38.078285551835698,130.220898665487766 -76.371801478043722,38.079500553558681,130.225708048790693 -76.372746936738835,38.0812942650903,130.232807918451726 -76.37924969696833,38.088678148652519,130.265043370425701 -76.381948614666186,38.091742769411056,130.278421111404896 -76.382255007742529,38.09209067871631,130.279939761385322 -76.382709620267988,38.092606891190002,130.282193052582443 -76.382799867530508,38.092709366947034,130.282640362158418 -76.384853046088821,38.095040750978058,130.292816657572985 -76.385843826447271,38.096165781967308,130.297727162018418 -76.391874925535618,38.103014094315824,130.327616238966584 -76.392780916697461,38.104042847178604,130.332105843350291 -76.393015603716748,38.104309334262467,130.333268805406988 -76.39329282049485,38.104624113882892,130.334642520174384 -76.394078713622221,38.104869993580969,130.336372470483184 -76.394964153901867,38.105147018256353,130.338321560062468 -76.397435536122003,38.105920231167801,130.343761797063053 -76.398613518780351,38.106288782576911,130.346354918554425 -76.399025102928363,38.106417553502844,130.347260954789817 -76.406326241333019,38.108701835719685,130.36333366855979 -76.406930024465098,38.108694857404018,130.364007184281945 -76.414118459907186,38.108611775957854,130.372026822529733 -76.415433449003586,38.107671159325648,130.370396420359612 -76.41595209361212,38.107300170892337,130.369753379374743 -76.417508523822136,38.106186850527223,130.367823668755591 -76.422024701614106,38.107716622287207,130.378158928826451 -76.422172675984811,38.107766745870407,130.37849757168442 -76.422854272174405,38.108754082349485,130.382589406333864 -76.430343433458049,38.11960262027371,130.427543590776622 -76.430430187631472,38.119728289344224,130.428064282052219 -76.431384110185917,38.12111010829372,130.433789515867829 -76.431371066104006,38.121214928352337,130.434125178493559 -76.43108923912051,38.123479642821387,130.441377185285091 -76.43070301641157,38.126583263916402,130.451314879581332 -76.430540175105094,38.12789182943694,130.455504641868174 -76.438201333578149,38.137424901183344,130.496239417232573 -76.440800262795463,38.140658847944067,130.510056312195957 -76.460196650527507,38.141197455877659,130.534263466484845 -76.460649198599654,38.141210022442309,130.534828404895961 -76.46103255636099,38.140443261760161,130.532707399688661 -76.461633492216606,38.139241319261231,130.529382532462478 -76.466686723515082,38.129134261522687,130.501420693472028 -76.470758218743143,38.120990791688762,130.478887033648789 -76.470754945241836,38.120787468878568,130.478203058242798 -76.470747631455552,38.120333196993769,130.476674880832434 -76.470744001717449,38.120107747695364,130.475916461087763 -76.470719736888427,38.11860061722377,130.470846303738654 -76.470700084774307,38.117379990381977,130.466739842668176 -76.470698168212223,38.117260949390449,130.46633935533464 -76.468292719260106,38.114272814656772,130.453560434281826 -76.467932941769931,38.113825886188515,130.451649056747556 -76.467528149271331,38.113323038466454,130.449498506262898 -76.467364020014784,38.113119151232652,130.448626527562737 -76.467346643160198,38.113029173053768,130.448305365629494 -76.467323674273317,38.112910239065506,130.447880847379565 -76.466851517066729,38.110465386598548,130.43915403354913 -76.466439177672072,38.108330273591982,130.431532406248152 -76.466289916955716,38.107557394497313,130.428773393854499 -76.468838758359368,38.106659749757377,130.428716559894383 -76.474226104046977,38.104762447509479,130.428597183898091 -76.476408224476458,38.105998081086497,130.435256076045334 -76.477182209259382,38.106436352765876,130.437617934308946 -76.479128087936957,38.110948510120352,130.454967346042395 -76.479570489523113,38.111974363164677,130.458911536261439 -76.47975710485413,38.112407091959753,130.460575260221958 -76.479777132890121,38.112453533523869,130.460753812454641 -76.480016069037106,38.113007585274985,130.462883965112269 -76.480759880333679,38.114732355495299,130.469514979980886 -76.481960125723162,38.117515517716541,130.480214511044323 -76.481996491097206,38.117599842751929,130.480538679286838 -76.482010255980967,38.117615443366276,130.48060679063201 -76.4820334277168,38.117641705361805,130.480721447616816 -76.482967873463721,38.118700771896336,130.485345249064267 -76.484990177242693,38.120992776820998,130.495351635850966 -76.486109952925005,38.122261889504919,130.500892116688192 -76.486921960509619,38.123182189115752,130.504909725859761 -76.487234270527324,38.123536149833747,130.506454937160015 -76.487280341572017,38.1235883650658,130.506682879291475 -76.492990059261615,38.13005954964504,130.534930920228362 -76.496001082962621,38.133472133447547,130.549826148897409 -76.498041722433456,38.135784919360013,130.559920440427959 -76.498827556062778,38.13667555436561,130.563807551749051 -76.499979365331441,38.137980972733601,130.569504833780229 -76.500803300561358,38.138914790694606,130.573580245487392 -76.500883816602439,38.138946373818257,130.573778988793492 -76.501293614973662,38.139107120825443,130.574790535494685 -76.502218867301366,38.1394700591702,130.577074431814253 -76.503267420706635,38.139881363444445,130.579662692733109 -76.509786599999316,38.142438568721964,130.595754937268794 -76.515785775722989,38.142944498292479,130.604388773441315 -76.5233799657465,38.141116513111513,130.607068230397999 -76.529952509368997,38.136433917675397,130.599023718386889 -76.530401344517813,38.136114145980244,130.5984743880108 -76.530830105998547,38.135808675729429,130.597949626855552 -76.54134265059227,38.154715793130102,130.673317554406822 -76.546297953051038,38.167097231186148,130.720421879552305 -76.548296144893129,38.177396781291932,130.75713615398854 -76.548417931080394,38.177646564932331,130.758111335337162 -76.548864768724485,38.17856302956509,130.761689266189933 -76.549219039849888,38.179289640138158,130.764525941573083 -76.549909295978367,38.180705356420553,130.770052742213011 -76.553920455318661,38.188932249790234,130.802166110835969 -76.567260980069761,38.200214665733832,130.855275515466928 -76.575404205929487,38.205473490765804,130.882257062010467 -76.5896476732526,38.214671799092777,130.929447734728456 -76.591601873636577,38.215933804839757,130.935921955853701 -76.625352963068238,38.225150429006291,131.00578654743731 -76.626625464515641,38.22549791904644,131.008421043865383 -76.629043613984834,38.226158258456366,131.013427495956421 -76.630669283946261,38.226602190460888,131.016793291084468 -76.630859326478429,38.226654086580211,131.017186755314469 -76.632924365819704,38.227217999966363,131.021462303586304 -76.632963596461209,38.227228712926397,131.021543527953327 -76.633430035974826,38.227356086521631,131.022509277798235 -76.633510206086328,38.22737797908227,131.022675266489387 -76.644895519287743,38.226800909602005,131.03396037966013 -76.644965222512567,38.226822906638574,131.03411460109055 -76.646000522064554,38.227149627851126,131.036405254155397 -76.646132321279623,38.227191221223066,131.036696872673929 -76.66014904817284,38.231614638554881,131.067711304873228 -76.674429474823512,38.23612127456245,131.099312393926084 -76.679654801655374,38.235978779014566,131.104905797168612 -76.688043228144267,38.235750025189674,131.113887090235949 -76.713562837773452,38.235054100968092,131.141225319355726 -76.717107556572088,38.234957435853659,131.145024430006742 -76.717344668073025,38.234950969780648,131.145278573967516 -76.718505519904795,38.235048806183165,131.146954333409667 -76.720570998815816,38.235222884407086,131.149936082772911 -76.74102436129769,38.236946690387704,131.179469824768603 -76.745233968760786,38.232436147261247,131.169339721091092 -76.750353317645803,38.226950827313182,131.157019806094468 -76.75298634243839,38.224129573346694,131.150683072395623 -76.753054893345364,38.224056121885624,131.15051809232682 -76.753255531643063,38.223841140396097,131.150035222992301 -76.770958422398266,38.228107952039238,131.184865770861506 -76.779595357202908,38.230189655758281,131.201861423440278 -76.780835539585183,38.230746094379484,131.205159930512309 -76.792903012664851,38.236160465811807,131.237255963496864 -76.797561416935082,38.238250574547699,131.249646108597517 -76.798422999266947,38.23863714485195,131.251937701366842 -76.812618574468175,38.251847472061947,131.312472910620272 -76.812786229434252,38.253036427698156,131.316626693122089 -76.81289860878708,38.253833386282501,131.319410910829902 -76.809980611668479,38.253911504610024,131.316269817762077 -76.809851340042968,38.253914965368502,131.316130668856204 -76.809382257857351,38.25392752326816,131.315625752322376 -76.806920442693624,38.253993429048755,131.312975998036563 -76.806740992568436,38.254333256666705,131.313898225314915 -76.806195440568231,38.255366377355301,131.316701882518828 -76.803918506659684,38.276811281585097,131.38542375061661 -76.803318720511925,38.282460263157795,131.403520460240543 -76.805893915493286,38.285017003556206,131.415026179514825 -76.806009263133873,38.285131524582567,131.415541529655457 -76.806335126030433,38.28545505225236,131.416997413150966 -76.80644157964295,38.285560742987833,131.417473021894693 -76.807567956742147,38.286679048146013,131.422505358234048 -76.811568246403667,38.29065067058206,131.440376718528569 -76.812154162072119,38.291232387409984,131.442994203418493 -76.816070175733969,38.295120337786116,131.460487682372332 -76.817294963976792,38.296336348841329,131.465958764776587 -76.821771525705202,38.300780830226081,131.485954415053129 -76.822541516284133,38.301545302827819,131.489393604919314 -76.82264260149033,38.301585580796981,131.489645319990814 -76.825806909316938,38.302846417054766,131.497524853795767 -76.82586162742065,38.302868219791044,131.497661106288433 -76.835018592079379,38.301396305658898,131.503439001739025 -76.846818939071667,38.29949948740218,131.51088937651366 -76.847091440815717,38.299455684767622,131.511061483994126 -76.847225182946801,38.299434186711828,131.511145957745612 -76.847194136578395,38.293676205837251,131.49196358397603 -76.847193102581684,38.293484436702485,131.491324668750167 -76.842676156672383,38.29148500511652,131.479408350773156 -76.842213737843821,38.291280314860842,131.478188429959118 -76.84135590379914,38.290900593579856,131.475925355218351 -76.83951185977925,38.285887193323653,131.457101016305387 -76.83588098530123,38.276015939161013,131.420029915869236 -76.835775544314913,38.275729276873975,131.418953238986433 -76.836108748475581,38.274345258613046,131.414737049490213 -76.838669826059217,38.263707402039955,131.382325977087021 -76.838761462958573,38.263326773128057,131.381166141480207 -76.843010186088506,38.256374795570082,131.362984477542341 -76.843111490466256,38.256209036179648,131.362550937570632 -76.844394776448951,38.256642996040405,131.365492468699813 -76.84519307251368,38.256912950246658,131.367322326637805 -76.845857812613247,38.257137740764584,131.368846056051552 -76.847009102454052,38.257527064410922,131.371485072188079 -76.848046651538539,38.257877925139717,131.373863385990262 -76.865265306412766,38.270662245185164,131.436497762799263 -76.867275264458371,38.271390414344623,131.441266250796616 -76.867389260247606,38.271431712827557,131.441536698490381 -76.887509039685725,38.278720722076727,131.489272083155811 -76.909480810374305,38.290146059743726,131.552928475663066 -76.921752826675345,38.293244843728289,131.577569915913045 -76.921907201820986,38.293283824708659,131.577879912219942 -76.923136590938995,38.31280139042422,131.644181520678103 -76.923152501550248,38.313053984468624,131.645039380528033 -76.924604590531445,38.31664682163327,131.658672985620797 -76.92564360099442,38.317726241025589,131.663473045453429 -76.927994913494274,38.320169000168356,131.67433538287878 -76.930529839709322,38.322802514081431,131.686045423150063 -76.943108307703696,38.331315052328542,131.729017280042171 -76.954904688918091,38.334995799734912,131.755028737708926 -76.967326011431766,38.34308527736362,131.796408632770181 -76.976069912072347,38.348779806935987,131.825535715557635 -76.976469484120443,38.349040031169402,131.826866703107953 -76.984559922432538,38.364711306882128,131.888328913599253 -76.987442708559882,38.384329220421257,131.956765693612397 -76.987677144652466,38.385924603012015,131.962329730391502 -76.987974522047182,38.387948313226666,131.96938728261739 -76.988816166353701,38.393675864089303,131.989359859377146 -76.989258485195322,38.396685928554163,131.999855163507164 -76.990249433687907,38.398062740519627,132.005577610805631 -76.990284618523205,38.398111625908285,132.005780790001154 -76.991283315138006,38.399499203020845,132.011547811329365 -76.994817741848834,38.404409893144205,132.031956184655428 -76.997641974306617,38.408333847873344,132.048262281343341 -76.997703051284077,38.408418707493858,132.048614902421832 -76.999563968292691,38.411004243278768,132.059358417056501 -76.999821617956272,38.412072344242333,132.063198778778315 -77.001975844630039,38.421002810243074,132.095304461196065 -77.002519857676106,38.423258046431222,132.103411111980677 -77.002617225053015,38.423661688279047,132.104861993342638 -77.00288141577856,38.424085198816414,132.106573735363781 -77.003549630320308,38.425156379112323,132.110903160646558 -77.007474024337043,38.431447372905481,132.136327632702887 -77.007746939544447,38.431884869208154,132.138095606118441 -77.017350958941776,38.447280577629328,132.200300742872059 -77.017654148972468,38.447268656718329,132.200615832582116 -77.041618629148871,38.446326414471557,132.225531006231904 -77.04302674862916,38.445691004544571,132.22507568821311 -77.043859501690122,38.445315227084485,132.224806444719434 -77.045168707387461,38.444724451721832,132.224383200518787 -77.054167909995527,38.439461631314813,132.217496619559824 -77.05427040982056,38.439401688429562,132.217418195679784 -77.054425594047345,38.439310935198392,132.217299459502101 -77.054643663883397,38.439183405856902,132.217132612131536 -77.054959973608064,38.438998424882101,132.216890593990684 -77.055952465127817,38.438418006277878,132.216131241992116 -77.056143324643784,38.438306389793837,132.215985216200352 -77.056301423691266,38.438213931947494,132.215864258818328 -77.057872721460697,38.437295021871613,132.214662127196789 -77.058257958472097,38.437069731555475,132.214367408305407 -77.058440845925205,38.436962777210745,132.214227495715022 -77.058665066997506,38.43683165056715,132.214055961929262 -77.063588147385076,38.433952585722864,132.210290017537773 -77.075155418732876,38.427187934002276,132.201443947851658 -77.075320812761447,38.427091209981057,132.201317486353219 -77.075684007997879,38.426878809908274,132.20103978831321 -77.076470340374854,38.426418955159598,132.200438572093844 -77.082233500079411,38.421157631243631,132.18977118190378 -77.082399124986267,38.421006428374724,132.189464612863958 -77.08737451235335,38.416464280359811,132.180255252867937 -77.092054546432351,38.409255542885496,132.161867738701403 -77.107552964434461,38.407946467863844,132.175708500668406 -77.107949722479603,38.408240229748806,132.177146851085126 -77.10861275917155,38.408731145839567,132.1795505117625 -77.108863368094006,38.408916698093222,132.180459029972553 -77.110036802126416,38.409785515240984,132.184712957590818 -77.110152923755081,38.409871492347037,132.185133918188512 -77.111568117533452,38.410919309768047,132.190264207310975 -77.111605595039919,38.410923533792761,132.190322161652148 -77.12430749506251,38.412355142887407,132.209966771304607 -77.126915500018526,38.406554728335529,132.193819286301732 -77.128374753765584,38.403309229675983,132.184783436357975 -77.128719486219424,38.402542516748575,132.182648724876344 -77.129359599741932,38.401899372739535,132.181269998662174 -77.129631345582936,38.401626340373468,132.180684690363705 -77.129805077454279,38.401451786004351,132.180310491472483 -77.12985478078879,38.401401847359466,132.180203434079885 -77.13007212065115,38.401183478546244,132.179735308513045 -77.13126932722443,38.399980604045361,132.177156642079353 -77.136206228646245,38.395020329899559,132.166522811166942 -77.137416577671274,38.393804250735194,132.163915724493563 -77.137710616600444,38.393508819741612,132.163282363675535 -77.137929580180227,38.393394140139051,132.163159602321684 -77.140950830993418,38.391811795519544,132.161465908400714 -77.14413431061331,38.390144485469015,132.159681553952396 -77.148523801309395,38.38784554128695,132.157221694476902 -77.164514156269206,38.379470780749585,132.148265383206308 -77.16968049631177,38.376764970855675,132.145373234525323 -77.177983574091172,38.372416331431566,132.140726718120277 -77.18078358337938,38.370949859468531,132.139160234481096 -77.183621451731767,38.369463559265839,132.137572799809277 -77.184251795410006,38.369133424171501,132.137220229022205 -77.185900648436416,38.368269856774369,132.136298037134111 -77.187663665389849,38.367346497362242,132.13531207665801 -77.19039604992625,38.366582511537722,132.135994830168784 -77.205993063499733,38.362221523112325,132.139897322282195 -77.208198081017386,38.361604991243873,132.140449750237167 -77.208296166387626,38.361577566175285,132.140474326908588 -77.208355353902789,38.361598254935934,132.140612568706274 -77.209317744333788,38.36193465468515,132.142860352061689 -77.213172865967763,38.363282197124768,132.151864591985941 -77.217713475230312,38.364869349035274,132.162470130249858 -77.217818963609844,38.364931236486036,132.162799414247274 -77.237215860967851,38.376310921447207,132.22334429807961 -77.251157679679054,38.384490245226608,132.266858770512044 -77.25184729978757,38.386034536966129,132.272785173729062 -77.252205254432766,38.386836118002059,132.275861256755888 -77.254187768001344,38.391275633726998,132.292896938510239 -77.257397822559881,38.398464027207076,132.320477147586644 -77.258163297002355,38.400178182330514,132.327053288929164 -77.262923846587682,38.410838656357271,132.367945034056902 -77.265224310721834,38.415990170383829,132.387701753526926 -77.262277040724996,38.42537755272221,132.415286768227816 -77.260948367264831,38.429609525368868,132.42772057838738 -77.260948475014914,38.437527734472745,132.453909432515502 -77.261747108406723,38.440101151796767,132.463360231369734 -77.264669095194407,38.449516600017787,132.497933254577219 -77.267832554808223,38.459710140196457,132.535354656167328 -77.270461556746014,38.468181510073421,132.566446910612285 -77.275008246334295,38.482832198589932,132.620204165577888 -77.275157506507583,38.483313156050926,132.621968606486917 -77.275207701912421,38.483474899494794,132.622561974450946 -77.275112426602419,38.483749154907372,132.62335569690913 -77.27208712762399,38.49245765062718,132.648556443862617 -77.264586820972625,38.5140477120977,132.711012768559158 -77.258365641163252,38.523550617192456,132.735058785416186 -77.255869554149498,38.527363411385686,132.744705496355891 -77.247076234546213,38.54079528222978,132.778684181161225 -77.243723693968562,38.545916316689521,132.791636778973043 -77.238711633833702,38.553572281571377,132.810998784378171 -77.237715538789701,38.553773031020846,132.810490395873785 -77.227452322294866,38.55584144312914,132.80525438208133 -77.222104212429741,38.556919282140214,132.802527458406985 -77.210891860819771,38.570572203261854,132.834384980611503 -77.206248000518585,38.576226883155648,132.847577850334346 -77.184753783432669,38.602399703156458,132.908628568053246 -77.176955869431822,38.605813351371566,132.910734892822802 -77.170954044526269,38.608440735933961,132.912357413209975 -77.170657470878979,38.608570565283316,132.912437619641423 -77.16850934871988,38.608440805914128,132.909492740407586 -77.164931347964369,38.608224673361207,132.904587949626148 -77.164395038254852,38.608192277060724,132.903852799907327 -77.164146733661866,38.60817727798446,132.903512438759208 -77.16363571532986,38.608146409433665,132.902811968699098 -77.162570914745984,38.608082089136502,132.901352440007031 -77.149636861290801,38.607300795251085,132.883626476861537 -77.147072720437819,38.608449214681073,132.88440774101764 -77.13652414146469,38.61317367942074,132.887623967602849 -77.130198320849743,38.61600686828023,132.889554406516254 -77.130069429774181,38.616064595614155,132.889593753963709 -77.129826316248597,38.61636009534741,132.890282841399312 -77.127325286735115,38.619400047788574,132.897371702827513 -77.126176220588547,38.620796715212478,132.900628498755395 -77.125615378297923,38.621478408046883,132.902218067087233 -77.131185743922927,38.636716727812889,132.958929487504065 -77.13688710743989,38.651516064991746,133.01432878524065 -77.133487340689129,38.675514097413824,133.089329574257135 -77.122087194741951,38.688313662544637,133.118105921894312 -77.106885905760791,38.698512367803581,133.133884168229997 -77.087098558426717,38.707488685637188,133.140292906202376 -77.075584216968224,38.712712043106563,133.144027920439839 -77.060895014955875,38.736115286251774,133.203823917545378 -77.042383005506252,38.76560913328079,133.279145739972591 -77.040223753704439,38.786893837931189,133.346520263701677 -77.039583306008566,38.793207016146766,133.366497366689146 -77.025376613130646,38.804663168262017,133.387556188739836 -77.002381666505613,38.823206091102698,133.421645459719002 -76.954679825271754,38.860203967419416,133.487561631947756 -76.950679750508542,38.863003885749201,133.492098365910351 -76.921178232610529,38.886103182935699,133.533592364750803 -76.920278216738851,38.886803161701351,133.534842910245061 -76.911778066666514,38.893402961647283,133.546617656946182 -76.910378042123639,38.894502928170837,133.548599503934383 -76.94270619652211,38.919708836132621,133.668614662252367 -77.003484686561507,38.967097158536063,133.894135280512273 -77.003622266386344,38.967208635479565,133.894659360870719 -77.009284916271682,38.971796916512027,133.916229254566133 -77.014785131947107,38.976096693459354,133.936666295863688 -77.016585203824093,38.977596616656044,133.943657536990941 -77.037287010474614,38.993395793004154,134.019310558214784 -77.041987191056435,38.996795613701387,134.035873129963875 -77.055287429162362,38.986795911404521,134.018659538589418 -77.101689240924543,38.950597005100491,133.954334836453199 -77.120889581784027,38.935998442591099,133.928967481479049 -77.138691377879113,38.956996428251692,134.018341087736189 -77.149169809542244,38.966687941020844,134.062214678153396 -77.167892382982927,38.969795654317522,134.094189053401351 -77.198494231139875,38.968495447665596,134.125637239776552 -77.222494973176936,38.972995058602365,134.16834622900933 -77.236396440568512,38.978294722504451,134.201882713474333 -77.250796978015345,38.987593217838338,134.249054406769574 -77.256697375826448,39.004092489955589,134.309779669158161 -77.252797391446833,39.013092153750911,134.334577619098127 -77.262397937826364,39.032691267709275,134.409693452529609 -77.292600994840583,39.047089419451765,134.491903034038842 -77.328998894565842,39.060234350471525,134.577277048490942 -77.341284619876291,39.06467128256314,134.606097416952252 -77.376077580414162,39.062977054229847,134.641313432715833 -77.42418001947685,39.068557413255348,134.715853497385979 -77.459203106249802,39.075401832152075,134.779214910231531 -77.520932519392431,39.122601367858159,135.005140817724168 -77.525562748128891,39.129497045720683,135.032978477887809 -77.528286086615637,39.147911268803718,135.095966989174485 -77.517430130034555,39.172565354330679,135.163224860094488 -77.511635074077176,39.180158094014281,135.181053284555674 -77.506165970054269,39.183723995462941,135.186201156117022 -77.486974478355492,39.187339013129474,135.175411094911397 -77.479599319409061,39.190841933590725,135.178124194964767 -77.459887197353126,39.221498852191445,135.254427191801369 -77.459781938179901,39.221952932772659,135.255775773897767 -77.458683237178462,39.226692650735501,135.269851507619023 -77.461213356388072,39.230031492790346,135.283636034466326 -77.485609298012307,39.247612565823374,135.369178529828787 -77.512227159826139,39.25517102816093,135.424858164973557 -77.535466944573656,39.264031466468943,135.480800966732204 -77.544234258270592,39.268607204309852,135.505897710099816 -77.546852398171723,39.273204994398874,135.523849134333432 -77.561861032413319,39.287821269436286,135.588750176131725 -77.593747152345799,39.302958377329432,135.675136003643274 -77.668759517742856,39.319796041796366,135.817730407230556 -77.678515709070695,39.320365916305271,135.831052504479885 -77.720041011799509,39.322791474411126,135.887788084335625 -77.728391255780792,39.323332379795268,135.89937496278435 -77.756802235727434,39.335564634910263,135.972358780913055 -77.761599443066544,39.340529391189648,135.994039178825915 -77.761448515433642,39.345836176672201,136.010985552333295 -77.740217515375917,39.387393672865272,136.119995562359691 -77.76645687880152,39.430235705748338,136.288936527445912 -77.80883797549096,39.491899837611413,136.537257604300976 -77.826428365055534,39.495694526420955,136.570186858065426 -77.846123148774439,39.499943185815034,136.607063572853804 -77.866441989701713,39.518129272120916,136.689452137798071 -77.889965233504739,39.557605470321882,136.843913812190294 -77.887155219556533,39.562087313984819,136.854975487105548 -77.885556505782205,39.569828746034119,136.877919405698776 -77.903669787299521,39.589449644028129,136.962195844389498 -77.94746428705011,39.586563795842117,137.004648715257645 -78.01100935097331,39.604545510591933,137.137375624850392 -78.024451654586088,39.621511285868188,137.207595817744732 -78.03701757151309,39.63737095747301,137.273216017521918 -78.075622122487133,39.668335368957898,137.417929828166962 -78.108862292590956,39.683785452807911,137.506671160459518 -78.144507424430273,39.692059803965719,137.575352585874498 -78.177655445057368,39.697614286415202,137.632414070889354 -78.183789605876726,39.696757266464374,137.636959712021053 -78.192137769961477,39.691909387488856,137.631395796313882 -78.225368308354106,39.664918179557702,137.584695279598236 -78.272153981898882,39.621291523665278,137.500982257537544 -78.284071330661831,39.622119384362016,137.517827905714512 -78.314066333942776,39.632649692615587,137.58723468799144 -78.335078150379701,39.63741834920021,137.627530816942453 -78.356252667064098,39.642223930694371,137.668148227967322 -78.43128652541283,39.624937959678235,137.702616470865905 -78.458223748922336,39.58902817087948,137.620146659202874 -78.459492691964201,39.582807411217317,137.601785155013204 -78.45541247520255,39.575968724333698,137.575036508962512 -78.451243306734199,39.5725389003223,137.559076495468616 -78.433068648586811,39.562703460456142,137.505856174975634 -78.437974458279342,39.54061031150222,137.44105439633131 -78.46967502098785,39.518440927663498,137.408104190602899 -78.566967795980858,39.521094951778501,137.533454053103924 -78.657025553250037,39.536344527316402,137.690646855160594 -78.658365535493388,39.536736978609021,137.693516410887241 -78.677261210010258,39.542271105548423,137.733984253369272 -78.690497658623912,39.547418778068355,137.76639630459249 -78.761241189812637,39.583800667902295,137.967952531762421 -78.768535474649767,39.589133386246637,137.993778495118022 -78.773093247394257,39.595479141763455,138.019528068602085 -78.77007450913672,39.601516456940359,138.035138319246471 -78.761542616593516,39.611629538270257,138.057086576707661 -78.788507465782246,39.629136114428448,138.145459624938667 -78.825835123560466,39.591878759064052,138.071805886924267 -78.875791506776025,39.524259052086862,137.916513273492455 -78.970044926467594,39.443193500791672,137.771936693228781 -79.026731870570359,39.467188011447092,137.917676853947341 -79.043491546391039,39.480987297995298,137.982186138629913 -79.068124205957716,39.476306532805516,137.997269003652036 -79.085502599316172,39.473004243003118,138.007923212833703 -79.202730487982876,39.381376920600928,137.858407128602266 -79.214246630630115,39.369548299981233,137.83468100707978 -79.257935668441661,39.357728387504316,137.850469511933625 -79.281095268371089,39.341728040167382,137.827712031081319 -79.379744786337767,39.273573732330227,137.730889574624598 -79.403969130312902,39.251760408608391,137.690866299904883 -79.48793279309524,39.207616461754824,137.653106735087931 -79.486934652521128,39.266558045588319,137.840805778279901 -79.487239661951264,39.26662304013864,137.841391234658659 -79.487797876112154,39.279801493479816,137.884286802262068 -79.488711928348494,39.28158541185956,137.891129300929606 -79.483712452961072,39.523006580661516,138.655678295530379 -79.48341849543776,39.526324448195616,138.665876375511289 -79.479930505419176,39.533331194762496,138.683877746574581 -79.477729349897473,39.722712528424594,139.28242917265743 -79.393523263683832,39.722975247877216,139.179925443604589 -78.932228113290648,39.724414439098204,138.622455355711281 -78.932227112861767,39.724414438706198,138.622454144060612 -78.809435737955539,39.724366324315,138.473852115683258 -78.381635625998939,39.724198667203368,137.959941299632192 -78.343869430308033,39.724183864297196,137.91485848184675 -78.343555532139717,39.724183741259608,137.914483964443207 -78.341533474633408,39.724158760300377,137.911994394846261 -78.340574448104391,39.724196767324784,137.910972586832941 -78.338146378136983,39.724105792640295,137.907789025455713 -78.331750200809509,39.724333840503569,137.900894346646965 -78.270053455645424,39.72425839321518,137.827205567620695 -78.269981453266055,39.724235394781168,137.82704659178853 -78.24413572068309,39.724126629147278,137.795967961661518 -78.241366642610501,39.724143653093947,137.792730974033475 -78.205481627676505,39.724165971229638,137.750172452069819 -78.203926582122321,39.724061989228673,137.747994410805404 -78.100168706830331,39.723969053930929,137.624679460190237 -78.076798980399062,39.723948121446647,137.596953208558261 -78.074763922921932,39.723961138942684,137.594586992636323 -77.769553245046041,39.723007868192681,137.231961950659752 -77.744222522456568,39.722855096631221,137.20176706276834 -77.733633219634086,39.722744193968516,137.189000100828707 -77.725132974897534,39.722544276532432,137.178399795666337 -77.675538563013205,39.722497712960923,137.120180885307491 -77.673265497302609,39.722428735630722,137.117300635203719 -77.535770571437766,39.721785962936124,136.954682013951242 -77.534383532352877,39.721816973790112,136.953164704144001 -77.470155698711366,39.721670539312065,136.877907884307206 -77.460437481039705,39.721669763323298,136.866601128131151 -77.244311248273547,39.721652499884392,136.615948861464858 -77.240811148187206,39.721652530157833,136.611903254874051 -77.21802749659075,39.721652727146818,136.585578532889485 -77.217809490355165,39.721652729031085,136.585326727479696 -77.059902971445325,39.721756086696388,136.403676500543952 -77.059202952831669,39.721856088719171,136.403192519210279 -77.048102631889748,39.721656192212876,136.389789426699281 -77.000462231397435,39.721784345086611,136.335476834326982 -76.8985603491776,39.722058459689208,136.219555421732366 -76.891094134887609,39.722058523626686,136.211011226288974 -76.810188816030376,39.722360203553862,136.119510053656995 -76.807388734158891,39.722260231468873,136.115992342121899 -76.788088182502861,39.722460388296987,136.094609880819917 -76.788087190911213,39.722460392479377,136.09460876416415 -76.716583131424372,39.722761986097858,136.014085846953094 -76.712883025024198,39.722762017619552,136.009873592294753 -76.570459931967022,39.722863164021632,135.848403248004615 -76.570373925322954,39.722863225100539,135.848305940628052 -76.518070420036295,39.722964664440717,135.789383449591696 -76.492869693778474,39.722964877822385,135.760869407095015 -76.419764584476553,39.722865499920573,135.677949924953282 -76.419664583008284,39.722965496776368,135.678159026429057 -76.396562915155272,39.722865695814555,135.651772660203278 -76.381562483752248,39.722965818405335,135.635179974138737 -76.381062469323808,39.722965822623685,135.634616281837225 -76.240780418206498,39.722967959144974,135.4767996808514 -76.234252229754702,39.722968058451222,135.46947143226862 -76.234233998271066,39.722968105407894,135.469451121985912 -76.225166104486604,39.722991460484224,135.459349100477993 -76.136556907945248,39.723219679388919,135.360779042355716 -76.028587287196672,39.723497759716423,135.241026440635324 -76.014035866959887,39.723584877711588,135.225076925009489 -75.811030980602183,39.723572567219101,134.999343413859606 -75.80052567533572,39.723548655295133,134.987624193541706 -75.7893213490904,39.723477751007223,134.974982588551939 -75.789357051121115,39.701954607207696,134.905486032366753 -75.789357047566668,39.701698617398606,134.904658772051334 -75.789619803725046,39.683579336782323,134.846383085474372 -75.789577786290508,39.682410383697352,134.842557256110013 -75.788411152688639,39.639125119053467,134.701247023418546 -75.787851041244423,39.63224539821293,134.67835836019367 -75.780342252292982,39.538196148302767,134.365247304551303 -75.7801997360679,39.536411100230652,134.359297698363662 -75.767649600879579,39.37921770774846,133.834374899044633 -75.767623973682731,39.378896720883382,133.833300997503102 -75.761060041133675,39.298500538885655,133.563905368559062 -75.756916974969855,39.247755521645075,133.393600110895932 -75.756907878439591,39.247644105689766,133.393225958570838 -75.748624419947134,39.145035581450209,133.048334419727325 -75.748621251450217,39.144996332756143,133.048202333040535 -75.74707389704578,39.122009278840686,132.971165411174297 -75.746745815098194,39.116626500206792,132.953158119693398 -75.726777954353054,38.870997684900658,132.12337907217443 -75.726513931567297,38.869853733916628,132.119311769492924 -75.725009617737868,38.849483581058173,132.050446132197976 -75.724950601450729,38.848384626597223,132.046754714101553 -75.723830389767187,38.834859190405389,132.000873437151313 -75.723558340194529,38.831711321752323,131.990180348977447 -75.723547429762561,38.831562699749014,131.989677635021508 -75.722976218309569,38.823781651845664,131.963355774991214 -75.708297559644876,38.637070670214591,131.329181104898453 -75.708291332399796,38.636991460260212,131.328911459073424 -75.707530190418737,38.627836844512203,131.297697613947093 -75.707180117022602,38.623008046824872,131.281288136728108 -75.706805040316894,38.61798025759402,131.264188545756042 -75.706719017809547,38.616452321427396,131.259022987447679 -75.704925669234655,38.593779273199608,131.181768694892526 -75.704389562904382,38.586833564800635,131.158108943141997 -75.702509189949311,38.56245058897651,131.075021741911769 -75.702408957922387,38.561147813872317,131.070581316016614 -75.701122914712045,38.544432346304369,131.013595351949334 -75.699720604032962,38.523717215989493,130.943157208152115 -75.697631211204296,38.498184291653665,130.855883085168898 -75.697312148718424,38.494090464074631,130.84190290607512 -75.69446364752622,38.461846825523764,130.731367445550859 -75.666526833846277,38.460619101269735,130.695878941565752 -75.663784753716229,38.460478129168159,130.692328833974898 -75.631397817678931,38.459623424879325,130.653116084635258 -75.599008878789135,38.458574728397593,130.613289552740753 -75.594021730442506,38.458123787128578,130.606195763684809 -75.590246621042866,38.458005822305914,130.60157083440572 -75.584540459778339,38.458143862334737,130.595635150559247 -75.57504918292959,38.457710956407617,130.583556929603219 -75.560872772421362,38.457299087128142,130.56630430277437 -75.56015075157687,38.45728309357763,130.565442393533885 -75.534701016231324,38.456678322528148,130.534936203621328 -75.523667696879485,38.45637742334236,130.521588416770101 -75.522241656104882,38.456377434755218,130.519993198104203 -75.503898125906275,38.455940599657119,130.4980230005458 -75.501079044301676,38.455864625359141,130.494618085213006 -75.480086438121248,38.455419811669131,130.469674522057176 -75.429662982143114,38.454392257030719,130.409957526251674 -75.425765869823579,38.454331290659425,130.405407211743295 -75.411818467915793,38.454121410637427,130.389153975993395 -75.395720003987933,38.453881548959899,130.370410162955523 -75.394496968381532,38.453835560618053,130.368893901817501 -75.371987323802117,38.453828740279107,130.343796977773309 -75.356729885599293,38.453729865896527,130.326481251046062 -75.342182468453984,38.453691983275277,130.310166826471686 -75.342179247997095,38.453691964274114,130.310163181275129 -75.26128014407891,38.453214646163566,130.218679355457425 -75.253652924209021,38.453119710646213,130.209899020381272 -75.186340988938255,38.452736260253403,130.134012931957841 -75.142820742542128,38.452919597127448,130.086471339687705 -75.090574275751251,38.452978069697494,130.028943345881999 -75.08920623817788,38.452979600752329,130.027438272722065 -75.086739167083962,38.452982361801801,130.024724241346121 -75.071280730243018,38.452999662245929,130.007723108865321 -75.070833676842611,38.453000162568721,130.007231562398374 -75.067251574154994,38.453015190215552,130.003330011852086 -75.054407205014357,38.452998292256339,129.989107358269393 -75.053434177051827,38.4529972999729,129.988031109794974 -75.050192047621721,38.452988247130079,129.984426084905863 -75.049863074343691,38.452987328553618,129.984060311689973 -75.050288859967864,38.450242662341232,129.975360142067075 -75.05036565538569,38.449747629688574,129.973790906369686 -75.050506267529045,38.448841226623472,129.970917594619095 -75.052921161496272,38.433274525506995,129.921561372466385 -75.052932065719233,38.433204235557689,129.921338469721377 -75.053090680831858,38.432181783231911,129.918096017092466 -75.053129529207439,38.431931361873751,129.917301858775318 -75.053149588189541,38.431802059233995,129.916891800239682 -75.053291948012657,38.430884390488821,129.91398155130446 -75.053350208881312,38.430508833839966,129.912790512666106 -75.053390885784225,38.43024662557481,129.911958939395845 -75.053395252222302,38.430218478983399,129.911869673989713 -75.053429128927093,38.430000105623236,129.911177116446197 -75.053670280533296,38.428445613036594,129.906247031874955 -75.053727882218922,38.428074305565858,129.905069403350353 -75.053744335059449,38.427968248555487,129.904733031988144 -75.054023851980162,38.426166448503061,129.899018325842917 -75.054061040382223,38.425926727543356,129.898257990367711 -75.054201298549486,38.425022606352563,129.895390314981341 -75.054232665901623,38.424820408589383,129.894748980179429 -75.055514772389529,38.416555794547037,129.868532467633486 -75.05676174878856,38.411890259462893,129.854307799600065 -75.056923383212734,38.41128550778393,129.852463868446648 -75.057106076945246,38.410601963162691,129.850379665382206 -75.058212013306886,38.4064641263816,129.83776225708425 -75.062293644194355,38.391192793858927,129.791185474954545 -75.069034323492588,38.370443309967868,129.729194389656186 -75.069085189748876,38.370286731010474,129.728726486675441 -75.069327776237401,38.369539989610338,129.726494982838631 -75.069471607883443,38.369097240118371,129.725171888247132 -75.06948269849083,38.369063100477035,129.725069866515696 -75.070740814275567,38.365190307966735,129.713496008887887 -75.070768989740742,38.365103576895358,129.713236797600985 -75.072252378740188,38.360537337591886,129.699589262716472 -75.072555537068922,38.359604141062313,129.69679996278137 -75.072610349725664,38.359435414109548,129.696295636706054 -75.072617171563266,38.359414414801584,129.696232872083783 -75.073034502412469,38.358129766939626,129.692392978817225 -75.07339952827374,38.357006126806795,129.689034260809422 -75.074775713478076,38.353734298651915,129.679599993862212 -75.075455556734624,38.35211799708928,129.67493917234242 -75.085072183326361,38.32925483261252,129.608993071131408 -75.08609406689655,38.326825343300051,129.601983619853854 -75.086250737394948,38.326452865151332,129.600908931344748 -75.086391444168626,38.326118340151119,129.599943740293384 -75.086441508596451,38.325999313878981,129.599600315093994 -75.088389545392701,38.324498361009837,129.596725594252348 -75.093066039983498,38.324981085619306,129.603514628484845 -75.094811737886502,38.325161282840916,129.606049093417823 -75.103870846433367,38.313254707170991,129.576175424270332 -75.104681058747232,38.311079280804442,129.569781670346856 -75.117760771518789,38.275960151740328,129.466521793976426 -75.144152846595802,38.222208187233718,129.315391764976084 -75.156275006395632,38.19430617483971,129.235125469975173 -75.159893838919615,38.185976577812667,129.211154389195144 -75.162564082412004,38.178117397620774,129.187706691212952 -75.178317681342591,38.131750703034463,129.049289412796497 -75.179868836369891,38.128535321782806,129.040195378474891 -75.193848297628207,38.099557369550674,128.958210273645818 -75.194719721491637,38.09775099962733,128.953098038211465 -75.196305269069313,38.095319834505965,128.946676614694297 -75.205607925478958,38.081055807468182,128.908995606005192 -75.205834526981945,38.0807083529577,128.908077628351748 -75.20743894462214,38.078248253896469,128.901577840559185 -75.217040927867089,38.063525260910161,128.86267260927707 -75.225264476653237,38.052651728160669,128.835194943472743 -75.228516512630875,38.048351745237767,128.824327545240521 -75.236784361301048,38.037419637483083,128.796695522964001 -75.23698891732127,38.037149164651836,128.796011813916266 -75.238462220362948,38.035201099549909,128.791087384335697 -75.242741668929227,38.029542627308132,128.776782746426761 -75.24319023896706,38.028949508578592,128.775283266790211 -75.24321987874491,38.02894687115581,128.77530744113028 -75.251282046005628,38.028229479023352,128.781884178519249 -75.257000944116086,38.027720596925988,128.78655082732439 -75.261560056550735,38.027314915502103,128.790271936915815 -75.263012650428266,38.027185660002139,128.791457690298557 -75.264703567248858,38.027035197919567,128.792838086374104 -75.378779126384217,38.01688446278542,128.886205446906388 -75.399767522956353,38.015016861228538,128.903435478918254 -75.42973934510205,38.012593726485889,128.928889928385615 -75.436885541153543,38.01202169409126,128.934983127750456 -75.625275690648081,37.995949878140451,129.092941061593592 -75.627063597697259,37.994239097990793,129.089196966961026 -75.631156452025508,37.990322801602005,129.080625898204744 -75.636437238593004,37.985269818131044,129.069566858001053 -75.640720952589106,37.981170895434595,129.060595674440265 -75.64548022421242,37.976616929785393,129.050628325901926 -75.645526408627745,37.976572737678516,129.050531599670649 -75.645599641536521,37.976502663898899,129.050378227606416 -75.646031018661034,37.976089895568585,129.049474781379104 -75.646186355730379,37.975941259446977,129.049149452708662 -75.647223781702863,37.974948586071733,129.04697673022747 -75.647442215213232,37.974739575370691,129.046519254334271 -75.66189142159584,37.960913680571174,129.016256497241557 -75.670646427102611,37.952536349627294,128.997918733395636 -75.665992320079084,37.958022005840029,129.011147231794894 -75.664030371359999,37.962934963114911,129.02548936009407 -75.665955057845267,37.964141088587617,129.031731964088976 -75.670309869305555,37.966870077992368,129.045856289565563 -75.672616683135828,37.968315667669962,129.053338044323027 -75.686931102152968,37.969346510267549,129.07300968747586 -75.687461497291565,37.969522594610581,129.074203381314874 -75.709115665495659,37.976711499029697,129.122941249981523 -75.714086986676264,37.978361913497302,129.134131392464042 -75.723022199220665,37.97515497768191,129.133449302054942 -75.723599188803362,37.973049061987702,129.127008247189224 -75.725629308584459,37.971493354881332,129.124067135155201 -75.726266994755719,37.971004687701871,129.123143303208053 -75.728889287219815,37.968995190995166,129.119344365783036 -75.736062866860749,37.966331550938612,129.118500057607889 -75.738451699020459,37.96544454760754,129.11821929551661 -75.738934524504145,37.965265268451901,129.11816256865859 -75.751181939586559,37.970611945041078,129.150062508881092 -75.760029213072272,37.972401798909907,129.16612581256777 -75.777711733976815,37.973782603674074,129.19083851762116 -75.779913885929147,37.973954566813809,129.193916882388294 -75.78438304821232,37.974303557794805,129.200164746493101 -75.784753938193887,37.974332520103523,129.200683275237679 -75.785945550389883,37.973452468588597,129.199071837589145 -75.786148332874163,37.973302705911571,129.198797614313662 -75.786211654172476,37.973255940693221,129.198711984790862 -75.78642609717572,37.973097566273715,129.198421994224191 -75.789289908573878,37.970982531227442,129.194549301639199 -75.790882301966747,37.969806487360955,129.192395974881947 -75.807086689989134,37.957838922600871,129.170485313981771 -75.807868924672221,37.957261212157789,129.169427702203393 -75.808694811972146,37.956651262575974,129.168311085551977 -75.820027819978307,37.948281399676098,129.15298945363611 -75.821713334857122,37.947036582025426,129.150710863992572 -75.823840439881437,37.945465633047213,129.147835358045995 -75.825181506732264,37.94447520353242,129.146022477187216 -75.825387281288855,37.944323231097947,129.145744312554598 -75.830840809773591,37.940295590300671,129.138372383080423 -75.831094110590016,37.939767137135071,129.13687950745225 -75.832646398278982,37.936528650374726,129.12773044873029 -75.832775536948205,37.936259232616344,129.126969288103282 -75.833353814145539,37.935052791921272,129.123560789972544 -75.833732834219376,37.934851959764949,129.123314978554845 -75.844707899807815,37.929036578896039,129.11619879771024 -75.846931734998009,37.927858230711649,129.114757284522057 -75.847560673699618,37.927524973651742,129.114349622279406 -75.848147514520704,37.927214023083572,129.113969258032739 -75.848413206879883,37.927073240119753,129.113797050900757 -75.84875763846928,37.926890735436174,129.11357381567359 -75.848873434470619,37.926829378367756,129.113498763181269 -75.849073522724623,37.926723357187804,129.113369082100689 -75.850043064244019,37.926209624203658,129.112740714102983 -75.861667424254094,37.920050200358475,129.105208912864327 -75.882854341719082,37.914303231285274,129.109965120442212 -75.884648685269923,37.913816514093796,129.110368684865534 -75.885973027723708,37.913457285093301,129.110666614957154 -75.893627309540449,37.918588006722523,129.13668549247086 -75.896732144779179,37.92314611263145,129.155587752349675 -75.896881182024003,37.923364909280259,129.156495044007897 -75.899257574122643,37.926853611904441,129.170961253345013 -75.895006526277299,37.932529405789211,129.185243516229093 -75.894596436318977,37.935618258632012,129.19518434163183 -75.893752037333542,37.941978385770149,129.215650774538517 -75.891812742891545,37.956585414104005,129.262643409892917 -75.899898222909101,37.976251518329711,129.338067037053406 -75.883710128911801,38.004731445499445,129.415472933091223 -75.876239032132943,38.013701126875098,129.437143644317985 -75.876341243395515,38.029976439608575,129.491989329457283 -75.874132259391274,38.036110198703142,129.510097823105752 -75.870454706582663,38.037142631540398,129.50938668102026 -75.866853674748853,38.038153581946567,129.508690812624991 -75.865589871318491,38.038508380973134,129.508446707390249 -75.859832419923009,38.040124722642908,129.507335379719734 -75.858448871453433,38.040513138781428,129.507068501785398 -75.857796188180572,38.040318457517479,129.505672267638147 -75.856409402858688,38.039904809534278,129.502705648541451 -75.855652975924954,38.039679183786113,129.501087510958314 -75.853597112963939,38.039065964453748,129.49668968655169 -75.851472647132766,38.038432282372192,129.492145192809403 -75.851284661029396,38.037612549671557,129.489175791852176 -75.850921600754788,38.036029388071547,129.483440787531435 -75.848863543411767,38.036105401350071,129.481357675977051 -75.84865723527929,38.036203083559457,129.481451652012765 -75.836958934137328,38.041741963137021,129.486782612279058 -75.835584712501088,38.042392625832626,129.487409126013517 -75.834597847103069,38.04285988415775,129.487859077751637 -75.834358984041629,38.042972980385713,129.48796798940748 -75.830964393887712,38.044580241632225,129.489515979774296 -75.830316130185395,38.044887179754035,129.489811634644866 -75.830217255575604,38.044981953387193,129.49001794680953 -75.827433175348645,38.047650559606943,129.495827175676823 -75.826928042236844,38.048134741547102,129.496881172992289 -75.813853865481974,38.060666646826142,129.524160443805158 -75.81431913186303,38.061215746994328,129.526533661410213 -75.814408979931983,38.06132178429209,129.526991953141987 -75.820356224875553,38.068340630543112,129.557325230911374 -75.820420322556757,38.068416277632352,129.557652133516967 -75.820532155791554,38.068548261481524,129.55822248570621 -75.830958482956177,38.070854359508729,129.577803993597627 -75.832044815232948,38.071094634791265,129.579844359308481 -75.833683977182929,38.071457185097827,129.582923112437129 -75.840876535381582,38.073048037160042,129.596433272585273 -75.841998897863064,38.073296281610816,129.59854157269001 -75.842147718363591,38.073329197771137,129.59882112685591 -75.845206925371045,38.074005834040122,129.604567851871252 -75.848121987528927,38.073023067394658,129.604577246122062 -75.853246657530917,38.07129536675513,129.604594487696886 -75.859886278036896,38.069056924745205,129.60461821500212 -75.859968610644813,38.068941606095215,129.604324384592474 -75.860510707189803,38.068182321975662,129.602389733307064 -75.861014289745711,38.067476982233934,129.600592510774732 -75.860659627365337,38.065807223188351,129.594580250792205 -75.860382584056069,38.064502896598334,129.589883625507355 -75.860223060083769,38.063751853882671,129.58717920165509 -75.859946821976578,38.062451318196999,129.582495995797217 -75.859823184072681,38.061869227955384,129.580399854108691 -75.861571529367481,38.061694003688544,129.581797820515931 -75.861888338434966,38.061662252159302,129.582051151432097 -75.86197526219533,38.061653540406333,129.582120658829808 -75.862472113722887,38.061603744496388,129.582517965696752 -75.867136099081151,38.061136306270505,129.586247960105538 -75.868209499297535,38.06102872696713,129.587106521241367 -75.8684530508054,38.061004317523974,129.587301328778267 -75.869841089610617,38.060865204222125,129.588411625474691 -75.872445525573937,38.060604180044258,129.590495110489428 -75.875131619880932,38.062022098778002,129.598312174901366 -75.881457988113908,38.076744428041884,129.654953951016068 -75.872337243117727,38.090916020315134,129.692171824164689 -75.87122521125012,38.092643868470397,129.696708908304572 -75.866639528082246,38.099768991847398,129.715417001396418 -75.866088472376035,38.100625208854758,129.717664970085025 -75.864752847928543,38.102700469771264,129.723113351501524 -75.843546402491626,38.114843129264081,129.739787444472313 -75.838505267730724,38.115485142705943,129.736221103928983 -75.838146072541946,38.116200125895574,129.738212789408863 -75.838106905641453,38.116278088174539,129.738429964520037 -75.837990729865894,38.116509337727024,129.739074134267867 -75.828935444374849,38.13453401406472,129.789274546317756 -75.828834100839316,38.134735739836827,129.7898362679407 -75.82861624011781,38.135169394751941,129.791043805889785 -75.828654378579401,38.1351956873565,129.791175250895321 -75.844804843104612,38.146329796043162,129.846834835596383 -75.85086201261727,38.146144755188729,129.853086623363197 -75.855450290683564,38.144298272617839,129.85210179630667 -75.859610382137063,38.142624107221238,129.851209482178092 -75.860483235783136,38.142272840575352,129.851022334769368 -75.866943346259532,38.136617026314596,129.839389733038843 -75.869579414541377,38.136112026363207,129.840689208358526 -75.870999595265801,38.136415066765572,129.843318066559732 -75.871980935785771,38.136624466752913,129.845134628005326 -75.881650357284954,38.138687743144999,129.863034935668111 -75.881921604563601,38.138745622316279,129.863537107594311 -75.901299401472841,38.142880487079985,129.899416660889983 -75.902002479115922,38.142556256705319,129.899128681048751 -75.902947942677386,38.142120247954779,129.898741444572806 -75.904386292709475,38.141456940318257,129.89815238956362 -75.906543124053485,38.14046229877092,129.897269214503467 -75.907441432147124,38.140048036174626,129.896901417523623 -75.908208731712776,38.13969418930138,129.896587281487882 -75.92474197215094,38.132069741565282,129.889822971075773 -75.933682675114426,38.127946658570188,129.886168588884175 -75.937718286918141,38.126085601058818,129.884519911371171 -75.938034224645207,38.125939903625863,129.884390861727297 -75.938000375074239,38.124807941508941,129.880556443706155 -75.937960651792267,38.123479556828904,129.876056528650224 -75.937811039807301,38.118476388106295,129.859106954187155 -75.937608028876653,38.111687506432389,129.836104525253177 -75.939429080741334,38.111707490943822,129.838244278915226 -75.946242313958322,38.114822305112853,129.856447897851467 -75.950502499603957,38.119858059035046,129.878187142312527 -75.957373784251786,38.132845201786793,129.929556634277105 -75.957379544198503,38.132856088433655,129.92959968931973 -75.959731777719185,38.13730195174665,129.947181501425803 -75.960442294484196,38.138644871309928,129.95249192789197 -75.960562030008191,38.138871178675871,129.953386818990111 -75.953356679005537,38.160242194432541,130.016802444122732 -75.952371205919931,38.163165100127692,130.02547341492027 -75.952219113105514,38.163616206263214,130.026811599731445 -75.950697774501293,38.166214860029434,130.033786025829613 -75.948480089619622,38.170002968202454,130.043952169828117 -75.948433470474043,38.170465148865283,130.045447250828147 -75.948362618201003,38.17116757595236,130.047719459980726 -75.948226114963418,38.172520864537226,130.052096963860095 -75.949075613436634,38.17350696666103,130.05636615678668 -75.949166454036487,38.173612414888801,130.056822676211596 -75.94951256653809,38.174014184030931,130.058562052436173 -75.949655329940668,38.174179904510538,130.059279501438141 -75.952758048202227,38.177781555555896,130.074871470220387 -75.952918318459126,38.177967598080244,130.075676841661334 -75.952796774755839,38.178522622418818,130.077397275716066 -75.952529531126359,38.179742979501484,130.081179990433156 -75.952512330920968,38.179821523534976,130.081423448398709 -75.950520939214073,38.181765585569913,130.085668172687292 -75.950366496199436,38.181916357916968,130.085997373796999 -75.949837729450408,38.182432557397085,130.087124451063573 -75.949684037965881,38.182582596075946,130.087452046573162 -75.947532192879635,38.184683297979561,130.092038708738983 -75.946365483483319,38.185822278043617,130.094525529071689 -75.943321186272669,38.188794221057222,130.101014309562743 -75.942394025189984,38.189080150532476,130.100917337462306 -75.93487834783339,38.191397928659697,130.100132402963936 -75.889017861750702,38.205540955984617,130.09538687672466 -75.88716180254373,38.205036992051689,130.091593094170094 -75.885884433709094,38.202221370803926,130.080716983415186 -75.885547710743907,38.20147915421672,130.077849851921201 -75.8854890469987,38.201466664298977,130.077741452492774 -75.87923707513275,38.200135576181033,130.066189442761242 -75.878695497362258,38.200020270521684,130.065188792534173 -75.878194815292659,38.200114409741552,130.064935836009681 -75.871919723934539,38.201294264661449,130.061766313388944 -75.869414586935122,38.201765285405408,130.060501385480165 -75.86504814301307,38.202586272703648,130.058297179639339 -75.863387830902653,38.203487145256936,130.059430341236293 -75.857904295944721,38.206462469058799,130.063173378817737 -75.855350424898944,38.207848179804188,130.064916921779513 -75.853201573553036,38.209014129982556,130.06638409383595 -75.849416427539794,38.211067921036651,130.068968783132732 -75.84824279724296,38.211704723790618,130.069770280271769 -75.847975470570475,38.211849773182841,130.069952845573425 -75.847656727142322,38.212022720910454,130.070170530118048 -75.84732076376703,38.212205012048642,130.070399979129434 -75.852340112467346,38.228159303217346,130.129489902406931 -75.852471889179427,38.228277683968031,130.130035414360464 -75.86010403423667,38.235133971744979,130.161628235131502 -75.865572902236835,38.240046893664626,130.184264183044434 -75.871255289123795,38.245151628875732,130.207782030105591 -75.871262869932522,38.245158439045767,130.207813403569162 -75.873409319300166,38.245694128224159,130.212038894183934 -75.875598007098617,38.246240358842954,130.216347637586296 -75.883817920207818,38.24617571348589,130.225453587248921 -75.884380255692449,38.246171291008125,130.226076622493565 -75.886145325847565,38.245120920693246,130.224565771408379 -75.887786673533,38.244144176012867,130.223160890862346 -75.888354489831443,38.243806275911808,130.222674892283976 -75.889458360807339,38.243149376637867,130.221730107441545 -75.890301359851875,38.241226450371244,130.216254882514477 -75.886621145375628,38.232732835745409,130.183667190372944 -75.886854473120181,38.232592789898696,130.183463386259973 -75.891614248393822,38.229735921079048,130.179306144826114 -75.895528599391255,38.230166281348509,130.185188058763742 -75.896634398098868,38.2302878575248,130.186849772930145 -75.896824672147488,38.230444050869082,130.187588272616267 -75.900726886081785,38.233647324506819,130.202733313664794 -75.900985567900705,38.233859672846712,130.203737271949649 -75.901607064940848,38.234932223599607,130.208030523732305 -75.902326734191774,38.236174195397666,130.213001816533506 -75.906798158370989,38.24389077173479,130.243886264041066 -75.906962045827569,38.244173601100854,130.245018146932125 -75.909395994769739,38.248373997213442,130.261827322654426 -75.909218059670238,38.253770772702168,130.279670462012291 -75.91208921779706,38.259676502343908,130.302673250436783 -75.918243459729382,38.26485123613697,130.326956165954471 -75.920392918111645,38.26578072842608,130.332502829842269 -75.921225101501904,38.266140590263902,130.334650280885398 -75.926439051511295,38.268395263515124,130.348104977048934 -75.939524183632997,38.274053679341627,130.381872061640024 -75.941248928326061,38.273335513338807,130.381431249901652 -75.943409606763595,38.272435828995171,130.38087915815413 -75.943650023333532,38.272335722000918,130.380817738361657 -75.94929298735083,38.269986049651067,130.379376638680696 -75.952307595435798,38.268730797757655,130.378607198596001 -75.952444480674103,38.268673800148093,130.378572268411517 -75.952459152859447,38.268661107252001,130.37854652479291 -75.952510464840657,38.268616717297498,130.378456494770944 -75.952594747569592,38.268543804375035,130.378308611921966 -75.955430531907027,38.2660905695789,130.373332990333438 -75.955515044100082,38.266017458147367,130.373184707015753 -75.955648631832801,38.265901891505202,130.372950316406786 -75.955684047149504,38.265871253742645,130.372888177633286 -75.955771068257519,38.265795971850736,130.372735492885113 -75.955855539198737,38.265722896106169,130.372587279416621 -75.955855522476867,38.26572238902034,130.372585567645729 -75.955757210367636,38.262741102903355,130.362510699778795 -75.955529416277599,38.255833312732939,130.339163936674595 -75.95550857976977,38.255201451590438,130.337028196081519 -75.95548938461107,38.254619363883229,130.335060660727322 -75.951002746428799,38.2514245055904,130.319281729869545 -75.950405109626729,38.25099893864769,130.317179872654378 -75.949743168365842,38.250527581599712,130.31485185213387 -75.948823348331786,38.250601023946622,130.314052096568048 -75.946624818758337,38.250776563905468,130.312140662223101 -75.945447050848287,38.250870601907927,130.311116768047214 -75.943978500102901,38.250004533643668,130.306552711874247 -75.943411972606825,38.24967042773217,130.304792015813291 -75.943210214933671,38.249551442454802,130.304164976812899 -75.941643913771742,38.248627726516524,130.299297084100544 -75.942137100880132,38.247936589197899,130.297546689398587 -75.9437511727714,38.245674678256307,130.291817959398031 -75.947360972147536,38.240616015933377,130.279005163349211 -75.949143958812741,38.24022968388406,130.279739699326456 -75.952103493835693,38.239588420965404,130.280959193594754 -75.956111193187994,38.238720045030711,130.282611107453704 -75.9567801804711,38.238575090929317,130.282886912114918 -75.959285502858009,38.238032245399836,130.283919934183359 -75.959741024996617,38.237933544267314,130.284107786603272 -75.962919305293937,38.237244884290959,130.285418673418462 -75.963058773692879,38.237214664708148,130.285476207733154 -75.963676831650474,38.237080745815049,130.285731173120439 -75.96387809341951,38.237037137035387,130.285814202390611 -75.971461234142211,38.235394045472546,130.288943669758737 -75.972434730638597,38.235183111250926,130.289345578290522 -75.973159631839209,38.235026041892041,130.289644869044423 -75.971347308491872,38.236769306478024,130.293412854894996 -75.971062963771317,38.23704281621503,130.29400403238833 -75.970330547667416,38.237747323531615,130.295526780188084 -75.970273756919994,38.237801950262089,130.295644850470126 -75.965475206663214,38.242417651304407,130.30562125518918 -75.965066503186151,38.242810781097539,130.306470957584679 -75.964916722017165,38.243323952422799,130.308016415685415 -75.963182533496195,38.249265525961029,130.32590863481164 -75.964400623289876,38.253518338034745,130.341509775258601 -75.985222387954238,38.266879610440284,130.409838879480958 -75.986763578809004,38.278190124629077,130.449377329088748 -75.988763088755775,38.28101148643551,130.461075070314109 -75.989679977574255,38.282305240985266,130.466438923031092 -75.991333792475402,38.284638817867915,130.476113471202552 -75.992111243892936,38.285618114193589,130.480268174782395 -75.992635458347692,38.28627842720833,130.483069533482194 -75.993617465062783,38.28751538625864,130.48831719905138 -75.993777947864032,38.287717534217947,130.489174777641892 -75.99434034083427,38.288425937799445,130.492180033586919 -76.00119036230997,38.297054388001818,130.52878107316792 -76.004959425534565,38.301801989796665,130.54891727399081 -76.008067542155771,38.305717047502966,130.565520941279829 -76.008203380951784,38.305888153284883,130.566246570087969 -76.008324553673788,38.306040785330687,130.566893848590553 -76.008427079913545,38.306073991515653,130.567121309228241 -76.012194875353515,38.307294304601406,130.575480486266315 -76.01240752931831,38.307363178939063,130.575952284038067 -76.01724084449495,38.308928592410517,130.586675742641091 -76.017263999897594,38.308969590509044,130.586838913150132 -76.017463542425546,38.309322893120182,130.588245033286512 -76.01825807987835,38.310729671712217,130.593843815848231 -76.018313899742054,38.31082850429582,130.594237149693072 -76.010326658705438,38.313719253331492,130.594797262921929 -76.00959669336261,38.313983443005753,130.594848563894629 -75.992099725427138,38.315833001330184,130.581124156713486 -75.991434059867942,38.315903367079045,130.580602238886058 -75.986974054866238,38.316374822430689,130.577105757780373 -75.985732908533592,38.316506020731332,130.57613287307322 -75.985381777212453,38.316543137895749,130.575857645832002 -75.984135050226342,38.3166749261121,130.574880462139845 -75.984119986579316,38.316676518450443,130.574868652038276 -75.983471895466906,38.316745026449851,130.574360698461533 -75.982293955545146,38.316869543366771,130.573437508195639 -75.970525858669404,38.321766919205949,130.576409306377172 -75.970238678449505,38.321886431263366,130.576481886208057 -75.969828743294514,38.32222073937902,130.57713180128485 -75.965185588578379,38.326007299980176,130.5844931518659 -75.96289263143403,38.334293972417477,130.609537332318723 -75.962894144810292,38.33755142945185,130.620405989699066 -75.962894232482896,38.337740139499893,130.621035602875054 -75.962896747065486,38.343152602492843,130.63909256644547 -75.966315355453503,38.350150471531528,130.666312910616398 -75.967346306341099,38.352260821256138,130.674520912580192 -75.969829698377225,38.357344308497844,130.694291059859097 -75.970109830832186,38.357917737798225,130.69652103818953 -75.971789569216327,38.361356151261553,130.709891884587705 -75.971968700178977,38.361722831167548,130.711317718960345 -75.972490049191705,38.362790029177347,130.715467455796897 -75.972859786850464,38.363546879739353,130.718410364352167 -75.973123041820841,38.364085760936696,130.720505693927407 -75.97322999261165,38.364304688503474,130.721356943249702 -75.974825404863665,38.367570486910424,130.734054751694202 -75.980676664816684,38.369347355623987,130.746621580794454 -75.981129635560464,38.369484910534716,130.747594459913671 -75.981778280232632,38.369681886302395,130.748987603001297 -75.996656068220531,38.374199866359781,130.780943742953241 -76.002789452015307,38.376062408390688,130.794118792749941 -76.003106447563198,38.37615867132633,130.794799745082855 -76.003232325113132,38.376196896918451,130.795070147141814 -76.005896610254197,38.373764507982521,130.789992374368012 -76.007899402030617,38.371936036820429,130.786175301298499 -76.012819415869586,38.362302398890591,130.759660941548645 -76.013099378003801,38.358797542891281,130.748296636156738 -76.011983270429027,38.356564396471974,130.739583584479988 -76.011687244057285,38.355972096726063,130.737272541970015 -76.011205316763679,38.355007840021621,130.733510124497116 -76.011167272577097,38.354931719904577,130.733213109895587 -76.011316374697415,38.354452437480489,130.731784811243415 -76.0113872162012,38.354224720479998,130.73110619187355 -76.017632184752372,38.334150535256065,130.671269382350147 -76.03489755469198,38.324932780452905,130.660167405381799 -76.042382245294291,38.323884876185041,130.665191533975303 -76.042568758472612,38.323858763154121,130.665316760540009 -76.042609684324134,38.323818764493886,130.665229924954474 -76.044131236301723,38.322331683877778,130.66200156789273 -76.044873971056916,38.321605776072808,130.660425662063062 -76.045599483074483,38.320896700818132,130.658886289224029 -76.046007663436953,38.320497767944168,130.658020215108991 -76.046549820678138,38.319967893491125,130.656869874335825 -76.046915264039725,38.319173697160572,130.654636526480317 -76.047318040028713,38.318298368051728,130.652174985967577 -76.048352137059851,38.31605102646617,130.645854954607785 -76.048943195871431,38.314766513502654,130.642242481932044 -76.049587820700779,38.313365588702027,130.638302510604262 -76.049916019836701,38.312652333042081,130.636296498589218 -76.050158311488744,38.312125775007445,130.634815550409257 -76.050473585738459,38.311440608235642,130.632888493128121 -76.050530820709824,38.311316222877238,130.63253865018487 -76.05055951552049,38.311069930153586,130.631749540567398 -76.050598048516363,38.310739194516486,130.630689877085388 -76.051170767167974,38.305823447355564,130.614939015358686 -76.048098094454687,38.303304577592016,130.60303342435509 -76.040969098251423,38.297460475507812,130.575409258715808 -76.031481997837872,38.289683281936895,130.53864405862987 -76.029184212011032,38.283758722145627,130.516246206127107 -76.028506649147673,38.28201170914415,130.509641020558774 -76.028436809094956,38.281831635107089,130.508960174396634 -76.033544549408191,38.270599315387301,130.477263580076396 -76.033614278036382,38.270445976691903,130.476830819621682 -76.033721169140406,38.270210914811742,130.476167415268719 -76.033947663061724,38.269712837002317,130.474761700257659 -76.034559343269592,38.268367704489684,130.470965287648141 -76.034686760856303,38.268087503273087,130.470174450427294 -76.039884806062801,38.256656596361012,130.437908087857068 -76.040687424957483,38.255817329943788,130.436018426902592 -76.044877054588895,38.251436402129038,130.426154269836843 -76.045200884497021,38.251097786171833,130.425391824916005 -76.045090626759048,38.245172334823806,130.405464534647763 -76.045057780363052,38.243407109539937,130.399527529254556 -76.044764224562243,38.243018925040005,130.397895555943251 -76.038909432162384,38.235276820618473,130.365344170480967 -76.038058748201991,38.234151915820192,130.360614124685526 -76.038052490682972,38.234143641168721,130.360579332336783 -76.037051539043176,38.232820029398027,130.355013620108366 -76.036644397087045,38.232281643861491,130.352749695070088 -76.034404342877522,38.223771578684591,130.321742781437933 -76.034286722675944,38.223324734324109,130.32011450547725 -76.032993113302979,38.218410254942718,130.302205271087587 -76.058959984605536,38.228804609058997,130.366566611453891 -76.070452458437259,38.240180039189198,130.417698033154011 -76.071781390982196,38.243560759187019,130.430511917918921 -76.072104269093387,38.244382140595327,130.433625033125281 -76.074443690655642,38.250333480444318,130.456179431639612 -76.074676073329016,38.250924647201678,130.458419662900269 -76.075441804663157,38.252872619065172,130.465801315382123 -76.075465413397112,38.252932678184102,130.466028897091746 -76.075518877344294,38.253068687068733,130.466544278897345 -76.075557772324217,38.253167633426401,130.466919215396047 -76.075676463625783,38.253469576556014,130.468063361011446 -76.075710781733989,38.253556879642687,130.468394175171852 -76.075847790159813,38.253905420372547,130.469714881852269 -76.083218597622974,38.254340635853843,130.479577270336449 -76.083500424635176,38.254357276564896,130.479954397305846 -76.090748406816985,38.254785239711502,130.489654200151563 -76.09336861384142,38.254939952015128,130.493161169812083 -76.093674209916188,38.254957996189454,130.493570204824209 -76.095640006225423,38.255074068266723,130.496201454661787 -76.1006715130505,38.255371157765758,130.502936767414212 -76.108543852017718,38.264248722044719,130.541573689319193 -76.103500899952877,38.278876150456185,130.584657899104059 -76.112248275898565,38.288668669586556,130.62732785474509 -76.127892929529906,38.285473521162892,130.634524608962238 -76.132037308557045,38.284627103814607,130.636432600207627 -76.138190694591785,38.283370381713986,130.639266668818891 -76.138395218687606,38.283328611223588,130.639360889792442 -76.139431920694207,38.283116882864526,130.639838511124253 -76.139476975226415,38.283107681259672,130.639859272167087 -76.139549455459218,38.283128608492049,130.640011913143098 -76.141626667469566,38.283728362340128,130.644386551342905 -76.141900217215721,38.283807344414178,130.644962654449046 -76.14408005960982,38.284436730752681,130.649553526192904 -76.150351229511671,38.286247406910007,130.662761447951198 -76.150829339886172,38.286385451815022,130.663768442347646 -76.161427722980719,38.292705101149075,130.696967360563576 -76.161791619498786,38.292669736037084,130.697265290655196 -76.162301654524157,38.292620168523001,130.697682870551944 -76.16710787675396,38.292153078072481,130.701618336141109 -76.174372177775481,38.287048394643747,130.692892072722316 -76.17450901843641,38.286952235598207,130.692727701738477 -76.17479770233075,38.286590895581718,130.691852145828307 -76.174965023888461,38.286381462441902,130.691344671882689 -76.175057624459384,38.286265556108027,130.69106381945312 -76.175106024768269,38.28620497438272,130.690917027182877 -76.175437733428453,38.285789781103993,130.689910968765616 -76.175552030906687,38.285646717173378,130.689564310014248 -76.175637030318924,38.285540325062215,130.689306507818401 -76.1810690023581,38.278741231337563,130.672830722294748 -76.181119097462059,38.278678528270795,130.672678772360086 -76.181057294318663,38.278461283955927,130.671883090399206 -76.180076585420522,38.275013992742878,130.659256451763213 -76.179235973174428,38.27205915544981,130.648432736285031 -76.176736771817232,38.263274209142558,130.616248575039208 -76.172207100954196,38.258707371389598,130.595819694921374 -76.165340873728184,38.251784805329514,130.564849792979658 -76.164202251595043,38.250636840561441,130.559713709168136 -76.147249781315807,38.251401946164151,130.542885321192443 -76.13612157505591,38.24759619599407,130.51745437271893 -76.135932257954735,38.247531451184749,130.517021744512022 -76.133496408077633,38.246698411617622,130.511455408297479 -76.131904608965229,38.246154030103085,130.507817914709449 -76.127575136043461,38.244673387845978,130.49792461656034 -76.127404962782364,38.243770438834702,130.49471359886229 -76.126808301948145,38.240604522462398,130.483454582281411 -76.126708051474168,38.240072587734268,130.481562768109143 -76.129404263096021,38.237428728362318,130.475809849798679 -76.129850007621073,38.236991638844415,130.474858755245805 -76.132284138165375,38.234604771738191,130.469664948992431 -76.141020365118933,38.233029766901083,130.474387879483402 -76.151987713741335,38.235939555880492,130.496650006622076 -76.174303513217794,38.248760837132316,130.565003175288439 -76.189598213096275,38.269156858125676,130.650600715540349 -76.190580860168083,38.274209991933958,130.668590540997684 -76.190609214439476,38.274355800058409,130.669109605252743 -76.191485393556704,38.278861436299842,130.68514837231487 -76.198109597991049,38.28694243707875,130.719691433012486 -76.198647488879601,38.287598621036345,130.722496119327843 -76.198825575643838,38.287815872676525,130.723424692638218 -76.202546137651396,38.292354661400857,130.742823486216366 -76.202557732050039,38.292368805641793,130.742883936502039 -76.203288584920244,38.293260387815629,130.746694357134402 -76.203582821125366,38.293619332503482,130.74822838511318 -76.20385165228312,38.293947285060966,130.749629953876138 -76.204384586540471,38.294597422322283,130.752408414147794 -76.204864040409191,38.29518231777746,130.754908022470772 -76.212401320477412,38.304377197900976,130.794199506752193 -76.217221158878473,38.306743960223848,130.80760807916522 -76.21857190922816,38.307407240766693,130.81136579811573 -76.219006216655202,38.307620505687154,130.81257402151823 -76.227331839707361,38.311708769493016,130.835735459811985 -76.227363558610762,38.311709357552445,130.835773735307157 -76.244853340367854,38.312033613081162,130.856883733533323 -76.255429703111162,38.316840325719689,130.885022102855146 -76.259145851125339,38.320093159321935,130.900121072307229 -76.267559367349946,38.341221207092865,130.980153962038457 -76.26514339015614,38.348154936983306,131.000479031354189 -76.260242989536863,38.343338556922163,130.978824371472001 -76.260218186884487,38.343314179527333,130.978714763186872 -76.260192383359296,38.343322104166283,130.978711600415409 -76.259339783575726,38.343583949996869,130.978607098571956 -76.258855045710447,38.343732820066201,130.978547696955502 -76.239408681223694,38.349705082237421,130.976171602495015 -76.239434785011611,38.350073888293352,130.977429808117449 -76.239497306788394,38.350957224071713,130.9804433202371 -76.239567715290832,38.351951987047734,130.983836888335645 -76.239967044819409,38.352456962688876,130.98597573582083 -76.240012452955412,38.352514383943614,130.986218946054578 -76.240558155673313,38.35320445707891,130.989141745492816 -76.240858840329281,38.353584690485043,130.990752204321325 -76.241153215709375,38.353956945441382,130.992328857071698 -76.241367059147464,38.354227363027434,130.993474183604121 -76.248306931673,38.363003239384476,131.03064008615911 -76.249723264467036,38.36479427537369,131.038224341347814 -76.25062321269823,38.365932312758765,131.04304329212755 -76.257745447493335,38.368430150275096,131.059512814506888 -76.258435996157658,38.368420392888332,131.060271038673818 -76.258979182526858,38.368412717716772,131.06086747162044 -76.273960904084575,38.368201027390505,131.077321742661297 -76.279680430811638,38.384636365095915,131.138567568734288 -76.279770942423511,38.384896454603634,131.139536595903337 -76.281707046752743,38.39045994429901,131.160263321362436 -76.282171987544118,38.391795974207426,131.165240286849439 -76.282278042186221,38.392100727363804,131.166375525295734 -76.282354765258034,38.392321194830387,131.167196789756417 -76.282655948511575,38.393186659511834,131.170420683920383 -76.283102979347092,38.394471224289084,131.175205627456307 -76.283229518132359,38.394834839622497,131.176560055464506 -76.281509601739515,38.404859435392162,131.207930436357856 -76.283978808736649,38.415227982692315,131.245233901776373 -76.291640507496368,38.426119192948711,131.290211608633399 -76.301145618340755,38.439630838778122,131.345996854826808 -76.302447679773152,38.441481737010001,131.353637401014566 -76.312560482044859,38.451980219757559,131.400094036012888 -76.312727112668981,38.452153205314126,131.400859435088933 -76.321803495009078,38.461575741273514,131.442547344602644 -76.332344079634495,38.475036451660166,131.499309512786567 -76.332429499630393,38.475145536105082,131.499769444577396 -76.33251998054935,38.475261083532942,131.500256625935435 -76.332719315976902,38.476036863606261,131.503059831447899 -76.332950938034003,38.476938297828617,131.506317012012005 -76.337321364929593,38.493947266441374,131.56776293553412 -76.3282182114188,38.501833013113306,131.583493706770241 -76.319014924703339,38.499911168573178,131.566579566337168 -76.290467190164534,38.505618165375076,131.552838591858745 -76.284555025642575,38.50586920340583,131.546908684074879 -76.282720947128269,38.503877301265625,131.538203014060855 -76.264927458962902,38.50516439355993,131.522127764299512 -76.263092333865515,38.506586063814751,131.524746705777943 -76.261309393400722,38.507967306669059,131.527291206642985 -76.248852798022355,38.524730917182815,131.568662478588521 -76.248259255771487,38.525529683694685,131.570633505471051 -76.245355347828394,38.538677161383291,131.610911768861115 -76.249844502715675,38.540734039182134,131.622857203707099 -76.251224610803163,38.540841772913026,131.624790501780808 -76.251992859169334,38.540901743768337,131.625866709277034 -76.25458364229597,38.541103984978449,131.629496176727116 -76.275017114045028,38.532918157442289,131.625706092454493 -76.279066245820445,38.534179071858418,131.63451471272856 -76.28200737804282,38.537840895633288,131.650015691295266 -76.278421352239903,38.5435616874597,131.664878836832941 -76.276873400797143,38.550519411263224,131.686168598011136 -76.280600618750697,38.558941031093092,131.718333098106086 -76.284149412327437,38.5630093337885,131.735866766422987 -76.284592341392425,38.563517103392016,131.738055066205561 -76.289978168761493,38.569691363877801,131.764662199653685 -76.291004073163521,38.570867450775694,131.769730031490326 -76.291628293647094,38.570956608723641,131.770738775841892 -76.297430032851324,38.571785276114532,131.780114945955575 -76.300262062198726,38.572189777294319,131.784692115150392 -76.309282627316165,38.573478192331194,131.799272764474154 -76.306133584816905,38.577002072005193,131.807341052219272 -76.292959347239602,38.583696596078809,131.814448333345354 -76.291856600605627,38.584256959731597,131.81504347641021 -76.274456899073229,38.593098664628968,131.824438695795834 -76.269593845625266,38.599461440808888,131.839948295615613 -76.27354507130508,38.603705048388477,131.858505628071725 -76.275572162094377,38.605882139378799,131.868025505915284 -76.275848782286587,38.606179228848482,131.869324574247003 -76.27620739622202,38.60656437941573,131.871008696034551 -76.276243204556977,38.606602837487706,131.871176853775978 -76.27661900785624,38.607006449393282,131.872941685840487 -76.280549935756369,38.611228257190731,131.891401140019298 -76.279106968131188,38.612369804996661,131.893530710600317 -76.277695614006305,38.613486343010393,131.895613642409444 -76.272788175304498,38.617368672593926,131.902856376953423 -76.265115949737037,38.616816758471515,131.892272733151913 -76.264538097967716,38.617182642577127,131.892823842354119 -76.263751817650274,38.617680499443019,131.893573746085167 -76.262096069859169,38.61872888560751,131.895152935758233 -76.261277972514975,38.619246888374519,131.895933225750923 -76.25488699415925,38.623293527199777,131.902029382996261 -76.248856927083978,38.627111644276368,131.907782097347081 -76.247470596845773,38.627989440675066,131.909104775637388 -76.237610347186092,38.63030542573695,131.905522014945745 -76.236947204517548,38.628534809726496,131.898908335715532 -76.235888942517676,38.625709210146553,131.888353469781578 -76.232146997241813,38.615718074602675,131.85102659650147 -76.230317639467714,38.615009022894498,131.846594185568392 -76.2301188192734,38.614931960987633,131.846112460829318 -76.229780145959083,38.614800692574427,131.845291883684695 -76.223942208480722,38.612537931506189,131.831147197633982 -76.221660199038439,38.611653433829701,131.825618226081133 -76.213386366594918,38.608446529661087,131.805572369135916 -76.213373017194783,38.608452237335094,131.805576047860086 -76.204024153483402,38.612449440606035,131.808154197409749 -76.203557170416829,38.614719350424387,131.815135567449033 -76.191860945117298,38.622800111690566,131.82855807710439 -76.175927594018233,38.630498923574223,131.835896546952426 -76.171024460185023,38.630932945781744,131.831752933561802 -76.161106127540236,38.627160183163539,131.807982460595667 -76.153843086760745,38.633527193756947,131.820791902020574 -76.148115909120492,38.63854781831467,131.830892643891275 -76.148534903297616,38.639600668771145,131.834852782078087 -76.149159823572731,38.641170971252507,131.840759061276913 -76.149517331188775,38.642069317998654,131.844137861393392 -76.149912943570612,38.643063414570754,131.847876703366637 -76.150311135814064,38.644063993829668,131.851639844477177 -76.153511954434109,38.652107025201737,131.881886208429933 -76.153560887424604,38.652229984238801,131.882348561659455 -76.153580617139141,38.652279561153854,131.882534978911281 -76.153947963296687,38.65320263021971,131.886005870997906 -76.154372459010688,38.654269304945331,131.890016650781035 -76.154727690170418,38.655161931388761,131.893372916616499 -76.155051823644229,38.655976415427332,131.896435309201479 -76.155539448655375,38.657201721728711,131.90104225371033 -76.155562771807737,38.657260328249869,131.901262601837516 -76.155847315576324,38.657975331099045,131.903950825333595 -76.155882804729401,38.658064508400933,131.904286108911037 -76.15656943283895,38.659789870570428,131.910772824659944 -76.161497882512052,38.663609904441699,131.929009060375392 -76.165423344731934,38.66665252425431,131.943533375859261 -76.169782479585521,38.670031283063039,131.959661590866745 -76.175570041514391,38.674517213522719,131.981073665432632 -76.17611819185683,38.674942084020088,131.983101575635374 -76.197675800958166,38.674565922711096,132.006385812535882 -76.200681738096776,38.672832897657777,132.004079020582139 -76.200907804036305,38.672702562950533,132.003905545920134 -76.201293876160008,38.672479979233174,132.00360928568989 -76.213768379985396,38.683597417382501,132.054551521316171 -76.227303852597728,38.699761505491118,132.123361958190799 -76.23020313861781,38.703223838564362,132.138098290190101 -76.232353657458077,38.70579199239431,132.149028192274272 -76.232718943168052,38.70622821730754,132.15088468324393 -76.233087799046331,38.706668705722556,132.152759302407503 -76.233326023918664,38.70695319433365,132.153970016166568 -76.233495961919928,38.707156134628733,132.154833672568202 -76.233775056266012,38.707489429645655,132.156252076849341 -76.23380639985173,38.707526860217371,132.156411371193826 -76.233836562068532,38.707562879995862,132.15656466037035 -76.233854344893444,38.707584116280337,132.156655034981668 -76.235210493504681,38.709203631617392,132.16354707069695 -76.235340584392404,38.709358986411083,132.164208192378283 -76.235353129956721,38.709373968348579,132.164271946065128 -76.23578974738794,38.70989537774269,132.166490811854601 -76.238779797140523,38.713466101029148,132.181685473769903 -76.238877277140233,38.713582511836123,132.182180824689567 -76.239038789582892,38.713775390312136,132.18300155736506 -76.239133763037202,38.713888807797723,132.183484168723226 -76.239267239173955,38.714048205262195,132.184162428602576 -76.239686532424642,38.714548926084966,132.18629306089133 -76.240338224645285,38.718584007767681,132.200356030836701 -76.240388381912808,38.718894566438664,132.201438326388597 -76.240802656815177,38.721459631657446,132.210377254523337 -76.238001640828102,38.726221458185968,132.222904778085649 -76.239646834053246,38.737136994310724,132.260799900628626 -76.256055315582557,38.738178816296298,132.282923735678196 -76.256310441074731,38.737975670087117,132.282544112764299 -76.258297276583548,38.736393632564301,132.279587768018246 -76.258385187208646,38.736323632855267,132.279456960037351 -76.258399415052992,38.736312303792822,132.279435789212584 -76.258813045978599,38.735982946057099,132.278820321895182 -76.259700800681117,38.735276062551939,132.277499391697347 -76.260199945375305,38.73487861362841,132.276756691746414 -76.260627035615997,38.734538538779745,132.276121204718947 -76.260703003484636,38.734478048609375,132.276008170098066 -76.260829305869748,38.734377479079988,132.27582024037838 -76.260838602226357,38.734370076763639,132.275806409306824 -76.260963607576471,38.734270540011352,132.27562040835619 -76.26193868627054,38.733494123911072,132.274169559590518 -76.262825508419823,38.732787982962222,132.272850038483739 -76.269250536010333,38.727671990908732,132.263290300965309 -76.269702048022694,38.727312469983779,132.262618514709175 -76.270332725063383,38.726810287125417,132.261680157855153 -76.270482131791638,38.726691320533959,132.261457864195108 -76.271239585926139,38.726088190155771,132.260330889374018 -76.272205019785915,38.717912743699166,132.234449944458902 -76.272409201116361,38.716183703987433,132.228975695557892 -76.272515940202368,38.715279820578822,132.226113853044808 -76.272558473688065,38.714919640317412,132.224973447620869 -76.275977564324279,38.714417632897174,132.227214450016618 -76.275981474747567,38.714418513828306,132.227221817709506 -76.299462304029092,38.719708221052194,132.2714600302279 -76.300134340372111,38.720990162591931,132.276457107625902 -76.297566004387235,38.724885647207209,132.286381490528584 -76.297499937195624,38.724985853617376,132.286636773496866 -76.296920314301417,38.725864987846357,132.288876416161656 -76.299149609864855,38.727957512751097,132.298323614522815 -76.300313050206483,38.729049574265339,132.30325385555625 -76.300364455786408,38.729097826035094,132.303471690043807 -76.313719880577864,38.732410579227576,132.329638234339654 -76.317109962025242,38.731288597579905,132.329805770888925 -76.322767217391075,38.72526746642383,132.31639909837395 -76.322848644068785,38.725180802366353,132.316206124611199 -76.322983045237578,38.725037756488177,132.315887611359358 -76.322991733305471,38.725028509602069,132.315867018885911 -76.323626639407181,38.724352766216384,132.314362362027168 -76.323668954204976,38.724307729722682,132.314262079074979 -76.323670054970563,38.724306558155561,132.314259469509125 -76.32369386391656,38.724281217813541,132.314203046262264 -76.323771466010456,38.724198624337987,132.31401913613081 -76.323824379950892,38.724142306962584,132.313893737271428 -76.323938987037323,38.724020328326141,132.31362212728709 -76.324177898788065,38.723766049725349,132.313055926933885 -76.3244937581279,38.723429874251849,132.312307367101312 -76.327099353693072,38.720656686281785,132.306132238358259 -76.328125662830516,38.71956436474688,132.303699897602201 -76.328999225365905,38.71863461450539,132.301629543304443 -76.329301881866627,38.718312491082038,132.30091224052012 -76.331112850968807,38.716385040111405,132.296620157547295 -76.332443179245246,38.714969144876413,132.293467169627547 -76.333481596639515,38.710820852452336,132.280963585712016 -76.334029850766839,38.708630674945603,132.27436157874763 -76.334496588162096,38.706766142265039,132.268740920349956 -76.334741067844988,38.70578948952425,132.265796691179276 -76.334981115307613,38.704830542715868,132.262905774638057 -76.334826198009267,38.704656990656822,132.262155978940427 -76.333043278901457,38.702659606983296,132.253526508808136 -76.322828586796859,38.691216205426961,132.204080353491008 -76.322844560031285,38.690921297922152,132.203124827705324 -76.32286161034898,38.690606504657651,132.202104864642024 -76.322868896543966,38.690471982524926,132.201668998226523 -76.322878837940181,38.6902884384643,132.201074289157987 -76.323381465642925,38.681008622807759,132.171003024093807 -76.33957392915724,38.673728081957449,132.165457825176418 -76.341028597316836,38.673074026386729,132.164960077032447 -76.34130486743851,38.672949808357366,132.164865551516414 -76.344183847547612,38.678585005781819,132.186768426559865 -76.344240977990651,38.678696830564377,132.187203038483858 -76.344748328837312,38.679689898271839,132.19106259662658 -76.34516330218085,38.680502150048646,132.194219350814819 -76.348962286310055,38.687938125506911,132.223116009496152 -76.346036124774329,38.705249574847372,132.276918842457235 -76.345561931905621,38.708054944988575,132.285635683685541 -76.341507666693644,38.732040365304854,132.360139649361372 -76.341531262051731,38.73271040059462,132.362376612611115 -76.34157247913285,38.733880838369657,132.366284126415849 -76.341582519035839,38.734165940593698,132.367235924117267 -76.341592816046855,38.734458343893508,132.368212090805173 -76.341596365937534,38.734559149817841,132.36854862049222 -76.34160000225036,38.734662409867575,132.368893344886601 -76.341601501647432,38.734704988110749,132.369035485200584 -76.341605719502837,38.734824762171279,132.369435339234769 -76.34160932622548,38.734927181948095,132.369777254760265 -76.341641410388021,38.735838273013599,132.372818783856928 -76.341679411742788,38.736917394035778,132.376421168446541 -76.341696888223439,38.737413672059709,132.37807783856988 -76.341703309034614,38.737596003249358,132.378686491400003 -76.341704668062448,38.737634595436042,132.378815316595137 -76.342057730189936,38.747660467438244,132.412279197014868 -76.342061224887743,38.74775970603563,132.41261038929224 -76.342064402411836,38.747849937879813,132.412911523133516 -76.342253018415676,38.753206048006227,132.430785498581827 -76.342258273903553,38.753355287573044,132.431283495388925 -76.342261883714485,38.753457795012636,132.431625549681485 -76.342266978438872,38.753602469393407,132.432108311913908 -76.335584071084071,38.774611658377758,132.493723805062473 -76.33471718362442,38.775121013336239,132.49441290833056 -76.330685919090413,38.777489653645155,132.49761766847223 -76.324732847881094,38.78098748523778,132.502350961789489 -76.323665131328866,38.782357191756219,132.505645831115544 -76.313850830418289,38.79494734223298,132.535928826779127 -76.311708040999576,38.797696192278423,132.542539902031422 -76.311628448932396,38.797798295945789,132.54278546012938 -76.311590424811669,38.797847074703547,132.542902773246169 -76.311520394991561,38.797936911564278,132.543118830770254 -76.311045694510369,38.79854587501697,132.544583366252482 -76.309886883988455,38.815045205398839,132.59759408980608 -76.30927072659523,38.816030339953443,132.600135217420757 -76.30925930740122,38.816048597370731,132.600182309746742 -76.309091607820818,38.81631672147892,132.6008739201352 -76.30823146633989,38.817691946552955,132.604421181604266 -76.30285108186078,38.826294298453654,132.626608141697943 -76.301853828268307,38.827888743319257,132.630720121785998 -76.301850900890798,38.827890756090135,132.630723411217332 -76.299920796336281,38.829217834057907,132.632892638444901 -76.298764768848287,38.830012681470201,132.634191919118166 -76.297528990132236,38.829884825102283,132.632363492622972 -76.297435592011794,38.829875161928562,132.632225304841995 -76.297358583077809,38.829867194415925,132.632111364975572 -76.297328592296992,38.829864091504113,132.632066992111504 -76.297293580656387,38.82986046912324,132.632015192881227 -76.297284560976593,38.829859535927412,132.632001848891377 -76.297224033485307,38.829853273620827,132.631912293843925 -76.296956547074842,38.829825598891951,132.6315165348351 -76.296514542983942,38.829779868182079,132.630862576887012 -76.2964184678316,38.829769928036804,132.630720430053771 -76.296400468389692,38.829768065775141,132.630693799816072 -76.294612521595269,38.829583080889442,132.628048540093005 -76.293108459362855,38.829427467320919,132.625823356211185 -76.289419489295213,38.829045798405915,132.620366004295647 -76.285732898978509,38.830405012555261,132.620641965419054 -76.278818353608543,38.832954345972318,132.621160830371082 -76.278712499397926,38.832993373509467,132.621168788522482 -76.278375229236033,38.833117722117699,132.621194141916931 -76.278384169070677,38.833166944453595,132.621366326697171 -76.279115305325135,38.837192548455185,132.635447724722326 -76.27900454083715,38.837466714487803,132.636223935522139 -76.275369378878366,38.846464525617861,132.661695725284517 -76.272539516097609,38.853469047444612,132.681521338410676 -76.268138949542831,38.853350038454472,132.676123128272593 -76.266963547097944,38.853318250851729,132.674681359902024 -76.265184704753835,38.853270143809929,132.672499489039183 -76.266722692463347,38.849336561163881,132.661307073198259 -76.266772115365185,38.849210156338437,132.66094739176333 -76.266641803861944,38.849023920664763,132.660186367109418 -76.26314284540463,38.844023357630007,132.639751173555851 -76.262870822566796,38.843634594126151,132.638162371702492 -76.262591059813857,38.843234769063926,132.636528351344168 -76.258317107348319,38.837126617440092,132.611563618294895 -76.256750787202648,38.8348880991038,132.602413738146424 -76.256306285044687,38.83425283546719,132.599817037582397 -76.256285732602294,38.834223462788025,132.599696974270046 -76.251327377018498,38.827137191215151,132.570728830993176 -76.251259076262443,38.827088296097337,132.570490159094334 -76.246849206064169,38.823931359988386,132.555080013349652 -76.239733222263624,38.821289447210695,132.538287653587759 -76.230162019632147,38.817735998613408,132.51570232026279 -76.229033145198045,38.817316887511026,132.513038559816778 -76.222124071436895,38.81475179307666,132.49673580750823 -76.220290315552376,38.814070984449039,132.492408934980631 -76.19909973867631,38.816140073825942,132.475145383737981 -76.198394005189968,38.817241348007236,132.477971284650266 -76.197449581728421,38.818715090144671,132.481752863153815 -76.197388161583987,38.818810934285224,132.481998794712126 -76.196331909089537,38.820459182000683,132.486228023655713 -76.19439170310649,38.823486810439547,132.493996288627386 -76.194233727059071,38.82401831390392,132.495567373000085 -76.194034595074143,38.824688284710867,132.497547732666135 -76.193982188613646,38.82486460394307,132.498068907298148 -76.193885727972727,38.825189141528718,132.499028188176453 -76.193826900472899,38.825387064065637,132.499613213352859 -76.193726779256949,38.825723917495473,132.500608887523413 -76.193499213220846,38.826489553421304,132.50287192966789 -76.192051742220372,38.831359506018615,132.517265476286411 -76.192133484721666,38.831533130862496,132.517930019646883 -76.19383616548393,38.835149703346104,132.531771733425558 -76.193908213843358,38.835302737384843,132.532357416115701 -76.193935346027374,38.835360367395324,132.532577974721789 -76.198667120238653,38.845410874032609,132.571038164198399 -76.198697671137822,38.845528892161042,132.571461331099272 -76.200506237753089,38.852515385244175,132.596510072238743 -76.201689881299046,38.857087800370657,132.612901351414621 -76.203560514681811,38.864314057214052,132.638802543282509 -76.203276224113736,38.866604405438231,132.646015101112425 -76.201044716205587,38.884582245931568,132.702615707181394 -76.206025991347488,38.894422801101712,132.740625997073948 -76.205507035650172,38.907411473539966,132.782733324915171 -76.205092310620387,38.917791412890466,132.816374126821756 -76.205085374913651,38.917965003140111,132.816936650313437 -76.205053873985833,38.91875342373261,132.819491527974606 -76.20460143250402,38.930077351087405,132.856181370094419 -76.20865882857143,38.933649316505992,132.872516783885658 -76.214695301042141,38.938963579772874,132.896818432025611 -76.214805845753915,38.939060898811952,132.89726344589144 -76.229094722286206,38.943106224318875,132.926760984584689 -76.229368946563028,38.943183859985538,132.927327121607959 -76.233002435633452,38.944212537493677,132.934828602708876 -76.234859664321931,38.943817814331219,132.935640659183264 -76.23564502925727,38.943650898036381,132.935984089970589 -76.251121901272057,38.940361545487441,132.942756598815322 -76.251832780451281,38.929944966421409,132.909358472563326 -76.251803170869536,38.929898553047124,132.909172410145402 -76.250586938512328,38.92799209424583,132.901529623195529 -76.250210256923992,38.927401641339735,132.899162494577467 -76.249860984708988,38.926854152954682,132.896967587992549 -76.249808270911672,38.926771523445318,132.896636319346726 -76.249666897684548,38.926549919216598,132.895747886970639 -76.249539154322704,38.926349679965249,132.894945106469095 -76.249437020585091,38.926189584106766,132.894303264096379 -76.248987638765684,38.925485172715895,132.891479165293276 -76.250127189030451,38.923495355559126,132.886237766593695 -76.250249366849232,38.923282015676499,132.885675792582333 -76.250319239983156,38.923160007227615,132.885354403406382 -76.250638646896149,38.92260227724114,132.883885235525668 -76.250853352866059,38.922535916722573,132.883911154232919 -76.256783629545552,38.920703008970612,132.884627754800022 -76.257155263598378,38.92058814570639,132.88467270322144 -76.257361810814515,38.920524306864685,132.88469768781215 -76.259045067867575,38.920855491512626,132.887698161415756 -76.259170931165869,38.920880255402366,132.887922517955303 -76.263190992852785,38.921671211666258,132.895088733173907 -76.2656481253495,38.926271002798266,132.912988743744791 -76.265656668129353,38.926458907651913,132.913615573197603 -76.265908210298164,38.931991766181881,132.932071308605373 -76.266737438857987,38.933176411751667,132.936903635971248 -76.267225511612978,38.933873678168496,132.939747826196253 -76.270144173847768,38.938043312992214,132.956755134277046 -76.271919920665397,38.940580165550195,132.967101849615574 -76.272590507624358,38.941538173878676,132.971009002998471 -76.273987424870711,38.94353382610133,132.9791478542611 -76.274048600525745,38.943621222353443,132.979504272341728 -76.274223284981915,38.943519728365153,132.979369612410665 -76.276999078248565,38.94190695562348,132.977229879237711 -76.28519332991371,38.937145986617963,132.970914458855987 -76.2897784880237,38.934481948886585,132.967381368391216 -76.292177392695962,38.933088153426759,132.965533108450472 -76.296546018612602,38.93054992377796,132.962167635560036 -76.29687707267513,38.930357576973208,132.961912618950009 -76.299173580876214,38.923754646227728,132.942843146622181 -76.300397035939937,38.920236962751218,132.932682828977704 -76.300372369230828,38.920199633759083,132.932532172650099 -76.299458402018303,38.918816495263108,132.926949850283563 -76.294928328661967,38.911960977058754,132.899278692901134 -76.294832762937119,38.911816354109831,132.898694906383753 -76.294808835084666,38.91152160009544,132.897699440829456 -76.294794432285286,38.911344179955165,132.897100241854787 -76.294759781035111,38.910917330317055,132.895658636465669 -76.294457573352375,38.907194600510913,132.883085193112493 -76.294324005022418,38.905549245870468,132.877527678385377 -76.294306251784306,38.905330553512215,132.876788985915482 -76.294293603313648,38.905174743972196,132.876262693665922 -76.294274527670794,38.904939761638872,132.87546896841377 -76.294220747759042,38.904277276538508,132.873231197707355 -76.294219643111276,38.904263668990701,132.873185233213007 -76.309391019761307,38.900099714333855,132.876769563183188 -76.318913466510679,38.913007105995717,132.930010438896716 -76.318943500577618,38.913006431858641,132.930042416788638 -76.31949621830104,38.912994025695596,132.930630898103118 -76.320238921304352,38.912977355170675,132.931421673856676 -76.323682079430426,38.912900070907192,132.935087943449616 -76.324218151606416,38.912888038365324,132.935658785514534 -76.325063640181526,38.912869060740341,132.936559138819575 -76.325069120257865,38.912866688899967,132.936557587236166 -76.337070912367395,38.907672174502984,132.933164940215647 -76.337083259456946,38.907602619168337,132.932950543239713 -76.33779378380423,38.90359999505845,132.920612475834787 -76.337933336655112,38.902813846628881,132.918189038522542 -76.338064338007655,38.902075871685511,132.915914067998528 -76.338193558904749,38.901347926652974,132.913669975474477 -76.33832442789047,38.900610697381573,132.911397226154804 -76.339013326013017,38.896729901232902,132.899432747624815 -76.339090241291046,38.896296611458894,132.898096851073205 -76.339382563790437,38.894649859963295,132.893019541166723 -76.339467797658486,38.894169708762476,132.891539090313017 -76.338912766347832,38.89302809142729,132.887155751697719 -76.337952475157749,38.891052914442064,132.87957161385566 -76.337526470994547,38.890176686867939,132.876207035966218 -76.337293161354921,38.8896968034365,132.874364327639341 -76.336647507708179,38.888368789350771,132.869264773093164 -76.336330620699826,38.887716999628445,132.866761855781078 -76.336307789560806,38.887602696526841,132.866360222920775 -76.334767306251521,38.879890333939485,132.839258492924273 -76.334224744028774,38.877174019765043,132.82971200440079 -76.334177519911165,38.876937594272619,132.828881056979299 -76.333617701538003,38.874134887907857,132.81903023365885 -76.332069222976713,38.866382497146958,132.791779054328799 -76.331996203186876,38.866016926732172,132.790493875741959 -76.334985233191219,38.861935069720744,132.780479045584798 -76.338867563153727,38.859276440396776,132.776162057183683 -76.339102422090647,38.859115608406107,132.775900911539793 -76.340633150656359,38.858067361635293,132.774198890663683 -76.34155335962447,38.857437200220382,132.773175726644695 -76.349792146336952,38.858831313869821,132.787153854034841 -76.351356661605365,38.859096050918076,132.789808448404074 -76.357327790648029,38.856093130402435,132.786744188517332 -76.360927026634542,38.854283050683016,132.784897645004094 -76.361062334357939,38.854215003528815,132.784828235395253 -76.362107894925416,38.853689184164551,132.78429190069437 -76.362287261959992,38.853285737077428,132.783169819042087 -76.367467783533584,38.841633282003414,132.750757490284741 -76.36913115600538,38.837891887935157,132.740348797291517 -76.369161881247464,38.837822778195807,132.74015652295202 -76.36932610069988,38.837902580789134,132.740606465376914 -76.373686458204986,38.840021500511035,132.752553293481469 -76.374088886282166,38.840217060803397,132.75365589465946 -76.376053122955994,38.841171583411999,132.759037652052939 -76.376104655608003,38.841678818108967,132.760764854028821 -76.376270205709815,38.843308323906868,132.766313396394253 -76.376410107455115,38.844685373517116,132.771002143621445 -76.376998181824305,38.850473775664518,132.790709503926337 -76.377169303515586,38.852158122398151,132.796443562954664 -76.377150164211514,38.852196934313383,132.796549343504012 -76.37684118055742,38.85282351129419,132.798257045447826 -76.373520710128957,38.859556975421917,132.81660736259073 -76.368516089687503,38.869705667751873,132.84426028560847 -76.368311511967377,38.870120523660511,132.845390554517508 -76.365645291602647,38.875527257480243,132.860120261088014 -76.366192638660578,38.894309078056303,132.922459448687732 -76.366355998447276,38.899914650082536,132.941059574484825 -76.366625775984105,38.909171868092834,132.971770915202796 -76.366097591538775,38.91343110910941,132.985155251808465 -76.365748263434369,38.91624806563992,132.994006576947868 -76.365490545332136,38.918326285779123,133.000536300241947 -76.363018433830561,38.938261215489092,133.063155077397823 -76.362695094496146,38.940868600852269,133.071343104355037 -76.360637027496551,38.945573669626931,133.084437212906778 -76.358901345389015,38.949541715256053,133.095479198731482 -76.358720335391013,38.949955532931249,133.096630686894059 -76.355916688544809,38.956365116056098,133.114464708603919 -76.354796114632151,38.958926926477872,133.121592019684613 -76.352605400423599,38.96190654097515,133.128870700486004 -76.344640110093863,38.972740220094629,133.155332732945681 -76.334670912440444,38.986299435876766,133.188445971347392 -76.332257614251091,38.989581789425074,133.196460854262114 -76.324260628767902,39.000458577904759,133.223017053678632 -76.32364680166198,39.001293450953412,133.225055260583758 -76.323314049115652,39.00717888326615,133.24396441038698 -76.323263882995832,39.0080661771987,133.246814942918718 -76.324524954279369,39.010652061018149,133.256722130812705 -76.3235579757702,39.01479091489351,133.269183593802154 -76.321245498190294,39.024688763645393,133.298979703336954 -76.321242052008841,39.02470351396488,133.299024104140699 -76.321237364200016,39.024710259968934,133.299040869809687 -76.312733975751868,39.036947084405725,133.329454899765551 -76.30299642063612,39.041260513820035,133.332517929375172 -76.302814752026677,39.041340987277131,133.332575102336705 -76.302612363253544,39.039353047120471,133.32583539839834 -76.302473400114749,39.037988097856562,133.321207631379366 -76.302021841302491,39.033552713882315,133.306168714538217 -76.302007467340758,39.033411527310712,133.305689968168736 -76.301994618704427,39.033285323071112,133.305262027308345 -76.303813592094428,39.0275185435517,133.288439643569291 -76.303617991382865,39.027036858693393,133.286639586091042 -76.295057022344309,39.005954679724908,133.207835894078016 -76.294929040012391,39.005639511378128,133.206657530739903 -76.292867291060134,39.002956136771118,133.19552003685385 -76.290292710876017,38.999605310235168,133.181611403822899 -76.287451088901847,38.995906927721748,133.166259044781327 -76.285859455076874,38.993835409846596,133.157659466378391 -76.284246158288283,38.991735697534494,133.148942478001118 -76.281321065199776,38.987928677013237,133.133136630989611 -76.279023947062981,38.984938968434562,133.120723222382367 -76.278444276916559,38.984184525385537,133.117590621113777 -76.278423126180542,38.984185853552148,133.117570951581001 -76.276930365880375,38.98427959187007,133.116182759404182 -76.259778759250622,38.985356631966731,133.100238256156445 -76.259689703385519,38.985338289776003,133.100076996721327 -76.247014483597255,38.982727666653368,133.07712718192488 -76.244583821421898,38.982227040783329,133.072726646438241 -76.230957982252676,38.979420625428432,133.048060663975775 -76.230241832090798,38.979273125167893,133.046764381229877 -76.229713228230054,38.978913433432801,133.044984732754529 -76.219893440638856,38.972231498802522,133.011923214420676 -76.219737456873446,38.972255419943195,133.011824801564217 -76.203324001213687,38.974772531750304,133.001474253833294 -76.203044850075599,38.974965029964999,133.001789489760995 -76.188128695152841,38.985250974780051,133.0186359686777 -76.18342485508434,38.988494668602208,133.023949380032718 -76.181626632020482,38.989734694828883,133.025980746373534 -76.169294925553487,38.998238444888784,133.039912854321301 -76.164967060792463,39.001222872101067,133.044803050346673 -76.164951261985067,39.001233766709291,133.044820903800428 -76.164951219272794,39.001234974512798,133.044824816286564 -76.164919589501409,39.002129391681848,133.04772262275219 -76.164860899128783,39.003789020440692,133.053099459968507 -76.164579393953773,39.011749340128532,133.078886203467846 -76.168537618756886,39.019964971863281,133.110302649438381 -76.174356794080737,39.027241660712278,133.140741690061986 -76.175596633738635,39.028792039742498,133.147226501256227 -76.17879624667917,39.032793051300835,133.163960711099207 -76.17907941670525,39.033147146176439,133.165441649034619 -76.179245107154912,39.033354336675913,133.166308179497719 -76.185171475310923,39.047954691786707,133.220854551531374 -76.180420889845252,39.05463119573843,133.237349066883326 -76.178010140232232,39.058019279071225,133.245718775317073 -76.176248390307023,39.060495253992649,133.251834989525378 -76.17002426617394,39.064477143073574,133.257835451513529 -76.159924013509738,39.067176116527655,133.255252961069345 -76.15753560539757,39.071123112632115,133.265478063374758 -76.154428577007906,39.07625767442704,133.278778583742678 -76.15149196144624,39.081110618238043,133.291348475962877 -76.146137990398927,39.094513116465848,133.329170839861035 -76.159054848106976,39.095686762108144,133.347606749273837 -76.168311739970306,39.096527857575502,133.360821965150535 -76.170052009214686,39.096685981119862,133.363306675106287 -76.170378720389991,39.09671566660046,133.363773153163493 -76.170855351453838,39.096758974032966,133.364453695714474 -76.184873148597916,39.098032652645536,133.384471585974097 -76.190872627176375,39.094731014693181,133.380454109050333 -76.195668781117291,39.092091591340392,133.377243132330477 -76.204298115013486,39.087342689269697,133.371467477642 -76.204348560507853,39.087314928064046,133.371433724649251 -76.204513410302809,39.086789639456136,133.369901249185205 -76.206073723864463,39.081817750151217,133.355395420454443 -76.208569391713979,39.073865384438655,133.332190504297614 -76.211006462103654,39.066099737824402,133.309526462107897 -76.211216767923048,39.064200593207943,133.303546453826129 -76.211840939362688,39.05856407871358,133.285796675831079 -76.212803220062099,39.049874304552262,133.258427328430116 -76.213527747536119,39.043331536102606,133.237816485576332 -76.213566848574771,39.042978438331438,133.23670407757163 -76.213581219286908,39.04284866514454,133.236295234411955 -76.213005220727212,39.040561199230908,133.228149030357599 -76.212554473325952,39.03877114385093,133.221773916855454 -76.211442380318786,39.034354683372506,133.206043946556747 -76.210792124913979,39.031772320836801,133.196845662780106 -76.210481622466446,39.030539220911642,133.192453204654157 -76.209466879300706,39.026509366272649,133.178097457624972 -76.209311327976877,39.026304961273098,133.177251345477998 -76.207816458147832,39.024340600832609,133.169119903817773 -76.207760393501175,39.024266928080785,133.168814928270876 -76.206922962240341,39.023166486550949,133.164259519428015 -76.20163051508969,39.016211851678101,133.135467632673681 -76.201969978560726,39.016030636158384,133.135258127935231 -76.203140474661609,39.01540579113874,133.134535765275359 -76.210078695594305,39.011701966077091,133.130254685878754 -76.210249330562831,39.011766052523157,133.130658145062625 -76.217814874050262,39.014607491167183,133.148546899668872 -76.222112777896868,39.016221681880204,133.158709575422108 -76.224636336590564,39.017169470649826,133.164676785469055 -76.232730459374665,39.020209431111425,133.183816608972847 -76.241192160381303,39.028272181579737,133.219832607544959 -76.242897610594397,39.029897223574032,133.227091013453901 -76.243652913484325,39.030616915597065,133.23030552547425 -76.24187101049597,39.041488486459002,133.263899880461395 -76.240409208377017,39.043667009605478,133.269378297030926 -76.238466245698717,39.046562606163505,133.276659655384719 -76.238030978529196,39.047211284666361,133.278290796093643 -76.23217808178903,39.062459048343023,133.321588011458516 -76.232083019366229,39.062706701675914,133.322291124612093 -76.232392674276241,39.073403395414836,133.35765883512795 -76.232714334796711,39.084514807195177,133.394388158805668 -76.234423500536039,39.093073444221815,133.424327761866152 -76.241569841680501,39.108543567407956,133.483024368993938 -76.246017457796185,39.118171594810562,133.519544548355043 -76.253913195146822,39.13526398152446,133.584358237683773 -76.253935636794495,39.135312562334569,133.584542416036129 -76.261310711093373,39.14440820005202,133.622616984881461 -76.261861997744461,39.1450880987815,133.625462783500552 -76.265385373753475,39.145560004065359,133.630995895713568 -76.2675077210083,39.145844261798835,133.634329000487924 -76.269064654045422,39.146052790470975,133.636774212121964 -76.275875274983875,39.146964974679292,133.647471292875707 -76.27768911102298,39.147207911790808,133.650320404209197 -76.279495535335258,39.147449856207814,133.653157967142761 -76.277775985670203,39.156169624448509,133.679690772667527 -76.276628324795368,39.161989367458439,133.697396297007799 -76.275709995812363,39.166646177593563,133.71156208589673 -76.275605694315033,39.167175086387907,133.71317090280354 -76.275271898887425,39.167799573001254,133.714831789955497 -76.270435789474277,39.176847287159752,133.738892866298556 -76.269599368166979,39.178412119617384,133.743053880520165 -76.267931214505879,39.181533012140868,133.751352212391794 -76.2675706702491,39.182207542254865,133.753145697526634 -76.256799513384777,39.193279182059634,133.777086926624179 -76.252000480352976,39.200897912586633,133.796517057344317 -76.249709516219141,39.205016800331251,133.807363828644156 -76.233580216886082,39.234015410277351,133.88370549492538 -76.233019404608427,39.235023685751415,133.886359128169715 -76.227188325194163,39.248166896372027,133.92261696793139 -76.221443802354386,39.261115009461022,133.958326962776482 -76.220306433745463,39.263678630152583,133.965396111831069 -76.220280192455277,39.263703993910134,133.965449121780694 -76.219307312522474,39.264644339851763,133.967414407990873 -76.218488483817637,39.265435786179516,133.969068496488035 -76.212274212679006,39.271442246457589,133.981621540151536 -76.212221309101935,39.271493380891293,133.981728405691683 -76.212147431821279,39.27149391160274,133.981646724045277 -76.211716034084901,39.271497010629808,133.981169746257365 -76.203999073761253,39.271552446863254,133.972638495266438 -76.203557782587595,39.271946404483103,133.973423942923546 -76.193996545922218,39.280482088584435,133.990441901609302 -76.19225281717091,39.282038782385953,133.993545549921691 -76.19083573545285,39.283303865804626,133.996067803353071 -76.186876625489191,39.286838315734379,134.003114592283964 -76.186641788343948,39.287047963897848,134.003532577306032 -76.182463756782042,39.293477738463011,134.019762299023569 -76.182446010984293,39.293510046516715,134.019847507588565 -76.178679905366877,39.300366629994038,134.037929724901915 -76.178671742841985,39.300381490712034,134.037968915887177 -76.178145973112294,39.304779766863426,134.051697618328035 -76.177771874490588,39.307909253009754,134.061465078964829 -76.177745822891865,39.308127185163372,134.062145243398845 -76.177832739724636,39.308264308256128,134.06268966011703 -76.179951069497591,39.311606260793283,134.075957714579999 -76.180059939702701,39.311778018308331,134.076639592647552 -76.18699217154446,39.314141865091791,134.092150238342583 -76.187605033572879,39.317105427420927,134.102487647905946 -76.187615230978977,39.317154738109039,134.102659647352993 -76.186969244643038,39.319493217434101,134.109542566351593 -76.186549253528085,39.321013590993452,134.114017335698009 -76.186475667238298,39.321075528871155,134.114135956391692 -76.171556291209768,39.333633228081901,134.138186449185014 -76.17150871970253,39.333673269212333,134.138263138011098 -76.171389993574238,39.333773201475793,134.13845453504473 -76.170378919603891,39.334132033898257,134.138482959009707 -76.169332926145188,39.334503259325423,134.138512403704226 -76.160640737023954,39.337588136756821,134.138758569955826 -76.158130178873037,39.337320246463094,134.135059431195259 -76.15368944915835,39.336846396296913,134.128516763448715 -76.14649130921822,39.336078315357042,134.117912736721337 -76.134192039322357,39.342170171538022,134.123891447670758 -76.136072401322991,39.344139201191815,134.132414119318128 -76.137938201167927,39.346092982016209,134.14087048638612 -76.135917234765358,39.352748730118087,134.160248678177595 -76.130950534272898,39.355381007970351,134.163223108276725 -76.117664549484743,39.362422383545145,134.171183228492737 -76.117322835468997,39.362603486923149,134.171388029120862 -76.116901633350892,39.363422303315481,134.173577582463622 -76.114181691523356,39.368709866866674,134.187715927138925 -76.111565065375885,39.373796584913762,134.201315853744745 -76.111493823907935,39.373935078241374,134.201686112210155 -76.109908883718731,39.373892964040117,134.199767658486962 -76.109340017242531,39.373877848417656,134.199079108424485 -76.0759580031512,39.372990838859259,134.158692291006446 -76.066852158005076,39.372748883018446,134.147681997157633 -76.066681901839445,39.372744359058849,134.14747615903616 -76.062469564147776,39.372632430977838,134.142383767291903 -76.060300657482628,39.372574799898466,134.139761953614652 -76.059685618375198,39.372558457393382,134.139018510468304 -76.058841595910451,39.372536030459379,134.137998296879232 -76.055122022278383,39.372437195845684,134.133502538315952 -76.050811054007653,39.37232264699098,134.128292538225651 -76.033887521984568,39.369092917536754,134.098801481537521 -76.03273169863607,39.368450891117227,134.095416476950049 -76.031028499687707,39.367504813392962,134.090428371913731 -76.023954159895027,39.363575222366791,134.069709734991193 -76.020055239791745,39.364636959945059,134.068793003447354 -76.007510065874826,39.36805320909869,134.065847099758685 -76.003371643806176,39.369180166836216,134.064876559190452 -76.003426350103794,39.378118476346039,134.094018200412393 -76.003477549898676,39.386483860052415,134.121286297217011 -76.003478887824343,39.386702459686838,134.121998780407012 -76.007769260737007,39.386852465770815,134.127293151803315 -76.023268712394696,39.387394379476497,134.146424614824355 -76.036429235720561,39.387854516221601,134.162675151601434 -76.036532856481557,39.387858139156329,134.162803125567734 -76.036609101216456,39.387891331492888,134.162996553815901 -76.04024408523486,39.389473783222677,134.172218390740454 -76.040897008417872,39.389758026403378,134.17387484293431 -76.040938305863946,39.390004851179079,134.174723726697266 -76.041819539890767,39.395271772251661,134.192836645059288 -76.041927122918736,39.395914769791553,134.195047753863037 -76.041577443320847,39.39636986091859,134.196135178208351 -76.036263033821399,39.403286308533765,134.212660982273519 -76.035967058010598,39.403671506776661,134.213581311516464 -76.035685339038849,39.403770198209799,134.213586298748851 -76.019690622925069,39.409373446871648,134.213874131441116 -76.019025381873277,39.409606493272413,134.213886297307909 -76.01749561463879,39.410142399387929,134.213914336636662 -76.016727873968733,39.410624610980406,134.214621605351567 -76.013531949211298,39.412631945003326,134.217565953731537 -76.010657242938336,39.414437524342858,134.220214570872486 -76.007844419846478,39.416204235367516,134.222806354984641 -76.003820848746045,39.422901567901668,134.240066200494766 -75.999550540934308,39.43000959981066,134.258382211439312 -75.998360363844597,39.43199067873249,134.263486650772393 -75.997661302664966,39.432225388950357,134.263466757722199 -75.993706468657166,39.433553226881934,134.263354538939893 -75.993389281235963,39.433659722752068,134.263345562852919 -75.989804091451859,39.434863452407946,134.2632443504408 -75.983549005050094,39.436963601476869,134.263068865053356 -75.978715462377664,39.444696283865696,134.282782445661724 -75.977710965315097,39.446303274293086,134.286878949962556 -75.977662184733461,39.447366335877042,134.290277423337102 -75.977565004957938,39.449484147622556,134.297047547064722 -75.990969541346928,39.460321600880427,134.347234609536827 -75.991092384047121,39.460299857661802,134.34730142634362 -75.992743547739678,39.460007600872174,134.34819957613945 -75.995396834442744,39.459537967813084,134.349643042311072 -75.999240759857528,39.458857591110409,134.351734708994627 -76.003461561867041,39.451906554891757,134.333886922337115 -76.00347778581984,39.451879836442799,134.333818317390978 -76.003544110004285,39.451870249684809,134.333861413411796 -76.010036118686415,39.450931869260714,134.338080636225641 -76.010416972202322,39.450876819197923,134.338328203186393 -76.010501014818217,39.450991823350563,134.338795743882656 -76.012845442162643,39.454199944338626,134.351837612688541 -76.013277108756753,39.454790638122503,134.354238848201931 -76.012680717646987,39.455840719453867,134.356980809010565 -76.010974063229597,39.458845670265134,134.364827003329992 -76.003891043662151,39.471316927168743,134.397385912016034 -75.997534557107471,39.478333098089081,134.413046905770898 -75.99625397845638,39.484688979383741,134.432240742258728 -75.995099853819298,39.490417233063788,134.449536830186844 -75.994433933920334,39.49225729771802,134.454762219451368 -75.987263149431485,39.512071553843533,134.511017309501767 -75.986368352201836,39.513781397865039,134.515562172979116 -75.986202890369796,39.514097574441521,134.516402572393417 -75.981244016338593,39.523573353901277,134.541586872190237 -75.977070440864296,39.531548527529552,134.562779370695353 -75.977022124402978,39.531640854162475,134.563024691306055 -75.976277867670944,39.532350734717184,134.564494537189603 -75.974643124135611,39.533909971737323,134.567723005078733 -75.967919981562474,39.540322581793966,134.581000418402255 -75.967924363292425,39.54051172654286,134.581618352793157 -75.968058347249681,39.546295369018253,134.600512120872736 -75.968137652874447,39.549718728998833,134.611694190651178 -75.968151099431537,39.550299172102392,134.613590057939291 -75.968186148398999,39.551812119289913,134.618531594052911 -75.971302342375196,39.559308793176321,134.64629915356636 -75.993599062643455,39.564769389250323,134.688886091113091 -76.000635229800679,39.562159435264981,134.688293365761638 -76.001156464704138,39.561367616769274,134.68631109688431 -76.002210047234541,39.559767098217733,134.682304211892188 -76.003759639633273,39.557413081040934,134.676410756073892 -76.004400561704955,39.556439443351948,134.673973116092384 -76.005173175862723,39.555265749552241,134.671034556813538 -76.007179287422701,39.552218224900628,134.66340424399823 -76.007238324079438,39.552128541121441,134.663179690949619 -76.007307281997626,39.552023785753271,134.66291739884764 -76.031386611635327,39.550455833282292,134.68476143758744 -76.047843779308437,39.549384206328675,134.699702621437609 -76.064347275415471,39.548309562581267,134.71469543594867 -76.064778890209581,39.548281457496628,134.71508766990155 -76.076682575431718,39.544703215662409,134.716828733682632 -76.097040686866478,39.53858357747756,134.719818229787052 -76.103923919143014,39.525310922789657,134.684536598622799 -76.106539348987042,39.520267696703094,134.671128218993545 -76.106646883985732,39.520060341377103,134.670576896518469 -76.107183442109005,39.519025718363061,134.667825982905924 -76.108094475392292,39.517269010267881,134.663155019283295 -76.112552083322356,39.508673587901221,134.640298106707633 -76.117799378864319,39.498555443511862,134.613387099467218 -76.118221730702658,39.497741039824263,134.611220818944275 -76.115578328351006,39.490292784690425,134.584104625508189 -76.1148975048648,39.488374443709397,134.577119934372604 -76.109781196527578,39.484006868529015,134.557214087806642 -76.105633128031798,39.480465838582518,134.541074371896684 -76.101186463123113,39.478592114250127,134.530007176101208 -76.100473497899884,39.47829168678004,134.528232707642019 -76.099282907817866,39.477789998963154,134.525269503705204 -76.084253498524617,39.479534053964024,134.514068522490561 -76.084048995254193,39.479483200213792,134.51367421913892 -76.082556964897208,39.479112177593514,134.510797452181578 -76.074085976853695,39.477005700214782,134.494465502910316 -76.073276511116291,39.476804410676543,134.492904944345355 -76.072942133299179,39.476721261071333,134.492260303348303 -76.072803130798164,39.476433833025361,134.491171943023801 -76.070780620950956,39.472251706441533,134.475335366092622 -76.064840929995896,39.459969670007773,134.428818027488887 -76.063225882073013,39.45663008925797,134.416167384944856 -76.061897498752259,39.453883270840826,134.405761468224227 -76.061910856375732,39.452849093123547,134.402419156394899 -76.061954749305414,39.449450802657246,134.391435797326267 -76.06195543840839,39.449397450744506,134.391263352707028 -76.082142868262821,39.438387725831682,134.378158101812005 -76.082375814438763,39.438566787694008,134.379000916145742 -76.084235950842853,39.439996643699175,134.385730946436524 -76.084372410713641,39.439977487800412,134.385821865871549 -76.094561960605546,39.438547104009018,134.392612759023905 -76.103199460626556,39.437334593118159,134.398372239433229 -76.113729011416027,39.431528018544995,134.391342405229807 -76.116063275891321,39.430240776476701,134.389784395694733 -76.117787769734377,39.429289795538523,134.388633476570249 -76.118139908412516,39.428846047150763,134.387588071636856 -76.121958362623531,39.424034213066236,134.376251718960702 -76.122721645175076,39.423072360761466,134.373985576443374 -76.122856827427256,39.422902010528261,134.373584222979844 -76.133081685203635,39.416255582594957,134.363488739356399 -76.143192647429089,39.409683189805115,134.353507940657437 -76.147341312517696,39.406986447809764,134.349413324147463 -76.148016067912167,39.407040849743844,134.350348968990147 -76.151217903325275,39.407298996680368,134.354788947850466 -76.151484615551738,39.407320500266572,134.355158809572458 -76.151901964542489,39.407354148892658,134.35573757532984 -76.152916517448801,39.407435946889294,134.357144537381828 -76.153027699453489,39.407444910902157,134.357298727147281 -76.15332528786098,39.407468903870203,134.357711424119771 -76.158076729910093,39.407851987329515,134.364301117137074 -76.159560357845933,39.407971604344802,134.36635887529701 -76.159742683421726,39.407986304284485,134.366611761972308 -76.160326836151143,39.407337786743454,134.365162434987724 -76.172102555824381,39.394264560652765,134.335944071412086 -76.17244285398678,39.393886766776696,134.335099655203521 -76.172715434551051,39.393424000870027,134.333902911283076 -76.176089649452976,39.387695523441636,134.319087855517864 -76.176565924399696,39.386886941194952,134.31699656508863 -76.17689685090194,39.386325120137002,134.315543471835554 -76.181025525822051,39.379315779753391,134.297413282096386 -76.181042899596505,39.379286283922262,134.297336984425783 -76.200325211737265,39.367898404815648,134.282046826556325 -76.203315763626733,39.366132224336688,134.279676277190447 -76.22794586564396,39.351586011180345,134.260161144658923 -76.22859538042394,39.351786576492145,134.261546149849892 -76.23058371081126,39.352400558061333,134.265786036849022 -76.234746090166695,39.353685869706965,134.27466204110533 -76.235713030767101,39.355175522312585,134.280596409924328 -76.235735002988278,39.355209372351091,134.280731257051229 -76.236765145957406,39.356796393473189,134.287053303793073 -76.237490519009569,39.357913891130138,134.291504833847284 -76.238913552479019,39.36010619281744,134.30023751500994 -76.240847395586897,39.363085439330277,134.312104213051498 -76.24223839415194,39.363244387757319,134.314190707169473 -76.244347501744812,39.363485393996548,134.317354466766119 -76.245413860834859,39.363408067452596,134.318306709639728 -76.245958710813213,39.363368557904359,134.31879326608032 -76.246243789899992,39.363347885524114,134.319047851487994 -76.251077688464107,39.362997357566087,134.323365083895624 -76.251454140954138,39.362812867621273,134.323190415278077 -76.267336045474025,39.355029543655633,134.315825420431793 -76.266247967923547,39.351685687783551,134.303726205602288 -76.263990298759353,39.350311579780943,134.296708818525076 -76.259347711519524,39.347485914981085,134.282278289087117 -76.259312655046216,39.347414690345644,134.282007119618356 -76.254898458650274,39.338446317287598,134.247858732007444 -76.262978230657197,39.336386457712344,134.250286437571049 -76.263442076616144,39.336268204679691,134.250425881706178 -76.264043718730093,39.336114821852505,134.25060676317662 -76.264547701887594,39.335986336229929,134.25075828935951 -76.264594641011016,39.335943533202112,134.250672117806971 -76.266585332517423,39.334128253802028,134.247017569839954 -76.266747708891714,39.333980185411754,134.246719471178949 -76.267064807289884,39.333691028509548,134.246137337759137 -76.267227402898243,39.333542760203223,134.245838842354715 -76.267377890192847,39.333405533272575,134.245562571100891 -76.273641655492966,39.327693706990623,134.234063370153308 -76.277048903389371,39.324586692748277,134.227808219380677 -76.278783461107039,39.320416508449703,134.216203428804874 -76.278836402954227,39.32028922686284,134.215849212370813 -76.279210031960361,39.319390956491226,134.213349363766611 -76.279321711842101,39.319122458256153,134.212602137587965 -76.279469743116948,39.318766564827527,134.211611683480442 -76.281570340772035,39.3137163556896,134.197556109167635 -76.281748882185354,39.313287110484588,134.196361375972629 -76.28205859133935,39.30960896253999,134.184743634425104 -76.282344737077452,39.306210657026917,134.174008900299668 -76.28240024310459,39.305551459948312,134.171926496550441 -76.282526838635107,39.30404799433407,134.167176925577223 -76.282548773905233,39.303787488107162,134.166353946551681 -76.28267123865092,39.303789740881946,134.166499773971736 -76.297516783386328,39.304062828985003,134.18418107368052 -76.298849246037378,39.304087340019422,134.185768414288759 -76.292049267824737,39.319786761694587,134.229154950939119 -76.299749642503173,39.330886248653648,134.27396506909281 -76.299749708248157,39.335636309225094,134.289411447942257 -76.299749781900587,39.34095634164057,134.306709190830588 -76.299749794770406,39.341885804080789,134.309731053188443 -76.298541188112253,39.343921268980004,134.314981770701706 -76.296529584866747,39.347309093950848,134.323720628395677 -76.295949774238565,39.348285577229198,134.326239357702434 -76.296649841439802,39.351685434038259,134.338082329370081 -76.302742109110881,39.353893528449262,134.352147723548114 -76.311590264435281,39.357100472609396,134.372576475143433 -76.311801089309171,39.357176884423161,134.373063242062926 -76.312332828390396,39.357369609061635,134.374290957115591 -76.312651381478958,39.357485066117505,134.375026458874345 -76.313582128926598,39.357593637862834,134.3764320127666 -76.313836248726602,39.357623280952694,134.376815771684051 -76.315328276666008,39.357797326100261,134.379068998619914 -76.323660139490883,39.358769238383026,134.391652759164572 -76.324651745587843,39.358884909290758,134.393150529824197 -76.331000004383142,39.357816044349811,134.396860633045435 -76.342416214283162,39.355893881587669,134.403536302037537 -76.340915361236384,39.351845874609879,134.388683109544218 -76.336384942063475,39.33962671120684,134.34383934084326 -76.335373770594572,39.336899442700769,134.333828655071557 -76.334993845990496,39.335874733794405,134.330067205242813 -76.334896717176832,39.335612764026081,134.329105566255748 -76.339870578262122,39.327460761172077,134.308232503943145 -76.340542751054841,39.326359090983033,134.305411462672055 -76.334792316456912,39.321289136630263,134.282412392087281 -76.328551260459491,39.315786618768826,134.257448979653418 -76.338830273813286,39.307478027976423,134.242062442936003 -76.340789018931616,39.305894762051423,134.239130524918437 -76.342404503074249,39.304588956120632,134.236712435260415 -76.354178425284616,39.312328414924806,134.275228728540242 -76.355789636205628,39.313387526773688,134.280499283224344 -76.356468034608696,39.313833464532166,134.282718429341912 -76.365363285479063,39.313518402918831,134.291775302030146 -76.366505247328575,39.312628638618541,134.290175971575081 -76.381635576650211,39.300839779980826,134.268987199291587 -76.381707827612132,39.300443785526063,134.267780973576009 -76.383994709507135,39.287909799824192,134.229595812037587 -76.384318701678936,39.286134057434424,134.224185060709715 -76.384864205349928,39.283144250684146,134.215074503794312 -76.385874376571635,39.277607685411617,134.198201776482165 -76.386124397794291,39.277445612884669,134.197957990691066 -76.396109578192437,39.270972868695232,134.188222968019545 -76.396274904424203,39.270721466290262,134.187592309899628 -76.401067566174831,39.263433532185964,134.169308925978839 -76.401160863970034,39.263291659420034,134.168952981941402 -76.402076461374619,39.261899361392231,134.165459835901856 -76.403020908120254,39.260463193779827,134.161856537684798 -76.403328633237294,39.259995253318465,134.160682470537722 -76.402885085876989,39.259733515866017,134.159326580353081 -76.387910065557278,39.250896751116009,134.113547543995082 -76.382352910321146,39.251188785700343,134.108190234750509 -76.383330620248785,39.248972719013466,134.10208245087415 -76.385352902356317,39.244389036419257,134.08944829646498 -76.385672173816033,39.24392292028562,134.088292459957302 -76.390352944807844,39.237089290788219,134.071345967240632 -76.39053626235436,39.236942673075148,134.071076485328376 -76.39459866355385,39.233693557079334,134.065104687586427 -76.395354032857327,39.233089411313841,134.063994297757745 -76.399287283334473,39.231131315768764,134.062082387506962 -76.400094954106834,39.230729231907034,134.061689846217632 -76.418593681631904,39.221519984707591,134.052704527042806 -76.418654540084347,39.221489687459751,134.052674984559417 -76.419264012858349,39.220358999299926,134.04968333337456 -76.420174670582128,39.218669555657485,134.045213169418275 -76.426254563016528,39.207390196542967,134.015364951454103 -76.426386279788574,39.207311327933617,134.01525767147541 -76.442384901934332,39.19773176522645,134.002230331301689 -76.443455913234914,39.197090471257653,134.001358456909657 -76.448595311388431,39.199659809313793,134.015583432279527 -76.462535026191347,39.206628687481967,134.054165873676538 -76.463653665831643,39.207187928718348,134.057262032292783 -76.464457659341008,39.20758986899294,134.059487315826118 -76.472100410642668,39.207221504942403,134.066989464685321 -76.481058123332886,39.206789762584584,134.07578497659415 -76.483128181043497,39.206107611277368,134.075920128263533 -76.486502248244079,39.204995746452468,134.076140745542943 -76.487346661266642,39.204717484911605,134.07619602419436 -76.489858335027307,39.203889806758099,134.076360593549907 -76.490480130941904,39.20405994693877,134.077623559162021 -76.490752415595452,39.204134451384768,134.07817661575973 -76.491745224703052,39.204406110810041,134.080193190835416 -76.498952847381901,39.206378311319533,134.094833728857338 -76.499359642814071,39.206489621552059,134.095660061575472 -76.501061752567637,39.209479803458798,134.10734301712364 -76.501810099837414,39.210794462785387,134.112479285337031 -76.501959780403126,39.211057414171151,134.113506599329412 -76.520780701590851,39.224626449818196,134.179160934872925 -76.521560536853315,39.225188675882258,134.181881053373218 -76.521917425567537,39.224920390459012,134.181414257735014 -76.529563480990959,39.219172589733517,134.171413955278695 -76.530625600666568,39.218374158138566,134.170024868100882 -76.53526178607855,39.214888979404044,134.163961640559137 -76.535936580951002,39.213961177356957,134.161709369160235 -76.536861801362065,39.212689055376011,134.158621192909777 -76.534079681044986,39.209311080450156,134.144443346187472 -76.534061674184898,39.209289217009726,134.144351578317583 -76.53432580823187,39.208852839642191,134.143231331370771 -76.535736460182164,39.206522293504307,134.137248317711055 -76.536361687335798,39.205489352158445,134.134596452116966 -76.535161470286781,39.192289898820704,134.090216957964003 -76.526761054442872,39.179590485700551,134.039236632175744 -76.526430043116264,39.179428809122044,134.038331838324666 -76.526007035483474,39.179222198588498,134.037175574339926 -76.525196597320104,39.178826354522464,134.034960298798978 -76.521245856258957,39.176896685513981,134.024161210283637 -76.520267477804893,39.176418814007313,134.021486876532435 -76.512809601158935,39.172776147162871,134.001101213507354 -76.509359439457526,39.171090977205843,133.9916703812778 -76.501901114062932,39.162969370117978,133.956675376743078 -76.501486846083026,39.163045859656506,133.956452396698296 -76.484997673815258,39.166090384520643,133.947582128457725 -76.484819420457058,39.166017272141232,133.947140456177294 -76.476957398384997,39.162792585953596,133.927660273388028 -76.475781041071031,39.161119703017718,133.920862122438848 -76.47477638615274,39.159690995897122,133.915056048892438 -76.472457181428794,39.156392884031234,133.901652307249606 -76.46987254176932,39.154845088983627,133.893656522966921 -76.460092505132778,39.148988376134028,133.863400377333164 -76.459846948492867,39.148841326098854,133.862640685401857 -76.459622872816198,39.148707139802333,133.861947456374764 -76.459323625022435,39.148527937160495,133.861021660268307 -76.459166069993969,39.148433586331798,133.860534222796559 -76.453755492279925,39.14519349620786,133.843795070424676 -76.441083280945747,39.13898968013801,133.809109589084983 -76.431918779656002,39.134503100870837,133.784025048837066 -76.43110283475697,39.134103646349608,133.781791687943041 -76.429653640590502,39.133394177900335,133.777825023978949 -76.433453680493614,39.12839434983708,133.765825250186026 -76.433674219773849,39.122437988784235,133.746623683720827 -76.433953509179148,39.114894895690327,133.722303030081093 -76.433914478251296,39.11478341675712,133.7218944048509 -76.428168288500672,39.098371326513053,133.661724410951138 -76.428036879337682,39.097995999703151,133.660348116420209 -76.427428238287902,39.096257617853354,133.653973457403481 -76.427255131502548,39.095763195575522,133.652160357683897 -76.427248205503872,39.095743413751137,133.652087816037238 -76.424580757390189,39.088124730420866,133.624146650545299 -76.424292646296252,39.087301836363309,133.621128425933421 -76.424242881364378,39.087159699293309,133.620607087388635 -76.423685820155683,39.085568638175147,133.614771184511483 -76.423184081867049,39.084135588679665,133.609514674171805 -76.423051636786923,39.083757303107795,133.608127070590854 -76.422831755060599,39.083129283670495,133.605823382735252 -76.424052690763276,39.0758975685618,133.583569230511785 -76.433345329505272,39.063336326004681,133.553079521283507 -76.439816638815287,39.054588790786859,133.531843380071223 + + + New Jersey + + + New Jersey + 0400000US34 + 34 + 7354.220000000000255 + + -74.901177444983389,40.078809027092198,135.152352065779269 -74.838947793658718,40.102569599415069,135.162132191471756 -74.741542392822012,40.136869049631393,135.168411542661488 -74.72524107381183,40.148668721362704,135.188975381664932 -74.725116358959482,40.14898280838792,135.189852190203965 -74.722541087549303,40.155468478112759,135.207956433296204 -74.723241201682683,40.162267207453183,135.23055240791291 -74.759551889201163,40.202998051644833,135.400053239427507 -74.77164537928202,40.216563700983478,135.456478415057063 -74.861434996657422,40.286236263263902,135.775592537596822 -74.938900167537767,40.342283063385672,136.037685500457883 -75.025724511238636,40.405101313688164,136.331240200437605 -75.036497869642304,40.407955114835559,136.351888138800859 -75.059798723378506,40.419710468799018,136.414359834976494 -75.062439868738679,40.424493262197501,136.432443368248641 -75.071519592492351,40.456808939138746,136.54518077801913 -75.066805361988102,40.521136497463736,136.744935248978436 -75.066042433573671,40.52778924756138,136.765282084234059 -75.068296879959959,40.538068780350685,136.800390381366014 -75.069567765534671,40.543863599749116,136.820178071968257 -75.101279066962576,40.56945035383638,136.93546347040683 -75.118246645820889,40.574850006058,136.970797051675618 -75.136344215652358,40.577262763696353,136.997860046103597 -75.148323534922454,40.574790759665063,137.002855377271771 -75.191118031104267,40.590958783858525,137.100120203569531 -75.191815122965082,40.592979829605163,137.107283935882151 -75.197760502304263,40.610216988895061,137.168368769809604 -75.201665757414204,40.619992581126269,137.203573496080935 -75.204878899025829,40.693131750209837,137.438817276619375 -75.197492543330938,40.753262511911061,137.621174747124314 -75.172546178947982,40.779375722300571,137.677018560469151 -75.16460895267474,40.780016763806984,137.670551774092019 -75.150336477433413,40.776417019740691,137.643906044773757 -75.135358018277685,40.775396183073155,137.624663416296244 -75.109462498488398,40.792724737032884,137.651774570345879 -75.054250847055869,40.861528575439507,137.810225604102015 -75.05198586261541,40.867290375189981,137.826000262983143 -75.05349499947468,40.873679119853975,137.847769631072879 -75.118724109670325,40.954647504984962,138.172476845793426 -75.120853297989314,40.963270160542919,138.201893189921975 -75.121276324843024,40.964254119744112,138.205441455356777 -75.121395410612323,40.96992590391563,138.223421937786043 -75.121523941878479,40.969937368609969,138.223594961687922 -75.132324750081949,40.970900775929202,138.238136172294617 -75.136486939688851,40.975430569689642,138.256827980279922 -75.131536043197812,40.992715956612933,138.305938338860869 -75.110074592933287,41.005724643363273,138.324002505280077 -75.092337183279312,41.013905481810681,138.330857357941568 -75.070236627207066,41.020970398823394,138.329575516283512 -75.052753219126387,41.02876424987322,138.335507200099528 -75.037940887141943,41.036324087591915,138.343548575416207 -75.026961675541557,41.044308877448103,138.356999568641186 -74.981631593688491,41.079799327516774,138.420486685819924 -74.969346610588701,41.089417655320979,138.437697318382561 -74.967716643619582,41.095045456862444,138.453650062903762 -74.968346946278302,41.095669576848493,138.456277439370751 -74.970391761994748,41.097694334856179,138.464800932444632 -74.975295898006848,41.105531991505664,138.494604760780931 -74.924125990557158,41.139765136242886,138.547971968539059 -74.883095383728289,41.182453873630948,138.638604152016342 -74.86824334533236,41.210370949954765,138.710479232482612 -74.865312492048119,41.226470371038133,138.757843578234315 -74.868223637659554,41.230477196774046,138.773461692966521 -74.862634655546856,41.243190767163966,138.807402223348618 -74.839322477693912,41.278900625082052,138.894685975275934 -74.83101337321051,41.288814323635997,138.916978814639151 -74.79680281028935,41.320564422347729,138.980387658812106 -74.762685040558608,41.338011054886771,138.999178715981543 -74.695867339321126,41.359035825514454,138.994998739100993 -74.458528617571574,41.249843854842474,138.405678079463542 -74.393040177982584,41.217214610978033,138.235246143303812 -74.366604778385948,41.205021317874206,138.169521568343043 -74.235409394973402,41.144507618351973,137.843372846022248 -74.214308187529497,41.135453084734792,137.793057966046035 -74.097717411839113,41.085423950596407,137.515104428865016 -74.093417255515575,41.083524056676346,137.504681905731559 -74.041983384954136,41.060717328408344,137.379766821861267 -74.041978384775376,41.060715328523798,137.379755363799632 -73.912804682899761,41.002929540145828,137.064491828903556 -73.90360434980127,40.998929764454125,137.04240757226944 -73.89490308621788,40.99882983797923,137.033178265206516 -73.918828696600002,40.919212647187891,136.805510288104415 -73.920628693708906,40.915113787520923,136.794362362474203 -73.928393956660983,40.89731790846276,136.74590050149709 -73.934329669062933,40.883714864087679,136.708845325745642 -73.934331592016676,40.883711829029714,136.708837673068047 -73.93900470706177,40.876336105646452,136.690236631780863 -73.949204787187639,40.860036640557439,136.648992393165827 -73.987787665640525,40.799983291558028,136.497973104007542 -73.993953595643859,40.79038616606443,136.4738256232813 -74.001829176285682,40.778128009641243,136.442977424710989 -74.010108300757352,40.765241746969679,136.410542203113437 -74.014708341766024,40.758241976076953,136.393026913516223 -74.025467011722114,40.71107868376339,136.254052000120282 -74.039462449134788,40.712383522035374,136.272667052224278 -74.05210962146063,40.697444989628671,136.238177806138992 -74.070810025276174,40.686145270377253,136.221537854522467 -74.083711262217861,40.675345578698639,136.200493838638067 -74.090911287012844,40.661547047286817,136.16398913320154 -74.08832230639662,40.655251029693211,136.141243372112513 -74.095011268792547,40.651347403640983,136.135733053088188 -74.144313635704037,40.643547306080315,136.162008933722973 -74.162324692658999,40.645735799450279,136.187684772536159 -74.182010826184396,40.648127828473989,136.215759155340493 -74.186954968331065,40.647719804326023,136.219597824849188 -74.190034029290061,40.645475865274562,136.215649213641882 -74.203151244343971,40.632697248001556,136.18857095297426 -74.207658921438622,40.596215077487095,136.076951271854341 -74.209915689250792,40.577950287781618,136.021034293808043 -74.21571564560611,40.562250842538994,135.976973492652178 -74.219116700181345,40.558850945503721,135.969664518721402 -74.232517127695701,40.560850761240069,135.990012121386826 -74.249569503858922,40.551247992270888,135.977141090668738 -74.252369486578104,40.543948249651123,135.956758478656411 -74.247165036932657,40.522611109993363,135.883190006949008 -74.269218394407872,40.500853768204983,135.836699883453548 -74.270926034108527,40.496662419343181,135.82508943323046 -74.273618376690109,40.490054147777229,135.806781884282827 -74.268517996122299,40.473455826766816,135.748389663174748 -74.262816728567628,40.466356145556198,135.7197290007025 -74.237615882894303,40.459456613106546,135.671339728869498 -74.225961174757174,40.454951729275336,135.644760879687965 -74.224973854068139,40.4545701010979,135.642509332858026 -74.223885720131278,40.454149505666173,135.640027903020382 -74.210713938517102,40.449058228747148,135.609991334378719 -74.207113739321514,40.442358515393316,135.584792573936284 -74.207344860511711,40.440440403425661,135.57889405824244 -74.209581250997104,40.439171159448364,135.577164634130895 -74.208130579227571,40.437086014207239,135.568976228125393 -74.203053376051713,40.440591536261479,135.574900708161294 -74.194833094357932,40.442646539508658,135.572904756292701 -74.192234052345427,40.444641058311369,135.576578737236559 -74.188712282850346,40.449058404912165,135.587045476771891 -74.175712007790523,40.457258193544824,135.599738018587232 -74.175818158798123,40.456142539663595,135.596278274431825 -74.175999344332752,40.450795764895538,135.579354874789715 -74.177766600029429,40.449391089841484,135.576700681820512 -74.176271198035806,40.448258310819476,135.571516402065754 -74.170901457206369,40.452291089834375,135.578828792087734 -74.167933317238877,40.450388024315863,135.569645122624934 -74.167117629727031,40.448779467920332,135.563646484166384 -74.164953300903122,40.449963449541286,135.56518151704222 -74.164238470561145,40.450075659577962,135.564796019345522 -74.158711377620207,40.448258675698973,135.553222502581775 -74.154535338328145,40.449298932941915,135.55220315605402 -74.153609804779663,40.448995770464293,135.550268838182092 -74.152875774657559,40.449713810220665,135.551802975125611 -74.143809985385715,40.452058648666856,135.549869833514094 -74.140809937014254,40.455058557273276,135.556349623017013 -74.139339018500436,40.456119463664066,135.558214463293552 -74.136747281224956,40.456847453036893,135.557847279123962 -74.134650580391693,40.456323332448335,135.553987653926015 -74.132058813039762,40.45489653282683,135.546723487786949 -74.128389570088615,40.452712655606874,135.535914585925639 -74.125615689917979,40.451232071906723,135.52828864287585 -74.123250543993493,40.449910059919333,135.521595571190119 -74.11778574770463,40.447721408335717,135.508903278037906 -74.089007186858183,40.440059547831979,135.454444154165685 -74.077106767690239,40.435359823549533,135.42702370043844 -74.05990510447792,40.424361383882612,135.373916409909725 -74.048804721539909,40.420561618552249,135.350212116725743 -74.007302377094064,40.412762249039261,135.282145558856428 -73.999424470949918,40.412565379135756,135.273345742374659 -73.996405540217339,40.421125519284331,135.297659407369792 -73.99260137127537,40.444561142590054,135.368823740631342 -74.006997097215148,40.466277193430429,135.453297128900886 -74.0187035502924,40.473858808976779,135.489703527651727 -74.018837583395211,40.475989726064419,135.496664190664887 -74.014951496467702,40.478122675099662,135.499464759603143 -74.008020273441247,40.476949775337907,135.488528070040047 -73.99660284248445,40.470359119353574,135.455599372275174 -73.979200934389155,40.441861352941004,135.346292396076024 -73.977900464309812,40.410162582791152,135.243333142250776 -73.972298797456233,40.373365044732822,135.119476484134793 -73.972298476147003,40.349666958618343,135.043395114131272 -73.978358998542078,40.301031788654456,134.893413592129946 -73.982597855078922,40.2810705268814,134.83362733758986 -73.994208637473946,40.239330050730317,134.711379108019173 -74.016933372243898,40.168577615624891,134.507078020833433 -74.031097189203408,40.124479218083927,134.379586369730532 -74.034996040703859,40.104780954034695,134.320066882297397 -74.032776517623063,40.102712691754014,134.311074835248291 -74.032233924163776,40.102207076112528,134.30887655634433 -74.034461976609634,40.101184098333341,134.307896675541997 -74.040336908684878,40.083103756281133,134.255633349530399 -74.0597134832162,40.002913847933463,134.016610867343843 -74.065050274202804,39.980827554688375,133.950703856535256 -74.078161754492143,39.912664121343234,133.743579214438796 -74.091858686762123,39.801655376290398,133.397548862732947 -74.097984442832953,39.769525594162396,133.299500785768032 -74.097819022569624,39.764709048076796,133.283658403903246 -74.099833637601719,39.761217191670603,133.274413535371423 -74.102356417709672,39.757852020133257,133.26611400488764 -74.114568574159819,39.742398533793185,133.228655125945807 -74.142646725977087,39.691116338935984,133.091189857572317 -74.191888329895406,39.626801498103113,132.933407389558852 -74.2414208643564,39.556596895387081,132.756556103006005 -74.249958024506213,39.549680103192173,132.742992676794529 -74.278285411507738,39.515751230251212,132.662103691138327 -74.292500745593387,39.509392371532066,132.656384310685098 -74.311953303851496,39.508402257699153,132.673783761449158 -74.313367057881024,39.501556879473348,132.652901115827262 -74.31460521311827,39.495561748410971,132.634609596803784 -74.309259925918539,39.485633186271102,132.596460120752454 -74.305693808118605,39.484633254223738,132.589403789490461 -74.303099679384914,39.480623434522769,132.57353179808706 -74.305258644568795,39.473133716193445,132.551316366530955 -74.335720021510951,39.43369105061015,132.454555749893188 -74.36790657253627,39.403707995433379,132.390580976381898 -74.407609414896129,39.379207662829572,132.352590762078762 -74.407709370708545,39.375607806162257,132.340896476060152 -74.409154297290314,39.36676314894742,132.313439338468015 -74.413609372057849,39.362508284252272,132.304239944554865 -74.460812546684878,39.346708545061055,132.30283020157367 -74.522716948245773,39.315509307714947,132.266723495908082 -74.542362952523263,39.301939008744071,132.243248083628714 -74.552071540348109,39.295232889946014,132.231649708002806 -74.554359520448202,39.288609137998428,132.212361484766006 -74.561877632157021,39.280371409642342,132.19338389672339 -74.581929114681543,39.272513566990497,132.189110642299056 -74.59884245162074,39.260545914544593,132.16798138525337 -74.615402748997695,39.246354354609608,132.139171727001667 -74.637228073707789,39.222530141337607,132.08437526319176 -74.647517258108806,39.213698415793466,132.066426974721253 -74.652365223853749,39.200274918593571,132.027518527582288 -74.672352560722928,39.181499517768067,131.987318692728877 -74.715264026308489,39.1215036019005,131.836187507025898 -74.71624301680626,39.118592711891424,131.827659094706178 -74.715057952826484,39.116330812774152,131.818928404711187 -74.705331581587828,39.109558163771908,131.786106808111072 -74.706798560113299,39.104637351286499,131.771480581723154 -74.739239135717284,39.076428236755831,131.713604040443897 -74.779700638523835,39.024776011109061,131.587088259868324 -74.787279559905272,39.001816883483606,131.519530366174877 -74.7936466390927,38.993695163093193,131.499624831601977 -74.808841001363831,38.987652288403552,131.496168512851 -74.820278248014461,38.981106463950319,131.486976310610771 -74.851672835063155,38.956243226706803,131.438981045037508 -74.865383048783812,38.942115693228708,131.407218625769019 -74.866123083595753,38.943144645461331,131.411424924619496 -74.871422264476749,38.945248517784641,131.424147529527545 -74.88323458350898,38.943464496779718,131.431116966530681 -74.907976173156626,38.933699698284521,131.425810480490327 -74.921340522965409,38.930841708679303,131.430939639918506 -74.934497895867082,38.930224629371857,131.443255555815995 -74.964390795978986,38.932899282892912,131.484729918651283 -74.968201935192582,38.935118162173779,131.496224092319608 -74.97292316251125,38.942074841174623,131.524363620206714 -74.956291475698521,39.002964495382962,131.707207310013473 -74.950398492859023,39.017338958054694,131.748190872371197 -74.939248425354734,39.036886252825688,131.800484847277403 -74.904592104273519,39.089136409209146,131.934896091930568 -74.898712082677065,39.100509995204256,131.965947983786464 -74.893475119093225,39.114881454896604,132.007558520883322 -74.886842326038291,39.145324275865924,132.100504416972399 -74.88809556213937,39.160521651424183,132.151837135665119 -74.906110297641888,39.176640856418203,132.224387553520501 -74.915865882920372,39.179248797316845,132.243557819165289 -74.963313161143788,39.191932782004962,132.336821679957211 -74.977197591281467,39.193965588909577,132.358609259128571 -74.998934209117735,39.192947456174458,132.378938149660826 -75.027112058575312,39.19531513497386,132.417421433143318 -75.029818149556576,39.196254075372046,132.423454275354743 -75.028757183860392,39.201175885070796,132.438452825881541 -75.024519101976381,39.204287793340754,132.444046180695295 -75.024370126717102,39.206484705819868,132.451093968935311 -75.027309279010112,39.211543478020758,132.470899023115635 -75.036605622636685,39.21710817888296,132.499292499385774 -75.042596797876314,39.217204126988534,132.506140143610537 -75.048730925528616,39.213395231582744,132.500333853065968 -75.053260082285561,39.21530211828231,132.511530670337379 -75.063440377236503,39.215257038459562,132.522490273229778 -75.087329998993127,39.209852065033957,132.530838891863823 -75.101954469781518,39.21334980637284,132.558288112282753 -75.108221648266962,39.213095766300405,132.56430294457823 -75.115683813700841,39.209246861811359,132.559833792969584 -75.128005935139257,39.191459481526181,132.514950037002563 -75.13748407284578,39.181118823423255,132.491384016349912 -75.140072155789554,39.18171477853361,132.496172185987234 -75.166916223797401,39.203534680733334,132.597147139720619 -75.165735385799479,39.218298093827009,132.644268387928605 -75.171381789535502,39.236334320166712,132.709572128020227 -75.178444102295231,39.24443693629177,132.743854274041951 -75.20679618970739,39.264308906126288,132.839991734363139 -75.213449384519762,39.26444484698002,132.847725136205554 -75.242579380942914,39.27578615452741,132.916779484599829 -75.244996499081736,39.27937899015344,132.931188710965216 -75.243821503562202,39.282262883387297,132.939338554628193 -75.245297614932298,39.2873886648593,132.957730242051184 -75.252747021232182,39.301601031990224,133.012393430806696 -75.272570651592176,39.305728705426304,133.047632378526032 -75.283561903580207,39.30074281737771,133.043385426513851 -75.286274890571519,39.293900071165382,133.023981825448573 -75.289839958381464,39.291245149325867,133.01921053789556 -75.306952617515861,39.30339952102274,133.077750423923135 -75.316144003191837,39.31228008882465,133.116879715584219 -75.327697632126501,39.334159114217954,133.201073720119894 -75.328406744068417,39.340955834923037,133.224057221785188 -75.334687007804163,39.347020539958791,133.250764755532146 -75.342913291653318,39.350382337969705,133.270780585706234 -75.356502674028306,39.349508262854577,133.282858537510037 -75.365960861669194,39.343073445014852,133.272241024300456 -75.390975814311645,39.359943563045427,133.35483440104872 -75.39527701312872,39.365437307112714,133.377497707493603 -75.39612714093218,39.373081992781451,133.403380983509123 -75.400250369742736,39.381173633944435,133.434318133629858 -75.408240537809718,39.38363791421979,133.451147792860866 -75.423046125806465,39.388204165874377,133.482335548847914 -75.432750476220178,39.393307881752314,133.509662971831858 -75.443340927634992,39.403973366955,133.556098433211446 -75.466161086057454,39.440610709941907,133.700608578510582 -75.477228396160342,39.439806651883416,133.710180758498609 -75.484521644319031,39.442504484089575,133.72700216434896 -75.506622449743404,39.454606818030037,133.790763547644019 -75.509333612742196,39.460810547053853,133.813944678753614 -75.537382445578558,39.462238260419845,133.849526415579021 -75.543845767659931,39.472125811040847,133.88882820494473 -75.545319935167029,39.481280431991806,133.920232945121825 -75.54364511793743,39.498245765928353,133.973553120158613 -75.529039715300343,39.49979182358291,133.962473451159894 -75.528092715070315,39.501789751317425,133.967925070784986 -75.515708209061842,39.56428735262871,134.157324187457561 -75.512884195470576,39.569291175843723,134.170459250919521 -75.513684360777503,39.579674754534388,134.205042777583003 -75.52662981964869,39.58572240691224,134.238919069990516 -75.532086032063617,39.58965820502133,134.257696691900492 -75.535430162093519,39.59205808177979,134.269164940342307 -75.538166276660462,39.594617957142248,134.280482260510325 -75.540493362177514,39.595924885879157,134.287284513004124 -75.540902375882609,39.596057877214477,134.288166370242834 -75.544918514705557,39.59767377975755,134.297831151634455 -75.546358567288109,39.59845773664761,134.301960089243948 -75.556823995308235,39.607497289974397,134.342804030515254 -75.560400428594164,39.631484303828891,134.424499960616231 -75.527797836769295,39.657384539536785,134.472528511658311 -75.527297831849864,39.658084515764877,134.474245867691934 -75.510295734666869,39.686983505081223,134.549133159220219 -75.510695757312376,39.687783469971301,134.552162354812026 -75.504995759315861,39.699983031581482,134.585386077873409 -75.476337375761076,39.732725965832032,134.659857514314353 -75.475121401174817,39.737141800471406,134.672804758884013 -75.470192369742875,39.745281517812927,134.693719681352377 -75.467216381219131,39.752405259530711,134.713488394394517 -75.467202381252292,39.752437258375913,134.713576494716108 -75.449088173197111,39.775636486971969,134.768707700073719 -75.441576340437905,39.78259327853101,134.782959027215838 -75.438891006153227,39.785080196380463,134.788053565658629 -75.417047232559824,39.797497047008747,134.804259094409645 -75.415993591785821,39.80345265654109,134.822343182750046 -75.391121301885903,39.81821554108123,134.84282483626157 -75.375586743433189,39.8274360388614,134.85562514141202 -75.307450084673718,39.851477646830162,134.858912702649832 -75.272108046476006,39.851105950817825,134.819229077547789 -75.235974088561036,39.858278962960171,134.803086129017174 -75.21191985485035,39.867371885830046,134.806306062266231 -75.211372496788911,39.8675787967912,134.806379565037787 -75.185898967230415,39.883280385222378,134.829410349950194 -75.15487131936527,39.907808287274086,134.874914525076747 -75.134166014617008,39.924176195570119,134.905286253429949 -75.086699017074721,39.969234492128031,134.999214246869087 -75.07296201957169,39.982274409487722,135.026395161636174 -75.0569834374609,39.993456621418986,135.045173199847341 -75.015286626560737,40.022637094305786,135.094197740778327 -74.975656099214788,40.05037153067336,135.140822960063815 -74.975233228175142,40.050532991617189,135.140887877903879 -74.901177444983389,40.078809027092198,135.152352065779269 + + + North Carolina + + + North Carolina + 0400000US37 + 37 + 48617.904999999998836 + + -75.754670299877603,35.201472629435195,119.504802810028195 -75.746125189711364,35.204890488931383,119.50707551650703 -75.735075675328176,35.206207722692085,119.49883914552629 -75.718919376871213,35.211238285403191,119.497991316951811 -75.709850822764238,35.215772340799269,119.503682196140289 -75.699875385613524,35.223026785085821,119.518111799843609 -75.695341085922635,35.224840407008756,119.519325695931911 -75.688393607431735,35.233031051563074,119.540680336765945 -75.684909878173045,35.234772831063594,119.542868538759649 -75.68281961552519,35.23477284666675,119.540417675860226 -75.67629698893731,35.230281313399566,119.516592145897448 -75.665414653448693,35.229374618116729,119.500570209696889 -75.641836246397304,35.235722369892635,119.495814762078226 -75.631260049403664,35.240346834392135,119.50008971709758 -75.616279998696129,35.250797453778077,119.520198294892907 -75.599906413688402,35.258112932651372,119.527391706593335 -75.599213982488678,35.26292658017762,119.543914321810007 -75.598861384574036,35.268563448461009,119.563795861788094 -75.597816297590143,35.271350271463454,119.572606229223311 -75.586319858380151,35.268215199278053,119.547883454710245 -75.582836075919758,35.265776772885459,119.535033468157053 -75.561933545970547,35.267867031485686,119.518142781220376 -75.536640580926004,35.27471540457838,119.513276995159686 -75.530292675234591,35.29013098716743,119.561362955719233 -75.524851808405089,35.320055357878239,119.662679453380406 -75.519410881475608,35.338191317268553,119.721550165675581 -75.513510355584899,35.364708814139398,119.809976102784276 -75.507622240711598,35.388972022458709,119.890266316011548 -75.501274577671225,35.426150758320027,120.016317314468324 -75.495833712487411,35.456075099377344,120.117305207997561 -75.488579136644617,35.48690630227663,120.219361636787653 -75.489486121386776,35.499601452023064,120.265886949375272 -75.490519166602468,35.51031948844367,120.305465837940574 -75.488429084850097,35.527737052765332,120.36538502201438 -75.483138570987691,35.540407371162338,120.404579707421362 -75.479511255829351,35.554916144605833,120.452269176021218 -75.479511774172835,35.601162821478496,120.617579944431782 -75.482232638323353,35.624739529060037,120.704939186573029 -75.488580965741832,35.650129799281977,120.802925787866116 -75.499578684973287,35.668122246072848,120.879863006994128 -75.508288239373911,35.682404546366925,120.940890588797629 -75.516649715224119,35.723509867890208,121.097052438184619 -75.516301431987259,35.732218637047183,121.127660075202584 -75.534417471639401,35.775413978509285,121.302376977168024 -75.5298975739871,35.77812577236223,121.306781482882798 -75.523137197130126,35.776014589423063,121.291437093168497 -75.50333129655877,35.744751149674073,121.157244089059532 -75.496989958823292,35.730353847634291,121.098636826500297 -75.480030928244375,35.680475229859681,120.901252115145326 -75.459560774927922,35.598442569652491,120.584724843502045 -75.460962309269306,35.583159781095461,120.531733820214868 -75.46339206540803,35.555403022530975,120.435306369327009 -75.472255515229179,35.481465657867581,120.180905979126692 -75.487671253637515,35.393506160002488,119.883330348879099 -75.503087176009871,35.3218691082064,119.643841235898435 -75.526819255627217,35.235700131507713,119.361280920915306 -75.534526378485168,35.227686441487769,119.341393524780869 -75.545708730009338,35.230282285939786,119.363805207423866 -75.561125415854889,35.233909382741878,119.394882367923856 -75.581076441822873,35.233002440260201,119.414928085170686 -75.611002850028669,35.229375023668034,119.436855611391366 -75.636394933055342,35.222120446968532,119.440437106415629 -75.673576204172392,35.21033181221047,119.441522315144539 -75.729801526128796,35.192195459739729,119.442141247913241 -75.750311175819576,35.187068255551523,119.447761137969792 -75.758821049540273,35.184940873502775,119.45009754691273 -75.770610257505453,35.182220385890894,119.454156007617712 -75.790561131172609,35.174059073447118,119.448210242204368 -75.841345222621001,35.153202380040582,119.432836771011353 -75.913893946253935,35.121463953295127,119.404008609242737 -75.945633985382216,35.106954969468596,119.38919793907553 -75.964677964320359,35.094259677580851,119.36592311039567 -75.983721980799316,35.083377964767408,119.349202421493828 -76.002420406538221,35.069095238705465,119.319797173142433 -76.014055663657942,35.063720399278324,119.314189118333161 -76.015865087768958,35.067213829701757,119.328954245895147 -76.014471620487271,35.070697342831863,119.339881492778659 -76.001859270317681,35.086098227663335,119.380528945475817 -75.992790722579414,35.094259466586905,119.399237263016403 -75.990085672464659,35.102745752638739,119.426659948192537 -75.991479256942782,35.11040944641725,119.455966729670763 -75.990085831316648,35.117028113371852,119.478194987401366 -75.984860243102389,35.121905056024161,119.489596173167229 -75.974408983242839,35.122950189111471,119.480985030531883 -75.967398845073788,35.119649955387956,119.460776622407138 -75.955609645574199,35.121463640409921,119.453360921703279 -75.924776476984619,35.136879411728721,119.472489370033145 -75.911173617003726,35.144133882539379,119.482571955770254 -75.894850168319067,35.152295167727999,119.492715450935066 -75.840438646498527,35.17405870020059,119.506969338282943 -75.820079115357927,35.178687395896858,119.499659064225852 -75.813808347098671,35.18042920966321,119.498550283722579 -75.802350489920968,35.18494054801625,119.501317357644439 -75.794188789066638,35.190381390512691,119.511318530887365 -75.786635195765655,35.196105172934701,119.523055938072503 -75.755193788873953,35.201263245143586,119.504663658328354 -75.754670299877603,35.201472629435195,119.504802810028195-75.67615587517335,35.930852213484116,122.018518000841141 -75.660450316783269,35.921393012441719,121.966769348829985 -75.663848533740264,35.917994975595533,121.958680892363191 -75.662929975023701,35.908351985130636,121.923451066017151 -75.65438839379155,35.906515288571015,121.907019070349634 -75.649428804709487,35.908811278261631,121.909393528476357 -75.646030536910573,35.907617409068251,121.90121625456959 -75.628579779629916,35.884979459088449,121.800709487870336 -75.617741797974432,35.858162821236476,121.693008726462722 -75.620680728409255,35.849438183740261,121.665462004952133 -75.61526873605915,35.81749252664013,121.545759340748191 -75.621362629512689,35.811087610962907,121.530089195817709 -75.625143559050997,35.811221017680452,121.534956562332809 -75.639889279237011,35.820472387256537,121.584952370263636 -75.668800595083368,35.825373334023404,121.635976102203131 -75.675963902947444,35.832036466770177,121.667964077554643 -75.660995973013996,35.840442974560318,121.680390154011548 -75.66150777314455,35.864372285155063,121.765887001529336 -75.664265705223443,35.871666702461944,121.794964034110308 -75.673740412228938,35.884253980578961,121.85061043780297 -75.682325358648626,35.885810656605805,121.866111877374351 -75.698583537489597,35.903468410498874,121.947600680403411 -75.697782961814184,35.91138554839889,121.974717596545815 -75.703076329165157,35.917256640823361,122.001670870929956 -75.724694447234583,35.927397525706702,122.062736065126956 -75.728164099055249,35.93544806688287,122.095275071449578 -75.727719309146238,35.937671984552665,122.102629531174898 -75.719178903765808,35.941541659566596,122.106388375163078 -75.706234781221951,35.941230408320784,122.090229381807148 -75.69206193188414,35.93875971686915,122.065003269352019 -75.687269127525113,35.93480117060529,122.045417126268148 -75.67615587517335,35.930852213484116,122.018518000841141-76.492437762986739,36.552158924428483,125.154705231077969 -76.314151128891709,36.552346816461032,124.94529556017369 -76.31413250421636,36.552346823428863,124.945273694582283 -76.123291187321101,36.552418216646501,124.721890094690025 -76.035679418548483,36.552450989138023,124.619762992486358 -76.027678195454072,36.552351055847218,124.610091023147106 -75.958574278237762,36.552351593205046,124.529657647944987 -75.956674225503733,36.552351607964319,124.527448435314 -75.954373161638685,36.552351625837446,124.52477312926203 -75.95377314498522,36.552351630497775,124.524075558409095 -75.922971291147689,36.55245286516169,124.488634424284101 -75.912370996827491,36.552452947404483,124.476324112154543 -75.909970930184571,36.552452966021868,124.473537418060005 -75.905669810750794,36.552452999382396,124.468543927185237 -75.904369774650291,36.552453009464955,124.467034745030105 -75.895069517569937,36.552553077165783,124.456588443368673 -75.894169491383622,36.55245308856054,124.455195519141853 -75.892869456469825,36.552553094222944,124.454035295173526 -75.887469306491099,36.552553136085734,124.447769190184772 -75.886869289826279,36.552553140736734,124.447073019109666 -75.881568142588279,36.552553181824685,124.440922892652452 -75.880668117589536,36.552553188799919,124.439878825098276 -75.867967764805073,36.552553287208113,124.425148892216384 -75.857823881809864,36.501956601941799,124.236947699449956 -75.835896355589853,36.42445520302347,123.940810207277536 -75.819655137880474,36.359387215273493,123.694276982918382 -75.797328729425558,36.292162375409731,123.432727877050638 -75.774246880722544,36.233342677563563,123.199422220699489 -75.773427354667973,36.231254271349059,123.191132807172835 -75.760553709559773,36.206520472815583,123.089249632321298 -75.739346535508304,36.156099885557481,122.887230517342687 -75.71922450732356,36.115493853952792,122.72083215136081 -75.697655491763427,36.07931863682456,122.568234664388001 -75.659448776492098,36.022254483695342,122.322425691410899 -75.570701523401723,35.865133214268923,121.663162681274116 -75.553205572018825,35.824007198672049,121.49687478877604 -75.539644916149285,35.799231417811562,121.393119743093848 -75.533917670816976,35.789212595828495,121.350864889100194 -75.53733343917385,35.781954429661091,121.329017227515578 -75.544165119138654,35.781527427919762,121.335420373827219 -75.547581057016075,35.789212492901221,121.366706124506891 -75.554839865109187,35.80116702159539,121.417617673054338 -75.567144849525263,35.81490673774924,121.480711570940912 -75.573989735853033,35.830701008802563,121.544751450419426 -75.58978538937383,35.846758465862138,121.620086687617004 -75.602158746596345,35.869133677365291,121.713842735625803 -75.620060547642424,35.891245599284929,121.813035749830306 -75.617954679968904,35.907829663744472,121.869374996982515 -75.618461276473283,35.916015965550748,121.898971011862159 -75.621023279230016,35.927116618237328,121.941269312985241 -75.632124959489119,35.943340635584093,122.011605883948505 -75.649809579330338,35.967584642226342,122.117938622832298 -75.669290785769292,35.980219962903419,122.185252384282649 -75.672713233216612,35.987064142336372,122.213431057520211 -75.679821292106269,35.995750975704553,122.252399939112365 -75.724575249773338,36.004963998824522,122.336969342082739 -75.727997683094287,36.012334654529901,122.366993386298418 -75.727471290278885,36.022864222992176,122.403579854406416 -75.722996033770585,36.034183520677907,122.438355934806168 -75.723522605884099,36.039185055828511,122.456629272550344 -75.727734777535616,36.042343880916619,122.472678016871214 -75.738001845974537,36.042607056051899,122.485542354173958 -75.741424264300022,36.048661511359818,122.510894743725657 -75.742477388361195,36.057348401523178,122.542779542505741 -75.740371451762243,36.068667691859275,122.580273245461285 -75.740634821763223,36.077091334860832,122.610296381637454 -75.751165660277167,36.122894829919368,122.784009599126875 -75.75139433343324,36.133026378314575,122.819967837072909 -75.753141728640671,36.142635758846211,122.855842572636902 -75.756636473511136,36.155739444709909,122.906040826812387 -75.776730834904754,36.202912679972215,123.095351346768439 -75.784593809771536,36.217763490585085,123.156692053191364 -75.794204025847321,36.228246394680653,123.2046959111467 -75.795288721888767,36.229150227652255,123.209131926298141 -75.799445936147592,36.232614264737911,123.226132903248072 -75.804608337960062,36.237666588482398,123.249880443327129 -75.812506179560856,36.245826931363894,123.287720647640526 -75.812769484977295,36.249512276427531,123.300968589261174 -75.809084002654927,36.261358060612807,123.338277409784496 -75.815402497855686,36.287155429816039,123.436153037473559 -75.823826832589674,36.293473096697497,123.468102953396738 -75.834883671255838,36.293999488021925,123.482798781245947 -75.838832561976915,36.296368606381506,123.495698058046401 -75.846203923687852,36.30742459419249,123.543036371469498 -75.842255319776399,36.330326403221861,123.618721459060907 -75.832778164358061,36.340856044849843,123.644605031237006 -75.83251498879153,36.348226736862159,123.670119891874492 -75.837122153323961,36.364942370645821,123.734009986743331 -75.843966964027203,36.37283949472036,123.769606901332736 -75.848179111946081,36.373892415081983,123.778185149654746 -75.852391334369145,36.381263083087298,123.808875833638012 -75.853444425252619,36.386527849408189,123.828523015603423 -75.852391763226933,36.417590059120691,123.935953700914979 -75.865028303402923,36.432331332812737,124.002160983160138 -75.881350362966771,36.43759599167651,124.039518945850432 -75.889248178065969,36.443387181888227,124.068930719047785 -75.892407489044359,36.462340371536129,124.138805447146297 -75.90083199593019,36.483925913522256,124.223952684551477 -75.908203282103969,36.487611202077517,124.245378999039531 -75.913994956953772,36.4881376439128,124.253946562297642 -75.918207065887913,36.487611124590821,124.257004752755165 -75.925051739879095,36.483925725940153,124.252100427635014 -75.928257584113666,36.484616665569995,124.258239054121077 -75.936397799401561,36.492402245601788,124.294871349819005 -75.960995178871897,36.496825716781778,124.338917083106935 -75.973470797552551,36.496471724685208,124.352202817797661 -76.00463469075342,36.508035058087366,124.428821187466383 -76.020188395536934,36.505306405514453,124.437432706356049 -76.024554321547043,36.502577850477678,124.433008521795273 -76.030148134412016,36.496165758665235,124.417171681299806 -76.032876718300571,36.484296636554838,124.3789576375857 -76.021142914529662,36.460422099093769,124.28196598123759 -76.013263973051352,36.449264360149044,124.233825730159879 -76.004838103878313,36.443666863472089,124.2044548233971 -75.990795070828526,36.438611685258806,124.17042850330472 -75.980975860882992,36.437267890527629,124.154291068203747 -75.963210187777648,36.419044311300411,124.069920563139021 -75.941600082524133,36.420654407874956,124.050381732173264 -75.937370612628342,36.424883658493201,124.06023904401809 -75.93361798810632,36.429431041741175,124.071762597188354 -75.92929344587526,36.430392016589636,124.070088283158839 -75.924524567342161,36.427592574575385,124.05475689843297 -75.917332685811957,36.390816223574575,123.917807411402464 -75.917871976452616,36.384973598311596,123.897996588610113 -75.92443398138586,36.369602957507844,123.85185325704515 -75.924254125904284,36.363670450881791,123.830880790017545 -75.918680663224748,36.355400937273352,123.795443553477526 -75.916253536666559,36.354142545455161,123.788212022744119 -75.896207031089958,36.321424022291851,123.650274228304625 -75.889132546516024,36.295224636727248,123.550200914032757 -75.883074778758271,36.286484973934243,123.512499311007559 -75.873642106773787,36.28458134553604,123.494842998683453 -75.865853706239079,36.28648510654034,123.492457589134574 -75.861440215146942,36.282418143748394,123.47305647470057 -75.862738117392752,36.26822691690235,123.424775032326579 -75.868276393809708,36.254295254476929,123.382323944941163 -75.865074287756386,36.237335045467127,123.319047561846673 -75.859622239825271,36.224441850749265,123.267413799650967 -75.849756828758416,36.218384697680968,123.234648619778454 -75.839285536731239,36.201943736177235,123.164679799228907 -75.842141218923842,36.195626892571816,123.145796779543161 -75.840842948407783,36.178926263520424,123.085558032616973 -75.824833196700666,36.160148987776289,123.000860188156366 -75.823448444259938,36.147774950368103,122.955696679651737 -75.814361840372499,36.138689181323997,122.913132523186505 -75.801294312397587,36.114546911659765,122.812890090048313 -75.792553618629896,36.084087790234484,122.695357675664127 -75.794890025273972,36.073530892842086,122.660848383791745 -75.800694903552042,36.074461513524753,122.670889103785157 -75.837001123882871,36.094435709971442,122.783603341318667 -75.848702453216205,36.103809268852267,122.83027396351099 -75.868710353523895,36.129080051414938,122.942610625177622 -75.86724175705433,36.143227203649985,122.9907032167539 -75.868304064719197,36.152998623595352,123.026331525295973 -75.870747137088713,36.156397364798494,123.041138880886137 -75.875951893671015,36.159265024319808,123.057295991107821 -75.888334296123503,36.162049631084969,123.081530073657632 -75.905919542981522,36.166004275332732,123.115953172557056 -75.920948738725869,36.166669120895406,123.135830224491656 -75.925574489390314,36.165406583446462,123.136789506301284 -75.939967989492089,36.167333935706566,123.160374397411942 -75.996113998010074,36.179886938624989,123.270129937678576 -76.017907988691107,36.188180865354823,123.324775823391974 -76.019859704767953,36.190132399243581,123.333917010575533 -76.032708360422873,36.190945444162296,123.351813738234341 -76.048024240444704,36.184919816217786,123.348579278215766 -76.052550475021192,36.183139088923284,123.347624915651977 -76.064423179516965,36.175332788988953,123.334107214584947 -76.066212194528816,36.172405450257138,123.325916731730103 -76.066374775204523,36.167038679336038,123.307245085947216 -76.060844858591437,36.156955707498028,123.265317345969379 -76.060194227610452,36.151101058112964,123.24396925419569 -76.065148063666442,36.145590538499931,123.230399563908577 -76.072596836385699,36.141999347472868,123.226505521684885 -76.093480070737911,36.137610022766175,123.235570861957967 -76.179872886703251,36.125239897166395,123.293604693375528 -76.185060435771121,36.123377785468854,123.293161831796169 -76.19143770039274,36.118148706255269,123.282278805039823 -76.191711098536018,36.117924531686818,123.281812241300941 -76.193307242529301,36.115264420477956,123.274335217662156 -76.192642095566569,36.109013193494363,123.251562062650919 -76.217526728873452,36.097225454803286,123.239406523294747 -76.239640447413763,36.100384161021424,123.27659208048135 -76.265966317283883,36.106701671182641,123.329872976057231 -76.288079978018658,36.106701499578087,123.355979357846081 -76.299663268947825,36.103016066131985,123.35670056194067 -76.304928332742861,36.094592385920969,123.333293887786567 -76.324409338902015,36.086695081792918,123.328542621806264 -76.332833575097112,36.085642043604054,123.334801425226033 -76.338098769165669,36.088274393753792,123.350289609283209 -76.356000294830267,36.088274254609175,123.371472069062293 -76.411810889950971,36.079850181337186,123.407958775758743 -76.412777477597771,36.077192159046774,123.399755835533142 -76.413916878526322,36.074058917011129,123.39008567482233 -76.421814475825727,36.062476339405471,123.358704198151827 -76.4439279340219,36.04457593769969,123.321954851970077 -76.452352148911018,36.040890508579636,123.318986616097391 -76.459723238084237,36.02983442196232,123.288821306079626 -76.460249698619535,36.026149074830364,123.276470922864974 -76.492893613374079,36.019831086756561,123.293031848035753 -76.515270388080395,36.007458698374315,123.276088573038578 -76.548440925428636,36.011670268823259,123.330423522740602 -76.564236402894736,36.011670145516383,123.349247529171407 -76.576872731008947,36.007984693763483,123.351337728090584 -76.581611381569402,36.00903760893619,123.360696213319898 -76.590562253472996,36.017461187141571,123.40102622564882 -76.604778394050186,36.034834838428452,123.479124105535448 -76.616361793506343,36.039573042998299,123.509614558890462 -76.63268379127561,36.040099381149517,123.530949665233493 -76.654270902574069,36.036940355445779,123.545622020028532 -76.669753978089943,36.022785158993166,123.514332800172269 -76.672698755738367,36.020092935104188,123.5083815343678 -76.685861551488614,36.011669194145831,123.494483595713973 -76.684808405533587,36.002192592113317,123.459872137755156 -76.680596181866576,35.993768987486128,123.425180211663246 -76.685861232973181,35.984818832660586,123.399967202916741 -76.696391435028602,35.975342140255187,123.379198107868433 -76.701129974491735,35.966391989794637,123.353346833027899 -76.698497243700658,35.953756554645338,123.305676865391433 -76.693315109612968,35.947161718995929,123.276230173185468 -76.692705485131981,35.946385904785579,123.272765818983316 -76.674803832141421,35.936909445547229,123.217927917838097 -76.668485627958447,35.93533006684401,123.204797084443271 -76.657955327209578,35.936909577262405,123.19776528980583 -76.608989378248239,35.938489398019819,123.144793768413365 -76.604777291768698,35.941648297356913,123.150901339016855 -76.587928801111161,35.943754333006716,123.138207336887717 -76.529485576004262,35.945860702954029,123.075921543873847 -76.508425014616847,35.951652123980111,123.071255696006119 -76.497894751539945,35.956916976780924,123.077283971011639 -76.474728132984126,35.962708414199291,123.070136572234333 -76.461565358404158,35.97218511655511,123.087896841578186 -76.399173407950713,35.986137253476521,123.062974072061479 -76.390749100090304,35.981925510130374,123.038128786720335 -76.382851257012831,35.973501923365959,122.999054229818285 -76.382324637698332,35.964551803392894,122.966860511340201 -76.366140511977193,35.946519736456381,122.884035838767886 -76.363896347737168,35.944019328302687,122.872548799961805 -76.341256176620348,35.945072455849306,122.849422628059983 -76.318616025954583,35.948757973875118,122.835607476532459 -76.27333598045864,35.97455572400353,122.87306624930352 -76.214892903196287,35.989824023685678,122.857896346598864 -76.177510319263234,35.995089093900532,122.832379818893969 -76.094620196668302,35.994822973429635,122.733852131292224 -76.084053714905679,35.991667714124247,122.710292468778789 -76.06299309872837,35.994826743128989,122.696693438105285 -76.025083710879969,35.972714975817858,122.574101069010794 -76.015606311017862,35.962185485363776,122.525779456831515 -76.015079749858302,35.959026632712821,122.513999900780618 -76.020871148418564,35.935861568208033,122.438920801505446 -76.012446667681459,35.915855485222011,122.358279208652675 -76.005601847828203,35.906905413671751,122.318579189479351 -76.000306210451456,35.905348032254025,122.306851694360375 -75.978749456817368,35.899008457717798,122.259118486195803 -75.967166146561496,35.901114455769651,122.252984840422869 -75.963480540311039,35.903220398489957,122.256116084754467 -75.948738318594977,35.922173701458782,122.305900113657117 -75.935049017946284,35.930070978268262,122.317799209617078 -75.930836868877805,35.930597476385856,122.31472847238183 -75.928204323730768,35.933756363346255,122.322819218039513 -75.927677896655155,35.942180015709106,122.351994636468589 -75.938734869741012,35.952709483990482,122.402171386405826 -75.944526575893065,35.95428887820978,122.414537563920021 -75.947685718658647,35.957447710733796,122.429403744637966 -75.948212251137846,35.961659536074627,122.444907232187688 -75.939261558874222,35.966924376063218,122.453032495453954 -75.900299497888952,35.979033666128402,122.450235794298351 -75.880291890835096,35.980613247568371,122.432429940439761 -75.861337318525415,35.980086906104958,122.408426461741328 -75.850806977301559,35.977981102388647,122.388687435537577 -75.810265047816515,35.961134114152919,122.281814963556826 -75.806052852147303,35.955869364530074,122.258282294496894 -75.801840628358633,35.946392805912112,122.219847305677831 -75.783412452778364,35.937442821598559,122.166690869256854 -75.783412367921215,35.930072135527759,122.140604550950229 -75.779726662817609,35.920069076625865,122.100896861404181 -75.769722646163629,35.903221876587708,122.029573696665466 -75.752873901842634,35.880056985203439,121.927856364287436 -75.75392685195888,35.873212767724233,121.904823911376297 -75.74918797534211,35.854259614041382,121.832097007893026 -75.73549841187878,35.841097775539403,121.76945118047297 -75.728127001779711,35.824536028839326,121.702087192796171 -75.727600347658651,35.813194523126754,121.661211508326232 -75.733523298150445,35.792500467616811,121.594626295380294 -75.739143814966482,35.780135832876276,121.55725459754467 -75.740267884977669,35.772829489401843,121.532603171654046 -75.736333375095953,35.769457369659463,121.516028623096645 -75.725653810659864,35.744728267125801,121.415651096962392 -75.720032826717528,35.716064952804523,121.307117213495076 -75.716098263304019,35.709882697933786,121.280521894805133 -75.713849891643221,35.700328259316429,121.243884420022368 -75.714411917257564,35.695832045189952,121.228530781343579 -75.742515044286861,35.67391279782882,121.18327584862709 -75.743076907841001,35.6570520046129,121.123856097459793 -75.738018113904758,35.640191248769405,121.057843322865665 -75.730711118063724,35.630636854666548,121.015235840342939 -75.73071108624535,35.627826725112946,121.005213733762503 -75.748135001137328,35.612089849798608,120.96944587584585 -75.763872809525751,35.605345416999953,120.963790789246559 -75.779048512039125,35.594104773809164,120.941440522670746 -75.776238026133413,35.581178189542534,120.89201064966619 -75.798158587431317,35.576119784669991,120.899625571444631 -75.838065358363238,35.57274732627468,120.934371148236096 -75.852679178446778,35.580615587043837,120.979601684957743 -75.860548209762086,35.588483893417276,121.016914321109653 -75.870782062830258,35.584585473470007,121.015017230994999 -75.895958306727081,35.574994992632696,121.010365265421569 -75.90776156020388,35.560944246114538,120.974088243208826 -75.909447723633733,35.557010048504054,120.962025946937501 -75.909447643436437,35.548017602854337,120.929918384179473 -75.917316496078698,35.540149153322069,120.911073862574995 -75.946543955775539,35.536214747843019,120.931420464999974 -75.951040443214197,35.532842565378949,120.924671615473926 -75.955536939676975,35.528346333479611,120.913907964713871 -75.965091917288788,35.513171539182409,120.870952947065234 -75.96565389564816,35.506427216613268,120.847514994442463 -75.962843488865502,35.498558870250456,120.816080713644624 -75.963967566652016,35.495748727334842,120.807360582053661 -75.988136359711504,35.486194102573499,120.801702515222132 -75.996567275930246,35.477201621886572,120.779497462324798 -75.995443010885609,35.465399079464106,120.735960783436894 -75.998815290516731,35.45528257715263,120.703751670196652 -76.010618575419656,35.444041961789523,120.677468562498689 -76.013428806647553,35.434487499586929,120.646593369543552 -76.01230456725078,35.424933056420315,120.611062813550234 -76.015676891450923,35.418750748928339,120.592912026681006 -76.021859576717091,35.412568409314972,120.578080275095999 -76.026356076722521,35.410320276725066,120.575344267301261 -76.038159573899975,35.415940444524892,120.609424690715969 -76.051087136152105,35.417626431332693,120.6307502258569 -76.06064221077628,35.412006090780515,120.621931603178382 -76.06457662413581,35.406947828406636,120.608475062064826 -76.064576547857513,35.400203511145271,120.58432169444859 -76.061766145084576,35.394583269922812,120.560864462517202 -76.060641912125249,35.385590857392913,120.527318329550326 -76.07019691505792,35.372664180943552,120.492309365421534 -76.093803630162299,35.363109556669407,120.486031058244407 -76.124155148244981,35.352992856728399,120.485757332295179 -76.133710277890941,35.351306705050867,120.491050777025521 -76.143827371497395,35.34062813142814,120.46477465890348 -76.14382725719436,35.330511659293066,120.428495855070651 -76.150572035834998,35.328263504432122,120.428442551754415 -76.166309959057486,35.330511445111668,120.45520082116127 -76.16968241279595,35.333883545090544,120.471300686709583 -76.183172038964557,35.338379682709665,120.503454410471022 -76.206778904584382,35.338379503315544,120.531525352038443 -76.236006557454047,35.351867870548254,120.614648994989693 -76.253992701193965,35.351867733619308,120.636064503341913 -76.258489162462396,35.346247475522865,120.621281557716429 -76.266358133833592,35.345123344690151,120.626628371886909 -76.283220149868768,35.347371314463125,120.654779981821775 -76.305702933254565,35.357487650516973,120.717829842120409 -76.328185657978011,35.358611506310233,120.74868003372103 -76.336054585625888,35.357487418898138,120.754047228954732 -76.341675161288009,35.348494939494636,120.72854985576123 -76.350668241890176,35.347370799941835,120.735263761132956 -76.366406160961787,35.350742848835509,120.76614427100867 -76.37539928752291,35.357487118342831,120.801043960265815 -76.38326824065463,35.358611085521254,120.814474543556571 -76.388888918532388,35.358611042545114,120.821194287389517 -76.400130141029038,35.350742591050313,120.806463208980858 -76.409123247086541,35.351866549580279,120.821246655657887 -76.41024743851618,35.35523871006842,120.834666050970554 -76.421488858261213,35.360858891360174,120.86823863722384 -76.432730208806177,35.364230974412592,120.893764514476061 -76.437226913305565,35.379967671264524,120.95546253118664 -76.449592486180819,35.385587843969709,120.990373180247843 -76.456337273426996,35.385587792262946,120.998450021259487 -76.463082065674527,35.382215571359048,120.994465795345604 -76.473199165462802,35.373223057216883,120.974416246637702 -76.486688783364883,35.37322295375229,120.990585257299244 -76.500178516972383,35.383339357662848,121.0429482543841 -76.522661321981332,35.39345564896,121.106093133799732 -76.547829745473337,35.391519549560719,121.12938095536083 -76.581116265973066,35.388958959398835,121.160216200165451 -76.606971348100615,35.388958760351819,121.191304417327046 -76.621584993427135,35.379966254964266,121.176741033792496 -76.629055982160963,35.370361164428047,121.15139130409807 -76.629453817090422,35.369849687215741,121.150041304528713 -76.620460488237782,35.347368731618232,121.058800442144275 -76.605892022544367,35.339599630340601,121.013461821712554 -76.603598374502667,35.338376469003023,121.00632362999022 -76.588984587450867,35.335004412474611,120.97666940651834 -76.555260531151177,35.333880600767039,120.93209408596158 -76.549639815030744,35.330508518585518,120.913265777751803 -76.501301989081838,35.323764551609329,120.831063440069556 -76.483315757034134,35.315896324399255,120.781295416876674 -76.473198293418207,35.296787503192846,120.700677577406168 -76.468701564062471,35.278802710131416,120.630799036473036 -76.468701385115509,35.263066002767836,120.57435109000653 -76.478818382893095,35.245081076946832,120.52195596229285 -76.484439034864593,35.242832936113821,120.520635249093175 -76.491183732331351,35.234964520318265,120.500490958802402 -76.492307744848191,35.222599930210031,120.457447347231209 -76.495680070719274,35.214731540423017,120.433241570368409 -76.505797187081342,35.20911119690998,120.425213188864291 -76.52265905340289,35.194498411019161,120.39299220405519 -76.537272597361437,35.176513452592204,120.345943310298026 -76.540644901439606,35.168645063331788,120.321718264371157 -76.537272317075988,35.151784313607983,120.257030629552901 -76.537272227965815,35.143915928595362,120.22872877586633 -76.547389235003493,35.124807000645077,120.172159385867417 -76.558630491241729,35.118062600568152,120.161431505344808 -76.562002817220176,35.110194211948915,120.137173626571894 -76.569871607551619,35.098953621175923,120.106191118247807 -76.576616386643408,35.094457374864518,120.098135036416352 -76.587857719004163,35.094457288975157,120.111696138978004 -76.593478294347051,35.085464812990011,120.086094681173563 -76.594602336430228,35.07759644192241,120.059109970927238 -76.601347033758472,35.069728038889302,120.038905928842723 -76.614836595348734,35.062983622156381,120.030896781943738 -76.623829665406561,35.062983553423798,120.041761621832848 -76.632822684598537,35.058487279250826,120.036428440362215 -76.640691560019249,35.052866954184161,120.025687542743981 -76.64743626627201,35.043874491932542,120.001433379016817 -76.647436075767828,35.027013708575438,119.940645758993924 -76.64548945884593,35.021661071531121,119.918987974524498 -76.642939412133344,35.014649175956073,119.890612388961017 -76.629449571850273,34.996664447654503,119.809404815547168 -76.588980708506682,34.993292599818446,119.748315196484327 -76.567622251410228,35.000037075692966,119.746866427361965 -76.540643023010517,35.002285389203472,119.722424268722534 -76.503546687240458,35.009029984765988,119.702048112638295 -76.496801907877781,35.013526241321742,119.710152131505311 -76.492305446810548,35.019146540297776,119.725021226331592 -76.491181483529729,35.036007310750257,119.784505682997406 -76.481064484461641,35.053992231347323,119.837195320054889 -76.475444009759613,35.071977096393177,119.895273718051612 -76.469718948693739,35.077206666861521,119.907236761413515 -76.464390813418007,35.078272262206568,119.904669866897166 -76.436684246586807,35.059802920992439,119.804778199642897 -76.433487261853642,35.050923358955885,119.768910991959274 -76.432776634176705,35.032808988714919,119.702703068964183 -76.426382526818131,35.003328791076591,119.588592645712197 -76.407201044616215,34.989121591197488,119.514218133874238 -76.399386314071577,34.978466144985177,119.466324246488512 -76.396544621966967,34.977045429255895,119.457775105722249 -76.332962029799987,34.972783712511117,119.366041058674455 -76.32727873672944,34.97811150134374,119.378486843779683 -76.330475740644957,34.988766989637391,119.420835324563086 -76.351078232426346,35.018602262430349,119.553324566222727 -76.361734637393809,35.027836957292784,119.599449587985873 -76.365286783836552,35.033164690331667,119.622943233698606 -76.365286823636026,35.036716530325478,119.635763493366539 -76.353209681186016,35.034940701865047,119.614868639037013 -76.319464614342436,35.022509531241141,119.529537445865571 -76.294599814849576,35.011499016856455,119.459985275752842 -76.289271634126578,35.007592034591831,119.439490300603211 -76.289626740767133,34.999067628533744,119.409113580361009 -76.291847133738003,34.996151576286181,119.401234295219183 -76.294768500568424,34.993814620462629,119.396287139505148 -76.297105569806789,34.988556467935616,119.380081576295197 -76.29744112543392,34.97811172686751,119.342725345864892 -76.291608361536802,34.970926658544471,119.30975750181824 -76.276483567600053,34.962838992075014,119.262391448952258 -76.275773071154219,34.955735324897631,119.235843097791076 -76.278614600164261,34.941883148044354,119.189123629592359 -76.285008348257207,34.938686442770965,119.185214354656637 -76.312359188390644,34.912047460473488,119.121565802022815 -76.320884085696662,34.899615978745466,119.086771023459733 -76.334737091175853,34.883987789926202,119.046782668679953 -76.348590159728303,34.874042542903119,119.027382363565266 -76.369192331750497,34.874752755914066,119.054714326746762 -76.37807251646089,34.869424933412169,119.046083626337349 -76.380558928650188,34.86445234522408,119.031051913276315 -76.396188078626381,34.857348555670235,119.024104719981551 -76.401160999758048,34.85734851810011,119.030088943429291 -76.412527559934588,34.843141089458605,118.992265409789979 -76.416789903828288,34.82751297090325,118.940722551196814 -76.416789769727345,34.815436737590581,118.896912927739322 -76.404026428090589,34.808027026274097,118.85465217102319 -76.391172298503662,34.807442889977118,118.837054842151701 -76.384745274165425,34.809779877270806,118.837800154462457 -76.374164647483425,34.818988898259768,118.858486923389137 -76.363508425422864,34.82609264292595,118.871444041840732 -76.34219606971682,34.844562350439972,118.912822444923222 -76.323725341796447,34.863032037010136,118.957609538920224 -76.274902007349837,34.899168676317274,119.030008808709681 -76.234587112726999,34.927796494904648,119.085419843904674 -76.19585098965841,34.964615533581764,119.172375720925629 -76.161040716300036,34.993030487036066,119.233600940555334 -76.112732663923055,35.036363268975329,119.33265732228756 -76.094261914318352,35.050570741239873,119.361998129636049 -76.070818398686868,35.077564881962068,119.431595825590193 -76.065845451247981,35.078985650019192,119.43081459403038 -76.044532794443072,35.071882157033848,119.379848076030612 -76.039559775887128,35.066909623401813,119.355985432863235 -76.036844269415695,35.060852791821404,119.330885250121355 -76.073911839807153,35.032375783957576,119.272052532061934 -76.138181968539158,34.989726155627828,119.194389435462654 -76.234002643459505,34.907348274207706,119.010660564526916 -76.311126729110697,34.854182299655868,118.910396985709667 -76.387721725378185,34.786454436847713,118.756705394946039 -76.451372668501421,34.716328225010969,118.57861078158021 -76.494987265079374,34.663850346364654,118.44036693032831 -76.525118563340982,34.617298295974635,118.307270240038633 -76.536865969589641,34.590459965944092,118.223663670942187 -76.55611640454984,34.617875035216159,118.346939087845385 -76.55472650246702,34.630133472138809,118.389916840940714 -76.55134343936848,34.632670378994632,118.395057464949787 -76.550263573745866,34.647465695193219,118.447634090669453 -76.580388546598115,34.662053785598765,118.537261628545821 -76.61964174088267,34.67442891023952,118.629917815327644 -76.643862449273428,34.679496489974795,118.677762317471206 -76.663569067607824,34.687401971171234,118.730454728938639 -76.677236520302387,34.695028511154149,118.774794649332762 -76.694675982569905,34.694386408821892,118.793665952980518 -76.72789492302401,34.698566961204925,118.849282080307603 -76.770971084092764,34.698775623945934,118.902512861415744 -76.818381323340162,34.695598411537418,118.948797859251499 -76.907187587275587,34.684696244102192,119.017735512927175 -76.991194693967728,34.671499219598424,119.072744030505419 -77.032038694600473,34.663060302073006,119.092237596400082 -77.113735189643222,34.641228201177498,119.113422151654959 -77.137779210046176,34.634802815444118,119.119703685864806 -77.17063796692031,34.62390007443598,119.120611391030252 -77.210098831426947,34.606909568441068,119.107584982179105 -77.241929485307679,34.589385146488581,119.083225225098431 -77.323464078891064,34.537453960174403,118.995308800600469 -77.463865099106187,34.473235902729428,118.936062699183822 -77.492739696062827,34.457980399420855,118.916485423222184 -77.518904502885917,34.442365979560215,118.892236206680536 -77.557887991357049,34.419101731723465,118.856133074499667 -77.583268477837379,34.402390325265522,118.826935133896768 -77.635980417059827,34.361440854574184,118.743537277914584 -77.662619925069578,34.34375448586691,118.712382694706321 -77.688173361965866,34.322331303051115,118.66622004378587 -77.714269766465506,34.296767313044406,118.605600262060761 -77.716863552716276,34.294607104709883,118.600965989753604 -77.741084226005199,34.274435165034056,118.557690335437655 -77.764970556444325,34.247531257510325,118.489356613717973 -77.830158349959319,34.164511701075895,118.267552132718265 -77.842734437470824,34.1426416454037,118.203253723680973 -77.871276503553645,34.081118358339822,118.013551487587392 -77.875333570975329,34.077568496409974,118.005651476792991 -77.879110584614054,34.069860835140233,117.982120462693274 -77.916485498130754,33.973625146844824,117.67554684728384 -77.928875530468588,33.94716831809987,117.593830622732639 -77.938263034848589,33.930549412720033,117.544515523128211 -77.947517654843608,33.914165755916912,117.495881187729537 -77.957830544067249,33.879696329836001,117.381844772025943 -77.961121359680519,33.855222479356854,117.295685108751059 -77.971555536622233,33.84642482151957,117.276484160684049 -78.007715643937374,33.860610861485505,117.374950738623738 -78.010923758175181,33.863312706992517,117.389014857821167 -78.010376814929074,33.869729403104166,117.412001510150731 -78.019640285396051,33.890194349272676,117.499321339651942 -78.096382498898038,33.907934904676246,117.662672991864383 -78.137906657800315,33.9140812881054,117.738395689986646 -78.178675751314671,33.916174871450849,117.798271968029439 -78.277105311687066,33.91426619821835,117.917420302517712 -78.384925019490609,33.903847858544729,118.017673538066447 -78.510005882012265,33.86741763309324,118.044876088388264 -78.542051557341338,33.853015075570475,118.033261227421463 -78.651468126877745,33.945932912586038,118.516821477562189 -78.71111159541114,33.996582846167165,118.780122228898108 -78.713176672577816,33.998626731776042,118.790299505926669 -79.072152526559563,34.301117402540925,120.36207608319819 -79.144228115266003,34.361690935964312,120.676196051761508 -79.152471411636384,34.368626539229254,120.712131646461785 -79.191726823196007,34.401622651766246,120.883092164993286 -79.193028872317882,34.402911579915006,120.889465969055891 -79.199970119954813,34.408570254590188,120.919049120508134 -79.324241636806903,34.516499118281189,121.472170657478273 -79.325846698225888,34.518147027010954,121.480225331149995 -79.332320933409903,34.52373370920715,121.508884173817933 -79.359310916506587,34.547221375125041,121.629043989814818 -79.451031211527166,34.622895039900939,122.022128100506961 -79.460763560993584,34.630885581899655,122.063670568168163 -79.46231561463064,34.631984517166359,122.069664059206843 -79.462751495077356,34.632290647577726,122.071338287554681 -79.469714869846868,34.637181210567356,122.098083875142038 -79.472596967498802,34.639058098118703,122.108623361214995 -79.480303257633423,34.646497682836412,122.14551180973649 -79.491199651877551,34.655676159159533,122.192841184325516 -79.520042686267743,34.679176810776191,122.31523394305259 -79.52126873033211,34.680182753134631,122.320460707880557 -79.555454959187301,34.708217146770941,122.466115642338991 -79.562692215786456,34.713849821034188,122.495858156122267 -79.632580724739299,34.770685560795265,122.791703229770064 -79.635219819910048,34.772862436263715,122.802979729138315 -79.689093635412149,34.806745392486206,122.995321569032967 -79.691206690982639,34.806785373137409,122.998251272365451 -79.693953983119243,34.806821730338378,123.002004640176892 -79.745123104736507,34.807498893570759,123.071958757005632 -79.745932126238841,34.807533885223968,123.073152385652065 -79.773836856351807,34.807801641557766,123.110976119525731 -79.774614876334027,34.80777863619965,123.111922067590058 -79.928629891348351,34.808401328636762,123.318104032427073 -80.028478512073022,34.810571394757773,123.458514828234911 -80.043778913872401,34.810942249647852,123.480197083204985 -80.073927704270602,34.811580967911162,123.522615014575422 -80.078238815904612,34.8115609328703,123.528285183943808 -80.099038360892692,34.811991738829498,123.557534680701792 -80.10001038611118,34.811991730710837,123.558830007910728 -80.321435403588808,34.815655284329559,123.867818128317595 -80.400895239889039,34.816969972284426,123.979099620133638 -80.418038687743106,34.817349809968917,124.003479238599539 -80.41945772583199,34.817463792624885,124.005792041309178 -80.420610755125978,34.817422784854323,124.007194817066193 -80.426926921204156,34.817651720821495,124.01649734377861 -80.435868154228288,34.817809638023348,124.029075803235173 -80.449791518509102,34.818173503472622,124.049088961444795 -80.45268559407593,34.818237476051593,124.053208075463772 -80.486709272521523,34.818572770902982,124.100168656557798 -80.562685447667434,34.819321496237976,124.205173498019576 -80.562702017577976,34.819321688863887,124.205196529626846 -80.622251992691716,34.820013959569181,124.288009895011783 -80.627023116515232,34.82007891610067,124.29468381498009 -80.627107118407167,34.820056916431277,124.294718875549734 -80.645686601746945,34.820407742475417,124.321064090356231 -80.647631652182099,34.820431724863532,124.323777381330729 -80.77282588989803,34.821484612794265,124.496938259340823 -80.778746042896742,34.821535560068639,124.505143760703504 -80.797784602615295,34.827119133632706,124.55083039868623 -80.783077609189462,34.937615031149853,124.923627322539687 -80.807497579587036,34.964725542579501,125.052873847074807 -80.807820592381844,34.965080523064138,125.054570142179728 -80.841499061030774,35.003395182237682,125.235983720980585 -80.907457645736756,35.078433648934862,125.590879280120134 -80.907593599111408,35.078588317697147,125.591610241681337 -80.935991720573142,35.109232631497513,125.738372848369181 -80.95891212330784,35.094463129606048,125.717304170131683 -81.042532666201325,35.046528668964157,125.661549024283886 -81.058509297052154,35.063807716854718,125.744356613606215 -81.059073454309839,35.07501418385899,125.784713914617896 -81.0582805988155,35.087952581129699,125.829329080879688 -81.053122595473141,35.098099147695883,125.85813666228205 -81.047568507896329,35.10243999115346,125.86590664088726 -81.037207274205372,35.105027958570382,125.860953954979777 -81.033591256327441,35.110924712139841,125.876851847395301 -81.04380285403407,35.147862517030248,126.021034251898527 -81.04445203767456,35.150210770315923,126.030195902101696 -81.09126129707866,35.154447167123749,126.108777170069516 -81.240408227029945,35.161792531134367,126.337927197106183 -81.242736288223938,35.161899505918697,126.341482561081648 -81.270250123635194,35.162958319993386,126.382790737785399 -81.329072919650358,35.165221995281598,126.47118610329926 -81.367652512008718,35.166706651775407,126.529221208766103 -81.367744559767885,35.166710194044235,126.529359732754529 -81.453453801463809,35.17010928779797,126.65881631243974 -81.462464037082299,35.170473192122131,126.672462217509747 -81.494457873549777,35.171766852174031,126.720942655578256 -81.495321894790166,35.17169784788468,126.721886892803013 -81.769136560269658,35.18194452844633,127.135240885429084 -81.85889829004347,35.18530358452017,127.271265245042741 -81.875499796098552,35.185924844526568,127.296451091766357 -81.970394256936245,35.18902584418916,127.439003149047494 -82.168750385502179,35.195507799978252,127.737903574481606 -82.177948620369051,35.195598714069114,127.751060316339135 -82.186587847253207,35.196163610728192,127.765099311247468 -82.196558108328389,35.196759494089918,127.781107820570469 -82.217292649248151,35.19785225836538,127.813896662555635 -82.231593021794737,35.19857209732865,127.836400057189167 -82.231991032162128,35.198592092847832,127.837026326917112 -82.258591731753,35.200443768963034,127.880697631277144 -82.289530516327673,35.200412495228356,127.923870735801756 -82.353509487403997,35.208402009635179,128.041427241638303 -82.385109097412681,35.21234807995355,128.099530196748674 -82.477217965149734,35.177292914484404,128.106248557567596 -82.517992831260187,35.164836139434769,128.120025126263499 -82.518366835599608,35.164450154356707,128.119200908578932 -82.536887308207611,35.160505878182676,128.131474933587015 -82.537610706149934,35.160944258920409,128.134027743712068 -82.575490385195252,35.14602355703245,128.135186044499278 -82.581211025478865,35.143770212481357,128.135365010239184 -82.583348499501682,35.144075524427969,128.139447653666139 -82.687582566163286,35.123629573093432,128.215065131895244 -82.687824545283377,35.121597667261661,128.208295218646526 -82.765551818259055,35.069986419546595,128.137590555474162 -82.783061240866658,35.068626327077972,128.157648287713528 -82.78163423450134,35.070852234147424,128.163423055782914 -82.780204259987329,35.075483027029875,128.177617639303207 -82.77849525960599,35.078693889876796,128.186441618949175 -82.782150452623711,35.086300495873381,128.218263598158956 -82.782218455570629,35.086393490847549,128.218685655854642 -82.898590002143123,35.057829802338155,128.283876338042319 -83.009540487203012,35.028783568694756,128.340129761956632 -83.109630559085687,35.002580530909398,128.391252416186035 -83.109809304808707,35.002577172730398,128.391496228985488 -83.484168658360318,34.995543895164928,128.904453501105309 -83.550487451864342,34.994297927650102,128.995810206048191 -83.621293207572535,34.993896300996873,129.096754844300449 -83.674730468370171,34.988916050970978,129.156700141727924 -83.937528987508671,34.989287293289337,129.53976811747998 -83.937761995653247,34.989287622442042,129.540108753368258 -84.0065744876038,34.989242315064615,129.640284905210137 -84.022475090485486,34.989231845685666,129.663454519584775 -84.031072301539083,34.989122771726151,129.675624585710466 -84.13057555647913,34.989304661356201,129.821691947989166 -84.130675764538083,34.989304844533159,129.821839208714664 -84.322994518182284,34.990207022135479,130.106977402232587 -84.309702622383,35.094555148990175,130.450465417467058 -84.309563624622129,35.094967130583413,130.451692753471434 -84.29344879213609,35.208465862339814,130.821796983480453 -84.291368002096775,35.22735998143223,130.884181731380522 -84.228945044650402,35.269664549244297,130.939285044558346 -84.22484495983997,35.270864530359148,130.937445102259517 -84.212944623885392,35.267864783876291,130.909680495038629 -84.204005260101681,35.25755935734734,130.860960272140801 -84.126039247986213,35.251618364982676,130.726597934961319 -84.122274165970481,35.252432361241588,130.723926258273423 -84.116403017702098,35.252226425574946,130.714652290567756 -84.116172002691201,35.251553459730253,130.711984897963703 -84.098631535282081,35.249170735949654,130.678162601776421 -84.056834786254186,35.269970134988711,130.689310263842344 -84.030155774720427,35.292836131877721,130.729644257575274 -84.024632368350851,35.297570122665853,130.737994307652116 -84.022532393552865,35.30316987627527,130.754317754879594 -84.033601999032342,35.327103637546301,130.853198781609535 -84.033573015072776,35.328315580312356,130.857347152195871 -84.03920445697311,35.350147492439582,130.940998424775898 -84.038617462988469,35.351634427388269,130.945283140987158 -84.036466423193531,35.352617400773624,130.945552746765316 -84.025879202714876,35.355680353953097,130.94074821844697 -84.003373595378662,35.42432931192851,131.14506372064352 -84.001029573939277,35.426982208225205,131.150812690146267 -83.96252309251453,35.461275944999421,131.213213951326907 -83.962177130355116,35.4646177903034,131.22423070948571 -83.962179142915659,35.46551774776075,131.227335289120674 -83.962176148471016,35.46592272865319,131.228726670145988 -83.954004896336627,35.462414970425776,131.204795664176345 -83.953799164470453,35.462542726680169,131.204937910661101 -83.93499858719683,35.474217589639217,131.217940398491919 -83.881195890551766,35.520522904631406,131.29959071520716 -83.758036440341769,35.565380935636369,131.276239584200084 -83.677385516652066,35.572066369302341,131.18314918410033 -83.664074167612668,35.57091554682485,131.160046954639256 -83.641614563031752,35.567852898986551,131.117219928652048 -83.499447958459626,35.564760359030998,130.90258567314595 -83.486639709440595,35.56998323173152,130.902236389927566 -83.481729702822491,35.57841188090665,130.924243663437665 -83.479635685816959,35.580980779518946,130.930094801820815 -83.480194756747849,35.585094581060162,130.945064795203507 -83.446914315617022,35.613580550535275,130.995531908236444 -83.368051706627284,35.640505015044482,130.975546143017709 -83.298263213873312,35.659526766739994,130.941505430266261 -83.255339659189744,35.697582380464922,131.011300542391837 -83.251803757546384,35.71112377960516,131.052820804528892 -83.256597956301633,35.716748472394031,131.078968006186187 -83.252355917836312,35.721690280415928,131.089917177334428 -83.24177774596572,35.728534057955549,131.09839353710413 -83.166016294345638,35.761738204686893,131.104876220226288 -83.101338865005118,35.776518110063485,131.063974694348872 -83.101434868248745,35.776577106428583,131.064313201233745 -83.101330865079802,35.776538109204118,131.064032038673759 -82.996906201003256,35.774902144590563,130.910732859745622 -82.985072968866973,35.779784025524883,130.91079293936491 -82.965210639417563,35.79587389826608,130.938023182563484 -82.96394467023471,35.796899421646003,130.939758792519569 -82.919458238686445,35.847238486248131,131.049824868328869 -82.899082217535707,35.883048008449997,131.143931744620204 -82.914441201575343,35.925880878414823,131.312281173653901 -82.899608920918112,35.946866902876202,131.363248413428664 -82.899608116490199,35.946868041052106,131.363251176662743 -82.875261603533744,35.954464912497947,131.355019154958427 -82.853656004326581,35.950856278241531,131.31231174711138 -82.831213210227133,35.934740231535358,131.225616834126413 -82.779725480871392,35.976558765687869,131.296516415663064 -82.75556527559624,36.006069621223872,131.363602242432535 -82.716464556576071,36.026018057192054,131.377068960107863 -82.684664049440542,36.047868338929042,131.407278141006827 -82.638263139296939,36.067568854413508,131.409777973778546 -82.633363012820993,36.067468903917622,131.402597707696259 -82.620302552326052,36.058320445862172,131.353116080164909 -82.603973903412367,36.041598367507447,131.273178360424936 -82.616158666681201,36.002073082752496,131.154985650442541 -82.612358194105298,35.974923373450963,131.056733580306172 -82.597869711677873,35.966755883789773,131.008527398109436 -82.558623568009125,35.956440719413123,130.918408916331828 -82.5136917105865,35.977433157730175,130.927701046690345 -82.508161594328953,35.979244124377161,130.92620135564357 -82.506953132362639,35.980111572219776,130.927489897236228 -82.488544287444199,35.993325652063696,130.947120816446841 -82.488504287484517,35.993402648868901,130.947328859940171 -82.464050878780341,36.009077147326551,130.966979774646461 -82.417949459804404,36.074650189209564,131.127284296788275 -82.41055056141397,36.085174123498554,131.152992688119411 -82.376650000161007,36.107373409812482,131.181835486553609 -82.372474903944905,36.108152411991327,131.178708862513304 -82.367657797950244,36.109414397779396,131.176343300379813 -82.362010694221581,36.112378312769366,131.178643630817533 -82.349513447390649,36.117693181961876,131.179485824890435 -82.330267974616419,36.11919128831213,131.157947049476206 -82.32625989860172,36.121127235713658,131.159011737443507 -82.238825928659111,36.140953119332302,131.105825215578079 -82.237503904888314,36.14169009746896,131.106516854837537 -82.236567892205713,36.142512068189347,131.108032117597759 -82.235895888376589,36.143484029614953,131.110424471087754 -82.223140770662795,36.158674447420275,131.144697672687471 -82.212339522153215,36.160775449086799,131.136962836608291 -82.14903476362278,36.151280460316329,131.0172109156847 -82.137633185069632,36.1305825149432,130.930745771154761 -82.139060094467681,36.121341926840024,130.901113287545741 -82.131731724917387,36.108183598407216,130.84600062854588 -82.128231607417419,36.106183722114061,130.834333329461515 -82.081601986611687,36.107476701495187,130.774517520330846 -82.08122741655059,36.107487087839147,130.774037322029471 -82.027723376228522,36.131988445735352,130.78426168859005 -81.961184008741625,36.229893556815924,131.027489497326314 -81.934076815959472,36.266642120187882,131.115743833594024 -81.919196018205284,36.288870425712609,131.171171655878425 -81.909219686635325,36.303772647802703,131.208317591808736 -81.856086799846011,36.33901751961556,131.255778761580586 -81.801892684674939,36.359831060675567,131.252713688649237 -81.794768532705049,36.362186017749863,131.251020394265652 -81.790792262461764,36.350082605544003,131.204383239150047 -81.766006487196321,36.340431269676195,131.137726151384413 -81.748921026400211,36.339115483984628,131.109968209639192 -81.732054642163789,36.342946461542915,131.100056564435363 -81.727016500239927,36.342123544538346,131.09039400331676 -81.722047954974613,36.389257054229738,131.244158994406462 -81.715356726759524,36.452732614601665,131.450943826697767 -81.716161780740251,36.4551194988437,131.460148889571428 -81.69836675372953,36.486491234884753,131.542543472722173 -81.696986812835803,36.493332936798737,131.56390006840229 -81.697914862111276,36.495145846114106,131.571314771659672 -81.69834091132924,36.497893717544208,131.581221574917436 -81.699344952408737,36.498973659444616,131.586250574328005 -81.701008006680553,36.499770608222782,131.591213528066874 -81.7013180488551,36.502227493922128,131.599973930045962 -81.701003046087507,36.502617479077088,131.600869987159967 -81.699050039761971,36.505815351653041,131.609072640538216 -81.698370033538879,36.506639320423879,131.610946083441377 -81.698909084452538,36.509296195000296,131.620694601908326 -81.698824094802603,36.510200154759048,131.62364693172276 -81.700526181488101,36.51325600071705,131.63632701896131 -81.700681204678119,36.514634936761041,131.641216465272009 -81.701173235181287,36.515909874472889,131.646210290491581 -81.701633261477127,36.516941823498094,131.650336073711514 -81.709043746351696,36.537959803292111,131.731685944832861 -81.701042587161965,36.541464716924501,131.73271297570318 -81.678615678080803,36.589865728083197,131.866326423361897 -81.608048827099537,36.588843413610192,131.767306073568761 -81.522108496747776,36.582270487953316,131.628867174498737 -81.354394040408977,36.576475261468531,131.383196041919291 -81.354241318986865,36.576476266222656,131.382994056679308 -81.30858184767051,36.576776659611504,131.322640215978026 -81.062930308242485,36.568775220975816,130.966422542929649 -81.059908228426082,36.568731249940043,130.962237291038036 -80.947049216418179,36.56495242656797,130.798882909119129 -80.945399171221524,36.564814447482931,130.796216149814427 -80.902896396942708,36.563511269361179,130.735211610794067 -80.902786034581055,36.563507885538847,130.735053279437125 -80.839012821394945,36.560888450687763,130.641366608440876 -80.838699315033338,36.560875573656922,130.64090636279434 -80.838147301016917,36.56091157693244,130.640295728109777 -80.745156890206232,36.563444287181554,130.52555307932198 -80.688593397674524,36.563169800154554,130.449718797579408 -80.613210316541782,36.559886236600057,130.338873265311122 -80.441147727126335,36.552391467236639,130.08653649687767 -80.433675525385368,36.55206354766009,130.075590985827148 -80.432652497249521,36.551980560385836,130.0739625999704 -80.229305035425256,36.545630628015473,129.785567766055465 -80.226449958251891,36.545511658319157,129.781426184810698 -80.172676527250459,36.544983151651273,129.709321066737175 -80.170575471207982,36.544954171288552,129.706477214582264 -80.054492724077306,36.544388134010617,129.553119200281799 -80.028305690161972,36.544260441602027,129.518584967590868 -79.968546104053175,36.544267960395061,129.44088436756283 -79.968014089566921,36.544240966226823,129.440100609324872 -79.921272744316241,36.544131728366331,129.379016543738544 -79.715883504760271,36.543651713274407,129.1114651998505 -79.668336108903333,36.54354058893535,129.049727814272046 -79.66785409605933,36.543540593086817,129.049106209538877 -79.511984101407023,36.542510059164201,128.84496652521193 -79.51166991683786,36.542507981928495,128.844555859453976 -79.471068531254872,36.542795154158355,128.793419298715889 -79.446982195351339,36.542965515825323,128.763109386898577 -79.446708188333574,36.54298851713996,128.762836921960115 -79.343714676052087,36.543153333727162,128.631519605405629 -79.219653024330185,36.543351861696571,128.47381408046931 -79.210494874034595,36.543366516765026,128.462192898616195 -79.209700852462973,36.543343524552874,128.461102170869708 -79.138948958501544,36.543512118566916,128.371609275229275 -79.127090637859936,36.543306228505188,128.355822249315679 -79.125748602329935,36.543341238333085,128.354236150160432 -78.9728225052189,36.543897509382276,128.162106841802597 -78.971585472391737,36.543928518455921,128.160647026263177 -78.943261710443025,36.543853761244996,128.12453927565366 -78.943016704300604,36.543887761793634,128.124346151016653 -78.916426987885544,36.543748992621545,128.090238007716835 -78.915549964285503,36.543747000116674,128.089122289791703 -78.79730378035913,36.543489008587997,127.938967612572014 -78.766432949476709,36.543503267700792,127.900124720297754 -78.759394761577411,36.543628321298101,127.891692560166121 -78.735124015937174,36.543678799010159,127.861317726783454 -78.671051383870719,36.543812055087784,127.781226753257215 -78.664317202037523,36.543788112646936,127.772686475887895 -78.534009673876128,36.542782248635881,127.605863336473703 -78.530718584733336,36.542759277167683,127.601665767841041 -78.472017016440162,36.54408570811119,127.532838300801814 -78.471787010341828,36.544094709628332,127.532581958919764 -78.457964638921851,36.544252817880498,127.515861372463405 -78.442193215475456,36.544465939883963,127.496903799474239 -78.437327083698989,36.544444981388445,127.490757553838193 -78.324903058024887,36.54558886610527,127.354594045318663 -78.247669973958139,36.546121483554238,127.260430361144245 -78.246450941833601,36.546191490540693,127.259158165194094 -78.134308895516696,36.545628444260153,127.118190240114927 -78.133896883886806,36.545592449271858,127.11755605135113 -78.047185382820842,36.545950221430942,127.011586491018534 -78.040403352119995,36.545978204057107,127.003309058956802 -78.039921338744008,36.545955209057091,127.002634584903717 -77.900750564094594,36.546446332626545,126.832840262912214 -77.883336091521144,36.546520472345108,126.811684348620474 -77.876258899277701,36.546537529689068,126.803044454194605 -77.768092965559575,36.546536860262265,126.670304686762393 -77.297838120318772,36.546533918814497,126.097869435325265 -77.250651827675469,36.546533620866519,126.040848964825273 -77.165459513629187,36.548119236779527,125.943592229858041 -76.917000664616737,36.545606340452593,125.636637378484011 -76.916953734825114,36.545609265279758,125.636591392569244 -76.916336342706003,36.545647743295213,125.635986434295774 -76.808027751715144,36.552397908534196,125.530072162859142 -76.782245042958593,36.552451111464791,125.499529208987951 -76.542629436607058,36.552106027293114,125.213857677765191 -76.54233337257638,36.55210633931744,125.213508498854935 -76.492437762986739,36.552158924428483,125.154705231077969 + + + South Carolina + + + South Carolina + 0400000US45 + 45 + 30060.695999999999913 + + -82.217292649248151,35.19785225836538,127.813896662555635 -82.196558108328389,35.196759494089918,127.781107820570469 -82.186587847253207,35.196163610728192,127.765099311247468 -82.177948620369051,35.195598714069114,127.751060316339135 -82.168750385502179,35.195507799978252,127.737903574481606 -81.970394256936245,35.18902584418916,127.439003149047494 -81.875499796098552,35.185924844526568,127.296451091766357 -81.85889829004347,35.18530358452017,127.271265245042741 -81.769136560269658,35.18194452844633,127.135240885429084 -81.495321894790166,35.17169784788468,126.721886892803013 -81.494457873549777,35.171766852174031,126.720942655578256 -81.462464037082299,35.170473192122131,126.672462217509747 -81.453453801463809,35.17010928779797,126.65881631243974 -81.367744559767885,35.166710194044235,126.529359732754529 -81.367652512008718,35.166706651775407,126.529221208766103 -81.329072919650358,35.165221995281598,126.47118610329926 -81.270250123635194,35.162958319993386,126.382790737785399 -81.242736288223938,35.161899505918697,126.341482561081648 -81.240408227029945,35.161792531134367,126.337927197106183 -81.09126129707866,35.154447167123749,126.108777170069516 -81.04445203767456,35.150210770315923,126.030195902101696 -81.04380285403407,35.147862517030248,126.021034251898527 -81.033591256327441,35.110924712139841,125.876851847395301 -81.037207274205372,35.105027958570382,125.860953954979777 -81.047568507896329,35.10243999115346,125.86590664088726 -81.053122595473141,35.098099147695883,125.85813666228205 -81.0582805988155,35.087952581129699,125.829329080879688 -81.059073454309839,35.07501418385899,125.784713914617896 -81.058509297052154,35.063807716854718,125.744356613606215 -81.042532666201325,35.046528668964157,125.661549024283886 -80.95891212330784,35.094463129606048,125.717304170131683 -80.935991720573142,35.109232631497513,125.738372848369181 -80.907593599111408,35.078588317697147,125.591610241681337 -80.907457645736756,35.078433648934862,125.590879280120134 -80.841499061030774,35.003395182237682,125.235983720980585 -80.807820592381844,34.965080523064138,125.054570142179728 -80.807497579587036,34.964725542579501,125.052873847074807 -80.783077609189462,34.937615031149853,124.923627322539687 -80.797784602615295,34.827119133632706,124.55083039868623 -80.778746042896742,34.821535560068639,124.505143760703504 -80.77282588989803,34.821484612794265,124.496938259340823 -80.647631652182099,34.820431724863532,124.323777381330729 -80.645686601746945,34.820407742475417,124.321064090356231 -80.627107118407167,34.820056916431277,124.294718875549734 -80.627023116515232,34.82007891610067,124.29468381498009 -80.622251992691716,34.820013959569181,124.288009895011783 -80.562702017577976,34.819321688863887,124.205196529626846 -80.562685447667434,34.819321496237976,124.205173498019576 -80.486709272521523,34.818572770902982,124.100168656557798 -80.45268559407593,34.818237476051593,124.053208075463772 -80.449791518509102,34.818173503472622,124.049088961444795 -80.435868154228288,34.817809638023348,124.029075803235173 -80.426926921204156,34.817651720821495,124.01649734377861 -80.420610755125978,34.817422784854323,124.007194817066193 -80.41945772583199,34.817463792624885,124.005792041309178 -80.418038687743106,34.817349809968917,124.003479238599539 -80.400895239889039,34.816969972284426,123.979099620133638 -80.321435403588808,34.815655284329559,123.867818128317595 -80.10001038611118,34.811991730710837,123.558830007910728 -80.099038360892692,34.811991738829498,123.557534680701792 -80.078238815904612,34.8115609328703,123.528285183943808 -80.073927704270602,34.811580967911162,123.522615014575422 -80.043778913872401,34.810942249647852,123.480197083204985 -80.028478512073022,34.810571394757773,123.458514828234911 -79.928629891348351,34.808401328636762,123.318104032427073 -79.774614876334027,34.80777863619965,123.111922067590058 -79.773836856351807,34.807801641557766,123.110976119525731 -79.745932126238841,34.807533885223968,123.073152385652065 -79.745123104736507,34.807498893570759,123.071958757005632 -79.693953983119243,34.806821730338378,123.002004640176892 -79.691206690982639,34.806785373137409,122.998251272365451 -79.689093635412149,34.806745392486206,122.995321569032967 -79.635219819910048,34.772862436263715,122.802979729138315 -79.632580724739299,34.770685560795265,122.791703229770064 -79.562692215786456,34.713849821034188,122.495858156122267 -79.555454959187301,34.708217146770941,122.466115642338991 -79.52126873033211,34.680182753134631,122.320460707880557 -79.520042686267743,34.679176810776191,122.31523394305259 -79.491199651877551,34.655676159159533,122.192841184325516 -79.480303257633423,34.646497682836412,122.14551180973649 -79.472596967498802,34.639058098118703,122.108623361214995 -79.469714869846868,34.637181210567356,122.098083875142038 -79.462751495077356,34.632290647577726,122.071338287554681 -79.46231561463064,34.631984517166359,122.069664059206843 -79.460763560993584,34.630885581899655,122.063670568168163 -79.451031211527166,34.622895039900939,122.022128100506961 -79.359310916506587,34.547221375125041,121.629043989814818 -79.332320933409903,34.52373370920715,121.508884173817933 -79.325846698225888,34.518147027010954,121.480225331149995 -79.324241636806903,34.516499118281189,121.472170657478273 -79.199970119954813,34.408570254590188,120.919049120508134 -79.193028872317882,34.402911579915006,120.889465969055891 -79.191726823196007,34.401622651766246,120.883092164993286 -79.152471411636384,34.368626539229254,120.712131646461785 -79.144228115266003,34.361690935964312,120.676196051761508 -79.072152526559563,34.301117402540925,120.36207608319819 -78.713176672577816,33.998626731776042,118.790299505926669 -78.71111159541114,33.996582846167165,118.780122228898108 -78.651468126877745,33.945932912586038,118.516821477562189 -78.542051557341338,33.853015075570475,118.033261227421463 -78.55490885623918,33.849734132907692,118.037812208756804 -78.585806623014179,33.846185061882018,118.06474732235074 -78.673227603057001,33.819490662779572,118.079790480434895 -78.715084497361232,33.802042175688634,118.069885226897895 -78.773706667556198,33.770416241645165,118.029593170620501 -78.813901431227748,33.745378135317658,117.989640593528748 -78.86390230509295,33.707561570888039,117.915351749397814 -78.939048515293734,33.641736168010667,117.770481986925006 -79.00308201243142,33.574026880805157,117.603973264805973 -79.008329487959656,33.568478178504591,117.590321285650134 -79.02948966338181,33.535279625789236,117.495148245245218 -79.042098882137239,33.525687993149816,117.476188681088388 -79.085562556804874,33.485585603263054,117.384721761569381 -79.102334736631889,33.462933574920342,117.322778220288455 -79.136415977757636,33.405787094120129,117.155509507283568 -79.148471002751521,33.380164250472461,117.076178010553122 -79.153009815182187,33.352847549524164,116.98055181093514 -79.159403778244595,33.334734384865371,116.92158629372716 -79.163306816891918,33.329169626374302,116.906031525693834 -79.181292467565086,33.2560680639507,116.657401215285063 -79.181537294282691,33.239882855270366,116.597337202169001 -79.173367736279559,33.208506457864644,116.469366577453911 -79.18884377088014,33.175642949654232,116.367101912386715 -79.196604885425359,33.167947266844465,116.348633578978479 -79.216427279679209,33.157500624909488,116.335892677307129 -79.239236661351256,33.138987356201348,116.29696087166667 -79.247064727804684,33.12679789421346,116.261766084469855 -79.291729328691602,33.111984020523224,116.265759274363518 -79.292566729731121,33.111706280365517,116.265834799036384 -79.33088549455438,33.09191995403544,116.242825383320451 -79.338145485411886,33.074236767908737,116.186293107457459 -79.33632236200711,33.067297124004,116.157869525253773 -79.340289297894913,33.052271833240681,116.106868322007358 -79.360937345799385,33.00860982454239,115.970733533613384 -79.404689436140757,33.005840618770755,116.018806166946888 -79.417492796154832,33.008752374806669,116.046846246346831 -79.424425064948409,33.017021912446175,116.087125732563436 -79.462025945391161,33.009575985099417,116.109525131992996 -79.484478449562602,33.003202123596459,116.115697549656034 -79.489706744365122,33.017768363575676,116.177309861406684 -79.507903397913424,33.034748382808608,116.26532029081136 -79.5234298232903,33.037285135628679,116.29563420265913 -79.558541565356947,33.023204554372164,116.289981885813177 -79.581706993345804,33.008383103894083,116.265544997528195 -79.587571975833782,32.993270804185158,116.216777238063514 -79.602002211078371,32.981219286155827,116.190982597880065 -79.607597276133106,32.974185589781122,116.172126343473792 -79.618593340937934,32.954664468459576,116.113683347590268 -79.618697256712906,32.946808856174449,116.084344177506864 -79.613910023354833,32.93675439119135,116.040164524689317 -79.60717575354289,32.92789288256585,115.99783487059176 -79.58687824091993,32.928401016827351,115.97244581580162 -79.582668187277505,32.933280808450668,115.985109552741051 -79.57593205040196,32.936465703781138,115.988013664260507 -79.573594983636099,32.935824753834517,115.982466217130423 -79.570742831413924,32.928632132051668,115.951624377630651 -79.576986765253409,32.908176095394985,115.883177228271961 -79.632130978214406,32.89054753549884,115.891133742406964 -79.656408422030637,32.874647132639033,115.8640754269436 -79.696124188375407,32.852340926477623,115.833764296025038 -79.700465184306481,32.841940408234002,115.800503993406892 -79.703939226338875,32.837724590085038,115.789334044791758 -79.720862547329403,32.827739952558822,115.774619870819151 -79.717744333859699,32.815571581027825,115.724613873288035 -79.72737249496511,32.807940884245959,115.708897666074336 -79.81200632832352,32.778905661449372,115.71407575532794 -79.819222394891227,32.76829813201725,115.683899205178022 -79.841335851845855,32.758762432255153,115.677951036021113 -79.849513042341684,32.757194445904055,115.683132893405855 -79.867728854402074,32.759367942252027,115.716032372787595 -79.873219089355089,32.754074081086529,115.703539307229221 -79.874591595159458,32.747603852622461,115.681023677811027 -79.869338321216503,32.736796304781386,115.63316367007792 -79.871322293724091,32.729724641141722,115.609199866652489 -79.889014384134626,32.697126125308117,115.510288193821907 -79.885947187839662,32.686351686258483,115.465466558001935 -79.916668753061415,32.666865416031122,115.433676435612142 -79.96945581447936,32.641683256935586,115.410438376478851 -79.976235984128778,32.64148821331527,115.418938718736172 -79.987905135241405,32.628339777754334,115.385176239535213 -79.992738147804076,32.618341238930107,115.353987973183393 -80.000362291029703,32.613803405549568,115.347236279398203 -80.011493539924601,32.610804467732052,115.351085623726249 -80.038265232814524,32.612188187839415,115.392847886309028 -80.078029162880512,32.605271220098921,115.421022239141166 -80.122359143063193,32.592475510063416,115.433287438005209 -80.149397693845515,32.580431898937739,115.424780559726059 -80.168277966178138,32.561838680082225,115.380349967628717 -80.172755927843383,32.548072333717329,115.334422182291746 -80.189393430277349,32.555557827744785,115.385543704032898 -80.194668553514873,32.556166781269283,115.395080387592316 -80.206222876536287,32.557500597618912,115.41597190964967 -80.247354645461485,32.53306849602987,115.380027443170547 -80.250560074476979,32.531538220951354,115.378641504794359 -80.278675270674682,32.518115997662719,115.366497390903533 -80.333433231550643,32.480060472965363,115.297798525542021 -80.339349387423042,32.480686394779987,115.308318216353655 -80.344878659491656,32.492750745838876,115.361611154861748 -80.36495222339245,32.498053321004434,115.409340961836278 -80.381712537992527,32.488314676828438,115.395586661063135 -80.387823608612109,32.480766007205574,115.375438542105258 -80.393557714591964,32.477288136336448,115.370180979371071 -80.41448418975871,32.472628204491507,115.381414795294404 -80.416940266998495,32.474030114663968,115.390112973749638 -80.418893360251928,32.478031898325753,115.40795932430774 -80.419499538946312,32.492849149950338,115.464878684841096 -80.424451741855208,32.499943754748848,115.498558854684234 -80.440405203787563,32.505426353176439,115.541323803365231 -80.453076454197728,32.499240562972062,115.535422632470727 -80.46670877510833,32.497254554435486,115.546742781065404 -80.473066953385882,32.498918420472954,115.561823330819607 -80.477909314613299,32.487344509368725,115.524728036485612 -80.481248943028987,32.479362337066554,115.499138488434255 -80.485615871393222,32.46293212743425,115.442982809618115 -80.481154605626415,32.449004862405737,115.384072900749743 -80.468586049688284,32.427217056875591,115.284144072793424 -80.447072492106983,32.425679304554983,115.248572191223502 -80.433957018785662,32.412618064895227,115.180930157192051 -80.430937845332494,32.403741535062416,115.143096068874002 -80.430287695907509,32.391627149419307,115.096244507469237 -80.435299662937396,32.377153837869365,115.048253511078656 -80.446447670266892,32.352297000793975,114.969306365586817 -80.457810808135591,32.338846588295347,114.933944016695023 -80.45618865316716,32.328421126235121,114.892092104069889 -80.467338853219019,32.321133405322051,114.87983457185328 -80.518868922805908,32.300760025019443,114.873799044638872 -80.540427334349232,32.288988448227521,114.858950084075332 -80.546686437030573,32.284040648321387,114.848822717554867 -80.572094977355576,32.27524289126665,114.850643001496792 -80.597393614066263,32.275513677421984,114.886819890700281 -80.619286015738538,32.262148178789914,114.866425639018416 -80.639857317586717,32.257583313789723,114.877679361030459 -80.659635362200376,32.250603164358303,114.87865677010268 -80.670166813307972,32.218749968416496,114.772107343189418 -80.689858132490414,32.202938611957833,114.739346354268491 -80.722464503553624,32.162396405270727,114.630368313752115 -80.750092971570183,32.142107214057788,114.591599569655955 -80.790998799453206,32.124464784121209,114.581499893218279 -80.813506221415011,32.111717252085846,114.564365611411631 -80.822533433850424,32.110560239233713,114.572588863782585 -80.829397655669453,32.115192949922047,114.599873169325292 -80.832534728268413,32.114679951068965,114.602309194393456 -80.845435017026702,32.111680000929887,114.608933945186436 -80.859739262701922,32.101552401194652,114.590339546091855 -80.879115325449533,32.081764311520388,114.541988359764218 -80.906383133450021,32.053916661427365,114.473921341821551 -80.893348489658919,32.045737968181307,114.42438271921128 -80.886521219664189,32.036574487815031,114.379787995480001 -81.005122669202734,32.074196500835384,114.690114863216877 -81.043841679543092,32.086478703514139,114.791471321135759 -81.062859189893175,32.089905378028263,114.831325247883797 -81.114344747330563,32.115173684413698,115.000210617668927 -81.118244892714202,32.119573429920727,115.022473409771919 -81.123045499695408,32.163769149126857,115.197518182918429 -81.126469719768906,32.229092501691667,115.450710734352469 -81.129046917459405,32.278257302535529,115.64099445939064 -81.121345831368544,32.287755883918997,115.666186408139765 -81.123346099109497,32.307353877052094,115.743323605507612 -81.135345802151434,32.343649946789142,115.897755456157029 -81.141946052375005,32.351349504892575,115.936204376630485 -81.169046939259744,32.370346327733621,116.046271327883005 -81.200045819475832,32.469236091064303,116.463663862086833 -81.27643453575638,32.541402840157637,116.843340393155813 -81.287795946969425,32.546776708145998,116.879589151591063 -81.319275832012451,32.561666473332593,116.980024807155132 -81.329774110492338,32.563172312335858,117.000499199144542 -81.349176684979909,32.571237749079231,117.05822226125747 -81.390280561315976,32.597327039739646,117.214358946308494 -81.390361006889293,32.597378099837179,117.21466448623687 -81.41292982988584,32.620350761543804,117.332865446805954 -81.419684123034799,32.631332154821884,117.38365135807544 -81.419455177841968,32.636643889904541,117.403273738920689 -81.415785117649492,32.639379782444955,117.408362365327775 -81.406158806869726,32.746898604769846,117.797914622351527 -81.405974124962029,32.748961366847595,117.805377683602273 -81.424798322684978,32.812445035362806,118.069411781616509 -81.500859990686777,32.965738755976908,118.748412659391761 -81.495766039734804,32.980920041397439,118.797722307965159 -81.492525186166731,33.00049309309896,118.86595703382045 -81.497667450026213,33.012144470454693,118.916523880325258 -81.512720992120137,33.026425635165587,118.990817891433835 -81.542862991186055,33.047572333565775,119.111865252256393 -81.616790130145461,33.09444982941114,119.390122357755899 -81.621321531272159,33.097323209042102,119.407173870131373 -81.697970691606542,33.118464521191932,119.593840007670224 -81.773290388755044,33.182029562216741,119.935643497854471 -81.853016881980352,33.249313658041928,120.297066126018763 -81.853178108156612,33.249449722691843,120.297796616330743 -81.903781365707886,33.333143152087935,120.677915459498763 -81.913617538422926,33.410708234126894,120.977021529339254 -81.95898156936299,33.47052567558184,121.260811124928296 -81.968084760253234,33.482529229281838,121.317715886048973 -82.008187269878434,33.524725809572267,121.529130216687918 -82.008687288394952,33.525225780698108,121.531669422984123 -82.015342417056047,33.532202988086759,121.566644375212491 -82.029288063542538,33.54682354200412,121.639918399974704 -82.047385743883396,33.565718457927957,121.734690489247441 -82.070090450447125,33.577269696411712,121.809133772738278 -82.099868326542861,33.588244903044306,121.891514357179403 -82.117683287025102,33.591609656405815,121.929111984558403 -82.12589403539738,33.593160439682734,121.946442951448262 -82.130133124723784,33.591811470004011,121.947541234083474 -82.136099287097622,33.592930364144465,121.960107443854213 -82.18090870725274,33.617829756988648,122.114715002477169 -82.197638302671621,33.632465894239182,122.191906643100083 -82.21970553337033,33.688179967011358,122.42633549682796 -82.248530064912359,33.754468466341244,122.708499112166464 -82.302517017925922,33.803738587565718,122.964267902076244 -82.325540816340933,33.821906499548511,123.062962877564132 -82.404944358460966,33.867347590550757,123.340798285789788 -82.409417480418412,33.868190510698525,123.350229430943727 -82.423866808746112,33.865624511595158,123.361546936444938 -82.430227993196809,33.867714354386401,123.378189803101122 -82.565551858535429,33.957609263878446,123.896489945240319 -82.56565048702511,33.957674782247885,123.896867498755455 -82.598148736487431,34.014251885532275,124.147422902286053 -82.641773046655516,34.090198653523927,124.483243556693196 -82.642324067607149,34.090771620801952,124.486092202365398 -82.653247475832316,34.101560999884825,124.54051111638546 -82.655091529877396,34.10220295251743,124.54545658454299 -82.659633678020413,34.104974777854075,124.561918115243316 -82.660149696252489,34.105400752601312,124.564187518320978 -82.669186131182641,34.12201586460634,124.636826205998659 -82.678393505886575,34.13351222450401,124.691296984441578 -82.705214292371366,34.142861534888873,124.763250268995762 -82.718581745595174,34.152357955771812,124.816476163454354 -82.732956456828205,34.18021547481797,124.937005101703107 -82.742567188113043,34.210559605012513,125.059546019881964 -82.742996109510258,34.211913846022142,125.065012784674764 -82.745491360506691,34.22676310276357,125.121783711016178 -82.744537367640305,34.229192993121664,125.129121793434024 -82.743056367021751,34.232045867572737,125.13722016941756 -82.756105276662439,34.277914526698382,125.320065259002149 -82.767156011318448,34.29535556693849,125.398245999589562 -82.849732505663894,34.425683545497336,125.981472897343338 -82.875946740568196,34.470728137101673,126.179319985210896 -82.874913748587062,34.473345019886771,126.18714929651469 -82.883947070815154,34.480839577985179,126.226732268929482 -82.903748654053103,34.487738069400919,126.27960944082588 -82.940151565898987,34.48803773197784,126.332824863493443 -82.980653530250805,34.484537541376113,126.378459881991148 -82.993301235426415,34.481033805948798,126.384154953062534 -82.993756809749428,34.480907600295147,126.384360197000206 -82.996369816264746,34.476384795563298,126.372035402804613 -83.007934102114731,34.476211701171763,126.388019856065512 -83.035798914348931,34.485330012930838,126.460435771383345 -83.053248828370883,34.494896857733742,126.519487956538796 -83.073834132173403,34.506182667238932,126.589145143516362 -83.088277642441824,34.517771978975283,126.651043779216707 -83.107963336572993,34.535885155947518,126.743610357865691 -83.171369708167674,34.594226548929285,127.041557155549526 -83.172069809322181,34.600626234229246,127.065220072865486 -83.168614744588766,34.602252186789947,127.066004418767989 -83.24176987805977,34.626133380842397,127.255817858502269 -83.241762880510095,34.626333371270725,127.256514984183013 -83.292778529000103,34.655220522076092,127.43214269541204 -83.338964186740995,34.6895037469532,127.619799812324345 -83.339291140475481,34.689746441956054,127.62112792301923 -83.352390648043041,34.703524661152301,127.6886369837448 -83.352073792597039,34.715064109038785,127.728874829597771 -83.352489818970056,34.716277046966006,127.73375188652426 -83.353582866461622,34.717813963216223,127.740747863426805 -83.353520259931116,34.717932425819221,127.741075210273266 -83.340226868395732,34.743085868903705,127.810560904443264 -83.325158121295772,34.790508727788954,127.955848866142333 -83.284248534945476,34.823144531730811,128.011781042441726 -83.268390291136271,34.834564127525901,128.029133383184671 -83.244059281756051,34.879563192424961,128.152321071363986 -83.14435641619454,34.926568844513795,128.174373908899724 -83.109630559085687,35.002580530909398,128.391252416186035 -83.009540487203012,35.028783568694756,128.340129761956632 -82.898590002143123,35.057829802338155,128.283876338042319 -82.782218455570629,35.086393490847549,128.218685655854642 -82.782150452623711,35.086300495873381,128.218263598158956 -82.77849525960599,35.078693889876796,128.186441618949175 -82.780204259987329,35.075483027029875,128.177617639303207 -82.78163423450134,35.070852234147424,128.163423055782914 -82.783061240866658,35.068626327077972,128.157648287713528 -82.765551818259055,35.069986419546595,128.137590555474162 -82.687824545283377,35.121597667261661,128.208295218646526 -82.687582566163286,35.123629573093432,128.215065131895244 -82.583348499501682,35.144075524427969,128.139447653666139 -82.581211025478865,35.143770212481357,128.135365010239184 -82.575490385195252,35.14602355703245,128.135186044499278 -82.537610706149934,35.160944258920409,128.134027743712068 -82.536887308207611,35.160505878182676,128.131474933587015 -82.518366835599608,35.164450154356707,128.119200908578932 -82.517992831260187,35.164836139434769,128.120025126263499 -82.477217965149734,35.177292914484404,128.106248557567596 -82.385109097412681,35.21234807995355,128.099530196748674 -82.353509487403997,35.208402009635179,128.041427241638303 -82.289530516327673,35.200412495228356,127.923870735801756 -82.258591731753,35.200443768963034,127.880697631277144 -82.231991032162128,35.198592092847832,127.837026326917112 -82.231593021794737,35.19857209732865,127.836400057189167 -82.217292649248151,35.19785225836538,127.813896662555635 + + + Washington + + + Washington + 0400000US53 + 53 + 66455.520999999993364 + + -122.399493701978443,47.913093303471214,229.232998953200877 -122.421418885000762,47.912816904587068,229.273750817403197 -122.433180096904579,47.915423584751892,229.299310554750264 -122.447664865741501,47.930916719080123,229.347256760112941 -122.44790511461899,47.936880485634155,229.355699914507568 -122.44293650128607,47.947284179235076,229.360322261229157 -122.442906718460364,47.952534978361577,229.367298252880573 -122.448829239439775,47.963844433954122,229.393535860814154 -122.474808518223085,47.989136978920186,229.476017642766237 -122.489653744001345,47.991416613920073,229.50687089189887 -122.503405714267842,47.987776496118052,229.527778125368059 -122.516961587378987,47.981839470051966,229.545257822610438 -122.519928354799305,47.975603653598768,229.542497190646827 -122.523367305484499,47.973684662854119,229.54638169053942 -122.548972290899471,47.967902405707385,229.586662767454982 -122.554201603485339,47.974331061313691,229.605039304122329 -122.553180748102477,47.978032938450951,229.608061213046312 -122.545212036504864,47.986669756430722,229.604638796299696 -122.543713314569359,47.993684515660881,229.611177722923458 -122.545073467978455,47.99709035972689,229.618263219483197 -122.562168037757388,48.00718765306403,229.663732037879527 -122.583930390220161,48.011071097002066,229.709666314534843 -122.60949347140641,48.031675829606293,229.784918194636703 -122.598937705383918,48.039517727273392,229.775557014159858 -122.595773026060812,48.047883466621506,229.780730037949979 -122.597074417396342,48.057001093706774,229.795256369747221 -122.616181271641594,48.073470106473501,229.852833118289709 -122.615370543978301,48.080166865920624,229.860179311595857 -122.609444848901177,48.088715650631826,229.860403390601277 -122.600455713457208,48.111296957765859,229.873447807505727 -122.604264777306469,48.135928947765514,229.913096348755062 -122.611724538434444,48.152539175486815,229.948942569084466 -122.619620909246493,48.159733753564964,229.973175827413797 -122.63532422409736,48.163959298116886,230.008077551610768 -122.658177391989412,48.163190898438728,230.049763291142881 -122.673392306950319,48.157989810811742,230.071351301856339 -122.67949424602179,48.155264800021342,230.079170039854944 -122.681713287446811,48.155790738350731,230.084008922800422 -122.688784168702469,48.175329862074783,230.122904126532376 -122.695242512835065,48.182185480073642,230.143971945159137 -122.713667180172735,48.19424867542179,230.194214343093336 -122.73718965360014,48.200638990681092,230.246522057801485 -122.746772144188384,48.210324442597461,230.277099912054837 -122.765202543806936,48.216015880050541,230.318962052464485 -122.772205985593885,48.225068404597032,230.34387344866991 -122.772100117402843,48.228221286865455,230.347795919515193 -122.754725336321954,48.260733380068636,230.357824224047363 -122.734184974434342,48.280097032727646,230.344774599187076 -122.724753941552365,48.304939270010998,230.359574906527996 -122.709241271900297,48.315957145323701,230.345019624568522 -122.675896647821304,48.355353285412221,230.334200986661017 -122.667094424526383,48.375492691902188,230.344006000086665 -122.666826555049454,48.402176692109293,230.378163661807775 -122.646965291722793,48.406156449283742,230.346395147033036 -122.637158579360261,48.404913592068084,230.32654626108706 -122.634810369360935,48.401736976528944,230.318053910508752 -122.636191496734654,48.399527105021555,230.317751506343484 -122.639506387693814,48.398698348855724,230.322839442640543 -122.640058777004043,48.396350372444807,230.320816443301737 -122.637986921684927,48.39579794809066,230.316245526075363 -122.629975936094908,48.397869834627059,230.304039595648646 -122.619340966669327,48.407814354448156,230.297185463830829 -122.611882561810319,48.412234191375852,230.28906140383333 -122.604147666181234,48.410576954914681,230.272529205307364 -122.598898842339551,48.406295467157889,230.257206708192825 -122.597517268565923,48.397870445912801,230.243682943284512 -122.587204584312872,48.395836430341419,230.221861572004855 -122.591056254085899,48.363676568661013,230.187145137228072 -122.587326810130719,48.353976004437072,230.167558113113046 -122.567689421224472,48.348889565701384,230.124377600848675 -122.553498038364793,48.342811061872922,230.090030079707503 -122.518141806507742,48.321093546029289,229.995820519514382 -122.508730284481331,48.310716114635881,229.964707509614527 -122.506890859848895,48.301048514230004,229.948611836880445 -122.507989755773863,48.298352595391663,229.947123727761209 -122.521696482100637,48.288989691493867,229.960376318544149 -122.524917392066911,48.286179737154946,229.962691463530064 -122.533137335791437,48.283120698298767,229.973993669264019 -122.553954480537271,48.282187342332989,230.011556341312826 -122.560493561470537,48.282736198672559,230.024459918029606 -122.577034249501011,48.29557740228821,230.072094689123333 -122.586248461007784,48.298661112500135,230.09329556953162 -122.601694610487939,48.298976810129666,230.122484441846609 -122.620628602138481,48.294832610752877,230.152343420311809 -122.628919456828129,48.289664650276102,230.161036763340235 -122.622910149481115,48.283634991333074,230.141952313482761 -122.625940605333426,48.27010544633626,230.129897919483483 -122.654800675223257,48.265755068537899,230.178013753145933 -122.655591440117931,48.260014271103827,230.171977153047919 -122.671370789359088,48.241288684206651,230.176898431032896 -122.670545081406644,48.224642331145745,230.153550856746733 -122.633419618079259,48.221362153040197,230.079965959303081 -122.630511667473201,48.223143140094194,230.076876568607986 -122.608564877469718,48.208939091277735,230.017267845571041 -122.590295779311717,48.186618281852127,229.953808450140059 -122.587935607965804,48.183030462462412,229.94467831030488 -122.584752079575409,48.171102975516121,229.923022655770183 -122.577061390209906,48.156272683771363,229.88910595793277 -122.57009203691814,48.149304079627207,229.866891438141465 -122.56035973570458,48.120260367932069,229.810335262678564 -122.562065525242275,48.114867541430435,229.806391994468868 -122.573769249015058,48.105794667853765,229.816272486932576 -122.574007127015292,48.102824776634257,229.812788108363748 -122.556711941556827,48.0780750449876,229.747662820853293 -122.547271822814338,48.053234170514052,229.697043512947857 -122.541104671956703,48.050916374580567,229.682423218153417 -122.51846576192014,48.0578655330674,229.649287382140756 -122.51614582045508,48.059761504103058,229.647465101443231 -122.513233471104897,48.075984939307808,229.663559000939131 -122.519058763796949,48.081768609491021,229.682129488326609 -122.527575483903234,48.097219860592162,229.718543809838593 -122.515429418493824,48.098221050032748,229.697160577401519 -122.493257084926654,48.094925591126582,229.651335533708334 -122.463757750018871,48.069186125415897,229.561986774206161 -122.450570042406611,48.055008913480478,229.518457480706275 -122.433416502111427,48.045687590528438,229.473951444029808 -122.402777878773392,48.037250486185279,229.405377093702555 -122.389531655544189,48.034717830788573,229.377213069237769 -122.378408574241647,48.03514502259214,229.356972323730588 -122.375411148642442,48.001480365416334,229.30636912304908 -122.371308883980717,47.995984652370254,229.291335026733577 -122.355758170354079,47.982123473572152,229.243654069490731 -122.352400639754038,47.970045998776584,229.221176287159324 -122.351743196467154,47.959487415555323,229.205781603232026 -122.352886976388262,47.95392660729312,229.200462109409273 -122.360957393773191,47.938112062902221,229.194353467784822 -122.370021267427063,47.933107085598202,229.204621172510087 -122.378981986886686,47.924395252571301,229.209718259982765 -122.377924421620634,47.910944788814042,229.189658754505217 -122.379444257061806,47.906633926035688,229.186712957918644 -122.382641206258185,47.90471594003094,229.190130150876939 -122.392564363483658,47.906388690459565,229.210992028005421 -122.399493701978443,47.913093303471214,229.232998953200877-122.651580403956515,48.58911897552467,230.591257388703525 -122.644772338790631,48.589001108533303,230.578492107801139 -122.631495529166088,48.572862961443327,230.53313850145787 -122.613014891951437,48.561809723036966,230.484656492248178 -122.595074411381304,48.554299342183526,230.4417231278494 -122.586158242409184,48.552198588944464,230.42248644772917 -122.581029051192303,48.548794812886648,230.408587323501706 -122.575139181593514,48.529693637796811,230.373005735687912 -122.585737417184447,48.533005314018361,230.39693618286401 -122.592366838324722,48.536923753576893,230.414287904277444 -122.602120644647258,48.537568418996493,230.433206277899444 -122.622030929685948,48.529910470871251,230.460249942727387 -122.637910910988552,48.526685930070578,230.485545601695776 -122.642586270291574,48.526524628689238,230.494010389782488 -122.651428844969004,48.529433207845628,230.514163694344461 -122.654213979044442,48.531993059528787,230.522629550658166 -122.656515282927089,48.538619768273264,230.535436812788248 -122.655785748279612,48.549638370157368,230.548274501226842 -122.652959939418139,48.554682235039429,230.549528227187693 -122.65455990203175,48.584094048478434,230.590321482159197 -122.651580403956515,48.58911897552467,230.591257388703525-122.716689169711231,48.609439788597754,230.737951496616006 -122.696848500933626,48.597262893528786,230.685585186816752 -122.693921018753173,48.591273078264351,230.672476912848651 -122.672812311778628,48.569474651422709,230.605360044166446 -122.691613846490498,48.544565883300457,230.608189584687352 -122.719451912657888,48.540401513398514,230.654470686800778 -122.72458099476755,48.541268384120329,230.665100179612637 -122.726205407346797,48.550568005656672,230.680065326392651 -122.732655136661876,48.56626329718447,230.71218163985759 -122.738374332737621,48.56966606200406,230.727152783423662 -122.741615570819619,48.574553818178423,230.739432238042355 -122.742074006379411,48.584609434003077,230.753175127319992 -122.727106704576926,48.603922996174319,230.750185176730156 -122.716689169711231,48.609439788597754,230.737951496616006-122.701443246456662,48.62177481582512,230.725510455667973 -122.700237320358283,48.623739765416872,230.725793393328786 -122.676350405232142,48.63060396134879,230.690353449434042 -122.65919239165278,48.610552032605206,230.632875595241785 -122.668325394739469,48.608748927206058,230.647478047758341 -122.678972573119339,48.61071565268265,230.669721184298396 -122.688312872007202,48.613927481855058,230.69113858230412 -122.701443246456662,48.62177481582512,230.725510455667973-122.802394295980733,48.602348631668001,230.88768854085356 -122.80704608914094,48.596590758643536,230.888949913904071 -122.803272604917282,48.586084222302929,230.86851651314646 -122.788762102251155,48.577325823729893,230.830400795675814 -122.77338135700063,48.563086646499784,230.783631530590355 -122.772524164287447,48.558766824192311,230.776502004824579 -122.774558926476217,48.552804008729957,230.772627674043179 -122.784792717971115,48.545852075471494,230.782694450579584 -122.790677135601399,48.531054518189634,230.774621887132525 -122.789520809614245,48.523673816427397,230.762997469864786 -122.779640500370675,48.518461198245099,230.737959361635149 -122.781297134723928,48.509573499989401,230.729609781876206 -122.802586702975674,48.495129639656348,230.750571427866817 -122.818504558462351,48.488503587791605,230.771618567407131 -122.820084403376839,48.484550706321642,230.769469931721687 -122.821901350390817,48.459506612573449,230.740613097324967 -122.815271037486525,48.453519962650127,230.720575461164117 -122.809878615634446,48.444722395097372,230.6992098223418 -122.804679103570507,48.433762905335584,230.675404344685376 -122.805690927159958,48.42941304990417,230.671672197990119 -122.814377729317854,48.422991127774807,230.67953984439373 -122.827972924216297,48.424795803485914,230.707157612778246 -122.876305090368319,48.41886011550816,230.789421608671546 -122.885929198973585,48.41945691151993,230.808098679408431 -122.895816448781531,48.423318579586358,230.83147076331079 -122.891186974874785,48.436610166486609,230.839970441535115 -122.905385141463285,48.437641859787021,230.867709573358297 -122.916059500007066,48.443893423094949,230.895605524070561 -122.91994238645097,48.440443479668829,230.898392820730805 -122.930175482535901,48.440628279620903,230.9176668478176 -122.918631949927175,48.453924997124631,230.913282826542854 -122.92227120162832,48.459089734186477,230.926684979349375 -122.929073364635201,48.46153551381871,230.942474615760148 -122.940053260723943,48.456882481571434,230.956919858232141 -122.964181252475228,48.451822216535092,230.995302276685834 -123.041329290936375,48.460662427298303,231.150148425251245 -123.060327945053757,48.472180635038782,231.200223221443594 -123.069849367030557,48.480155155189287,231.228123118169606 -123.121626367052897,48.49323268501297,231.341106222011149 -123.143654098202035,48.5059467906393,231.398263000883162 -123.153241550520718,48.514610283782183,231.427111921831965 -123.165411321680963,48.530198468087335,231.469548031687737 -123.166234589262146,48.536276224313539,231.478796781040728 -123.164030726392838,48.539909129626814,231.479313489980996 -123.163648081936699,48.548271823034284,231.489216861315072 -123.174590555330084,48.557139283351674,231.520795293152332 -123.178444830390234,48.562783998724107,231.535111003555357 -123.178031099740664,48.569135768405594,231.542391076683998 -123.174137228814416,48.572907700713706,231.539937353692949 -123.175240531761574,48.579738423857343,231.550637575797737 -123.187120971428598,48.587621903626989,231.582676900550723 -123.199934047473931,48.586867689308086,231.605514890514314 -123.204860261121297,48.590865446286124,231.619717741385102 -123.205206520659416,48.596829216375674,231.627899650484324 -123.197905927082076,48.607705947441673,231.628091485239565 -123.180606429196672,48.622765711701625,231.615010031498969 -123.153824269526382,48.624337160204128,231.567305439151824 -123.141886374066942,48.623437765306505,231.54402154777199 -123.137825564362942,48.620822600148529,231.533181141130626 -123.109542839345821,48.623103044914075,231.483599388040602 -123.100642349246172,48.613486572900435,231.454913448542356 -123.100434229421737,48.610744679358916,231.451054305769503 -123.104254001298756,48.604687833561016,231.45046825427562 -123.103731729427835,48.598473075935971,231.441623197868466 -123.076790241222511,48.592469810457402,231.384011338464916 -123.062218699196393,48.582759449586284,231.344639367423952 -123.050581045925355,48.569871152287192,231.306657475419343 -123.035846670439156,48.564064648450632,231.27191685885191 -123.017223399705031,48.561477097574226,231.234048070386052 -122.989473207483641,48.562551582097718,231.183901196345687 -122.988287544513511,48.57064030169758,231.192005868069828 -122.991826776080345,48.575324059464918,231.204539311118424 -122.997203972375672,48.57881782702178,231.218966102227569 -123.006978169165365,48.581443543891524,231.240445826202631 -123.018825247497162,48.580899340150154,231.261739016510546 -123.036279892440078,48.592421578837431,231.308775993995368 -123.027080930387186,48.595138651271448,231.295159876346588 -123.025612132512094,48.600131492363339,231.298777899704874 -123.043368821320598,48.612600690204488,231.347546215169132 -123.048709847411828,48.612143606192831,231.356873243115842 -123.050832275130915,48.621655210599926,231.372872116044164 -123.025675619381886,48.634654201434685,231.34270572476089 -123.017772920722891,48.643220031387358,231.338914504274726 -123.017010126997164,48.648155861691698,231.343755803070962 -123.012105410959094,48.655716672592533,231.344245511107147 -122.991065755585836,48.667898616991423,231.320695634000003 -122.987034955713483,48.673338490675576,231.32011907082051 -122.951298542018506,48.694050396597618,231.280174251645803 -122.943498885528911,48.703556190814382,231.277771901339293 -122.944550059785101,48.707375028911407,231.284550704061985 -122.920435144319754,48.71415723375349,231.24851228762418 -122.896782005062278,48.715682625237825,231.206683387048542 -122.878120716998296,48.712773086867621,231.16847397107631 -122.83530574111613,48.698827415956671,231.071569263935089 -122.804725805019785,48.683337570704076,230.995295068249106 -122.802447652929729,48.680275727673425,230.987182969227433 -122.745228391287569,48.662648466097288,230.858823989517987 -122.744261326671435,48.661346532825135,230.85537269897759 -122.757209958569177,48.650169703777038,230.865076323971152 -122.786053604131482,48.636076682999196,230.900496948510408 -122.794325593909477,48.634159597963148,230.91337095759809 -122.81180012388549,48.619692806746144,230.927276352420449 -122.811041957034845,48.615967960007957,230.921115415170789 -122.80118741409008,48.605341542796523,230.88927732501179 -122.800947311802588,48.603010634319702,230.885852907784283 -122.802394295980733,48.602348631668001,230.88768854085356-123.200137294664771,48.68530800614181,231.730050964280963 -123.18826020503802,48.685565221739246,231.708363242447376 -123.174249867713101,48.680514675676058,231.676042172126472 -123.150173150332165,48.668650574537601,231.616470579989254 -123.133144521233049,48.657439315536266,231.570762064307928 -123.124198075254526,48.647715475460707,231.541897213086486 -123.108346304107414,48.634124655772297,231.495324128307402 -123.121858644289148,48.633623824431467,231.519750523380935 -123.137138048759965,48.637890509070871,231.553480508737266 -123.218100785122658,48.670000236641712,231.744092967361212 -123.239332574809382,48.684113307495629,231.801196288317442 -123.238751807099987,48.689597113974052,231.807008346542716 -123.215076639793722,48.69036053447347,231.764089761301875 -123.200137294664771,48.68530800614181,231.730050964280963-123.027670263208122,48.718616035653874,231.452587791718543 -123.021883358308159,48.721962020962458,231.446099110879004 -123.011971315395257,48.722941172472261,231.428991260938346 -123.009695147377457,48.7195133430398,231.420452770777047 -123.007269065647094,48.694993301064116,231.384988823905587 -123.01663174146384,48.685629472246205,231.390487855300307 -123.023397645723492,48.682067476705733,231.398514751344919 -123.044519578575517,48.676314290845497,231.430365920998156 -123.043827700938678,48.679284193301847,231.432838151231408 -123.037854939910432,48.686001056279473,231.430263578891754 -123.03854315026291,48.690730867111562,231.437513983808458 -123.049241488189068,48.69642245246802,231.464513522572815 -123.07261087013886,48.700620853238746,231.513087003491819 -123.042363360464321,48.717945782031727,231.478937699459493 -123.027670263208122,48.718616035653874,231.452587791718543-122.323869485483755,48.020666595859424,229.235576822422445 -122.30560272507951,48.006293486673144,229.182148193009198 -122.30877670342737,48.005087473431139,229.186472079716623 -122.328263122595956,48.010984883656683,229.230838865973055 -122.33667255584227,48.019605396957829,229.258112676441669 -122.330491601116535,48.022024420137484,229.249783913604915 -122.323869485483755,48.020666595859424,229.235576822422445-123.037589749365893,49.002793351702458,231.826482874341309 -123.023654536581461,48.977939529202651,231.769959297962487 -123.030286446526688,48.974583526251457,231.777998449280858 -123.04316270537538,48.977945157720796,231.805886860005558 -123.06291279153865,48.976027852248642,231.839874630793929 -123.08603002359213,48.976778384650189,231.883380551822484 -123.086694486086799,48.987173990118684,231.897501477971673 -123.092743217069582,49.002614308082435,231.927777644246817 -123.037589749365893,49.002793351702458,231.826482874341309-122.698089228458883,48.737928563548543,230.867575316689909 -122.671127788807055,48.707301083142987,230.778727932833135 -122.66543899608395,48.697734813858133,230.756003972142935 -122.647080817925016,48.692047053112326,230.714797229506075 -122.620403666868469,48.671380502709404,230.639036022126675 -122.611753482959614,48.645678621581354,230.590106741525233 -122.619133571805833,48.646223461797888,230.604461682029068 -122.637477004717013,48.652505881346194,230.646454360336065 -122.67571759109002,48.681467081696354,230.754240101203322 -122.693976077383468,48.7121545969949,230.827153539285064 -122.704404407330898,48.717660195351385,230.853444818407297 -122.721014545583373,48.717473887782504,230.88391215633601 -122.72416285685425,48.72403058498174,230.898076606914401 -122.724444216211197,48.732279273812182,230.909089936874807 -122.717891896572951,48.749326766229274,230.918655802495778 -122.70524256552909,48.744257193606842,230.888841959647834 -122.698089228458883,48.737928563548543,230.867575316689909-122.420388468936522,47.321329378993681,228.464472699910402 -122.366288961240926,47.3366683514136,228.383156485855579 -122.339054940311627,47.342136639905249,228.339116833172739 -122.32695411794414,47.349236584187707,228.326039033010602 -122.327856850571635,47.392234875850278,228.387383187189698 -122.330557239927415,47.401334468255193,228.405098170042038 -122.337357613423094,47.40913403590001,228.428768428042531 -122.350159027934922,47.416633504217607,228.463375805877149 -122.357260136843649,47.442632352260468,228.512732055038214 -122.369161471384245,47.448331908100926,228.5431157797575 -122.385261730081908,47.45123149589751,228.577577508985996 -122.370161947646309,47.459931434754431,228.561004694551229 -122.365188618079046,47.476411731553718,228.574308973737061 -122.363462783943845,47.482130689268175,228.578922410495579 -122.367363100875693,47.489129342910623,228.595932467840612 -122.388764846978319,47.502928405785276,228.655372150242329 -122.398666459694681,47.51592771351546,228.691947572864592 -122.396066825081746,47.525527386422311,228.700215382501483 -122.400467888141677,47.550826316287512,228.743230327032506 -122.411969751539687,47.569625368861487,228.790698473341763 -122.423270139059866,47.576724881935185,228.821747302077711 -122.403970289630635,47.584624932434913,228.796122306957841 -122.389270639028524,47.596424745656165,228.784520909190178 -122.377552107670155,47.585886374108711,228.747989275492728 -122.372297976266111,47.583792553343322,228.735207344405353 -122.360368941132634,47.585525707404308,228.715068834833801 -122.345068065482465,47.591925742270263,228.694962549954653 -122.341644355634415,47.599818498437429,228.699310838244855 -122.347068810197683,47.609825008012876,228.723237114027143 -122.369951626313537,47.624916995318628,228.787023939192295 -122.388172092774326,47.632423364525614,228.831631315872073 -122.39587213229818,47.63172324858914,228.845195196568966 -122.406373343000453,47.634622940509935,228.868953134864569 -122.416778672746901,47.64046851961119,228.896544650197029 -122.431975586909388,47.659620492265674,228.951284387148917 -122.409976257418194,47.680820078109655,228.938677148893476 -122.405976601646074,47.690119791580095,228.943791938945651 -122.395384005518906,47.702302516128846,228.940406365320086 -122.382576199313633,47.709819463093886,228.926508223637938 -122.378576466334621,47.717219250757857,228.929035258479416 -122.377743693965712,47.720424529825912,228.931822897866368 -122.375276956423519,47.729918820224611,228.940076759085059 -122.384778855051778,47.749817872937825,228.984961428679526 -122.382379218826671,47.759217553997679,228.993192423135042 -122.396580906131604,47.772916759655878,229.038462471216917 -122.398560808655134,47.77862483803009,229.049913262948394 -122.399182236754797,47.780416421298064,229.053506634198129 -122.397084186851572,47.80401454893093,229.081480323337018 -122.394184341905046,47.808414433164231,229.081977358087897 -122.355385350251652,47.841313888085004,229.053538489155471 -122.348685364735644,47.843113943708801,229.043388765305281 -122.342085482980451,47.847413901193036,229.03680423554033 -122.338091677465528,47.853001760522751,229.036851974204183 -122.331687325285074,47.870113221468678,229.047926619648933 -122.332287573814554,47.87601298333913,229.057011266238987 -122.335685807277486,47.880940730426005,229.070032055489719 -122.33068949175059,47.898611144513914,229.084472987800837 -122.32399100591428,47.912510735740042,229.090629982762039 -122.314071891219442,47.924396012422122,229.088032403960824 -122.312891456339784,47.925810432555103,229.087723197415471 -122.311891612753442,47.92981029778116,229.091231253929436 -122.31329293953273,47.937409980143975,229.104080003686249 -122.30919341590544,47.949809581383875,229.113069041632116 -122.280192462634346,47.957209839602626,229.06869147811085 -122.251152325919065,47.960200267535022,229.018326443620026 -122.232191628008479,47.971610184994589,228.998174699023366 -122.228491822575961,47.977110043702012,228.998646529391408 -122.234537345146876,47.988405498779592,229.025147708132863 -122.232367132065121,48.00784579639766,229.047199455089867 -122.23091433956894,48.013159620595232,229.051614850759506 -122.227126478101937,48.017317532630543,229.050110093317926 -122.233909089576699,48.030566900092317,229.08056771568954 -122.283236361173678,48.050482217787561,229.199469910003245 -122.307988566739681,48.074102854161708,229.277301607653499 -122.323860212944837,48.086194096431285,229.323094432242215 -122.328270559806498,48.093563733205102,229.341159647330642 -122.345392911352619,48.098317231603758,229.37948383577168 -122.365995193748844,48.124614844995492,229.452955247834325 -122.367231283866062,48.12650674988393,229.457778018899262 -122.36595098066509,48.143443130032367,229.477883839979768 -122.366898346698292,48.151987787639897,229.49099416192621 -122.372407961403283,48.165492171536215,229.519189775921404 -122.365634304281173,48.175120933082795,229.5193144492805 -122.364199841896067,48.188250461939163,229.534034022130072 -122.374648164097309,48.193704059193472,229.560743131674826 -122.384258841084545,48.207787345102616,229.597298306412995 -122.387860322859808,48.218491871999774,229.618163021281362 -122.397657109276238,48.229231609697955,229.650611150078475 -122.398278895938489,48.229913243993622,229.652670063078403 -122.427730312310544,48.233566552880085,229.71238939743489 -122.432736497808179,48.236916332086359,229.726138250902295 -122.435925539381216,48.237229260371741,229.732495218515396 -122.451763514141334,48.23327711267531,229.756810276769102 -122.455868393416964,48.229538177213534,229.759535250253975 -122.455776307286726,48.227509255792057,229.756689083762467 -122.451670762474521,48.215415791062597,229.733084863051772 -122.446665708966606,48.215201893103959,229.723468609154224 -122.443888568898728,48.212456049290587,229.714665877632797 -122.444208469842593,48.210030135239229,229.712060612626374 -122.457087050641505,48.19731937555823,229.719303233548999 -122.464044965469128,48.193817377858544,229.727660723030567 -122.466958059748336,48.195447261362453,229.735247924923897 -122.47240707622305,48.194687187955552,229.744411406107247 -122.48069190129543,48.188767257152598,229.752055821940303 -122.481164386040945,48.176383718429676,229.736583568155766 -122.477958984068479,48.167473117010012,229.718824900686741 -122.444537182336759,48.131524110350135,229.608824118971825 -122.413802172101242,48.113894357213482,229.528013625182211 -122.381632807448639,48.088069943270703,229.433561466634274 -122.36249555899731,48.062214287211177,229.363333183340728 -122.360525316789875,48.056820529837182,229.352453549392521 -122.365257292939845,48.055233501826706,229.359185104258358 -122.379264543680492,48.058255124378249,229.389410406351089 -122.389840955356235,48.065875635692827,229.419346489012241 -122.392938161613401,48.070163414175106,229.430850449949503 -122.395564559945228,48.079158022045029,229.447739169001579 -122.402843907627272,48.08594062720384,229.47037435695529 -122.425855850432669,48.10362552239279,229.536896899342537 -122.45181354465285,48.114724613366946,229.600138932466507 -122.46965438483339,48.131035658130479,229.655096800066531 -122.480137423162006,48.129730511288706,229.672952429391444 -122.488890162054446,48.121632655471956,229.678579442203045 -122.492140176898843,48.121299607234356,229.684211392886937 -122.514185928706965,48.134612687153037,229.743028638884425 -122.524732185184604,48.162392432738962,229.799445344135165 -122.539377238440196,48.184424320842716,229.85585870873183 -122.541074342539503,48.210361304518607,229.893194905482233 -122.53658986289156,48.223682883543958,229.902359995059669 -122.537368593693671,48.240890216863654,229.92643893416971 -122.533155960931438,48.250497932146708,229.93120932020247 -122.505946024238895,48.257722169833905,229.889981153421104 -122.501807969271596,48.257288263984108,229.881698342971504 -122.499886816537057,48.254066421993322,229.873882353305817 -122.495607721904861,48.252720553302048,229.864136934280396 -122.483084596579502,48.252383801254453,229.840352507308125 -122.476653687733688,48.255904788806006,229.832998521625996 -122.468963225070965,48.270281389516811,229.837573961354792 -122.466122239299452,48.271218407460694,229.833512934856117 -122.408674939332585,48.252509193813097,229.701851904392242 -122.407916279212472,48.252872457448035,229.700917162932456 -122.397487064927432,48.257866201300239,229.688068903982639 -122.394217559689125,48.270306792471857,229.698372337967157 -122.373853145070072,48.288517487179156,229.684436743147671 -122.378978539378863,48.296777079168116,229.704850630834699 -122.38037075981849,48.298267996754738,229.709403998218477 -122.386470945070784,48.304800635680387,229.729351630434394 -122.410880104894829,48.327089336505743,229.804058160632849 -122.426264577727608,48.335021748345554,229.843088102526963 -122.44484089525713,48.338609263889303,229.88235049881041 -122.477693118219889,48.360585818233851,229.972229661419988 -122.484587256872004,48.362410619830051,229.987437627278268 -122.499850396821671,48.362510328916855,230.015955659560859 -122.509601603305384,48.365339038933506,230.037787908688188 -122.535617628787392,48.384080843875054,230.110628304071724 -122.541615266778265,48.397861212600702,230.139738915488124 -122.549658452653901,48.400559959675753,230.158205742016435 -122.556702580382805,48.406710618063315,230.17930684518069 -122.560570887034615,48.427427870850906,230.21344178263098 -122.553389083142349,48.44013464619583,230.216612136922777 -122.559466666455265,48.445106699916664,230.234359042719007 -122.57051644980703,48.445658952467802,230.255600051023066 -122.577422475091453,48.444001440065207,230.266276399604976 -122.583775485034792,48.429913523108539,230.259787351824343 -122.616647914998836,48.415548881990922,230.302225194871426 -122.65200687352727,48.409194901590034,230.359713585115969 -122.667506196214688,48.41712111708781,230.39881381765008 -122.676326625537499,48.425393639810906,230.425934837199748 -122.681097294734002,48.440132995938384,230.453891569748521 -122.679241474011732,48.444725858384572,230.45638760086149 -122.676357417508001,48.443993940246862,230.450080822221935 -122.676254359201664,48.442645992823962,230.448144459165633 -122.669418321450536,48.443170102002362,230.436119454912841 -122.657013705769046,48.45475390087843,230.428066827356815 -122.65992353504187,48.473606138632462,230.457858605310321 -122.666793816793913,48.478793814509011,230.477322142571211 -122.691291977522908,48.477514400417277,230.521164240315557 -122.697895520934011,48.465450728495725,230.517846845090389 -122.697757339512307,48.461223889756333,230.512128192931414 -122.702773258786635,48.458297905014,230.517665822058916 -122.712532512802696,48.462249572609338,230.540903780609369 -122.714492639084952,48.464808439583408,230.547850509174168 -122.715152269654936,48.479454877540469,230.567983562126756 -122.703815974263989,48.498286385361546,230.571224338375032 -122.686693315306215,48.509787277614713,230.554269096814096 -122.681294211175654,48.508461429154572,230.542538953945041 -122.679094050260218,48.505148594749272,230.534182828851044 -122.673557980037899,48.504644718083043,230.523257486522198 -122.61735522434104,48.522091773690875,230.441486886702478 -122.609133062346743,48.522817384095084,230.42717192042619 -122.602122975499427,48.52161123194302,230.412611347623169 -122.600640686717981,48.512834787209187,230.398523945361376 -122.570242248365773,48.508876508756316,230.337012132629752 -122.559004747359339,48.499479072398181,230.304002278484404 -122.539524206844959,48.467417640591776,230.22629086393863 -122.535014137306433,48.466725751528955,230.217020401731133 -122.529112167845796,48.46867278979083,230.208591485396028 -122.517224957774928,48.466223105631691,230.183345005847514 -122.513516765924962,48.462494315270412,230.171618362888694 -122.502889631404557,48.4615565506762,230.150672090239823 -122.474000793035174,48.471393726453705,230.109837541356683 -122.47180283576661,48.472856713076077,230.107660313136876 -122.471838954911235,48.475644607986531,230.111350716091692 -122.475932194989426,48.480419352057091,230.125149803236127 -122.481020325060172,48.482405181810826,230.137169929221272 -122.485670822668908,48.493098693889408,230.159680929034948 -122.487166569784051,48.510288022690538,230.184752512723207 -122.486043083985436,48.52255858519036,230.198573073372245 -122.48745936226797,48.528773326265593,230.209249352104962 -122.500635682057464,48.55687202856366,230.270026252605021 -122.506601102262522,48.565440596312854,230.292151025496423 -122.527543612448795,48.568009126204956,230.334266068413854 -122.534151041102959,48.569308752986615,230.348184670321643 -122.536892777976405,48.574910671323778,230.360491883940995 -122.536960852060005,48.576624606123623,230.362828891724348 -122.514545956416754,48.578732318400789,230.324029891751707 -122.498077504104515,48.576592341347265,230.290765709243715 -122.490593954720595,48.565330902504229,230.262355824932456 -122.48457868634209,48.560319202955704,230.244733771309257 -122.480603635846805,48.559969291018021,230.23691719211638 -122.446732795935759,48.570781526991418,230.188164466060698 -122.435232185420702,48.582275315738592,230.181735460646451 -122.427444883788979,48.600187795772328,230.190476439893246 -122.450877085913035,48.623288493986884,230.263656348921359 -122.466425358132952,48.626381085338785,230.296408390626311 -122.489054309035367,48.64378501094162,230.360681190155447 -122.490930879526232,48.646020705261812,230.367028638720512 -122.49616673728552,48.652258561736581,230.384735400788486 -122.502484990362888,48.656825272712986,230.402290702797472 -122.50889563035868,48.670353649256661,230.431524780578911 -122.521351614081453,48.71375480434974,230.510200667195022 -122.51769092254051,48.72165158112842,230.513550015166402 -122.507863987309491,48.725183636271495,230.499923224560916 -122.497481447941482,48.7379873588769,230.497141359373927 -122.49258200108703,48.751786941251069,230.505751868709922 -122.513083470354971,48.758386309250447,230.552025267854333 -122.530385088522934,48.769085586290871,230.597617016173899 -122.537985490134517,48.776785157919811,230.621464914642274 -122.569680905510168,48.779841444765438,230.68384285736829 -122.599026833264432,48.772148173250535,230.728198864497244 -122.600215757017821,48.770145224774431,230.727842293679714 -122.608969386521153,48.759799441568568,230.730822127312422 -122.62998994592931,48.745316579459818,230.751183460466564 -122.639327641268693,48.73636473414625,230.757021996192634 -122.640263510161546,48.733142835772895,230.754643772728741 -122.628467905887973,48.721587487223765,230.718111625872552 -122.614742524918256,48.71558996929204,230.685093236155808 -122.607912865343877,48.701724612646984,230.654755934141576 -122.608284760269441,48.699214698710684,230.652234729379416 -122.617348637038461,48.694497702231054,230.662959321402013 -122.622517479523296,48.694309830833468,230.672274788841605 -122.632601548170001,48.697282974098641,230.694716929458082 -122.648503632722765,48.708658899642458,230.738639657385647 -122.675653788334628,48.7337378035499,230.820787211880088 -122.669135456425892,48.749100698076859,230.828303592279553 -122.66329364369912,48.754617604484444,230.824534699320793 -122.649626391035653,48.774653122176638,230.82478472404182 -122.647926702987888,48.782192875651177,230.831232633441687 -122.648960862823458,48.78566572770761,230.83755499497056 -122.658711947382216,48.78562354450316,230.855498010292649 -122.661892042970621,48.787177426817777,230.863341158255935 -122.682430929194766,48.803403438096289,230.921837783418596 -122.695868173725302,48.805127657627139,230.948818161152303 -122.699404331154369,48.803463556282885,230.953233734704554 -122.700860317341096,48.801175484536373,230.953019935637712 -122.701692124640559,48.795559364113068,230.947434140369296 -122.701487503253773,48.789716582601336,230.939645865932107 -122.705290417805671,48.786974611885668,230.943187159486115 -122.711999471960922,48.786858489025015,230.955424529500306 -122.713384712288516,48.792113268518825,230.964645405299962 -122.711354840005356,48.818481333000769,230.994308866560459 -122.713991497393863,48.833059745015554,231.017622196115553 -122.719260187375099,48.84784109996815,231.046026981435716 -122.724872483650202,48.853505784682746,231.063531436026096 -122.78784844282751,48.885714402899175,231.220222758129239 -122.795364852093556,48.893574970803627,231.243963324464858 -122.794773925736649,48.89537991559321,231.24514440074563 -122.78593684402388,48.895287086824084,231.228744636289775 -122.753479283625694,48.91188709262547,231.189835202880204 -122.749704440199707,48.916230004678013,231.188346106559038 -122.747561668138019,48.921874837933785,231.191499290987849 -122.748787094695658,48.93137846553379,231.205702120438218 -122.757815521339964,48.939307002857504,231.232282194308937 -122.768287757894967,48.942601682913647,231.255694846622646 -122.772623821179934,48.94317457948727,231.264395175501704 -122.789730497793613,48.932348652027471,231.282300479710102 -122.820424089615116,48.939707798429289,231.348043677397072 -122.823823220466423,48.942014649093224,231.357193167321384 -122.824656382913489,48.945556503175354,231.363165142945945 -122.819418821521396,48.956615196725053,231.36737622320652 -122.799080478440558,48.975670884354201,231.353809347376227 -122.776469982139304,48.991682727507467,231.332261538133025 -122.768500939722628,48.992316855820484,231.318401053547859 -122.758512080339827,48.997525855016789,231.306554331444204 -122.758231193418382,49.000156764036376,231.3093306645751 -122.760214335898837,49.003001622179347,231.316536417230964 -122.410020196919632,49.002844283269553,230.673003765754402 -122.408180182266136,49.002890316532799,230.669684139080346 -122.100545359100806,49.002803158231934,230.105194329284132 -121.753436894904894,48.998062908952434,229.46317267883569 -121.128419004501225,49.002087583055477,228.325722106732428 -120.853378578634789,49.001872052461721,227.823637806810439 -119.704180165006861,49.000971430425025,225.732791907154024 -119.703382155867857,49.000960445785829,225.731329937465489 -119.459861492965189,49.00096801039404,225.290047937072814 -119.430839172639011,49.000960554317324,225.237481682561338 -119.139431930963369,49.001010006821303,224.710279678925872 -119.134259871378134,49.000975104794414,224.700880261138082 -118.838948640737598,49.00092770806674,224.167309493757784 -118.199038110311363,49.000824974180475,223.01399346999824 -117.431676983088295,49.0007017233062,221.636336413212121 -117.27032778715153,49.000675800031019,221.347429123707116 -117.27038278313303,49.000565802869843,221.347367880865932 -117.03448380146564,48.999940188469949,220.924603588879108 -117.03530372514328,48.847320516861885,220.702459571883082 -117.036475161742501,48.629288242726297,220.382362395524979 -117.0366158392155,48.621534516523703,220.371097518131137 -117.037393918679143,48.430885330593938,220.087987244129181 -117.037393906390093,48.430588341280121,220.087542050518095 -117.0373626299873,48.423916581949527,220.077483255416155 -117.037397613382424,48.423504596137093,220.076928744092584 -117.037284484468699,48.371995454483844,219.999396033585072 -117.037284470322092,48.371652466859935,219.998880475759506 -117.041697872785718,48.185168145095403,219.725379910320044 -117.041713857797177,48.184796158345904,219.724845011718571 -117.041680739373902,48.181905264203195,219.72040194272995 -117.041680728312315,48.181634274070419,219.71999104321003 -117.041681706283612,48.181094293714196,219.719174071215093 -117.04171661811074,48.178923372128928,219.715945615433156 -117.041511579166936,48.178031408354563,219.714220550842583 -117.04165044663911,48.174741525637891,219.709483346901834 -117.043495868881095,48.08628472060682,219.578401397913694 -117.043769252256396,48.04634617779076,219.518020554445684 -117.043964149232863,47.978175983266361,219.414202935062349 -117.044567041992948,47.767321455137854,219.090999310836196 -117.044602977430984,47.765692514963142,219.088547349907458 -117.044704832136432,47.762019649493737,219.083056232891977 -117.04473881795299,47.761653662468113,219.082552661187947 -117.044140182260875,47.745897258652789,219.057088047266006 -117.0442161433362,47.744897294436875,219.055680071003735 -117.043758285661184,47.723508098033307,219.021731090731919 -117.043712636073948,47.707198705805745,218.996378500945866 -117.043610712372995,47.683993572006969,218.960205734707415 -117.043509584259596,47.680799692878324,218.955064240843058 -117.043509512173173,47.678984760531932,218.952247498556972 -117.043509510386002,47.678939762209367,218.952177659608424 -117.043247772308405,47.559334237780035,218.765554937534034 -117.043349760931122,47.559014247930158,218.765243030153215 -117.042817756801909,47.533714206422175,218.72475687135011 -117.042617543695016,47.528367410711787,218.716033185832202 -117.042586338073818,47.523156606890119,218.707830840721726 -117.042015579684303,47.478630290624913,218.63710102904588 -117.042041010033017,47.464116836357604,218.614404397085309 -117.042016894828677,47.435693907495498,218.569775111973286 -117.04201801456901,47.41322175499262,218.534485163167119 -117.041949492215309,47.399895259235336,218.513412456959486 -117.041923403140004,47.366904510860557,218.461454155854881 -117.041908464946971,47.348013221161267,218.431665753014386 -117.042081045184204,47.260087552281469,218.293125080876052 -117.041959734319605,47.226331838041581,218.239440232515335 -117.041947873089413,47.204099684711835,218.204162354581058 -117.041930044095437,47.182676501491812,218.170121844857931 -117.041893995750343,47.155553536953725,218.126951102167368 -117.041877987805407,47.128085539134517,218.083213768899441 -117.04170240633772,46.826630190174988,217.59952590521425 -117.041873015752998,46.816275588358216,217.583120701834559 -117.041817328104955,46.542628244842511,217.138140061870217 -117.04180310645998,46.472625009991603,217.023397674784064 -117.041795024154979,46.470416097052706,217.019756657071412 -117.041772768431485,46.463550367657831,217.008442681282759 -117.041843383908571,46.42627283491796,216.947310015559196 -117.048943768928922,46.380426518285468,216.88516042381525 -117.063073500068995,46.36859673511816,216.892218589782715 -117.04949641790482,46.343734959193071,216.825674730353057 -116.989964048884957,46.298884790184673,216.639525697566569 -116.987357891783546,46.29547097163514,216.628966896794736 -116.960823648794914,46.243176516077291,216.492252984084189 -116.927640191703304,46.159748421614282,216.290778829716146 -116.945545877682477,46.063036967586122,216.162805379368365 -116.918002122754004,45.996280128128831,215.998651813715696 -117.21463275342694,45.999182781680361,216.564929883927107 -117.216550776009043,45.999181747874971,216.568561343476176 -117.218747803222712,45.999217707658126,216.572783195413649 -117.477167812790128,45.998750162690214,217.061891159974039 -117.477379813873469,45.998712160474341,217.062230161391199 -117.482122869581289,45.998727076045924,217.071253290399909 -117.482150352220927,45.998727572288608,217.07130625564605 -117.506853173238014,45.99917362093921,217.118916650302708 -117.605184332983669,45.999741859373493,217.306488994508982 -117.979792056323348,46.001542773026152,218.021397215314209 -117.99893690360706,46.001634810840983,218.057972679845989 -118.128224342341554,46.001127538705198,218.303218121640384 -118.133046396416972,46.001125453248534,218.312396191991866 -118.230969498073478,46.001264710003063,218.499128855764866 -118.238612583299044,46.001261574466866,218.513684975914657 -118.254558762720706,46.001302289757703,218.544133480638266 -118.258396804790138,46.001282222438,218.551413580775261 -118.317011457819248,46.001295181211823,218.663137109950185 -118.369820050063339,46.001463236497202,218.764079774729908 -118.380390165407064,46.001415050688628,218.784154269844294 -118.472787188190381,46.001471406647454,218.960460921749473 -118.499058476992204,46.001458940201601,219.010559994727373 -118.539150925630651,46.001678218560194,219.087417169474065 -118.571424277115881,46.001610647452786,219.14890010189265 -118.577742344316235,46.001555537337723,219.160869671963155 -118.581938393931239,46.001655458660764,219.169041126966476 -118.639758031610413,46.001806424132255,219.279666242189705 -118.641365050028597,46.00183039457098,219.282773484475911 -118.660750260046584,46.001791051303364,219.319724743254483 -118.679903468001058,46.001770711356137,219.356267645023763 -118.989165766522049,46.000685248361251,219.945618159137666 -119.010594240671153,45.980100705329107,219.953455133363605 -119.029092066665314,45.969964789117611,219.972526766359806 -119.095256804586654,45.94357568772211,220.056714654900134 -119.128155791879621,45.933689505703192,220.103828860446811 -119.171532058713311,45.928432947884303,220.178512055426836 -119.197566343477419,45.928699473088386,220.228858297690749 -119.227781839808841,45.933553735979558,220.294605957344174 -119.259187434111467,45.94075388154198,220.366400827653706 -119.324546873284376,45.934009992129269,220.480943133123219 -119.378167987048741,45.921800535991203,220.564261595718563 -119.434105288447554,45.914454851648131,220.659883138723671 -119.489867612401326,45.907132145129125,220.755260147154331 -119.526671077742364,45.909429394193523,220.82964470051229 -119.573624180294004,45.926278864663011,220.946779420599341 -119.60258926362296,45.920403588649371,220.993058963678777 -119.625432987942986,45.906461753339592,221.014716708101332 -119.671915680842204,45.857690929682612,221.026229170151055 -119.774966320908362,45.846400555981468,221.206600585952401 -119.804694694636353,45.848351944895747,221.266972860321403 -119.870174935982945,45.836783253197204,221.374695996753871 -120.001546237807389,45.813018929643555,221.590185919776559 -120.003188397495904,45.812721872263765,221.592881696298718 -120.143392383607491,45.773970973147414,221.801969869993627 -120.172493264200398,45.762769918060833,221.840407487936318 -120.212793352282276,45.72677069355256,221.861110617406666 -120.406000279230128,45.700066355322988,222.192689132876694 -120.484402868139199,45.695265155088187,222.336983679793775 -120.507904299948862,45.700863501762342,222.391387398354709 -120.524005812767712,45.710662805467429,222.43808501213789 -120.561508214415426,45.739160947538011,222.555736253038049 -120.593209819883739,45.747359039087307,222.630066600628197 -120.63701221663095,45.746658284622804,222.713821931742132 -120.655602737128262,45.738048732975741,222.736295804381371 -120.670912969764089,45.730958332428585,222.754810398444533 -120.691413645079365,45.716658562157171,222.772045871242881 -120.790915517428942,45.687057018695739,222.918494594283402 -120.857717616856945,45.672355438730477,223.025072410702705 -120.872085378079689,45.662052613053483,223.03678026329726 -120.917919087773058,45.642155626981697,223.094553620554507 -120.946020901753855,45.657254491431473,223.172897360287607 -121.06641488950963,45.653356500351833,223.400832390412688 -121.088719883730235,45.647474347897926,223.434998583979905 -121.197278268661805,45.630319124991331,223.619385064579546 -121.202413055473471,45.650634179564946,223.66112806648016 -121.21782597806974,45.672042004774191,223.724529080092907 -121.314246914279352,45.700726072944903,223.956746929325163 -121.339819332810933,45.705749403585884,224.014292977750301 -121.374623584847228,45.703910856356593,224.079147261567414 -121.403788478207915,45.693686762237341,224.120035707019269 -121.425641718094028,45.694789323890987,224.164277940988541 -121.443094677567046,45.698068502772436,224.203330852091312 -121.464899345490551,45.702165309757383,224.252118068747222 -121.524443739191568,45.725473262432068,224.404056721366942 -121.535157904572685,45.727336991804513,224.427786287851632 -121.628236990465339,45.706710186280951,224.577168396674097 -121.709410312789473,45.695603195233289,224.718188202939928 -121.737156532699018,45.694832729187176,224.771075500175357 -121.813357677208558,45.707552824498308,224.939161927439272 -121.822108670264001,45.705440474525822,224.952975563704967 -121.869220678970507,45.694068388026302,225.027369907125831 -121.903908160197957,45.671507715414421,225.060392268933356 -121.902910833129027,45.66280110057405,225.045071046799421 -121.910319620424502,45.655191288539719,225.047836299054325 -121.92429422572377,45.649287677236202,225.066041461192071 -121.985090124654931,45.623604279493875,225.14529503788799 -122.103726727381186,45.584307811978789,225.316823617555201 -122.114407743371203,45.582200709451108,225.33447954710573 -122.128248907436301,45.583408409644321,225.363409082405269 -122.128248905833502,45.583364411509535,225.363341531716287 -122.131541948733911,45.583758335658523,225.370388024486601 -122.131599948435237,45.583736335549347,225.370467710308731 -122.14280210243993,45.585299068071194,225.394779868423939 -122.185747225648626,45.578486585464567,225.468351831659675 -122.2037518873734,45.564931837195637,225.482798220589757 -122.251044697625261,45.548535684052872,225.55024267360568 -122.268752707587751,45.544631531907484,225.578936815261841 -122.296952938283781,45.544331038141145,225.633714590221643 -122.333554422150669,45.549030180809822,225.712613923475146 -122.354855375858591,45.570228897074387,225.786763736978173 -122.382355847006636,45.576728126581322,225.850551409646869 -122.494314063618802,45.584065801247405,226.081043086014688 -122.645964303104051,45.610519947225306,226.418342303484678 -122.677065866037807,45.618819034321135,226.491847716271877 -122.740168346109257,45.644915788477967,226.654907701537013 -122.765870035634165,45.657914773094639,226.724853199906647 -122.776571979092452,45.681212591345741,226.780890586785972 -122.774572667789144,45.700411813315277,226.80584835074842 -122.764244626417295,45.729371672025181,226.82913779001683 -122.76217084416173,45.735186564329823,226.833808458410203 -122.763514767112767,45.759935493164448,226.873549883253872 -122.771596624274437,45.781354441944217,226.921423847787082 -122.797670927063635,45.810769728629289,227.016345445998013 -122.798029485678242,45.825793088333143,227.039469526149333 -122.787582343574783,45.851304201977051,227.057110447436571 -122.787093975647082,45.868466488059191,227.081721609458327 -122.816069683905738,45.961747043446159,227.276705418713391 -122.886553978485907,46.061037607255024,227.560391651466489 -122.906196020303781,46.084490270650498,227.633037996478379 -123.117986578480583,46.186016183318081,228.192887270823121 -123.168497128660533,46.189720108741504,228.296401199884713 -123.215136885483332,46.17328794371015,228.363234956748784 -123.282248380858647,46.145589876883122,228.453617506660521 -123.365721148699379,46.146986708446747,228.618062348105013 -123.373516168557714,46.147117150122611,228.633421088568866 -123.432931979895017,46.182569586087624,228.800192118622363 -123.429715752875197,46.2300886630007,228.862307948991656 -123.449679688101995,46.250571445457922,228.930513054132462 -123.470831413756599,46.265269447371502,228.992679469287395 -123.476932587417821,46.268569198611502,229.009258550591767 -123.48633272642553,46.270268956158667,229.029953483492136 -123.549747831292507,46.259846231466518,229.138257768936455 -123.549725077441494,46.266331961807239,229.147488249465823 -123.562012155277202,46.265834757992977,229.17065489385277 -123.566494079391916,46.262908797943709,229.17518278490752 -123.583731151421361,46.261238552542785,229.206297276541591 -123.615633382096121,46.260723990995913,229.267573727294803 -123.671591079442464,46.267566683078471,229.386117549613118 -123.68121536998899,46.273236270891502,229.412906168028712 -123.682170584317177,46.278677026770879,229.422512242570519 -123.680159892952517,46.28720270847468,229.430742733180523 -123.680851060129754,46.291454518810077,229.438137387856841 -123.682665276142259,46.296758264849053,229.449209166690707 -123.689854454368685,46.299967999757342,229.467743773013353 -123.702855785728829,46.306010510454222,229.501595532521605 -123.726364811729596,46.301893251718646,229.541425962001085 -123.72612957752483,46.295790510092978,229.53229757770896 -123.730004087539527,46.290394054683404,229.532158188521862 -123.730676371774209,46.289457690643665,229.532133927568793 -123.743569530770557,46.291006390294115,229.559396074153483 -123.761651092500571,46.275805692929737,229.572945638559759 -123.768773087755051,46.274231628287268,229.584556952118874 -123.777145194344172,46.275331429312104,229.602400030009449 -123.784745467190348,46.280959055703683,229.625173385255039 -123.797647729484225,46.285232641551978,229.656328334473073 -123.8082307764017,46.284319485994509,229.675610229372978 -123.877615644577503,46.240519044716798,229.748416459187865 -123.911397119767273,46.246222188618937,229.822268626652658 -123.921672415860854,46.251947761468337,229.850389146246016 -123.956445661819998,46.277730048615943,229.954570808447897 -123.971520324850019,46.292126171933106,230.004249293357134 -123.973005430180422,46.294594041792251,230.010624374262989 -123.972448635000447,46.300079823179018,230.017288571223617 -123.976602808064087,46.303790592362837,230.030607488937676 -123.987298117259357,46.309766147337399,230.05984141305089 -124.003358400269377,46.313986677217642,230.097028012387455 -124.022645641094854,46.316463220659635,230.138028891757131 -124.032018428879894,46.309038358572153,230.14579710084945 -124.037693034552447,46.297569733079335,230.140670882537961 -124.040890556997482,46.28440222414303,230.128321521915495 -124.046111301336111,46.276652452183249,230.127546959556639 -124.063054537339724,46.279488023519264,230.164526775479317 -124.082764247327788,46.267966144033615,230.186643602326512 -124.084280331837206,46.269886036038486,230.192303586751223 -124.083822539881311,46.275440812308098,230.199246142059565 -124.078356328640069,46.297224002721869,230.219305725768209 -124.073478635242438,46.306229716239557,230.222496980801225 -124.066719400653071,46.327623947851002,230.239455140195787 -124.060448632633239,46.387225581506506,230.310957697220147 -124.059523499920289,46.410036650486333,230.341118871234357 -124.059125726343993,46.494056173939846,230.457698869518936 -124.064057188019476,46.556880486312906,230.554628022946417 -124.070525987534523,46.602110501810905,230.629850027151406 -124.07169013073937,46.631363275749855,230.672562609426677 -124.070762287787403,46.635591118860752,230.676610278896987 -124.064822541718485,46.643293911382862,230.675765793770552 -124.058583613239904,46.646356900335171,230.667933973483741 -124.050551559213375,46.646539040802452,230.652657028287649 -124.037980881047091,46.631534889490503,230.607610912062228 -124.054814697762879,46.623508909799412,230.629065313376486 -124.052948475117461,46.618134165427442,230.618020048364997 -124.030904285181208,46.591754657825817,230.538832081481814 -124.02567091703034,46.583274103680445,230.516941767185926 -124.025252200319414,46.56482887208233,230.490526174195111 -124.028121965783427,46.532306162039198,230.450872105546296 -124.033838651396835,46.497093512889606,230.412909163162112 -124.028132322608243,46.463698000506149,230.355242103338242 -124.003371019474955,46.460712578892377,230.303042469546199 -123.992715054690848,46.46373964914703,230.286607339978218 -123.992970161187699,46.466458531841432,230.290903192944825 -123.996281306794387,46.469588341409832,230.301699068397284 -123.994781055352689,46.489336551436729,230.32637448888272 -123.990487345760812,46.497727283173596,230.329763349145651 -123.985789369014228,46.499261306034356,230.322798809036613 -123.981154288805101,46.49809743932655,230.31219117436558 -123.981314003924368,46.490668743696446,230.302129458636045 -123.972930378814198,46.476090500998758,230.265509162098169 -123.970144285485802,46.474217629694991,230.257489073090255 -123.945767241477995,46.477917924172097,230.215403230860829 -123.923293244912799,46.508451074243133,230.214531193487346 -123.898804632480733,46.52338490725748,230.187958360649645 -123.899343860884372,46.529199657278483,230.197122816927731 -123.896356167687742,46.537747359387041,230.203270127996802 -123.905423811936799,46.552628578811969,230.241581827402115 -123.919005330570656,46.563350886984182,230.282810020260513 -123.922350538304912,46.568060631318858,230.295842544175684 -123.924435929912761,46.577774192650807,230.31339814979583 -123.930965437265399,46.58959158573623,230.342467297799885 -123.941243804571272,46.597042089830843,230.372704523615539 -123.957661210981186,46.604285489527399,230.414518749341369 -123.961280626593535,46.614296010891067,230.43541039340198 -123.962748521360183,46.63707804681173,230.469831628724933 -123.942722542299251,46.641576230631955,230.437356697395444 -123.924019763477858,46.650976188787077,230.414239560253918 -123.923022884493875,46.654290071033557,230.416904969140887 -123.925376645948219,46.673421242287354,230.447941651567817 -123.917703817880451,46.679362139870456,230.441343616694212 -123.897708859144785,46.684385302177439,230.409683886915445 -123.867010206144883,46.699398252333523,230.371197047643363 -123.85346425213902,46.703273343152077,230.350416373461485 -123.848318766593621,46.717507855065584,230.360182017087936 -123.850833906968333,46.720610681702809,230.369325420819223 -123.864258316884332,46.728461112982515,230.406073982827365 -123.872891406213554,46.729038930202151,230.423526080325246 -123.878789542659035,46.731368726134832,230.438121701590717 -123.895164431712857,46.750914624656829,230.496675155125558 -123.900751474893596,46.750915521585561,230.507450931705534 -123.912826431850291,46.747425441640964,230.5259277690202 -123.918481265005539,46.74203255797714,230.529400739818811 -123.917950104865341,46.738032731436334,230.522861116565764 -123.914959821491152,46.731358059744259,230.507885915227234 -123.918983700131093,46.727450145532984,230.510257810354233 -123.931182737117453,46.725988980453046,230.531780537217855 -123.950792891477917,46.726079615186272,230.569746860302985 -123.970674462881064,46.736815808966803,230.622904998250306 -123.977104406291375,46.734100801544209,230.631572990678251 -123.981765101445447,46.725368073240226,230.62853850889951 -123.977266650401546,46.71468159402221,230.605127613991499 -123.968995244661414,46.705895106629818,230.577041566371918 -123.975772225312781,46.704064056775124,230.587599364109337 -123.989630493278185,46.708217631029306,230.620083878748119 -123.996351561165,46.708639489829579,230.633641671389341 -124.005567413838989,46.703047549218738,230.643727026879787 -124.024522817167096,46.709682927662676,230.689471730962396 -124.04458840159532,46.72074910397744,230.74344668071717 -124.044221505753569,46.72349199832059,230.746511814184487 -124.048509651652523,46.726394800265602,230.758782472461462 -124.065228090221794,46.734372164990049,230.802020472474396 -124.083094278367781,46.735710780533516,230.838346145115793 -124.094287621849901,46.742331302757975,230.869040664285421 -124.098626833553027,46.746909035166937,230.883696744218469 -124.097153236816823,46.757518627895422,230.895403100177646 -124.098768326828477,46.785079470372317,230.936274512670934 -124.100472503483175,46.794862470447477,230.952947730198503 -124.103346390799601,46.81136031170157,230.981045288965106 -124.110193451899349,46.837091134677166,231.029374677687883 -124.125096271073616,46.880510088979321,231.117228736169636 -124.140343399458828,46.90623375961318,231.181538671255112 -124.119830513389331,46.913079860672774,231.151359163224697 -124.112759465136349,46.913219985822138,231.137943375855684 -124.095509886687637,46.901868766745778,231.08932429458946 -124.092539640910744,46.896201052321921,231.075900045223534 -124.091402539361752,46.868418204681809,231.03588876221329 -124.075229171589982,46.862195757251371,230.996262745931745 -124.068465199025724,46.864206800350807,230.985979707911611 -124.063167222378368,46.86582983216794,230.977991309948266 -124.057201385211542,46.871131726489153,230.973734185099602 -124.051396159832862,46.891954986109035,230.990936867892742 -124.048461244397259,46.894673929758895,230.988991958089173 -124.03835734426923,46.899174933529871,230.97567939851433 -124.015777374319839,46.904332141429883,230.9392607267946 -124.011636606195495,46.911026945858175,230.940414622426033 -123.987199875146089,46.922617926924865,230.909203018061817 -123.981495875491945,46.923739986869123,230.89976292476058 -123.959610636964328,46.921963463852592,230.855260672979057 -123.917373772063655,46.933666770028957,230.790018030442297 -123.885001796555414,46.940649085579572,230.737327500246465 -123.862297959801609,46.949259156458176,230.705451609566808 -123.878254576918977,46.96175635478555,230.753144243732095 -123.891520989814097,46.969605791291258,230.789317765273154 -123.900364177784184,46.972628505188609,230.810416966676712 -123.923736356301475,46.972565075164468,230.855220182798803 -123.941333408406123,46.970439835550515,230.88613052573055 -123.95011555835417,46.972518588753658,230.905826555565 -123.961305037545372,46.982458978886562,230.940825617872179 -123.993732226316027,46.980914441035615,231.001013877801597 -124.014338580852126,46.985874858459972,231.047325644642115 -124.02184787632838,46.991887475801541,231.069900349713862 -124.012189066949958,46.998580383646924,231.060420070774853 -124.007369268671297,47.004613228680277,231.059338808059692 -124.019156668142671,47.012414694533625,231.092536534182727 -124.019120791867422,47.015545568499277,231.096705689094961 -124.028467471444898,47.030883774817319,231.135396137833595 -124.06797920868091,47.041835599525662,231.226024962961674 -124.108501577812419,47.043334787551267,231.305823847651482 -124.124180658044338,47.042344536856845,231.334585660137236 -124.143640547948507,47.035836439303225,231.363174702972174 -124.151166373205058,47.029988536434402,231.369744852185249 -124.15341106585403,47.02180682606388,231.363027372397482 -124.141854681339481,46.989066366930331,231.296637438237667 -124.140155979829899,46.971656104614098,231.26983601693064 -124.126505806037372,46.944568457159839,231.206916787661612 -124.143386792023804,46.940964291036501,231.234499505721033 -124.16074349646766,46.930137409754138,231.253217071294785 -124.182230537572792,46.927055137296129,231.290382582694292 -124.176623097515787,46.94232062050741,231.300265478901565 -124.173281736467715,46.959139999099285,231.316595613956451 -124.171235147242797,46.995203573632423,231.36138366535306 -124.175626030780791,47.067062583102533,231.46659073792398 -124.178871114398916,47.093690447160768,231.508571178652346 -124.185960435170088,47.125497032183326,231.564795169979334 -124.184929795564329,47.134730679088499,231.575179414823651 -124.187933897186127,47.136706543650057,231.583581182174385 -124.191853358278621,47.147516035282351,231.605550062842667 -124.198022490497024,47.174687826655557,231.653665286488831 -124.211148357118134,47.218836807708925,231.737632680684328 -124.238483340038115,47.287969526121209,231.881693419069052 -124.244368699016661,47.295783103602261,231.903287701308727 -124.255725082026757,47.303161596651201,231.934754217043519 -124.25958717482952,47.304740461497623,231.944222965277731 -124.27332831764511,47.305706166822254,231.971760315820575 -124.288505243645901,47.325842078248392,232.027353935874999 -124.295424866438452,47.339988383569747,232.059230769984424 -124.302080281933257,47.349038897728988,232.083868891000748 -124.309646496780445,47.352946600482085,232.103464848361909 -124.321516719146942,47.356237247624307,232.130464658141136 -124.326229241168761,47.368279678676451,232.155305180698633 -124.328789115945384,47.389435786405969,232.187993437051773 -124.338864294644054,47.416671512265467,232.242951143532991 -124.347298323404928,47.489702448681143,232.354540901258588 -124.355796383574372,47.534280293340011,232.428807886317372 -124.35810071374091,47.546367998157272,232.448915143497288 -124.361173815175448,47.548285864654638,232.457256332039833 -124.368368291972274,47.583107351073984,232.516154918819666 -124.373894034648373,47.600242569809389,232.548872074112296 -124.377075235289524,47.604558339596466,232.560509528964758 -124.384364454247475,47.632968080548473,232.611118176952004 -124.398133921840412,47.666198511207924,232.680173924192786 -124.414258098251921,47.691862197384054,232.7438461529091 -124.422372563251557,47.725955703106052,232.803070898167789 -124.42734914246482,47.739095093012033,232.829373895190656 -124.432700505115676,47.746909685390001,232.849543893709779 -124.456082468725683,47.765993496601617,232.918319380842149 -124.473842666896047,47.76756610128345,232.953998843207955 -124.478725817691057,47.770329901018627,232.966790108941495 -124.484311008524358,47.798111705667743,233.012865734286606 -124.491894874233608,47.81764479724589,233.05214552488178 -124.500145168764561,47.823261422035827,233.074927639216185 -124.508838287889986,47.824566207472571,233.093052882701159 -124.514938275797292,47.823174147340573,233.102833012118936 -124.542086077646033,47.837622070761903,233.172626241110265 -124.560414003406038,47.856632981560985,233.231473691761494 -124.561194304393283,47.863738688770979,233.241966671310365 -124.564523459286292,47.866869503618624,233.252238851040602 -124.590333136098323,47.878530561696074,233.315862537361681 -124.611699382840897,47.880648076690306,233.358977501280606 -124.612924518230543,47.881259046303356,233.362069135531783 -124.627673832723929,47.888614464371642,233.399283376522362 -124.632315054554937,47.893118200867377,233.41375823225826 -124.63186823861561,47.897619033308686,233.418599925003946 -124.647605954358966,47.93598723812449,233.496773059479892 -124.65413032978914,47.943825809282849,233.518980577588081 -124.66449875194013,47.952099291099159,233.548993203788996 -124.674592368112755,47.965061595336316,233.584369197487831 -124.672996106949014,47.983012925851945,233.603901768103242 -124.681191563184257,48.016342473848454,233.661176024004817 -124.684325437203071,48.036631625843526,233.692489883862436 -124.687562017319976,48.049882049937295,233.715166211128235 -124.690528278159945,48.055570773005265,233.727871311828494 -124.69584547582167,48.059340526233299,233.742611208930612 -124.69871194148827,48.069917061544572,233.761222168803215 -124.697284680474354,48.087738397156549,233.780759716406465 -124.690772858307227,48.093108311970248,233.775176941417158 -124.689272107817644,48.09929910036702,233.780063568614423 -124.697259850161984,48.11551932104085,233.815318043343723 -124.723898663075289,48.153824335104765,233.913101411424577 -124.733877041586979,48.161040867372236,233.940842328593135 -124.735348178824822,48.164031723931892,233.947320194914937 -124.733920447413595,48.170635495719154,233.952816504985094 -124.706327853516555,48.185060460555967,233.918753234669566 -124.69828639393107,48.1992370655732,233.92118236515671 -124.693075948987442,48.213254623558392,233.928733039647341 -124.692565247245696,48.220382358465464,233.936590943485498 -124.707208162697285,48.239410348158209,233.987641009502113 -124.708097216804319,48.240530288193263,233.990695405751467 -124.701840421594326,48.246448178808706,233.986241158097982 -124.68685471018901,48.255864100207248,233.969701218418777 -124.683055111915266,48.265985782813729,233.9750538431108 -124.678498344897832,48.295777724203276,234.003224450163543 -124.671444343932322,48.296987811404406,233.991470282897353 -124.668087445403472,48.299958760942125,233.988827684894204 -124.664247890531314,48.311084406667938,233.995321860536933 -124.661120745371164,48.331690675605671,234.014809707179666 -124.672253266900782,48.341974070377951,234.04833606351167 -124.698884823724953,48.350380243212435,234.108615063130856 -124.715999658060866,48.366940284269951,234.161019325256348 -124.729204960770417,48.371731850257291,234.191651246510446 -124.73304620720431,48.376830582182038,234.205095341429114 -124.734011426313799,48.381787374154847,234.212970300577581 -124.728022589572618,48.386642302050831,234.207681866362691 -124.719130684635005,48.390406326828973,234.195617960765958 -124.696694484940522,48.389634782155923,234.152619183063507 -124.655426249666249,48.391322500777214,234.077342065051198 -124.641571925217235,48.386155961184308,234.045043588615954 -124.633290478478656,48.377154462522938,234.018477296456695 -124.6139644048137,48.378814765645586,233.984292670153081 -124.601460433058165,48.381667893754837,233.96436280105263 -124.599513225481516,48.382515388461641,233.961754697375 -124.592915051392609,48.374237339957091,233.93921734765172 -124.575045602148265,48.366861960926371,233.896654079668224 -124.567022614150446,48.368555048318171,233.883699455298483 -124.548439862689619,48.354228948684323,233.831224771216512 -124.541001648752768,48.35052823130345,233.812718658708036 -124.527633510824657,48.349657518031059,233.786582900211215 -124.512762151808374,48.343872021306751,233.751563587225974 -124.416184616185333,48.301526472429373,233.518038788810372 -124.397769960895005,48.289412285338265,233.468450092710555 -124.383050675593395,48.285339720073665,233.43577241897583 -124.36352764902314,48.288222979069332,233.402732473798096 -124.34458808418816,48.278336716455641,233.354895765893161 -124.301321351040272,48.26888189755541,233.261933284811676 -124.297764100697265,48.263626166381421,233.248699883930385 -124.299099060595083,48.262439186652642,233.249723190441728 -124.299818018605649,48.261319216008602,233.249674247577786 -124.297867944496431,48.259925306357772,233.244274765253067 -124.274191555832999,48.255053940997428,233.193760329857469 -124.267998526473065,48.255486041540465,233.182679042220116 -124.257283619054704,48.259616085782767,233.16773619223386 -124.254441683325339,48.261648061616043,233.16494401358068 -124.253056832519874,48.265416943317483,233.167056389153004 -124.240756639964644,48.263115264173223,233.141103708185256 -124.220047090831414,48.25393900759029,233.090769827365875 -124.194865600194916,48.246961751214982,233.034783445298672 -124.143462400687426,48.228060447719223,232.914607122540474 -124.113145874498784,48.221205283506322,232.849093280732632 -124.10394464733551,48.217531598285447,232.827201777137816 -124.109385979606898,48.20073114049638,232.816259402781725 -124.092887697781762,48.197107591207136,232.780718230642378 -124.074294275681623,48.19055319402154,232.737542032264173 -124.052903595237922,48.178398064820726,232.682028193026781 -123.983200500213542,48.165413879085854,232.534705862402916 -123.957515326965336,48.166108336941953,232.487355130724609 -123.93708897114162,48.161493899539657,232.443147485144436 -123.917756755504556,48.160006321308352,232.404959701001644 -123.882235527294085,48.161275942406007,232.339882304891944 -123.86884417556233,48.155451418648809,232.307335511781275 -123.860988091068918,48.154928586854659,232.291921089403331 -123.833738028344385,48.158592959876692,232.245429156348109 -123.780288497218507,48.156123062280976,232.141959726810455 -123.758561558458069,48.161714257212495,232.108316798694432 -123.730902409680979,48.163457711643971,232.058643586933613 -123.730456324327506,48.161515794549643,232.055327758193016 -123.727518230517759,48.159848913873773,232.047686920501292 -123.720516154059851,48.159371064166898,232.033938731998205 -123.70839225375731,48.164058112856161,232.017178486101329 -123.708598357401129,48.166480016087263,232.020658166147768 -123.704909368143149,48.167441048758576,232.014965236186981 -123.674610952381428,48.163373775699384,231.952932899817824 -123.65357353972901,48.157611393055525,231.906099311076105 -123.639132143747673,48.150978919490186,231.870517096482217 -123.643273000972087,48.146787002296207,231.872916865162551 -123.63098361349634,48.139939496503033,231.841084452345967 -123.593003123260857,48.135610377852984,231.764268279075623 -123.576378232076593,48.141417468120139,231.740532516501844 -123.56275553905175,48.151358343470321,231.727740429341793 -123.553295490721823,48.152043495356828,231.710878301411867 -123.537043122538378,48.14644201611079,231.673204430378973 -123.524483589557605,48.136201645206604,231.636484843678772 -123.509398309422437,48.132470072277279,231.603388044983149 -123.475542127423637,48.134742622373643,231.5428122645244 -123.457621230948178,48.140710730909532,231.516892340965569 -123.44229118751953,48.14267794405923,231.490682538598776 -123.441290148361162,48.141941991097369,231.487857328727841 -123.444134457102024,48.124923589897222,231.471251328475773 -123.426830054764324,48.118730152979921,231.430802961811423 -123.397209650231034,48.114908856726117,231.370309798978269 -123.36308443616268,48.116530436397291,231.308405265212059 -123.334860080944523,48.113637078108354,231.251733027398586 -123.31673896218075,48.114392389910009,231.21873137447983 -123.290426049941544,48.121703604547335,231.178869949653745 -123.282338826299934,48.117976899378043,231.158879831433296 -123.271077681510505,48.116762157643279,231.136194101534784 -123.250775497479282,48.116413552683667,231.097683845087886 -123.24128952187057,48.118885636331633,231.083110613748431 -123.219350715172851,48.127871704736741,231.053655905649066 -123.19368219728787,48.144489551606725,231.027130033820868 -123.166561896452862,48.166562218107934,231.004976511001587 -123.146945153642932,48.17661120339865,230.981289090588689 -123.135607511170406,48.177944550199427,230.961800009943545 -123.134578997274275,48.175372483270039,230.956538642756641 -123.141419709317518,48.167148668563506,230.95867187064141 -123.145390329117134,48.157301969970298,230.953324295580387 -123.133583065932882,48.153405340844536,230.926157467998564 -123.126977041107779,48.154141436926125,230.91474542953074 -123.118639833700868,48.150877718357847,230.894894924946129 -123.08731360110805,48.127808188893731,230.806216557510197 -123.068369161260392,48.121140799806014,230.76204570941627 -123.052604288694837,48.103497770899203,230.709494997747242 -123.040884282039187,48.081811821263678,230.659196994267404 -123.018808271966179,48.086054073247546,230.623373216018081 -123.006285380272359,48.091190111722241,230.606626969762146 -122.981570396681661,48.096614368139583,230.567422127351165 -122.948276221765539,48.099226893234452,230.508479460142553 -122.931251979631497,48.096919301058051,230.473571444861591 -122.920098687226911,48.092210690493538,230.446509551256895 -122.923067573174862,48.088874762388102,230.447695761919022 -122.928800033044766,48.074776194380803,230.439939607866108 -122.930130733274495,48.067326454670322,230.432655115611851 -122.929301733331727,48.065809528319946,230.4291100949049 -122.929006637769987,48.06526955453748,230.427848126739264 -122.920757301903876,48.058914952707127,230.404042187146842 -122.879795483026967,48.047703150521983,230.312527582980692 -122.851427522177218,48.054486422630887,230.268293354660273 -122.859882094227189,48.066451805943139,230.299880610778928 -122.880410700651368,48.076749026757987,230.351874992251396 -122.884169765661781,48.101455011329733,230.39135162346065 -122.878439138910139,48.111552733009169,230.393867707811296 -122.83533075294163,48.135081643969905,230.344049734994769 -122.786233687574764,48.143650238922717,230.263457146473229 -122.762605493903521,48.143916672318646,230.219622174277902 -122.751067296112581,48.117703888502717,230.16358788497746 -122.775333081405265,48.107541821103801,230.195622175000608 -122.780622096718773,48.106812749710862,230.204560833983123 -122.795057847186939,48.097857820911635,230.21979992557317 -122.800619697599089,48.09312889726273,230.223990407772362 -122.803554518610838,48.088239029096698,230.22305116429925 -122.772712827293603,48.054111912790042,230.120324487797916 -122.772649595967053,48.048577125846208,230.112901823595166 -122.76880141230933,48.04497033606966,230.100930907763541 -122.744443411107,48.050004599886101,230.061947351321578 -122.742160591095256,48.054796459291659,230.063999937847257 -122.741425211973663,48.069832897908697,230.082470921799541 -122.743338303903002,48.071637793027222,230.088434332050383 -122.749543350926359,48.071474682925235,230.099837621673942 -122.750499413560689,48.072776615217798,230.103344996459782 -122.735412081703274,48.091911166872407,230.10032999701798 -122.720713218679848,48.09824620060629,230.081172252073884 -122.700620275158244,48.103781366144382,230.050873655825853 -122.689395117154731,48.102341631614294,230.027974104508758 -122.693794949218002,48.09740573751246,230.02969537768513 -122.694374551344964,48.087761094921767,230.018053852953017 -122.684416614296836,48.04340497732786,229.940786506980658 -122.679305304141309,48.037028317142386,229.922771117649972 -122.671094052691132,48.032708636323015,229.901668441481888 -122.672019444430504,48.017900186096959,229.883776594884694 -122.6890492220504,48.008988208680258,229.903875043615699 -122.692217254396695,48.009103144948043,229.909965179860592 -122.699336589087423,48.015660760290785,229.931999458000064 -122.703991676489863,48.016788629882015,229.942217816598713 -122.725525530287257,48.008777533632681,229.971967170014977 -122.720232638230939,47.988422413527488,229.935064623132348 -122.703443879563721,47.973663294351077,229.883991076610982 -122.685372691232331,47.972910661477897,229.849097029305995 -122.680949474484336,47.968614909194343,229.835092101246119 -122.678364070905957,47.959428310394536,229.81802829541266 -122.686836535455498,47.944734716521104,229.814377665519714 -122.686598348757883,47.940278892284375,229.808000445365906 -122.684072195152368,47.93710106173215,229.799028978683054 -122.664527788465477,47.931386647041066,229.754735414870083 -122.659869766791871,47.931842716615847,229.746600684709847 -122.653210287786891,47.921672232352336,229.720541950315237 -122.656137102469785,47.916577373664445,229.719240848906338 -122.657231664013139,47.905745770130636,229.70684317778796 -122.648640164010146,47.895459326849526,229.676974155008793 -122.639570885616479,47.890633682232604,229.653493229299784 -122.621018736104205,47.890931017475381,229.619047804735601 -122.612486541892096,47.888032288564226,229.599147219210863 -122.634002212352001,47.875504369302526,229.622802965342999 -122.636023965285773,47.869090578806727,229.618019814603031 -122.638504895514515,47.866875617872452,229.619717301800847 -122.652227919034942,47.864549451222373,229.642391967587173 -122.668562211140653,47.868186005784182,229.6779516749084 -122.695905469391178,47.868690475413814,229.730012443847954 -122.693119119931637,47.860806831661918,229.714239655993879 -122.68374663805848,47.85109438163893,229.683632871136069 -122.685886177218691,47.839462790837139,229.672090060077608 -122.690739917161025,47.832127983556553,229.671397939324379 -122.721752428140007,47.813726115877664,229.705094928853214 -122.734099399280112,47.810431012809993,229.723915675655007 -122.750204160073054,47.801236067971544,229.741912632249296 -122.752682089084018,47.774657051271475,229.710959812626243 -122.760026486459111,47.75843554320052,229.703032128512859 -122.76063901147748,47.746727986028382,229.688469779677689 -122.751339795590994,47.741755130206357,229.664267065934837 -122.742299451386003,47.736920708805897,229.640733744949102 -122.735152447002804,47.738317787870749,229.629143476486206 -122.724826817113424,47.749519545766155,229.624745073728263 -122.721853289784832,47.761668130065765,229.635465775616467 -122.716942542845842,47.768867942581217,229.635886167176068 -122.692703751756227,47.779063999795902,229.603938262909651 -122.68622752573097,47.799265338555742,229.61886347644031 -122.68415760267699,47.801573287887059,229.618064531125128 -122.650251305547485,47.825813983560387,229.586792476475239 -122.625335544701187,47.836890020932799,229.554795402102172 -122.61672907149115,47.851496617845171,229.558199252001941 -122.610249259075815,47.857418510401445,229.55395776219666 -122.575815993367073,47.858273120490438,229.490402827039361 -122.57524266882838,47.874771495242619,229.511443287134171 -122.58848493857478,47.902712171852095,229.573713924735785 -122.5903814057706,47.913611717019265,229.59184636734426 -122.598374777095728,47.920898287337835,229.616584647446871 -122.618848159980175,47.925826715047364,229.661588441580534 -122.622463457040467,47.932240400841245,229.67693080753088 -122.619169736096509,47.939674176694318,229.680665455758572 -122.614103765761811,47.941459202837315,229.673541180789471 -122.606008682817375,47.94116536551298,229.657961940392852 -122.603654299837174,47.932413745879487,229.641867343336344 -122.594330837248421,47.923207274143216,229.612079440616071 -122.583992654216928,47.920970553410427,229.589690073393285 -122.55121831685824,47.919761212510892,229.526570560410619 -122.529738582896968,47.906572121090846,229.468609510920942 -122.516130427755144,47.881498340211301,229.409454805776477 -122.514921718879151,47.864571014783166,229.384463884867728 -122.508264336677684,47.832438378069433,229.328762300312519 -122.504366082257889,47.827088657262294,229.314236207865179 -122.484670461336407,47.816205444834985,229.26255867537111 -122.484578203349116,47.809949688113726,229.253953316248953 -122.487355017086912,47.804822834339497,229.252261530607939 -122.497486814998808,47.797734919224162,229.261754428036511 -122.497598391039986,47.787387317113236,229.248006040230393 -122.473541329050917,47.766661567231161,229.174761233851314 -122.47247195660394,47.757805929869583,229.160775533877313 -122.473982671188921,47.750516183928099,229.15375772677362 -122.47948256390832,47.746716228591154,229.15896768681705 -122.49062956302545,47.744302114379821,229.176683059893548 -122.509776708007081,47.743736779475277,229.21196146029979 -122.517331809955394,47.744607604940398,229.227361422032118 -122.521463940773714,47.746916438482153,229.238260908983648 -122.53945713611138,47.747836067493047,229.273376241326332 -122.556593227214677,47.746399803737532,229.303698305040598 -122.545298705515052,47.711638362262775,229.23543755710125 -122.533077348086124,47.705511827703425,229.204118860885501 -122.527988315021332,47.705792911581433,229.194911558181047 -122.526099418626615,47.708731832700749,229.195333014242351 -122.513333334611715,47.709413044048958,229.172206432558596 -122.506740885306669,47.699834538579545,229.146807226352394 -122.506588342850051,47.686587055820432,229.128555547446012 -122.510844766102153,47.671542561140697,229.116162250749767 -122.520412053786515,47.652020142256227,229.107688329182565 -122.504250413351144,47.639774919495416,229.060560304671526 -122.495339174330454,47.635823239097761,229.038375299423933 -122.494942945688805,47.630292461792699,229.030100523494184 -122.496651717861752,47.624326662330517,229.02520246990025 -122.502490532671004,47.618517780011764,229.028309418819845 -122.500372718292169,47.598944582286897,228.997642066329718 -122.496065303610791,47.589666024236507,228.976856372319162 -122.485937123832173,47.587424299953,228.954675894230604 -122.481220957962051,47.58435750725328,228.941585694439709 -122.505803829176486,47.575881381119672,228.976435010321438 -122.520498913105328,47.574783150862288,229.002689604647458 -122.532046501314298,47.569144282681954,229.016807028092444 -122.53679573250183,47.56682515872955,229.022614131681621 -122.545249408910536,47.557029384341092,229.025217469781637 -122.544485652999683,47.538544121229556,228.998530027456582 -122.549337307167818,47.528961405986514,228.994605544954538 -122.548741111410621,47.524254601257653,228.987043753266335 -122.535038936681801,47.522888909204916,228.959269331768155 -122.525179924172377,47.524705021242497,228.943114250898361 -122.502672374727069,47.515985780443629,228.888626326806843 -122.497011122388017,47.510971081846961,228.871052979491651 -122.487122135623025,47.513437168920596,228.855734713375568 -122.469924872821679,47.510662596787,228.819417933002114 -122.454527475674666,47.504178136420826,228.781412086449564 -122.462631195220396,47.495480326572242,228.784798886626959 -122.462156871468437,47.487568645276284,228.77304017264396 -122.435512813212029,47.467138940258856,228.694559991359711 -122.441966533220395,47.458792147860073,228.695286794565618 -122.44220790678402,47.418357730710071,228.640040854923427 -122.439781474355541,47.408135177434353,228.621342689730227 -122.429451170926811,47.402840577005414,228.594467230141163 -122.397177772956837,47.399989287054986,228.529399241320789 -122.375752160341818,47.389431099056516,228.474214970134199 -122.380605067007664,47.386043142413151,228.478719746693969 -122.403891110909541,47.38203786868749,228.517295039258897 -122.439931796185988,47.366319819914125,228.563855681568384 -122.450521462936564,47.355700042159519,228.569240214303136 -122.456120044919288,47.344050397671104,228.56373402196914 -122.459616044624042,47.343280363305801,228.569298334419727 -122.471825233679837,47.345336056199223,228.595298757776618 -122.493359042868818,47.335885030244853,228.623068114742637 -122.493184931393785,47.333140141764822,228.618939722888172 -122.495244862274589,47.330966189408883,228.619839459657669 -122.507039982127225,47.331392954194733,228.642808953300118 -122.520972209132495,47.334032592067246,228.672894169576466 -122.52628245765608,47.339082294479276,228.689950191415846 -122.530251779630831,47.346253938049585,228.707390286959708 -122.5281532973992,47.359619449886793,228.721867699176073 -122.540058518085829,47.359914208181536,228.74485326372087 -122.553659544412099,47.360250952478815,228.771113972179592 -122.557963099599675,47.34823034682217,228.762689708732069 -122.573462420427532,47.327930860962056,228.764070789329708 -122.578107428660076,47.327131806498699,228.771783406846225 -122.575861088793218,47.319131164107475,228.756466122344136 -122.573360955041878,47.316331321012498,228.747850432991982 -122.549868782752355,47.317115724962903,228.704339782707393 -122.549529833091498,47.318446678665758,228.705537027679384 -122.542359802318686,47.319232780360494,228.693014760501683 -122.535459666336223,47.317332983135977,228.677289867773652 -122.473771558273384,47.278036677680966,228.505704061128199 -122.446318895604563,47.267439604513207,228.438843318261206 -122.439845783037057,47.268763122125563,228.428390538319945 -122.431723887109015,47.270423756355541,228.415276448242366 -122.420193267572088,47.282481492870694,228.410150228068233 -122.411318461066884,47.289272388651938,228.40274409390986 -122.415854715154467,47.294637092819578,228.418809935450554 -122.426354950975181,47.298236756407533,228.44373928476125 -122.434454961911484,47.296736665822834,228.457029543817043 -122.446755245354325,47.301136264484171,228.486483379267156 -122.445128467516227,47.307048061107068,228.491599880158901 -122.42565580866227,47.319835916638439,228.472393415868282 -122.420388468936522,47.321329378993681,228.464472699910402 + + + Vermont + + + Vermont + 0400000US50 + 50 + 9216.656999999999243 + + -72.459423600336365,42.7284345515437,141.004045034758747 -72.865097427999089,42.738694968941687,141.42349124327302 -72.928210107607683,42.740291228673513,141.489220191724598 -72.931190287711132,42.740366604015257,141.492327058687806 -73.019568186967916,42.742601875323501,141.584590897895396 -73.023825468415808,42.742709551274118,141.589041667990386 -73.143412826312684,42.745083338185353,141.712312338873744 -73.265887087213272,42.747514425547998,141.839034245349467 -73.277351445445049,42.747593329666671,141.850467035546899 -73.291875735314832,42.803492258819894,142.035163041204214 -73.286320045209379,42.835664182226488,142.127784076146781 -73.279604825531962,42.834981260678916,142.119154734537005 -73.275399305250872,42.941928576880166,142.440498143434525 -73.275326335006653,42.944049503912687,142.446873442269862 -73.275227349587155,42.945219464143626,142.450332938693464 -73.27040685624408,43.03225040357799,142.709904152899981 -73.260096030574132,43.218406169207675,143.263476449996233 -73.255786279209488,43.316239327387564,143.554584320634604 -73.254022957941899,43.3562675083569,143.673513115383685 -73.253771085395371,43.365046211423902,143.699712269939482 -73.253613185205197,43.371837981473085,143.720013906247914 -73.253521193296322,43.372549957991026,143.722069083712995 -73.248002248168007,43.516467119636353,144.149459184147418 -73.242983400890523,43.536472484550067,144.204670427367091 -73.246535165118715,43.541800685608713,144.224077966064215 -73.303496728246031,43.627251923134843,144.535048281773925 -73.307178880728856,43.629561814932799,144.545510902069509 -73.367483713483935,43.625005469430164,144.590028899721801 -73.37654084068852,43.614893735089709,144.568506879732013 -73.401241922830195,43.570434030302579,144.45923379343003 -73.429584053219287,43.585538285493882,144.531902769580483 -73.432177202322592,43.589829119181971,144.547261816449463 -73.422554815023318,43.648119234618299,144.712386306375265 -73.409645689239269,43.675561692443814,144.78196182101965 -73.404465849540756,43.686573091716362,144.809870300814509 -73.371672610247103,43.737110668085087,144.929198272526264 -73.361659855270091,43.754807203907625,144.972380748018622 -73.351379534752681,43.772976635458114,145.016705467365682 -73.358495989185585,43.787471091565074,145.066795645281672 -73.38022903279095,43.809928160423162,145.154680366627872 -73.38026205831882,43.810015202659557,145.154971632175148 -73.38933970215848,43.83394028288383,145.235010252334177 -73.398208148533385,43.907201768049312,145.461630963720381 -73.40869486740641,43.931419875446267,145.543730876408517 -73.406478099366325,43.95034526531353,145.597847484052181 -73.406953193568967,44.017759026522604,145.798479915596545 -73.411730517194258,44.028473632043529,145.834856064990163 -73.437835597553814,44.044106896756524,145.90629664901644 -73.438384683848213,44.048389750562841,145.919522444717586 -73.430194947319194,44.080941743751623,146.008133813738823 -73.404641950393454,44.154627585765368,146.201788336038589 -73.391539515872893,44.192410397472791,146.300984205678105 -73.351761815042266,44.227466580339239,146.366565649397671 -73.325636267588706,44.245137219946045,146.393833588808775 -73.324223689835065,44.266318562583137,146.455044742673635 -73.315973312026244,44.390031571872875,146.812015807256103 -73.29698835402661,44.429856436832438,146.91121406853199 -73.294570449072779,44.440420114235884,146.940002763643861 -73.300843267111176,44.478167837817658,147.056982018053532 -73.307665873606183,44.501849013866021,147.133061576634645 -73.339590660746211,44.548357242185212,147.299949772655964 -73.339595034299037,44.548359909243977,147.299961755052209 -73.357749425326361,44.559430731868005,147.349690605886281 -73.362914157382107,44.564576225117854,147.369692628271878 -73.375351278837982,44.57696701778562,147.417852383106947 -73.391194495552682,44.619863501917756,147.558639892376959 -73.366290102777512,44.704801983272418,147.783642205409706 -73.340922543257108,44.780398778205964,147.980570036917925 -73.370613337447267,44.830639924132662,148.155296819284558 -73.360417916808629,44.917185502163157,148.397893767803907 -73.351156480395119,44.995802845723226,148.617898551747203 -73.344092530682602,45.012338382996845,148.659307354129851 -73.192911459896763,45.015075599919655,148.525201791897416 -73.086932285854573,45.016994407634726,148.431629478000104 -73.016496995721937,45.016573012480571,148.364699621684849 -73.015723969123329,45.016481021866376,148.363711563870311 -72.846585508589257,45.018161383628339,148.211475586518645 -72.675716935715457,45.01696284233816,148.050161469727755 -72.555195816748295,45.013299304373191,147.928704605437815 -72.34338894688041,45.006860899855674,147.716331803239882 -72.103986135071281,45.007106845951782,147.499967403709888 -71.898543778151549,45.010682645130458,147.325607425533235 -71.768369244120123,45.012948374130879,147.215834706090391 -71.503395579393839,45.014880431698572,146.986219901591539 -71.465462337222917,45.015150724814546,146.953514833003283 -71.469474278394514,45.01173581456527,146.947028868831694 -71.487364470091805,45.008524817317422,146.953397314064205 -71.505908579485805,45.009664575132291,146.973128751851618 -71.531000269269143,45.001169641704415,146.970377940684557 -71.537889408824327,44.995690758654511,146.960388160310686 -71.539501366947292,44.98969593385732,146.944212201051414 -71.538693279016584,44.985812062145449,146.932091342285275 -71.517722011241716,44.949103381778947,146.805676116608083 -71.494891691187249,44.912828704200265,146.678801200352609 -71.496750652613642,44.906496888804966,146.661818230524659 -71.573427771085761,44.811592953265439,146.450397089123726 -71.624832493679605,44.756655607782918,146.334205969236791 -71.628266486955113,44.749064821396743,146.314878732897341 -71.626231141403409,44.731239403704933,146.260473080910742 -71.599562775016665,44.699527623865769,146.143075250089169 -71.554060179373749,44.628170258565412,145.89159726165235 -71.537154027986006,44.589465628753274,145.761978489346802 -71.581166202630897,44.508037889457668,145.559988813474774 -71.600383518319163,44.48798438153711,145.517704525962472 -71.680855230192094,44.42943862858035,145.416132272221148 -71.709839919682921,44.413141924306807,145.393806789070368 -71.745917932107517,44.402889968849884,145.395846237428486 -71.756998369494724,44.407931718103221,145.420799307525158 -71.762873569772339,44.408557651222218,145.427952758967876 -71.765444657179742,44.407933682540055,145.428418069146574 -71.794832486368193,44.400801647550615,145.433753555640578 -71.815296881557558,44.383463044899244,145.400754468515515 -71.816973702147919,44.36834852025008,145.357382007874548 -71.850375159336039,44.360826218359776,145.365244957618415 -72.003228080601048,44.32640239270517,145.401740431785583 -72.013087345538594,44.32293942612263,145.400432844646275 -72.059795308449736,44.287772193910435,145.338545023463666 -72.06634938025968,44.278767434103891,145.317768588662148 -72.068689358647831,44.272508618880096,145.301303159445524 -72.065198959358582,44.189423354194794,145.050934470258653 -72.053934287689671,44.1694390970016,144.981113006360829 -72.043000051595925,44.159169136123204,144.940516100265086 -72.040994683253686,44.15728559763653,144.933069841004908 -72.040994928041414,44.157284866254273,144.933067885227501 -72.055587481882867,44.113684907937106,144.816433247178793 -72.091622347545098,44.036751189288069,144.619837608188391 -72.113725445796732,43.989561521895439,144.499127765186131 -72.113990221092124,43.974332021821795,144.45383542496711 -72.107953977140454,43.971055178071154,144.438486265018582 -72.106505794358299,43.960571659380378,144.405797686427832 -72.105332602788465,43.952078825103278,144.379310837946832 -72.121913652393445,43.920499735979547,144.300053247250617 -72.16813663287931,43.887657453634688,144.244304412975907 -72.183115318380516,43.835578060662513,144.102067708037794 -72.18465495072013,43.808190958018422,144.021354484371841 -72.205704096104725,43.773473944815073,143.93664101138711 -72.206628690544932,43.772691147875264,143.935146908275783 -72.233625629356553,43.749834509343323,143.891525878570974 -72.265158421979748,43.735706728498918,143.878341845236719 -72.272093643157589,43.735686673737391,143.884718408808112 -72.303781177150341,43.704267469193198,143.819773263297975 -72.330573998543329,43.636199532491396,143.640047867782414 -72.335314916303957,43.620802010782306,143.598131988197565 -72.335658855613175,43.616071166704849,143.584213759750128 -72.330533475656736,43.601753688073558,143.536334071308374 -72.396739378398863,43.522114836943807,143.358212633989751 -72.388555845446888,43.504036511705586,143.296036995947361 -72.388765386202962,43.473123553072028,143.20295746717602 -72.397847157620845,43.430548387414625,143.082899985834956 -72.39786122151979,43.430482456138712,143.082713988609612 -72.406165712267125,43.39155117342824,142.972841331735253 -72.404861192742914,43.359658265385058,142.875158884562552 -72.401423133109631,43.33863426557204,142.808309122920036 -72.398061355101021,43.318076731949645,142.742912869900465 -72.43209769415904,43.233350088520446,142.518115006387234 -72.440318123511176,43.212886979949623,142.463770465925336 -72.453010782496918,43.162980585532274,142.324210774153471 -72.44281409243402,43.138182516068071,142.239244934171438 -72.434006568428131,43.12158915495425,142.180494378320873 -72.433570466632162,43.115645362280766,142.162008785642684 -72.444670224077313,43.007816981611221,141.844199100509286 -72.55712371281183,42.868525904720137,141.525720600970089 -72.557021699359211,42.867827929741665,141.523490864783525 -72.556677824557994,42.859729283261281,141.498415289446712 -72.556602541284775,42.857956275571027,141.492924989201128 -72.543692434139999,42.810060041831434,141.334178613498807 -72.510412990966842,42.782762255299204,141.218973195180297 -72.492028286963816,42.774044704327494,141.174801535904408 -72.479358741267404,42.763876158667699,141.131614303216338 -72.461099728657885,42.733647356502459,141.02162091806531 -72.459423600336365,42.7284345515437,141.004045034758747 + + + Utah + + + Utah + 0400000US49 + 49 + 82169.619999999995343 + + -111.048495948035679,42.002702241791262,196.982736432924867 -111.048196833281068,41.580998986901363,196.04629716090858 -111.048053569208747,41.378894640854512,195.591954817995429 -111.048389107194268,41.361856419871799,195.55416810605675 -111.048337130238593,41.252885447364221,195.307576235383749 -111.048502265533173,40.999140223121053,194.729824593290687 -110.502489303891096,40.995935781425977,193.648069901391864 -110.050238886993085,40.998299656072632,192.767278343439102 -110.002472020381731,40.998549327918624,192.674447609111667 -110.001602006883587,40.99852734225059,192.672695587389171 -109.857060863697328,40.998813539602281,192.390936505049467 -109.856063850074307,40.998860552666542,192.389098917134106 -109.717168786785024,40.999392649765106,192.119274970144033 -109.715636765808043,40.999467669686894,192.116461672820151 -109.678180207211696,40.999597235438024,192.043720988556743 -109.209135186858703,41.002668237971726,191.138241311535239 -109.051825757558447,41.001870664272332,190.831116801127791 -109.050037248065067,40.663829047632404,190.028628059662879 -109.049989631386168,40.654828753355098,190.007121758535504 -109.0518117248035,40.541591007637031,189.740642055869102 -109.051692711181047,40.541134030782558,189.739317601546645 -109.052584042593892,40.223910007282818,188.97841654997319 -109.052701532503477,40.182098895264687,188.877446859143674 -109.052672528587166,40.181961902176766,188.877058080397546 -109.052538462009267,40.060834644276454,188.582713582552969 -109.052598446169924,40.060170674910886,188.581215816549957 -109.052936368350302,39.661746762571461,187.605029521510005 -109.053074495249149,39.498956561057433,187.201948420144618 -109.053125071799244,39.367966174943042,186.875692690722644 -109.053218442678315,39.126282685797754,186.269513727165759 -109.054990105660991,38.944187594497471,185.812553507275879 -109.054931094978656,38.943776615578095,185.81139271799475 -109.055494217283965,38.906595437945725,185.718105161562562 -109.055640198744413,38.905725478679983,185.716186432167888 -109.061233908881036,38.721208513485664,185.256902006454766 -109.061649755769579,38.501318438702079,184.692826176062226 -109.061744547950553,38.276831672453525,184.111500352621078 -109.043741522002264,38.156838966426882,183.762294546701014 -109.0437534383083,38.154372065649305,183.75587129406631 -109.044495964967339,38.000657844169751,183.354469181969762 -109.044494914139221,37.998424957230007,183.348597435280681 -109.044796399890785,37.975618108014196,183.289227470755577 -109.043809823555648,37.882523240907901,183.041866562329233 -109.043395384276195,37.843415838751355,182.937700279988348 -109.043426244194151,37.837191154929691,182.921302799135447 -109.043429484279969,37.71455340457404,182.596239148639143 -109.043401439718309,37.71258550543871,182.590953870676458 -109.043756488069732,37.625170969011599,182.359050156548619 -109.043798351715083,37.619038282346324,182.34278691187501 -109.04347304581033,37.605547977693561,182.306149424053729 -109.043530410746726,37.532106742059369,182.110100417397916 -109.043580409854457,37.532033745100613,182.110007046721876 -109.044717746328814,37.486543774332816,181.990551522001624 -109.047472019106237,37.376381696737425,181.700430362485349 -109.046812246130415,37.113466310982382,180.988384637981653 -109.046859244505043,37.113360315831187,180.988193020224571 -109.046829189759208,37.110866445786478,180.981357056647539 -109.046844902809795,37.097674130947667,180.945543112233281 -109.046650685875321,37.087832645120152,180.918392414227128 -109.046713430911112,37.076065255979714,180.886520318686962 -109.046821390767917,37.074146354247524,180.881521977484226 -109.046876793534096,37.000492187247318,180.681008109822869 -109.182851766108911,37.000677281869564,180.960693730972707 -109.235504525756369,37.000671547490477,181.068872662261128 -109.24857371585783,37.000751360916574,181.095953091047704 -109.26504695136272,37.000668135307599,181.129590925760567 -109.26987002035996,37.000647069075029,181.139449400827289 -109.271754048007779,37.000671041521805,181.14338814932853 -109.379697596389803,37.000538540748309,181.365062600001693 -109.382884642382791,37.000551495535852,181.371656582690775 -110.002344403695403,36.999362878311381,182.646666400134563 -110.33272201585153,36.999606217982254,183.331788978539407 -110.49693340900221,37.005262605839988,183.687900924123824 -110.752367896607495,37.004581034334102,184.217238432727754 -111.191571791537712,37.002336932720944,185.127139117568731 -111.407203685553824,37.002871842774255,185.579421983100474 -111.407555689885811,37.002855838618011,185.580115981400013 -111.414470769716729,37.002852427681994,185.594578119926155 -112.359389115825181,37.002386286975288,187.578119164332747 -112.370645262316899,37.002486120521169,187.602112350985408 -112.536245946819136,37.002043262640555,187.950294739566743 -112.54029447377934,37.002032435824461,187.958812421187758 -112.542069441140271,37.002027689098604,187.962546850554645 -112.546795502721551,37.002092617892053,187.972694589756429 -112.560675678325936,37.002050421147523,188.001887081190944 -112.611489325126115,37.002110689279178,188.109348193742335 -112.901071871561925,37.001673019430818,188.720481971278787 -112.968177806173927,37.001571595463595,188.862289815209806 -113.967626037149785,37.001314185101982,190.985772594809532 -113.967626038252845,37.001363182470229,190.985899602063 -114.052320059543575,37.00173293559201,191.167551374994218 -114.05347106065345,37.089766193763708,191.397574399597943 -114.05354411903852,37.092308056440324,191.40428894944489 -114.053700505771189,37.285169743410961,191.900321203283966 -114.053700520916777,37.285832708063026,191.902018597349524 -114.053526713804231,37.294365255721949,191.923490615561604 -114.053526725322811,37.294869228857991,191.924780474044383 -114.053655487972009,37.371776131980994,192.121578071266413 -114.053655494281088,37.372051117354864,192.122279676608741 -114.054432294396392,37.493324666655909,192.432586912997067 -114.054416536591745,37.503823110480802,192.459202663972974 -114.054449877753981,37.518573328525989,192.496696126647294 -114.054420891155885,37.519168297436465,192.498143716715276 -114.054205901560081,37.606080702694193,192.71773773431778 -114.053465181856637,37.747294267285405,193.072064084000885 -114.053522188433931,37.747546253184638,193.072817795909941 -114.053407203619571,37.748255217571355,193.074356473051012 -114.052846414707219,37.757572735590522,193.096582046709955 -114.050211637651685,37.811154957765169,193.22547541372478 -114.052166139594604,38.001244971331303,193.704261409118772 -114.051649664554873,38.149877231324055,194.071776791475713 -114.051872808930185,38.40579896659451,194.701732018962502 -114.051843811885973,38.40593595995621,194.702006508596241 -114.051590180004325,38.545039797704263,195.040886402130127 -114.051618277141614,38.549019592697185,195.050627475604415 -114.051910892955192,38.57417429576342,195.112400758080184 -114.051652171941555,38.678613916898101,195.365127871744335 -114.049509061867255,39.543947247780451,197.418020408600569 -114.048924425434947,39.907224247532476,198.258943644352257 -114.048350768528991,40.118107493183899,198.74086092505604 -114.047323950339873,40.495632544362962,199.5931367110461 -114.047382986657439,40.496959479276086,199.596236095763743 -114.047087272187923,40.507743962515477,199.619844016619027 -114.045317176419786,40.727439409355021,200.107071413658559 -114.045644059358835,40.759811851630573,200.179677926935256 -114.045616073650407,40.760350826235033,200.180818282067776 -114.0439646327725,41.001060360598792,200.709395594894886 -114.041722399033304,41.743090558068459,202.311387400142848 -114.042995524835987,41.85168951365123,202.544877495616674 -114.042950523628306,41.851667515389316,202.544741249643266 -114.043570656444658,41.994807912684244,202.848777151666582 -113.895106582003208,41.989147560885819,202.542126890271902 -113.797926354832455,41.990196074644658,202.351603263057768 -113.766373955680564,41.990551565224713,202.289805729873478 -113.433402726210147,41.994896708673849,201.639814763329923 -113.40406935001883,41.995259162157559,201.582589119672775 -113.398336276962539,41.995348249943405,201.571444982662797 -113.002655127578706,41.999327399249488,200.798869440332055 -113.002653981291402,41.999327401390119,200.798867183737457 -112.981051838816185,41.999367742560437,200.756377104669809 -112.911419917748773,41.999896830564474,200.620317145250738 -112.884199554783535,42.000028259172929,200.566986841149628 -112.882451531190597,42.000027287123153,200.563542290590703 -112.834956902446152,42.000452025851516,200.470937370322645 -112.834915900745131,42.000412028328157,200.4707708125934 -112.790373309307782,42.000788721896093,200.383906132541597 -112.711205254209929,42.001417955895555,200.229503821581602 -112.649848420072274,42.00141693401779,200.108852375298738 -112.452640743518018,42.002066045136431,199.722846566699445 -112.452393744104427,42.002205042751037,199.722661637701094 -112.387995860309701,42.002240065732082,199.59635603427887 -112.266760184530639,42.00210699928509,199.358308995142579 -112.24093083372469,42.002333399440793,199.3081723023206 -112.165778663476019,41.997825797605373,199.151160595938563 -112.111350322095106,41.998223906103959,199.045428270474076 -111.917656254154039,41.999640651396163,198.669529367238283 -111.91744125048514,41.999617655844915,198.669059013947845 -111.87830970243941,41.99965027444896,198.592635919339955 -111.509077509039599,42.000646071098515,197.874184134416282 -111.4273473805561,42.00196930217875,197.717852218076587 -111.422710312956283,42.001922377508393,197.70871867146343 -111.417685239855132,42.001877458870347,197.698834225535393 -111.048495948035679,42.002702241791262,196.982736432924867 + + + Iowa + + + Iowa + 0400000US19 + 19 + 55857.129999999997381 + + -91.164503195271564,42.988160226726052,164.864927522838116 -91.146996836483964,42.909362227451176,164.627743070945144 -91.144811705597064,42.906052381326404,164.615594321861863 -91.118846858596058,42.897220044569586,164.55297336447984 -91.10200014610983,42.884461743457926,164.493490199558437 -91.079075745983445,42.805185065935859,164.24614960886538 -91.070980758291313,42.771016478302087,164.142059344798326 -91.066327358892678,42.758661011000562,164.101803782396019 -91.055163645397712,42.739627881909982,164.03376504406333 -90.977741763522275,42.697388472764288,163.803603453561664 -90.950639855055172,42.686966211670359,163.734790970571339 -90.898385973821419,42.675801589152798,163.62625346519053 -90.845333735892837,42.664466388294016,163.516092105768621 -90.770916627562954,42.652839760235864,163.373199482448399 -90.721629162476063,42.642155783024315,163.270525583997369 -90.7106237831171,42.637476099681052,163.241385290399194 -90.704090500115441,42.632154385644398,163.217189636081457 -90.647043121685684,42.545502435046949,162.896602767519653 -90.638142327460514,42.52010552693833,162.814204985275865 -90.638342208315777,42.514605737234611,162.799537071958184 -90.642342196915735,42.509705877436197,162.792186632752419 -90.6573421942484,42.493107334789819,162.769454173743725 -90.657942152754075,42.49060742420199,162.763545732945204 -90.657742021589243,42.485007643585092,162.747997244819999 -90.655441849719139,42.479907869566198,162.730663251131773 -90.648141520304137,42.473309215383438,162.701755375601351 -90.625741672952003,42.460309995635335,162.632788945920765 -90.560862431673527,42.432102889168135,162.458739697001874 -90.478687343932108,42.385204720635009,162.207689639180899 -90.476242212927957,42.382884188703599,162.197686694562435 -90.420432665641016,42.32991858540953,161.96923163998872 -90.417940528222189,42.326522748139787,161.95619888510555 -90.417605435448053,42.322727899978808,161.945296083576977 -90.425731014502929,42.294740890632035,161.880703538656235 -90.432139970816422,42.285626167447653,161.865287182852626 -90.432288841643057,42.279645398856282,161.849099626764655 -90.420730027797418,42.255883467556636,161.766571844927967 -90.392510686148057,42.226890945106518,161.644677464850247 -90.37653105426736,42.216229557111284,161.591448376886547 -90.358365397000654,42.206864145193137,161.538504150696099 -90.350563177801604,42.205696286162443,161.523617584258318 -90.317669394594589,42.195020141897807,161.445032080635428 -90.307930815231899,42.191859347688023,161.421766609884799 -90.236316487355239,42.166853198974088,161.245829300954938 -90.212724650491182,42.155432933180748,161.179092425853014 -90.168927870541978,42.123899700778324,161.02664508856833 -90.163619572183478,42.116305062882631,160.997739505022764 -90.162513315122467,42.10582948692759,160.96714205481112 -90.164799004125356,42.089039117625198,160.924144938588142 -90.169751868041459,42.077205521809255,160.89882330596447 -90.167888357403314,42.055970378238726,160.83729413151741 -90.165930100458098,42.046434776646073,160.807976403273642 -90.155613583968588,42.034501370860227,160.759516048245132 -90.152308422696251,42.030868553776855,160.744514803402126 -90.142558733597326,42.010360478605001,160.673124226741493 -90.14200443808069,41.997428994234404,160.636452751234174 -90.152990296788758,41.932434422886345,160.472559456713498 -90.153493830407584,41.930379781123186,160.467607690952718 -90.183361364725926,41.80850695842468,160.173413291573524 -90.189357428501651,41.804600040918984,160.171530378051102 -90.209829279731039,41.798612718541264,160.185590772889555 -90.223652058766973,41.794570024314268,160.195092506706715 -90.24413641017162,41.785203883758449,160.199782529845834 -90.280022892815637,41.768795366229213,160.20803146995604 -90.304172113984521,41.75146876296224,160.196090551093221 -90.311216142734906,41.74475894466363,160.18799418117851 -90.316610080244828,41.73570223981568,160.170869417488575 -90.318430886908033,41.730542575396136,160.159225617535412 -90.33591437722275,41.680999186056624,160.047344131395221 -90.344550914291332,41.649582335660156,159.972627039067447 -90.343038305006459,41.622926419084386,159.895838340744376 -90.399318630913868,41.573676710506803,159.843102904967964 -90.462821144602586,41.524977896873352,159.802879191935062 -90.475721379071871,41.521177893642282,159.81178340408951 -90.500864958349581,41.519499657225815,159.845197431743145 -90.607329049803155,41.495676327352641,159.94009327609092 -90.657231579959443,41.463577015753209,159.926085888408124 -90.738931312737336,41.451571510069705,160.016885849647224 -90.773067156743465,41.452205070640048,160.070703105069697 -90.787677557605804,41.454331807627433,160.098939842544496 -90.84885509003891,41.456461979092047,160.198267366737127 -90.991376051794674,41.433404177608693,160.351721320301294 -91.029187787622178,41.425045055304302,160.386276867240667 -91.041272970886155,41.419965113618019,160.390599420294166 -91.049219999342569,41.412342325254841,160.381472503766418 -91.080082328814157,41.337533825905851,160.219489388167858 -91.081056675911142,41.335172065277533,160.214370525442064 -91.115585157664341,41.25147704822502,160.032774982042611 -91.115046960669986,41.242849406172546,160.007727113552392 -91.051204073770052,41.179484764774301,159.731371144764125 -91.020431053519644,41.166362673328116,159.647086477838457 -91.006897742300467,41.167074808149223,159.628275540657341 -90.999300494254598,41.164017024975962,159.607980250380933 -90.991057150323371,41.157169404366499,159.576015002094209 -90.948018862939193,41.098088339760167,159.343216306529939 -90.950774424754229,41.074168285605545,159.279910456389189 -90.950774079377339,41.074167296536132,159.279907134361565 -90.949914417117839,41.071705447959957,159.271630194969475 -90.946940100890998,41.063187781654129,159.242988797836006 -90.94364345237193,41.03616092919173,159.161516987718642 -90.953621998946275,40.955509121166905,158.948569067753851 -90.96430464661303,40.926420189612834,158.88257357198745 -90.970383670753705,40.920590356490031,158.875416463240981 -90.999889149503375,40.909583454592251,158.889730944298208 -91.010925256513303,40.902028633041354,158.885340113192797 -91.094382597320802,40.822544909978497,158.788730203174055 -91.098942442694565,40.809899378257633,158.759856272488832 -91.098420305860728,40.803937631292285,158.742101770825684 -91.096117154021371,40.799299851008257,158.725349727086723 -91.113327469260454,40.698488825301339,158.465031560510397 -91.113645766413555,40.69768882240313,158.46324485912919 -91.123808173495547,40.672146794536964,158.406180838122964 -91.139442344186321,40.662365013670403,158.402554638683796 -91.186802989176954,40.639524183978821,158.410988441668451 -91.18836802289259,40.638769408186697,158.411268305033445 -91.199294258781137,40.637579326429879,158.42486587446183 -91.219825796492671,40.639908982488471,158.46345436014235 -91.254463611965548,40.63943358560833,158.516009729355574 -91.307914641164729,40.627702431285002,158.565815512090921 -91.341110166382762,40.614959563138193,158.581230998039246 -91.350124302001475,40.611166612866889,158.584474413655698 -91.361264403139984,40.603276808063484,158.579351933673024 -91.406632503216017,40.556114232857389,158.515605042688549 -91.408242394786669,40.54903050987798,158.497893005609512 -91.405516155703864,40.540600895530439,158.469554394483566 -91.385921521735909,40.53242247379012,158.415559438057244 -91.370448774210331,40.514007431169055,158.338734643533826 -91.365600401444368,40.501519012748332,158.295438030734658 -91.365299189681508,40.491598432212257,158.266583383083344 -91.373941564965335,40.402680062266654,158.025352881290019 -91.377133449234364,40.39335941605291,158.003611174412072 -91.389747605282494,40.386409557146933,158.003425613977015 -91.420810203619624,40.379744464906224,158.032973069697618 -91.485896858340865,40.385379445819467,158.151204399764538 -91.492367208278282,40.394962964516033,158.188830522820354 -91.526003358678651,40.412242832604413,158.291123761795461 -91.620881590834642,40.50860663942732,158.715563342906535 -91.623757808612794,40.515834301440876,158.740704630501568 -91.619424114248218,40.535501529027229,158.790009667165577 -91.621467303414093,40.542288219864716,158.81256920658052 -91.697758090042683,40.58961631448669,159.067119927145541 -91.718168788406516,40.599997632696642,159.128701354376972 -91.730515395193578,40.615106850874938,159.191054098308086 -91.787317690570774,40.612954251875756,159.274166312068701 -91.796775905524768,40.61256715327788,159.287932773120701 -91.801535014644813,40.612419101704567,159.294993399642408 -91.815370331880644,40.611991951614222,159.315532331354916 -91.826228580796453,40.61165683379005,159.331655785441399 -91.833883752952843,40.611262757315728,159.342576615512371 -91.869804562729456,40.60952439369526,159.394158120267093 -91.944519738348433,40.607377293669394,159.50573433469981 -91.972393914431962,40.606576269443913,159.547399908304214 -92.00008955094853,40.605896960708712,159.5891506774351 -92.031056263060577,40.605176613693558,159.635968662798405 -92.069312138522974,40.604111192101669,159.693345515988767 -92.070929179060329,40.604235167188889,159.696250960230827 -92.083747467224384,40.603639035889096,159.714807496406138 -92.084608488845589,40.603707022538444,159.716360454447567 -92.094283712340697,40.603544911341331,159.731186352670193 -92.097795789402724,40.603292879074246,159.736020998097956 -92.181190715963155,40.601990915811484,159.864195239730179 -92.197573089764873,40.601530735004076,159.888817136175931 -92.203080216775831,40.601441671457941,159.89728166628629 -92.219014586498588,40.60129348296379,159.92208781465888 -92.237896021815033,40.600992264815545,159.951134849339724 -92.300167454925486,40.599929547776405,160.046804656274617 -92.332619198758692,40.599265178449137,160.096390039660037 -92.332859202444141,40.599174179332621,160.096513235010207 -92.35219064438202,40.598733961096251,160.125939104706049 -92.352221357375129,40.598733148203536,160.125985542312264 -92.381106302861141,40.597968639018568,160.169670544564724 -92.455162003160638,40.596746782400892,160.28386234305799 -92.463026187729909,40.59681368310531,160.296553331427276 -92.483109646603467,40.596399454065633,160.327316798269749 -92.483811661953069,40.596352447425716,160.328300381079316 -92.486005713660816,40.596382419236242,160.331874529831111 -92.581697880545292,40.593608360487458,160.476350550539792 -92.639319191216458,40.592309706492941,160.564517761580646 -92.640644221377627,40.592281691368868,160.566551486030221 -92.688115301153488,40.591265149848766,160.63940748386085 -92.691276376041799,40.591340107768268,160.644663667306304 -92.71602071597674,40.591019996436444,160.683257944881916 -92.743655575631024,40.590662491029988,160.726379886269569 -92.75883092076873,40.590363316580884,160.749778298661113 -92.829486549226871,40.590047458391659,160.861837935633957 -92.829417545974863,40.589969462529851,160.861507696099579 -92.83649970909515,40.589938376430844,160.87274881079793 -92.858817222422019,40.589814106157135,160.908106555230916 -92.86446034892127,40.589629044276606,160.916616077534854 -92.88060472551625,40.589794837905671,160.942924747243524 -92.891222964404733,40.589492719477448,160.959073254838586 -92.904971278144814,40.589313557169511,160.980583916418254 -92.943023154110762,40.589196091794769,161.041211886331439 -92.959175520149003,40.588882905269337,161.066217312589288 -93.086948399816478,40.585854451280518,161.262718193233013 -93.098727662575243,40.585465321725962,161.280546318739653 -93.099938689564411,40.585424308447521,161.282376614399254 -93.262047345698747,40.582246430890969,161.534238062798977 -93.31904164950744,40.582119727727452,161.625735701993108 -93.346879283763172,40.581962388085302,161.670188277028501 -93.375823950667225,40.581782346741818,161.716383809223771 -93.443206474677467,40.581363213961538,161.824010251089931 -93.466737017693831,40.58161091020213,161.86272715870291 -93.468327052046519,40.581518894273543,161.865038907155395 -93.525565367731929,40.581927163111139,161.958734254352748 -93.529048446248325,40.581882121554969,161.964242619462311 -93.529618457774205,40.581813117362678,161.964971359819174 -93.549725917580915,40.581862864303197,161.997645218856633 -93.555428045189601,40.581748797951207,162.006553667597473 -93.558341110166239,40.581680764464558,162.011077743023634 -93.560380155679638,40.581634740956503,162.014249049127102 -93.562240200566649,40.581749712866852,162.017581848427653 -93.566682298402881,40.581588664223105,162.024320872500539 -93.567252309939903,40.581520659984982,162.025053026154637 -93.567631319483993,40.581562653474819,162.025784209370613 -93.598795016513037,40.580941290577677,162.074502349831164 -93.657655332446282,40.579796603438041,162.166669713333249 -93.660716401645729,40.579774566096937,162.171570419333875 -93.663357462271378,40.57979853205719,162.175919223576784 -93.670289617599337,40.579685450159879,162.186841954477131 -93.678543802963702,40.579571351761544,162.19990692846477 -93.691778098613256,40.57931919690094,162.220664552412927 -93.72388882375094,40.579084805027811,162.272104715928435 -93.729800956114943,40.57899073501337,162.281436167657375 -93.738705158377911,40.578985623764808,162.295874014496803 -93.744205282847958,40.578961555925083,162.304734773002565 -93.751669456795511,40.579163453908826,162.317417103797197 -93.771677909035844,40.579058207790361,162.349611746147275 -93.775791272626307,40.579027526633205,162.356206340715289 -93.816932929109427,40.578720655053907,162.422189215198159 -93.820172998488232,40.578528622583349,162.426918134093285 -93.842378495849402,40.578233356710335,162.462188960053027 -93.855104780450446,40.578048204968333,162.482364440336823 -93.899776780057181,40.577452669772093,162.553370190784335 -93.900766800995569,40.57738366027467,162.554788463748991 -93.902326834867551,40.577315643580853,162.557137168943882 -93.915411126865095,40.577113487922503,162.577867830172181 -93.937137611414443,40.576771229659748,162.612282627262175 -93.937767624682706,40.57672522370062,162.613179967738688 -93.938547645298627,40.576862208092145,162.614832727238536 -93.940077676974141,40.576725194692486,162.616941428743303 -93.941307702829647,40.576633183150314,162.618687372654676 -93.965314236636445,40.576194900214539,162.656562930904329 -93.978217525960318,40.576075743153218,162.6772520262748 -94.01694438599776,40.575354287019188,162.73835675790906 -94.035586800152217,40.575025066577624,162.767835962586105 -94.081676826154435,40.574338515886652,162.841112504713237 -94.081916831571959,40.574338512866248,162.841504191048443 -94.090648026626241,40.574245406929521,162.855494922026992 -94.092539071273293,40.57433637926222,162.858835402876139 -94.233697275680726,40.573345014650897,163.086736707948148 -94.288808462210085,40.572957963620794,163.17585280444473 -94.296271626062733,40.572777877050818,163.187571339309216 -94.312182987617504,40.572960668343292,163.214138070121408 -94.326224302058236,40.572913492992022,163.237007175572217 -94.338015566857464,40.572911344116548,163.2563197882846 -94.338165569726542,40.572888343199836,163.256501543335617 -94.35976705281945,40.572799074021688,163.291653748601675 -94.43118664794801,40.57247618459818,163.40788240917027 -94.461550326350078,40.572381804341653,163.457454955205321 -94.47211056036052,40.572264675639673,163.474466923624277 -94.472675572906965,40.572259668699374,163.475380714982748 -94.490742974940943,40.572141444954646,163.50472167879343 -94.535341973769235,40.572172878609521,163.578083177097142 -94.538522045428806,40.572196837287223,163.583376379683614 -94.539782073613722,40.572196821318727,163.585447329096496 -94.543292153127737,40.572242774874034,163.591344434767962 -94.543618160419427,40.572242770742236,163.591880289837718 -94.595466322907228,40.572399106669216,163.677572144195437 -94.633498177148184,40.57261861475471,163.740762849338353 -94.633501299721729,40.572618651823682,163.740768094547093 -94.684068318759799,40.573218947076654,163.825697761029005 -94.716393048548667,40.57363251875416,163.880104180425406 -94.718133087333129,40.573632496641892,163.882971770130098 -94.775457381275658,40.574407734744689,163.979636521078646 -94.812658221339561,40.574962237764389,164.042552771046758 -94.821448420863362,40.57514411812253,164.057565133087337 -94.825228509933055,40.575372060279378,164.064436531625688 -94.898273150818866,40.576167095993775,164.187279613688588 -94.902923257135839,40.576306030800566,164.195348976179957 -94.916368559864708,40.576496851278534,164.218099515885115 -94.956607466037553,40.577097312538193,164.28629445284605 -94.967964721680474,40.577267160406841,164.305550277233124 -95.070397013975068,40.578306808186753,164.477999991737306 -95.081218256242678,40.578433664486319,164.496280068531632 -95.099083655032658,40.578594429272265,164.526331342756748 -95.108689866356215,40.578542308693343,164.542110058479011 -95.111779935659996,40.578586267307479,164.547354015521705 -95.112139944632773,40.578632260739049,164.548077964223921 -95.113698979592456,40.578654239866282,164.550723251886666 -95.122306173977748,40.578839121906817,164.565504154190421 -95.155976928000854,40.579285672141125,164.622578349895775 -95.165536142641145,40.579442543124145,164.638870000839233 -95.203743465975663,40.579952796667996,164.703685670159757 -95.212887202071812,40.580074909963415,164.719202503561974 -95.213069206176584,40.580078907461896,164.719515709206462 -95.214194231555098,40.580103891987157,164.7214525192976 -95.21480624528148,40.580113883722717,164.722496212460101 -95.218934337919194,40.580183827867366,164.729543306864798 -95.220262367708216,40.580205809919882,164.731809047050774 -95.223004429225583,40.580251772836945,164.73648897651583 -95.337069966136923,40.581294266121056,164.928927560336888 -95.359284460098579,40.581522971290632,164.966512902639806 -95.375375822960606,40.581923747603724,164.994394120760262 -95.375405843759935,40.581924118178506,164.994445100426674 -95.416889747061433,40.582436192599076,165.064915011636913 -95.470803942950127,40.582961477313091,165.156176103278995 -95.52687818544139,40.583510732642978,165.251176036894321 -95.528168214747339,40.583556714075748,165.2534542940557 -95.534668359772908,40.58366962560266,165.264607401564717 -95.556445845548694,40.584049329068982,165.301984941586852 -95.57553327116787,40.584383069046957,165.334757257252932 -95.612557093714145,40.584914569441978,165.398031462915242 -95.64332878347733,40.585653141276588,165.451461980119348 -95.688931783870814,40.585798547086632,165.528075963258743 -95.688989785160672,40.585799546295739,165.528175676241517 -95.747934084940582,40.586352762019168,165.628282182849944 -95.767136510092087,40.586625502409774,165.661166322417557 -95.75463940689518,40.594257336481313,165.661218971945345 -95.751544432919545,40.598469195864247,165.667610208503902 -95.750117541847189,40.604771944118717,165.682533665560186 -95.777744126781229,40.648877698034433,165.849773007445037 -95.788061570315534,40.658667145661184,165.893864790908992 -95.796982879542213,40.663797810728276,165.922846117988229 -95.824407586496989,40.668653248085519,165.982023863121867 -95.844296249475391,40.678908551869533,166.043384621851146 -95.88467502693257,40.718989315191813,166.22059527784586 -95.890404471807614,40.733264631134332,166.269193242304027 -95.888187653198884,40.743510222465297,166.293473246507347 -95.883026731495178,40.752019926247065,166.308081991970539 -95.873778703294661,40.759757716127545,166.313746410422027 -95.863192573672052,40.764279660628901,166.308395161293447 -95.855669571709001,40.785419435389876,166.353523708879948 -95.822692249198695,40.878086343361836,166.551024296320975 -95.824622550517972,40.902327523493248,166.620202190242708 -95.830575661166094,40.977088043980629,166.833232176490128 -95.836935993282736,40.985583601662647,166.866875376552343 -95.868789086710947,41.002997449925289,166.96714964043349 -95.868750042654526,41.045067672739052,167.081048450432718 -95.867792842059274,41.053127722867963,167.101272642612457 -95.85490231448567,41.161671703043133,167.373156137764454 -95.854294504875341,41.166789733598328,167.385954154655337 -95.916098313734352,41.186488096846119,167.541762829758227 -95.924698637908108,41.192387736315702,167.571953179314733 -95.924727341281098,41.1924359116638,167.572130667977035 -95.927498807269671,41.197087502194655,167.589266948401928 -95.928999989493661,41.203587209524372,167.609266333281994 -95.92640013918917,41.212586865696743,167.629176747053862 -95.90400007837529,41.274784551279303,167.759281675331295 -95.915301406688585,41.321581444612136,167.903712679632008 -95.927201714625511,41.32358120471315,167.92881992738694 -95.940803168574263,41.330280745933415,167.969358615577221 -95.954603726389976,41.341279104846244,168.021749859675765 -95.958203935135117,41.346878823511325,168.042734694667161 -95.958304022984748,41.350578667604658,168.052817554213107 -95.939823431023612,41.393543368213308,168.1372603867203 -95.938859642873908,41.395784036300768,168.141661461442709 -95.932219413618327,41.435273477960713,168.236315040849149 -95.982836682859286,41.508213232964181,168.514917599968612 -95.996301977481465,41.52761679347288,168.588938759639859 -96.032111790551525,41.528666277082749,168.651031397283077 -96.038121496319889,41.510421955614909,168.612372258678079 -96.042219540429429,41.508450983415798,168.61390929762274 -96.048225672766904,41.508459903738277,168.623885925859213 -96.056614915532663,41.510951689389351,168.644429654814303 -96.091234196131694,41.533151309617828,168.760937323793769 -96.095610467663647,41.540637940842487,168.788118864409626 -96.119627738010436,41.614864544772949,169.025216068141162 -96.117755886860678,41.622943235028451,169.043561615049839 -96.099250904546253,41.641001732790507,169.060850626789033 -96.096569027547474,41.648733448501794,169.076924905180931 -96.096938162182653,41.654104221504028,169.091781876981258 -96.10136045500866,41.662397819997523,169.121092899702489 -96.123250449132513,41.684106632625813,169.214846769347787 -96.098319276197756,41.700047305035966,169.215837066061795 -96.078612236677188,41.716768876419032,169.227543158456683 -96.066062796470092,41.794364846954998,169.412050780840218 -96.067295946375111,41.799536617896734,169.427748240530491 -96.072533215441695,41.806001282526758,169.453464983031154 -96.079172460934046,41.810166023103889,169.475418283604085 -96.087933715576696,41.812741800792324,169.496677026152611 -96.112434718413624,41.832178676328176,169.588403802365065 -96.141083378245966,41.867188957143753,169.727970343083143 -96.146012436640419,41.87321254486988,169.751970016397536 -96.163286532947652,41.903177086030695,169.859345958568156 -96.163518627222686,41.906909929960548,169.869548828341067 -96.160628670992551,41.911413783939935,169.876628502272069 -96.143795426323166,41.916735790301416,169.862864742055535 -96.138273434453851,41.922182640834912,169.868085835129023 -96.130717327290625,41.966490928791835,169.97209039144218 -96.131036490905544,41.973027657358543,169.989784413948655 -96.223264838584228,42.02755619871872,170.284759239293635 -96.253249844270769,42.041822215559115,170.371535548008978 -96.274413474555431,42.04858765633076,170.42412920948118 -96.280616257446098,42.075374481217935,170.504411398433149 -96.308960253448859,42.132052793994042,170.699138018302619 -96.345661824671453,42.163435025720027,170.841422294266522 -96.351229189140184,42.173386546690438,170.876518920063972 -96.361412349716389,42.211886847249879,170.993508506566286 -96.358207909291608,42.216418323884739,171.000020573846996 -96.358133390083538,42.216523703298144,171.000172004103661 -96.337865033117822,42.220263824166388,170.976539767347276 -96.325265021327169,42.231228549173515,170.984328443184495 -96.324410093694695,42.234978408740439,170.992674452252686 -96.330447741104351,42.256074473223471,171.057448597624898 -96.350358117021301,42.283363500342205,171.161073109135032 -96.376852320858291,42.319676276518656,171.298843956552446 -96.385714701317326,42.327210852749218,171.332945225760341 -96.409544510859192,42.338744065729223,171.402008420787752 -96.415441787943493,42.344728744583307,171.427205416373909 -96.419333071504497,42.352784366960726,171.454462005756795 -96.417057220432227,42.401627428540486,171.577082376927137 -96.415157365243317,42.409227148149093,171.593606293201447 -96.389156394622603,42.433826509409464,171.614480089396238 -96.382255583922372,42.447726043752361,171.639057845808566 -96.382855974198861,42.463025420832032,171.679544981569052 -96.386956346190274,42.474424907550457,171.715691206045449 -96.39765685487049,42.485425321214002,171.761620790697634 -96.410958236153732,42.488925000836311,171.79246414359659 -96.44495903650521,42.490824464559019,171.853148407302797 -96.467804950984316,42.499030992406233,171.911793129518628 -96.478498866129371,42.51000522426876,171.957613566890359 -96.482860944619119,42.51788420599641,171.985060433857143 -96.481461703246552,42.525522578048118,172.002426688559353 -96.479261936886303,42.536922150822747,172.028153988532722 -96.478505427888734,42.557405340377358,172.07960222940892 -96.481238390210393,42.562564242813586,172.097349761985242 -96.517894148996717,42.631757831908388,172.335134634748101 -96.543923481471282,42.662057268471017,172.455463130958378 -96.576857759062364,42.683984945758333,172.565589034929872 -96.603548719630481,42.69874799380927,172.6471102302894 -96.607699742300952,42.6959800476289,172.646836876869202 -96.612534851630329,42.696069978200271,172.654994484037161 -96.632177565183355,42.707198267030613,172.715654251165688 -96.641265548317719,42.738387900770228,172.810232113115489 -96.634730188288486,42.76964074649981,172.879286158829927 -96.633704229330064,42.772178659593557,172.88407969288528 -96.57937546406356,42.829416128280315,172.941081643104553 -96.564620210588288,42.832365212685417,172.924469146877527 -96.553654093001114,42.837371163868816,172.919298065826297 -96.551075113414129,42.840457076756621,172.922945602796972 -96.543022401572969,42.858995452281427,172.957009457051754 -96.524827581173014,42.910370738488027,173.058048601262271 -96.512312908503148,42.945707444275257,173.127461347728968 -96.511043557118924,42.972431407825951,173.193267797119915 -96.514677078856565,43.029187123795545,173.343159380368888 -96.4675829011437,43.063541418409542,173.353558275848627 -96.456673419889071,43.084672141865013,173.389331017620862 -96.440901621225777,43.115220757046636,173.441014385782182 -96.438155736462605,43.12214652339884,173.454074056819081 -96.477141173541128,43.222354072322972,173.770407704636455 -96.486834470948878,43.225482817211869,173.794022780843079 -96.558698079364959,43.225490829840041,173.910715485922992 -96.574062304681135,43.250476104876334,173.998566742986441 -96.585697812875566,43.269397746382694,174.065056307241321 -96.587891022147488,43.275615473959284,174.08425020519644 -96.570684184178134,43.29683088468645,174.109642224386334 -96.553502733524127,43.294270220769036,174.075328847393394 -96.531965433231562,43.301330242361921,174.058139299973845 -96.527137645746492,43.313762825262756,174.081555474549532 -96.522839164714327,43.376271457159163,174.231513333506882 -96.523272483016868,43.388189989083791,174.262103015556931 -96.525619739417493,43.396054651934378,174.285619540140033 -96.530727931076541,43.39902746635078,174.301341109909117 -96.532734921040841,43.396902521034264,174.29926497861743 -96.539036052973486,43.396538448307474,174.308555699884892 -96.559162803773333,43.408083723515382,174.370075917802751 -96.595832336422717,43.435443158185954,174.497952471487224 -96.604438965009763,43.452196391106483,174.553791088052094 -96.601618062356323,43.458369191312023,174.564655968919396 -96.58564901061456,43.470144956571147,174.568241158500314 -96.588730492291575,43.485985301978587,174.612810057587922 -96.60050816740916,43.501744530710965,174.671224370598793 -96.592792995732125,43.501801635125005,174.65888496208936 -96.454625887210483,43.501704546265437,174.435340574011207 -96.352633586450409,43.501623954961218,174.27058385219425 -96.333636159879504,43.50170621337405,174.240165747702122 -96.210385373740365,43.501683909590589,174.041631178930402 -96.200337144277313,43.501605050711333,174.025267641991377 -96.200055138490555,43.50162805370072,174.024871655739844 -96.054730376636726,43.501471090639328,173.790938495658338 -95.862715466156686,43.50126369182609,173.482598242349923 -95.862509165157604,43.501263694646923,173.482267990708351 -95.835983856619606,43.501264057268479,173.439813842065632 -95.822839556751276,43.501263236947679,173.418779766187072 -95.743129734775636,43.501190328429473,173.291139983572066 -95.742373717575802,43.501193338633577,173.289939406327903 -95.516329538915357,43.501167420003611,172.9292421201244 -95.488357906271006,43.501548785852926,172.885662894695997 -95.488291905473233,43.501576785677351,172.885628549382091 -95.476619638850963,43.50163794205254,172.867201465182006 -95.456260176755805,43.501866210087464,172.835374902933836 -95.456260178936077,43.501951206830547,172.835589699447155 -95.455987198681015,43.50194735939381,172.835145580582321 -95.435846702167041,43.501663495287517,172.802383035421371 -95.435752698825581,43.501617498327199,172.802117228507996 -95.389403630458105,43.501544130738715,172.728222849778831 -95.389364629560276,43.501544131268297,172.728160848841071 -95.389339721580754,43.501544294432776,172.728121664375067 -95.376821342871025,43.50162629843355,172.708429792895913 -95.376289330415659,43.501618305962623,172.707563973963261 -95.252518480595313,43.501769979002006,172.511402131058276 -95.252311474333325,43.501711984026606,172.510926840826869 -95.216486659245604,43.50219145103776,172.455320144072175 -95.181970858730878,43.502080922644531,172.400324012152851 -95.169438571799375,43.502192088032814,172.380745964124799 -95.168841555081883,43.502078100473021,172.379511051811278 -95.124179521401246,43.502062705353659,172.308727335184813 -95.116420339548199,43.501974813657178,172.296218707226217 -95.0558339410602,43.502168625261554,172.200828201137483 -95.055048920544507,43.50207763934602,172.199355536140501 -95.035544469442968,43.502119901232795,172.168614554218948 -95.015789012823447,43.502181165706325,172.137534078210592 -94.996003544878448,43.501832446169466,172.105374475009739 -94.97590207792453,43.501817718056181,172.073572785593569 -94.956019615205378,43.501776987899134,172.042060549370944 -94.936167154627014,43.501800254812679,172.010767647065222 -94.916496696490583,43.50176052159798,171.979611340910196 -94.916446695328375,43.501760522272157,171.979532411321998 -94.916175244574504,43.501760525932134,171.979103925637901 -94.916064686449147,43.501760527422803,171.978929408825934 -94.888832054611782,43.501812892539711,171.936083630658686 -94.875775752327002,43.501868066388802,171.915624557062984 -94.874265717377128,43.501875086468814,171.91326023824513 -94.861732425316703,43.501857256020045,171.893445018678904 -94.859407372967468,43.501926284708851,171.889953440986574 -94.856095387123247,43.501925357489775,171.884727604687214 -94.617450727045011,43.501858540970048,171.508869305253029 -94.567198545961531,43.501645223356242,171.429388916119933 -94.562371434157271,43.501692286303573,171.421929660253227 -94.471951314643661,43.501656499483225,171.279968528077006 -94.448578773949492,43.501955801056354,171.244093009270728 -94.444378531672413,43.501900030317636,171.237367539666593 -94.444365673680878,43.501899859589471,171.237346955575049 -94.392126444403459,43.50178656295784,171.155218152329326 -94.378995133654129,43.501696742008349,171.134427064098418 -94.249491462547169,43.501652013877106,170.931752248667181 -94.111402827554784,43.501604316854504,170.716087155975401 -94.10959078518232,43.501621340341288,170.713305414654315 -94.095861460902,43.501623523088732,170.691906645894051 -94.094416426760588,43.501623542328943,170.689654115587473 -93.972281078663698,43.500928202312345,170.497663058340549 -93.972279520089472,43.500928193439101,170.497660612687469 -93.797308366978157,43.500845518700039,170.225584995001554 -93.795800331690529,43.50086753785142,170.22330170031637 -93.717730475484998,43.500889571041796,170.102299530990422 -93.710284298271134,43.500890669557641,170.090763719752431 -93.706429206599552,43.500894720425521,170.084800804033875 -93.700858074164913,43.500902793847011,170.076189923100173 -93.650044904654919,43.500886161368918,169.997454525902867 -93.618642114452285,43.500875882146104,169.948827135376632 -93.578238149882267,43.500848416998792,169.886260095052421 -93.560140717933621,43.500849655942581,169.858283353038132 -93.533687085011849,43.500801007001812,169.817273162305355 -93.529990996700391,43.500800055818658,169.811559662222862 -93.498913253740682,43.500785466420915,169.763515179045498 -93.498858202239319,43.500785232361871,169.763429556973279 -93.489769034189308,43.5007465885055,169.749294045381248 -93.483516886335266,43.50081166849948,169.73980818502605 -93.474311664190751,43.500729792985766,169.725385442376137 -93.470070564585868,43.500802846142733,169.719026832841337 -93.430015606432988,43.500808373892724,169.657229970209301 -93.400540900981994,43.500815761901073,169.611790026538074 -93.273302847129969,43.50068844080527,169.415465712547302 -93.230362821160597,43.5008999970145,169.349958089180291 -93.050689494013355,43.500906747688717,169.074078185483813 -93.025925900183822,43.500907677571618,169.036117285490036 -93.025844536433567,43.500907835870642,169.035992986522615 -93.009367501553712,43.50093989310642,169.010824679397047 -92.871770176228395,43.500885694065452,168.800075892359018 -92.791808241095765,43.500905736874046,168.677952428348362 -92.753578327371486,43.501423215834876,168.620940065011382 -92.708801241049812,43.50140879980362,168.55259913392365 -92.694274888407733,43.501402989203008,168.530436066910625 -92.690521797295588,43.501402038109063,168.524712199345231 -92.674068397723957,43.501395252574326,168.499616340734065 -92.654805929856593,43.501390503461629,168.470252742059529 -92.650681829665928,43.501389557163776,168.463967370800674 -92.554646501135664,43.501641796352004,168.318437111563981 -92.554613541964073,43.50164181350857,168.318387023173273 -92.465988343183582,43.501687945636519,168.183804906904697 -92.450430778166819,43.501763313604719,168.160375355742872 -92.410313992132714,43.50195765744639,168.099987989291549 -92.407611922831222,43.50181969765287,168.095528475940228 -92.389779487836279,43.50182692847013,168.068493390455842 -92.370389013777526,43.501798180752694,168.039009825326502 -92.280562818337813,43.50178134402946,167.902853280305862 -92.278903778495334,43.501811364359341,167.900419575162232 -92.20026485531163,43.501873378432094,167.78158996719867 -92.18033937172936,43.502059628767604,167.751950975507498 -92.105360533904076,43.502082595450538,167.638740074820817 -92.091444191178809,43.502031776803669,167.617599314078689 -92.081427944442751,43.501994907317084,167.602385533973575 -92.081275908560769,43.501994719937819,167.602155596017838 -91.951349743820359,43.501834588350306,167.40586943179369 -91.94330754760837,43.501903689201164,167.393940397538245 -91.826315668773134,43.502035187474476,167.218303933739662 -91.808623231531058,43.501999415882828,167.191627074964345 -91.806392178140484,43.50206744196506,167.188453719951212 -91.780756547689023,43.502154767578212,167.150180251337588 -91.779154505922321,43.502062791569152,167.147533589042723 -91.762880102398185,43.501989003037636,167.122906741686165 -91.739911532509623,43.501877301674334,167.088141575455666 -91.738023486747025,43.50191332452583,167.085402962751687 -91.734795408511687,43.501975363577529,167.080722032114863 -91.731824336499315,43.502032399520601,167.076413847506046 -91.731682755849775,43.502031927994523,167.076200192794204 -91.702213602452005,43.501933782599501,167.031739822588861 -91.672335862162058,43.501866167746272,166.986768987961113 -91.659864554208028,43.501886326643763,166.968131273053586 -91.652859379019461,43.501807419257261,166.957427335903049 -91.646387220715482,43.501882499279354,166.947927327826619 -91.641235094305671,43.501926563561476,166.94032446295023 -91.637088989059478,43.501816620725599,166.933824988082051 -91.635957960492831,43.501792636094237,166.932067817077041 -91.635706955247414,43.501832637809791,166.931796831078827 -91.62707374758665,43.502080738984645,166.919517209753394 -91.622247626931795,43.502030802590667,166.912158352322876 -91.618869543558503,43.5020408454265,166.907125934027135 -91.61835753030536,43.502016852872998,166.906296212226152 -91.616755487921878,43.501903877589505,166.903600625693798 -91.612357378565207,43.501883934588648,166.896962612867355 -91.61229396557124,43.501883954593247,166.89686771761626 -91.5925348879029,43.501890187839606,166.867303259670734 -91.552481895724711,43.501893699635701,166.807380528189242 -91.542680652226863,43.501869825747278,166.79265824239701 -91.535266469526078,43.501914918770503,166.781689060851932 -91.492501412103579,43.502045459940405,166.718105767853558 -91.466521765447808,43.50196379452084,166.679078721441329 -91.462861675417642,43.50199783994394,166.673701602965593 -91.447390290030214,43.501944039303851,166.650456195697188 -91.443244183472459,43.501794097782934,166.643871410749853 -91.37840657362166,43.50183892253883,166.547237911261618 -91.373064451940934,43.502301973300199,166.540489574894309 -91.370781392341527,43.50218400678591,166.536774636246264 -91.219158610776446,43.501908945844548,166.31024535279721 -91.20700045137832,43.424310999350325,166.08743897639215 -91.211682354699633,43.373427846080162,165.959936508908868 -91.108682403095585,43.315012342085069,165.651813452132046 -91.087096349891567,43.293238433050917,165.561916191130877 -91.05936079644286,43.256736156306857,165.423694456927478 -91.064004624102751,43.244535557157391,165.398191821761429 -91.147642565054809,43.153777928182471,165.281564619392157 -91.157642590760631,43.144318159997404,165.271322127431631 -91.176695868726554,43.136038233150792,165.277757735922933 -91.179693715478521,43.126355562003873,165.256455294787884 -91.17866363996059,43.081622270796132,165.135699906386435 -91.179528234822797,43.063419950827971,165.088442937470973 -91.176607676114813,43.042643776842318,165.02862352039665 -91.164503195271564,42.988160226726052,164.864927522838116 + + + Kentucky + + + Kentucky + 0400000US21 + 21 + 39486.338000000003376 + + -89.5403729426409,36.499876176440772,143.202936792746186 -89.561617880920593,36.527109664801834,143.325250452384353 -89.571345417146716,36.54605966735955,143.402225069701672 -89.57278358478888,36.554241266357273,143.43102843593806 -89.568091667363404,36.565887767735745,143.461238515563309 -89.553914551735815,36.578849308820175,143.480528912506998 -89.54738744659987,36.581660246248283,143.479192635975778 -89.528857035890496,36.582818389811536,143.453323661349714 -89.501349318202031,36.577976911661651,143.393699058331549 -89.486108890927454,36.573493285511447,143.354836786165833 -89.480365698318934,36.569878517021024,143.333956366404891 -89.474613428878044,36.561590968672945,143.297920453362167 -89.469033085121453,36.548520643857067,143.246649350039661 -89.466716856365437,36.537837171940652,143.208313793875277 -89.46715976485244,36.531620460202987,143.188861485570669 -89.473731652125252,36.515416154083063,143.14679750893265 -89.486377682924712,36.499367776267825,143.114930734038353 -89.493808856572713,36.499450693139273,143.127079741097987 -89.499307985887313,36.499562629229899,143.136235265061259 -89.5403729426409,36.499876176440772,143.202936792746186-82.605359288229849,38.24896969998747,138.609939231537282 -82.645868088163795,38.16715684739075,138.400461963377893 -82.637594445342756,38.139531123468849,138.299822005443275 -82.622291818904841,38.124910904074795,138.231697753071785 -82.6037452571789,38.120022294002901,138.190683165565133 -82.601254177050293,38.119061359562906,138.184188743121922 -82.548408927087038,38.062769308265715,137.92993894033134 -82.540263376823958,38.040769341758768,137.847462915815413 -82.520788399351119,38.010215856026846,137.721770385280252 -82.510935029750527,38.002927267134261,137.684708339162171 -82.48885440608997,38.000008604883135,137.645271299406886 -82.466594615750893,37.986459406665247,137.571022180840373 -82.465217543961643,37.984116521737533,137.561532798223197 -82.466108482452142,37.978538755965921,137.544590796343982 -82.498421852921012,37.94718781305783,137.486367673613131 -82.498479982347945,37.947018495557174,137.485895235091448 -82.501507797162887,37.938199175335797,137.461284453049302 -82.475786726380136,37.912070559601752,137.341240502893925 -82.41879763112361,37.872342835257299,137.134347756393254 -82.401352326527544,37.85351878508687,137.049234306439757 -82.330981901707844,37.777586810107863,136.705579023808241 -82.320137362293124,37.760582657153776,136.63520744536072 -82.32751794947913,37.742506730343393,136.585995882749557 -82.326853192019897,37.737490605299442,136.568658095784485 -82.308348286167899,37.709362013370068,136.451358468271792 -82.298123713501553,37.688967004685892,136.370589687488973 -82.251391049464587,37.659471740166289,136.210421314463019 -82.220780028260279,37.644742675314752,136.12056836951524 -82.142921275523705,37.59675151636619,135.857351003214717 -82.12670761321796,37.580721373602195,135.782639073207974 -82.12699854700314,37.575731590443148,135.766595657914877 -82.117690089485009,37.561289313367588,135.70642202347517 -82.049624884695447,37.532781205762802,135.520439732819796 -82.009376862812843,37.535060481429241,135.473633711226285 -82.000946777466766,37.544282154119649,135.492689721286297 -81.999279741136505,37.544785147544907,135.492100947536528 -81.96939887922251,37.539501659083641,135.434381461702287 -82.293015020692721,37.313352634304152,135.125031102448702 -82.306981035117957,37.302811201752874,135.109127125702798 -82.311900637709996,37.299097926299453,135.10352536290884 -82.352055905025949,37.268789062275474,135.057811797596514 -82.511937341864808,37.219803745237414,135.11403791140765 -82.55466112113379,37.202580275076642,135.115498939529061 -82.56644143330675,37.197831213570474,135.115912296809256 -82.566487664733074,37.197805450479983,135.11589027941227 -82.625991489443905,37.164646135872822,135.087600028142333 -82.7230561609679,37.107404783657906,135.031175319105387 -82.721711776727872,37.083549864838169,134.950014315545559 -82.723586287802974,37.046819494019736,134.830395992845297 -82.772910131348993,37.017435349566128,134.800723734311759 -82.778483268716258,37.016998316822111,134.806976404972374 -82.790012462027278,37.009879528233782,134.79921733867377 -82.790207464644823,37.009714533813352,134.79893762152642 -82.791577489276818,37.008982553821383,134.798395339399576 -82.792005492963696,37.008479572395878,134.79731229506433 -82.80164675885527,37.009663428580403,134.814597878605127 -82.816864140221981,37.008915319107125,134.833171838894486 -82.819122183294937,37.00788034437565,134.832851561717689 -82.831704431318144,37.002664460428875,134.832905535586178 -82.830241343852677,36.999260627177748,134.819541831500828 -82.831918327198082,36.995164795516786,134.808221558108926 -82.834959384042463,36.993692833088446,134.807531059719622 -82.837124393993847,36.990556953712158,134.800083868205547 -82.839665433009529,36.988747011193929,134.797574828378856 -82.841167472962198,36.98883299320098,134.799942614510655 -82.852513727006368,36.986217004109804,134.806952050887048 -82.853730765164755,36.986682971706031,134.810191401280463 -82.864042957844461,36.981695099015091,134.807869910262525 -82.866025994805867,36.980730123761624,134.807404498569667 -82.867136012602884,36.979992146512792,134.806484907865524 -82.867806026640295,36.979772150104537,134.806681021116674 -82.868652040620006,36.979238166164464,134.806075050495565 -82.869572049153106,36.978201204154885,134.803895818069577 -82.870299703315609,36.975903345935713,134.797248376533389 -82.870300034298452,36.975902300725309,134.797245352528989 -82.87139094273472,36.967713658901872,134.771469863131642 -82.871346934370692,36.96721868158987,134.769759135320783 -82.868474826600519,36.964902812824469,134.758056649006903 -82.866520701846383,36.959805060633798,134.738353574648499 -82.865327669658527,36.959704076398715,134.736362176015973 -82.863982631848785,36.959486098858527,134.733769977465272 -82.861650546262453,36.95773619955154,134.724701748229563 -82.859559463541345,36.955757308287502,134.715204051695764 -82.856821389721816,36.955529344291683,134.710646716877818 -82.857215380352727,36.954192400768932,134.706735463812947 -82.861749400311353,36.947561656660938,134.690913767553866 -82.862398402543661,36.946569695223694,134.688506033271551 -82.862800332187774,36.94103794054238,134.670614847913384 -82.861653275287708,36.939161035850908,134.662763378582895 -82.859900166382303,36.934787249319271,134.645741769112647 -82.859577152994746,36.934439268028662,134.644132827408612 -82.8630591189699,36.925958617350211,134.620670041069388 -82.864584130112263,36.92403068988579,134.616353260353208 -82.873252224138071,36.915179007335766,134.59884475171566 -82.87489324949631,36.914022044063458,134.597261426970363 -82.886734196590396,36.902138553352835,134.574036742560565 -82.91280667019582,36.875972403987987,134.522889187559485 -82.912940673566894,36.875967402954558,134.523058754391968 -82.974513034615498,36.86082150793424,134.558126998133957 -83.07371051389454,36.856312777541092,134.681342977099121 -83.100912777746672,36.826613864054217,134.62013409473002 -83.132814962168595,36.783214528258583,134.519666776992381 -83.13236574129435,36.768832184256546,134.470933371223509 -83.126775515344463,36.763134495187984,134.444050279445946 -83.126848515306932,36.763003500438906,134.443714099004865 -83.12895341722367,36.752555954316783,134.411697310395539 -83.137515523737846,36.744816224724339,134.39777353964746 -83.168517259838609,36.740915109694612,134.428122474811971 -83.200820060821471,36.739214882381781,134.467694874852896 -83.34392918651325,36.703014175744002,134.547507986426353 -83.354738395210759,36.69842728212565,134.54736458696425 -83.355731412564353,36.697881297565601,134.546934516169131 -83.461935661224274,36.666613715622795,134.591940556652844 -83.462140968471871,36.666644615392741,134.592333786189556 -83.499139689318355,36.672213108197909,134.663215142674744 -83.528341366048494,36.667712036353301,134.689411354251206 -83.650644751039508,36.618412123576356,134.697523217648268 -83.676545175842534,36.602543602069261,134.681120347231627 -83.678246157126182,36.598311779197367,134.669357724487782 -83.691846297266636,36.584311289667291,134.64175568241626 -83.931807393648285,36.589977156277484,135.002428134903312 -83.988751988616499,36.591321707748612,135.088278637267649 -83.98898191353851,36.591327136636309,135.088625478558242 -84.228441114366504,36.593409412940183,135.43879774119705 -84.262479837694528,36.593705404033464,135.488719560205936 -84.779615431755857,36.604941204737791,136.274032988585532 -84.786501134654884,36.605090809964686,136.284544551745057 -84.786559364317853,36.605093200447442,136.28463719598949 -84.860921037098521,36.608145944575064,136.403029936365783 -84.860900037579881,36.608212941702661,136.403222269378603 -84.976053412016697,36.616043697628051,136.597200189717114 -85.08758291341978,36.623628017224036,136.785430337302387 -85.097296163475207,36.624197895809822,136.801539049483836 -85.277456731373732,36.628223829852374,137.079101482406259 -85.277461697046519,36.628223940817001,137.07910914812237 -85.297163208625634,36.627200506340358,137.104665952734649 -85.437594579742708,36.619905515260243,137.287202131003141 -85.472515372312955,36.618091483577587,137.33269333280623 -85.509783272664578,36.616731177852124,137.383194007910788 -85.552662342514438,36.617437721099208,137.448880738578737 -85.553196356537768,36.617492713279951,137.449852204881608 -85.789798266649413,36.623553265705603,137.820460733026266 -85.789830282165724,36.623554085781493,137.820510992780328 -85.977611237023169,36.630106100434503,138.121590688824654 -86.033961410189278,36.632072257709659,138.212141674943268 -86.034330419946428,36.632118251895996,138.212844341993332 -86.039557554143556,36.632509181571166,138.221937520429492 -86.081858639398874,36.63564461352879,138.295459289103746 -86.083136669300757,36.63555260498272,138.297064816579223 -86.198768585743338,36.641066191276551,138.488209030590951 -86.206054769836385,36.641444100687274,138.500366765074432 -86.206664051987801,36.641486381874756,138.501418710686266 -86.217379058990232,36.642229950698386,138.519920193590224 -86.217606065593799,36.642297945278031,138.520484508015215 -86.220277134464808,36.642526907881191,138.525240931659937 -86.223347210587647,36.642593873959804,138.530061010271311 -86.334250042950558,36.650479394592658,138.722383556887507 -86.412588450969466,36.65225003840375,138.84592376369983 -86.469699394776399,36.653540887670523,138.936102659441531 -86.473392483564012,36.653462853996722,138.941405675373971 -86.474615512015305,36.653375845672912,138.942960575222969 -86.474699513984589,36.653370845056081,138.94307058583945 -86.565347438101355,36.635171771230013,139.019775064662099 -86.565456681608367,36.635221589455689,139.020103894174099 -86.606247723552855,36.653823494266824,139.142882024869323 -86.607599756154144,36.653805481413876,139.144863822497427 -86.760129413113901,36.650715078101967,139.365324785932899 -86.764504331096418,36.650604207293988,139.371585763059556 -86.814247704189299,36.649343591856649,139.442816013470292 -86.817396781703451,36.649418556375245,139.44783652946353 -86.819615834196526,36.649335537664818,139.450928121805191 -86.834366184997705,36.64890640758567,139.471885522827506 -86.855479691496981,36.648580207972408,139.502841973677278 -86.907235935786133,36.64799770822065,139.57949797436595 -86.907795948605852,36.647950704696882,139.580194183625281 -87.062060006821795,36.645106010075352,139.805527751334012 -87.116193924934905,36.644107756547903,139.884775805287063 -87.116201118093343,36.64410772416926,139.884786670096219 -87.231750702575582,36.643587597881599,140.05952609796077 -87.232257714677104,36.643580593011286,140.060278236865997 -87.248876114155763,36.643533424876814,140.085533536039293 -87.27961985234262,36.643410115359281,140.132159273140132 -87.282727927826301,36.643453081483045,140.137056219391525 -87.337202768636431,36.643234203514197,140.219746508635581 -87.345354430374542,36.643201450376495,140.232128083705902 -87.349019517387873,36.643131415987774,140.237514455802739 -87.415534109514326,36.642737750668992,140.338212231174111 -87.426234366486668,36.642737640617916,140.354631101712584 -87.43773463787187,36.642437536257916,140.371299142017961 -87.564280647194906,36.640802308716403,140.560435556806624 -87.566156692146791,36.640802289367826,140.563322436995804 -87.642376398781678,36.639724610745539,140.677177633158863 -87.642380500302806,36.639724552753677,140.677183765918016 -87.695417657845951,36.638526304362401,140.755048180930316 -87.85443949034692,36.634933581058974,140.989029025658965 -87.850802890101363,36.665386200467601,141.082839541137218 -88.013031969896403,36.678707893774288,141.377615203149617 -88.07177338510381,36.679800230870178,141.47236147057265 -88.069449034818433,36.661430111131267,141.408881122246385 -88.056844349584651,36.637394363123292,141.310915085487068 -88.046366575732662,36.604625001264054,141.187678187154233 -88.036863691435499,36.563424024577174,141.038286413997412 -88.033727280697903,36.542351042350255,140.964493734762073 -88.039059980072622,36.515540241320352,140.88504845276475 -88.040718964648761,36.512098385202385,140.876361200585961 -88.054443079020871,36.498819864466704,140.854236601851881 -88.054530191440477,36.498820938763771,140.854375695809722 -88.322038469328589,36.50211992562442,141.282558880746365 -88.327139590696447,36.502170870020819,141.290705134160817 -88.33204370735146,36.502218816607957,141.298534127883613 -88.417606731389327,36.502442912651013,141.433240446262062 -88.451408534334334,36.502787543123098,141.487352576106787 -88.453790586839006,36.502558528958687,141.490339786745608 -88.473812061442459,36.502714312231205,141.52225080691278 -88.490323665947344,36.502753813725498,141.548285943455994 -88.490458454485946,36.502754136186304,141.548498507589102 -88.513168995913801,36.503142880224793,141.585413162596524 -88.513519004947355,36.503191874260764,141.586122612468898 -88.517594785725493,36.503117321703812,141.592277953401208 -88.517676101668542,36.503115834305007,141.59240076225251 -88.546441785383365,36.50349951502357,141.638828013092279 -88.578533542927062,36.503625172823249,141.68966490123421 -88.662385520036267,36.503927278957867,141.82255314104259 -88.716508798371592,36.504345690762271,141.909165794029832 -88.74877755874499,36.504517343451759,141.960592023096979 -88.800849779204569,36.504439799222922,142.042487483471632 -88.81802137080463,36.50449785921483,142.069783840328455 -88.828268423577839,36.504532506167749,142.086076916195452 -88.8285575859571,36.504534933525079,142.086541458964348 -88.835882603086901,36.504596422965058,142.098310030996799 -88.836122409473347,36.504593621828164,142.098679648712277 -88.875982535087829,36.504128022442522,142.160140839405358 -88.965730631571745,36.503872087639671,142.30127926915884 -89.001323470951917,36.504313690919922,142.359086549840868 -89.008085629834383,36.504364617071175,142.369965961202979 -89.011699714722781,36.504390577657595,142.375776990316808 -89.035910284552628,36.504644309804192,142.414974370039999 -89.060132853451364,36.504837044577158,142.45400925539434 -89.073380164267647,36.504928900112958,142.475320526398718 -89.091408587442984,36.505071702616057,142.504389373585582 -89.118800230060032,36.505282402718436,142.548553032800555 -89.121068283687535,36.50532637663094,142.552297086454928 -89.164488310502847,36.50620087546617,142.624108338728547 -89.16469331534708,36.506204873105212,142.624447090551257 -89.212674451435475,36.507308312386975,142.704310053959489 -89.280358041559964,36.508188552481471,142.814880431629717 -89.283565120598652,36.508459505649881,142.820867713540792 -89.34732154498758,36.504886996428432,142.910852508619428 -89.347324153618302,36.504886745207322,142.910855854861438 -89.357861773378971,36.503871932190414,142.924362479709089 -89.381354290140536,36.502092766173831,142.956056407652795 -89.3830613240128,36.501738764703646,142.95763026829809 -89.405182822696645,36.500817572731137,142.989940721541643 -89.418563131564511,36.500709435395983,143.010949219577014 -89.401851385881088,36.540011760886195,143.111827092245221 -89.389410671019277,36.575089242017846,143.205717244185507 -89.377638060543092,36.615539465379278,143.317977583035827 -89.366818992512378,36.626730054980158,143.336969461292028 -89.345023582589562,36.632662008826834,143.321468877606094 -89.328847734270269,36.633797700239107,143.299401958473027 -89.32800120584767,36.633857134218616,143.298247360624373 -89.314674697551254,36.621791842913304,143.237983523868024 -89.295905828042379,36.595402282799306,143.122633685357869 -89.27297792857776,36.573061577136563,143.013726523146033 -89.26126155373862,36.566823995088278,142.974856126122177 -89.237809034694351,36.5684991656086,142.942996090278029 -89.228585861406813,36.571050143673695,142.936610536649823 -89.214829716211185,36.581793784792445,142.949602348729968 -89.203873811365369,36.603249893109272,143.00177860353142 -89.202169043119184,36.619850131721428,143.052878112532198 -89.198921143415731,36.63060866127222,143.082580757327378 -89.189016111640711,36.642787195194032,143.106308747082949 -89.176007960263121,36.652087897321849,143.115789976902306 -89.176000227117953,36.652147704850584,143.115971377119422 -89.173149255859826,36.674196891262731,143.182828029617667 -89.200748615175812,36.717713559096524,143.367327899672091 -89.202315811757686,36.727440087138952,143.401242476888001 -89.199076960518539,36.741079483497415,143.440166926942766 -89.185791884194558,36.75530495987077,143.465049250982702 -89.17037461977371,36.761139851486249,143.459463589824736 -89.143580925459489,36.75703632890616,143.403783634305 -89.131666586353276,36.753369627247594,143.373079781420529 -89.124816067894457,36.78688662735523,143.470450344495475 -89.124797978827559,36.78697513033616,143.470707333646715 -89.180498737920018,36.814579247357216,143.64789021667093 -89.179843782694391,36.818218084522933,143.658582530915737 -89.178447067692929,36.837442202540679,143.718318053521216 -89.148943564831029,36.848810987554771,143.70826433878392 -89.102036068954575,36.94563198223468,143.945652805268764 -89.102063817434399,36.945665211232956,143.945803373120725 -89.133956453387441,36.983856865024038,144.118781170807779 -89.167719597669944,37.004992522132717,144.239879905246198 -89.174867899958471,37.01306407093162,144.277045175433159 -89.180248184976762,37.022582571630601,144.316049640998244 -89.183782540783028,37.038928775638972,144.374003906734288 -89.182642664862769,37.047958369279428,144.40112582128495 -89.176998795836425,37.063721699402386,144.442691780626774 -89.173154358905236,37.069836436457479,144.456199679523706 -89.169360819647963,37.075870218718357,144.469526859000325 -89.087799432609287,37.167250869823192,144.633201906457543 -89.042535991998761,37.204528636555899,144.681062244810164 -89.002240403111983,37.226048077912033,144.68645846657455 -88.984532057166334,37.230332070842579,144.672340433113277 -88.968102689573698,37.231538191750801,144.650418684817851 -88.934669481237421,37.226654771489734,144.582416572608054 -88.934655817677367,37.226652775722329,144.582388787530363 -88.943382087666791,37.230458506853189,144.608213295228779 -88.929291689843012,37.227929207769009,144.578055632300675 -88.918204417038424,37.225938985087453,144.554328182712197 -88.810473283045269,37.190885753332829,144.273659203201532 -88.627150779452379,37.121113925057919,143.763758790679276 -88.590467581283363,37.101312228587567,143.642983792349696 -88.577978056511625,37.087509998175193,143.579185499809682 -88.56541179798171,37.080098692815994,143.535780373029411 -88.561291497906183,37.077668629640819,143.521547552198172 -88.546662051559167,37.071662062233685,143.479434177279472 -88.532834677047589,37.068851338740977,143.44884292408824 -88.515614236005831,37.066890611956708,143.415699327364564 -88.491554525219229,37.068329004050021,143.382836683653295 -88.484113519280399,37.068773859088608,143.372676869854331 -88.460205061712699,37.075455804189019,143.356932933442295 -88.4458621304871,37.100259812314007,143.414334516972303 -88.425660540352794,37.154084547439517,143.555751397274435 -88.449022943763822,37.205180949566952,143.755880258977413 -88.460022371861101,37.215189372763923,143.805028969421983 -88.473012791068811,37.221807930556579,143.846408545970917 -88.510589384307707,37.263780603450328,144.039100418798625 -88.517200907302964,37.285692527804805,144.119411704130471 -88.51592299219223,37.292597224819573,144.139486014842987 -88.477854690544504,37.388520239857314,144.386466172523797 -88.471486695980445,37.397899879215807,144.406481936573982 -88.457262561750127,37.410126472585482,144.423387283459306 -88.440595297077152,37.418060288277147,144.422836000099778 -88.416157198187904,37.425105311138608,144.407430911436677 -88.410069715802223,37.426860212473791,144.403596684336662 -88.359696170967794,37.406505678846706,144.260790678672493 -88.331881915648836,37.430960859359359,144.295723881572485 -88.313844673100377,37.442235537458707,144.303773922845721 -88.282926134235979,37.454240319757467,144.294269723817706 -88.256451569745352,37.458392412598606,144.266639941371977 -88.084649731357146,37.47532846869855,144.056019055657089 -88.063816493181761,37.491029975867512,144.074041057378054 -88.062546727754452,37.506876269096658,144.122574119828641 -88.062565936994773,37.506976371498602,144.12292246799916 -88.064565952464918,37.517398769561254,144.159186405129731 -88.073497386213717,37.530469080995594,144.214514034800231 -88.122774231357766,37.569806771163449,144.415333453565836 -88.134492387097424,37.57579451603975,144.452369449660182 -88.134563604391488,37.575830906662645,144.452594530768692 -88.134650618914378,37.575875369355799,144.452869541011751 -88.134673353090022,37.575917571658572,144.453038581646979 -88.141230982610153,37.588090745212895,144.501790571026504 -88.158086168914778,37.634438465134373,144.674807094968855 -88.161446668297273,37.659228307045439,144.758575861342251 -88.159466738095034,37.666178013737358,144.777562568895519 -88.152905758642717,37.676733606346815,144.800937897525728 -88.123671639835933,37.711319355449561,144.865622460842133 -88.07379683727207,37.734919822692824,144.863889487460256 -88.060846682757486,37.744241540422749,144.873558672145009 -88.052227644015815,37.754232181882266,144.891975852660835 -88.046266666818198,37.764068802061395,144.913970396853983 -88.040258820077568,37.777086270382469,144.9459468415007 -88.029288880734072,37.800855326222369,145.004306927323341 -88.018572667469783,37.803542319762876,144.996415118686855 -88.00596433288122,37.801776533944093,144.971562795341015 -87.977646442708249,37.789636382846751,144.889911541715264 -87.972126232236036,37.785088646530625,144.867095889523625 -87.945012464809153,37.778476233519832,144.804766470566392 -87.908066092201267,37.809256242170257,144.845737172290683 -87.905060191197123,37.819393818302217,144.873203876428306 -87.909029623822676,37.839241883735163,144.941982651129365 -87.911532782919579,37.845046596186158,144.964137006551027 -87.916148999956178,37.851248268287478,144.990763368085027 -87.928560454848636,37.86033872743414,145.038392654620111 -87.9374858277546,37.869566217703309,145.081131007522345 -87.941263040039146,37.876672858265827,145.109318337403238 -87.942097201310304,37.884966477063728,145.136757772415876 -87.941327256372347,37.889298290883573,145.149248969741166 -87.938042260493447,37.894215105367806,145.159749737940729 -87.92868224731447,37.90366541745589,145.17528728581965 -87.906047035310877,37.926518998822736,145.212855462916195 -87.899319916889539,37.929140953239575,145.210876323282719 -87.884578537706801,37.927865167965031,145.184413444250822 -87.873797187039813,37.922626517910253,145.151488424278796 -87.866814916555398,37.916683858822822,145.122123363427818 -87.858499469855872,37.902277593434313,145.064026569016278 -87.842448769273432,37.883954586490958,144.981772860512137 -87.831833413207207,37.87814596030384,144.947279785759747 -87.792154436914288,37.877344419225771,144.884394722990692 -87.784897295452296,37.879389404821403,144.87982046417892 -87.76351399923989,37.892536043121027,144.888841914013028 -87.701673468112588,37.902488444570629,144.826378894969821 -87.685270311210445,37.905128311868971,144.809832341037691 -87.676982083068353,37.90356047027592,144.792309988290071 -87.667732754037104,37.897416843868633,144.758875917643309 -87.664116493276907,37.887209339685747,144.721137959510088 -87.682884447895702,37.85754947003521,144.655843680724502 -87.683151293705805,37.848042893725534,144.626180345192552 -87.680439057373576,37.837954375313586,144.590145594440401 -87.672139722466426,37.830062817724937,144.552573466673493 -87.647108071408738,37.827533197042428,144.506578742526472 -87.6166484332349,37.833608247576706,144.479612935334444 -87.607848332080778,37.840303040526464,144.487465789541602 -87.592753267983227,37.858275394580986,144.521471499465406 -87.589978273718813,37.862617229361888,144.531005746684968 -87.589675398140557,37.870423882641845,144.555244342423975 -87.592831785871155,37.888826024593669,144.618220968171954 -87.59836800857525,37.894025732906655,144.643043167889118 -87.621522818095457,37.908552836384438,144.724022609181702 -87.627507119830824,37.917768360217842,144.762198509648442 -87.63021136484808,37.928343858160837,144.799691623076797 -87.602667471172794,37.974170102146644,144.902613867074251 -87.59416731999714,37.97747004515805,144.900163492187858 -87.587167142548608,37.977070137485661,144.888314512558281 -87.582365991547604,37.975070277883503,144.874745420180261 -87.575965738785968,37.969370600569128,144.847085633315146 -87.574665620585506,37.964270842251423,144.829028328880668 -87.575537509588173,37.956471181546192,144.805732408538461 -87.573280329548695,37.949095535227919,144.77903707139194 -87.560591743844924,37.932776399740533,144.708314458839595 -87.551582418354954,37.926520775214385,144.674927582032979 -87.512747159350724,37.908058013326801,144.55785858258605 -87.452431915491147,37.942665161262163,144.576145797967911 -87.451705261493274,37.943082094381005,144.576366664841771 -87.438105975667838,37.945823116053958,144.564508641138673 -87.419831538863562,37.946394284182965,144.538749323226511 -87.403878106862152,37.943898564664082,144.506805956363678 -87.381492447107618,37.937228099676325,144.451974656432867 -87.303566915751958,37.900079583812492,144.217045223340392 -87.270802772174207,37.87879084675815,144.100285126827657 -87.264171521894937,37.874482144350566,144.076649294234812 -87.203479549485991,37.845429083924358,143.89320681989193 -87.133857963025847,37.792649179978447,143.620902213267982 -87.129985780189827,37.787369457291256,143.598295978270471 -87.120465499031098,37.78448968631124,143.574832748621702 -87.112369295116878,37.784153786327707,143.561600835993886 -87.091871881105675,37.78944976399314,143.547659332863986 -87.078639696701259,37.797850526362801,143.554510644637048 -87.06907162630381,37.80770618525667,143.571489231660962 -87.059071737609344,37.829097332502492,143.624480408616364 -87.045090117849455,37.872434541177178,143.741158558055758 -87.044643259676619,37.881578137312999,143.769509599544108 -87.047473495122944,37.891503664222725,143.80524386651814 -87.04348553810047,37.899928329903119,143.825995021499693 -87.034680460712735,37.908230051792579,143.839138372801244 -87.011551111146645,37.921304711314377,143.845975411124527 -86.980192516366813,37.931836570901758,143.832458363845944 -86.980065157063606,37.931850377751047,143.832311696372926 -86.920563157154703,37.938300908495087,143.763846773654222 -86.903646899396094,37.947797662753601,143.768702775239944 -86.886194774076273,37.966009034743692,143.800390416756272 -86.857183442480292,37.988927319125843,143.829752292484045 -86.824723836716458,38.00057414154719,143.818286707624793 -86.816499632719669,38.000512230508008,143.80584326479584 -86.81600899237948,38.000272884950284,143.804354444146156 -86.796216966568906,37.990617882935112,143.744294598698616 -86.788926493589742,37.973085739042268,143.67786421906203 -86.771409540847941,37.941902310230972,143.552859805524349 -86.752219611357191,37.914532729985915,143.437383668497205 -86.742106190018575,37.904208295760945,143.389524356462061 -86.732688820829651,37.895980760860795,143.349356285296381 -86.724738599558393,37.894471911118586,143.332725607790053 -86.719690479824536,37.894763950786214,143.326140408404171 -86.710392325375437,37.899280846471704,143.326662080362439 -86.661519577997225,37.866699808851081,143.150333634577692 -86.656522081104313,37.844151867047401,143.071118548512459 -86.656511284229936,37.844150258440024,143.071097367443144 -86.649253883736407,37.843068991051375,143.056859625503421 -86.635496584080087,37.845489026228982,143.044109721668065 -86.605849090431022,37.859915691058568,143.045990195125341 -86.526398947737064,37.969867623249165,143.277823198586702 -86.52619493518587,38.029515977626723,143.466836839914322 -86.523051031351656,38.039963547170132,143.495313200168312 -86.518514990642714,38.044270403559977,143.502256907522678 -86.512985883723914,38.046084380819451,143.499829077161849 -86.492083300149702,38.047432222271873,143.473192649893463 -86.492078387418772,38.047432539054832,143.473186391405761 -86.468100805602802,38.048233753436001,143.440286776050925 -86.45341650584723,38.052126733946018,143.430936026386917 -86.439460324737681,38.062062439268416,143.441826690919697 -86.43401330180312,38.068807197375385,143.455166017636657 -86.431315425907229,38.080273717945872,143.487525302916765 -86.42773279846422,38.083419639218597,143.492206707596779 -86.399885104855457,38.107872824671638,143.528595064766705 -86.33378985849366,38.131765457341182,143.506887514144182 -86.328010789183466,38.136238320000295,143.512544336728752 -86.324675779994138,38.14066615923781,143.521655349992216 -86.315514643937931,38.144243986708062,143.519503051415086 -86.310949042139214,38.146027055470356,143.518431447446346 -86.285186050846207,38.144819763506995,143.476721420884132 -86.272444329689804,38.131747096354424,143.416586958803236 -86.279255038406603,38.10406224826793,143.33887345995754 -86.279940837177875,38.090939821085357,143.298277702182531 -86.274804345907526,38.069080841014262,143.22138296905905 -86.268111007875817,38.058763366946117,143.178791262209415 -86.221589364924412,38.029562141922568,143.017619569785893 -86.180200058743594,38.012949306250022,142.903963841497898 -86.173402866396216,38.011561438065961,142.889561118558049 -86.030722021862445,37.994283677317235,142.625183804892004 -85.999821113393253,37.999418363676135,142.596261654980481 -85.952678285220557,38.007251907699121,142.552201053127646 -85.949163533282828,38.008726692714845,142.551755956374109 -85.942614103025647,38.011474824525379,142.550927611999214 -85.93144596320181,38.01995456447554,142.561597990803421 -85.923605937677522,38.030322186806053,142.583144271746278 -85.912817939665473,38.068531148202716,142.688956087455153 -85.907374478807512,38.087810815039646,142.742307608947158 -85.905775671503221,38.101910209554298,142.78478426579386 -85.906375864923433,38.112709727152968,142.819972020573914 -85.910676452187559,38.141708404859678,142.918330590240657 -85.909976783947656,38.162806483066063,142.984259478747845 -85.900763257161287,38.181980011167511,143.031635314226151 -85.898876888380258,38.185905581330665,143.041332344524562 -85.830576709169463,38.278402225524516,143.234871756285429 -85.824976631569442,38.282202116842818,143.238753658719361 -85.817376480369717,38.284602090206263,143.235300128348172 -85.792787377879236,38.290199271145717,143.217282544821501 -85.792774954674201,38.290202099021457,143.217273443937302 -85.78217468629343,38.290102212893494,143.201561971567571 -85.774574456806178,38.287802392139639,143.183248179033399 -85.767174175856866,38.282102718273769,143.154464758001268 -85.76777414445823,38.279303834726221,143.146476711146533 -85.762272921318768,38.27420411500151,143.122345354408026 -85.752172589105086,38.269504425212347,143.092801361344755 -85.746072423956662,38.268804518823231,143.081729891709983 -85.684770349679724,38.297102911396934,143.082417112775147 -85.676226231396043,38.302950743501675,143.088547720573843 -85.654850120672592,38.32874083563528,143.139199771918356 -85.63998631642248,38.363074488520823,143.22625997196883 -85.639253255557165,38.381900788488515,143.284692369401455 -85.639250612333129,38.381968671173695,143.284903008490801 -85.634146738769175,38.397296055017691,143.325938262976706 -85.621730882568301,38.424733986783671,143.394619361497462 -85.608838826862822,38.440923414517052,143.427084914408624 -85.463725376556127,38.514228723798809,143.449127272702754 -85.43434282013898,38.525540535648034,143.442537813447416 -85.43413509503894,38.525698857610827,143.442738240584731 -85.424283692913491,38.533207306648087,143.452244197949767 -85.418528700218815,38.542388967682626,143.472905588336289 -85.416806749709679,38.547966743543562,143.488002954982221 -85.41702804317346,38.565182994937977,143.542536594904959 -85.428674261765423,38.588359108288941,143.632198587991297 -85.440559425196113,38.61201072413261,143.723647101782262 -85.458188196860107,38.690754138399981,143.99624187592417 -85.453324413835404,38.71096631651514,144.052658428438008 -85.435275293808772,38.731072636336691,144.089817906729877 -85.423231078047451,38.736451529183618,144.089420541189611 -85.412134833489091,38.73869754724592,144.080567027442157 -85.334493151784955,38.742098559672492,143.980133946053684 -85.290432822298996,38.744028575618209,143.923225027509034 -85.276660450189539,38.742790771074517,143.89967479929328 -85.260051969004692,38.739373089595738,143.865242878906429 -85.247710554381499,38.733440472334792,143.829014496877789 -85.227266590046938,38.707076818726186,143.71708007901907 -85.214461095450247,38.697067382016641,143.667367529124022 -85.202701834502008,38.693196264431485,143.638427503407001 -85.190565353858929,38.689200967092539,143.608560303226113 -85.173730932601401,38.689704118598442,143.58613396435976 -85.157360584451382,38.693873107278669,143.575899767689407 -85.139882253869331,38.700789988953233,143.572732403874397 -85.108103803855869,38.72241038458241,143.595415618270636 -85.102164752702336,38.728421186924578,143.605845699086785 -85.025404903544072,38.764931559869581,143.61139627918601 -84.997138901429494,38.778376118423985,143.613485497422516 -84.985826650344677,38.780692135115459,143.604708812199533 -84.974631359636746,38.780467259681551,143.588126004673541 -84.945494551331834,38.776804715849778,143.535322059877217 -84.845608186935422,38.788699228877533,143.431283848360181 -84.814545576934407,38.799951064286653,143.422724281437695 -84.792274444693248,38.857477598036915,143.571842123754323 -84.786995059196755,38.871114299374263,143.607160282321274 -84.78630721734956,38.8816058578536,143.639082845300436 -84.790717409648778,38.886304611825629,143.660030798986554 -84.814379845591816,38.932198319029986,143.837145665660501 -84.850644908905124,39.002535037653018,144.108205350115895 -84.879814828526321,39.031906089153061,144.241031561978161 -84.890266604278239,39.042429931700298,144.288604821078479 -84.89837300941798,39.054016355363835,144.336173777468503 -84.898566098664034,39.058987142005684,144.351945713162422 -84.890075032482301,39.067984847026764,144.368025615811348 -84.832398148307732,39.103527931820743,144.397558115422726 -84.821357923835052,39.107087894485154,144.393115195445716 -84.788880252005498,39.116904812507698,144.378027114085853 -84.767949106094719,39.14016504196394,144.421063654124737 -84.755648925752297,39.148264825449786,144.429010640829802 -84.745348673098277,39.149064897597484,144.417041319422424 -84.733247309348556,39.146065149202059,144.390715328976512 -84.719746834800986,39.138666601505015,144.3487270437181 -84.690944532879456,39.105768291969127,144.205784232355654 -84.68604434360077,39.102068499200143,144.187372101470828 -84.633641588129365,39.078371042220141,144.03994784783572 -84.624927638432894,39.076037737673452,144.020449887961149 -84.621307213362385,39.075068308813719,144.012349287979305 -84.604638786218359,39.075310469356246,143.98974984139204 -84.51124925202177,39.095204786946717,143.921189937740564 -84.510935696219249,39.095271582209612,143.920960266143084 -84.50727485780078,39.096692305163153,143.92028025072068 -84.503254547357457,39.098252534452698,143.91953397821635 -84.494935429731427,39.104071372995762,143.926079391501844 -84.434031712267583,39.095873342765216,143.815442246384919 -84.327725833450202,39.02907925849987,143.458283338695765 -84.321123043002501,39.023697509605597,143.432227534241974 -84.314866324439365,39.018597834165739,143.407535145059228 -84.305883915467362,39.008072372353503,143.362040929496288 -84.235635208823922,38.894848900987903,142.908740143291652 -84.233313937447178,38.882106467530463,142.865430133417249 -84.233660327921029,38.876261765479363,142.847526333294809 -84.234908533369065,38.855200598798987,142.782988089136779 -84.232487089924106,38.832177605922972,142.707118485122919 -84.231134606818387,38.829275915298311,142.696092696860433 -84.226480721386764,38.819291216954944,142.658146999776363 -84.214084202745966,38.807333853036454,142.603177790530026 -84.20677196177931,38.804215060154341,142.583151429891586 -84.072666955054757,38.772104784360891,142.295110253617167 -84.053882013341962,38.772172442845033,142.269205864518881 -84.045661255565207,38.772202051856041,142.257872879505157 -83.979987820515177,38.788734005624725,142.218887003138661 -83.963296391163553,38.789014161297878,142.196616963483393 -83.945150857574745,38.785246504341657,142.159552530385554 -83.905142563968965,38.769791565690021,142.055259294807911 -83.905089635068975,38.769781223664758,142.055153264664114 -83.87161358446852,38.763240181492584,141.988103779032826 -83.860198208738055,38.758425501479408,141.957071377895772 -83.854499991521209,38.754204738847989,141.935831658542156 -83.778989754688425,38.676089834619134,141.58390895370394 -83.774848433639789,38.662946438845445,141.536488747224212 -83.770513222085128,38.656857742923343,141.511172032915056 -83.763610991943153,38.653740945276773,141.491732019931078 -83.707207417107938,38.63873967974741,141.366117436438799 -83.680647474945928,38.631675716887464,141.306982960551977 -83.665074035280028,38.629569961984338,141.278784342110157 -83.656587843360967,38.631374968974541,141.272802610881627 -83.650899743907104,38.634392896175832,141.274539544247091 -83.647863977832259,38.639128928633987,141.285396465100348 -83.644156738142058,38.644912512496056,141.298653427511454 -83.637371002809914,38.672222410674429,141.376014766283333 -83.628084903077493,38.681025126360758,141.391150933690369 -83.616898688288543,38.68578303405716,141.390831304714084 -83.575915756745388,38.694309076775944,141.361433857120574 -83.534499827779797,38.703743084874901,141.334382046945393 -83.522113519384817,38.704683167657144,141.320332181639969 -83.513731278894468,38.703354307615811,141.304589658044279 -83.370232843842984,38.66097553979435,140.972920805215836 -83.334501623452638,38.643204652594235,140.867403198033571 -83.325311250830964,38.634969095569794,140.828595330007374 -83.321684985810705,38.624356585431038,140.789836442098022 -83.283252664162106,38.604631808560946,140.674351963214576 -83.266921642747732,38.606922809307598,140.659292227588594 -83.158075665117437,38.622192288645195,140.559156727977097 -83.14398536784573,38.62672123342594,140.55436022952199 -83.136195269520769,38.633364025981706,140.564903650432825 -83.128801246861045,38.64409564000578,140.589017254300416 -83.032036684426529,38.727201732923959,140.721868459135294 -83.031850030517248,38.727362040349298,140.722124754451215 -83.012963602969208,38.731699041097443,140.710256263613701 -82.980541684341262,38.727618532969664,140.653236708603799 -82.969841447371991,38.73041851870606,140.64762151427567 -82.944293006285221,38.744922151976212,140.659108862280846 -82.924839602312574,38.75171805358422,140.654353952035308 -82.895337928494826,38.758218066248439,140.635058840736747 -82.890337788666258,38.757718136479049,140.626695945858955 -82.880636459390217,38.753118427047745,140.59892178978771 -82.87663628685894,38.748918644792944,140.580139399506152 -82.875610337689437,38.746989084174714,140.572608813643456 -82.872436050040065,38.741019021872425,140.549306968227029 -82.871135873823178,38.732120413149921,140.519215005449951 -82.871535750448331,38.723720766667867,140.493007832206786 -82.874635640939502,38.711721247138229,140.458984666503966 -82.870735030383145,38.679822644118346,140.35203490126878 -82.854695540366876,38.612574669995759,140.115678430534899 -82.848327123110735,38.596815405393933,140.056691873818636 -82.840678779238829,38.587808864890007,140.017534137703478 -82.821301056373386,38.574353628939882,139.948240333236754 -82.817151760895612,38.572383582676046,139.936314920894802 -82.801251378155158,38.564834231248554,139.890615101903677 -82.790915054984652,38.561602470064123,139.8662686701864 -82.732095494776729,38.560916071368318,139.784428237006068 -82.725983307487468,38.559252201903398,139.770832198671997 -82.697757319740532,38.543765138356434,139.683062314987183 -82.691645071557048,38.538229434489899,139.657064664177597 -82.66668293028134,38.507462993425889,139.524705672636628 -82.666619846447517,38.507389275564449,139.524384005926549 -82.594804721754457,38.423468289886465,139.157870690338314 -82.597412726066352,38.419340441899507,139.148124690167606 -82.598244673111481,38.414540639941862,139.133816634304821 -82.596500157142259,38.384382952318518,139.034450127743185 -82.596513157328886,38.384372952622861,139.034435529261827 -82.59413897601577,38.37674330348954,139.006670672446489 -82.57300649821704,38.317445058748454,138.787073209881783 -82.575784767096962,38.265539269436992,138.623381315730512 -82.579382721481636,38.256475625915151,138.598990212194622 -82.585129742077442,38.248037934828453,138.579525983892381 -82.59609901622342,38.247119868946541,138.591419502161443 -82.605359288229849,38.24896969998747,138.609939231537282 + + + Maine + + + Maine + 0400000US23 + 23 + 30842.922999999998865 + + -69.30872636880764,43.775336819219611,141.398401278071105 -69.307569349037408,43.776664783827144,141.401483195833862 -69.303813219191653,43.776160827294568,141.396830581128597 -69.301194100084601,43.773713926524962,141.387207075022161 -69.30163606623627,43.77016903997194,141.376781322062016 -69.315143346292743,43.758277334604905,141.351789225824177 -69.32337760453585,43.757453302764091,141.356122048571706 -69.324387680002872,43.760564193126442,141.36643439438194 -69.32195969284092,43.767332987756497,141.385026207193732 -69.314449542462285,43.774331811292242,141.400094594806433 -69.30872636880764,43.775336819219611,141.398401278071105-69.428744428882879,43.930361874268613,141.969214900396764 -69.424147196287521,43.924435101120942,141.94741334952414 -69.422977086572317,43.919266278519551,141.930760506540537 -69.424148094674933,43.91707134183504,141.925076322630048 -69.438890495610138,43.91110343064549,141.919243770651519 -69.441737592084039,43.911331402645622,141.922306512482464 -69.442718714882474,43.917895180920539,141.943035551346838 -69.434586904592535,43.95091616077427,142.036399595439434 -69.430630762166075,43.950001219201816,142.030334397219121 -69.421896335006849,43.93982461453858,141.99221367482096 -69.428744428882879,43.930361874268613,141.969214900396764-67.620533527691478,44.521311889910287,142.314693569205701 -67.616182006884287,44.52353084225129,142.318071495741606 -67.588509408490609,44.517753626405408,142.279487079009414 -67.582883642507952,44.515017002380489,142.266925104893744 -67.590029681336176,44.502397884656922,142.234243794344366 -67.591398007406852,44.495708254075701,142.215068674646318 -67.581058745793555,44.489626848357751,142.188791180960834 -67.56342111165624,44.473663090667714,142.127059447579086 -67.569958901711558,44.457091026055558,142.081919440068305 -67.57254366465547,44.454962492614747,142.077452947385609 -67.574976396076593,44.453290070251896,142.07425044849515 -67.589116724859721,44.45131349533257,142.079070988111198 -67.593526193814498,44.460131604716594,142.109116668812931 -67.605690513086373,44.50361407635873,142.249879344366491 -67.6079712372904,44.505134431319576,142.25621629320085 -67.615725621953047,44.505134378913006,142.262141428887844 -67.61998296374982,44.507566939194753,142.272745965048671 -67.620533527691478,44.521311889910287,142.314693569205701-70.120515142679352,43.750185918514553,142.007092737592757 -70.113903584901706,43.750694525034532,142.002966807223856 -70.098162352202536,43.758856279706372,142.014241158030927 -70.095830251749362,43.754775466398563,141.999860757030547 -70.101077204419298,43.743698915230745,141.97074194252491 -70.108656249297695,43.736120204877821,141.954235406592488 -70.110405235594442,43.732039361584199,141.943347383290529 -70.109822121549897,43.723877727797934,141.918068967759609 -70.124980227582839,43.709886241382435,141.888588133268058 -70.130227358295855,43.70988620263109,141.893092156387866 -70.138972692728188,43.719796704790539,141.930693197064102 -70.13955582325849,43.729124272260997,141.959510122425854 -70.12789577583753,43.744281700993412,141.995506984181702 -70.120515142679352,43.750185918514553,142.007092737592757-70.172089543408447,43.665065467565576,141.79290978051722 -70.171980982419257,43.66486718657864,141.792213772423565 -70.191168320215922,43.644553718830117,141.746988811530173 -70.206779695491022,43.635200913967537,141.732006828300655 -70.208010736218412,43.635257902967062,141.733241389505565 -70.211907976978125,43.643409603394282,141.761383908800781 -70.200961918496787,43.664544982918564,141.816187029704452 -70.188892678193824,43.675328714583863,141.838558695279062 -70.185504581367894,43.676265708582626,141.838488773442805 -70.172089543408447,43.665065467565576,141.79290978051722-70.187058743556506,43.684221433367235,141.863995251245797 -70.188381730518756,43.680235555692008,141.853025939315557 -70.193419816396187,43.674705701745054,141.840563746169209 -70.208187147119801,43.664128943244577,141.821148067712784 -70.211671247998936,43.663261946216245,141.821516131982207 -70.21397634074701,43.66453988675346,141.827385941520333 -70.214794412080764,43.667727774944787,141.837777107954025 -70.210473414443996,43.677874470448302,141.864879166707397 -70.202739292362949,43.687049223593192,141.886084987781942 -70.1973811648148,43.690350153876466,141.891496586613357 -70.191886990466841,43.690637185033538,141.887638439424336 -70.187058743556506,43.684221433367235,141.863995251245797-70.16472915540308,43.693970275512541,141.874397216364741 -70.157631957219039,43.696272251734996,141.875287426635623 -70.146959707830277,43.703201101169185,141.887160037644207 -70.136407351294935,43.702224211479212,141.875128974206746 -70.155347689735336,43.682499724909256,141.831486308947206 -70.169072054029712,43.676702815612273,141.825676284730434 -70.171129125095504,43.677007790293828,141.828372559510171 -70.174416348237386,43.685300491125219,141.856394108384848 -70.172184329289379,43.689112381321046,141.866053213365376 -70.16472915540308,43.693970275512541,141.874397216364741-70.08846378293515,43.701479589959206,141.831730854697526 -70.094546866996538,43.693366813718534,141.812298451550305 -70.100437108348473,43.696932652198718,141.828183836303651 -70.116751464845635,43.684544942146516,141.804544159211218 -70.119134547371758,43.684909912468527,141.807698891498148 -70.11901758605741,43.687941812884979,141.816810829564929 -70.116804553780312,43.690768735574089,141.823500256985426 -70.101526292236173,43.707528293405531,141.861304581165314 -70.096570177635101,43.710844220232765,141.867126367986202 -70.093956110132311,43.71209019828661,141.868669609539211 -70.092980063604486,43.711034240426692,141.864625701680779 -70.09802710797473,43.702495485803311,141.843016380444169 -70.092771897706669,43.699677617846795,141.829949900507927 -70.08846378293515,43.701479589959206,141.831730854697526-68.881047548813029,43.86496791813758,141.319454554468393 -68.883359131802678,43.850095167953469,141.276051880791783 -68.877029056071493,43.838167823434617,141.234563438221812 -68.887530207698092,43.823766221163552,141.199249937199056 -68.899124572531576,43.822558179038658,141.205028621479869 -68.899913611075704,43.823496142741469,141.208530404604971 -68.894342782525072,43.833068802181742,141.233148883096874 -68.895505767786716,43.845540367862043,141.272084892727435 -68.89885073100568,43.851114790339402,141.291789129376411 -68.90476313058312,43.850254232275894,141.293991855345666 -68.909028286548477,43.851422163962845,141.301028381101787 -68.903424358345859,43.870424581885587,141.354307767003775 -68.890173012432925,43.87709945715325,141.363820455037057 -68.881047548813029,43.86496791813758,141.319454554468393-69.044794084666989,44.007248344373878,141.88555302284658 -69.079013189452425,43.975696591802141,141.817853755317628 -69.093808501815744,43.980627911247282,141.844952697865665 -69.062780072571741,44.016586437306195,141.928598132915795 -69.048395794903158,44.015559166349682,141.913707628846169 -69.044794084666989,44.007248344373878,141.88555302284658-68.619010913279681,44.013933905095421,141.560426720418036 -68.636114565922881,44.020452573955652,141.593991094268858 -68.648159904907487,44.016066631947773,141.590360766276717 -68.652662991271541,44.011425751030764,141.579886176623404 -68.653680944071098,44.005411939119455,141.562432368285954 -68.657831080836289,44.005389910776309,141.565708310343325 -68.660772341867869,44.017579494534296,141.605113594792783 -68.660674429365855,44.024324276395639,141.625523523427546 -68.658169368754741,44.02597024055401,141.6285056816414 -68.651567359258365,44.041473784117862,141.670274970121682 -68.655583757225415,44.061164118059139,141.733285778202116 -68.662395201376754,44.077401544678452,141.788043438456953 -68.628693252570841,44.089692383292444,141.798234984278679 -68.626150232867474,44.094470246619942,141.810686834156513 -68.618900044236284,44.098270174558664,141.816391125321388 -68.610521739635445,44.096238298897106,141.803500498645008 -68.603662404592001,44.088214606314217,141.773650577291846 -68.590361815641344,44.077150057212471,141.729398975148797 -68.586714691625218,44.076900090797217,141.725714256986976 -68.584872566716029,44.07214325757856,141.709797547198832 -68.588896574688434,44.062835530697107,141.684769582003355 -68.591590628734338,44.06022759629618,141.679013601504266 -68.60189796556871,44.059927533947203,141.68637711647898 -68.612271862574545,44.026742536718494,141.593926284462214 -68.611501679331013,44.014988923361258,141.557595102116466 -68.616694801779758,44.011328005851887,141.550645397976041 -68.619010913279681,44.013933905095421,141.560426720418036-68.786405997091634,44.055067396247587,141.820350059308112 -68.791400166459724,44.055396350395156,141.82538949046284 -68.808120474119846,44.037360817310088,141.784203919582069 -68.819246790528553,44.033610860509143,141.781839715316892 -68.829271122307944,44.033682787463697,141.790184715762734 -68.863652160602811,44.026601774535848,141.796596229076385 -68.874946537520003,44.026923684278565,141.806747367605567 -68.89052514856823,44.034080341844607,141.841121852397919 -68.900805956315196,44.068523152180418,141.953930456191301 -68.905907266140574,44.078906779670575,141.989550704136491 -68.914215647339972,44.086752466740592,142.020080403424799 -68.90862174002946,44.107079848551798,142.077117252163589 -68.90979383993583,44.111562695254278,142.091647312045097 -68.943915962878847,44.111291461982255,142.118568369187415 -68.945408054666473,44.114401350808848,142.129199449904263 -68.936137988496014,44.131940849625501,142.174761136993766 -68.918096636901183,44.14979940086652,142.214151048101485 -68.889406843506919,44.161110239301543,142.225091552361846 -68.879489612251845,44.168172081795944,142.238416903652251 -68.848057797133663,44.18457677559411,142.262584352865815 -68.825875108672847,44.187897825576464,142.254684207960963 -68.819963832848373,44.182022056699807,142.232128404080868 -68.82301391126569,44.180375088203867,142.229611645452678 -68.823647862308022,44.175253248798974,142.214626902714372 -68.819230542700097,44.162538689990292,142.172575925476849 -68.793027471977339,44.147559358354165,142.10604399535805 -68.787692267807628,44.14552246174852,142.095564973540604 -68.783181136973127,44.146871450047911,142.096005607396364 -68.78149905363766,44.144835527621574,142.088481486774981 -68.792871341061854,44.138320657667116,142.077939973212779 -68.802968689876451,44.139418550937833,142.089427515864372 -68.818846201131279,44.138413471239225,142.099225781857967 -68.820466235371796,44.136995505577964,142.096242574974895 -68.82132219234974,44.131759668619878,142.081078599207103 -68.820337048927556,44.12361793859575,142.055620870552957 -68.81636883312845,44.117398167616535,142.033567311242223 -68.807638551437108,44.11790121300379,142.028027308173478 -68.791330694284781,44.094483085274014,141.943866921588778 -68.782577287736359,44.085837426730286,141.910577163100243 -68.773443906855491,44.080002679939149,141.885500402189791 -68.771094708999954,44.071129983751845,141.856692183762789 -68.780454858147351,44.059318300423939,141.828431817702949 -68.786405997091634,44.055067396247587,141.820350059308112-68.943639306908196,44.282628943985458,142.636281812563539 -68.920113925118471,44.311427187999143,142.704092224128544 -68.920138278394674,44.336946370596451,142.781061914749444 -68.91244743322946,44.366580477589025,142.864146452397108 -68.904343352455413,44.380166101249571,142.898518641479313 -68.879752646855195,44.388137021760492,142.90265528857708 -68.869256227393421,44.38299326064341,142.878684932366014 -68.861460733640968,44.365978859536334,142.821125948801637 -68.865149725923843,44.356556134485906,142.795705822296441 -68.872501827055814,44.346216412869147,142.770476760342717 -68.883877114976812,44.339747538951535,142.760168328881264 -68.889518302056601,44.339750498744436,142.764738501049578 -68.893662390535965,44.3362075826455,142.757408409379423 -68.897399339582321,44.323540961559132,142.72223705612123 -68.888271776596326,44.304649631646505,142.657868432812393 -68.900256907510865,44.28533116590161,142.609275435097516 -68.90506701330294,44.281445256381474,142.601442786864936 -68.917683921470697,44.244423355636087,142.499888672493398 -68.927292104214686,44.234592603403748,142.47798765450716 -68.946788581244931,44.222381857568337,142.456924828700721 -68.952702747895515,44.220276883235933,142.45536897983402 -68.947902700191662,44.228349657628712,142.475858977995813 -68.956145208020232,44.245430049691777,142.534141354262829 -68.960281394001797,44.248995905623225,142.548268225044012 -68.966709638596811,44.251310785443394,142.560479536652565 -68.967887708098644,44.253524705902876,142.568120796233416 -68.966077749755542,44.260888482198091,142.5888806944713 -68.954499546058258,44.273902146747901,142.618758768774569 -68.943639306908196,44.282628943985458,142.636281812563539-68.500261486217184,44.125754115913281,141.804750727489591 -68.493688170817506,44.118485396311321,141.77745034918189 -68.492317030248145,44.111397634677786,141.75485004670918 -68.503738272824293,44.101286881624482,141.733291964046657 -68.51785678987622,44.104974664065509,141.755768606439233 -68.519499976115327,44.114786335751774,141.786852101795375 -68.512062889176605,44.126646004836765,141.816883945837617 -68.507775776116105,44.128800965207155,141.819994885474443 -68.500261486217184,44.125754115913281,141.804750727489591-68.35917982162384,44.126647067817629,141.695111632347107 -68.353801680675218,44.129449014737645,141.699346443638206 -68.347515470367227,44.129314062644916,141.693947688676417 -68.331506710581451,44.112163726682489,141.629180200397968 -68.331822680827614,44.109145821880723,141.620266721583903 -68.338802830880468,44.103038970674525,141.607259835116565 -68.365967731372081,44.103029782825551,141.628802966326475 -68.377385253320142,44.113772356933467,141.670492357574403 -68.377383274027807,44.11532730677061,141.675211196765304 -68.376174269988752,44.118025228104514,141.68244022410363 -68.366306044558428,44.125644050766411,141.697726279497147 -68.35917982162384,44.126647067817629,141.695111632347107-68.454031838322308,44.191560318108223,141.967385271564126 -68.438584301806003,44.189778482998399,141.949689631350338 -68.425235892962505,44.192315494308936,141.946758300065994 -68.417228577437783,44.188609669198726,141.929160693660378 -68.409001160096537,44.17786107220256,141.890040817670524 -68.385696100727202,44.156518921171646,141.806806393899024 -68.397427298825974,44.142254299309286,141.772859811782837 -68.428328036453109,44.120830775504039,141.732444449327886 -68.439312359172206,44.117744798725361,141.731829256750643 -68.449440820842952,44.127145424964773,141.76842506416142 -68.448299889129657,44.135057177723986,141.791518060490489 -68.457608355725426,44.146831733338011,141.83464920334518 -68.480730156238309,44.149363490683243,141.86076276935637 -68.485492296549339,44.148058499554196,141.860605062916875 -68.49743569725581,44.148418404683937,141.871228257194161 -68.502892952571415,44.153951188300802,141.892359319142997 -68.501614012976958,44.161588951134121,141.914491181261837 -68.496307869416384,44.163991910745231,141.917539731599391 -68.475161429943498,44.18343743217644,141.959605912677944 -68.454031838322308,44.191560318108223,141.967385271564126-68.681577841359811,44.280800276827726,142.419299482367933 -68.676220387081187,44.28131051833892,142.416541742160916 -68.669017003209404,44.278069280103431,142.400968932546675 -68.659652559934102,44.270146184435447,142.369514198973775 -68.624356010106681,44.257181263056623,142.302031482569873 -68.612470352511579,44.246377045727463,142.259840581566095 -68.606707506877385,44.232331489809525,142.21273993793875 -68.613550353864639,44.209282257603249,142.148474303074181 -68.625795886520919,44.199198156479085,142.127766603603959 -68.626516193266241,44.196317005248943,142.119622358120978 -68.620393278425027,44.190914891306178,142.09835774730891 -68.619312748604173,44.188033759721833,142.088767871260643 -68.619672820415644,44.182631600360963,142.072698472067714 -68.643803696664662,44.159222106264636,142.021159458905458 -68.653167984683094,44.155260463928194,142.016679211519659 -68.670816140908869,44.15309948226637,142.024315987713635 -68.672256628909849,44.140134306695579,141.98619289137423 -68.675858275453905,44.138693706700195,141.984724326059222 -68.682701470239323,44.139774089212942,141.993502996861935 -68.68738376301738,44.14877764343062,142.024548494257033 -68.693146519423351,44.155260183065458,142.048822141252458 -68.701790592686322,44.159941990594923,142.06995880510658 -68.710434607304236,44.160302072155702,142.078008180484176 -68.71403629782165,44.162102762179209,142.08636143617332 -68.717277827329269,44.16426360060423,142.095515234395862 -68.721239754374508,44.170746152983817,142.118334085680544 -68.719799281695046,44.184791758001602,142.159692404791713 -68.71583755046052,44.192714939432882,142.180482666008174 -68.715117383181749,44.205319970247992,142.218044800683856 -68.721960674257858,44.213963360615544,142.249700317159295 -68.723761608974613,44.221166216977899,142.272935987450182 -68.723761662970844,44.225127797432812,142.284917075186968 -68.719439726691675,44.230169828633429,142.296686862595379 -68.712596558142849,44.230530026250435,142.292271296493709 -68.701431448329885,44.235572119653135,142.298540500923991 -68.694948655932663,44.250338039455514,142.337974337860942 -68.681262483415153,44.263663440592651,142.367261275649071 -68.678381242284615,44.270506202029161,142.38562861084938 -68.678381330709229,44.276988779871473,142.405217765830457 -68.681577841359811,44.280800276827726,142.419299482367933-68.356071708938018,44.2006587066886,141.917119490914047 -68.334019086590601,44.208870595803305,141.924530335702002 -68.325021766604664,44.207294708799374,141.912629446946084 -68.316851421718567,44.20180694172582,141.889528275467455 -68.315580338180112,44.198720049724656,141.87916499376297 -68.319267453301435,44.198171041824779,141.880419605411589 -68.321969575500802,44.200594945209033,141.889906384982169 -68.333430863760768,44.193694087568787,141.878065169788897 -68.339820804331694,44.173402695871857,141.821605400182307 -68.348208050894783,44.17102271431542,141.821037844754755 -68.37966529281546,44.185785021107101,141.890756203792989 -68.372028157047836,44.194565791781095,141.911309834569693 -68.365261993163571,44.199096693107002,141.91967390011996 -68.356071708938018,44.2006587066886,141.917119490914047-68.473627889639644,44.221328224677997,142.073154587298632 -68.461001372570522,44.214059546246908,142.041088930331171 -68.45463901574756,44.203244938158356,142.003267990425229 -68.455019999457292,44.201096004587562,141.997061626985669 -68.459978139032785,44.199243029611928,141.995396295562387 -68.48531704989972,44.204447685585549,142.031349976547062 -68.488024229143562,44.211078453558031,142.053589122369885 -68.483523316457351,44.228618921474926,142.10311034694314 -68.481362265418369,44.230151887333029,142.106029253453016 -68.47111992176967,44.229880967500293,142.097051290795207 -68.469368805351337,44.225560118465921,142.082575596868992 -68.473627889639644,44.221328224677997,142.073154587298632-68.792947038561024,44.239377726295345,142.383747862651944 -68.77063982660448,44.224345895475281,142.320314488373697 -68.769853363505945,44.214910482860319,142.291148657910526 -68.780861934190611,44.204688692737328,142.269113841466606 -68.790691161298625,44.205474906225682,142.27942474745214 -68.802093095389623,44.210192534626785,142.302897903136909 -68.809956522216496,44.214123908914182,142.321136738173664 -68.816247240667849,44.215696437902139,142.330973365344107 -68.823717463651832,44.218055233849562,142.344141192734241 -68.830401325480537,44.218448328010055,142.3507319111377 -68.838657998037291,44.228669978254658,142.388304566033185 -68.840230803470305,44.238105393012738,142.418090802617371 -68.834333340495263,44.242430006306662,142.426391554065049 -68.828435837550174,44.244395763104272,142.427565711550415 -68.826439875864423,44.244113538594604,142.42510037124157 -68.792947038561024,44.239377726295345,142.383747862651944-68.237169905094319,44.267815415325785,142.026577582582831 -68.21542989142668,44.26471762518635,142.000071760267019 -68.212117699898343,44.258635842855178,141.979043232277036 -68.213262715689737,44.25696688841488,141.974889365956187 -68.222172036847283,44.25881576765731,141.987505945377052 -68.232258355868922,44.257577737635586,141.991702468134463 -68.237919509608432,44.254991781367188,141.988331599161029 -68.241099591206932,44.253183817321606,141.985362210310996 -68.242334577718836,44.249104939508221,141.973980531096458 -68.241595448552843,44.241285195299334,141.949708045460284 -68.249702660932314,44.237005276508725,141.943134953267872 -68.267459232491973,44.235595198943855,141.952875665389001 -68.275217531479242,44.238661046932272,141.968289695680141 -68.277647661754102,44.242355911623442,141.981401630677283 -68.275509969751866,44.260236784958728,142.033868325874209 -68.262918140041137,44.262335367200706,142.030285749584436 -68.254943274185436,44.259397521107488,142.015098143368959 -68.247388182235383,44.259397573355869,142.009140250273049 -68.241931764251532,44.261915813330084,142.012464956380427 -68.237169905094319,44.267815415325785,142.026577582582831-68.49943699088152,44.371241847567354,142.546889925375581 -68.479583437124049,44.321120984957041,142.379738547839224 -68.490439718565383,44.315263096386666,142.370674766600132 -68.515972717827523,44.326354563064179,142.424513248726726 -68.531194343217848,44.335140175622044,142.463176157325506 -68.529435434681403,44.346161835795542,142.49505686480552 -68.521471651331865,44.359913923827165,142.530231860466301 -68.522730964465239,44.3691473189416,142.559104108251631 -68.519373319757506,44.382577753608167,142.596960076130927 -68.513497184952129,44.386355094668012,142.603681348264217 -68.508460465370447,44.386774837177811,142.600941024720669 -68.502164512620865,44.383836971428629,142.587069186381996 -68.49943699088152,44.371241847567354,142.546889925375581-69.029405772256865,44.250695562148117,142.609623375348747 -69.030249723875087,44.250114370744868,142.608556516468525 -69.041008873942161,44.235229772601919,142.572389518842101 -69.044414867128651,44.226586026421401,142.549066869542003 -69.043622704861605,44.216730349360049,142.518656861037016 -69.052625736657291,44.197477905290057,142.467842342332006 -69.053505357358688,44.189639949714476,142.444876938126981 -69.055361490916098,44.173100671881834,142.396404657512903 -69.062055628665576,44.167056819136896,142.383600520901382 -69.078592168321464,44.166601715723409,142.395735376514494 -69.08065117990283,44.162511833044569,142.385054439306259 -69.081794159942092,44.158326960003414,142.373336764983833 -69.080423938278656,44.145521383430228,142.33349493611604 -69.076482615892459,44.131550863116679,142.288015943951905 -69.081146602356171,44.119384223296571,142.255020552314818 -69.101679096592875,44.106089506903672,142.231594549492002 -69.101922954339827,44.095161859005486,142.198719464242458 -69.092815545995236,44.087295178867151,142.167445637285709 -69.089893444066803,44.086887212942642,142.163817772641778 -69.077267100718444,44.092195131094819,142.169553301297128 -69.057117498474625,44.09672312815794,142.166781456209719 -69.051628313690699,44.096449176157911,142.161464835517108 -69.044217031903187,44.093725317177388,142.147160526365042 -69.032691471864098,44.080597824503116,142.097987795248628 -69.049730807169738,44.064068238963863,142.061841871589422 -69.05137987037439,44.064714206269741,142.065147515386343 -69.051435950766461,44.069579161445972,142.079931712709367 -69.056906784169229,44.071051934908198,142.088867268525064 -69.065112993443719,44.071472678813244,142.096854687668383 -69.068690019956179,44.069158236098453,142.092770919203758 -69.080619725774838,44.056818253979365,142.065153451636434 -69.07458136068982,44.047697215581259,142.032571700401604 -69.081945846101078,44.042857915412071,142.02393751218915 -69.094991573708015,44.040543405271386,142.027612254954875 -69.113928829263543,44.03044398077752,142.012531497515738 -69.12655363970886,44.021186214317019,141.99483030103147 -69.128868176418706,44.018871780767327,141.989714502356946 -69.125290982795548,44.008982922530372,141.956796860322356 -69.129426974116583,44.007485469320414,141.955652473494411 -69.149699059959971,44.000145874561063,141.950052034109831 -69.163376077506641,44.000566579173928,141.962572630494833 -69.171161406450068,43.997200096657913,141.958768793381751 -69.194622467481921,43.977106554400997,141.917145662009716 -69.198620245630877,43.969111257240669,141.896186761558056 -69.194622251109649,43.961326422602816,141.869274404831231 -69.197147107500754,43.952068727208598,141.843263580463827 -69.204485246591176,43.94337106045581,141.822916478849947 -69.215022507527124,43.937148188152925,141.812719454988837 -69.238186213726621,43.93316115250957,141.819736921228468 -69.243528305113202,43.927030314441964,141.805539399385452 -69.260657208260639,43.922991941358127,141.80743563733995 -69.266076447981675,43.934958230635445,141.848235841840506 -69.268334528073751,43.945231194987322,141.881275329738855 -69.281317904059435,43.95900366772392,141.933789543807507 -69.283379342219632,43.959668587003144,141.937510899268091 -69.284817736051153,43.960132542607866,141.94010756444186 -69.289333614849056,43.959229389318928,141.941103282384574 -69.308596688571214,43.945015260614952,141.913929709233344 -69.315090894898006,43.944515230286946,141.91779066529125 -69.320571925936761,43.946434020795671,141.92815097887069 -69.305996763716138,43.958239355594124,141.951888246461749 -69.305122327165037,43.963631880037227,141.967517916113138 -69.322630004960033,43.971537881241325,142.005983116105199 -69.332232578947767,43.975874147979063,142.027081433683634 -69.35278378058365,43.976311232528964,142.045436523854733 -69.367524916733672,43.966318141753504,142.027370693162084 -69.37630118677734,43.966147552963776,142.034135987982154 -69.388882612075022,43.965903001412549,142.043839043006301 -69.399279056480012,43.973366683039671,142.0750940926373 -69.416989713373468,43.97882937714656,142.106362078338861 -69.429584859116304,43.959491916974621,142.058233075775206 -69.432510619952538,43.966108599818412,142.080720114521682 -69.437320506627813,43.968440461913545,142.091787715442479 -69.442421830165983,43.965817036196988,142.088082239963114 -69.451895474678381,43.943518196683932,142.028380163945258 -69.460462116704846,43.904880478508908,141.918336709029973 -69.48432358033179,43.881845060276547,141.868338763713837 -69.48706851613963,43.870683406148288,141.836750035174191 -69.504115640399363,43.839239314270635,141.755508145317435 -69.515714932033092,43.832864439724112,141.745842804200947 -69.517038057030788,43.838788235692995,141.764943182468414 -69.514093065075841,43.846356008620276,141.785464595071971 -69.521127214166555,43.870062906335747,141.863322572782636 -69.52549990593316,43.87720431295616,141.888653079047799 -69.544739399133846,43.883179658105483,141.922876825556159 -69.550278003071668,43.881576440208377,141.922646942548454 -69.55173550771616,43.879536019514987,141.917675647884607 -69.551443921976443,43.874143507136196,141.901068275794387 -69.545855331767569,43.862806239248243,141.861981770023704 -69.553433304729197,43.842912837035826,141.807930267415941 -69.558949778222072,43.842225608274056,141.810464152134955 -69.569152543674093,43.846014862440633,141.830518056638539 -69.573525130549982,43.84557760407835,141.832855027168989 -69.576294416729453,43.843537165520139,141.828981165774167 -69.579354970158121,43.824881972763848,141.774895707145333 -69.589379162596558,43.819926331606922,141.768251933157444 -69.605007396867563,43.815116955344159,141.766760374419391 -69.606756453260545,43.816428636774802,141.772213240154088 -69.605444821526319,43.827359414648249,141.804310493171215 -69.599323186382051,43.827067969881362,141.798287145793438 -69.593201635493813,43.832460528341294,141.809526501223445 -69.589995341088795,43.852864651692485,141.868784950114787 -69.595534066394436,43.860443273400904,141.896432110108435 -69.605445267542876,43.859568742464354,141.902091951109469 -69.614044523705729,43.846597501162549,141.869939371012151 -69.613898668834423,43.839018834873819,141.846810201182961 -69.615939126166353,43.833189076449123,141.83082356210798 -69.621914946428731,43.828379500149381,141.821238557808101 -69.631097534388346,43.838581483362994,141.859927186742425 -69.630514606746928,43.844994209572377,141.878903614357114 -69.635761750265416,43.84747180250988,141.890831881202757 -69.650628439294564,43.837852622843926,141.874129984527826 -69.653980495584804,43.81876019028595,141.818982571363449 -69.651648260776597,43.805351796881887,141.776297722943127 -69.654166901686636,43.792596760396755,141.739667905494571 -69.665752280098729,43.792599676154687,141.749428822658956 -69.686304301900748,43.817893694717426,141.84355940669775 -69.686410627110305,43.822112051507816,141.856456488370895 -69.693261077068343,43.825901335197038,141.873730294406414 -69.698070940893516,43.826630017421174,141.879994427785277 -69.698689544269627,43.826483234743769,141.88007006328553 -69.706670342478091,43.824589544894017,141.881047112867236 -69.71570517800744,43.811829680150865,141.849926552735269 -69.718636145766297,43.802612962012269,141.824411950074136 -69.7179060019877,43.793969251796881,141.797544485889375 -69.720555009146096,43.788251420750896,141.782411606051028 -69.753633662110417,43.757507192899006,141.716935910284519 -69.762420007293485,43.758567289463407,141.727586375549436 -69.780930632431904,43.756963977077056,141.738373104482889 -69.78326265912213,43.75536078263579,141.735474889166653 -69.783116867179146,43.752737401425314,141.727379167452455 -69.779327234558096,43.748656606873602,141.711769450455904 -69.779181444655364,43.746178966007442,141.704115452244878 -69.836157869041742,43.722692740030176,141.681006578728557 -69.839523756793938,43.706708243743456,141.635259694419801 -69.852132145750971,43.705149203191255,141.641224694438279 -69.855916285147259,43.706314137020506,141.647981564514339 -69.858762368932332,43.725482795403622,141.708677881397307 -69.85643043599444,43.734227426221231,141.733276356011629 -69.859782871724605,43.742097551089159,141.760039369575679 -69.869509255526097,43.74426778371059,141.774893531575799 -69.862991269540018,43.760528294832532,141.818756234832108 -69.870569097707602,43.777221666252309,141.875884202308953 -69.884903249588888,43.779600505541652,141.89527855347842 -69.888227631233136,43.778617918532618,141.895119402557611 -69.904001793251126,43.773955551677609,141.894369644112885 -69.916431236289768,43.77667737080305,141.913201069459319 -69.927850134234276,43.781739295333217,141.938279104419053 -69.949378181608893,43.767513431233567,141.91342265997082 -69.954085536431236,43.770371104750964,141.926106920465827 -69.9588953754036,43.769350864579138,141.927107440307736 -69.983414078143539,43.752366681043817,141.896448238752782 -69.98997118566524,43.744792882931371,141.879045556299388 -69.995319153133366,43.730017331763925,141.838736451230943 -69.993236063002669,43.728418399919107,141.832101276144385 -69.993455041355745,43.726359466362162,141.826033880934119 -70.002485235570788,43.719232635598338,141.812094542197883 -70.007794857997254,43.718631715352444,141.814804529771209 -70.006045983650665,43.729125256525158,141.845186743885279 -70.001964978393588,43.734955034599928,141.859407844953239 -69.999633033098888,43.741950744977849,141.878661755472422 -70.002548132832487,43.746031542742926,141.893541791476309 -70.04219288932245,43.739618541565406,141.907944758422673 -70.041609987866465,43.746614227803036,141.928684998303652 -70.035197054069684,43.760605661746695,141.965671967715025 -70.026452005478788,43.77109924379365,141.990044862031937 -70.006046824581688,43.789171623344515,142.027455929666758 -69.999050827734848,43.800248165571638,142.055085939355195 -70.000216939339595,43.806660889584201,142.075528588145971 -70.003715102404058,43.813656535209958,142.09972467739135 -70.011877282535963,43.812490552456637,142.10315147228539 -70.027035750016154,43.824149915768082,142.15143143478781 -70.027035840214808,43.830562625974423,142.170867406763136 -70.024120848674215,43.835809412462751,142.184280475601554 -70.007796640075824,43.84572010156937,142.200389385223389 -70.003715610453696,43.849800951471892,142.20927506685257 -70.00371567607786,43.854464755277711,142.223404606804252 -70.01071191881401,43.860877391629856,142.248792774043977 -70.020040106354244,43.860294361489345,142.254979472607374 -70.023688081067689,43.857807223583329,142.25055705755949 -70.032866266387273,43.851549665792923,142.23943177331239 -70.054437441701722,43.82997943991839,142.192495816387236 -70.053854321101085,43.822983772718167,142.17079723905772 -70.065514444849569,43.814822024816145,142.156024444848299 -70.067263578843153,43.821234744582632,142.176955755800009 -70.081838882757268,43.821234636944283,142.189418102614582 -70.108074299768191,43.810740890838389,142.180068234913051 -70.143637812845441,43.793251404630283,142.157535815611482 -70.15471490354895,43.782757793523622,142.13522763364017 -70.154714813129047,43.77634508388261,142.115783971734345 -70.17686908164535,43.762353533053258,142.092380490154028 -70.178618171493099,43.766434339328079,142.106259180232882 -70.173371186613821,43.775179000597809,142.128267700783908 -70.176286301121749,43.778676814441269,142.141376859508455 -70.190861541518558,43.773429941998074,142.137993642129004 -70.195525556668969,43.767600170471987,142.124327062629163 -70.198440440822068,43.754774707412466,142.087939262390137 -70.194942246790177,43.747196067607732,142.061942581087351 -70.195525219537046,43.743698216726905,142.051832848228514 -70.218845405209052,43.721545031202531,142.004685922525823 -70.220011369198545,43.717464203625092,141.993305152282119 -70.216513189760519,43.709302591755502,141.96551881544292 -70.217679158903721,43.706387720566809,141.95767448656261 -70.228756355841398,43.703472764634689,141.958369712345302 -70.232837494683096,43.706387608205254,141.97073572780937 -70.252659601047483,43.684817411028376,141.922340953722596 -70.254991564958644,43.678404673812075,141.904878894798458 -70.253808837688851,43.676576229150079,141.898304970003664 -70.248168713077362,43.67353950370947,141.884214216843247 -70.243135992011105,43.671110127216359,141.872492423281074 -70.24035928447347,43.667552791643942,141.859290329739451 -70.24096665947016,43.666251315711193,141.855860495939851 -70.242788823210688,43.664863064558375,141.853215117938817 -70.241834287057316,43.660698362071017,141.839738235808909 -70.223835858585602,43.640590305006171,141.763099651783705 -70.212049756091517,43.627333136378063,141.71262731961906 -70.217932539833924,43.598286058741671,141.62934700679034 -70.215214363936653,43.592014287560019,141.607916871085763 -70.201964879539375,43.588084516309252,141.584525628946722 -70.197755444458949,43.566716259033107,141.515843272209167 -70.206967637881633,43.559197441544107,141.500897127203643 -70.217626972640943,43.558444387880009,141.507806764915586 -70.220629143606601,43.563719189881972,141.526461341418326 -70.232808523691887,43.562688134190552,141.533842290751636 -70.245176794619923,43.553419351697343,141.516308652237058 -70.262763389768907,43.555257160267232,141.537113795056939 -70.27334346115866,43.564185574776964,141.573449619114399 -70.300031552816677,43.552158987498977,141.559945039451122 -70.308611742585484,43.54588513317492,141.548278852365911 -70.342641789916073,43.542054008535288,141.56612981390208 -70.353675232056389,43.537425038415222,141.561615144833922 -70.354241087138348,43.536975432204535,141.560737622901797 -70.362063259642227,43.530760241347011,141.548607585951686 -70.379972530232479,43.508772842931982,141.497210969217122 -70.385734559947878,43.497611173340637,141.468219798989594 -70.386464457265916,43.488602469287265,141.441405210644007 -70.383777127356154,43.471246070211166,141.386166487820446 -70.381081964108645,43.465802272531583,141.367224673740566 -70.373078577630778,43.456652638444687,141.33236091490835 -70.350531667163111,43.443605242939725,141.272951614111662 -70.36286302411402,43.440650250575693,141.274662856012583 -70.371362229487858,43.435706353318039,141.266976111568511 -70.385797481874917,43.420412759307631,141.232880073599517 -70.384829368278034,43.414513964485224,141.214034195058048 -70.391738447002538,43.404181260176806,141.188515009358525 -70.40088401385664,43.40150140390088,141.188306448981166 -70.402515254947403,43.402835939589508,141.193802580237389 -70.40726492466186,43.402516200877507,141.196968206204474 -70.422131332059351,43.397351264011284,141.194170412607491 -70.428521824698109,43.390828046329133,141.17983366176486 -70.425270208218521,43.381230782548656,141.147691514343023 -70.425835174411219,43.37750290371217,141.136800603941083 -70.443286978408096,43.358062680552656,141.092666036449373 -70.46156731621403,43.344825507955804,141.06820631492883 -70.466824997523361,43.341821800222498,141.063627772964537 -70.473783273644273,43.345547622991752,141.081100350245833 -70.486162706157145,43.347966449461914,141.099325615912676 -70.518546716175109,43.345612287745318,141.120503290556371 -70.536096179596967,43.338346401856818,141.113697405904531 -70.537554534430811,43.337180006030927,141.111413626931608 -70.554706570430909,43.323461765006492,141.084555942565203 -70.563631699997899,43.312190078744081,141.057950624264777 -70.586036854649635,43.271690279678509,140.953829808160663 -70.594759844424075,43.250872918788339,140.897825974039733 -70.591874103093332,43.239429357245129,140.860266961157322 -70.576638879913318,43.223437982754582,140.79790270049125 -70.577543850399962,43.219230118587788,140.785815485753119 -70.588665959934303,43.20143763892019,140.741121187806129 -70.619825455969377,43.165205636616136,140.657583703286946 -70.635307451921577,43.12918474594305,140.560816399753094 -70.635163371761763,43.123743932171266,140.544000963680446 -70.639207390611048,43.115764173684504,140.523096084594727 -70.655065640966455,43.100647783933574,140.490738469175994 -70.656174709819169,43.099590598143834,140.488475508987904 -70.657075671474274,43.094746756493933,140.474407752044499 -70.666810748450089,43.077817261143636,140.431059722788632 -70.673966895494104,43.071897409750534,140.419222241267562 -70.704789314148002,43.061204268997521,140.413707761093974 -70.757252695625425,43.081570457993585,140.522786598652601 -70.78496493644009,43.100544529065729,140.605616971850395 -70.820407605543124,43.124811484498174,140.71153367869556 -70.82895867538484,43.130666247525269,140.737084375694394 -70.834659106977966,43.148465598872292,140.796685840934515 -70.830033720893852,43.181943040331376,140.895072964951396 -70.829160488728476,43.188263287214845,140.913639953359962 -70.817091780403445,43.236573738759823,141.050691009499133 -70.818632863714811,43.238984645468626,141.059430424124002 -70.818724873737693,43.239487627731471,141.061049843207002 -70.82381906909265,43.241763512311998,141.072531647048891 -70.824169082510139,43.241919504394509,141.0733193885535 -70.825931147268022,43.242506471256192,141.076678805053234 -70.827571205075571,43.242877446353475,141.079269646666944 -70.828882251278301,43.243173426465432,141.081339032389224 -70.834510449626762,43.244444341072509,141.090224073268473 -70.84057775010568,43.251969040503262,141.118613134138286 -70.84007374564581,43.252800016148456,141.120704755187035 -70.864092711397788,43.266673365517434,141.184442572295666 -70.864091711520871,43.266684365152585,141.184475286863744 -70.910668792871064,43.308255607612843,141.352830421179533 -70.913323900796115,43.309862533248811,141.360096986405551 -70.917615040099349,43.319304074889367,141.392721683718264 -70.931647790269608,43.331141675905947,141.441320352256298 -70.953221545057644,43.335555363679234,141.473996262066066 -70.968095161383758,43.345348920463245,141.517108662985265 -70.985202170761085,43.377698699688565,141.630926710553467 -70.985172179573638,43.378384676794361,141.63298926781863 -70.988600499165116,43.393083155529631,141.680805356241763 -70.987679794269539,43.415833396576261,141.749235825613141 -70.965300918720772,43.474843583385685,141.908792143687606 -70.965409922024989,43.474829583028153,141.908846541307867 -70.964610081717126,43.477815775473452,141.917212165892124 -70.955623130556475,43.511368432113478,142.011174513958395 -70.963424733121471,43.535875552204992,142.092527264729142 -70.959826751974902,43.53919976253713,142.099422316998243 -70.956205596508795,43.542545383860869,142.106361847370863 -70.956214592735819,43.542262393260785,142.105510806664824 -70.954190700192186,43.554283006560347,142.140198146924376 -70.973585576761423,43.571819272910943,142.210629596374929 -70.980856623627218,43.674755920652032,142.528985080309212 -70.981629790838923,43.68570168904148,142.56279628444463 -70.982817761402913,43.702519847665585,142.614731781184673 -70.982849776997583,43.703524814033926,142.61780003271997 -70.983109928876573,43.71342448323815,142.647972164675593 -70.982954969950754,43.716602378899346,142.657444984652102 -70.98991429112111,43.793708371111208,142.896584003232419 -70.989940320145436,43.79399676032115,142.897477687336504 -70.992960745067663,43.887814740499451,143.183099347166717 -70.993861226154294,43.915784711642665,143.268142182379961 -71.002245129517988,44.094477790833672,143.812595484778285 -71.002213132533143,44.094751782136292,143.813389187678695 -71.009644830038454,44.259984351952561,144.31472370121628 -71.009616834829501,44.260366339794217,144.315840957686305 -71.011120684895047,44.286314648330098,144.394708437845111 -71.014372335732233,44.342420503555324,144.565090083517134 -71.029987957338221,44.611860850883474,145.380539114587009 -71.038407293279747,44.757132208440893,145.818297258578241 -71.060995116042221,45.021177726287149,146.616928122937679 -71.076537829116418,45.225603245510506,147.230552352033556 -71.085233398085379,45.306800668717351,147.475750027224422 -71.031462732045441,45.314159864922509,147.450764345936477 -71.015165256486981,45.318268866392827,147.44870584551245 -71.009947119111004,45.320529837738249,147.450813793577254 -71.003298039559866,45.329463614858305,147.471203145571053 -71.00598418532303,45.333052483280163,147.484016001224518 -70.991129767189165,45.337784454302025,147.48503855150193 -70.951719431777903,45.336037817248794,147.445967607200146 -70.918797983353173,45.313432771025795,147.351492087356746 -70.913069555124494,45.298277282799724,147.302200507372618 -70.91462554358823,45.294255394599411,147.291764442808926 -70.90887098506434,45.270826162280621,147.218196750618517 -70.897790190220874,45.243542091468662,147.128709689714015 -70.88592068475316,45.236384405383816,147.097511291503906 -70.857932667598803,45.230671800369841,147.056686925701797 -70.843735279007007,45.235933748411639,147.059914689511061 -70.84037222067343,45.239340669340812,147.067015491425991 -70.832501979600309,45.261565636112799,147.125412344001234 -70.80921256269086,45.327333199257772,147.298089814372361 -70.80855536132043,45.379625597736755,147.450532244518399 -70.824945110386679,45.39260107174028,147.502502509392798 -70.82650430718806,45.401811777155096,147.530761503614485 -70.799374789138881,45.426246240519284,147.578956220299006 -70.782362323857186,45.4326651768434,147.583171686157584 -70.754867355373662,45.429295494401394,147.549848143942654 -70.744966920448746,45.422597776554518,147.52182496432215 -70.74466476643272,45.413432059548633,147.494774667546153 -70.730861109714439,45.400866551969067,147.446256817318499 -70.713174383833618,45.392118957685696,147.405587264336646 -70.66091544520647,45.379409753365053,147.323879248462617 -70.652872165605174,45.37865483892881,147.31482423003763 -70.63554668956624,45.385116775192067,147.318998963572085 -70.627412784187172,45.408519121327018,147.380562052130699 -70.636384408576134,45.42932441504076,147.449035816825926 -70.651048145892531,45.445191816034743,147.507885502651334 -70.664588650011481,45.448555608029757,147.529227760620415 -70.676798143818274,45.454088344049694,147.555779450573027 -70.717222031183255,45.488413981380099,147.690434750169516 -70.724057585287966,45.509110297000724,147.756661140359938 -70.722501650915746,45.516562082057192,147.77708010468632 -70.701666235221296,45.53428070490488,147.811047164723277 -70.687421031297163,45.551493292243812,147.849142599850893 -70.689104308406399,45.565483853827359,147.891365068033338 -70.660175703680892,45.588382383798056,147.933560088276863 -70.565676621032011,45.65665105088312,148.052487622946501 -70.551925213494513,45.663385812129043,148.060495181009173 -70.470754174066172,45.703139383725684,148.107887545600533 -70.452387602089132,45.705932441774465,148.100589854642749 -70.398093606906457,45.758371283387518,148.207645674236119 -70.408634226041585,45.77515269760687,148.265269033610821 -70.418558890313889,45.796067992893448,148.334372163750231 -70.397246302623103,45.804200913930508,148.340170964598656 -70.39904338545729,45.805617857528865,148.345791460946202 -70.398092408108766,45.809069761383434,148.355026065371931 -70.388800277203174,45.820540489485985,148.380582368932664 -70.367903826762557,45.836490173459424,148.409453839994967 -70.343323271773642,45.853688848898557,148.438888722099364 -70.30868021212703,45.860436914755574,148.429613969288766 -70.28508562443217,45.873530705591115,148.447997391223907 -70.263536148368729,45.889349399505477,148.476007680408657 -70.254585085857613,45.904477017239884,148.512481809593737 -70.241058274667395,45.945223907769524,148.619469407014549 -70.253123856986107,45.956271486039881,148.661511730402708 -70.266292427016793,45.96418614903795,148.695382087491453 -70.312939141877251,45.973037525376022,148.75977538805455 -70.314248900400017,46.017875184011665,148.890719410963356 -70.311494576450713,46.066034778880216,149.02778219524771 -70.290665348529885,46.095815059964366,149.096618526615202 -70.28543924196812,46.100202970859939,149.104972491040826 -70.253295274482824,46.107710998031109,149.100064510479569 -70.238831443390396,46.148866896643106,149.207030003890395 -70.278920244384537,46.17648877324828,149.319926146417856 -70.291782854315244,46.187325354854146,149.361840039491653 -70.293623009318267,46.193086171251672,149.379984568804502 -70.208301365971522,46.332799742532558,149.712245472706854 -70.188932009501457,46.351498347569368,149.750142115168273 -70.175594692498208,46.359955204560798,149.763524358160794 -70.134251454226472,46.370389220818886,149.759634538553655 -70.057315603217802,46.418072429617666,149.833877863362432 -70.023899925469863,46.574964617044216,150.257247838191688 -69.997971098558963,46.696704862714881,150.584954680874944 -69.81943390593608,46.876501127430465,150.954863552004099 -69.567260295307989,47.126498042579833,151.466431454755366 -69.225290900966201,47.461145411852925,152.148607273586094 -69.147306994242811,47.450320299134169,152.057601027190685 -69.056329537925038,47.433735440082835,151.940413082018495 -69.043565999091811,47.428112690130021,151.914639867842197 -69.033772349820737,47.409369277024531,151.853927559219301 -69.031990209021359,47.404568421953783,151.838932689279318 -69.041653465026613,47.399542486894752,151.832109376788139 -69.04259648570104,47.398788500455304,151.830695824697614 -69.040143199441005,47.386514855420586,151.79397027567029 -69.044821340702327,47.385144857764352,151.79368491563946 -69.047311431909108,47.385396832098557,151.796318581327796 -69.054682544414234,47.376499020680541,151.776740232482553 -69.051195495796406,47.258087306941619,151.43751170206815 -69.041060955464644,47.246566701412995,151.396900681778789 -69.034316653519014,47.242450865839189,151.379978258162737 -68.982860523998355,47.221762823992378,151.281376627273858 -68.942804900177393,47.207716512593016,151.210505969822407 -68.927277223490933,47.199328860931445,151.17465244513005 -68.901840025411204,47.179988586786948,151.099950491450727 -68.854283605636141,47.194912527912642,151.105981506407261 -68.72401779368974,47.241038220850832,151.137866534292698 -68.581243553218513,47.288425970838396,151.164466415531933 -68.47569302194124,47.299003457055143,151.114874270744622 -68.362397966373138,47.357073694438775,151.195258787833154 -68.334518057431083,47.36153877611644,151.187103528529406 -68.28493731968139,47.361858129499105,151.150941953994334 -68.241002677486861,47.35568661868875,151.100557781755924 -68.224839018310035,47.349925894080165,151.072079451754689 -68.154339998578408,47.315509349381585,150.921390526928008 -67.956491263051532,47.201017925538558,150.447365663945675 -67.953091091075734,47.197618043711373,150.435116271488369 -67.950190779245659,47.184018439781461,150.39401728194207 -67.936689032168104,47.166320025354004,150.333328379318118 -67.889973683932851,47.120250634030363,150.166732346639037 -67.847681795975248,47.093883666613877,150.059871200472116 -67.817160553662802,47.082668195168907,150.005186245776713 -67.791329445006966,47.069401747130101,149.948070757091045 -67.79027532613523,47.064024903902755,149.931846004910767 -67.790189836549757,46.767017218193089,149.075967920944095 -67.790093723689353,46.759708425137795,149.054776842705905 -67.78291639376485,46.280884164368729,147.659409765154123 -67.78189249262428,45.944544993440125,146.674616134725511 -67.769505479427508,45.903511289744934,146.544826249592006 -67.764750288539986,45.831499452252643,146.329558175057173 -67.764562144435871,45.821831740027434,146.300973367877305 -67.781238657927261,45.817722745738628,146.301422436721623 -67.802785216433676,45.805062971099979,146.280386695638299 -67.807394248765576,45.796240200796952,146.257892529480159 -67.81868720038031,45.695225128210666,145.968812278471887 -67.806277727431933,45.681761337586828,145.919733956456184 -67.80410747760061,45.679406701766951,145.911149802617729 -67.75503765631386,45.669312344055882,145.844362082891166 -67.646598184791173,45.615120714729017,145.602763700298965 -67.562144034474301,45.596430855922335,145.484217200428247 -67.519363473443761,45.589450358732122,145.431590925902128 -67.500226805888147,45.588539517211238,145.414611048996449 -67.491705576420387,45.593013441580339,145.42149371188134 -67.489234535684218,45.596168364023512,145.428986568003893 -67.491843684410142,45.600442218178209,145.443577909842134 -67.49057567246409,45.602705159118329,145.449327641166747 -67.477486265704101,45.605682159663964,145.448378440923989 -67.456187543446433,45.606190290237315,145.434018055908382 -67.450455322088118,45.604385383465342,145.424410417675972 -67.426232163058287,45.580612260912403,145.336021054536104 -67.424426005236811,45.573679481000227,145.314150026068091 -67.421654611678306,45.552087147431187,145.248136294074357 -67.426453117922904,45.50444554585367,145.110509728081524 -67.449509011912724,45.512104158197332,145.150396266020834 -67.464261487794062,45.510044119373759,145.155291401781142 -67.504552588281186,45.49005044548079,145.12610761448741 -67.4741456780487,45.426858558685737,144.915891009382904 -67.461060152520091,45.421124821146726,144.88908789306879 -67.430778753363953,45.394496832317579,144.787377400323749 -67.422930303197901,45.381193288194147,144.741982834413648 -67.429938057353866,45.34578031309141,144.641922362148762 -67.460878522809423,45.302713409557583,144.536922913044691 -67.466610663968325,45.298757490737373,144.5294402949512 -67.486461260774547,45.292967531511465,144.527079056017101 -67.490111246240232,45.282816815307136,144.499598033726215 -67.464346861815059,45.245633122679152,144.369534105993807 -67.405981811784017,45.167224912263592,144.091972927562892 -67.35507759798368,45.131426352236744,143.946985257789493 -67.345775232311269,45.127750527659529,143.929050334729254 -67.340640049499001,45.127134581200949,143.923373349010944 -67.306242139180782,45.1463662245053,143.955164507962763 -67.303338262956373,45.162887738748069,144.002351454459131 -67.291373209582659,45.189128017698671,144.071790563873947 -67.284389031655678,45.193560929457668,144.07982440199703 -67.271845592015111,45.192620042727242,144.067682319320738 -67.162012474026724,45.164419642124749,143.901927212253213 -67.129698963363026,45.133709797502256,143.786197987385094 -67.11317713637105,45.113865515432991,143.714614198543131 -67.0915478204506,45.070264996507063,143.56810178142041 -67.106661295404066,45.067329985738851,143.5704928021878 -67.118450575875016,45.058274185065329,143.552098276093602 -67.100510810375852,45.046554664786974,143.50370857026428 -67.082835005324881,45.031153256004558,143.444475932046771 -67.075674624838996,45.020799622116172,143.408143017441034 -67.073513406810221,45.009874972646884,143.37378877773881 -67.069034157873688,45.002560227629502,143.348539299331605 -67.055369505374188,44.988310757388298,143.295690330676734 -67.039057406468757,44.946981140275348,143.159578437916934 -67.034232170137713,44.941471342406203,143.139464871026576 -67.002874828613841,44.920385201719803,143.052950683049858 -66.991693435962972,44.919384306730848,143.041687206365168 -66.9852221470899,44.914106512703682,143.021049508824944 -66.984313994619342,44.90482680561535,142.992486676201224 -66.986656993838267,44.898699979598469,142.975797762162983 -66.989991098188611,44.898029978251685,142.976245164871216 -66.991106953581848,44.884101401884791,142.9351890925318 -66.981763378389971,44.864364074969522,142.868921552784741 -66.978897204716219,44.858514275199624,142.849204636178911 -66.993715605418672,44.850732418411695,142.836737243458629 -66.997278667023963,44.846205535211574,142.825748568400741 -66.987073007690483,44.822209347318044,142.745971714146435 -66.975763557114135,44.817047582340258,142.722069891169667 -66.967222314189712,44.820615527976962,142.726503918878734 -66.95286584074266,44.821622591506774,142.718935925513506 -66.95064873105855,44.818971688441415,142.7093162573874 -66.951322716386329,44.816091773415664,142.701140401884913 -66.961821977486125,44.808821929901931,142.686996823176742 -66.970780260747915,44.807265919087094,142.688928081654012 -66.977014505887183,44.809867797075029,142.701371840201318 -66.980462610262364,44.808912803960418,142.701044282875955 -66.990105825082438,44.800333006837953,142.682332465425134 -66.995908921163505,44.792626208058643,142.663409712724388 -67.020705504638755,44.772980655232637,142.622578836977482 -67.02690567242054,44.769752714689851,142.61744664888829 -67.044106213758383,44.766624698222309,142.620775648392737 -67.055916786665861,44.772995259743332,142.64873552788049 -67.062996347806887,44.771095934717913,142.64826812967658 -67.06406479992468,44.759791778813387,142.614998259581625 -67.074195930154701,44.743511219012561,142.573453556746244 -67.08423424278179,44.741453216629154,142.574711665511131 -67.093300066474001,44.744246867700198,142.589874663390219 -67.099688939333575,44.742865532054921,142.590463754720986 -67.104714642140024,44.718998781314674,142.522248134948313 -67.129550193967646,44.696976304325936,142.474330107681453 -67.139967525339415,44.695404284281715,142.47735713981092 -67.148819697243866,44.68566952981265,142.454594776034355 -67.155877744080115,44.670995941935033,142.415587953291833 -67.155237705175182,44.669669987681296,142.411108415573835 -67.170616145881667,44.663661073568328,142.404462928883731 -67.182544368569566,44.6652550150962,142.418190760537982 -67.187371231443819,44.664205730611229,142.418634044937789 -67.19282759256771,44.65707078956342,142.401182634755969 -67.192197905325131,44.649306327906785,142.377275082282722 -67.190186590029342,44.647089462450325,142.369077919982374 -67.213785303678421,44.640776503261499,142.367688341066241 -67.235035993992952,44.638757425019712,142.37752044852823 -67.248021629184308,44.643220303922092,142.400731602683663 -67.252009033275797,44.642380874650748,142.401189740747213 -67.274884011434011,44.627901055431103,142.374656903557479 -67.277821996015902,44.619507021453828,142.351522079668939 -67.273837957865879,44.612429992256907,142.327158342115581 -67.279922109392061,44.608339080105807,142.319377140142024 -67.29416549096581,44.60082222112085,142.307386779226363 -67.303189769549491,44.598880221870488,142.308312040753663 -67.315701202637243,44.599772110265292,142.320424858480692 -67.323733619595131,44.610950705454584,142.360229654237628 -67.323254643607086,44.614014612451186,142.369119392707944 -67.311508257757708,44.61476866729803,142.362551967613399 -67.294427958626727,44.63587211923582,142.413406873121858 -67.293225103389943,44.650010684016465,142.455168895423412 -67.29921238292583,44.655932458438016,142.477536121383309 -67.310390824653638,44.660871228970294,142.500840023159981 -67.308672933990792,44.692849504379879,142.595978206023574 -67.300908042829604,44.698305655867721,142.606590425595641 -67.299940140273591,44.707258755368038,142.632848300971091 -67.309302740576967,44.709007969565285,142.645153725519776 -67.348547192979865,44.701033394757459,142.650638684630394 -67.356731876914807,44.700613632405862,142.655536501668394 -67.377508178681481,44.683405779690304,142.619331307709217 -67.381915157135126,44.671024583470455,142.585331249982119 -67.379816467476289,44.667037441826466,142.571726862341166 -67.374779698705595,44.664519271581206,142.56033500097692 -67.368063918555862,44.654026801261523,142.523627975024283 -67.36392326781079,44.633380732420974,142.458221459761262 -67.369034345999168,44.626227922619265,142.44049284979701 -67.378319594160047,44.621313014658661,142.432667659595609 -67.387371059861636,44.62852986223583,142.461279037408531 -67.389469687347017,44.628110148867577,142.461597263813019 -67.3966048845611,44.614469837548747,142.42582381144166 -67.399752702931707,44.604187155602261,142.397165288217366 -67.406258375147502,44.595793102079377,142.376742432825267 -67.412581448013256,44.598510501130626,142.389727703295648 -67.419689784082394,44.605026420366123,142.414773240685463 -67.421368756564632,44.609433267776765,142.429344164207578 -67.429133735440601,44.6106923134667,142.439018584787846 -67.444453758595415,44.607334608171925,142.440481818281114 -67.448231274907045,44.604816378993064,142.435742621310055 -67.449280556754914,44.60187846482215,142.427670453675091 -67.458514539754646,44.59957005267762,142.427699134685099 -67.493142337709656,44.619505592177291,142.51410823687911 -67.49440166163707,44.630417805776034,142.54797709081322 -67.506573870755332,44.638392034651488,142.581259218044579 -67.523572800566797,44.634614618230408,142.582774835638702 -67.524831894248877,44.628109250440772,142.564114761538804 -67.531547482953371,44.623492496732332,142.555294254794717 -67.534695438992514,44.623072776203948,142.556420788168907 -67.540991417931934,44.627899287660455,142.57576110586524 -67.544139382305019,44.628109120112846,142.578786951489747 -67.551904283320255,44.623492359289116,142.570769960060716 -67.553163440635331,44.621183992539883,142.564766596071422 -67.575827956622319,44.562215922488221,142.404099850915372 -67.570607232833765,44.558344701360333,142.388433530926704 -67.563091751300647,44.540992299079868,142.330305538140237 -67.568929837660718,44.532674522032728,142.309630606323481 -67.649279825280544,44.526960599996642,142.353735795244575 -67.653896831026145,44.527380259810364,142.358535903505981 -67.657674519622901,44.537453048013724,142.391843318939209 -67.661452088967962,44.539131819306839,142.399802862666547 -67.686635749686715,44.538711957457203,142.417819488793612 -67.697128901413109,44.535354276225355,142.415724411606789 -67.703424746074788,44.529478428187147,142.402811665087938 -67.699647029509961,44.517307136031363,142.363161877728999 -67.704263893126267,44.506394900997698,142.333744624629617 -67.714965107461836,44.496795472595572,142.312958476133645 -67.723651598509377,44.500081503899786,142.329554587602615 -67.73476194087506,44.497809500269888,142.331225286237895 -67.744129270366727,44.498975399752204,142.341945358552039 -67.743565367677846,44.507733126732646,142.367962858639657 -67.740852313450773,44.510501057697553,142.374237203039229 -67.743718584596124,44.52800921938541,142.42930244281888 -67.754631719794475,44.545216853721932,142.489622721448541 -67.759668509966957,44.548154722136886,142.502357948571444 -67.768063079481806,44.549833461882017,142.513875113800168 -67.774778709276575,44.548994017697183,142.51650561299175 -67.780235120288623,44.54521667939369,142.509305012412369 -67.78275335910979,44.535563555825739,142.482113536447287 -67.782333453807169,44.522133151411282,142.441254365257919 -67.798038386791887,44.52224129753602,142.453670725226402 -67.803319882236039,44.525490602072288,142.467545587569475 -67.806258054403074,44.531366387237213,142.487541522830725 -67.806258149499058,44.538501298262396,142.509071532636881 -67.809616065081201,44.545636186460641,142.533184225670993 -67.830602644559846,44.559066450910294,142.589862309396267 -67.840676122751702,44.560325487918092,142.601424045860767 -67.84529309322653,44.557807244746108,142.597390087321401 -67.846552215204312,44.553190536543099,142.584438196383417 -67.844033730096783,44.544376845729602,142.555911936797202 -67.857464763540875,44.525490232538139,142.509295934811234 -67.854526316967949,44.499049138158668,142.427220801822841 -67.852007886633416,44.494012748845918,142.410069780424237 -67.852427512501137,44.486458136287638,142.387581521645188 -67.856358781389659,44.48023322824239,142.371818757615983 -67.861773948062535,44.479133226095108,142.372680624946952 -67.867581065714731,44.473369368962416,142.359760099090636 -67.869554044663559,44.466829562648634,142.341530852019787 -67.869654936327322,44.458438827846905,142.316259559243917 -67.852542988936946,44.430253838497265,142.217844167724252 -67.85247592808976,44.425840979008818,142.204450296238065 -67.855886977832029,44.420993109640854,142.192429365590215 -67.869635542939363,44.426231018385451,142.2189014935866 -67.879289422055038,44.437143162790804,142.259358404204249 -67.888103669574349,44.434624899574061,142.258569596335292 -67.88810358024088,44.427909688866897,142.238270959816873 -67.892813083078465,44.411227167773262,142.191479594446719 -67.900351127933348,44.395637611721838,142.150172513909638 -67.912447695587517,44.420774620883201,142.235562357120216 -67.914126746874615,44.431686819571325,142.269848734140396 -67.922101613944179,44.434624667167725,142.284910109825432 -67.927138331447054,44.43336552714328,142.285010528750718 -67.931335565429279,44.430427596291906,142.279387025162578 -67.928397371147639,44.422873015622649,142.25427408516407 -67.93223443006606,44.41340682906047,142.228634612634778 -67.937312591019165,44.412745815315077,142.230577146634459 -67.948124508855415,44.417416775594795,142.253090887330472 -67.956519068741102,44.417836417244082,142.260878421366215 -67.957871611673824,44.416966965860325,142.25930090714246 -67.962395205552312,44.414059076682527,142.254025236703455 -67.962395026539625,44.40062865586799,142.213421584106982 -67.979658684299778,44.388593293185629,142.190450324676931 -67.98645090962124,44.388476250359489,142.195380640216172 -67.998071860360142,44.401467817719563,142.243705574423075 -68.00142977815851,44.408183013169825,142.266618536785245 -68.006886269861695,44.411120861468788,142.27974571287632 -68.011503257589339,44.409022342289575,142.276997663080692 -68.020317398024233,44.398529763103873,142.252146276645362 -68.014773900123018,44.391813949921548,142.227523999288678 -68.035007394331785,44.362015742498684,142.153178535401821 -68.040463852209612,44.362435404128391,142.158704889938235 -68.045080828603218,44.359497470642467,142.153420386835933 -68.045500457355928,44.352782266066157,142.133432527072728 -68.043821450738577,44.345227669668404,142.109263828024268 -68.050118285932868,44.332290603585463,142.075028481893241 -68.061140670342908,44.33354848775393,142.087445555254817 -68.067831942916442,44.337252323622081,142.103883009403944 -68.076851407032535,44.349484871519216,142.147944249212742 -68.078659229476202,44.374606447933409,142.225336875766516 -68.087053836352567,44.377963999237529,142.242048662155867 -68.090831315342299,44.372927567783243,142.229773700237274 -68.093769403149111,44.372507848462739,142.230801691301167 -68.104604830357673,44.386669495957506,142.282087004743516 -68.113077288221263,44.40314583967772,142.338505591265857 -68.113497279394792,44.422871736153439,142.398423821665347 -68.117274932943189,44.430846017969628,142.425459914840758 -68.120632972932839,44.447214334359835,142.477504961192608 -68.120213432752081,44.461064449765075,142.518980613909662 -68.116016272692832,44.469458478077406,142.541030906140804 -68.118534735831048,44.476593370792195,142.564525830559433 -68.123991255506283,44.480370633708866,142.580184599384665 -68.151693315061863,44.483937913649463,142.6126041514799 -68.160087821482946,44.480999953328464,142.610311415977776 -68.163445621341637,44.478901426166772,142.606610048562288 -68.163865283068532,44.474704399143491,142.594278967939317 -68.171840071067933,44.471766441750717,142.591660792008042 -68.195344858195682,44.473445075671194,142.615140376612544 -68.190308214829273,44.480160345866821,142.631445641629398 -68.190728034514322,44.486455838514765,142.650759087875485 -68.192826709119657,44.488974035230356,142.659996640868485 -68.214652619626065,44.494010290230285,142.692290289327502 -68.224725997693895,44.488554106828779,142.683743722736835 -68.228083729263759,44.48141917340805,142.664867050945759 -68.225145425726538,44.465890268169339,142.615730661898851 -68.230182140249667,44.465050834947881,142.617152960039675 -68.245292444464667,44.472605331088374,142.651802879758179 -68.253267428664657,44.484776608170748,142.694765169173479 -68.262501455132394,44.48561594235656,142.70455148909241 -68.268797197930553,44.473024875168072,142.671541278250515 -68.271315413856712,44.461273249018369,142.638084910809994 -68.281808486362507,44.452879160774692,142.621024203486741 -68.299017291949667,44.450780553611914,142.628243469633162 -68.299856595433155,44.439448630547602,142.594722639769316 -68.29565925039438,44.434412253933857,142.576221578754485 -68.269216503923445,44.441967054468925,142.578198053874075 -68.248230027098259,44.434832290503337,142.540164676494896 -68.245291888327415,44.431474701597431,142.527722136117518 -68.244452302577884,44.422241302306496,142.49919309746474 -68.25074817616489,44.419303356679748,142.495275191031396 -68.250748136502409,44.416365454725231,142.486406357958913 -68.216330148905485,44.392023079752121,142.385841301642358 -68.210453996063592,44.394541323177826,142.388832206837833 -68.204330254881882,44.393922576616049,142.382153810933232 -68.197726953759258,44.387909813711808,142.358804021030664 -68.185321308817578,44.370703447522814,142.297069221735001 -68.175475637882755,44.345163329800855,142.212123807519674 -68.174396398137205,44.329956822517474,142.165281623601913 -68.192712717451698,44.308235389861252,142.113947699777782 -68.234224857275251,44.290138681640656,142.091840464621782 -68.275930093415184,44.290455185184861,142.125675831921399 -68.290200773222907,44.285418697898479,142.121697681024671 -68.299014951149459,44.277864029870003,142.105794400908053 -68.299434539835417,44.268210916871418,142.076906045898795 -68.298432191144599,44.264596451111935,142.065171655267477 -68.296056992279816,44.263282625148612,142.059317344799638 -68.29160965712984,44.249234628483457,142.013264996930957 -68.318379805451997,44.226663132925687,141.966061209328473 -68.340290503887715,44.224455051860929,141.976717731915414 -68.343925171654277,44.231067152550757,141.999625978060067 -68.366157564447676,44.239432391647625,142.042577316053212 -68.370552783619317,44.244872186613975,142.062533043324947 -68.378776114059562,44.249123993098543,142.081925826147199 -68.390642501661929,44.248626926527052,142.089833327569067 -68.402062950838939,44.253804681035071,142.114569128490984 -68.420445863291846,44.276171836187501,142.196844833903015 -68.422098051260008,44.286027509035272,142.227968496270478 -68.426903354650392,44.296661135144689,142.263941494747996 -68.431742563133383,44.300182988699007,142.27843274269253 -68.431649307689582,44.31416722055409,142.320634422823787 -68.412761692278693,44.323820458792419,142.334824303165078 -68.409823644577259,44.327178079815305,142.342641893774271 -68.410663148531867,44.330955373578846,142.354722728021443 -68.422415628206011,44.33767049279934,142.384334146976471 -68.422267372529561,44.33931206485618,142.38917623180896 -68.410663512207833,44.357816203082535,142.435872191563249 -68.406885971852205,44.358235928497656,142.434146135114133 -68.397348036659878,44.365498264813127,142.448523074388504 -68.396312824453773,44.371118012939824,142.464673816226423 -68.398831518191301,44.377747740850523,142.486686421558261 -68.368360480166572,44.392266174609645,142.50640501268208 -68.364515119811557,44.390491546000732,142.498007372021675 -68.361113487706774,44.391231009915572,142.497550585307181 -68.35889505851533,44.393893008461205,142.503833186812699 -68.359877105727151,44.404403285885458,142.536333880387247 -68.37324154641972,44.425245136488549,142.609784128144383 -68.379897022889622,44.431604277504782,142.634227014146745 -68.388475096122093,44.432491542550089,142.643685735762119 -68.391728790088848,44.428942208863347,142.63555402122438 -68.393355534605945,44.419625260568488,142.608736832626164 -68.417209425730903,44.399528918580913,142.566987779922783 -68.422580583395018,44.397966930828709,142.566529991105199 -68.428671791528515,44.398355875900414,142.5725311152637 -68.434699056583327,44.403089683027723,142.591592472977936 -68.433354359264257,44.428149230761719,142.666116692125797 -68.43044611295177,44.440690987795222,142.701629729941487 -68.440080367205297,44.449597374438881,142.736111192964017 -68.448805645329685,44.451051430795218,142.747408212162554 -68.455894885132423,44.449051972414757,142.747001411393285 -68.460802787643033,44.444871356749225,142.738292042165995 -68.464619994635854,44.438146048635275,142.721046665683389 -68.459648031747093,44.413696170896621,142.643375887535512 -68.464905015373006,44.399633581929393,142.605127038434148 -68.465060925364355,44.392636803755984,142.584140215069056 -68.461870698713284,44.387194854236498,142.565185957588255 -68.461870601707417,44.380059953524672,142.543652774766088 -68.466907318061715,44.378800821058384,142.543851907365024 -68.479079436693794,44.379640134077732,142.556053983047605 -68.484116307228334,44.389712909394312,142.590452336706221 -68.481598058065856,44.398946323282701,142.616309384815395 -68.473623322796669,44.405661597167537,142.630233481526375 -68.481178820295796,44.434201148610697,142.722294914536178 -68.486215568675547,44.435879942325613,142.731354636140168 -68.495449511832277,44.431263146694619,142.724770719185472 -68.500486033500479,44.41573420373151,142.68195184879005 -68.506362185547914,44.413215967936686,142.679028827697039 -68.515321208177099,44.414894701537236,142.691214575432241 -68.530706228294548,44.400624791809143,142.660421572625637 -68.535323209990651,44.399365654012605,142.660299344919622 -68.55588994227773,44.405241313214539,142.694398783147335 -68.561766117094066,44.404401873758424,142.696549932472408 -68.565963341959034,44.400624544317985,142.68850492592901 -68.567222462218098,44.396007821096411,142.675586154684424 -68.565543426312615,44.386774436764078,142.646398693323135 -68.560086817565121,44.375862266506765,142.609128715470433 -68.550852773432737,44.373344128735049,142.594169954769313 -68.546235545810774,44.356556149572157,142.539824299514294 -68.554674296215069,44.347812606106508,142.520158021710813 -68.564010426503302,44.334595962926983,142.487700988538563 -68.567737340197723,44.319160430343409,142.444059223867953 -68.567004253303608,44.314564582511501,142.429591479711235 -68.564806112471175,44.309579757433141,142.41277757845819 -68.55703675646464,44.302377042442814,142.384813217446208 -68.539395157993454,44.301460195416482,142.367966593243182 -68.532331794207636,44.291946549482894,142.333579801023006 -68.533065763659351,44.287898673984543,142.321929285302758 -68.529410503609597,44.277676027078144,142.288108260370791 -68.520315051547342,44.26660544555812,142.247377078980207 -68.520617996094458,44.261768598526224,142.23298941552639 -68.530601183771068,44.251153869166721,142.208844556473196 -68.528952016256554,44.242823148040166,142.182324063032866 -68.524278787501544,44.23737935547063,142.162122139707208 -68.526100720359295,44.229114305345817,142.138562896288931 -68.535394408863993,44.23089141969399,142.151360393501818 -68.551602022438658,44.238094175677006,142.186100591905415 -68.551962205787447,44.23989489225989,142.191836707293987 -68.563487689488099,44.249618678036903,142.230462110601366 -68.573572427211317,44.254300479916466,142.252683045342565 -68.604186921298307,44.276269016667698,142.343589418567717 -68.616432601000952,44.276989215560889,142.355566355399787 -68.626877516802878,44.282031136387467,142.379166642203927 -68.628318248477896,44.285992714103223,142.392291678115726 -68.63083942761611,44.287793415597015,142.399751719087362 -68.683784165217915,44.300758213041895,142.48135690856725 -68.726463665058404,44.323147185562064,142.583220425061882 -68.733811002055276,44.3299439161907,142.609636019915342 -68.746971476668776,44.332703734895382,142.628542517311871 -68.762828981597778,44.331152672382352,142.636617152020335 -68.76700508471626,44.328570725452884,142.632187405601144 -68.772297171170521,44.3220788957737,142.616858672350645 -68.795871779236819,44.309416134373627,142.597634800709784 -68.828006903876073,44.313715768969203,142.63652594294399 -68.829187003370791,44.31810462004858,142.650720063596964 -68.82622915295876,44.336102064960514,142.702622480690479 -68.822121223902329,44.351148612863497,142.74468258023262 -68.818457150531188,44.354647526996963,142.752277827821672 -68.815621181820532,44.363748256262724,142.777427512221038 -68.819513488620643,44.376630817147301,142.819391719065607 -68.822578057865755,44.410492714925383,142.923868966288865 -68.816136108460753,44.429632150729184,142.97630819119513 -68.802444746488618,44.436355033826949,142.985527813434601 -68.786708608021726,44.464162260688781,143.056558183394372 -68.784489690184856,44.475429918241197,143.088671902194619 -68.797017265487241,44.472988101610056,143.091393489390612 -68.810870496216751,44.470287894347642,143.094409650191665 -68.829965040992377,44.463792965163876,143.0902368593961 -68.859805792544535,44.446474303972273,143.06217523291707 -68.881084266225741,44.429663687887981,143.02875560335815 -68.887304508345295,44.432227561905947,143.041492221876979 -68.891639753865206,44.439546297896733,143.067013825289905 -68.893613894666345,44.444966111240149,143.084913179278374 -68.892886893566995,44.446626063569219,143.089319864287972 -68.897918138010454,44.452193850466955,143.110129843465984 -68.901748284948653,44.453612777999616,143.117490214295685 -68.928267109771369,44.449589716910026,143.126816253177822 -68.932749128601529,44.440240982635352,143.102320889011025 -68.947397481659564,44.430659183353562,143.085346784442663 -68.983265631483036,44.427746019936819,143.10563337802887 -68.99158375207962,44.416584316365366,143.078798082657158 -68.985220288486829,44.398430941099122,143.019008288159966 -68.979630956678534,44.387892317523175,142.982751296833158 -68.968115502148734,44.382658566927027,142.957656290382147 -68.961926213241739,44.376628803741248,142.934481585398316 -68.948978517899448,44.357435509616352,142.866173016838729 -68.955279286093159,44.325604483358127,142.775346505455673 -68.959703298540191,44.315907762444589,142.749698774889112 -68.979819715486087,44.297882196833655,142.711667702533305 -69.004497508323226,44.296137076709691,142.726458319462836 -69.005886270582508,44.275626725015194,142.665716922841966 -69.017866432166755,44.258642185061476,142.624212141148746 -69.029405772256865,44.250695562148117,142.609623375348747 + + + Massachusetts + + + Massachusetts + 0400000US25 + 25 + 7800.057999999999993 + + -70.821838776392966,41.588902957846081,135.926866627298295 -70.822580436209279,41.585290367984236,135.916095794178545 -70.82274768599585,41.584475702196507,135.913666779175401 -70.830924974272648,41.587019550218756,135.929185728542507 -70.838470490873519,41.59700844239002,135.967715512029827 -70.838985330390472,41.597689996308375,135.97034418489784 -70.839290509887931,41.598093998478703,135.971902357414365 -70.835367171876939,41.604243640694897,135.987802363932133 -70.832882800135536,41.608137773040411,135.997869970276952 -70.832639997456795,41.607905933157319,135.996914290823042 -70.828863103051688,41.604299569492234,135.982047900557518 -70.828236452627635,41.603701212990899,135.979581236839294 -70.824572946357918,41.600203117861277,135.96516025532037 -70.821755717465777,41.589307533951747,135.92807280831039 -70.821838776392966,41.588902957846081,135.926866627298295-70.597109214682845,41.473545373590127,135.356458466500044 -70.575678498790609,41.469899660900332,135.325459808111191 -70.568184302198759,41.47284860738818,135.328056151047349 -70.564108148361896,41.470767712579566,135.317750145681202 -70.55410463017698,41.454596374166861,135.257257892750204 -70.553770498250387,41.445035725313829,135.226533100008965 -70.556415421946312,41.43252416287568,135.189104435965419 -70.553923256157432,41.425594433782635,135.164788248948753 -70.548393980483837,41.4174737700801,135.13392755202949 -70.539127607621168,41.410884077371932,135.104556917212903 -70.529407251670321,41.406743298468477,135.082574877887964 -70.518409891450233,41.405412426049594,135.06839085649699 -70.507809515821378,41.401885630983386,135.047573022544384 -70.50319726761343,41.393648965082463,135.017159536480904 -70.502131150701189,41.387035214499967,134.995118365623057 -70.499784064129855,41.385983269790323,134.989644390530884 -70.491582799179199,41.385278354358327,134.979987071827054 -70.485327637438857,41.387934302090642,134.982802252285182 -70.473428428065091,41.400771918184063,135.01297177746892 -70.473859563241447,41.410400563362579,135.044040437787771 -70.471612545115974,41.414518429082896,135.055131408385932 -70.46465740710812,41.420788250003206,135.068829097785056 -70.451255008028824,41.422346289140499,135.061705883592367 -70.447056570891249,41.398124203781023,134.980741755105555 -70.450091463061781,41.382066768938657,134.932292423211038 -70.449085094195482,41.355296755380898,134.846009340137243 -70.451907113138986,41.349806936143068,134.831041863188148 -70.496986498413804,41.348097676039487,134.866311893798411 -70.539119844475863,41.350603282195294,134.912428106181324 -70.599984746487337,41.350916833450469,134.968607474118471 -70.710657099367978,41.343367312465688,135.045205174945295 -70.734084759023986,41.337870344735798,135.049049202352762 -70.748373124050914,41.331596471518814,135.042091747745872 -70.765020499113035,41.320350763686776,135.021445761434734 -70.768847532362315,41.313603983610676,135.003431336954236 -70.766998436703119,41.310607106989636,134.992185125127435 -70.769519448245617,41.305347281860932,134.977715477347374 -70.776497630750512,41.302627331265306,134.975420292466879 -70.802916620958882,41.315851654531201,135.04175334982574 -70.820249325958372,41.328856051707923,135.099067686125636 -70.839612183696602,41.348852177875358,135.180504908785224 -70.834637107821464,41.355028987542831,135.19562213588506 -70.813143469018783,41.357388056990558,135.183464427478611 -70.801123070026222,41.355443215404435,135.166275774128735 -70.784124464700369,41.349472557391067,135.131715971976519 -70.77580722295167,41.350819568243828,135.128407223150134 -70.769734085758216,41.354889463054704,135.135825308039784 -70.730057417081227,41.39937012174525,135.241270255297422 -70.725198281119589,41.400584112495686,135.240706404671073 -70.713264035495882,41.410491836538426,135.26136989146471 -70.712325090562359,41.417101601731105,135.281549564562738 -70.7022099725191,41.432566109889741,135.321545081213117 -70.687712653171971,41.442974834644019,135.341466899029911 -70.650160733127322,41.46270838592234,135.370106121525168 -70.60438457553532,41.484023939274927,135.396364240907133 -70.599273400140603,41.482791021056109,135.387814838439226 -70.597109214682845,41.473545373590127,135.356458466500044-70.092953267296821,41.299391330830808,134.348075242713094 -70.082882969043183,41.300743352266963,134.343429937958717 -70.063375478022905,41.310376136920652,134.35687802452594 -70.046898122395007,41.323300779877719,134.383559257723391 -70.0321418794001,41.340981237054748,134.426977454684675 -70.029615539410273,41.361567119782528,134.490530139766634 -70.031734613011068,41.369100747387861,134.516483205370605 -70.035972631767493,41.373809246444118,134.535288742743433 -70.039268877770382,41.378046905192797,134.551752500236034 -70.046396875017876,41.38524551966897,134.581074623391032 -70.05037505311239,41.389547334629533,134.59834564011544 -70.049863977865542,41.393349546325716,134.610032548196614 -70.034324704582488,41.387463988838292,134.577439786866307 -70.019256174648021,41.370277973146024,134.509167446754873 -69.961083906196649,41.280382954029228,134.170028612948954 -69.960987728551075,41.266198474560959,134.124515692703426 -69.965228738511286,41.256222810626625,134.096320986747742 -69.966531753397348,41.254118878661515,134.090736353769898 -69.975806981159081,41.249044999784267,134.082710633985698 -70.002393713815636,41.241006108344358,134.080564678646624 -70.016033123233953,41.239617063624515,134.088237701915205 -70.053616356498964,41.244337626375582,134.136801247484982 -70.084049328973322,41.246052349384385,134.169405720196664 -70.097777714166568,41.242502383062643,134.170276370830834 -70.119480410893289,41.244003175087599,134.194447669200599 -70.171494203513703,41.257532311497719,134.284234829246998 -70.237990169471118,41.284374016635631,134.429640690796077 -70.256980451991993,41.289772692295408,134.463927898555994 -70.267592706625223,41.296102265013879,134.493682113476098 -70.274295225079769,41.30317651617483,134.522307842969894 -70.276343298413551,41.312112468646802,134.552703701891005 -70.261449009166355,41.311740236375819,134.538156495429575 -70.25009206193613,41.307272340616862,134.513696348294616 -70.245251392498446,41.304852221412183,134.501622543670237 -70.24096918983831,41.297033284281177,134.472789481282234 -70.230356938291891,41.291820710919659,134.446615011431277 -70.209504942685655,41.291820858568286,134.427944026887417 -70.197118485199013,41.2962617099314,134.43106150906533 -70.125272229812751,41.295501245440462,134.364445044659078 -70.092953267296821,41.299391330830808,134.348075242713094-72.199714111835107,42.032590607688064,138.605560248717666 -72.398321294862725,42.034908430651491,138.802474606782198 -72.51008284613151,42.036212726667266,138.913855247199535 -72.69682910556358,42.038392112666656,139.100882338359952 -72.715036823737009,42.038211761273587,139.117957236245275 -72.756741951285207,42.037798662613632,139.157109485939145 -72.758370785680114,42.02255119796996,139.11127894744277 -72.759054805676087,42.022469195533105,139.111687821336091 -72.767042866259629,42.009299606399161,139.078480762429535 -72.767642818290014,42.00459977081259,139.064442631788552 -72.77566083961527,42.003733852621856,139.069536556489766 -72.817646287483868,41.999199571186651,139.096247770823538 -72.814446740371508,42.03809719696239,139.214082473888993 -72.864526305904107,42.039311757756948,139.266584957018495 -72.864640309442123,42.039312756819832,139.266699079424143 -73.00965111730747,42.040957321594114,139.413371131755412 -73.054167193437593,42.041462176418712,139.458535482175648 -73.128191597026742,42.043564640027149,139.537700386717916 -73.230716709303564,42.046476586990856,139.647636219859123 -73.23197474904461,42.046544574472932,139.649087316356599 -73.294017688901391,42.048539005488522,139.71650136820972 -73.295340730278696,42.048582993291063,139.717944801785052 -73.488240703788776,42.051235345227525,139.917349696159363 -73.497805998360889,42.051272266650834,139.926976145245135 -73.509069877120766,42.087852858404787,140.051401756703854 -73.41157616136114,42.353325294869698,140.773913720622659 -73.35345629753408,42.511584008702847,141.202869115397334 -73.307933781774182,42.634231507243129,141.533934300765395 -73.265887087213272,42.747514425547998,141.839034245349467 -73.143412826312684,42.745083338185353,141.712312338873744 -73.023825468415808,42.742709551274118,141.589041667990386 -73.019568186967916,42.742601875323501,141.584590897895396 -72.931190287711132,42.740366604015257,141.492327058687806 -72.928210107607683,42.740291228673513,141.489220191724598 -72.865097427999089,42.738694968941687,141.42349124327302 -72.459423600336365,42.7284345515437,141.004045034758747 -72.452161126535287,42.728234190873607,140.996532952412963 -72.41291441168238,42.727151433108368,140.955966597422957 -72.283867349675063,42.723591216008572,140.822928572073579 -72.111962010600763,42.718848595491863,140.646537126973271 -72.079355464650149,42.717949026972974,140.613186811096966 -71.929698740379195,42.713820205715095,140.460555166937411 -71.899601265277497,42.713064855890536,140.430177194997668 -71.806333335876033,42.710724129250188,140.336225925944746 -71.773392651882887,42.709897422894869,140.303111100569367 -71.637092408449945,42.706476717295146,140.166463484056294 -71.632692268107732,42.706376754515404,140.162094393745065 -71.543395575089605,42.704315025156014,140.073461746796966 -71.295072483973016,42.698581598484544,139.828347749076784 -71.255399087255626,42.73572632456613,139.906800780445337 -71.24637057599243,42.744179384094494,139.924654899165034 -71.20916740666361,42.744904640253601,139.893078465946019 -71.209092404007308,42.744884641513806,139.89294866938144 -71.209002400861507,42.744863642922006,139.892802161164582 -71.182667486813784,42.739181038865162,139.851366306655109 -71.18696936190581,42.792278167066762,140.018969198688865 -71.166467961864285,42.8102776994142,140.055840663611889 -71.15056755166691,42.817077584449649,140.062387155368924 -71.114721532932052,42.829453046976205,140.06807850394398 -71.059269094971555,42.848597419912309,140.076972507871687 -71.038762535145523,42.855677094589325,140.080289146862924 -70.997761376496641,42.866177040904923,140.075710674747825 -70.932557572486701,42.885776855241929,140.077489849179983 -70.931657549365525,42.886176848220693,140.077914029359818 -70.915757070581719,42.888176898577271,140.069814206101 -70.915744069821045,42.888151899535238,140.069725583307445 -70.90362568326853,42.888117991509354,140.058760765008628 -70.886993099040865,42.884198250997017,140.031792328692973 -70.849480604213142,42.862528277832823,139.931463201530278 -70.818150762451836,42.873879120925864,139.938431541435421 -70.818585477346758,42.852202864329826,139.872015716508031 -70.806073132193958,42.783390332444817,139.648543631657958 -70.793719263438803,42.748711623827454,139.530386389233172 -70.773118114853133,42.712659025736457,139.400517557747662 -70.771303971919025,42.706419255520572,139.379597148858011 -70.779403376181975,42.700115357824622,139.367342260666192 -70.779522190457854,42.695217783970641,139.352298084646463 -70.765271518391899,42.687245965325651,139.314886626787484 -70.749601996009915,42.685474143116885,139.295394599437714 -70.745276834139446,42.683688237177847,139.286002084612846 -70.73066919956176,42.671198778996015,139.234290017746389 -70.729694090643861,42.665473984991095,139.215694166719913 -70.690249693012035,42.654916643771081,139.147781671024859 -70.683441492901423,42.656122652256556,139.145443718880415 -70.682441567256902,42.663939388210515,139.168763137422502 -70.664395200501389,42.679199992048467,139.199933947063982 -70.645947774035832,42.691019718484966,139.220099024474621 -70.630923340305557,42.69429571594172,139.216869765892625 -70.620876956808658,42.689602952858969,139.193403949029744 -70.623709883976076,42.677587348673789,139.15871574357152 -70.624660771749376,42.667078706299677,139.127012518234551 -70.623636676710461,42.662470873802341,139.111826640553772 -70.615665379413926,42.659248044523068,139.094748854637146 -70.596318800150996,42.661934094003058,139.085865799337626 -70.592586521325345,42.650106532171584,139.045895339921117 -70.592313395152829,42.641419835912764,139.018727116286755 -70.594858411345243,42.636628983609889,139.006138353608549 -70.606455778478207,42.636496902698447,139.016044740565121 -70.619265101243727,42.630239025720449,139.008044104091823 -70.636480264598617,42.601842886427981,138.935318677686155 -70.655572627904036,42.583834372598467,138.896472933702171 -70.665732926373749,42.582036360234767,138.899959791451693 -70.668868415897535,42.583331829202805,138.906777760013938 -70.668961538882769,42.586961550219385,138.918122348375618 -70.669333899619517,42.591242756668983,138.931736279278994 -70.671288533776334,42.593848697553732,138.941564496606588 -70.673429308196134,42.595896214592649,138.949826271273196 -70.676593898159027,42.596268471063688,138.9538055351004 -70.679665401790245,42.59598923803398,138.955681288614869 -70.682274887259965,42.594772827310337,138.954238025471568 -70.685348639241909,42.590457935325567,138.943598434329033 -70.699420955179988,42.578993217399656,138.920602842234075 -70.730535863442611,42.573110192328336,138.930173452012241 -70.737892169489811,42.578462951301887,138.953361877240241 -70.758131725064999,42.572055024811107,138.951604591682553 -70.804941090075772,42.563194986812221,138.966086355037987 -70.816241348033017,42.555795161158002,138.953273695893586 -70.824141561909371,42.553095196753695,138.951991795562208 -70.849343343319049,42.551795054982833,138.970604950562119 -70.872233608968187,42.548003803832053,138.979432572610676 -70.873209066502085,42.544552245270175,138.969602787867188 -70.86713065818148,42.524218161929809,138.901033805683255 -70.860602260022645,42.522042234020788,138.888404675759375 -70.857975920594839,42.523092724999962,138.889302260242403 -70.842941723598742,42.521096174856893,138.86958116851747 -70.831941159493155,42.505197812356577,138.810325223952532 -70.836841137288232,42.492098234291959,138.774044445715845 -70.842441275400006,42.48919829423766,138.770073755644262 -70.848241511940543,42.493098114717313,138.787406934425235 -70.858641825080966,42.491898079518599,138.793040104210377 -70.880543362718399,42.480398319460477,138.777043951675296 -70.887344461461339,42.471799570106739,138.756459050811827 -70.888843466882292,42.468698667607455,138.748175474815071 -70.888143414913884,42.466498749888224,138.74070848710835 -70.895143582256097,42.462498838051857,138.734591017477214 -70.908944100322898,42.468498525239617,138.765682434663177 -70.918545419074746,42.469598415306926,138.777763810940087 -70.922845537504742,42.468298428875954,138.777606468647718 -70.935845829405011,42.459498640585771,138.76200486253947 -70.935116746769637,42.446248702870392,138.720170290209353 -70.93400754640173,42.439436070921872,138.697992296889424 -70.92907803957101,42.432589977714819,138.672255322337151 -70.914043730532924,42.429300861942345,138.648449364118278 -70.909243544891453,42.426800985348741,138.636341460049152 -70.902843276193082,42.42190120488717,138.615325191058218 -70.906543337741994,42.417801321357132,138.605913714505732 -70.937245334170413,42.41970102650469,138.639557994902134 -70.944147940496293,42.437851662503896,138.702230783179402 -70.944465042527398,42.453695005562317,138.751758242957294 -70.947872798087076,42.457838143995019,138.767711645923555 -70.961323608065058,42.447768877802318,138.748582281172276 -70.961500941643834,42.445390006539505,138.741349866613746 -70.961688421138277,42.442875031237776,138.733703258447349 -70.983847887206608,42.42559947256207,138.700056253001094 -70.988547936691063,42.41829969390912,138.681617225520313 -70.991448898163412,42.408702009481935,138.654400729574263 -70.990048792910869,42.404202178043597,138.639138062484562 -70.985921703007136,42.403644799484859,138.633666105568409 -70.984279711113942,42.397850204650183,138.61415511649102 -70.981188984259646,42.393117969315654,138.59663446713239 -70.973558892215507,42.391572798816661,138.584917197935283 -70.971047702704269,42.389641282463899,138.576633801683784 -70.972593020060785,42.388675502513721,138.575028141029179 -70.973365655946338,42.386647387136662,138.569417325779796 -70.973558781074686,42.383363774479001,138.559374703094363 -70.973075800744795,42.378921248296706,138.54511244315654 -70.961649949398293,42.362253730468758,138.482883526012301 -70.954143943138135,42.351304306172338,138.441992525942624 -70.953873857315941,42.345579509818279,138.423918517306447 -70.964430460988908,42.348465846710305,138.44246872048825 -70.973270930116627,42.355481480509269,138.472324048168957 -70.975749647037475,42.357448544690385,138.480694526806474 -70.980780346636166,42.357987469052468,138.486931070685387 -70.983134656396885,42.357525852287615,138.4876275556162 -70.99910639636272,42.354394224011585,138.492357890121639 -71.007730359480206,42.348645183189326,138.482280986383557 -71.010999391366411,42.340839777580527,138.46094220597297 -71.012657458448444,42.336880842215386,138.450117924250662 -71.016533786589008,42.327625407065831,138.424809227697551 -71.014018300731422,42.317025748426346,138.389504133723676 -71.006251720639767,42.308803034633932,138.356830845586956 -71.001800729841108,42.304090635724428,138.338103950023651 -71.007010895133433,42.2897181496012,138.29803251568228 -71.00575314594218,42.284328491265605,138.280086247250438 -70.996949283313242,42.272830598581812,138.236235667951405 -70.989942192137335,42.269057883429305,138.218106236308813 -70.968202426278893,42.269776666850326,138.200620416551828 -70.949821286401701,42.274113613311606,138.197482579387724 -70.946397250996952,42.270689880666971,138.183698194101453 -70.93673664882904,42.265798867546359,138.159683391451836 -70.924018971721097,42.264820745565487,138.145110504701734 -70.911790472170438,42.267021823287116,138.140906686894596 -70.907151421365654,42.273245613235602,138.156128402799368 -70.897116504314113,42.28670854332119,138.189051419496536 -70.89662746321585,42.294045172579942,138.211493431590497 -70.897972640911064,42.297468920800277,138.223387952893972 -70.916437806265023,42.304071746899737,138.260681274347007 -70.918339801768639,42.307294589504785,138.27245067153126 -70.908406312880516,42.309497084399474,138.270330674014986 -70.883613166043034,42.310468268534066,138.250943508930504 -70.882091007845759,42.302271568933492,138.224008165299892 -70.871721479191805,42.287277174831573,138.167867487296462 -70.862655062884741,42.277574584459984,138.129402304068208 -70.851940621595958,42.269879935429749,138.095709774643183 -70.831921978413348,42.269034113202785,138.074995768256485 -70.825507479928135,42.267544858944213,138.0645582228899 -70.812588308046855,42.264545414482825,138.043539321050048 -70.789569460883655,42.255530902740688,137.994636377319694 -70.781567632542618,42.253402967311068,137.980779365636408 -70.771808894675203,42.250807814884325,137.963881702162325 -70.765601572640563,42.245673427697326,137.942251600325108 -70.755332043326192,42.230285047377812,137.884919244796038 -70.748073722900074,42.223428343313387,137.856952513568103 -70.731403052001752,42.212552850696838,137.807945833541453 -70.723111750667698,42.209572017119683,137.7911640368402 -70.719549331338655,42.18646686143731,137.715686195529997 -70.715142979114475,42.170397463252627,137.661433652043343 -70.707105650719626,42.164751722386967,137.636528589762747 -70.686155591325374,42.134640944223399,137.523385027423501 -70.664770590889205,42.109952977572334,137.426785699091852 -70.641007581963933,42.090250851619075,137.343646761961281 -70.639318435833616,42.0831971148028,137.320003187283874 -70.648187646304791,42.077949236667941,137.311512298882008 -70.64902856895246,42.070059511249461,137.28751458786428 -70.644046180196781,42.052440174887899,137.227738180197775 -70.645174956212827,42.047513849036669,137.213288715109229 -70.651712361581673,42.047866281799251,137.22027540486306 -70.670198823800902,42.038735472039846,137.208247409202158 -70.672504689688395,42.023010015762971,137.160944250412285 -70.668350439753411,42.013940369585725,137.128715281374753 -70.671772487938725,42.009406506336582,137.117554751224816 -70.679636705587271,42.007130530093143,137.117489947937429 -70.687637143570072,42.014384007767177,137.147485360503197 -70.696648294385184,42.014966255667723,137.157437083311379 -70.713043784228432,42.00920621177643,137.154132292605937 -70.710873610206079,42.001164514665732,137.126912966370583 -70.699820098988397,41.988724039672043,137.077851890586317 -70.663313649319122,41.962213855925292,136.961594895459712 -70.652510603527531,41.960323532891685,136.945915834978223 -70.649202214251943,41.963294188094636,136.952278815209866 -70.632087488195822,41.952097842799859,136.90164827555418 -70.624348668239534,41.944895739407045,136.872021262533963 -70.61732688963464,41.94182731761223,136.856045673601329 -70.609001634213314,41.94232436043459,136.850118943490088 -70.598913409111702,41.949395180980133,136.863296530209482 -70.584406981774976,41.951630206596292,136.85728922393173 -70.553774752281001,41.931265157533112,136.7656693989411 -70.547219378236534,41.918375666379092,136.719193045981228 -70.548243347795221,41.913558831380627,136.704940704628825 -70.546782239716762,41.908783012981772,136.68858443479985 -70.532916574978827,41.89119374360385,136.6207115361467 -70.526398969964205,41.86035689646485,136.517638023942709 -70.536319031107595,41.841008519035334,136.465515214949846 -70.542897132694449,41.832890762907141,136.445813401602209 -70.544000079079865,41.826073999799206,136.425292821601033 -70.541861899397006,41.817382327619413,136.395936756394804 -70.538121052539211,41.812487591775188,136.377121572382748 -70.534654400559091,41.807951628022501,136.35968397744 -70.534134917928796,41.807271907531899,136.357070804573596 -70.533487494578637,41.806424782158096,136.353814001195133 -70.525900734298361,41.799536334955029,136.325241880491376 -70.519298413008187,41.793541715369827,136.300374931655824 -70.518446195007229,41.792767938617096,136.297164988704026 -70.518241836822227,41.792582390303629,136.296395251527429 -70.517752129185666,41.792224620133297,136.294825085438788 -70.517481824377541,41.792027141086436,136.293958394788206 -70.516931689414818,41.791625223973618,136.292194467969239 -70.515433228718763,41.790530479887792,136.287389836274087 -70.515313826033704,41.79044324678005,136.287006985396147 -70.515255189373548,41.79040040806084,136.286818974651396 -70.494877882754622,41.775513173403986,136.221476330421865 -70.493845370558603,41.774947764650747,136.218762219883502 -70.493713356044765,41.774875472854113,136.218415201641619 -70.484306698831659,41.76972434111881,136.193688326515257 -70.482981357904578,41.768998577909656,136.190204445272684 -70.474879951706598,41.764562208026618,136.168908457271755 -70.47453632922398,41.764374038664563,136.168005178682506 -70.474163604536031,41.764169932791681,136.167025405913591 -70.472827694263614,41.76343838175368,136.163513710722327 -70.472798067424876,41.763422157950977,136.163435829803348 -70.472635741592597,41.763333267526512,136.163009124808013 -70.472381017488331,41.763193779353692,136.162339537404478 -70.459796279006483,41.759537321806931,136.139486716128886 -70.414539969127588,41.746388238076683,136.05733133200556 -70.413302941182678,41.746028823347565,136.055086286738515 -70.412897620330611,41.745967511209642,136.054529271088541 -70.377818077860667,41.740661093340648,136.006338384002447 -70.376166702424285,41.740411292807536,136.004070645198226 -70.376078764963495,41.740406638648551,136.003977253101766 -70.318915257864091,41.737381214805751,135.94332058634609 -70.316113566384743,41.737232933044389,135.940350408665836 -70.315490581245342,41.737199961057534,135.939689992927015 -70.29212358206135,41.735963243857604,135.914928145706654 -70.291779992983223,41.735945059128554,135.914564177393913 -70.291610970469534,41.735857422746946,135.914136016741395 -70.289145496132505,41.734579100437379,135.907890567556024 -70.277886119375736,41.72874123291998,135.879368816502392 -70.276215619461055,41.727875096416049,135.875137194991112 -70.276025393435148,41.727776466237366,135.874655324034393 -70.275986508799917,41.727712460649371,135.874417989514768 -70.27500985658618,41.726104853971385,135.868456817232072 -70.273111240656789,41.722979659957396,135.856867727823555 -70.264652407639431,41.715896797321264,135.826896237209439 -70.264475877036801,41.715748982367487,135.826270718127489 -70.263918505727602,41.715728817622889,135.825710178352892 -70.26226157923044,41.715668872843878,135.824043883010745 -70.260026735115829,41.715588019988431,135.821796547621489 -70.257216817781099,41.717869878683139,135.8265211135149 -70.25350755365541,41.720882072851765,135.832757970318198 -70.252615321224226,41.721606630941494,135.834258212707937 -70.251525061086994,41.722492002034564,135.836091442964971 -70.248756652761813,41.724740152382644,135.840746472589672 -70.248200013592282,41.725192184163006,135.841682462953031 -70.247871165410828,41.725459232975091,135.842235422693193 -70.238238892208358,41.733281344415197,135.858432665467262 -70.235869176178156,41.735205727428003,135.862417639233172 -70.235671221150312,41.735366481412179,135.862750528380275 -70.22670227799901,41.739783636116478,135.868758009746671 -70.226132909217725,41.740064047079727,135.869139461778104 -70.225282690101793,41.740482775273449,135.869709091261029 -70.224826788676566,41.740707304193897,135.870014540851116 -70.221662608233572,41.742265645492076,135.872134717181325 -70.217517846830731,41.744306917467014,135.874912404455245 -70.216893748217828,41.744614282568129,135.875330701470375 -70.198856883894067,41.750667566117386,135.87846611533314 -70.198344847124147,41.750839408832569,135.878555291332304 -70.194022075835804,41.752290157681536,135.879308531992137 -70.190074018823395,41.753615150092962,135.879997059702873 -70.189936712880566,41.753594168324831,135.87980870064348 -70.182895778931169,41.7525182407892,135.870150455273688 -70.177385551734844,41.753766810999011,135.869212079793215 -70.159946538693021,41.757718341695885,135.866249634884298 -70.144666616569253,41.761180640860665,135.863663164898753 -70.144262539223732,41.761272201317169,135.863594881258905 -70.142351619308016,41.761705199359461,135.863272048532963 -70.142337522006827,41.761704312086209,135.863256744109094 -70.14119879260042,41.761632641333307,135.862020594999194 -70.136825776772383,41.761357407077952,135.857273836620152 -70.129883014533391,41.760920434947707,135.84973896946758 -70.125182000643278,41.7606245567315,135.844637915492058 -70.124887609314044,41.760606027966439,135.844318496063352 -70.122949551252844,41.760484048073536,135.842215742915869 -70.122795987821434,41.760474382908463,135.842049132101238 -70.116712630606187,41.762283568142863,135.842390649951994 -70.115885224581703,41.76252963798656,135.842437202110887 -70.110136386107769,41.764239337625298,135.842761342413723 -70.098483563324592,41.767704877120387,135.843422039411962 -70.098475763946212,41.767707196648786,135.843422480858862 -70.097585582720384,41.767971935780281,135.843473156914115 -70.096878269276559,41.76818229019036,135.843513442203403 -70.087192948972174,41.770103007225572,135.841028329916298 -70.082649906169394,41.77100394796399,135.839863841421902 -70.068419623571913,41.773825986346218,135.836221213452518 -70.065958625096485,41.774314032317044,135.835592011921108 -70.065130348762509,41.774478289601475,135.835380298085511 -70.06149062767318,41.775813378419159,135.836392044089735 -70.035205263447907,41.785455132483207,135.843712419271469 -70.034689267294453,41.7856444054161,135.843856361694634 -70.034038594509923,41.785883079184146,135.844037891365588 -70.025549285023487,41.788997049104509,135.846407633274794 -70.025472995222984,41.78905997389284,135.84653955232352 -70.023897451623696,41.790359502097189,135.849264025688171 -70.02362425137278,41.790584841105229,135.849736453965306 -70.023195912939102,41.790938140040417,135.850477150641382 -70.010750989074737,41.801202870027375,135.871998196467757 -70.009696519758108,41.802072609607315,135.87382176052779 -70.009276941877118,41.802418682730796,135.874547368846834 -70.004656894132239,41.810152437995676,135.894952770322561 -70.005301298813521,41.84045734684031,135.99139120709151 -70.009828922009888,41.87825496131498,136.114861504174769 -70.001003774458582,41.888567655121435,136.13967905100435 -70.003737903789158,41.891944514940697,136.152752291411161 -70.012970212483097,41.893285401386599,136.165111766196787 -70.025151688495981,41.900449058658602,136.198460213840008 -70.026369891124006,41.913327589727814,136.240198398008943 -70.03135427128025,41.930781930837171,136.299681366421282 -70.045812739582047,41.931676795942927,136.315235022455454 -70.055282004501422,41.928993824296789,136.315109384246171 -70.066489157901927,41.913286305569812,136.275410857982934 -70.066541010432132,41.901269340287925,136.237518405541778 -70.066189718786703,41.889331450071893,136.199510224163532 -70.064902102013534,41.88055359938086,136.170648844912648 -70.066819832117048,41.878640412605797,136.166296730749309 -70.06838363345075,41.879422244494016,136.170146004296839 -70.071706759471695,41.884601933008263,136.189438886940479 -70.073857189473571,41.901411551540505,136.244419690221548 -70.074824766177741,41.940277282139128,136.367933550849557 -70.078240474108,41.987122587120098,136.518648773431778 -70.084595015706384,42.013665596538786,136.607869261875749 -70.090398364449513,42.02652009767796,136.653460337780416 -70.096415656853353,42.034455772407171,136.683744419366121 -70.108881189818419,42.04522430036738,136.728621390648186 -70.123864767795752,42.053290906405444,136.767211114056408 -70.148233716109516,42.063212849005183,136.819915949366987 -70.149116699332112,42.063572360161324,136.821825779974461 -70.156237930546993,42.064031292800827,136.829553450457752 -70.170604350478527,42.061358284733451,136.833830075338483 -70.179291582405497,42.058042340238671,136.831074369139969 -70.187639769278718,42.052072492520125,136.819674165919423 -70.195279869001155,42.041092828094463,136.791888726875186 -70.196168828563884,42.035786010479114,136.775978162884712 -70.19389767172936,42.02919926112866,136.753243278712034 -70.187118208189801,42.022931838887288,136.727523609995842 -70.187531255456875,42.021527510232275,136.723468724638224 -70.191657503517234,42.021651545817996,136.727508004754782 -70.197516719683264,42.024052418321375,136.74024663399905 -70.208840184754052,42.032353041646552,136.776385177858174 -70.219525717914422,42.047470427153435,136.833398582413793 -70.234081331602425,42.059335900669403,136.883596824482083 -70.23970054505277,42.062100761981483,136.897265091538429 -70.244365693697929,42.062190725223317,136.901679033413529 -70.246210793020552,42.06535459950306,136.913259797729552 -70.23891268078772,42.074499327094202,136.935543896630406 -70.226451360888746,42.080222213464978,136.942503249272704 -70.207723811289881,42.083521230963889,136.936309369280934 -70.190129260351824,42.083958341861454,136.922133889049292 -70.160989290403748,42.080249682709677,136.884745159186423 -70.155000132519831,42.078760603671121,136.874778497964144 -70.116789749814842,42.069260389722032,136.81121118273586 -70.083444527234192,42.056280089385659,136.741008926182985 -70.059350580851827,42.041986769490705,136.674823529087007 -70.035624655873619,42.020540506645688,136.586429888382554 -70.034319498269127,42.019360752717461,136.581566606648266 -70.031871900894487,42.016186852719059,136.569417477585375 -70.030771793192599,42.01476029789675,136.563956649042666 -70.030267624082185,42.014106521111991,136.561453951522708 -70.017097963338415,41.997028881246464,136.496069261804223 -70.014926140278106,41.994212589088072,136.485284651629627 -70.014693593888822,41.993911036634131,136.484129863791168 -70.01277412547131,41.991421983101105,136.474597861990333 -70.012715455898018,41.991345903855674,136.474306502379477 -70.011327800123894,41.989189168628812,136.466288889758289 -70.006534453111414,41.981739208355499,136.438591259531677 -70.006275149817739,41.981336191583182,136.437092797830701 -70.006149507945196,41.981140915305446,136.436366737820208 -70.005425215969595,41.980015199506568,136.432181130163372 -70.005087971802197,41.979491044745359,136.430232197977602 -69.98701202772169,41.951396882824653,136.32574247289449 -69.986901126892022,41.951224517504272,136.325101225636899 -69.986840197511853,41.951092487198501,136.324631127528846 -69.969413091277545,41.913328994426848,136.190121274441481 -69.946127511699743,41.846853537279671,135.959577356465161 -69.936764763100754,41.811054886619182,135.83807912375778 -69.929463672703761,41.742885386578685,135.615709968842566 -69.929121685020576,41.699618434877983,135.478176319040358 -69.929119312875329,41.699318319760266,135.477221881970763 -69.929086296445902,41.695141201468161,135.463937011547387 -69.929076359447819,41.693884008417179,135.459938407875597 -69.929076317913101,41.693878753587839,135.459921693429351 -69.929072037199163,41.693337173109157,135.458199119195342 -69.92953444767052,41.691270877045781,135.452048071660101 -69.930188056735332,41.688350203941773,135.443353231064975 -69.930267779048378,41.687993962226543,135.44229266513139 -69.931710494661615,41.681547141268311,135.423098485916853 -69.933924917820349,41.671651920676695,135.393632381223142 -69.933959651010554,41.671592889131233,135.393475526943803 -69.934931178036493,41.669941709341202,135.389088088646531 -69.943553312335965,41.655287774503478,135.350145389325917 -69.944285034871271,41.654044159656891,135.346840085461736 -69.948410212891204,41.647033124254605,135.328204810619354 -69.951980119873568,41.642437847650143,135.316752921789885 -69.952721732712504,41.642294812236322,135.316952206194401 -69.95365520026121,41.642114773663259,135.317203077487648 -69.954735232883479,41.64190646697633,135.317493377253413 -69.957673552063994,41.641339751191474,135.318283380009234 -69.959083326286915,41.641067846997849,135.318662526085973 -69.964045157653786,41.635432833855624,135.305135094560683 -69.968680550825752,41.629142244184266,135.289235920645297 -69.97728895095122,41.605304279887164,135.221066546626389 -69.983579659372921,41.583452837496651,135.157136811874807 -69.989026207120716,41.556345700969793,135.075708053074777 -69.989306468559775,41.556031388547851,135.074955503456295 -69.997357765904837,41.547001881079105,135.05333557818085 -69.99888237865251,41.545292032153185,135.049241410568357 -69.999873987625122,41.545041890971561,135.049322174862027 -70.004579195405313,41.543854965208027,135.049705888144672 -70.004947550088517,41.54376204483448,135.049735963344574 -70.005365343433439,41.543807628565865,135.050250645726919 -70.012022775958656,41.544533993925398,135.058452671393752 -70.012315791632915,41.54456596367239,135.058813700452447 -70.012537017166395,41.54476154245647,135.059631959535182 -70.015267917025298,41.547175848189411,135.069732711650431 -70.017396049423297,41.552413643255022,135.088285157456994 -70.015871029851809,41.554678571917343,135.094143223017454 -70.012408156029721,41.554408016650655,135.090218411758542 -70.011455886805834,41.554333615598573,135.089139180257916 -70.009666269889536,41.556152010004901,135.093342491425574 -70.002341716274884,41.563594344313934,135.110545489937067 -70.002092752634653,41.564111195553856,135.111969813704491 -70.001748994024737,41.564824842188614,135.113936440087855 -70.001438896078696,41.56546860891752,135.115710476413369 -69.995168257744496,41.578486522865461,135.151579766534269 -69.992534873558142,41.590150174546793,135.186347724869847 -69.988003849458963,41.610218757733904,135.246150141581893 -69.987922583015887,41.610405123714017,135.246670769527555 -69.983758021330402,41.619955592486015,135.273348355665803 -69.981230271979825,41.625752406991829,135.289538487792015 -69.97830069325245,41.632470725269975,135.308300171047449 -69.977698271500714,41.633852241683485,135.312157931737602 -69.977452373750509,41.634416151897142,135.313732569105923 -69.976390619873868,41.636851041424848,135.320531470701098 -69.976056740314093,41.637616717787431,135.322669394314289 -69.973846811257829,41.642684684367254,135.336819423362613 -69.973848406542245,41.642764289566443,135.337073704227805 -69.973965373841494,41.648600994332739,135.355716593563557 -69.976531055093133,41.655376207149828,135.379497488029301 -69.976622781668198,41.655435957572287,135.379768148064613 -69.991472102007833,41.66510876133087,135.423583167605102 -69.991480269554756,41.665114081647033,135.423607266508043 -69.991546233498298,41.665157050366361,135.423801895231009 -69.991560292897645,41.665166208617862,135.423843380063772 -69.99160227396716,41.665193554963508,135.423967246897519 -69.997006836058233,41.668714070858847,135.439913443289697 -69.997171873866009,41.668821576002664,135.44040038343519 -69.997321561947416,41.668883331539746,135.440728543326259 -70.003510544785655,41.671436667482546,135.454296821728349 -70.003829342325275,41.671568191068182,135.454995742999017 -70.00764624365101,41.673142897537467,135.46336386539042 -70.007824264506752,41.673216342085553,135.463754159398377 -70.00796671126723,41.673224095983159,135.463904540985823 -70.015024496100665,41.673608276989405,135.471356309950352 -70.01660259252435,41.673167553139457,135.471351273357868 -70.02177770040592,41.671722271697341,135.471335387788713 -70.029932839218304,41.669444740269121,135.471312330104411 -70.030133151240364,41.669388798005286,135.47131179459393 -70.030159919272677,41.669381322346489,135.471311722882092 -70.037959550990536,41.668516949780916,135.475462219677866 -70.038069047814687,41.668504815098785,135.47552050370723 -70.038571524281025,41.668449129536633,135.475787967443466 -70.056337706506554,41.666480241574341,135.48525071144104 -70.090053741617922,41.664450075713738,135.508655447512865 -70.120720190485471,41.657092380390601,135.512489250861108 -70.12175164248896,41.656844907664585,135.512618800625205 -70.122167515083106,41.656745128785644,135.512671045958996 -70.123413589569637,41.656446162426192,135.512827622704208 -70.123505390744029,41.656424136886606,135.512839159928262 -70.135519241887323,41.653541694944842,135.514351743273437 -70.140980406755176,41.652231416449723,135.515041077509522 -70.141023769883489,41.652221012483473,135.515046553686261 -70.14125402554167,41.652165768035587,135.515075639821589 -70.141694209037937,41.652060156323614,135.515131254680455 -70.141865978380437,41.652060300298871,135.515284211374819 -70.141958020123113,41.65206037744727,135.515366167761385 -70.143409167034349,41.652061593783131,135.516658398322761 -70.146699108917034,41.652064351375017,135.519588319584727 -70.14782791259131,41.652065297524693,135.520593681372702 -70.149252592262954,41.652066491673651,135.521862626075745 -70.159438767019111,41.652075029583706,135.530937350355089 -70.191879721013819,41.646895985787658,135.543342046439648 -70.246687230014729,41.630116201754461,135.538904274813831 -70.257030456137059,41.622335409440723,135.523433865979314 -70.256240391324866,41.619178529318091,135.512708311900496 -70.260421437950967,41.612500741179637,135.495239926502109 -70.266244601335075,41.610970755004828,135.495579764246941 -70.268407689235659,41.612549682403603,135.502523276023567 -70.270507842152767,41.619412419005791,135.526183031499386 -70.269950925705515,41.627379134704654,135.550971251912415 -70.275343186150209,41.634563836285807,135.578583422116935 -70.282141427478678,41.636761708218685,135.591625832021236 -70.29144172034519,41.6368326391813,135.600155650638044 -70.322410632795695,41.632144587263923,135.612958606332541 -70.330746946158499,41.636214380359441,135.633324960246682 -70.338890224094754,41.637974258387381,135.64619224704802 -70.352457628807201,41.636323220925959,135.653097692877054 -70.361175856276589,41.632705289351414,135.649428109638393 -70.365715943346586,41.628357414151552,135.639702678658068 -70.365567899875785,41.625307525599084,135.62989488337189 -70.370677961093392,41.617524770723307,135.609781270846725 -70.379975195042192,41.612997868003561,135.603750410489738 -70.401405803592681,41.608018894645916,135.607172074727714 -70.401972418712162,41.608087486588737,135.607898135669529 -70.409360065222117,41.608981802686287,135.617365539073944 -70.414769438908948,41.608601959249498,135.621015895158052 -70.438071939493184,41.60696566955933,135.636752828024328 -70.438714468577302,41.605886125299911,135.633905087597668 -70.441382343464923,41.601403699400223,135.622080336324871 -70.443050883159088,41.598600305008084,135.614684489555657 -70.445176009922477,41.595029776573064,135.605264347046614 -70.446115019231556,41.59345210154504,135.601101788692176 -70.447368868705183,41.591884175500795,135.597253129817545 -70.451208570617169,41.587082667237766,135.585466868244112 -70.456878118452252,41.579992955271521,135.568062667734921 -70.45818253884805,41.578361790827365,135.564058219082654 -70.461919513616834,41.573688741885931,135.552585672587156 -70.462104265264216,41.573457711830557,135.552018468268216 -70.462786508680736,41.572851110150438,135.550706595182419 -70.463031885806757,41.5726329384932,135.550234762951732 -70.46306556986454,41.572602989056477,135.550169992260635 -70.473604173778824,41.56323282195725,135.529905748553574 -70.47415419325776,41.562743784277487,135.528848150745034 -70.477057798299981,41.560162107944947,135.52326500788331 -70.477082564591413,41.560140087543587,135.52321738563478 -70.477101496241787,41.560131434054171,135.523206954821944 -70.48417659730292,41.556897468121591,135.519309849478304 -70.485981505222426,41.556072460722014,135.518315929919481 -70.486397801959754,41.555882175176102,135.518086700700223 -70.487642317691069,41.555525361915592,135.518074817955494 -70.49407101411272,41.553682199889217,135.518014328554273 -70.522836785971094,41.550636779464838,135.534281518310308 -70.523154885073552,41.550603102442594,135.534461570903659 -70.532468353314172,41.550444755476356,135.542363044805825 -70.560311170805363,41.549971373608798,135.566002546809614 -70.560518045954055,41.549967856329459,135.566178292036057 -70.560556548784618,41.549963854845757,135.566200373694301 -70.561737717924515,41.549841099478051,135.566877848468721 -70.562090320701657,41.549804454528463,135.567080098204315 -70.574852273893498,41.548478142967653,135.574403258040547 -70.589241844850292,41.546982677917555,135.582667470909655 -70.589324262795671,41.546974112467026,135.582714826799929 -70.589640247607036,41.546941273110505,135.58289638813585 -70.589723611696243,41.546932609329993,135.582944288849831 -70.590400284201365,41.546862284779969,135.583333110436797 -70.597399734376964,41.546134852846613,135.587356039322913 -70.611911584975161,41.54462667955297,135.595702365972102 -70.611977886879984,41.544612743216028,135.595718149095774 -70.613836603074546,41.544222050140505,135.596160671673715 -70.615229165068939,41.54392934040289,135.596492295153439 -70.617545874034562,41.543442379479409,135.59704415127635 -70.618053623602066,41.543335652997051,135.597165127284825 -70.618469083734709,41.543248325303637,135.597264121286571 -70.618741923249857,41.543190975768368,135.59732913877815 -70.634438228612339,41.53989168891092,135.601074019446969 -70.634543780115891,41.539829572397359,135.600972470827401 -70.634630856697257,41.539778328279944,135.600888694636524 -70.644458466298971,41.533994830895715,135.591435021720827 -70.650890429351961,41.525810520784404,135.571280942298472 -70.650959601058148,41.525722503691114,135.571064190939069 -70.652397834075828,41.523892433328257,135.56655734218657 -70.652881565090539,41.523276912907349,135.565041503868997 -70.654935623009663,41.520663240113791,135.558604707941413 -70.654999924872584,41.520630312670676,135.558558471500874 -70.664687863755461,41.515669351324142,135.551593709737062 -70.670350187774702,41.51497747442987,135.554535717703402 -70.676211205688006,41.514261319206895,135.557582190260291 -70.70601393211912,41.498315684112733,135.53401374258101 -70.735139708733058,41.487973849921758,135.527658289298415 -70.758005211713822,41.47155628273461,135.496321979910135 -70.757315139687918,41.467616431453244,135.483172963373363 -70.761697211908881,41.462586583183501,135.471181728877127 -70.791104941673282,41.447978903017919,135.451575795188546 -70.818313779840111,41.44720173381765,135.473954200744629 -70.836703305640569,41.443516734757011,135.47905062045902 -70.8583647736708,41.427407165880027,135.447657057084143 -70.86778302349839,41.424018221254414,135.445505166426301 -70.90360112191614,41.422701008656986,135.474139768630266 -70.929035845782863,41.417421016389213,135.480689514428377 -70.938121074980117,41.413258102423747,135.475796209648252 -70.949270390726269,41.410833109822455,135.478327211923897 -70.951884505331378,41.413416996210849,135.488943400792778 -70.950700514140465,41.416962875129059,135.499127673916519 -70.92900404407726,41.432904450454984,135.52987474296242 -70.924536897934047,41.432355503098286,135.524030981585383 -70.919821269611063,41.426939380534563,135.5024902401492 -70.91247867933896,41.426123646377249,135.493161576800048 -70.906849385066934,41.427347368908592,135.491888603195548 -70.884084657887527,41.433878742177427,135.491783306933939 -70.856102000218314,41.450531337483973,135.519087885506451 -70.829382264584908,41.45808725593561,135.518664046190679 -70.803021499503089,41.462503286305967,135.508616733364761 -70.788604226338919,41.476247889566373,135.539129429496825 -70.77610287306031,41.479103876169077,135.536800426431 -70.754739396320872,41.493894492020424,135.564312974922359 -70.745887231820674,41.502604238899465,135.583912715315819 -70.69563276973264,41.527277766653853,135.616550882346928 -70.659491077419403,41.545022321195994,135.640071772038937 -70.655134025087818,41.551563114974066,135.65687929559499 -70.656197155425176,41.559134832138675,135.68187010474503 -70.654731207887437,41.566796564420173,135.704849623143673 -70.649612108256889,41.571506430418061,135.715151133947074 -70.643579951892107,41.574021382747212,135.717663113959134 -70.641779958985992,41.578961216428048,135.731701341457665 -70.642872066828133,41.584702000147196,135.750897980295122 -70.653281676939201,41.606845121465341,135.830532828345895 -70.652818726409578,41.611818944471054,135.845878066495061 -70.64083553702271,41.626250508202141,135.880760095082223 -70.646083816211942,41.63518114665569,135.9138044686988 -70.653447101825307,41.639462938219921,135.934033617377281 -70.651252115193387,41.645835723365046,135.952230308204889 -70.639527846493195,41.65106081794535,135.958167012780905 -70.638464599957956,41.656206914347607,135.973500814288855 -70.647141541480167,41.680065995858378,136.05687774065882 -70.650118852757672,41.682575223163347,136.067511802539229 -70.662308803647718,41.68338862963931,136.081116327084601 -70.646795821988931,41.695426147841147,136.105166664347053 -70.626273273961345,41.700323406045833,136.10210679564625 -70.624485432549363,41.709029391363941,136.128030736930668 -70.627361778569636,41.714626069666274,136.148330354131758 -70.64374798544371,41.720040748679956,136.180261267349124 -70.645474612132659,41.720611297392281,136.183626119978726 -70.651926754258128,41.717346507862871,136.179136641323566 -70.657430227570401,41.717032104467755,136.18311963416636 -70.671287746068572,41.723542768802012,136.21624012850225 -70.709029190009545,41.732589386172236,136.279005669988692 -70.719575035266402,41.737369742339816,136.303667138330638 -70.727167959344385,41.734360826342957,136.301042277365923 -70.729769617192474,41.725063423217833,136.274020694196224 -70.72213822335992,41.714598722017385,136.234024179168046 -70.718286856794478,41.69561143603822,136.170496026054025 -70.720411297348235,41.686633706521739,136.144027221947908 -70.730231452279355,41.689771654098756,136.162861112505198 -70.745233216850465,41.698598450254252,136.204389296472073 -70.75618442824522,41.695957531896774,136.205981333740056 -70.762317824739512,41.678439751001285,136.156150905415416 -70.762334005928651,41.678272726809446,136.15563728287816 -70.763196816143989,41.669366695648854,136.128247268497944 -70.759034708170716,41.662857324246396,136.103869293816388 -70.758458600073055,41.655897580393223,136.081321411766112 -70.76629968116481,41.643207982890516,136.048284032382071 -70.770154796169308,41.642777970405525,136.050428133457899 -70.774490982085865,41.646665797999169,136.066677776165307 -70.77663510236502,41.650777633457068,136.081641842611134 -70.777545946897803,41.652388447247908,136.087568145245314 -70.809956547752293,41.65806902386101,136.135035743936896 -70.814124002174822,41.657302615321086,136.136405566707253 -70.816566961603954,41.654428677143166,136.129537245258689 -70.81718959710156,41.647627065465372,136.108582026325166 -70.805501473012626,41.642789385592877,136.082627457566559 -70.801052640734341,41.633386085690141,136.048811556771398 -70.801900638247616,41.631146160701391,136.042492494918406 -70.811116866263845,41.626506261744218,136.036196456290781 -70.836134631854549,41.626165232118453,136.057917574420571 -70.844015861744126,41.630119824933601,136.077623124234378 -70.844360841437052,41.630292926623476,136.07848568353802 -70.844366640335892,41.630295836357547,136.078500184230506 -70.84500375507595,41.630615523691027,136.080093177035451 -70.853356772739843,41.628551530165119,136.08117962256074 -70.855869917933447,41.625915916039666,136.075129847042263 -70.856001330589706,41.625778099468718,136.074813500978053 -70.855071222758227,41.620062363673995,136.055870406329632 -70.855050562090852,41.619935398914144,136.055449590086937 -70.854284104205718,41.615225331216209,136.039837631396949 -70.851019396331878,41.595162916729997,135.973320621997118 -70.853058877962198,41.590857501496579,135.961543409153819 -70.85332670733672,41.590292104560923,135.959996732883155 -70.85338926566665,41.590160041794853,135.959635462611914 -70.853959860250669,41.588955497187989,135.956340299919248 -70.854079219275803,41.588966620693391,135.956484508700669 -70.858077852230736,41.589339267964483,135.961315877735615 -70.86369167866458,41.602312085735598,136.007533482275903 -70.863836971728219,41.602647838977568,136.008729483000934 -70.864325539613475,41.603776855374413,136.012751141563058 -70.86934067660961,41.615366180078148,136.0540277864784 -70.869743565822176,41.616297204270623,136.057343289256096 -70.869199652587795,41.624296918061148,136.082171335816383 -70.87046373027124,41.627240802064222,136.09264369122684 -70.873504853929845,41.62944869978282,136.1024084482342 -70.879879947622371,41.631409131792537,136.11443427298218 -70.888483457498012,41.634054833466138,136.130664932541549 -70.890049436843853,41.634536394389407,136.133619327098131 -70.890100928407449,41.634507127268648,136.133573753759265 -70.890434388247172,41.634317593125552,136.133278613910079 -70.905353623770992,41.625837697849128,136.12007705308497 -70.906605556030144,41.625126116184632,136.118969535455108 -70.914043475393441,41.62089850163018,136.112390499562025 -70.905362869937051,41.611994415568695,136.076267597265542 -70.900821261879514,41.595137745254576,136.018739987164736 -70.902221292616332,41.594137771337074,136.016853336244822 -70.911654807521941,41.597139488074923,136.034987787716091 -70.917421835859699,41.609115992743583,136.078184138983488 -70.920915275928323,41.612442786685079,136.091911596246064 -70.92801297437039,41.612886309250371,136.099809957668185 -70.930563683342044,41.6111119861337,136.09652781765908 -70.93084081978617,41.60207412794157,136.068169574253261 -70.928234553346314,41.595697745420544,136.045594089664519 -70.932179119901249,41.585833853913769,136.017967455089092 -70.938819239057608,41.579050051846124,136.00256148353219 -70.942429767203606,41.582667604512096,136.017327121458948 -70.947753038402368,41.582723009139663,136.02237940300256 -70.949638334934633,41.580671460147698,136.017609030939639 -70.948141096913517,41.575293114450162,135.999201033264399 -70.938671076478144,41.566873495581177,135.963850191794336 -70.932385555582371,41.54180445353763,135.878638351336122 -70.942625874279116,41.541756380420459,135.887870700098574 -70.980067170363412,41.532062545800429,135.891485143452883 -70.984195917344053,41.522251786542896,135.86416996922344 -71.004117425205294,41.513547957832095,135.854871560819447 -71.020196886451089,41.510492951378701,135.859967019408941 -71.024365699057412,41.507962375709354,135.855776267126203 -71.03635726247451,41.500683190613792,135.843724047765136 -71.059262065454831,41.507602770250251,135.886757277883589 -71.086507956883068,41.510927448950454,135.922405868768692 -71.121415889243707,41.499083624353474,135.917062944732606 -71.134200570835489,41.631139444734615,136.346930756233633 -71.134456417558653,41.63378214132527,136.355520375072956 -71.134644097142512,41.635720724641082,136.361821079626679 -71.135332200311495,41.642828292002598,136.384919472038746 -71.135326200963647,41.642892289725083,136.385116197168827 -71.13553645993278,41.66213159045649,136.446099669672549 -71.136036475527959,41.662131586765497,136.446560407988727 -71.146718838800084,41.664424424774033,136.463648358359933 -71.15483810918262,41.665731317427408,136.475261671468616 -71.176939850986145,41.669731009095472,136.508280107751489 -71.176939856246619,41.670130994597649,136.509543208405375 -71.176839891269722,41.673030890234834,136.51860808301717 -71.182140071018367,41.674130811175239,136.526972059160471 -71.192025402820946,41.675920673181473,136.541747622191906 -71.192028401914143,41.675844675913375,136.541510452516377 -71.195240509784981,41.676430630910183,136.546325909905136 -71.196490731682275,41.676719105136883,136.548390979878604 -71.225649611525085,41.712124763109081,136.68704882171005 -71.262245623194858,41.753926329713735,136.852646851912141 -71.318645648342468,41.777722919529239,136.979777043685317 -71.318650698824769,41.777725050454777,136.979788428172469 -71.328752072463672,41.78212481633912,137.002994432114065 -71.34015377429526,41.808122793174746,137.095367955975235 -71.340454123618599,41.833621871709767,137.17584090679884 -71.338454083855666,41.83532182538606,137.179333916865289 -71.340155934643477,41.895018664517579,137.368473567999899 -71.340155937319878,41.895218657329643,137.36910152155906 -71.353557397589739,41.8983184457745,137.391233059577644 -71.355557457407485,41.898118438011217,137.392456109635532 -71.363357689075883,41.897218412038463,137.396850675344467 -71.365557755135541,41.897018402775124,137.398259601555765 -71.366257775667052,41.896918401134428,137.398593778721988 -71.371857941252088,41.896218384410837,137.401581755839288 -71.374658026050128,41.896018370655021,137.403547048568726 -71.377459108196746,41.895618364078643,137.404885709285736 -71.382559652469524,41.924317294898195,137.49967441894114 -71.3824596520287,41.924517288466269,137.500209243968129 -71.382261208816317,41.966415786910019,137.631410055793822 -71.382361237502408,41.968315718064311,137.637457521632314 -71.382326358569131,41.986614379212597,137.694765470921993 -71.382261936168476,42.020412853631086,137.800555327907205 -71.458966841409435,42.019376703697652,137.868333954364061 -71.499122760730842,42.018834266392446,137.903896584175527 -71.50076962188362,42.018812020125495,137.905356234870851 -71.501769651797474,42.018712016170994,137.905971989035606 -71.528171450102676,42.016711888776868,137.924244073219597 -71.528471458125026,42.016611890093863,137.924210083670914 -71.560305444192906,42.015955673422283,137.951766526326537 -71.577774986770578,42.015711550252696,137.967266209423542 -71.591971256798814,42.015326255012155,137.979284698143601 -71.800115844858027,42.009677080407243,138.156292193569243 -71.801524101037401,42.025180514213794,138.20605758856982 -72.060634226104469,42.028948396789289,138.462141439318657 -72.103043447754246,42.030570943825978,138.507403853349388 -72.136571629059759,42.031853708150763,138.543228673748672 -72.136599637794205,42.031854035024764,138.543256293982267 -72.199714111835107,42.032590607688064,138.605560248717666 + + + Michigan + + + Michigan + 0400000US26 + 26 + 56538.900999999998021 + + -85.567797525985767,45.761571595451201,164.407652820460498 -85.550915975123047,45.758615892113696,164.378223482519388 -85.545105668431532,45.752763151718199,164.355431449599564 -85.536975412925784,45.751744281373064,164.342319148592651 -85.52659211972562,45.751812402320816,164.329162392765284 -85.507487680003962,45.756065490345925,164.315777212381363 -85.502621534502182,45.755765557807706,164.308745821937919 -85.499010234336964,45.747596866688419,164.282706755213439 -85.505112323648248,45.744121907576449,164.281433111988008 -85.510172702122802,45.743709202931043,164.286848222836852 -85.51144550635253,45.744238828688694,164.289870277047157 -85.509876512646187,45.746341778767409,164.293366531841457 -85.510394611939375,45.749838658698188,164.303194441832602 -85.516499808640532,45.750801554939741,164.313555341213942 -85.521923848839705,45.746095643942319,164.308190310373902 -85.523265758129114,45.740769801595079,164.295958455651999 -85.522157674144509,45.738597885527874,164.288843786343932 -85.512249117277918,45.735765300217963,164.268695223145187 -85.50013078391099,45.727642503795231,164.231841450557113 -85.495507147793887,45.706730240835952,164.171061586588621 -85.495368977388239,45.699828467789914,164.152777841314673 -85.504153046365502,45.69235060797525,164.144442605786026 -85.507456902665197,45.682500890669019,164.122840847820044 -85.505119579138224,45.671825267321665,164.09181507024914 -85.501803336393479,45.665651508472997,164.071343572810292 -85.491603754064784,45.65347602750014,164.026257739402354 -85.4883769196109,45.622566077871177,163.940887959674001 -85.49269776488164,45.61102040524387,163.916092392988503 -85.510626956349313,45.597830625871623,163.904482227750123 -85.519389119039744,45.594267639170369,163.906393107958138 -85.528246338149842,45.592945577796677,163.914322067983449 -85.531624377722537,45.590608614550554,163.912527294829488 -85.535415219836167,45.579553932719726,163.888336710631847 -85.542480344197159,45.576400952721066,163.889146619476378 -85.562985856537779,45.573568803159056,163.908127500675619 -85.619402702784996,45.584001792241466,164.008327127434313 -85.62409491672139,45.587382625557709,164.023267222568393 -85.631370414342996,45.599520140672183,164.064545394852757 -85.621204761824202,45.62590039558669,164.120709146372974 -85.610007624666281,45.633361283762071,164.125859071500599 -85.605875682333291,45.640609095233479,164.13955866266042 -85.606305895599391,45.648951816828358,164.162009107880294 -85.610650271052862,45.659419422532167,164.195073405280709 -85.606236722083764,45.683283694093326,164.251979876309633 -85.602197774992206,45.690211515526862,164.264943245798349 -85.5921247115879,45.699402334708303,164.276070351712406 -85.585079578213026,45.702147328629813,164.274199122563004 -85.573664512019946,45.712800116186216,164.287435966543853 -85.566487774459972,45.732069572553428,164.328702358528972 -85.566130121138087,45.746812096130007,164.366860954090953 -85.568484307990417,45.751768906647129,164.382868100889027 -85.569137501820649,45.759004663152425,164.402654154226184 -85.567797525985767,45.761571595451201,164.407652820460498-88.685941693412403,48.117022521269746,174.364608845673501 -88.677135580742871,48.121681499376209,174.364280359819531 -88.677902732122561,48.126113358631393,174.375926679931581 -88.675699736813812,48.128402320050569,174.37854257132858 -88.658422601106849,48.140462191309915,174.384915900416672 -88.615532842846434,48.156034295291519,174.366288649849594 -88.579919055476338,48.163607539285834,174.33800545334816 -88.548538532217449,48.176128582354288,174.32716544251889 -88.526257619261116,48.166529156150119,174.275070535950363 -88.502592032227284,48.169419380936006,174.251189691014588 -88.493464986163133,48.176704286377372,174.256813413463533 -88.4835428345433,48.181153285558224,174.254589799791574 -88.461238314820335,48.1850454630531,174.234922136180103 -88.448738933628874,48.184154652632841,174.216522888280451 -88.424103468984399,48.192213738239843,174.203866845928133 -88.419746035213564,48.181609106273946,174.172704884782434 -88.421376800065261,48.171970367874785,174.151643509976566 -88.428874897328143,48.168003386390986,174.151851806789637 -88.451004425225392,48.164551198592342,174.172334886156023 -88.461199575741901,48.159790205211564,174.174151860177517 -88.471075690538029,48.154118242810782,174.173366342671216 -88.487202704686496,48.138922478885974,174.157818240113556 -88.513404981509709,48.122938606824235,174.153513646684587 -88.568441724828332,48.094958711776641,174.158007492311299 -88.579556767009336,48.085612842204945,174.150037450715899 -88.579898591050565,48.079243025848363,174.135156029835343 -88.577372436914658,48.076406142702311,174.125028391368687 -88.575427198237904,48.07010135443538,174.107311594299972 -88.576551092986236,48.065394478844041,174.097449387423694 -88.581287067295008,48.059909579043158,174.090433738194406 -88.671577244341663,48.012686795827669,174.094892748631537 -88.720060137360093,47.996374644904492,174.11918639857322 -88.773863245672047,47.98236635588998,174.156097644008696 -88.793465733841415,47.980178163859897,174.176587444730103 -88.83357046275286,47.966453046001611,174.196289182640612 -88.854431052419486,47.966561768925537,174.22399924043566 -88.900693002244509,47.954539519408712,174.255993721075356 -88.919538307325624,47.946844501154139,174.262318501248956 -88.925082240867113,47.939215655811559,174.251275286078453 -88.964173962584709,47.924751319748026,174.268046920187771 -88.970412727152024,47.91071388119807,174.242509830743074 -88.970412500392058,47.902915306276995,174.22374264523387 -88.959493736274112,47.896676638261617,174.194308292120695 -88.943895773732493,47.8966768431996,174.173715954646468 -88.901205538112549,47.903686030163918,174.134268046356738 -88.900493467040391,47.901926092102357,174.129090222530067 -88.913172551539517,47.89258520486468,174.123316658660769 -89.000448304314872,47.868730772238827,174.18113818205893 -89.024245710164848,47.859772727802159,174.191041709855199 -89.045973237084013,47.856990525459238,174.213094194419682 -89.057922479649378,47.853838462789142,174.221323768608272 -89.109502430200237,47.836945290924639,174.248991748318076 -89.125645675022909,47.829856291300288,174.253333436325192 -89.159250479064454,47.825254986949233,174.286842077039182 -89.191683604097591,47.832842331450479,174.348147819750011 -89.194194727242888,47.83466924344048,174.355875637382269 -89.193720935968628,47.842299020459443,174.373593812808394 -89.203326471095622,47.851481618003902,174.408421266824007 -89.2360484263519,47.852956141952596,174.455417113378644 -89.237067514658719,47.855012066765212,174.461710521951318 -89.236050532902112,47.856611032180098,174.46420138143003 -89.23002244254063,47.859277031712573,174.462600679136813 -89.248290330167919,47.872253401103791,174.518029943108559 -89.252452427553607,47.871614365308609,174.522023384459317 -89.256718713519888,47.87733913721808,174.54143534693867 -89.248643850367472,47.889739872052445,174.560481415130198 -89.227843472654641,47.896674938969298,174.549519379623234 -89.222226473956894,47.902086851040913,174.555057077668607 -89.222848702184933,47.909305626668321,174.573208092711866 -89.216015681681995,47.915131542531924,174.578125783242285 -89.180670312236657,47.936266377200326,174.581988603807986 -89.096721925784479,47.96915850311639,174.549818716943264 -89.019816489981892,47.993761783999908,174.507297843694687 -88.995676098217686,48.003526811487824,174.498895022086799 -88.942398107942168,48.020826998789971,174.470218492671847 -88.932998903661925,48.022874061696086,174.462757017463446 -88.929040733300468,48.020852173834093,174.452691736631095 -88.916543413180179,48.021918306606061,174.4388009570539 -88.896580096732706,48.03029632048861,174.43265045247972 -88.897838212278515,48.033038222567662,174.44088916759938 -88.895212225224086,48.036007169012905,174.444563522934914 -88.837224235741417,48.05798927979756,174.421130714938045 -88.817593690127865,48.05824353024591,174.395965155214071 -88.811970480261991,48.056484656224043,174.384358716197312 -88.789065062271519,48.064272726478613,174.373005699366331 -88.773585844025732,48.071739708764092,174.370637870393693 -88.773339098890304,48.080694447108471,174.391821523196995 -88.765765052850355,48.086426377087548,174.395656925626099 -88.745966715803789,48.094006413018938,174.387914238497615 -88.729706524213682,48.103151356349784,174.388576759025455 -88.70709415164032,48.112250384529403,174.380824515596032 -88.696860848876952,48.111786532498328,174.366319108754396 -88.685941693412403,48.117022521269746,174.364608845673501-84.594562430643307,45.818748493169743,163.320665910840034 -84.595570950681946,45.820135084778052,163.325589999556541 -84.598373298612785,45.823987970156679,163.339271620847285 -84.613170982328441,45.834787449281848,163.386344459839165 -84.613224150844573,45.834845595968076,163.386564554646611 -84.614176126044242,45.83588670464097,163.390505292452872 -84.625194642402079,45.847936885009666,163.436110493727028 -84.630570879295476,45.851371711585259,163.451919165439904 -84.641032243038964,45.853981505479702,163.471950299106538 -84.652115719673361,45.860567163916308,163.503233684226871 -84.652668822433824,45.864201040336667,163.513496411964297 -84.648209215036644,45.88599839022033,163.565257660113275 -84.643137089005236,45.886842422222927,163.561101675964892 -84.630769662900349,45.883934660091853,163.537903183139861 -84.623847342646556,45.878886903340891,163.51591657102108 -84.609531550157698,45.86298858232945,163.456064232625067 -84.604253159570945,45.852997965830554,163.423114757984877 -84.590602150069827,45.827153958435247,163.337847964838147 -84.579657698861425,45.821451269894858,163.309055011719465 -84.539723256365704,45.809203129838636,163.226569399237633 -84.5157686197049,45.81148033471375,163.202497098594904 -84.494277886356315,45.806703738572125,163.162915511056781 -84.433796699816881,45.788094041395389,163.037904991768301 -84.428048568527714,45.789556060807918,163.034562177024782 -84.422591517578923,45.794055978732452,163.039612158201635 -84.421020641119839,45.801184766769133,163.056477383710444 -84.422914833938123,45.807012556698282,163.074245094321668 -84.420659794796933,45.808108547474617,163.074314543046057 -84.412234325666219,45.798578952744975,163.038584130816162 -84.404531799634483,45.785756456092983,162.995049156248569 -84.357342141233133,45.773258406292406,162.902902108617127 -84.357634092963337,45.770858480468078,162.896919897757471 -84.371563180949323,45.75755374940713,162.879168923944235 -84.373569993205024,45.747148062795546,162.854151162318885 -84.395614381957714,45.736665146987278,162.854041104204953 -84.396922363619339,45.734289208780012,162.849393496289849 -84.395360193447942,45.728987398561387,162.833402770571411 -84.407174411401527,45.723781430471099,162.834440781734884 -84.420224771110156,45.723076302242468,162.848947494290769 -84.431349200326693,45.727671024550304,162.875066622160375 -84.452363845004726,45.729315727819568,162.905796946957707 -84.47050746941467,45.733609378427467,162.939937767572701 -84.485452863780921,45.73207325491375,162.95464879181236 -84.502217501683646,45.7386218482958,162.993029692210257 -84.508801866150165,45.746006532704449,163.02082553692162 -84.51062714823091,45.755698197725799,163.04873297829181 -84.526386835308003,45.765529696564748,163.094512463547289 -84.551230160768284,45.791219577089556,163.19356915447861 -84.562890647734505,45.797573236173726,163.224993306212127 -84.583279387824888,45.803992791585834,163.267563169822097 -84.588901646546518,45.808059594779131,163.285359910689294 -84.591527877288371,45.814576353726373,163.305848797783256 -84.594562430643307,45.818748493169743,163.320665910840034-86.094889359189239,45.009206327622081,163.110105387866497 -86.117052769180958,45.000461360996844,163.116083634085953 -86.135009215727308,44.998242223261741,163.133854001760483 -86.156178933694221,45.003761785222203,163.176404203288257 -86.158044177417381,45.011902487438945,163.200458314269781 -86.15591229667389,45.019469256612538,163.217717150226235 -86.142999460612145,45.041617660713953,163.259429056197405 -86.139450427776609,45.044404608628881,163.26214253809303 -86.119262995001677,45.049844664342935,163.249983930960298 -86.094520142064809,45.042859193862704,163.198900289833546 -86.080456498698538,45.032162722126735,163.152025120332837 -86.094804918124041,45.033027522810499,163.173199276439846 -86.098447983306457,45.031495531417299,163.173930169083178 -86.10166898120498,45.027607624701076,163.16785653680563 -86.103247944276532,45.024178721952602,163.160838779993355 -86.102567814372435,45.019468889340203,163.147447837516665 -86.094889359189239,45.009206327622081,163.110105387866497-86.03452923601553,45.159783965470908,163.429804541170597 -86.007300413111039,45.157115378146614,163.387042615562677 -85.99454798747287,45.154169628333811,163.362531937658787 -85.990765840818739,45.152433731499762,163.352980425581336 -85.97815618824869,45.139728307985479,163.302815753035247 -85.977786760516864,45.122071906204987,163.255562136881053 -85.981785691098835,45.114412116616272,163.240508800372481 -85.985447180064057,45.088439948003973,163.176467563956976 -85.984150995657615,45.082154175214669,163.158099410124123 -85.978433652519016,45.074360505659072,163.129928404465318 -85.978234403474119,45.064027856528419,163.102255908772349 -85.99871181550057,45.057296841311576,163.111273965798318 -86.014425438139213,45.065141390536709,163.15271510463208 -86.021226813701631,45.073032043771853,163.182571713812649 -86.038482646356286,45.087942336497377,163.244757841341197 -86.053778278812231,45.096676860743365,163.287990880198777 -86.060007581525468,45.102141602713637,163.310649447143078 -86.061750720913565,45.105982452631849,163.323112251237035 -86.066371693622273,45.141630197828164,163.423551933839917 -86.060748821908874,45.153654860251727,163.447986738756299 -86.051828718460726,45.159781760224007,163.452490485273302 -86.045785577526942,45.16094579284298,163.447642091661692 -86.03452923601553,45.159783965470908,163.429804541170597-83.373409680275913,41.875633966804521,150.791390771046281 -83.373657003778433,41.87598851533383,150.792753065004945 -83.380916980661482,41.873240342836588,150.794194028712809 -83.383167196633735,41.872388552017775,150.794641022570431 -83.390501518244932,41.863179439978566,150.777247416786849 -83.395034457440318,41.857487796416464,150.766496457159519 -83.397432249501364,41.854477083707266,150.760809227824211 -83.409432118962243,41.83416685532071,150.716969979926944 -83.410808188815381,41.831837805626698,150.71194174233824 -83.423528385500518,41.823790978355781,150.705002773553133 -83.423603332331652,41.823767551773109,150.705032250843942 -83.426604960188996,41.822829314861679,150.706212962977588 -83.427533124735916,41.822539192874487,150.706578124314547 -83.432395857345966,41.821019219229633,150.708491745404899 -83.435416641010931,41.82007499466841,150.709680927917361 -83.437158380951558,41.818335894122271,150.706862640567124 -83.437511096655626,41.817983712916302,150.706291918642819 -83.440824687244785,41.814675143682798,150.700930220074952 -83.442880658367784,41.810159294380753,150.69037817325443 -83.443528119223842,41.802703195606547,150.669351632706821 -83.443733053669504,41.800343189797971,150.662695499137044 -83.44405507085159,41.796634870334159,150.652235810644925 -83.44457633670396,41.790632022338166,150.63530214317143 -83.439147048920148,41.772601133285711,150.575247570872307 -83.438727810904325,41.771208826478905,150.570609159767628 -83.438442571842813,41.770664560982887,150.568636746145785 -83.438408571073097,41.770599684013845,150.568401630967855 -83.436783065249728,41.767498051542134,150.557160830125213 -83.435449787419515,41.76495402015972,150.547940242104232 -83.434184853576355,41.762540396134369,150.539191782474518 -83.434043836030881,41.762271320136421,150.538216452114284 -83.433289165964098,41.760831331935073,150.532996772788465 -83.433162239833692,41.760589143807458,150.532118869945407 -83.432314888592146,41.758972310377047,150.52625791169703 -83.428588128656273,41.751861268592705,150.500477964058518 -83.428546733427112,41.751782282231865,150.500191587023437 -83.42851916520938,41.751729679232838,150.500000865198672 -83.427640726835548,41.749154478981502,150.491281832568347 -83.425390576540934,41.742558014352092,150.468945168890059 -83.425286898719634,41.742254075949482,150.467915900051594 -83.425366246696655,41.742225683110796,150.467936544679105 -83.435571110901179,41.738574108437064,150.470593335106969 -83.453108542181113,41.736002022039671,150.4860515659675 -83.455043560533738,41.734163072059658,150.483187350444496 -83.498945745514604,41.73336263958474,150.538501507602632 -83.500945796404807,41.733162626137052,150.540542324073613 -83.504645895625913,41.733062590913889,150.54511143732816 -83.505546920244853,41.733062581403296,150.546295682899654 -83.586450088123371,41.730862810934234,150.64627031236887 -83.595050319060164,41.730662727650525,150.657008813694119 -83.596450357265425,41.730662712843177,150.658852754160762 -83.637852462244197,41.729363324550356,150.709595080465078 -83.640852542176049,41.72926329662414,150.713256783783436 -83.667154244232933,41.728463048768319,150.745595945045352 -83.686554763606125,41.727962862392019,150.769727785140276 -83.764374932100552,41.725423504458966,150.865078563801944 -83.881610113503797,41.72159798849534,151.009075192734599 -83.881761955944967,41.7215930337034,151.009261973202229 -84.361654492713797,41.708432835750521,151.610402692109346 -84.39778365979258,41.707442055523863,151.65594367031008 -84.400666734240403,41.707268031202553,151.659302084706724 -84.400782882873571,41.707265450843394,151.659450329840183 -84.439304759891513,41.706409648287199,151.70864041429013 -84.807329487124093,41.697592009050176,152.178967350162566 -84.807265705678759,41.708987569605839,152.212078641168773 -84.80728995889443,41.722046065216105,152.250141658820212 -84.807313198815351,41.734410587863373,152.286170561797917 -84.8073222899407,41.739104406707717,152.299845236353576 -84.807382398300518,41.74461619348795,152.315967686474323 -84.820122068619753,41.761559401861213,152.382490144111216 -84.826379144898794,41.761491057679571,152.390753696672618 -84.826445237001309,41.761490335775157,152.390840989537537 -84.933736108651971,41.76119017942159,152.53525055386126 -84.962112864037749,41.76093687984509,152.572995393536985 -84.962814885060496,41.76105086779323,152.574278889223933 -84.972804152143041,41.761025759818736,152.587757864966989 -84.974056182544629,41.76086475237291,152.588988845236599 -85.039071931540249,41.761299025969507,152.678526814095676 -85.040690978447842,41.761483001186065,152.681260923855007 -85.118524054383386,41.761197161338416,152.786274896934628 -85.124359211178657,41.761240095833791,152.794341714121401 -85.173488521297429,41.761114562803058,152.860886257141829 -85.197896175325212,41.761231290866938,152.894491409882903 -85.198032916403946,41.761231682211694,152.894678966142237 -85.234095143536734,41.761334889986991,152.94416106492281 -85.273477197235678,41.761494451698844,152.998376962728798 -85.274212215114602,41.76140644703041,152.999125501140952 -85.274974232675589,41.76126544411315,152.999757285229862 -85.293360726704307,41.761457234825443,153.025425447151065 -85.293439610174303,41.761458064787192,153.025535611435771 -85.299626895052739,41.761523163459479,153.03417706489563 -85.309402156982514,41.761592053421879,153.047733445651829 -85.319391420993028,41.761477948082216,153.061054730787873 -85.33188575393136,41.761476810822138,153.078131069429219 -85.351437273382487,41.761402598760334,153.104651830159128 -85.380397044025884,41.761369281530598,153.144176740199327 -85.428818329597192,41.761199755084441,153.209987653419375 -85.433736460026253,41.761177701770301,153.216661841608584 -85.517226673569965,41.760844794257224,153.330189880914986 -85.519518737648227,41.761005762739416,153.333801682107151 -85.608818100573956,41.76057079331526,153.455229584127665 -85.609582123098079,41.760684780456955,153.456609887070954 -85.623878499627921,41.760540627969235,153.475856131874025 -85.626257563619006,41.760584599958364,153.479255991987884 -85.633984770029116,41.760655511753455,153.490091927349567 -85.648954166345277,41.760616347675054,153.510578085668385 -85.652009246941006,41.760594314725807,153.514719278551638 -85.661021493909189,41.760592016918267,153.527118293568492 -85.725807202828932,41.760575498278648,153.616318872198462 -85.751265877318673,41.760581215858068,153.651440037414432 -85.751742889932018,41.760580210608097,153.652095054276288 -85.776313541665161,41.76063693591022,153.686157020740211 -85.792609813337052,41.760540924413725,153.708371904678643 -85.792637971889889,41.760540758514075,153.708410294726491 -85.87331811227935,41.760853850315655,153.82078121509403 -85.876274189950465,41.7608298183874,153.824799476191401 -85.890102557078791,41.760910661509961,153.844157773070037 -85.976180839177488,41.761336686980428,153.964557798579335 -85.976259841262888,41.761336686100414,153.964667268097401 -85.992582274057085,41.761436500374813,153.987576520070434 -86.004963817643286,41.761494397957087,154.004908219911158 -86.063854424815773,41.76176977701477,154.087402866221964 -86.126343813080695,41.762061983504019,154.175046193413436 -86.126743823297403,41.762045979655475,154.175556089729071 -86.129127886726181,41.762077951773826,154.178962017409503 -86.218876237380172,41.761500970347321,154.302168326452374 -86.227356460412551,41.76150087540541,154.313978591933846 -86.227383349853611,41.761501005362284,154.314016421325505 -86.266783500802958,41.761691426356755,154.369464482180774 -86.5030666869947,41.761034797695011,154.69773980230093 -86.520612144321746,41.760928604229996,154.722014750353992 -86.525517132909869,41.760937649305333,154.728913842700422 -86.641341307026408,41.761151234016104,154.892023452557623 -86.642483336108413,41.761113222600585,154.893518486060202 -86.747821093972433,41.761461018345102,155.042633003555238 -86.749396134767636,41.761446001107025,155.044807009398937 -86.801912510266831,41.761729395470361,155.119582515209913 -86.802008512547602,41.761718394811474,155.119686265476048 -86.80287953525692,41.761718384944736,155.120913626626134 -86.805728609536004,41.761718352669867,155.124928419478238 -86.824930110060265,41.761718135103528,155.151992306113243 -86.82613014133652,41.76171812150357,155.153684056364 -86.824852268424706,41.762375814944498,155.15376709587872 -86.803366717435679,41.7734339615455,155.155170836485922 -86.8030741029784,41.773584563853824,155.155190052464604 -86.79601393786578,41.777218277559605,155.155654508620501 -86.795933449979771,41.777259702927225,155.155659809708595 -86.794811163829635,41.777837319244114,155.155733784660697 -86.779244765548455,41.785849006512777,155.156763854436576 -86.778528395362002,41.786217706696902,155.156811442226171 -86.777381594900802,41.786877089986838,155.157085738144815 -86.776099555469742,41.787614232503685,155.157392425462604 -86.752593181039956,41.801129844950367,155.16302396170795 -86.736508049508075,41.810378417342683,155.166886694729328 -86.718337523769691,41.820826042434646,155.171259163878858 -86.716878441315089,41.821811223982046,155.172029425390065 -86.698841382980007,41.833989958018115,155.181555489078164 -86.680971912248921,41.846055535999596,155.191000674851239 -86.680655053594549,41.846269480938524,155.191168223507702 -86.65027122907162,41.871135352703412,155.219693672843277 -86.648899751779794,41.87225775844248,155.220981574617326 -86.646595568457229,41.874143483131554,155.223145404830575 -86.645347739673454,41.87516469595203,155.224317255429924 -86.645264286681723,41.875232993194693,155.224395628087223 -86.631166262947318,41.886770700034631,155.237636806443334 -86.630643762980512,41.887198309719466,155.238127605058253 -86.625136023768789,41.891705798303562,155.243301401846111 -86.625073469002146,41.891756992611597,155.243360166437924 -86.622558562182988,41.893815171727923,155.245722738094628 -86.620741478490331,41.895302258123721,155.247429810464382 -86.618277920185946,41.898099759194061,155.251978790387511 -86.618185007257139,41.898205266751184,155.252150351181626 -86.617328487570646,41.899177890270401,155.253731894306839 -86.61355045034675,41.903468051880303,155.260707788169384 -86.613379144361375,41.903662578911558,155.26102408953011 -86.612810524247493,41.904308277206582,155.262073983438313 -86.612195546072044,41.905006617540067,155.263209470547736 -86.60182378636857,41.916784300871726,155.282358654774725 -86.59919840995471,41.919765555095211,155.287205534055829 -86.598101595074368,41.921438464234114,155.290452171117067 -86.589961767761096,41.933853678465759,155.314543593674898 -86.589126730770488,41.935127312768621,155.317014757543802 -86.589062080419765,41.9352259202619,155.317206076346338 -86.588020499774458,41.936814583828166,155.320288398303092 -86.586995598116204,41.93837780789174,155.323321273550391 -86.586563774639274,41.939036443622037,155.324599095620215 -86.58419299237211,41.942652462667759,155.331614291295409 -86.583496484223176,41.943714806848305,155.333675194531679 -86.582817079658994,41.945238305521841,155.337077526375651 -86.566021857131076,41.982899961157834,155.42114866245538 -86.565576024817574,41.983899696886155,155.423379396088421 -86.565376885727858,41.98434624698433,155.424375779926777 -86.565203897382176,41.984734156575541,155.425241311080754 -86.564898005178861,41.98542009018103,155.426771792583168 -86.562841864727389,41.990030785808621,155.437058771029115 -86.557836997193661,42.001253716315162,155.462094022892416 -86.557720982602788,42.001513867798771,155.462674275971949 -86.55062784584976,42.012391382123113,155.483801461756229 -86.550536808424212,42.012530990444198,155.484072592109442 -86.54658839063444,42.018585994510232,155.49583136010915 -86.546166801627038,42.019232512510378,155.497086817398667 -86.543017757863694,42.024061655235933,155.506463987752795 -86.54238914190816,42.025025654600853,155.508335778489709 -86.537363037947273,42.032733319400322,155.523300555534661 -86.535155462006202,42.036118696168053,155.529872786253691 -86.534233781940699,42.037532117214781,155.532616631127894 -86.53393963117712,42.037983205283879,155.533492305316031 -86.533461301209556,42.038716737092884,155.53491625841707 -86.510156513890493,42.074455253693053,155.604271067306399 -86.502622256275714,42.086009240484515,155.626683820039034 -86.491422382138694,42.106607576535012,155.669738828204572 -86.486523520868758,42.119707129461723,155.70020669605583 -86.480331169965822,42.124986826537828,155.706612151116133 -86.467876364274304,42.135605992489765,155.719496969133615 -86.467562351847675,42.135873724494196,155.719821847043931 -86.466213107312768,42.13721981856277,155.721774652600288 -86.466197810598644,42.137235079559346,155.721796790137887 -86.465655889255501,42.137775735524905,155.722581132315099 -86.465267417962238,42.138163299744157,155.72314337734133 -86.464985200822071,42.138444857912255,155.723551836796105 -86.442062180503115,42.161314353779119,155.756728648208082 -86.440716025335576,42.162657365746036,155.758676937781274 -86.439208744866008,42.164161126799357,155.760858416557312 -86.438447933982005,42.164920161233546,155.761959533207119 -86.405445981879467,42.19784505651252,155.809722357429564 -86.403482786316033,42.200008260189449,155.813145071268082 -86.400214837471296,42.203609143933505,155.818842437118292 -86.39983595304318,42.204026628676381,155.819502980448306 -86.398991469552328,42.204957147185844,155.820975231006742 -86.396297070727528,42.207926048311435,155.825672520324588 -86.395482939148152,42.208823122697005,155.827091823332012 -86.394864627967792,42.209504426723178,155.828169737011194 -86.394817843663859,42.209555977359273,155.828251297585666 -86.387891317728062,42.217188170001513,155.8403261275962 -86.386478909302568,42.218744473027833,155.842788268812001 -86.384964834534401,42.220672860286982,155.846166444942355 -86.384884565397002,42.220775094328211,155.846345537342131 -86.382734285719295,42.223513778071315,155.85114305652678 -86.381706512581658,42.224822791788604,155.853436078876257 -86.381335386428773,42.22529547316951,155.854264074936509 -86.366180043564398,42.244597935337573,155.88807204272598 -86.357517900589002,42.255630393882413,155.907391617074609 -86.323103152663393,42.312205629786455,156.020263871178031 -86.298468477462947,42.35966810595535,156.120720407925546 -86.285748890241805,42.396022871518937,156.206091957166791 -86.286270053847133,42.40327359087248,156.227331567555666 -86.278179076763095,42.414776247034411,156.248710617423058 -86.275194401637705,42.420739057901606,156.261460671201348 -86.262874302647759,42.445352263738656,156.31407368555665 -86.251011739529119,42.481669026127861,156.40035677421838 -86.24274902335388,42.536151597717058,156.542782279662788 -86.241944739350487,42.541454874497397,156.556635483168066 -86.236583115707418,42.5664119959144,156.619635053910315 -86.23655761451765,42.56647732147421,156.619784133508801 -86.236058553792944,42.567755748936072,156.622701577842236 -86.235897063341298,42.568169433721508,156.623645612969995 -86.23249337446552,42.576888551845926,156.643540732562542 -86.229385307880008,42.584850384271967,156.661704510450363 -86.227340738243001,42.594264504006858,156.685418481938541 -86.227281606128514,42.594536774909663,156.68610424362123 -86.226916478934157,42.596217985064996,156.690338575281203 -86.230354466161643,42.639144334157805,156.815922286361456 -86.227942552856078,42.646373090475656,156.832948731258512 -86.21732467701429,42.665863480745593,156.873192949220538 -86.209959059511121,42.693539528180146,156.940892123617232 -86.208139583573399,42.720872526460305,157.015187999233603 -86.20961553314153,42.764235889850838,157.138929549604654 -86.21019223596565,42.76898634517304,157.153045726008713 -86.212170043816158,42.785278075720349,157.201444116421044 -86.213123109853456,42.834680224513903,157.341174671426415 -86.212045627409751,42.860571273819268,157.412177208811045 -86.215447234625998,42.884997327341502,157.485162436030805 -86.217519040422459,42.92044798801129,157.587090332061052 -86.227616781380831,42.989722306926296,157.794262068346143 -86.234019537837767,43.017199217944054,157.879605648107827 -86.245590571360026,43.051116833077074,157.989876729436219 -86.251382893457773,43.05892447858848,158.019517548382282 -86.251831108444321,43.068428123007308,158.046578326262534 -86.255960570104975,43.084843470600106,158.097882278263569 -86.273311597317488,43.119798103398004,158.218730010092258 -86.282072397809841,43.137447234328505,158.27970790117979 -86.300365879310732,43.167895691836016,158.389180660247803 -86.312654700733617,43.18834973414846,158.462674473412335 -86.313205542749557,43.189266579251637,158.465967949479818 -86.317577621660703,43.196543655080156,158.492105935700238 -86.331155890746544,43.217229101706899,158.567947948351502 -86.345963759654637,43.239787748347553,158.650615024380386 -86.349967340270751,43.245886894651385,158.672957905568182 -86.350230314597894,43.246287515756229,158.674425380304456 -86.351121319174354,43.247644892505726,158.679397338069975 -86.351347313054703,43.247989176751297,158.680658396333456 -86.353512411428639,43.251287537120902,158.692739241756499 -86.353635128136105,43.251474486558656,158.693423950113356 -86.355825679815098,43.254811623061606,158.705645793117583 -86.359316961909897,43.260130321987688,158.725122833624482 -86.38420475358113,43.298044951601753,158.86389390937984 -86.385144014582423,43.299475843206324,158.869128628633916 -86.387418583544076,43.302940973364464,158.881804592907429 -86.387697235030842,43.303365477384681,158.883357418701053 -86.389815690274176,43.306592780334839,158.895162305794656 -86.3907326151826,43.307989644612732,158.900271498598158 -86.393447550885298,43.312125639450549,158.915398368611932 -86.394708341787236,43.314046356997778,158.92242263443768 -86.397073376381883,43.317649304499938,158.9355981182307 -86.403008267996654,43.328558543930697,158.973813329823315 -86.404334163148008,43.330995742191774,158.982349460944533 -86.404864977384648,43.331971460015048,158.98576670512557 -86.406155446141625,43.334343539128042,158.994074068032205 -86.409156183647468,43.33985935396727,159.01338935829699 -86.413265748862258,43.348631900618351,159.043200098909438 -86.428910634861154,43.382028496091721,159.156627935357392 -86.436083515045667,43.397340193943933,159.208600669167936 -86.436168030052542,43.397520605187204,159.209212922491133 -86.436450186335421,43.398122914381723,159.211256933398545 -86.436597230742308,43.398504120017449,159.212507620453835 -86.439222729109687,43.405310599688789,159.234836747869849 -86.43935428009452,43.405651639358666,159.235955451615155 -86.439593442155399,43.406271655623122,159.237989246845245 -86.440201490071388,43.407847990913098,159.24315984826535 -86.44980646197952,43.432748422795328,159.324809296987951 -86.450070323787756,43.433432471936939,159.327051591128111 -86.455897541034346,43.450893746370511,159.383039082400501 -86.457410914833034,43.455428575483339,159.397575383074582 -86.458173040801171,43.457712288203801,159.404895137995481 -86.458889423684738,43.459858931622826,159.411775172688067 -86.463523637565544,43.47374536684827,159.456272345036268 -86.470076174947266,43.493380063049685,159.519162097014487 -86.470083455545691,43.493396222439763,159.519216411747038 -86.470247719798479,43.493760809248272,159.520441865548491 -86.478285296202984,43.511600322271619,159.580390478484333 -86.478753426648993,43.512639344312326,159.583881222642958 -86.480045679389974,43.515507517246,159.593516785651445 -86.480605971555704,43.516751093496659,159.597694331780076 -86.480882463568491,43.517165717516022,159.599209220148623 -86.482488506743337,43.519574120090923,159.608008348383009 -86.482980328632209,43.520311650139782,159.610702824778855 -86.483200172855902,43.520641325830631,159.611907239072025 -86.483585560239291,43.521219248004819,159.614018554799259 -86.484372937372115,43.522399989055998,159.618332052603364 -86.484413254075903,43.522460447488363,159.618552917614579 -86.507130109550275,43.556526363470333,159.742950176820159 -86.510537124358024,43.561635480691564,159.761598194949329 -86.510670427040154,43.561835379742483,159.762327766977251 -86.513648506110272,43.566301270216321,159.778626089915633 -86.515500332643413,43.569078246328431,159.788759815506637 -86.516440132211557,43.570487558106691,159.7939024111256 -86.517170384222581,43.571582634965345,159.79789824038744 -86.517627368056679,43.572267922254355,159.800398734398186 -86.51805720936629,43.57291250694982,159.802750672213733 -86.518825237046443,43.57406423172992,159.806952956132591 -86.520030297708672,43.575871325744529,159.813546244986355 -86.521244136331291,43.577691583075705,159.820187267847359 -86.52153742543392,43.578131395772786,159.821791840717196 -86.521580536700696,43.578208989428106,159.822063175961375 -86.530840045598552,43.594874682359098,159.880329241976142 -86.539256382187887,43.617376876575143,159.953403840772808 -86.539830818991888,43.618912709655469,159.958389848470688 -86.540210262492977,43.621368150661922,159.965627743862569 -86.540254717082931,43.621655823587844,159.966475685127079 -86.540437040957912,43.622835671211128,159.969953326508403 -86.54062520252225,43.624053295466766,159.973542209714651 -86.540637215208818,43.624131031525977,159.973771329037845 -86.542250230466337,43.634569116643625,160.004532344639301 -86.542240217302606,43.635458405738987,160.00695216935128 -86.542229842099076,43.636379848399081,160.00945942569524 -86.542144860053597,43.643927277748254,160.02999387588352 -86.542121480036883,43.646003705898309,160.03564256709069 -86.541974409358701,43.646909933661156,160.037921651266515 -86.540098081351005,43.658471589831237,160.066993777640164 -86.539816732324098,43.660205221086528,160.071352335624397 -86.53952067548154,43.660812857585093,160.072611547075212 -86.531020502922161,43.678258883096476,160.10875872336328 -86.530513904332793,43.679298642241584,160.110912655480206 -86.529001479383766,43.680961461217883,160.113403039053082 -86.528198228951069,43.681844586073716,160.114725679159164 -86.519201694559627,43.691735726977882,160.129539168439806 -86.517486746301614,43.693621208019572,160.132362902164459 -86.515706078076562,43.695578944164112,160.135294829495251 -86.512343053210543,43.699276384975683,160.140832096338272 -86.511653854822569,43.700034116588846,160.141966863535345 -86.50895524146884,43.702547312106958,160.145170219242573 -86.508025201132256,43.703413450714088,160.146274224855006 -86.506013889841824,43.705286567711809,160.148661790415645 -86.504526673565422,43.706671599509953,160.150427242740989 -86.504323853572458,43.706860484034863,160.150668008252978 -86.5032336111706,43.707875817460938,160.151962235569954 -86.497521514880773,43.713195443915566,160.158743247389793 -86.489715636643297,43.720464991669125,160.16801037080586 -86.488317906710606,43.721766685629404,160.16966981254518 -86.483188673812421,43.726543496483309,160.175759615376592 -86.481990065478342,43.727815874642502,160.177609156817198 -86.481963038890441,43.72784456461509,160.177650858648121 -86.481602123758705,43.728227692713425,160.178207779303193 -86.464770920515022,43.746094793372606,160.204179177060723 -86.46288860334441,43.748092960136269,160.207083645276725 -86.461778735349043,43.749773430599348,160.210167608223855 -86.446866389604111,43.772352473654941,160.251596686430275 -86.446457711626167,43.772971260133033,160.252731868997216 -86.446238148297439,43.773475866207292,160.253811570815742 -86.444121132860317,43.77834124543206,160.264221411198378 -86.439056906536337,43.789979980688059,160.289119116961956 -86.438725897566684,43.790740714035259,160.290746276266873 -86.432474951349178,43.816975278590931,160.353831441141665 -86.432378318855839,43.817380835043004,160.354806362651289 -86.432398454371167,43.820583775456811,160.363565315492451 -86.432399888700274,43.82081193298211,160.36418922431767 -86.432508214644585,43.838043221927329,160.411298516206443 -86.432511599869812,43.838581705113704,160.412770363502204 -86.432517525181566,43.839524236275537,160.415346560068429 -86.432533874813942,43.842124948909628,160.422454699873924 -86.432574156101694,43.84234563185003,160.423110439442098 -86.434230011989783,43.851417316412956,160.450062887743115 -86.434807328212699,43.854580170452472,160.459458420053124 -86.435251280804223,43.857012385535391,160.46668300870806 -86.435414255303286,43.857494155524073,160.468215450644493 -86.435594727886624,43.858027651714075,160.469912405125797 -86.436321064029201,43.86017477875135,160.47674179635942 -86.446792356440326,43.89112903351532,160.575156906619668 -86.447067467546503,43.894299954699846,160.584156066179276 -86.447275037023658,43.896692393297819,160.590945390053093 -86.447800743156847,43.902751663637474,160.608138689771295 -86.449253058300542,43.919490994301896,160.655623067170382 -86.449347267603699,43.919818287524002,160.656640216708183 -86.449485518210608,43.920298584957557,160.65813285112381 -86.450888099116625,43.92517130138441,160.673274903558195 -86.452613236226441,43.931164612530452,160.691896641626954 -86.455739319602841,43.942024960786057,160.725633421912789 -86.464095320489719,43.971054600278279,160.815765698440373 -86.464427033834667,43.972207007805309,160.819342358037829 -86.464475658506004,43.972375935097546,160.819866636767983 -86.464559461734666,43.972501255490805,160.820320030674338 -86.482946588980411,43.99999759443012,160.919765369035304 -86.484671886588899,44.002577625900052,160.929093146696687 -86.485739780252587,44.003780345520603,160.933797167614102 -86.503079853902022,44.023309674440242,161.010161734186113 -86.504339486356784,44.025236146924463,161.017084136605263 -86.505474838006648,44.026972545268436,161.023323268629611 -86.505781736409133,44.027441913395172,161.025009730830789 -86.510169291135171,44.034152206823229,161.049118072725832 -86.516084794285291,44.04931660005348,161.098185585811734 -86.516046765049467,44.059068684245418,161.124544216319919 -86.516045023665271,44.059515239386293,161.125751043669879 -86.515916516579836,44.059726499616936,161.126149633899331 -86.510394588784379,44.068804316215555,161.143275767564774 -86.510107082959649,44.069276963681304,161.144167393445969 -86.509757772719411,44.069601677062863,161.144575121812522 -86.502585981274095,44.076268463189663,161.152946666814387 -86.50179603172235,44.077002788048503,161.153868800029159 -86.499279669024261,44.078428998701526,161.154335035011172 -86.470637324936192,44.094662754074271,161.159655912779272 -86.456237240361929,44.102824357441129,161.162340705282986 -86.449020434842382,44.106914660114469,161.163688666187227 -86.448468733739844,44.107227350333275,161.163791780360043 -86.448225261027446,44.107365344503314,161.163837288506329 -86.447951134986027,44.107587900137261,161.164070347324014 -86.431213110328073,44.121177056788298,161.17830334417522 -86.428215565939354,44.12449434592326,161.183243495412171 -86.427218397538212,44.125597881179687,161.184886883944273 -86.426504236108173,44.126388221424271,161.186063858680427 -86.422918284996328,44.130356682015304,161.191973647102714 -86.422450091151703,44.130874817586765,161.19274524319917 -86.401987153386031,44.158242093307933,161.239233859814703 -86.399216662788859,44.162633229407867,161.247381110675633 -86.398364945984724,44.163983172423301,161.249885669909418 -86.397842213174187,44.164811686672422,161.251422788016498 -86.388209735547804,44.180078846033119,161.279744091443717 -86.381530708657252,44.1906648837099,161.299377840012312 -86.38140433181178,44.190865186850878,161.299749311991036 -86.364189285033845,44.209505733818183,161.326992905698717 -86.355934535973944,44.22520347073187,161.358309360221028 -86.35565521026507,44.225734653637581,161.359368895180523 -86.352980463145641,44.230821116905076,161.369514210149646 -86.350636364165823,44.236850639226688,161.382647885009646 -86.345135707614261,44.250999501096032,161.413460804149508 -86.328629562329382,44.264448223604894,161.427627097815275 -86.328244299041884,44.265171839765138,161.429063269868493 -86.32040589585452,44.279894227083261,161.458278995938599 -86.319670904367953,44.281274716109415,161.461018098518252 -86.317993934267136,44.284424465294698,161.467267443425953 -86.317855904660561,44.284683717765937,161.467781801708043 -86.317367735863499,44.285600615019916,161.469600922428071 -86.314954747098085,44.289272920399043,161.476273449137807 -86.314116581345559,44.290548517145943,161.478591110557318 -86.313285938387224,44.291812665025226,161.480887928046286 -86.306033835927579,44.302849573222176,161.500939027406275 -86.305775831144189,44.303242228340203,161.501652321778238 -86.30160685108855,44.309586960971146,161.513177520595491 -86.270052833660031,44.346713034750898,161.571027320809662 -86.253269645579294,44.402371291707055,161.698457722552121 -86.249426997178929,44.42233264221337,161.747024966403842 -86.249664320216752,44.436144159111549,161.784478902816772 -86.253187803998102,44.453017531238643,161.834530542604625 -86.252950114496826,44.466828054408083,161.871318785473704 -86.250259443989705,44.484388476670439,161.914894344285131 -86.250242137398914,44.484408313956251,161.914924544282258 -86.250161907784701,44.48450027532553,161.915064546279609 -86.245090438107937,44.490313332053134,161.923914145678282 -86.240088593842273,44.503065948841673,161.951484705321491 -86.234848494386668,44.519661063183406,161.989041251130402 -86.225134272956026,44.550425485402187,162.058628390543163 -86.222043596014487,44.568123910011835,162.101962183602154 -86.226797369877644,44.595970892264525,162.182892910204828 -86.233175881158019,44.610487316141679,162.230244114995003 -86.255299393153877,44.649458711765604,162.363925229758024 -86.260378894378448,44.665032115623362,162.412311423569918 -86.258146369527253,44.688146346993591,162.471110317856073 -86.256346439922041,44.69331219071077,162.482518931850791 -86.249824425297845,44.700423023483758,162.492850381880999 -86.233832146879607,44.707426971984518,162.490325661376119 -86.173549821132852,44.722000184079121,162.449298908002675 -86.170671544879937,44.723825074373231,162.45035901479423 -86.161934098835914,44.729364806881343,162.453578625805676 -86.161616667211305,44.729566065496847,162.453695637173951 -86.124294094871274,44.729359610946524,162.403718458488584 -86.123813741473072,44.729356953808463,162.403075479902327 -86.122472580132936,44.729349534997681,162.401280299760401 -86.122106297740842,44.729425914262499,162.400999514386058 -86.10964998210568,44.732023375250733,162.391453427262604 -86.107529239227034,44.732465604479295,162.389828685671091 -86.106820625130368,44.732899532795066,162.390050452202559 -86.092086838707743,44.741921943129384,162.394664980471134 -86.090533010680403,44.742873448309318,162.395152013748884 -86.079280088001951,44.759611007880707,162.424983154051006 -86.078415394350174,44.761870703861284,162.429875239729881 -86.078157886818573,44.762543645933007,162.431332069449127 -86.078066045796888,44.762783653233363,162.431851648725569 -86.076005263609673,44.768169076496505,162.443509588949382 -86.074853234298715,44.77117966421747,162.450026113539934 -86.074420425718259,44.779768939814048,162.472386430948973 -86.073093997895256,44.806092491527799,162.540884924121201 -86.067314229214645,44.822896986002107,162.57807784806937 -86.067379541789236,44.836226530441294,162.613706953823566 -86.072461396203735,44.866793428527885,162.701872501522303 -86.073817886526868,44.886160753089769,162.755242014303803 -86.072340104889392,44.897248393315252,162.782811556942761 -86.068095216636664,44.907057109935579,162.80332263931632 -86.060212122498967,44.912384022051228,162.807109058834612 -86.039681662035676,44.917068105544367,162.792525552213192 -86.032543268455399,44.908721473541512,162.760906536132097 -86.022861892562972,44.904146743411125,162.735975675284863 -86.010703477226912,44.900826999853905,162.711124314926565 -85.99388302328758,44.901399178982061,162.690503458492458 -85.981566823793386,44.907509116693944,162.690567680634558 -85.974171820271934,44.916153910279874,162.703860815614462 -85.968517006819155,44.930856477816818,162.735569511540234 -85.962950994304791,44.936939337085541,162.744443711824715 -85.954068868661565,44.942130265812949,162.746585452929139 -85.943446890390746,44.95568893140959,162.768712951801717 -85.939937032489141,44.965930625748655,162.791353327222168 -85.932947936944217,44.970159564978339,162.793425821699202 -85.917198487106617,44.969678767124414,162.771469731815159 -85.898972832199235,44.963386195273443,162.730803391896188 -85.892889563781452,44.959155410346384,162.711559089832008 -85.881279901971766,44.944678037875782,162.657777091488242 -85.871197521302591,44.940404301582198,162.633164462633431 -85.855649067516296,44.939520514707588,162.610412477515638 -85.837494610872227,44.941629656989761,162.592223921790719 -85.816795159320179,44.947004718491414,162.579412848688662 -85.808747032531301,44.951187671487908,162.580012802965939 -85.781782936780985,44.979305036954699,162.619604204781353 -85.779621996610715,44.984447888431845,162.630471982993186 -85.777551347821074,45.001946321245718,162.674350230023265 -85.772739555124801,45.016552884471864,162.706930940039456 -85.763287484680262,45.024825716447893,162.716585497371852 -85.747788701940081,45.052599962070119,162.770211247727275 -85.742180646967768,45.056945881626255,162.77444332651794 -85.713606083102576,45.066992879517649,162.763857441954315 -85.697058874014957,45.077831709320044,162.771090030670166 -85.68243984523518,45.094063335239412,162.795179185457528 -85.677014994637531,45.106909967174481,162.822251465171576 -85.676205222519556,45.11758561799202,162.84956138394773 -85.657368389145191,45.14715684707663,162.903571350499988 -85.619983304018717,45.188138913938339,162.963726477697492 -85.614518100034076,45.185992050124504,162.95092748105526 -85.613027975372603,45.182472185494106,162.939650158397853 -85.608306781011578,45.179845328997509,162.926543191075325 -85.594407391864166,45.179895490836394,162.908617128618062 -85.587329236654426,45.181749512022307,162.904344293288887 -85.565996923355939,45.19391435581035,162.908935880288482 -85.563152031049114,45.201892122443049,162.926416594535112 -85.552414969615384,45.212109907121366,162.939599113538861 -85.541839658755535,45.21153705060599,162.924362026154995 -85.5280757814552,45.190684909546299,162.851158965379 -85.532802630866726,45.178616257822753,162.825240917503834 -85.538233692837565,45.174754323289712,162.822030648589134 -85.553520980769022,45.16872134567538,162.82584863435477 -85.563022050187229,45.160309515793777,162.815841063857079 -85.563446163273213,45.158323985861742,162.811117264442146 -85.56444371797906,45.156727931166387,162.808172751218081 -85.565241765206821,45.155730391066569,162.806559129618108 -85.56623934800875,45.15533136860256,162.80679477006197 -85.567835492338844,45.155131840609862,162.808337935246527 -85.569830668937286,45.155131817164467,162.810929528437555 -85.571520199778774,45.156514543085301,162.816797537729144 -85.575235312158711,45.156857487929585,162.822534671984613 -85.591776722294327,45.154544371006374,162.837883391417563 -85.601143893919783,45.150655391237102,162.839728665538132 -85.615661791401436,45.128931949236829,162.800893753767014 -85.610608320120818,45.114880480396266,162.756973590701818 -85.584538601088127,45.072676205254545,162.61079094465822 -85.574693256753022,45.069754419114183,162.590203177183867 -85.567405837949934,45.060573813575225,162.55627900082618 -85.567469476314088,45.045006337003208,162.514900706708431 -85.571499534318548,45.042651369062348,162.513872604817152 -85.575315689881492,45.044734254133729,162.524388127960265 -85.598521274442362,45.0419200766651,162.547106271609664 -85.600991904994828,45.023122681317098,162.500250213779509 -85.610462968563667,45.014476861830808,162.489553589373827 -85.623218125703346,45.005903001506404,162.483331847935915 -85.607927374625248,44.992036649074564,162.426432186737657 -85.605640318090835,44.99235766505501,162.42430648393929 -85.603694874647331,44.975647252432296,162.377204342745245 -85.603371761111205,44.928119864298345,162.249929675832391 -85.62274121852758,44.924499760002298,162.265546541661024 -85.626835286146019,44.922483780334538,162.265508886426687 -85.641179971147764,44.89163265842943,162.201836388558149 -85.64679397467971,44.885022817004369,162.191510982811451 -85.65026984844171,44.875388103429685,162.170304510742426 -85.653692367006514,44.850470910089001,162.108158108778298 -85.652771937316658,44.833003515027443,162.060226443223655 -85.642988183728065,44.812196337890157,161.991732319816947 -85.638335575485172,44.791459098928357,161.930107486434281 -85.642116346208908,44.776942549758417,161.89616522192955 -85.641551358145378,44.776432131192223,161.894057598896325 -85.637432118150542,44.772710748898334,161.878690587356687 -85.629316803964699,44.768889974130332,161.857823390513659 -85.625875849294573,44.768420478408977,161.852059496566653 -85.624942071727403,44.768293070577023,161.850495382212102 -85.621885980457961,44.767876086942245,161.84537642262876 -85.620982562789621,44.76775282151884,161.843863234855235 -85.612110270294068,44.766542255311293,161.829003347083926 -85.609035511448397,44.766744860747451,161.825521894730628 -85.606919739487225,44.766884275549842,161.823126440867782 -85.601207608954169,44.767260665610991,161.816659892909229 -85.600589966586071,44.767301363988729,161.815960734151304 -85.600437249152989,44.767378298170279,161.815967158414423 -85.595167285764092,44.770033137975993,161.816189312376082 -85.594904873977242,44.77016533268138,161.81620039884001 -85.594808351719976,44.770730138299207,161.81758842151612 -85.594782568673082,44.770881009302343,161.817959184758365 -85.593186455378074,44.780220759705209,161.84090908896178 -85.59247864536627,44.784362551646559,161.851084823720157 -85.592458206455063,44.784482151139777,161.851378648541868 -85.592319150220163,44.785295846898599,161.853377649560571 -85.583051441684475,44.809165141927231,161.905217483639717 -85.582726620926081,44.809675039340704,161.906158808618784 -85.547225739144224,44.865403648233062,162.00899965967983 -85.54037671601435,44.870247500321454,162.013024629093707 -85.534265588648537,44.874569488526241,162.016617015004158 -85.532063915379581,44.890560837744985,162.05652526486665 -85.532045747950306,44.890692792713665,162.056854510679841 -85.53198390801694,44.891141952932657,162.05797521956265 -85.554684008637196,44.892294493967462,162.090664242394269 -85.554844574177849,44.892302646282182,162.090895510278642 -85.560859677300144,44.88949167128213,162.091226496733725 -85.565844981788132,44.896624371043629,162.116802620701492 -85.564271750431217,44.897989985503244,162.118400943465531 -85.563838917536557,44.898365698113835,162.11884068697691 -85.558592847529383,44.902919452434674,162.124170781113207 -85.557983336505671,44.90344852723986,162.124790084548295 -85.55780695684561,44.903601630351574,162.124969298951328 -85.552902471463909,44.907858878466058,162.129952842369676 -85.541038786699346,44.918156931400027,162.142009501345456 -85.540281279717519,44.919263362147262,162.143979134038091 -85.539624292306243,44.92022297188204,162.145687378011644 -85.534888822754809,44.92713969911766,162.157999576069415 -85.531812855197913,44.935109629346776,162.175286973826587 -85.530568959020286,44.938332604157168,162.18227706849575 -85.521541251186662,44.961723685255478,162.232994868420064 -85.521779473983628,44.962525607929997,162.235446381382644 -85.522034593663747,44.963384410102371,162.238071723841131 -85.523436452380452,44.968103447454141,162.25249672587961 -85.523232006598647,44.968822784772001,162.254151026718318 -85.522125896444052,44.97271460544745,162.263100825250149 -85.521370563318712,44.975372226036519,162.269211968407035 -85.520211572968634,44.976041307216882,162.269489303231239 -85.493936162411273,44.991210012274848,162.275788234546781 -85.493721863991297,44.991225030536242,162.275549591518939 -85.476539702976908,44.992429174631454,162.256420022808015 -85.47401177689575,44.986934700454938,162.238465742208064 -85.473043180566819,44.98482944603343,162.231585767120123 -85.471797330665652,44.982121578010407,162.222735928371549 -85.471550292317886,44.9812405093531,162.220062162727118 -85.469628157445129,44.97438516550892,162.199256381951272 -85.469355224610112,44.973411743464339,162.196301785297692 -85.468182616286839,44.969229605383475,162.183607053011656 -85.466278719352047,44.962439307310703,162.162992532365024 -85.467984715749793,44.960221362322237,162.15928602591157 -85.472023113749216,44.960615192111774,162.165590876713395 -85.47259573731192,44.960671035100923,162.166484901681542 -85.472981155809649,44.960708621610422,162.167086652480066 -85.473592885617364,44.960768278291013,162.168041743338108 -85.475609070579182,44.95990616430884,162.168361364863813 -85.487075129761962,44.955003315544701,162.170181741937995 -85.49038432818422,44.939464350359643,162.132969147525728 -85.491229449037405,44.935495926277085,162.123463492840528 -85.492048004548977,44.931652244851911,162.114255825988948 -85.492549844823202,44.929295759463024,162.108610389754176 -85.492574061012036,44.929182047794953,162.108337962068617 -85.492620681700345,44.928963131587004,162.1078134868294 -85.492727377517028,44.927246513692445,162.103363688103855 -85.49273812924163,44.927073530317386,162.102915269322693 -85.492748337410532,44.92690929215312,162.102489521726966 -85.492805569325171,44.925988493863692,162.100102541968226 -85.49283075621193,44.925583264681784,162.099052052944899 -85.493731105512509,44.91109764129066,162.061493734829128 -85.493824267191926,44.909598773256974,162.057606725953519 -85.49081146855373,44.904523697512133,162.040109223686159 -85.490260582455463,44.903595726869561,162.036909599788487 -85.48995800832482,44.903086039092571,162.035152178257704 -85.491038074929037,44.898912524364526,162.025395181961358 -85.491255215528767,44.898073465481076,162.023433493450284 -85.499340433188124,44.866831159152845,161.950364128686488 -85.502205052528808,44.860210652644078,161.936374717392027 -85.503515327252416,44.857182438014028,161.929975378327072 -85.503718970711816,44.856931489474633,161.929569002240896 -85.509560554308663,44.849732943223437,161.917911699041724 -85.50995032422361,44.849252632243875,161.917133865877986 -85.513084883160616,44.848494947939258,161.919193469919264 -85.514908559982814,44.848054129522509,161.920391898602247 -85.518330229700339,44.847227044913964,161.922640755772591 -85.520178520314161,44.846780276859768,161.923855694010854 -85.520429558738911,44.846719595953921,161.924020716920495 -85.528514843082604,44.842382435806798,161.922956177033484 -85.534767583906245,44.839028300427159,161.922134386375546 -85.539856194310616,44.83629863536467,161.921466543339193 -85.541257883051486,44.835546732491771,161.921282730996609 -85.544039810559667,44.832775332297729,161.917492497712374 -85.547354841138016,44.829472846406887,161.912976013496518 -85.54845299412564,44.828378849036568,161.911479881033301 -85.553130991871754,44.823718553733499,161.905106632038951 -85.554184214668624,44.822669316538907,161.903671756386757 -85.555178400891137,44.821678892514242,161.902317317202687 -85.557227962214242,44.819637087142219,161.899525102227926 -85.559286074050661,44.815753439292138,161.891809986904263 -85.56156489465252,44.81145331503577,161.8832669230178 -85.561566125718869,44.811355456750462,161.883006349205971 -85.561586443856413,44.809740354584555,161.878705644980073 -85.561681879711827,44.802154098813617,161.858502648770809 -85.561685887220136,44.801835539595615,161.857654209248722 -85.561733673960418,44.798036943956937,161.847536666318774 -85.56174254509753,44.797331772287734,161.845658340491354 -85.561757358627162,44.796154236604465,161.842521733604372 -85.561821299799718,44.791071518892004,161.828981846570969 -85.561821432045676,44.791061006591768,161.82895384170115 -85.570114550660122,44.775859910941548,161.799042728729546 -85.572351462061022,44.77175970390789,161.790973477065563 -85.576503499649093,44.764149114840606,161.775994289666414 -85.577572651091074,44.762189384949622,161.772136832587421 -85.577899202474825,44.761590823810089,161.770958625711501 -85.577249611862769,44.760984474062873,161.768482565879822 -85.57263394263309,44.756676052998721,161.750888037495315 -85.556106614521411,44.750300410843252,161.712165538221598 -85.555658318693631,44.750127474614729,161.71111520845443 -85.55541504330553,44.75009831541383,161.710718810558319 -85.539616827059675,44.748204727359855,161.684979460202157 -85.528547550692736,44.749618808165145,161.674304562620819 -85.524627788900787,44.753085377909478,161.678485527634621 -85.510762994064038,44.765347163535189,161.693276206962764 -85.50610638008942,44.769465392733295,161.698244478553534 -85.506102930625246,44.76948538876831,161.698293628171086 -85.506031086467601,44.769901858761067,161.699317265301943 -85.505266468494639,44.774334236529164,161.710210927762091 -85.505410320773933,44.775283852551276,161.712946466170251 -85.506118696262803,44.779960071122005,161.726416205056012 -85.506575703686309,44.782976926693728,161.735105358064175 -85.508444801652686,44.785654120737767,161.744726587086916 -85.510582947572416,44.788716684393442,161.755732017569244 -85.509793794622951,44.790064921811805,161.758317342028022 -85.508804514285359,44.791755069170833,161.761558220721781 -85.50092305737914,44.805220235036479,161.787374829873443 -85.497645686238428,44.806690156771275,161.787038674578071 -85.48600014563678,44.811913255560718,161.785847204737365 -85.483304216388348,44.813122396919816,161.785572050139308 -85.478754962118671,44.81516276629992,161.785108303651214 -85.477079464304353,44.815914237691359,161.784937684424222 -85.476445893863058,44.816198398050808,161.784873191267252 -85.476127620306698,44.816341145758486,161.784840800799429 -85.475953848977198,44.816488993418908,161.785010533407331 -85.464274894795508,44.826425650220656,161.796419183723629 -85.46424752077391,44.826448940513231,161.796445925720036 -85.46423744512785,44.826492164336464,161.796548648737371 -85.463953810849176,44.827708935737874,161.799440310336649 -85.46177669573126,44.837048609016051,161.821633425541222 -85.458806872261704,44.840990366693966,161.828325833193958 -85.458803607406566,44.840994700038294,161.828333188779652 -85.458659967028964,44.841185349607066,161.828656872734427 -85.457338208450764,44.842939680162338,161.83163532987237 -85.456667822455358,44.843829463408795,161.833145963028073 -85.454015201296812,44.847350208013815,161.839123196899891 -85.443582002263312,44.861197880812213,161.862630752846599 -85.427135785948792,44.883026452264623,161.899680406786501 -85.424335016098439,44.896399031664679,161.931836629286408 -85.407504931317831,44.913152660517532,161.954788559116423 -85.397132085150886,44.932397130285729,161.992795837111771 -85.379619157960136,44.999964052966924,162.150664845481515 -85.382987712415627,45.01978334572479,162.20795832015574 -85.381993332879176,45.047694417761313,162.281156638637185 -85.378920464932122,45.057088137717471,162.302232263609767 -85.367746460363904,45.07039782087994,162.323251071386039 -85.368243590636851,45.118311206785719,162.451591390185058 -85.373906967123517,45.127613828695942,162.483696630224586 -85.378284478939776,45.144253219998276,162.533660606481135 -85.381801466603562,45.182246907478252,162.639290052466094 -85.388063844930016,45.190867545968842,162.670309573411942 -85.388801747975378,45.20893526655199,162.719285620376468 -85.389931970445332,45.236608996970993,162.794258775189519 -85.372932327386437,45.272202010301498,162.866785098798573 -85.356817153349581,45.284141801900944,162.877667609602213 -85.336354840234748,45.295394667534829,162.881128856912255 -85.325279746847372,45.30472248729901,162.891595495864749 -85.308984516616007,45.314507353208754,162.896551492623985 -85.296186231711374,45.31777539465088,162.888734677806497 -85.290906026965843,45.315419534744315,162.875685784965754 -85.275126613460657,45.316810673379294,162.85905986558646 -85.264333403766656,45.320874664854493,162.855949503369629 -85.256387324063041,45.327042553192044,162.862087471410632 -85.253530365295845,45.332230414516602,162.872173445299268 -85.236966096746869,45.340741326174914,162.873445441015065 -85.211009775094325,45.358304047940422,162.886664374731481 -85.198040494836405,45.36200807703198,162.879829130135477 -85.183807095771783,45.362191237491935,162.862039578147233 -85.144986219692669,45.371736375491921,162.837543285451829 -85.097318914194815,45.368368897222005,162.767504871822894 -85.074950590154174,45.366788676701375,162.734657294116914 -85.068301912919807,45.366318977822253,162.724896092899144 -85.065582850818174,45.366126888418989,162.720904427580535 -85.064791864761943,45.366071008841814,162.719743271358311 -85.06223792529552,45.365890584601637,162.715994216501713 -85.056137550636549,45.365459620792876,162.707039806060493 -85.047967528802317,45.363655367282604,162.691790862940252 -85.046857757177222,45.363410287232519,162.689719601534307 -85.045053455232733,45.363011828304984,162.686352116987109 -85.044777854312159,45.362950965073352,162.685837749391794 -85.044433157581253,45.362874842842025,162.685194427147508 -85.034144859391802,45.362619971257402,162.671350434422493 -85.023565686734301,45.368069914335109,162.672286617569625 -84.999934356882733,45.37154158286458,162.651283388026059 -84.976687800008563,45.374956724433297,162.630639887414873 -84.960449110039406,45.377342343245175,162.616229981184006 -84.91717928068347,45.394484280803901,162.606525498442352 -84.91386641410854,45.404196998810107,162.628095011226833 -84.914285589022711,45.41114476472427,162.647078355774283 -84.917494864936884,45.419007468059668,162.67204524576664 -84.92333613165475,45.42328225910213,162.690841157920659 -84.977701665546434,45.430168755676604,162.778481154702604 -84.977954831041814,45.430200824215319,162.778889411129057 -84.980301054919806,45.430498020998982,162.782673022709787 -84.981799157859882,45.430687786084079,162.785088980570436 -84.982284985374989,45.430749325980329,162.785872474312782 -84.982523863563983,45.430702959069976,162.786054476164281 -84.991373202505116,45.428985278150833,162.792798213660717 -84.992117168305811,45.426631347092695,162.787504935637116 -84.990555642403081,45.425620237385004,162.782828842289746 -84.98874795473958,45.424449734517658,162.777415514923632 -84.988475238270269,45.424273146816162,162.776598826982081 -84.986260240409464,45.422838904937542,162.769965616986156 -84.985167864758239,45.422131576530852,162.766694248653948 -84.979704726370514,45.421539025188579,162.758146185427904 -84.978447656399169,45.421402678925368,162.756179365329444 -84.979939666604864,45.420030706781837,162.754444566555321 -84.995523015180908,45.424540107614021,162.786307935602963 -85.036189884011677,45.436308002501526,162.869469867087901 -85.039075134198328,45.437142916064055,162.875370630063117 -85.041606026897611,45.437875288128382,162.880546739324927 -85.042269864149659,45.438067384718686,162.881904409267008 -85.048277498690723,45.442795087814169,162.902113371528685 -85.051568332718034,45.44538480695639,162.91318261064589 -85.052081544893213,45.445788678856701,162.914908833801746 -85.054328525369669,45.447556938298483,162.922466557472944 -85.070908210019837,45.460604307446438,162.97822489682585 -85.0718198125127,45.461461363127114,162.981660184450448 -85.089091826739462,45.477699885852388,163.046736876480281 -85.089722162824486,45.478292505024122,163.049111425876617 -85.098478756164951,45.497048195523469,163.109937858767807 -85.105279924177779,45.5116155726638,163.157162128016353 -85.110589814248968,45.52298879104476,163.194020040333271 -85.110691189279578,45.523278209417256,163.194914712570608 -85.112221754484196,45.5276478622281,163.208421711809933 -85.112292941601424,45.527851096290782,163.209049891680479 -85.116817413059181,45.54076813427659,163.248968984931707 -85.117123240881298,45.542895084719056,163.254979732446373 -85.117208384572209,45.543487236236729,163.256653092801571 -85.118744843518982,45.554172895333785,163.286845508031547 -85.118994846631253,45.555911599710619,163.291757482104003 -85.120833537904218,45.568699202012048,163.327877041883767 -85.121014484024442,45.569957633443281,163.331430966965854 -85.121060266558516,45.570276038609769,163.332330154255033 -85.121076237590984,45.570387112829295,163.332643831148744 -85.120364968992945,45.574363397367854,163.34223366342485 -85.120164517791537,45.575484002200731,163.344936136156321 -85.119976352416998,45.576535924206119,163.347472909837961 -85.119692134979715,45.576985984183665,163.348298070952296 -85.119150880402572,45.577843063980033,163.349869458936155 -85.113769570415087,45.586364399992675,163.365491725504398 -85.113745496122007,45.586402521777885,163.365561611019075 -85.113248414109407,45.587189654077065,163.367004584521055 -85.113076800857542,45.587323065126952,163.367137612774968 -85.109082909307276,45.59042789100868,163.37023373413831 -85.108248159881512,45.59107681990276,163.370880893431604 -85.107585561308838,45.591591919819002,163.371394598856568 -85.106797732821974,45.592204372674409,163.372005411423743 -85.104860110290957,45.59371066810931,163.373507731594145 -85.104416091092645,45.594055845811155,163.373852010816336 -85.104256195546,45.594180147592581,163.373975993134081 -85.103560567761932,45.594720924209497,163.374515373259783 -85.103316605813646,45.594910578677244,163.374704542569816 -85.098137757922004,45.598936582115059,163.378720570355654 -85.096869956135023,45.599922163169722,163.379703807644546 -85.094864230245037,45.601481401736073,163.381259420886636 -85.080867234877331,45.618443011006242,163.408160822466016 -85.08070879495655,45.618715390387763,163.408677386119962 -85.077623502842471,45.624019419573784,163.418736023828387 -85.077025282564179,45.625047840133149,163.420686247758567 -85.077017687545151,45.625102205355681,163.420819973573089 -85.076800716923586,45.626655283247921,163.424640161916614 -85.076249392694962,45.630601667728463,163.434346692636609 -85.075581998809952,45.631111969772789,163.434841893613338 -85.072720758528817,45.63329972845569,163.436965052038431 -85.067055425610889,45.637631549661783,163.441169562749565 -85.065313657489469,45.638963338669825,163.442462372593582 -85.062827254262672,45.640864489834591,163.44430801551789 -85.062345588104364,45.640990356164366,163.444026241078973 -85.046211292778338,45.645206480734323,163.434592335484922 -85.042375382713786,45.64620885947005,163.43235076405108 -85.036928345189708,45.64763224908981,163.429168585687876 -85.021445093651337,45.651678246432667,163.420128845609725 -85.020711883379491,45.651869844869552,163.419700978323817 -85.016679224203159,45.652923636971636,163.417348018847406 -85.015690703542234,45.653493789276517,163.417593808844686 -85.014555944546572,45.65414828794578,163.417875994928181 -85.008364100939886,45.657719577902888,163.419416500255466 -85.006983505742951,45.658863381067675,163.420676682144403 -85.003682265919423,45.661598410549914,163.423690158873796 -85.002492049075215,45.662584488005798,163.424776684492826 -84.998769351354966,45.669121147102601,163.43727948423475 -84.997674112968198,45.671044268608156,163.440957648679614 -84.997405576469887,45.671220379077916,163.441080524586141 -84.97557488363924,45.685537291733837,163.451076865196228 -84.9722877841063,45.687693023462764,163.452583273872733 -84.971550284207751,45.688342691509625,163.45335893984884 -84.946988007132717,45.709979747783578,163.47919814940542 -84.945093577425553,45.711648562229414,163.481191529892385 -84.943973627556943,45.715650672239917,163.490316980518401 -84.942410360036476,45.721236965804628,163.503053342923522 -84.941863760362295,45.723190224770278,163.507506284862757 -84.943436292376262,45.729707450911256,163.526672028936446 -84.943462964346395,45.729817990637549,163.526997074484825 -84.943881348897122,45.730222798104016,163.528594366274774 -84.945320432625323,45.731615181824978,163.534088341519237 -84.94729574284392,45.733526390835323,163.541629210114479 -84.948604384211848,45.734792565204494,163.546624868176877 -84.951564340971984,45.737656467774059,163.557923841290176 -84.95217841523484,45.738250614580551,163.560267848894 -84.953083789107581,45.738683793717051,163.562557551078498 -84.955613500316957,45.73989414244631,163.568955180235207 -84.956732345677182,45.740429457723998,163.571784716099501 -84.95946835227592,45.741738509164584,163.578703976236284 -84.969648052879137,45.746609020697441,163.604447464458644 -84.983667676802611,45.753316756240586,163.639900240115821 -84.984312996654282,45.75337880081598,163.64088274911046 -84.984655305580645,45.753411712265809,163.641403920948505 -84.985168857393774,45.753461087942071,163.642185821197927 -84.985272854137946,45.753471086757074,163.642344160936773 -84.985907255449078,45.75353208156411,163.643310065381229 -84.98665733055492,45.753604197881316,163.644452103413641 -84.998095226488971,45.754703899648199,163.661868557333946 -85.002996292531179,45.755175114887805,163.669332287274301 -85.004254538832441,45.755296089553894,163.671248530037701 -85.012773535486602,45.759318554132022,163.692651740275323 -85.015849856373578,45.761684731659798,163.70278406701982 -85.010513965970787,45.763819041913543,163.701622072607279 -85.008750845345759,45.76452427499391,163.701238341629505 -84.996445690738611,45.761211717508033,163.676898707635701 -84.939650606182354,45.761249014704539,163.60493257176131 -84.939128330812039,45.761134417147169,163.603968610987067 -84.932801216645913,45.759746123016676,163.592291004955769 -84.928140675219908,45.758723507938853,163.583689660765231 -84.926568244833291,45.758378485573417,163.580787704326212 -84.926002143609054,45.758254271754161,163.57974296156317 -84.923816507381559,45.757199244539187,163.574194167740643 -84.922029305805623,45.756336545486292,163.569656872190535 -84.92133388417362,45.75600085890683,163.567891348153353 -84.91173557033251,45.751367662293646,163.543522850610316 -84.868312374926617,45.753424103696716,163.493925699964166 -84.84231645506712,45.746109644992501,163.441739137284458 -84.812287718794735,45.747351681446041,163.407016078941524 -84.811745222879708,45.747374119940773,163.4063890138641 -84.809619466210364,45.747462044620221,163.403931966982782 -84.807976503933361,45.747530000154249,163.402033044025302 -84.806448341473271,45.747736881771942,163.40064565371722 -84.801998144510421,45.748339346474239,163.396605830639601 -84.800892323521495,45.748489051782869,163.395602085627615 -84.793808398665604,45.751888748060956,163.395607727579772 -84.790914141958396,45.753277751184967,163.395610532723367 -84.790227081816255,45.753607483057593,163.395611241459846 -84.790155138163257,45.753642010042924,163.395611316896975 -84.790142405832313,45.753657048137342,163.395634867250919 -84.783329261768145,45.761704019701206,163.40823632478714 -84.78270713399715,45.762438811814107,163.409386986866593 -84.781134293130606,45.77100855246654,163.429986951872706 -84.788563000255522,45.776250281919808,163.45318696834147 -84.793625126387539,45.779822141073282,163.468994966708124 -84.793671864140933,45.779855119443923,163.469140915200114 -84.794487934485687,45.781821046239237,163.475351543165743 -84.781647727088568,45.788581977336783,163.476940263062716 -84.775490124876995,45.790276358012484,163.473626486025751 -84.775348654315152,45.790315286312399,163.473550368100405 -84.774099559839371,45.790658998274175,163.472878323867917 -84.752904794257077,45.784091458361594,163.428811176680028 -84.743333552641815,45.785492524728326,163.420421345159411 -84.73539842165674,45.789563485579386,163.421135487966239 -84.733721583419594,45.789286641444889,163.418289953842759 -84.727525164364735,45.788263619520741,163.407775288447738 -84.720236733114916,45.778958005761211,163.374049923382699 -84.717328377456639,45.767533409654213,163.340256333351135 -84.683298162000682,45.757557129519427,163.271010000258684 -84.680876923582701,45.750455387870069,163.249216299504042 -84.646151709037781,45.741351087321924,163.181398054584861 -84.606040121072297,45.723030148024058,163.082456160336733 -84.574957959797132,45.711743875380719,163.013474926352501 -84.556822246167911,45.703631349265073,162.969188065268099 -84.554637095785893,45.699929494803392,162.956646015867591 -84.54049268460551,45.691843648649566,162.917449227534235 -84.540490381273642,45.691842331918458,162.917442847043276 -84.540323490635231,45.691746926601475,162.916980341076851 -84.463002370212124,45.653770056801513,162.719139216467738 -84.443669869389467,45.656137203567489,162.701107177883387 -84.436736889408465,45.665471980370441,162.717131935060024 -84.428816781208937,45.670566906468117,162.720681747421622 -84.414963387448097,45.670793059379754,162.703881022520363 -84.401603859479664,45.664711411445758,162.670987020246685 -84.37772298848391,45.656931940250303,162.620383384637535 -84.330855844352016,45.665747195156243,162.584972364827991 -84.291002434653791,45.654664014967963,162.505624365992844 -84.271554674175221,45.646158515512063,162.458688068203628 -84.216582852901141,45.636136474329895,162.363259316422045 -84.205532066122188,45.628485854330236,162.329106391407549 -84.197356986702886,45.622826128221583,162.303838338702917 -84.181827145751512,45.60600985377733,162.239704966545105 -84.158433019645855,45.586676751897514,162.159015861339867 -84.140773239933537,45.575086332181428,162.106082974001765 -84.130177668163853,45.563656826224424,162.06240201368928 -84.127842468985278,45.557989037776785,162.044387145899236 -84.128281151995949,45.543801495452158,162.007141286507249 -84.123618584755619,45.52516215728054,161.951634963974357 -84.117996173501567,45.514424572423081,161.915973927825689 -84.11054677597761,45.506545915212008,161.885643179528415 -84.097213208958806,45.498673325256007,161.84796248562634 -84.077099472157528,45.491912776563375,161.804766388610005 -84.057444877495683,45.490725040317123,161.777022856287658 -84.041264511814944,45.495109082106183,161.768504079431295 -84.037592463882376,45.49762104201271,161.770621499978006 -84.030119270758661,45.498601095455285,161.763902137055993 -84.010887665529111,45.496445385771061,161.734130001626909 -83.999655250739295,45.492534641934689,161.709664093330503 -83.97932173212773,45.495514776861278,161.692245379090309 -83.940564590061769,45.49456625034955,161.641373122110963 -83.910774557983515,45.487161832071884,161.584457976743579 -83.883114346426979,45.469285731561484,161.502203767187893 -83.859860190171801,45.448244684557913,161.41694575548172 -83.842842432205458,45.436667257119005,161.364760943688452 -83.807920052367948,45.420540182270173,161.278090470470488 -83.790074473292705,45.417796474896384,161.248531006276608 -83.774468042057137,45.418683623089905,161.231494195759296 -83.756865389222767,45.412416028210608,161.192803637124598 -83.738616858958082,45.412325238260991,161.169874296523631 -83.72311046401343,45.414686336833448,161.156935890205204 -83.698610364750166,45.397622173561544,161.08072947524488 -83.669227250031184,45.386058885370694,161.013207237236202 -83.645082255302412,45.373094583719997,160.948423749767244 -83.600563530050835,45.353946715232915,160.841738367453218 -83.571650570433533,45.348584217784271,160.791469081304967 -83.551557070512743,45.352218325357164,160.77633854188025 -83.548088010911982,45.3540233052912,160.776894357986748 -83.547018110659621,45.359783128434692,160.791056826710701 -83.539594890183153,45.359553219750083,160.781243969686329 -83.521546118809994,45.348625781812295,160.729502978734672 -83.516004940442841,45.347846869856575,160.720546508207917 -83.497991669086304,45.358922709679291,160.728045053780079 -83.490113402756165,45.357258853046005,160.71382144652307 -83.479080765787572,45.343278435925384,160.662554059177637 -83.479015253905558,45.343214649406036,160.662301338277757 -83.469385339716823,45.333838354736578,160.625149171799421 -83.446957126115024,45.312000824467951,160.538594419136643 -83.434324603207216,45.305077194060836,160.504314746707678 -83.42642421866887,45.298197509003643,160.476003143005073 -83.424462268385994,45.293895412612684,160.461980571039021 -83.423770417025153,45.292378344985259,160.457035385072231 -83.423673002707631,45.292164738253803,160.456339078955352 -83.423555904883457,45.292103149271959,160.456028227694333 -83.421793839573468,45.291176370237579,160.451350565999746 -83.402374132168191,45.280962346003683,160.399795538745821 -83.402163004537201,45.280918600411354,160.399416516534984 -83.402036616493774,45.280892412840309,160.399189624004066 -83.401544452810853,45.280790436648203,160.398306083865464 -83.400128481566895,45.28049704775993,160.395764133892953 -83.389556700429566,45.278306577331861,160.376786718145013 -83.386386547149868,45.275585702435066,160.365528535097837 -83.383025332248849,45.270373911644654,160.347313289530575 -83.389316199457483,45.25636730204522,160.317295702174306 -83.413851704602592,45.247198328529358,160.322901841253042 -83.413692544692353,45.240296557735057,160.304076755419374 -83.407196092205467,45.228549017926959,160.264321536757052 -83.388868564999441,45.208499802545703,160.187485804781318 -83.385545932786044,45.204865042171626,160.173552670516074 -83.382927854331385,45.20475007532886,160.170001952908933 -83.370176009687142,45.183561917930334,160.096948955208063 -83.369325767986027,45.173872247631103,160.069694518111646 -83.364957506891315,45.167863495190232,160.048035599291325 -83.361174320095557,45.164414651593113,160.034023335203528 -83.349962961635597,45.162910826883731,160.016079015098512 -83.339100325016261,45.148515424603836,159.963680302724242 -83.317395580841392,45.143353838249212,159.922852421179414 -83.317201531314353,45.141387905470005,159.917289459146559 -83.320592578027131,45.139079943912101,159.915235452353954 -83.319719357302802,45.130326243436151,159.890449969097972 -83.309156386040684,45.100490349989478,159.796541595831513 -83.299550916140376,45.09188074279546,159.761314048431814 -83.292102225989339,45.07055553353733,159.694261487573385 -83.292621095170986,45.063995745526775,159.677107728086412 -83.281546405083603,45.047361421678097,159.618254700675607 -83.278311284923944,45.046166497483334,159.611005772836506 -83.272737975965939,45.039513780760061,159.58604477904737 -83.267169564840174,45.0282442175452,159.548547837883234 -83.272779651183129,45.024817268955061,159.546186832711101 -83.289248195162898,45.027861983981481,159.574852658435702 -83.303427735218804,45.033714631103521,159.608310289680958 -83.341533042276097,45.042943898681266,159.680589277297258 -83.358885745671159,45.052011403323149,159.726706654764712 -83.368747290211289,45.063665905796363,159.770543453283608 -83.400533389556685,45.071761281236597,159.831921678967774 -83.435077103591169,45.059013318023382,159.840258279815316 -83.443331195767712,45.052453443661058,159.832732486538589 -83.454642171954717,45.03672884004493,159.80416174326092 -83.455447118318091,45.033277945877714,159.79580557718873 -83.44762055345663,45.018053540408545,159.744783977046609 -83.436527127108533,45.0132818235206,159.718045964837074 -83.432531925399076,45.00939699764681,159.702538066543639 -83.437099879695722,45.001411212639461,159.686545823700726 -83.440225969882974,45.001410177693167,159.690430363640189 -83.451291071492335,44.991618380308715,159.677617326378822 -83.444995046962148,44.953647718037388,159.56666945386678 -83.440132653981777,44.942244153425143,159.529629833064973 -83.434308309898199,44.934291484356173,159.500763705931604 -83.42658695117558,44.928142776225677,159.474435930140316 -83.40587117742686,44.920163274475456,159.426954325288534 -83.400153739698197,44.907819751286432,159.386260797269642 -83.395234523632482,44.904458918672354,159.370994445867836 -83.354087964543538,44.887567943098702,159.273828763514757 -83.321774909425713,44.881975490419308,159.218425003811717 -83.322364560073325,44.859899508097776,159.159003688022494 -83.322508575277581,44.854507713464251,159.144486051984131 -83.322512322862195,44.854367407418003,159.144108245149255 -83.322360462152503,44.854127959691318,159.143266695551574 -83.319644334141046,44.849845280643102,159.128214250318706 -83.315699890241859,44.843625843527455,159.106351993046701 -83.315600553402177,44.843536549006544,159.105984983965755 -83.314210970384778,44.842287443939796,159.100850976072252 -83.31410158707358,44.842189118581459,159.100446838885546 -83.313748765974324,44.841871965437214,159.099143273197114 -83.309848324435947,44.838365833570172,159.084731790237129 -83.30812448731217,44.836816265341668,159.078362195752561 -83.301918220750721,44.831237412573785,159.055428431369364 -83.301007234448534,44.824768879056464,159.036648949608207 -83.29988817677463,44.816822917134985,159.013576173223555 -83.296799772995314,44.79489344719606,158.949876335449517 -83.296787273503298,44.794804693497888,158.949618457816541 -83.296918767898703,44.791644645150363,158.941153716295958 -83.296965578112776,44.790519711040176,158.938140232115984 -83.29739347826218,44.780236498149506,158.910589773207903 -83.298237568996086,44.759951483045569,158.856223282404244 -83.298239551011065,44.759903851681599,158.856095593422651 -83.299289514027095,44.757041182956598,158.84957994427532 -83.299555510400253,44.756315957894671,158.84792922064662 -83.299505805993533,44.755874271764945,158.846660307608545 -83.299064902639387,44.751956291188442,158.835403822362423 -83.298793991947193,44.749548909043597,158.828486802987754 -83.298688615660538,44.748612508221029,158.825796178542078 -83.298568290110452,44.74754326438272,158.822723774239421 -83.29753296129789,44.744911339200016,158.814240450039506 -83.292211753341761,44.731384214943596,158.770630818791687 -83.291932730471061,44.73067490661785,158.768343713134527 -83.289481749613799,44.727863507127545,158.757603285834193 -83.285991278363142,44.723859759363584,158.74230660777539 -83.285395378582834,44.723176232055252,158.739694997668266 -83.284365342826518,44.722421646810993,158.73634840361774 -83.27848052427305,44.718110537000214,158.717227784916759 -83.276013989965932,44.716303599338886,158.709213268943131 -83.275369596003486,44.715831528175208,158.707119397819042 -83.274659897995434,44.715311616468846,158.704813315533102 -83.275940396746336,44.706181388445366,158.681425163522363 -83.276344268376576,44.703301698104575,158.674047489650548 -83.276547613706242,44.701851802823818,158.670332719571888 -83.276584621377495,44.701587930289705,158.66965664178133 -83.276766235564679,44.70029298267697,158.66633873898536 -83.276809476088985,44.699984668584214,158.665548766031861 -83.276867285525853,44.699572475062233,158.664492621086538 -83.277403261245084,44.695750854796508,158.654700167477131 -83.278102461828738,44.69076540690677,158.641924269497395 -83.278742255099445,44.688918697751269,158.63766582775861 -83.280395402719989,44.684147027044908,158.626661805436015 -83.280553948213253,44.683689398900384,158.625606407411397 -83.287257904878089,44.664338996242194,158.580970818176866 -83.288140340361849,44.66179192112309,158.575094173662364 -83.288476682024097,44.660821099471569,158.572854198515415 -83.28885109496737,44.659740388304101,158.570360627956688 -83.289067592855716,44.659115485535324,158.568918738514185 -83.290708032046837,44.654380497171154,158.557992707937956 -83.296643515572896,44.646772550373171,158.544550261460245 -83.308382402187775,44.631725954326306,158.517962045036256 -83.308770047531638,44.631229080729568,158.517083982937038 -83.310487890034793,44.626062782407431,158.505067631602287 -83.311067617214391,44.624319291074983,158.501012137159705 -83.311135051190732,44.624116487830797,158.500540394335985 -83.315715980065036,44.610339646210669,158.46848916541785 -83.315782790653785,44.610138717774653,158.468021645210683 -83.31579972521692,44.609925883652807,158.467459212057292 -83.316302706721672,44.603604396575449,158.450752759352326 -83.316305775348454,44.603565829981648,158.45065082795918 -83.316542404700968,44.60059186518103,158.442790361121297 -83.31670032525281,44.598607115021522,158.437544179148972 -83.316868525566093,44.596493168581006,158.431956230662763 -83.316768175636611,44.594927897270672,158.427537596784532 -83.31539173108898,44.573457931150529,158.366912806406617 -83.315362846386208,44.573007383611149,158.365640256553888 -83.315277782165509,44.571680540252828,158.361892578192055 -83.315189453266925,44.570302773969622,158.358000938780606 -83.315157840735665,44.569809677359679,158.356608107686043 -83.315077927389325,44.568563177977687,158.353087093681097 -83.315057050020442,44.568237529898838,158.352167211472988 -83.315009229924641,44.567491625441839,158.350060169585049 -83.314913808281233,44.566003225443453,158.345855605788529 -83.314887428394741,44.565912751383507,158.345574308186769 -83.310498360538404,44.550859737432205,158.298763731494546 -83.310381528304333,44.550459042489052,158.297517447732389 -83.310182321109338,44.549775829363611,158.29539242759347 -83.310170677905276,44.549555624276962,158.294773189350963 -83.309735125238959,44.541318121927965,158.271606290712953 -83.310648806364597,44.538943934970852,158.26622723415494 -83.311449169329933,44.536864203601233,158.261515100486577 -83.311639950434227,44.536368461715817,158.260391850955784 -83.312509419163817,44.534109160057319,158.255272587761283 -83.312792891040004,44.533372562575281,158.25360351242125 -83.319367566431936,44.516288366239046,158.214885139837861 -83.319542855301819,44.515832880728418,158.213852684944868 -83.31953997833287,44.515711049220677,158.213514287956059 -83.319479529568241,44.513151214663353,158.206403963267803 -83.318873223675297,44.48747585441329,158.135062640532851 -83.328086589631226,44.445830173904824,158.032021686434746 -83.328433272795351,44.430653688722025,157.990676069632173 -83.32587789430066,44.416459202364976,157.948384071700275 -83.322814679379846,44.410539438729955,157.928239109925926 -83.32290958285904,44.405922595667889,157.915638507343829 -83.33501824155374,44.373907558421422,157.842581264674664 -83.336508973282506,44.35941703878197,157.804493612609804 -83.333793519905868,44.341886670225577,157.752728166989982 -83.338248485554132,44.334341880073765,157.737499894574285 -83.344998610771128,44.331185913954236,157.737263348884881 -83.353375905799297,44.333788732106697,157.754962649196386 -83.365573258932884,44.334012589756092,157.770896164700389 -83.374868421339215,44.329206652179643,157.769311217591166 -83.403083670562296,44.303254232640008,157.733154149726033 -83.415562870431074,44.295966345518842,157.728733663447201 -83.420497866783151,44.289223523060031,157.716328559443355 -83.427023725106238,44.273910978239257,157.682260604575276 -83.430950763122368,44.271132476678424,157.679531144909561 -83.443993392996973,44.26678503198459,157.683948791585863 -83.447067315405349,44.274801726112095,157.709958266466856 -83.449004028319493,44.275414886992323,157.714090480469167 -83.462220800660177,44.27959930052014,157.742290907539427 -83.464311923680995,44.280261347439172,157.74675283767283 -83.480794420073522,44.281513122055671,157.770976324565709 -83.501655939653261,44.278033011159764,157.787669067271054 -83.51010311803789,44.27513401757728,157.790320814587176 -83.526081312395803,44.262981259662659,157.776936291716993 -83.538974392431626,44.24959457871261,157.756255622953176 -83.550360268975851,44.22870617380903,157.712953150272369 -83.554136021927746,44.21214270433471,157.671966879628599 -83.55509777641025,44.199381134930604,157.637916353531182 -83.566487906253144,44.164942803672851,157.557102147489786 -83.566520672569453,44.164843733934809,157.556869584135711 -83.567247706412473,44.162645529799548,157.551709200255573 -83.56762910804585,44.161492352887123,157.549001972191036 -83.569007273461708,44.157325437008005,157.539219059981406 -83.569204561008505,44.152409476853457,157.525868489407003 -83.56946302345203,44.145969177448599,157.508375803008676 -83.56950136997213,44.145013669013991,157.505780289880931 -83.569505858602625,44.144901822507649,157.505476469174027 -83.570066169291181,44.130940152099122,157.467544545419514 -83.570093998315897,44.130246716119359,157.465660245157778 -83.57017768496425,44.128161435328984,157.459993642754853 -83.569772093184724,44.125770216581827,157.45286029856652 -83.569240323838102,44.122635101631751,157.443507174029946 -83.568976500051576,44.121079694359665,157.438866590149701 -83.574333261370526,44.102726272447555,157.39482347574085 -83.589266375562872,44.088186612702025,157.373466881923378 -83.592623310809159,44.080665837096952,157.35688367113471 -83.591699079126727,44.070998183566729,157.328919606283307 -83.585351626917657,44.058177699803593,157.285330801270902 -83.602435067190285,44.056115582910898,157.301279873587191 -83.622340662934008,44.057615310762067,157.330693623051047 -83.651379404864969,44.053833121446274,157.357075775042176 -83.680917899924737,44.037794353577752,157.35015082731843 -83.689155800292696,44.022138808368922,157.317221133969724 -83.681371017431317,43.995626819791056,157.233779863454401 -83.710005106472579,43.994427684420153,157.266889653168619 -83.745070760931057,43.992959208354385,157.307469967752695 -83.748043787102958,43.990237270553394,157.303707887418568 -83.758328349626069,43.988029085594164,157.31068826187402 -83.764095318102378,43.986790867330633,157.314604037441313 -83.764280373920471,43.986751134237728,157.314729711972177 -83.76461024150629,43.986680308799322,157.31495372671634 -83.765039189556717,43.986588209923752,157.315245039761066 -83.780351695299586,43.986664950801774,157.334979332983494 -83.789128872200536,43.986708938890565,157.346294076181948 -83.829347356424606,43.990432075830576,157.407930068671703 -83.829664865547187,43.9904614685315,157.408416813239455 -83.830344116397072,43.990524348668373,157.40945812035352 -83.830369498060506,43.990514432380159,157.409463031217456 -83.830390573139908,43.990506198618796,157.409467107616365 -83.849543498373748,43.983023398008591,157.413178885355592 -83.852763264324977,43.980832924873425,157.411219006404281 -83.853017295330005,43.980660102345361,157.411064390093088 -83.853151207068947,43.980568999429522,157.410982885397971 -83.854849344845789,43.979413721303587,157.409949353896081 -83.856197589707492,43.978496482539455,157.409128831699491 -83.856486706442155,43.977426151548464,157.406530946493149 -83.856783082647297,43.976328945480461,157.403867769055068 -83.856839317485978,43.976120760056261,157.403362447395921 -83.856869146299914,43.976010331637717,157.403094408102334 -83.856920332488258,43.975820836680796,157.40263444930315 -83.857344142510215,43.974251861453489,157.39882602263242 -83.857395529150395,43.974061624411135,157.398364244960248 -83.857638415666784,43.973843713939928,157.398070392198861 -83.859640462604943,43.972047537694124,157.395648278295994 -83.859795240061814,43.971908676019126,157.395461027510464 -83.860381616671219,43.971382596577591,157.394751631654799 -83.860572633440157,43.971211222083042,157.394520539790392 -83.860727005936511,43.971072723726714,157.394333782605827 -83.860882093460233,43.970933583869233,157.394146157428622 -83.861010521550497,43.970818362053024,157.393990786746144 -83.870673650116444,43.962148894061926,157.382301049306989 -83.870881789857336,43.962111625701617,157.382463744841516 -83.878314386306442,43.960780785746351,157.388274537399411 -83.87896185213495,43.96066485406557,157.388780811801553 -83.88127868321881,43.956857976397608,157.38118639215827 -83.881380457321711,43.956690747305771,157.380852774716914 -83.88659580055554,43.948121208708592,157.363755549304187 -83.88679365714593,43.94762753531532,157.362639337778091 -83.886810850187331,43.947584636834669,157.362542341463268 -83.891412680853946,43.936102576464812,157.336577893234789 -83.892179461245505,43.924744966200237,157.306045236065984 -83.908655813595018,43.919492967651834,157.312558548524976 -83.912395293417447,43.91195144546591,157.296416500583291 -83.918082675377391,43.900481530358206,157.271861750632524 -83.919141803611836,43.857942013771755,157.155062600970268 -83.927610580993289,43.788833354906522,156.973717113956809 -83.930640448656476,43.778526685138203,156.948914617300034 -83.946691537696736,43.761382112934449,156.921788359060884 -83.956057821279686,43.762367974378293,156.936567445285618 -83.957286821059625,43.760722018926693,156.933563097380102 -83.955612592016024,43.75208334278274,156.907352191396058 -83.940561427346509,43.716806757264045,156.789699910208583 -83.930725582129199,43.702707545741397,156.737737799994648 -83.910741693806813,43.674061601356819,156.632112686522305 -83.898340165918583,43.665462043302135,156.592160621657968 -83.853336504373729,43.646363217515876,156.480979716405272 -83.815933415564473,43.644463697186076,156.42764647025615 -83.80803315629575,43.642662848122043,156.412472815252841 -83.780177141625842,43.631498551080107,156.345511320978403 -83.77195088229422,43.630133690059054,156.331142237409949 -83.771143989644926,43.636366477711903,156.347543334588408 -83.727049413458658,43.620134538836126,156.245598744601011 -83.704701348141342,43.599090531807583,156.15803552698344 -83.700508013000601,43.59823629253102,156.15027020778507 -83.671049260689557,43.592235144780801,156.095726293511689 -83.667306165980278,43.592737168006181,156.092340738512576 -83.655445998887359,43.600735013965185,156.099571670405567 -83.619855613401043,43.630335353667803,156.136979011818767 -83.596832409691487,43.651692849015895,156.167374689131975 -83.564410210735176,43.686006989725328,156.222046234644949 -83.554959962561441,43.686875062620643,156.212424410507083 -83.550297005319933,43.695240817903432,156.229888327419758 -83.552723200780889,43.701343575566796,156.250054675154388 -83.541440066984123,43.710188386703926,156.26041650865227 -83.526089805039405,43.718390265254705,156.263802818022668 -83.517105576845793,43.719599321023189,156.255743774585426 -83.514713435437585,43.716049472596112,156.242768557742238 -83.507909166486186,43.712349677817102,156.223755148239434 -83.481321494044124,43.716078837310953,156.200349317863584 -83.471304394128509,43.724860636969233,156.212176240980625 -83.46867999011053,43.730362147321038,156.224228733219206 -83.466331470791914,43.735285323570693,156.23501317948103 -83.460879464474573,43.742373133267328,156.247905074618757 -83.441422347502026,43.76313561446748,156.28123574424535 -83.440129424384551,43.768576436965681,156.294803170487285 -83.442842564432553,43.771616300194012,156.306745832785964 -83.448003745409991,43.773301184335381,156.318010132759809 -83.439562819495265,43.788286749238729,156.349166549742222 -83.427319746138977,43.801355423576688,156.370135933160782 -83.417629495462322,43.802474490345901,156.360966805368662 -83.412704439639924,43.806473403667248,156.365889617241919 -83.411914473598301,43.809170317504233,156.372420684434474 -83.413708009799834,43.819009034182876,156.402172768488526 -83.41210490287817,43.827024909137421,156.422521603293717 -83.408898488080055,43.833437629007449,156.436358921229839 -83.391595554589415,43.840571436954413,156.434342638589442 -83.390268544717259,43.841896404979529,156.436359747312963 -83.390675635095832,43.845668268139967,156.447403737343848 -83.360120044984541,43.858834140846142,156.445454154163599 -83.333520774798075,43.881960621479756,156.476332585327327 -83.33303904111294,43.895339158274055,156.513042012229562 -83.334783187279825,43.899957977503028,156.528128061443567 -83.342227524502448,43.905978685279493,156.554327539168298 -83.349258298289186,43.907825431671434,156.568365762941539 -83.349899679527425,43.911352397687793,156.579008787870407 -83.348617111932697,43.913596851398069,156.583643543533981 -83.339318198618457,43.917123938763588,156.581719699315727 -83.319907165368548,43.919057472203697,156.562580032274127 -83.306940899434039,43.923926443925339,156.559774652123451 -83.283560561361583,43.939468156748205,156.573579090647399 -83.270230562209377,43.957568670663207,156.607201799750328 -83.263100629973309,43.970457299028396,156.634116444736719 -83.262780715393703,43.974961145458728,156.646257590502501 -83.228342893205905,43.982439261588567,156.623694577254355 -83.196937044601398,43.984573530641981,156.590101572684944 -83.181866594227614,43.983545731166785,156.568275391124189 -83.146654745520891,43.99087786041386,156.544427371583879 -83.136128523397389,43.994583846308132,156.541525740176439 -83.121906281742014,44.002386729963703,156.54540113452822 -83.10906696399644,44.004681790238152,156.535673145204782 -83.08054310571562,44.002516176779217,156.493836641311646 -83.067271775237998,44.004803241928968,156.483561745844781 -83.059986627320399,44.007661221941369,156.482390677556396 -83.047822478919031,44.017147024692875,156.49357679951936 -83.031113535375169,44.042611322110929,156.543588509783149 -83.025849468892886,44.046610240656435,156.548134625889361 -83.000527773893012,44.047946470226755,156.520157201215625 -82.991972578477998,44.050282482353701,156.515959328040481 -82.968683275241887,44.067574136208485,156.534997344948351 -82.959932017506119,44.067210244123046,156.523044337518513 -82.957901907802764,44.064742351796042,156.513632636517286 -82.948611618833951,44.063623491728194,156.498904856853187 -82.930127241126243,44.070825443227839,156.49587485473603 -82.917218895295235,44.071939545060992,156.482858698815107 -82.891072738704082,44.052389507126179,156.395733618177474 -82.877130216569327,44.046483863456039,156.361865881830454 -82.834342821470301,44.038289612273871,156.285635113716125 -82.794443396153738,44.024686516982811,156.197937110438943 -82.789536057272556,44.015151901120703,156.165200939401984 -82.784435820902473,44.010806107268635,156.146709401160479 -82.766255248093586,44.008285391712079,156.117018914781511 -82.747491486403263,43.997477970176618,156.063454637303948 -82.740228142890118,43.990947275649894,156.03615811932832 -82.729763492975522,43.974056975890299,155.975906053557992 -82.713469550089769,43.9510529521975,155.891264987178147 -82.711073452871602,43.949669026247541,155.884408491663635 -82.694738360100914,43.919424255886938,155.779391750693321 -82.679874228218324,43.885175610504625,155.664908802136779 -82.656681238479251,43.869329413601761,155.591585648246109 -82.64439657001985,43.85391508427066,155.533040348440409 -82.644129438026425,43.847866298493756,155.515731856226921 -82.648697528997715,43.845937316719684,155.516007377766073 -82.649014500940581,43.84413137642462,155.511333324946463 -82.645575296882697,43.838986593289512,155.492607632651925 -82.634870861119893,43.832671929284366,155.461545646190643 -82.619183129082316,43.770046290666443,155.26601105555892 -82.620306905347348,43.757538717212313,155.232229704968631 -82.61844066193747,43.748239063537625,155.203737496398389 -82.613451376088875,43.741222363384743,155.177770445123315 -82.60745921509799,43.691890510056695,155.031366258859634 -82.606055923329933,43.68033758267962,154.997054727748036 -82.607008759281868,43.670942903154689,154.971759238280356 -82.601724256668106,43.604391306223761,154.777370593510568 -82.599134921020521,43.591472790194103,154.737647187896073 -82.595008630285591,43.582924136412252,154.708338908851147 -82.586876640083176,43.545427549541074,154.592172925360501 -82.566912242940035,43.504364217521214,154.451005824841559 -82.56672611992569,43.498523426607811,154.434233303181827 -82.554760116107232,43.465572723621243,154.325911802239716 -82.540736183276849,43.43900181721984,154.23302751686424 -82.539797037232134,43.433057038577999,154.214988565072417 -82.541148890748971,43.423841351905878,154.190532161854208 -82.536844680354477,43.369527331935764,154.030918909236789 -82.538011322584737,43.349976016848295,153.976813649758697 -82.531344839547472,43.335271612621952,153.926653104834259 -82.530632468853995,43.31771024742077,153.875807239674032 -82.533612344582977,43.307237589996014,153.849742527119815 -82.524300480785314,43.226831567932905,153.609016890637577 -82.520337117936393,43.214208062869574,153.568041334860027 -82.510094510650816,43.198219745447773,153.50957066193223 -82.504369627631149,43.17041837102753,153.423017697408795 -82.5042031295974,43.169609817481962,153.420499575324357 -82.502868611252339,43.163129082947457,153.400314461439848 -82.502741649132361,43.162824218721134,153.399284259416163 -82.501273910558723,43.159299852661825,153.387374110519886 -82.496897019303361,43.148789965228126,153.351851286366582 -82.495406045692576,43.14520980659217,153.339748506434262 -82.495283965811907,43.144338241053106,153.337104478850961 -82.495264088122809,43.144196328161733,153.336673955433071 -82.495226306733173,43.143926595285109,153.335855666548014 -82.495188972486403,43.143660054697961,153.335047057829797 -82.494558469676889,43.139158702548436,153.321390390396118 -82.494233243649546,43.13683681454426,153.314345413818955 -82.492190983790451,43.122256496433465,153.270097255706787 -82.491845293163081,43.11978850511548,153.262605862691998 -82.491825439657006,43.119646764850984,153.262175606563687 -82.491704949525968,43.119233433074875,153.260842296294868 -82.487894927262872,43.106163455584408,153.218674755655229 -82.48725300092859,43.103961378445071,153.211568889208138 -82.472263283060329,43.08905707439866,153.150091264396906 -82.458527902016229,43.062947559301897,153.058081415481865 -82.458430374336828,43.062762169434961,153.057427900843322 -82.451933131662557,43.052706260267435,153.020459160208702 -82.444641219656077,43.041420425749394,152.978958734311163 -82.423975353315441,43.009435460358773,152.861285225488245 -82.417144113075338,43.007034619267564,152.845815962180495 -82.448984673960155,42.938547764975901,152.689224333502352 -82.456233679551744,42.928348058767,152.669041479937732 -82.471118331163794,42.888942333711633,152.574503589421511 -82.484900725322177,42.734700816036607,152.147471516393125 -82.511137611981042,42.638786058273425,151.903493572957814 -82.51998440991585,42.615380826021273,151.846975250169635 -82.524539414632045,42.608979013761804,151.834217696450651 -82.585199088547029,42.555535346141021,151.756416725926101 -82.590982185988494,42.552172409493515,151.7540204199031 -82.608271635065165,42.550337295635622,151.770676067098975 -82.626111295890752,42.558722798776508,151.817646075971425 -82.680264138391124,42.523704522554979,151.785119132138789 -82.687622274755668,42.520091578710336,151.784024007618427 -82.686602439644588,42.530153217586893,151.811876899562776 -82.680727407225646,42.537014025922375,151.824268385767937 -82.672161215033867,42.539483024830282,151.820512015372515 -82.665540188512651,42.547737789652821,151.835992231965065 -82.681963872637425,42.559402186311658,151.890675157308578 -82.6822422037568,42.576187564135267,151.939613462425768 -82.689267664976271,42.589908984255267,151.988254903815687 -82.70235898466278,42.587482935796906,151.997901638038456 -82.712358358960103,42.592375650079433,152.024784779176116 -82.71424954740661,42.599395371430361,152.047492428682745 -82.702025374764546,42.60817817667548,152.057325164787471 -82.684688942287963,42.610924258198771,152.04320512060076 -82.682800067781187,42.620162937925969,152.067511451430619 -82.691331429656486,42.626523613892367,152.096747911535203 -82.691043462461693,42.628638539090034,152.102493742480874 -82.670310076264656,42.63871538682897,152.105249571613967 -82.646921303248305,42.632635856823825,152.057954799383879 -82.632128100248551,42.643600609322355,152.070854945108294 -82.627602075210646,42.648875463050707,152.080351667478681 -82.624249146667708,42.65744118354155,152.100845742970705 -82.625003350370406,42.666884828653494,152.129084912128747 -82.632057701957521,42.674830462538161,152.160987528041005 -82.636468868493438,42.677041334883071,152.172971226274967 -82.660988615662703,42.680106963897892,152.212955565191805 -82.675495185846103,42.688537501406543,152.255715750157833 -82.686708558220175,42.691524273474108,152.278580794110894 -82.702172982391261,42.691036128197986,152.296824523247778 -82.707344011599901,42.685066292803732,152.286172188818455 -82.709049993282633,42.684997975812919,152.288143930025399 -82.727575562966322,42.684256108966238,152.309561249800026 -82.754527065219776,42.671220303224864,152.306241922080517 -82.766793137092279,42.657213688565697,152.281437578611076 -82.782027495851693,42.65372065607631,152.290762515738606 -82.793628876822069,42.656620426807848,152.313915018923581 -82.798528992623531,42.655520415469887,152.316985860466957 -82.814729189879301,42.642321729841704,152.29954769462347 -82.821329093335706,42.627822193907022,152.266108218580484 -82.820227868759616,42.617822573900298,152.235827405937016 -82.812227540467092,42.612422857410209,152.210023248568177 -82.790226780084836,42.604924366147529,152.160294367931783 -82.788782979779711,42.599790252883935,152.14361647516489 -82.790186570594642,42.594151763711594,152.129110681824386 -82.7893253565679,42.584326135182714,152.099609071388841 -82.782722955595247,42.573125618114531,152.058799121528864 -82.783622849450111,42.566325859593704,152.04028089158237 -82.785722884981894,42.565125881735888,152.039489697664976 -82.79032310624423,42.569925656021375,152.059242301620543 -82.797924368920505,42.572525479844217,152.076461434364319 -82.822226042229218,42.572225234358442,152.106617907062173 -82.835426355240983,42.569340201444064,152.115136518143117 -82.847126542559124,42.562125344265461,152.109225435182452 -82.850526542795279,42.557225489333703,152.099402419291437 -82.852226458877979,42.550426722567572,152.081913589499891 -82.86052655535363,42.543426893586599,152.072279616259038 -82.861423781389789,42.542333620756139,152.070264608599246 -82.875626621407406,42.52502741447023,152.038364818319678 -82.883526407582565,42.502528163780212,151.983357720077038 -82.885124889387583,42.473330228754968,151.900848182849586 -82.871780872561786,42.452730133597676,151.824059377424419 -82.871556108048765,42.452383148842856,151.822765651158988 -82.887321725754845,42.409633570163393,151.718990861438215 -82.889621599772525,42.399733913967992,151.693212995305657 -82.895221586816731,42.390934182220754,151.674855509772897 -82.899621632547706,42.386934284645378,151.66888982988894 -82.916322957237483,42.379634380211975,151.669132950715721 -82.920322997546151,42.375934475758747,151.663526894524693 -82.930023979738166,42.360934932047201,151.632431100122631 -82.925178703789058,42.353566257670359,151.604805417358875 -82.96062545089579,42.341136347211574,151.614253683015704 -82.989829124194614,42.333937307585074,151.630906792357564 -83.019530897148826,42.33123709476596,151.661298668012023 -83.065332937920246,42.319236058860078,151.685461790300906 -83.080933195975405,42.310136233847587,151.679150616750121 -83.097733306869202,42.291636747658892,151.647085978649557 -83.129234196646919,42.240339334843839,151.538649601861835 -83.132555033728451,42.204261908969741,151.437959506176412 -83.135134135031478,42.176242677559948,151.359698127023876 -83.125732168069504,42.139145171547192,151.239399524405599 -83.134720475093616,42.089648940924128,151.106623087078333 -83.158834091402213,42.087047784788254,151.13029249291867 -83.169969171841615,42.075107117760673,151.109875397756696 -83.171799320574777,42.074445704271085,151.110318753868341 -83.189808582971821,42.067937179087266,151.114687759429216 -83.19032551026929,42.063359346436229,151.101991019211709 -83.188087436252488,42.062712394465166,151.097196091897786 -83.186736228806325,42.053749747126808,151.069264454767108 -83.18944990683292,42.032836508629437,151.011684466153383 -83.187067805552545,42.030958604719004,151.003102029673755 -83.187031735429798,42.030875084281988,151.002811070531607 -83.182684492329386,42.020809034627788,150.967740134336054 -83.188455429206627,42.009081417388003,150.940946972928941 -83.191744493309173,42.007680435736354,150.941123934462667 -83.209856970913734,42.006548287689689,150.961355061270297 -83.210588814833272,41.997244632091046,150.935099414549768 -83.218044674120051,41.990129195901659,150.923983510583639 -83.218106886027698,41.990069824494554,150.923890762031078 -83.224564075775348,41.990699732581113,150.934132091701031 -83.224579485403069,41.990694045436832,150.934135502204299 -83.226157566741293,41.990111631871137,150.93448481336236 -83.228954455793186,41.989079399826274,150.935104120522738 -83.229620537819997,41.988833572694759,150.93525165040046 -83.229712181549004,41.988799750261322,150.935271949507296 -83.229816767887812,41.988724533944648,150.935188014991581 -83.230499784048661,41.988233322946911,150.934639861807227 -83.249951850440922,41.974243802017583,150.919032949954271 -83.250414469493407,41.973911096034392,150.918661875650287 -83.251038321412736,41.972894737534141,150.916500623337924 -83.256332988722306,41.964268844266762,150.898156405426562 -83.258013545529195,41.96153093787477,150.892333277501166 -83.258219443561714,41.961195495755085,150.89161982294172 -83.258253312318985,41.960124888024787,150.888530930504203 -83.258353819909999,41.956947794871851,150.87936397921294 -83.258409754631842,41.955179671626695,150.874262051656842 -83.258502282181638,41.952254831841415,150.865821922197938 -83.270731397187618,41.940552146935566,150.847497889772058 -83.271701616730141,41.940847165144589,150.849625959992409 -83.288340982678704,41.945906758046213,150.886124088428915 -83.293972444557355,41.94612616608736,150.894107840023935 -83.294226390550961,41.946136060106568,150.894467881880701 -83.297193232578593,41.946251651580589,150.898674365133047 -83.299440999184256,41.945709689974706,150.900019077584147 -83.300678541058389,41.94541130482181,150.900759506970644 -83.304115391275204,41.944582641888623,150.902816073969007 -83.304675964860181,41.944271968496025,150.902637896127999 -83.306850722027292,41.943066704450182,150.901946735568345 -83.317070611438069,41.937402777724785,150.898700634948909 -83.327218820219571,41.926489221026841,150.879997019656003 -83.32723568386109,41.926471085579429,150.879965937696397 -83.327241125411575,41.92645844265342,150.879936029203236 -83.328271690387453,41.924064022754045,150.874271343462169 -83.331709849304104,41.916075786981736,150.855370800942183 -83.334209912187532,41.910267128379843,150.841625239700079 -83.334853558330195,41.908771677729625,150.838086143136024 -83.335384159821928,41.904758100903344,150.827024254016578 -83.335557130768521,41.903449713763528,150.823417951352894 -83.336314652384019,41.897719667579231,150.807622889988124 -83.336343300127538,41.897502970278005,150.807025514543056 -83.336869798428253,41.893520431171424,150.796046151779592 -83.33717229051588,41.891232320199364,150.789737635292113 -83.34276825969043,41.881467632682742,150.768435980193317 -83.360678522557805,41.86936090460096,150.756361913867295 -83.367398662656043,41.867016922959785,150.758277825079858 -83.373409680275913,41.875633966804521,150.791390771046281-88.934016004211003,46.07489890762249,169.675248680636287 -88.944737272874676,46.079240619327152,169.700821080245078 -88.950156479303999,46.081502476066426,169.713916123844683 -88.9922670708185,46.098594378555546,169.814448839984834 -88.992344954784656,46.098626077804987,169.814634987153113 -89.060207641252305,46.126246604786914,169.976819355040789 -89.126600956461999,46.145824114174303,170.116792829707265 -89.163223140122341,46.15310840644797,170.185199360363185 -89.16835330674904,46.154160306249743,170.194862319156528 -89.195975188131712,46.159233785941062,170.24541628267616 -89.202750410660215,46.16071765045902,170.258417969569564 -89.204756480657039,46.161311605287409,170.26265512034297 -89.207124554958455,46.161699562202479,170.266872177831829 -89.219623961269548,46.164279317369569,170.290465293452144 -89.221432018918264,46.164610283330447,170.293772513978183 -89.277958830987913,46.175337206294898,170.398142300546169 -89.278352843462415,46.175406198973519,170.398855485953391 -89.909686092764602,46.297315044729153,171.572644642554224 -89.911400148549021,46.297680010481237,171.575922725722194 -89.930583675383275,46.301364475082359,171.611620974726975 -90.121985878177142,46.338125940421051,171.968055255711079 -90.121188482180358,46.361028204376119,172.02353673428297 -90.12125448375167,46.361021203739838,172.023611062206328 -90.136161297269638,46.376219513530039,172.081835928373039 -90.136154297957845,46.376251512579998,172.081905212253332 -90.168409922480748,46.440580998382572,172.285329045727849 -90.168419937575649,46.441120980723156,172.286673434078693 -90.179361249065437,46.44181781449641,172.303570246323943 -90.206075020228866,46.480266216620294,172.435295102186501 -90.286051252312816,46.519979878492791,172.643904129974544 -90.309222862128138,46.51965758372971,172.675285301171243 -90.315345964958397,46.517464574047395,172.678404530510306 -90.315400966426495,46.517464573322783,172.678480922244489 -90.359184801023673,46.541535217304499,172.798376679420471 -90.37597021951558,46.54047603013219,172.819104388356209 -90.401551045128571,46.545647525256122,172.867344474419951 -90.401939055475339,46.545647520134203,172.867883931845427 -90.415974788592649,46.558582916524216,172.919101679697633 -90.416106792112657,46.558582914780914,172.919285209849477 -90.419647130090681,46.56735658444456,172.945702562108636 -90.419453656671195,46.567452421776856,172.945668358355761 -90.399988495333105,46.577094517024626,172.942233718931675 -90.398860969766105,46.577653038412599,172.942035170271993 -90.398821073766896,46.577672800952413,172.942028143443167 -90.398282814090862,46.577939428646033,172.94193337764591 -90.396446911326407,46.578848845683353,172.941610218957067 -90.373227570057551,46.590350579325332,172.937533177435398 -90.356851350361922,46.59846256301266,172.934668947011232 -90.354794112838746,46.599481618543344,172.93430978897959 -90.349917228191259,46.6018973902857,172.933458958752453 -90.349311270612404,46.602104680868869,172.933125830255449 -90.329135870347756,46.609006435410201,172.922041616402566 -90.329114153344392,46.609001266403197,172.921998838894069 -90.308118169490697,46.604003873966818,172.880640036426485 -90.296969173110767,46.608260753726825,172.875613840296865 -90.286059060796035,46.612426423407463,172.870699555613101 -90.285697490277173,46.612564477288423,172.87053676135838 -90.284658985055316,46.612960996552921,172.870069216005504 -90.281232143668831,46.614269423893418,172.868526676669717 -90.279795384007656,46.614818003593889,172.867880066856742 -90.266802502293345,46.619778910655818,172.862035929225385 -90.266799137595541,46.619779636104425,172.862033046782017 -90.253177149273327,46.622716616881696,172.850364271551371 -90.251684188104704,46.623038508085806,172.849085749126971 -90.239116926827094,46.625748083474356,172.838326463475823 -90.165532538440445,46.646778376552405,172.788093526847661 -90.102200105397785,46.65639590115952,172.724207629449666 -90.046923984389167,46.669536206355176,172.680192272178829 -90.02989569609062,46.675654233978563,172.671731179580092 -89.997537347747951,46.694489055678133,172.67336268350482 -89.98732034916091,46.704453870898156,172.683738079853356 -89.975306223492595,46.711585800524119,172.684696859680116 -89.958603956808346,46.718192808595845,172.677926707081497 -89.919968564548654,46.741587568392838,172.68219228554517 -89.90901887543879,46.751133500383069,172.690557501278818 -89.89385749226598,46.76435118480493,172.702144741080701 -89.890189649937909,46.767089064599354,172.703821954317391 -89.876571556555987,46.77725436061484,172.710052527487278 -89.864046737667763,46.786603576360029,172.715787567198277 -89.853467926313712,46.794500184814339,172.720635025762022 -89.852481711453734,46.795236350001709,172.721087096258998 -89.850154218521183,46.796973719152014,172.722154097631574 -89.848463728494821,46.797818340863607,172.721906911581755 -89.846193255295503,46.798952740316196,172.721575072035193 -89.84295493910561,46.800570704410902,172.721102087758482 -89.833457999043432,46.805315672828044,172.719717086292803 -89.832365341758006,46.805697131315029,172.719155005179346 -89.831595324659176,46.805965952619985,172.718758922070265 -89.829630729687238,46.806651813991991,172.717748458497226 -89.792164282496614,46.819731756207425,172.698503979481757 -89.789853994262032,46.820123804648226,172.696303348988295 -89.788581463945505,46.820339748926493,172.695091291330755 -89.759085334060714,46.825345146652992,172.667011186480522 -89.725970797180011,46.830964576103057,172.635519107803702 -89.721776707256112,46.831676299535992,172.631532978266478 -89.719347975676499,46.831822144262965,172.628572166897357 -89.714853392836119,46.832092042840344,172.623093351721764 -89.711561903726036,46.832289695936666,172.619081436656415 -89.710372136082739,46.832361141184812,172.617631332017481 -89.709802874241149,46.832395325215323,172.616937522776425 -89.709583041228228,46.832408526132504,172.616669595241547 -89.679967320952628,46.834186942584644,172.580586773343384 -89.679269753752848,46.834228831314654,172.579737170599401 -89.67837660319617,46.834282464774475,172.578649379312992 -89.674873513009132,46.834492824432068,172.574383080005646 -89.662123106510492,46.832320060283763,172.551651041023433 -89.661179487588655,46.832026476468663,172.549643131904304 -89.653293188344037,46.829572848448976,172.532862102612853 -89.648351745489052,46.828035440049312,172.522347444668412 -89.644937494861608,46.82697317994387,172.515082470141351 -89.643752448973842,46.826604482062798,172.512560888193548 -89.638806360644125,46.8226490784512,172.496106909587979 -89.63643508782549,46.820752763530798,172.488218000158668 -89.620825647328957,46.820154986644781,172.465455234982073 -89.600023113396063,46.825602929935762,172.450457406230271 -89.579713200974027,46.830921861269445,172.435828872956336 -89.573918608341799,46.832439398095872,172.431657788343728 -89.571821822498961,46.832988522068355,172.43014875240624 -89.571303661388981,46.83312422247274,172.429775859229267 -89.566004258741813,46.833748382976765,172.424087857827544 -89.543903324480013,46.836351417850075,172.400375341065228 -89.542204392636791,46.836551517025939,172.398553129285574 -89.540422104088577,46.836761433903959,172.396641604602337 -89.537177844700636,46.837143540830127,172.393162345513701 -89.5358262529071,46.837513805397656,172.392231239005923 -89.527150789105434,46.839890422995943,172.386256240308285 -89.518389384744054,46.84229058374261,172.380224660038948 -89.517159692657813,46.842627454242567,172.379378315061331 -89.515432418114116,46.843100635980342,172.378189592622221 -89.501720942098871,46.842903340079516,172.359047335572541 -89.500741773458728,46.842889250715096,172.357680515386164 -89.500574007689778,46.842886836715103,172.357446331530809 -89.499253536587105,46.842351651991798,172.354335314594209 -89.495512911438865,46.840835582890676,172.345522381365299 -89.49280098071894,46.839736441914646,172.339133003726602 -89.492745706605504,46.839714039409088,172.339002777822316 -89.492573121830986,46.839704507699167,172.338744575157762 -89.486659453969565,46.839377900861457,172.329897554591298 -89.476826432855574,46.838834831464609,172.315188757143915 -89.473342496166126,46.838642416597601,172.309977789409459 -89.47303313961099,46.838625331097411,172.309515095315874 -89.472408308531072,46.838664338012229,172.308761190623045 -89.472112036664015,46.838682833653458,172.308403722941875 -89.472039818407026,46.838687342090154,172.308316585607827 -89.471144390772608,46.838743241789182,172.30723621789366 -89.470939129089913,46.838756055852365,172.306988563388586 -89.454677554443009,46.839771232359219,172.287372291088104 -89.449946432142369,46.840066586537667,172.281666534952819 -89.449937635487075,46.840067135694682,172.281655926257372 -89.4480752432451,46.840183400988323,172.279410040937364 -89.447461378486878,46.840221723294633,172.278669795021415 -89.446805645043227,46.840262659376279,172.277879072353244 -89.441637644955705,46.840585286921296,172.271647598594427 -89.43853925944093,46.840778712710595,172.267911980859935 -89.435508357137735,46.841397691714768,172.26531427539885 -89.416645786402313,46.845249856500075,172.24915439914912 -89.414905152447616,46.845790868537698,172.248119812458754 -89.402614516710003,46.849610960547011,172.24081758223474 -89.396877208505387,46.851394191748412,172.237410667352378 -89.373522981047657,46.858652994188859,172.223554295487702 -89.372278952516979,46.85911804708887,172.223009441047907 -89.337620509775988,46.872074349002752,172.207851823419333 -89.318885618731926,46.879077978821613,172.199675876647234 -89.306113324584643,46.883852622003623,172.194109106436372 -89.287269180487741,46.890897093633683,172.185906432569027 -89.280100937749438,46.893576784585896,172.182789451442659 -89.25142692970806,46.904295936039063,172.170339185744524 -89.250631893920442,46.90459314279763,172.16999439522624 -89.22985093570415,46.914017775613139,172.16506180819124 -89.229402579257041,46.914221115364853,172.164955554530025 -89.227733036812424,46.915371616762748,172.165526977740228 -89.204299648211858,46.931519841487912,172.173556468449533 -89.202999359811514,46.932415885582905,172.174002511426806 -89.201136131093762,46.934341809580651,172.176219732500613 -89.185218061843898,46.950795501923032,172.195163792930543 -89.169981314117635,46.966544947592574,172.213299931026995 -89.169732400684779,46.966802236662069,172.213596235029399 -89.144083232695905,46.98612496333417,172.226474086754024 -89.143913125286346,46.986219703562412,172.226477487012744 -89.143769945445058,46.986299446654598,172.226480353623629 -89.130186065806129,46.993864901114179,172.226755328476429 -89.129589317608904,46.993958284302366,172.226180574856699 -89.126286887273977,46.994475070903434,172.223000055179 -89.119826826184379,46.995485984882151,172.216779460199177 -89.119594092423256,46.995267512530965,172.215929249301553 -89.117390653486083,46.993199095454436,172.20787956006825 -89.11464554885211,46.990622204749513,172.197850523516536 -89.107764279992963,46.987746384349819,172.181514277122915 -89.088228710328792,46.986564675114536,172.152297859080136 -89.064589149778101,46.989788880863152,172.12839613109827 -89.060077198351024,46.991871032750147,172.127441694028676 -89.049649681466747,46.996683069030091,172.125238651409745 -89.040975802287548,47.000685845699444,172.123409026302397 -89.039601824936,47.000909773237368,172.122111309319735 -89.03041555939329,47.002406928782449,172.113436428830028 -89.029133087902068,47.001106438845852,172.108514699153602 -89.024479229197354,46.996387194422439,172.090653411112726 -89.000391900291092,46.996577630371547,172.058735564351082 -88.999901558040889,46.996581507047054,172.058085968717933 -88.993883372613865,46.997614061003809,172.052536258473992 -88.993204030479887,46.997730617300384,172.05190987046808 -88.988681302399428,46.998506592184413,172.047740061767399 -88.983966762817204,47.00009730176442,172.04531707521528 -88.980296991286096,47.001335501300083,172.043431575410068 -88.979916947368224,47.001463730046289,172.043236338533461 -88.974286040410945,47.003363626622004,172.040344214998186 -88.961820411346608,47.009320361418027,172.038251860998571 -88.960892848632867,47.009763599786972,172.038096390664577 -88.958759660954158,47.011378729742461,172.039204302243888 -88.94552874736155,47.021396434816573,172.046078925020993 -88.934813138924611,47.033467671936151,172.061382627114654 -88.927070087969099,47.042190294325152,172.072441384196281 -88.925975818553113,47.043422999502681,172.074004264548421 -88.924941477538724,47.045138693862874,172.076834880746901 -88.916460329554553,47.059206644274688,172.100042414851487 -88.915673008227799,47.060512599276421,172.102196605876088 -88.909772542321718,47.075662252889217,172.131515361368656 -88.90541725317604,47.086844611495046,172.15315090212971 -88.905190466011021,47.087426895560704,172.15427737403661 -88.901341829531503,47.091235301196797,172.158476558513939 -88.892191980226997,47.100289504740417,172.168460756540298 -88.891906880267783,47.100571624477773,172.168771876953542 -88.891606308113623,47.1008690546753,172.169099882245064 -88.890624464095751,47.101840635231135,172.170171345584095 -88.886902426060445,47.103349355463251,172.16889347974211 -88.886845340042044,47.103372495159832,172.168873886577785 -88.873571295989493,47.108753100786643,172.164320605807006 -88.856855910972044,47.115528646663961,172.1585957640782 -88.856610320511848,47.115556019576303,172.158334473147988 -88.856139501746142,47.115608495885006,172.157833558507264 -88.849659734220225,47.116330714927699,172.150940254330635 -88.827511604155532,47.133823275433521,172.164285786449909 -88.827102621779062,47.134146289115769,172.164532349444926 -88.82695883055797,47.134259855211795,172.164619036950171 -88.818167490917816,47.14120324242522,172.169920174404979 -88.818036278939005,47.14130687345498,172.169999307021499 -88.816886424612989,47.142215026727833,172.170692823827267 -88.816838590172068,47.142252806299652,172.170721674337983 -88.816317543676192,47.142664328063901,172.171035948209465 -88.815231240450345,47.143077899788224,172.170600116252899 -88.800262444720261,47.148776741972277,172.164598789066076 -88.791296115610294,47.152190356222718,172.161007788963616 -88.786095442945438,47.151987542853632,172.153566705994308 -88.785304105918684,47.151956682666601,172.152434522286057 -88.780671023036589,47.151776003888706,172.145806148648262 -88.779504776088899,47.151730523140245,172.144137723371387 -88.765833544493674,47.157027535672277,172.138899778947234 -88.75197845739639,47.169047325416599,172.149930736981332 -88.748206125323165,47.172319960121719,172.152934924699366 -88.74813266528767,47.172383689363315,172.152993430383503 -88.731170419837042,47.187099051850332,172.166505897417665 -88.730023531977679,47.187824607280191,172.166758458130062 -88.729809789060099,47.187959827417998,172.166805535554886 -88.713619882102819,47.198202044962926,172.170375486835837 -88.703568504435907,47.204560846014971,172.172596195712686 -88.70351064687631,47.204597448431485,172.172608988359571 -88.701529028187309,47.205851079472033,172.173047194257379 -88.701142115122849,47.206095852207881,172.173132772557437 -88.700401191804048,47.206484608593264,172.173100377433002 -88.699763933475722,47.20681897280901,172.173072529025376 -88.678105834617739,47.218182799582294,172.17213455028832 -88.676398932451193,47.21907839714649,172.172061322256923 -88.675252660022039,47.219679836886826,172.17201220523566 -88.674653463609957,47.219994230328957,172.171986544504762 -88.673876756049509,47.220401762414411,172.171953305602074 -88.668096078613829,47.222740168152143,172.17000176012516 -88.658977886716997,47.226428668757677,172.166925883851945 -88.657840490961178,47.226888769288259,172.166542409919202 -88.64948195911272,47.227493476209702,172.156911469064653 -88.643528578636392,47.22792417987381,172.150053021498024 -88.641804077308805,47.228048940761184,172.148066539317369 -88.635395943651957,47.23017985994715,172.144778214395046 -88.62659953039585,47.233104962124926,172.140266687609255 -88.625059766591221,47.233616985186679,172.139477250166237 -88.624782574050599,47.233748875537096,172.13943262398243 -88.620093205968402,47.235980113067562,172.138678099960089 -88.611347068747193,47.240141592669517,172.137272915802896 -88.611310566192515,47.240158960866829,172.137267057783902 -88.609567611882241,47.240401478422321,172.135547031648457 -88.600101804083636,47.241718566617649,172.126207383349538 -88.586675943604419,47.24358666307436,172.112965196371078 -88.586391969017868,47.243626175768057,172.112685165368021 -88.58613244923194,47.243712435759903,172.112552369944751 -88.575476766061001,47.247254204795247,172.107101922854781 -88.57480573014611,47.247689662946378,172.107280306518078 -88.574780850406924,47.247705808259894,172.10728691983968 -88.573200056043945,47.248731639777546,172.107707208022475 -88.52824349098843,47.27790549252186,172.119693834334612 -88.5195705305253,47.28353367329845,172.12201383523643 -88.516755046442199,47.285360737253235,172.122767500579357 -88.516264923652457,47.285678794701624,172.122898725792766 -88.513900383461603,47.287213225738221,172.123531916178763 -88.506376626267951,47.292095649232557,172.125547878444195 -88.502639260418391,47.294520953826932,172.126549978740513 -88.502259048518042,47.294767686340386,172.126651949249208 -88.50023513933985,47.296520207833538,172.128272479400039 -88.488594885672427,47.306599610177066,172.137594646774232 -88.480430061048963,47.313669606744504,172.144135436974466 -88.479211961597159,47.314724370244214,172.145111384801567 -88.472581727806016,47.327705905776995,172.168185140006244 -88.471963155174407,47.328917027894754,172.170337591320276 -88.467366822624712,47.333934329051864,172.176564463414252 -88.466568396718017,47.334805881143602,172.177646151743829 -88.460741183585625,47.341166796774871,172.18554088100791 -88.460430857682198,47.34140598345585,172.185717164538801 -88.433640964690554,47.362054551945889,172.200945674441755 -88.433232264024099,47.362369561931644,172.201178155839443 -88.432925326361527,47.362606137099469,172.201352755539119 -88.420320376744513,47.37232152381506,172.208525282330811 -88.420151922381791,47.372451361643591,172.208621165715158 -88.401702780667947,47.380814396958073,172.204770617187023 -88.401204926894906,47.38104007513585,172.204666878096759 -88.395717426638697,47.383527570712801,172.203524004667997 -88.392918067362743,47.384796526246483,172.202941400930285 -88.390937474625716,47.385694333160771,172.202529365196824 -88.380394872124427,47.388776173658023,172.196177950128913 -88.361791040955794,47.394214493066819,172.184979406185448 -88.325560176414427,47.404805591686227,172.163204663433135 -88.304923839581349,47.413467593004938,172.157270276919007 -88.302690542846861,47.414714161823028,172.157386990264058 -88.287111491518601,47.423409987750887,172.158205969259143 -88.286671612084689,47.423655517142549,172.15822921320796 -88.285536816092758,47.423842304252993,172.157194158062339 -88.276185064738002,47.425381599961213,172.148665928281844 -88.240915792127211,47.431186912378038,172.116527392528951 -88.240636530816801,47.431232878710546,172.116273076273501 -88.2395663683821,47.431700946948062,172.116014479659498 -88.230120843869202,47.435832235680849,172.113733804784715 -88.22892134476767,47.436356873260706,172.113444406539202 -88.227272740039993,47.437543142543689,172.114187651313841 -88.219899272595114,47.442848791510194,172.117512862198055 -88.218452341167321,47.446756691069638,172.125195587985218 -88.219297455670969,47.450001581353391,172.134262246079743 -88.219137102745165,47.450041306595466,172.134149049408734 -88.2146168122284,47.451161146684406,172.130958504974842 -88.214534269031716,47.451181595631269,172.130900249816477 -88.209328574410392,47.452471235198168,172.127226801589131 -88.208714572611356,47.452623345736747,172.12679358292371 -88.20751116036196,47.452921474643681,172.125944539904594 -88.183294692257718,47.45892077296817,172.108869478106499 -88.183237231436095,47.458925252783864,172.108805063180625 -88.181472408489668,47.459062843603114,172.106826685369015 -88.170857376987584,47.459890422854166,172.094929036684334 -88.169177066058268,47.460021424861402,172.093045989051461 -88.168482831072296,47.46007554947299,172.092268013395369 -88.152233750047031,47.461342375825261,172.074062895961106 -88.152044880681842,47.461357100638452,172.073851334862411 -88.151910789631316,47.461389027144811,172.073753805831075 -88.145047179856391,47.463023223307637,172.068762458860874 -88.14201027904538,47.463746296412673,172.066554474644363 -88.141124645822288,47.463957161897959,172.065910629928112 -88.139171946794647,47.464182169803728,172.063902581110597 -88.130747606221973,47.46515289964097,172.055240756832063 -88.129953199909579,47.465244438426183,172.054424065165222 -88.091771121232455,47.469644127734433,172.015193258412182 -88.0914386194206,47.469682441641403,172.014851816929877 -88.086724288055748,47.470225670115909,172.010011082515121 -88.086322191830632,47.470170835025719,172.009349959902465 -88.085052614776473,47.469997698925418,172.007262553088367 -88.083363868565286,47.469767399446425,172.00448599550873 -88.082749061486936,47.469683556327013,172.003475170582533 -88.082387933392312,47.469634308185583,172.002881432883441 -88.082267910417329,47.469617940285822,172.002684101462364 -88.081743016495636,47.469546358898221,172.001821115612984 -88.080655151724287,47.469398003455687,172.000032556243241 -88.077860004387674,47.469016820672529,171.995437148027122 -88.076152893727865,47.469145079964271,171.993516811169684 -88.075454364142345,47.469197562156317,171.992731058038771 -88.075051571558873,47.469227824922797,171.992277975194156 -88.068515240441499,47.469718915046627,171.984926200471818 -88.050797297932277,47.47105010621172,171.965003977529705 -88.049697273125858,47.471273113549337,171.964111970737576 -88.049548407502542,47.476237964597239,171.976104911416769 -88.049328348325147,47.476266964122416,171.975888164713979 -88.048136582164545,47.476424015753885,171.974714344367385 -88.041762216467788,47.477264033332716,171.968436715193093 -88.041713055024289,47.477266774835805,171.968379129655659 -88.038061322135746,47.4774704148493,171.964101942256093 -88.032600930447671,47.477774915273628,171.95770700275898 -88.032560258592994,47.477777183352082,171.957659372128546 -88.028555542044813,47.478000507599177,171.952969777397811 -88.023025634657728,47.478308884574929,171.946494883857667 -88.018738671142586,47.478547948400497,171.941475919447839 -88.016972124244077,47.478646460424798,171.939407884143293 -88.015986179471781,47.47870144193412,171.938253709115088 -88.012300444136201,47.478906978081127,171.933939318172634 -88.01188559239246,47.478930112414041,171.93345373403281 -88.011174150293769,47.478969786197595,171.932620997540653 -87.983696623199847,47.480502078702564,171.900469515472651 -87.98320922000714,47.480529258885518,171.899899395182729 -87.980403579758359,47.480685716241119,171.896617726422846 -87.979590179674872,47.48067454133389,171.89552750159055 -87.964014924720644,47.480460560468501,171.874654654413462 -87.960634532226024,47.480414118889428,171.870125275105238 -87.959511008551885,47.480398683339978,171.868619930930436 -87.95905113813312,47.480392365402139,171.868003786541522 -87.958159039050187,47.480380109283047,171.866808546707034 -87.956843401031662,47.480362034366472,171.865045882761478 -87.956140635731813,47.480352379412651,171.864104348234832 -87.955927010683311,47.480349444520989,171.863818145357072 -87.953380942606216,47.480314465317143,171.860407152213156 -87.949755289316954,47.480264654208945,171.855550101026893 -87.931140381063102,47.480008912879271,171.830617984756827 -87.930737157374296,47.480003373180729,171.830078014172614 -87.9301942830581,47.479969175838001,171.829285332001746 -87.929605591740867,47.479932092339716,171.828425756655633 -87.929015698157912,47.479894933106834,171.827564436011016 -87.923692185959183,47.479559588500187,171.819791742600501 -87.922570857103821,47.479488952503729,171.818154606968164 -87.92178841464316,47.479439664016397,171.817012256942689 -87.921727380068617,47.479435819258519,171.81692314799875 -87.903883351046005,47.478311768259239,171.790874914266169 -87.899503166694672,47.476138890256522,171.779818532988429 -87.818422792548333,47.473266014050466,171.667048959992826 -87.802648382067773,47.474569176000983,171.649709657765925 -87.758201773711633,47.461986125103827,171.560868747532368 -87.732265717075109,47.450381808086753,171.498532606288791 -87.717403038422063,47.441086279780663,171.456286964006722 -87.711930953672805,47.407471371256513,171.366271396167576 -87.713880876291171,47.402671492466197,171.356967515312135 -87.722734116844919,47.402303390915925,171.367585667409003 -87.743877847921794,47.407093975766827,171.406937174499035 -87.752841080727421,47.40633688457855,171.41674543172121 -87.760518241254715,47.404283849210834,171.421684532426298 -87.766480289395773,47.399922905965589,171.41869904845953 -87.801756107396585,47.393418654251214,171.448650593869388 -87.816833330172727,47.386060686128403,171.450177012942731 -87.828577700015856,47.387430494542699,171.468880236148834 -87.836285037309835,47.391748264604779,171.489583200775087 -87.849715538253903,47.396133959536087,171.517922960221767 -87.858163791448831,47.396656835738312,171.530240677297115 -87.883709518646072,47.396857503349061,171.564095891080797 -87.943079041675517,47.39134191261919,171.628111348487437 -87.958524399368486,47.388528800860655,171.641389134339988 -87.966529269377673,47.375699089935651,171.620273105800152 -87.967064124128342,47.369914259696081,171.606726397760212 -87.964032869620524,47.363812484797151,171.5877286484465 -87.956261491755356,47.358078759309798,171.563429560512304 -87.948862245844353,47.356730895080879,171.550423063337803 -87.940251762792684,47.348047270471582,171.51775184366852 -87.939714623789683,47.343569414203607,171.506010677665472 -87.944824590843808,47.337169544580135,171.496922623366117 -87.947816629684837,47.335524556652999,171.496784548275173 -87.959850973805231,47.335705397321114,171.512989710085094 -87.970069210441537,47.333852323385855,171.521805914118886 -87.990598513470104,47.323903365354461,171.52418224606663 -88.017943830844573,47.307545516624081,171.51971433032304 -88.056315687888869,47.299510271986406,171.550266609527171 -88.061556767645669,47.29706627985319,171.551124514080584 -88.072942838051318,47.288038411053222,171.54382570181042 -88.098317848467389,47.262621866694175,171.514510585926473 -88.110300123520489,47.260401781524401,171.524794581346214 -88.118923256239015,47.256444792747935,171.526380862109363 -88.133410231360486,47.240825087655715,171.506925477646291 -88.164526461379054,47.217549405874593,171.490493060089648 -88.195686140145639,47.21051322356336,171.514211822301149 -88.206317472513533,47.211769048600544,171.531330397352576 -88.213829653172397,47.210693985459571,171.538588062860072 -88.229021086152983,47.201208905280374,171.535239681601524 -88.230455832028753,47.200313092513341,171.53492384031415 -88.230601211334033,47.200132754863127,171.53467092756182 -88.236510066961046,47.192803038102042,171.524391417391598 -88.238360782644321,47.190507293802838,171.521171731874347 -88.238493033217935,47.190133109412805,171.520423294045031 -88.241763238844371,47.180880522931126,171.501914685592055 -88.24347452666909,47.176038675084428,171.492227871902287 -88.243577823518152,47.17345604716764,171.485991347581148 -88.243610862020887,47.17263001854392,171.483996571041644 -88.243625689364265,47.17225930532328,171.483101324178278 -88.24402905722873,47.162174304459263,171.458743709139526 -88.244128094661477,47.159698171760652,171.452762375585735 -88.243529894362879,47.158331486358037,171.448598283343017 -88.240954681739026,47.152447996251261,171.430670508183539 -88.240937804758175,47.152409438056075,171.430553005076945 -88.239876154123593,47.15169504582488,171.427386367693543 -88.238429090967671,47.150721306777541,171.423070082440972 -88.238188676980471,47.150559530502647,171.422352964989841 -88.238033318812398,47.150569691403369,171.422172783873975 -88.235762209917681,47.150718228890184,171.419538852758706 -88.233264548187677,47.150881583625718,171.416642344556749 -88.233631458429869,47.147247691341903,171.408153546974063 -88.241362494589765,47.140708794645683,171.402221051044762 -88.249095615633721,47.137253802519183,171.403909451328218 -88.251038676805123,47.137503769885896,171.40709534753114 -88.251305870739372,47.138379169307029,171.409610472619534 -88.252113247858148,47.141024354568778,171.41721005924046 -88.252252820195238,47.141481631196761,171.418523758649826 -88.252281603466258,47.141503487296085,171.418615774251521 -88.255301855906154,47.143796865879494,171.428271171636879 -88.255673424794992,47.144079010550506,171.429459006525576 -88.255735064981636,47.144125816003559,171.429656056687236 -88.25677104088426,47.144912467116598,171.432967831380665 -88.257143927531374,47.144987044589058,171.433644887059927 -88.264005322895201,47.146359326287374,171.446103516034782 -88.264440297408825,47.146446321356201,171.446893345564604 -88.264760431018317,47.146387461140343,171.447171266190708 -88.273485504321158,47.144783256879002,171.454747098498046 -88.28312032586841,47.139511274401798,171.454474214464426 -88.28316962890753,47.139484296760635,171.454472824931145 -88.283211580134633,47.139435578320459,171.454408040270209 -88.290462405344186,47.131015112072504,171.443210751749575 -88.290508599210625,47.130961466607474,171.443139418028295 -88.29052614057052,47.130853869872077,171.44289696123451 -88.291011528344086,47.127876555724946,171.436187737621367 -88.290118353223491,47.127219951235936,171.433384578675032 -88.289949487793706,47.127095812311012,171.432854601182044 -88.289338447784857,47.12664661527922,171.430936874821782 -88.289260748650761,47.126094502110199,171.42947069555521 -88.288728656473353,47.122313570596646,171.419429576024413 -88.288641292016564,47.121692777716717,171.417780826799572 -88.288780977294735,47.120993937576181,171.416239751502872 -88.289290110609628,47.11844676297553,171.410622554831207 -88.289368981404095,47.118052175397075,171.409752354957163 -88.289449619108836,47.117648748034405,171.408862655051053 -88.289776952196348,47.116011113090821,171.405251001939178 -88.289815163240391,47.115819944697364,171.404829385690391 -88.290158096661074,47.115227002660156,171.403818679042161 -88.290398209614423,47.114811840255619,171.403111001476645 -88.290472909966851,47.114682681134866,171.402890840545297 -88.291002635107631,47.113766770687079,171.401329580694437 -88.292066001644073,47.111928178478259,171.398195465095341 -88.292175713108549,47.111738484110177,171.397872102446854 -88.292684773037124,47.110858304433577,171.396371689625084 -88.293156312557869,47.110042998654123,171.394981852732599 -88.295550503014368,47.105903372565614,171.387924874201417 -88.298113464870681,47.101471935793754,171.38037000503391 -88.299015377480416,47.099912502258704,171.377711322158575 -88.299092981114001,47.099778323284916,171.377482557669282 -88.299239684776097,47.099716046089775,171.377522935159504 -88.314500850630523,47.09323752612115,171.381727566942573 -88.316518774592723,47.092380896894859,171.382284151390195 -88.334544403152535,47.084728834402263,171.387262364849448 -88.33887425075379,47.082890770094963,171.388459876179695 -88.341520669300252,47.081767338528302,171.389192128553987 -88.346127012187125,47.08099094837052,171.393380358815193 -88.347969669182632,47.080680372107075,171.395055944100022 -88.348177824004622,47.080645288015454,171.395245237275958 -88.348666306647516,47.080194169687203,171.394778312183917 -88.351420832076968,47.077650339477465,171.39214545302093 -88.354659721381438,47.070336525243334,171.378368644043803 -88.355420440064094,47.059320858002714,171.352153326384723 -88.355479404266035,47.059109261928199,171.351708529517055 -88.358352644943764,47.048798490132086,171.330031936056912 -88.359024674056059,47.046386879223618,171.324961269274354 -88.359128817250848,47.046013156035094,171.324175454676151 -88.359669565014144,47.044072655003831,171.320095128379762 -88.360018447577616,47.042820672076076,171.317462472245097 -88.36034098163978,47.041663242100967,171.315028580836952 -88.360522079750908,47.041013362272324,171.313661960884929 -88.360606628204494,47.040810857895188,171.313273427076638 -88.369091755555118,47.02048789177379,171.274273843504488 -88.369529942726544,47.020007635318322,171.273667653091252 -88.369825809902707,47.019683362654746,171.273258347064257 -88.375433741566113,47.013537027161476,171.265500438399613 -88.375705978513281,47.013356007517679,171.265414170920849 -88.380736081868605,47.010011320011238,171.26382061932236 -88.385909642363998,47.00657124296378,171.262182459235191 -88.38680613314574,47.005975135629534,171.261898678727448 -88.386974929501633,47.005862897168342,171.261845249682665 -88.387073853333717,47.005797119334389,171.261813935823739 -88.387620888050591,47.005184162393832,171.261024192906916 -88.388006227416923,47.004752386436074,171.260467886924744 -88.389079398213937,47.00354988965411,171.258918569423258 -88.390031385888406,47.002483179568642,171.257544211111963 -88.391166066345164,47.001211760708415,171.255906111560762 -88.405965798974137,46.984628537872169,171.234540866687894 -88.406820201726219,46.983938423259268,171.233968910761178 -88.407696433954683,46.983230676633809,171.23338236194104 -88.411625159459177,46.980057382932962,171.230752718634903 -88.412358319042454,46.979465198348237,171.230262030847371 -88.412612836761781,46.979259620363166,171.230091692879796 -88.417627514193242,46.978381927964975,171.234588896855712 -88.417831865622475,46.978346161417868,171.234772179275751 -88.445369589778423,46.973526379488717,171.259482765570283 -88.4500380223066,46.948045116585376,171.202622412703931 -88.452291192476309,46.940314012324109,171.186478783376515 -88.453597015716483,46.935833456257001,171.177121561951935 -88.453821393219997,46.93506356953791,171.175513638183475 -88.455800651989421,46.928272313799731,171.161328836344182 -88.455820443098304,46.928204406317732,171.161186987534165 -88.456248893614855,46.926734301950326,171.158116130158305 -88.456584851662086,46.92558155882147,171.155708132311702 -88.456871571252393,46.924597763260337,171.15365300886333 -88.459243209611159,46.92027548973995,171.146105127409101 -88.475684473348011,46.890311547377628,171.093766706064343 -88.477326121185953,46.887319670387448,171.088539494201541 -88.47756500256223,46.883235159276964,171.078731900081038 -88.478384406548855,46.869224590661403,171.045082892291248 -88.479086768470992,46.85721526828609,171.016231261193752 -88.479147295649497,46.856180345611691,171.013744533993304 -88.479311678748715,46.853369644825584,171.006990642286837 -88.479401212219344,46.851838758844103,171.003311846405268 -88.485213860884912,46.83300627705875,170.964336558245122 -88.484044678199609,46.827476466164121,170.949048322625458 -88.474806880098129,46.807506213665995,170.887119046412408 -88.46381304651031,46.787991969774318,170.82394583709538 -88.439890384629948,46.787995275620304,170.792001119814813 -88.435298441503448,46.794783120237078,170.802743460051715 -88.416688420027157,46.812995784139034,170.82317157369107 -88.38287320874781,46.839746374384035,170.844548634253442 -88.383667393966718,46.845757175196631,170.860538344830275 -88.383410585054023,46.847390429035542,170.864252913743258 -88.383190953562718,46.849147731803612,170.868324982002378 -88.382312313380794,46.851344366929943,170.872609971091151 -88.381653349876174,46.853760665477587,170.877732981927693 -88.379896015822894,46.856176978078167,170.881392534822226 -88.377040294186088,46.858593304732274,170.883588953875005 -88.373964860059488,46.85947198766285,170.88167455047369 -88.370230349034685,46.858593391793534,170.874518662691116 -88.363965221956803,46.857711974904717,170.863985741510987 -88.36339924019866,46.85763234908439,170.863034246489406 -88.362331120544468,46.857482079393492,170.861238600686193 -88.361723451083066,46.857538304290635,170.86056902538985 -88.353607817390042,46.858289207031326,170.851627646014094 -88.35340289523073,46.858308167548202,170.851401899009943 -88.353192617019516,46.858473357336536,170.851532238535583 -88.348893352527128,46.861850761914766,170.854197383858263 -88.336109569312185,46.87189341186032,170.862125073559582 -88.334631150285617,46.873054824300816,170.863042178563774 -88.334554692751396,46.873114887604757,170.863089608028531 -88.312176880312066,46.890694389489056,170.876978427171707 -88.311752627663708,46.891027672750646,170.877241869457066 -88.310248858005949,46.891901772609678,170.877412865869701 -88.309440649655201,46.892371561850275,170.877504799515009 -88.308723856461611,46.892788213979493,170.877586353570223 -88.306507292529474,46.89407664150761,170.877838653512299 -88.300977064047004,46.89729121092256,170.878468851558864 -88.297938647007669,46.899057359017696,170.878815533593297 -88.290760190788362,46.903229997808388,170.879635830409825 -88.290229819660638,46.903538287930516,170.879696505144238 -88.287935684888083,46.904871805259141,170.879959067329764 -88.283549654935854,46.907421283616678,170.880461537279189 -88.283528240123502,46.907433731457047,170.88046399410814 -88.282706279298949,46.907911514636325,170.880558229982853 -88.278377626394175,46.909868414419691,170.879666541703045 -88.276192105986127,46.910856445686399,170.879216578789055 -88.275390970350898,46.911218623524348,170.879051679745317 -88.273940142461043,46.911874514593848,170.878753116354346 -88.26305497429729,46.916795487395881,170.876515435054898 -88.259534367824529,46.919688085600505,170.87902239151299 -88.251602524594077,46.926205041076884,170.884671658277512 -88.248414883378118,46.928824068634825,170.886942424811423 -88.248334356696432,46.928890230911144,170.886999794282019 -88.245898880295016,46.930891265343853,170.888734923675656 -88.244637288091539,46.931369081477982,170.888246930204332 -88.243319568679738,46.931868155262066,170.887737283483148 -88.24280226125957,46.932064080562512,170.887537223286927 -88.242387918902153,46.93222100881782,170.887376990169287 -88.242307594630418,46.932251430877137,170.887345931492746 -88.239785425198434,46.933206678732262,170.886370710097253 -88.237262165722356,46.934162339430593,170.88539529312402 -88.237163564569059,46.934199683686224,170.885357181541622 -88.234796092220805,46.935096341480346,170.884442198090255 -88.234430861842966,46.935234669036809,170.88430106267333 -88.195822477264997,46.949857230010039,170.869408182799816 -88.178218662460239,46.956524508536546,170.862635164521635 -88.168833415389244,46.96007908217495,170.859028699807823 -88.168687524767137,46.960134336869359,170.858972663991153 -88.166164420279884,46.961457061052187,170.858914969488978 -88.165519180319549,46.961795324688822,170.858900253660977 -88.164316783992675,46.962425674604084,170.858872862532735 -88.164293716372811,46.96243776768182,170.858872339129448 -88.163897921528928,46.962645261035462,170.858863334171474 -88.162030998554499,46.963623985531555,170.858820933848619 -88.16154623910721,46.96387811810817,170.858809945173562 -88.15773301113461,46.965877182707644,170.858723782934248 -88.15689016126548,46.96631904229455,170.858704806305468 -88.156834363273461,46.966348294096825,170.858703550882638 -88.147021588838811,46.967688511708658,170.84904162120074 -88.145148080685914,46.967944393326491,170.847197246737778 -88.145074339327991,46.967913970935101,170.847024133428931 -88.144353085222917,46.967616413698003,170.845330907963216 -88.144267254336057,46.96758100370679,170.845129411667585 -88.143987911656183,46.967465759390628,170.844473621807992 -88.143798779893487,46.967387732070847,170.844029614701867 -88.143517161760187,46.967271549004188,170.843368479982018 -88.14320973326906,46.967144717736588,170.842646755278111 -88.134416772337744,46.963517134682505,170.822004016488791 -88.13433565764872,46.96348367038361,170.821813585236669 -88.136669314548882,46.960969192828998,170.818658364936709 -88.151573633499112,46.944910030569638,170.798508111387491 -88.157818716362712,46.940798095369715,170.796565796248615 -88.169448581302717,46.933140670830824,170.792952039279044 -88.17236534067105,46.931220195848347,170.79204638581723 -88.172776851782189,46.930949245559674,170.791918635368347 -88.177027699712184,46.928150369802729,170.790599285624921 -88.177616240671313,46.927762858170411,170.790416663512588 -88.179381322944593,46.926600679222979,170.78986903000623 -88.187424399847558,46.921304895131556,170.787374851293862 -88.18898200686273,46.92027932363348,170.78689206764102 -88.184409609869746,46.914930627502308,170.767541639506817 -88.183367417248689,46.913711491965202,170.76313073374331 -88.17665627207171,46.905860932035999,170.734723935835063 -88.163371911801335,46.906222090041233,170.718011505901814 -88.16216321053335,46.906391347417106,170.716830171644688 -88.131746208139162,46.910650714068545,170.68711684923619 -88.12838506961927,46.911121382437955,170.683835229836404 -88.12783616975365,46.911279266111386,170.683500790968537 -88.126392585567515,46.9116944937117,170.682621270418167 -88.126030558140499,46.911798626038127,170.682400709949434 -88.124319885286781,46.912290678105563,170.681358580477536 -88.107834782261449,46.917032396524704,170.671321139670908 -88.106652686361997,46.917372410527747,170.67060174793005 -88.104273292791731,46.918056811118333,170.669153856113553 -88.103819627264471,46.918187301911587,170.668877817690372 -88.102914293571629,46.918447708983884,170.668326975777745 -88.102772555156591,46.918488478134456,170.668240738101304 -88.101590038439568,46.918686186777357,170.667167157866061 -88.100684196354607,46.918837637328906,170.666344791650772 -88.100357716280215,46.91889222254644,170.666048405691981 -88.100315233806441,46.918899325323174,170.666009839624166 -88.099066578778789,46.919108091834886,170.664876311086118 -88.085394064824314,46.921394041879303,170.65246766526252 -88.085227215235676,46.921421937979694,170.652316275984049 -88.083720011137984,46.921673932108064,170.650948768481612 -88.08332710079641,46.92173962400684,170.650592288002372 -88.081543843913579,46.921537040786767,170.647729217074811 -88.076193027083107,46.92092917227275,170.639138688333333 -88.066648583986392,46.919844895476281,170.623816803097725 -88.065070626917148,46.919379366700142,170.620571801438928 -88.046006649382264,46.913755113434362,170.581368611194193 -88.034366498300869,46.910321036868858,170.557432779110968 -88.033863406817019,46.910172614853401,170.556398282758892 -88.03150841888619,46.910012806911944,170.552887163124979 -88.030828706619886,46.909966682081709,170.551873783580959 -88.005752570180221,46.908265031769758,170.514494889415801 -88.005147465795318,46.908230934737681,170.513610419817269 -87.987744422216451,46.907250290451977,170.488176214508712 -87.987567034446911,46.907240294826288,170.487917000427842 -87.984793754038606,46.907525258331901,170.484963241033256 -87.983711971100604,46.907636415016974,170.483811118640006 -87.97694416262928,46.908331829153781,170.476604053750634 -87.959708814000749,46.910102816734593,170.45825623255223 -87.958568762457062,46.910219960699884,170.457042904570699 -87.957453276521747,46.910334580469602,170.455855764448643 -87.957198336093313,46.91033749198337,170.455526461824775 -87.956140612925779,46.910349571571807,170.45416023209691 -87.917395611660012,46.910792053582014,170.4041345147416 -87.915941282883011,46.910808662538606,170.402257510460913 -87.91292628882799,46.910843094851131,170.398366441950202 -87.912076260136871,46.910852802482921,170.397269460372627 -87.910243368949565,46.910873734755633,170.39490413852036 -87.902146743370068,46.910966201104848,170.384456581436098 -87.901790737006593,46.910970266823973,170.383997244760394 -87.901521618871101,46.91079183847058,170.383197737857699 -87.889370901082813,46.90273577576076,170.347097299061716 -87.876501895509293,46.894203480095285,170.308857374824584 -87.875988553480639,46.893863128546037,170.307331877760589 -87.875343453948659,46.893665748630369,170.305989160202444 -87.848486600599429,46.885448406589433,170.250090850517154 -87.847644526549928,46.885190758738069,170.248338260687888 -87.846086956653309,46.885334391608396,170.246643810532987 -87.842677399853528,46.885648807306595,170.242934870533645 -87.840338785792085,46.886538284657597,170.242072200402617 -87.831652724062153,46.889841974349054,170.238869775086641 -87.828611150141867,46.890998818118213,170.237749022431672 -87.818242898604538,46.892439904312248,170.227687583304942 -87.815569051794782,46.89009377210774,170.218312120065093 -87.814676666524264,46.889310760224745,170.215182996354997 -87.814674714368564,46.889309047330983,170.215176150202751 -87.794641959485631,46.882108525888704,170.170825066976249 -87.789633452958839,46.88165923730616,170.163109164685011 -87.784663536885631,46.881213410478203,170.155453222803771 -87.783908632908719,46.881145691739547,170.154290369711816 -87.783416708864294,46.88086707145623,170.152947188355029 -87.779196734968565,46.87847692538103,170.14142447989434 -87.778974526898821,46.8783510692123,170.140817723236978 -87.778602904167826,46.878140586248392,170.139802983030677 -87.778377393696843,46.878012859636513,170.139187208376825 -87.77811969810621,46.876286256509495,170.134536756202579 -87.778014215859955,46.875579507986501,170.132633130997419 -87.777760265240147,46.87387799674628,170.128049984574318 -87.777793403483372,46.873848527566985,170.128020022064447 -87.779736013684385,46.872121003035097,170.126263541169465 -87.780199275260316,46.871709033749937,170.125844676047564 -87.778251123961354,46.86811017095944,170.114292126148939 -87.767690033654802,46.862732987761468,170.086956990882754 -87.767435673046066,46.862603479959127,170.086298611946404 -87.767281946350195,46.862590374702201,170.08606349863112 -87.757383391141829,46.861746519249365,170.070925370790064 -87.757314366322305,46.861740634858158,170.07081981562078 -87.757194641464437,46.861805208562458,170.070823560468853 -87.755894732728152,46.862506315449224,170.070864242501557 -87.749944442303757,46.865715609672421,170.071051213890314 -87.748092241491321,46.866714595763597,170.071109661832452 -87.747111213229218,46.866683256157543,170.06974046304822 -87.746339667465875,46.866658608610379,170.068663652054965 -87.745849242729847,46.866642941662995,170.067979196086526 -87.743302690136801,46.866561590329994,170.064425219781697 -87.742460078818112,46.866534672545129,170.063249302096665 -87.742362587013815,46.86629467156677,170.062521392479539 -87.742292221643126,46.866121449233745,170.061996016651392 -87.736315500618204,46.851408223478728,170.017363158985972 -87.73648460853569,46.851144482993611,170.016926470212638 -87.736551926857828,46.851039493427102,170.016752635128796 -87.738177474887394,46.848504290873151,170.012554910965264 -87.73798432384433,46.847681036691426,170.010242838412523 -87.73791477709338,46.847384612438383,170.009410332888365 -87.735770132280777,46.838243642584665,169.98373494297266 -87.732966899392338,46.832484858381001,169.965645016171038 -87.728802687889058,46.828945021860946,169.951310797594488 -87.72732477012795,46.828714812022596,169.948789648711681 -87.727093393045479,46.828678771261536,169.948394951410592 -87.71518124944717,46.82682326024949,169.928075628355145 -87.69603375702799,46.828471450165566,169.907005598768592 -87.687230443244687,46.833765992809312,169.90867261774838 -87.687141650977011,46.833819394796329,169.908689444884658 -87.68717819754454,46.833927921912924,169.909009019844234 -87.689373891094377,46.840448159059576,169.92820724658668 -87.689319376267989,46.840631992854313,169.928595388308167 -87.688723830146429,46.842640281449661,169.93283552210778 -87.688607938815707,46.843031087855302,169.933660617098212 -87.688164175514231,46.843082598797032,169.933205935172737 -87.683004734794778,46.843681493855833,169.927920009940863 -87.682111776869377,46.843785146192353,169.927005242556334 -87.681016379921445,46.842796220924541,169.923091417178512 -87.676489465078689,46.838709318461028,169.906916005536914 -87.675984456893957,46.838253396653123,169.905111438594759 -87.674912003076827,46.830887193016522,169.885270932689309 -87.674875999766613,46.83063990243901,169.884604805149138 -87.674620167778798,46.828882707328198,169.879871320910752 -87.674716745082051,46.828589743051396,169.879265199415386 -87.675416071946557,46.826468356545128,169.874876109883189 -87.675788105708321,46.825339803595497,169.872541091404855 -87.673457943130373,46.821704946866234,169.860379783436656 -87.663703529048632,46.816447234593952,169.834391860291362 -87.652952154208251,46.813701456141267,169.813381024636328 -87.647980915379691,46.814384425519769,169.808555537834764 -87.644230951777743,46.814899611045952,169.804916027002037 -87.643328919705709,46.815023535946324,169.804040627554059 -87.642280594589877,46.814825055290619,169.802165652625263 -87.634741635430359,46.813397695073377,169.788682350888848 -87.630227385929288,46.807386819805927,169.767694804817438 -87.629725581363402,46.806718650120409,169.765361641533673 -87.629522303393813,46.806447978655243,169.764416479505599 -87.628797150834416,46.80584356891044,169.761949427425861 -87.628565715544781,46.805650669164734,169.761162049137056 -87.62118781845254,46.799501241908246,169.736059772782028 -87.61929313334447,46.797922034697244,169.729612866416574 -87.61824071885961,46.797044854347618,169.726031803525984 -87.615094654152486,46.794422630704737,169.715326276607811 -87.61502636455333,46.794365711785971,169.715093893930316 -87.612022839726677,46.791862294162456,169.704872865229845 -87.610448165639824,46.790549813961654,169.699514027684927 -87.609428292836014,46.789699756876864,169.696043180301785 -87.596746791631574,46.784242087682742,169.665697552263737 -87.596715726195953,46.784037261763942,169.665143233723938 -87.595823618891799,46.778155267846827,169.649223644286394 -87.59458758017837,46.770005606239586,169.627162776887417 -87.593665799052872,46.763927961064134,169.610707879066467 -87.593659583079415,46.763886976842159,169.610596907325089 -87.593412564481383,46.76225829146248,169.606186903081834 -87.593345788429275,46.76181801214053,169.604994721710682 -87.592893624554364,46.758836727669618,169.596921723335981 -87.592800861430462,46.758225105909418,169.595265444368124 -87.592521082404446,46.756380418763506,169.590269852429628 -87.592303568362368,46.754946267787119,169.586385875009 -87.592205866791559,46.754302084988232,169.58464124891907 -87.591941083888386,46.753560122304066,169.582431617192924 -87.591109664829546,46.751230357381353,169.57549309451133 -87.589193641465272,46.745861363205016,169.559501577168703 -87.589064308302142,46.745498951650134,169.558422058820724 -87.586006427037489,46.736930294594039,169.532895667478442 -87.585007973397495,46.734132472750666,169.524559651501477 -87.584183043997186,46.731820892699652,169.517671935260296 -87.58311218775502,46.730692464713606,169.513430838473141 -87.57464050940338,46.721765329006317,169.479875241406262 -87.568779807551252,46.718008944367362,169.462734533473849 -87.55887294606795,46.711659195922742,169.433757699094713 -87.554484516700811,46.708846456215809,169.420920912176371 -87.553425196169073,46.708167490536248,169.417822160758078 -87.550533033782031,46.706313774929342,169.409361753612757 -87.545356015499706,46.702995593469844,169.394216854125261 -87.535939356173287,46.69696003732178,169.36666716914624 -87.534964891602584,46.696335459597861,169.363816091790795 -87.534073975587717,46.695764431862457,169.361209430731833 -87.524743262662838,46.689783962549328,169.333907998166978 -87.524796532561226,46.689272640137133,169.332692312076688 -87.525179607992413,46.685595609516803,169.323949615471065 -87.525853558721209,46.679126551238518,169.30856663454324 -87.525879005815383,46.678882291947318,169.307985754683614 -87.520610815025861,46.671482420600469,169.282445582561195 -87.508091075587657,46.653896788902351,169.221731822937727 -87.504671527523456,46.64909358080255,169.20514449197799 -87.504458609898109,46.648794509800403,169.204111618921161 -87.502944992237033,46.648059587718805,169.200271129608154 -87.494838224969726,46.644123427059526,169.17970141209662 -87.49429319470957,46.64385879300719,169.178318453021348 -87.493842016597128,46.643733068023721,169.177408662624657 -87.470455039178745,46.637216068870195,169.130251347087324 -87.469397313927701,46.636921323871263,169.128118657507002 -87.467969166588048,46.63285347024528,169.115993939340115 -87.468995054845493,46.627526625708114,169.103921708650887 -87.465539657062322,46.616110029813683,169.070609282702208 -87.452799065964101,46.607222470263174,169.03145541716367 -87.444042737759702,46.604075679315009,169.012010203674436 -87.412596827287231,46.602969107453653,168.967896258458495 -87.404704436294821,46.596515410218132,168.941246996633708 -87.385389838375957,46.594370719348539,168.910466617904603 -87.383077431735288,46.581360159941923,168.874589980579913 -87.394402551307991,46.573824257124564,168.870442813262343 -87.394256503343129,46.572153311867446,168.866032212041318 -87.383633755107866,46.554982988506659,168.80871063657105 -87.377040398862647,46.548442278135141,168.783521877601743 -87.39172769074824,46.543879239538846,168.791297197341919 -87.395412547769993,46.534485491548921,168.772405594587326 -87.390717188101277,46.525774826591679,168.744216110557318 -87.382775777744357,46.51859515360583,168.715622751042247 -87.368193108041183,46.508606652693018,168.671188592910767 -87.353873323790211,46.502627904606001,168.637237626127899 -87.352496497099466,46.502053056561031,168.633973238989711 -87.31353350995083,46.493615141825352,168.561413205228746 -87.312179139570858,46.493321836232916,168.558891326189041 -87.310825975217014,46.493224006161164,168.556865935213864 -87.260538652134059,46.489588370303565,168.481625253334641 -87.26015458312186,46.489560603162545,168.481050818227232 -87.259567907408268,46.48958739716339,168.480348670855165 -87.206568618499006,46.492007921403925,168.416957675479352 -87.203825069843163,46.492133221670564,168.413678327575326 -87.201567742800606,46.492688159717815,168.412125434726477 -87.176525598620614,46.498844484510457,168.394909705966711 -87.176485477308233,46.498854347876232,168.394882139749825 -87.1473659256324,46.496694034530826,168.351265753619373 -87.128859047415347,46.495321051198601,168.323555131442845 -87.118036641063554,46.496469717918579,168.31230350304395 -87.10897754349314,46.497431230850118,168.302887851372361 -87.100178490757173,46.504916102525051,168.310359385795891 -87.078697191670784,46.516645996988608,168.312016575597227 -87.047439432095061,46.521263238125044,168.282881401479244 -87.031309124684611,46.526906259244875,168.276128096506 -87.018552972180359,46.534857165536366,168.279641116037965 -87.010140713692081,46.534030295906511,168.266565390862525 -86.978373658934061,46.527888883608817,168.20954065117985 -86.965949048267476,46.517857354973657,168.167876048013568 -86.964256821433708,46.510954594550306,168.14814514387399 -86.948393724282241,46.485876585618314,168.063758516684175 -86.947631560155784,46.480368769748388,168.048768945969641 -86.950939582290204,46.47762481592207,168.046112002804875 -86.948490403243269,46.473373981080506,168.032113193534315 -86.929137664055503,46.465876458144507,167.987805505283177 -86.905154028899105,46.467448704406934,167.960524596273899 -86.890505418590649,46.459810127673052,167.921998855657876 -86.885387080003355,46.452287429680339,167.896187940612435 -86.885329834100318,46.44282573092265,167.872036503627896 -86.876561477743223,46.438591973596004,167.849828211590648 -86.851520690297761,46.435426382926465,167.809128644876182 -86.83885733513884,46.435498536704557,167.792811497114599 -86.817434826521307,46.43920468291018,167.774345828220248 -86.812375987243328,46.450975371475209,167.797733107581735 -86.810226208951477,46.461923050542211,167.822806384414434 -86.804966216800054,46.467980923193664,167.831381304189563 -86.789314060330526,46.47904076538363,167.839169052429497 -86.769924547357135,46.480383961643177,167.81737609859556 -86.751565029614341,46.480421186521461,167.793607780709863 -86.73733652753711,46.476543484522708,167.765246286056936 -86.732503301473457,46.473072653988915,167.750128050334752 -86.732236198493254,46.469369774639681,167.74035026691854 -86.711979030049505,46.44622175790245,167.655050537548959 -86.704635680322028,46.440692023651003,167.631413407623768 -86.699544517074997,46.43993811015023,167.622876920737326 -86.687817605908904,46.456278735883863,167.649301760829985 -86.690221884569837,46.464465446783819,167.673287787474692 -86.68787403709527,46.472968206187687,167.691905382089317 -86.685225643083768,46.499391402120324,167.755769802257419 -86.697408118816341,46.504472091527482,167.784511163830757 -86.703336503605513,46.512882752555221,167.813611407764256 -86.710733548627218,46.545224639508092,167.905483014881611 -86.697053448729008,46.556336457205965,167.915999416261911 -86.67959010965032,46.562349482492607,167.908655507490039 -86.677171938249074,46.558371637737494,167.895407674834132 -86.672334786422581,46.557799715312285,167.887685956433415 -86.657886427827648,46.559763831141645,167.873964575119317 -86.654272379757842,46.561865809310142,167.874629784375429 -86.628785964078929,46.53502196980601,167.773324365727603 -86.63049161087369,46.519456440511739,167.735905176028609 -86.633514457288683,46.51017769663958,167.716192219406366 -86.635935413951529,46.505835804175177,167.708270732313395 -86.642493494390493,46.501750852781889,167.706365440972149 -86.646933403710293,46.493352063934417,167.690726325847208 -86.647798266896103,46.487089251516828,167.675891676917672 -86.638075799211308,46.479611607680845,167.644230316393077 -86.628845518433195,46.478853745035316,167.630331921391189 -86.622007487795642,46.485186628524495,167.637609506957233 -86.619465559403196,46.490765483186486,167.648533112369478 -86.613577491573508,46.494608433904858,167.650696973316371 -86.610797404621238,46.494289478131456,167.646282420493662 -86.608335963247001,46.47984496545908,167.606276595965028 -86.610442809681331,46.471553202145998,167.587866825051606 -86.587570984360184,46.464638701797668,167.540595045313239 -86.559133798265094,46.488748287416151,167.565257305279374 -86.526361330426994,46.506695121882295,167.568621220998466 -86.49645598312371,46.526187872889629,167.57966610789299 -86.485404954700996,46.537278658397774,167.593663457781076 -86.483358070144206,46.544022470807292,167.608207648620009 -86.470707935082871,46.552735351192489,167.614082305692136 -86.461331681673613,46.553241450144078,167.603273420594633 -86.445791142434388,46.549450759990613,167.573564233258367 -86.438567958292793,46.550273822521426,167.566345824860036 -86.391808994634758,46.564507946648476,167.54236332513392 -86.351289222931086,46.579348975421098,167.528032230213284 -86.189420559209438,46.655321569669574,167.513896405696869 -86.163077204059931,46.6707884073111,167.519589829258621 -86.139690623979973,46.67424858444582,167.498490418307483 -86.121256693075225,46.658570299466305,167.434946748428047 -86.113520414804938,46.656358462946564,167.419413559138775 -86.101237052193724,46.655929626041079,167.402615575119853 -86.075612400316245,46.659113838592823,167.377990650944412 -86.038361585553631,46.668941984893088,167.3554956195876 -85.99643553885393,46.67499130600504,167.317443984560668 -85.955060433744165,46.678184709282881,167.272859895601869 -85.925436785006568,46.686048823762071,167.255210610106587 -85.879296617980529,46.692230191151396,167.212288335897028 -85.865937479340744,46.691498837446652,167.193434622138739 -85.859143375758563,46.691126890333457,167.183847736567259 -85.858007778676679,46.691064721416126,167.182245447300375 -85.842444506935237,46.690212701094396,167.160289256833494 -85.841598637791023,46.6900694688199,167.158848477527499 -85.81713349793003,46.685926750392433,167.117181866429746 -85.798027235024449,46.682691458450371,167.084648901596665 -85.796308980114119,46.682400503784109,167.08172345906496 -85.793891618699973,46.682197903371176,167.078136310912669 -85.752729181012256,46.678748056212761,167.017074674367905 -85.751990609824787,46.678686156140472,167.015979394316673 -85.744217996594358,46.678640722431247,167.006003537215292 -85.741312956616341,46.678623741427742,167.00227543246001 -85.74000836064053,46.678616115594416,167.000601283274591 -85.715798562338634,46.678474600525966,166.969541678205132 -85.702328131083362,46.679432877707832,166.954919998534024 -85.67539373895444,46.681348971636822,166.925699676387012 -85.670135329603355,46.681723051200734,166.919997476041317 -85.665054940627527,46.681545804219184,166.913110454566777 -85.648768207626276,46.680977585033681,166.891036308370531 -85.625954016537108,46.680181632714948,166.860126225277781 -85.618851255402134,46.679373770064096,166.849071511998773 -85.597186523730514,46.67690963988062,166.815358933992684 -85.595538516699207,46.67672219680346,166.812794850207865 -85.594938127607364,46.67665390900067,166.811860739253461 -85.589120763599666,46.675992246398614,166.802810206077993 -85.588724834786518,46.675947213753197,166.802194254472852 -85.58636904932051,46.67592811451086,166.799166824668646 -85.560141405383064,46.675715477002917,166.765471342951059 -85.548971421092659,46.67562491762952,166.751126358285546 -85.54389553166709,46.675583765424577,166.744608752429485 -85.510887617159653,46.677107115537922,166.706832705996931 -85.484355074703018,46.6816037989812,166.684878851287067 -85.483472943114052,46.681753300916121,166.68414934258908 -85.3711795404556,46.715075615331031,166.628144119866192 -85.363946137511775,46.717869991793073,166.626213113777339 -85.348420622342488,46.723867740617955,166.622074759565294 -85.297768012185031,46.743435634295636,166.608632866293192 -85.291219006666623,46.745965617295724,166.606901596300304 -85.259371526062893,46.754400024926653,166.588583256118 -85.258232271023559,46.754701742396804,166.587928621098399 -85.25740332726167,46.754803156638509,166.587149397470057 -85.239244955981917,46.757024679381082,166.570085601881146 -85.174412095863403,46.764956429365746,166.509245118126273 -85.064922763983617,46.759179917177676,166.357561418786645 -85.037652034981264,46.761759163053526,166.330149573273957 -85.010605469037827,46.770548214272715,166.318996015004814 -84.990861973839799,46.773727351613218,166.302553773857653 -84.966016260497184,46.774169634209215,166.272735213860869 -84.955372912617563,46.772686806846252,166.255668302066624 -84.952943794459756,46.770812893649214,166.247826332226396 -84.988903237144399,46.746808206737853,166.230918981134892 -85.008980389663492,46.729664497718638,166.211875337176025 -85.021523354690842,46.7137888397422,166.186695960350335 -85.028877190547291,46.69877721727579,166.157256717793643 -85.031441945895153,46.686095579990912,166.127824058756232 -85.029654651257417,46.676451900537316,166.100766415707767 -85.036866602220201,46.626349371662045,165.980723533779383 -85.038418044853969,46.602324101236981,165.920727003365755 -85.036837511879483,46.582876726222914,165.868587610311806 -85.032868075259884,46.570033174106499,165.830477052368224 -85.030954662589536,46.555749642731264,165.791211840696633 -85.028734581589859,46.555086689839257,165.786720028147101 -85.026851343074142,46.547727942066913,165.765361062251031 -85.028443305369223,46.544369028069809,165.758681053295732 -85.046894707187036,46.539024975613529,165.767997346818447 -85.054314800828152,46.534158039484154,165.764728649519384 -85.057493735508388,46.527851198879127,165.752425600774586 -85.05630340720603,46.51608158123684,165.720530734397471 -85.051206990396693,46.505294979471678,165.686268619261682 -85.035125118228621,46.48900268090015,165.623987080529332 -85.026956765884947,46.484360923394732,165.601741617545485 -85.016569382257288,46.481045150688047,165.580142559483647 -84.970820970622185,46.477623800956437,165.513963510282338 -84.956663658836092,46.481602844231304,165.506531458348036 -84.948625602830091,46.488732716256578,165.51491916179657 -84.938501355062087,46.490585778303085,165.507043573074043 -84.935788054232077,46.481649090341428,165.48051948659122 -84.923286434326457,46.471296562875146,165.438073650933802 -84.916539177776841,46.468849719508675,165.423294651322067 -84.894777493792432,46.466741043376508,165.390609336085618 -84.876423995004984,46.468116217601271,165.371220814995468 -84.862801677452055,46.471265280191588,165.362350834533572 -84.851120098148556,46.461580721854673,165.32265848852694 -84.845259641093691,46.449997154281867,165.285310715436935 -84.830843108801204,46.445407468672826,165.255395552143455 -84.801452308067311,46.447555748681182,165.224254485219717 -84.770501589003715,46.454859885352732,165.204566579312086 -84.724687620747758,46.469602964456833,165.185682440176606 -84.691021027592413,46.485259871798497,165.184362715110183 -84.679771793139011,46.489030886561792,165.180142405442894 -84.65522794357031,46.483587346091184,165.135483358986676 -84.632367341980427,46.486205533597591,165.113847973756492 -84.617835597682003,46.473208111112143,165.062046095728874 -84.609290975859906,46.458085684807848,165.012154915370047 -84.585511856014293,46.440749507300858,164.937553721480072 -84.574866262593844,46.429234993173459,164.894391310401261 -84.552839390353483,46.419862545734006,164.842644736170769 -84.50506150467146,46.440530459358527,164.83706920966506 -84.494743231174056,46.441653545312889,164.827188083902001 -84.480854635886502,46.43391395056387,164.789827229455113 -84.473189454284736,46.435629986753952,164.7847851337865 -84.463938347441101,46.442280887090718,164.790617599152029 -84.456868459053013,46.455237564694116,164.815557666122913 -84.45659766942137,46.464125289997476,164.838335835374892 -84.464664019275546,46.468775050033003,164.860420669429004 -84.446491018854744,46.490355589227178,164.894008646719158 -84.421615588249253,46.502416504705778,164.894566483795643 -84.396065795840428,46.500581861518896,164.858195792883635 -84.376380451576367,46.510008798310757,164.858366331085563 -84.326709785098728,46.501361649603908,164.774526283144951 -84.265602873310812,46.496396519111272,164.686207611113787 -84.227467708050682,46.535260754678447,164.740344549529254 -84.195064904249463,46.541260946635425,164.716075468808413 -84.140760120824851,46.533560819803704,164.629264770075679 -84.130258760921222,46.531461007549247,164.610893800854683 -84.119258131929897,46.518961524511361,164.564826155081391 -84.112557605112372,46.505462022663501,164.521424047648907 -84.126358180749449,46.471486920403798,164.449831978417933 -84.147503542921356,46.419865286057309,164.341190805658698 -84.140236204496318,46.373567819874268,164.211330126971006 -84.116890004135342,46.269575358258869,163.910449583083391 -84.109415134894775,46.242589295476201,163.830499620176852 -84.1195013509181,46.235319198653755,163.823894342407584 -84.126350428615368,46.234236362499061,163.829515155404806 -84.135978691989337,46.233491274289321,163.839456698857248 -84.147276849888414,46.226346368678193,163.834687300957739 -84.148476970087046,46.225535400084894,163.834044539369643 -84.150546670130183,46.22515908652997,163.835616303607821 -84.152051905161983,46.225159069059522,163.837476969696581 -84.15299268976915,46.225535347673727,163.839626440778375 -84.153369023952891,46.226287915081812,163.842064632102847 -84.153557206421354,46.227604917153947,163.845749882049859 -84.153826110568545,46.229226201752482,163.850332457572222 -84.16081244376538,46.23458395154308,163.873012437485158 -84.184060176129151,46.236800611582979,163.907567214220762 -84.220823165802386,46.233342293495198,163.943994328379631 -84.234446371270664,46.225387386307034,163.940021831542253 -84.25049341517456,46.207811755130322,163.913849741220474 -84.246561965639231,46.193922240134093,163.87257257476449 -84.249015731611436,46.18124161292986,163.842367666773498 -84.252752744120613,46.177239696200772,163.836507027037442 -84.222328548800775,46.164414455885229,163.76514736097306 -84.197995913749011,46.167502640581468,163.743100364692509 -84.178624777900396,46.18534530062712,163.765930566936731 -84.1729665584202,46.183083437856304,163.752992724999785 -84.126347161312552,46.181562026689747,163.691328090615571 -84.116265720624298,46.17546733635929,163.662863397970796 -84.114583545389763,46.1702135221121,163.646988545544446 -84.10144972809438,46.152124246996934,163.583236264996231 -84.097141529555799,46.149087393081331,163.569930358789861 -84.090632308386546,46.14778650965264,163.558464542031288 -84.061705456826019,46.147492853717971,163.521943351253867 -84.027857121625274,46.133003704173092,163.442038742825389 -84.032357050756758,46.124541920385617,163.425338982604444 -84.040017332615918,46.126975754684132,163.441203289665282 -84.053221579203267,46.12116578625816,163.44223652780056 -84.062650703131808,46.114837877955281,163.437246453016996 -84.070468704104726,46.10533408914673,163.421911748126149 -84.073719624812668,46.09804628292958,163.406757886521518 -84.073062504153953,46.093797425458909,163.394764772616327 -84.067578224726986,46.088794647766534,163.374815039336681 -84.053032603598254,46.080546077939118,163.33511140011251 -84.029180326225301,46.056142129293178,163.241339294239879 -84.007400448252028,46.045944705064713,163.187536016106606 -83.990843685625791,46.034182270398809,163.136058116331697 -83.965124816787139,46.029192725679742,163.09111588075757 -83.952726483708574,46.030401830015485,163.07898990996182 -83.945249323008298,46.032824839005315,163.076147880405188 -83.940328126226518,46.030585966947406,163.064164511859417 -83.936785813071893,46.021745289218671,163.036462919786572 -83.932490628092012,46.019231418726726,163.02452474553138 -83.909897816946071,46.012831882561152,162.979739807546139 -83.901849284701598,46.000279375107809,162.936659057624638 -83.874460355218645,45.99478786500773,162.888353096321225 -83.869546250746893,45.996436868916931,162.88664738740772 -83.846712308030774,46.027040156689495,162.939328162930906 -83.831458782813201,46.023685438686172,162.911674631759524 -83.819513963084205,46.003787209354215,162.844388797879219 -83.795366100864513,45.99716369745979,162.797136663459241 -83.777746784176372,46.005564632003775,162.797652166336775 -83.766587792337106,46.019725309271053,162.821349820122123 -83.766544111854387,46.033296878112345,162.857158523052931 -83.775096824339201,46.052832159116662,162.919276697561145 -83.797867614225851,46.058048731980271,162.961057712323964 -83.81383347923115,46.07482901576099,163.024985886178911 -83.825350532648486,46.104996926498636,163.118718524463475 -83.817140408534016,46.109887865915304,163.121515805833042 -83.813724310151514,46.109956903008943,163.117497465573251 -83.794180580421781,46.103330337657709,163.075999228283763 -83.781309002739093,46.094874753568789,163.03787724301219 -83.773133703618029,46.09235892723148,163.021193630062044 -83.757303267445778,46.093519072228155,163.004805711098015 -83.729476423635077,46.092317429690731,162.967463922686875 -83.724611348673221,46.095170395085596,162.969021644443274 -83.721102416992011,46.102391206547615,162.983771078288555 -83.705172005307304,46.104726315323944,162.970388111658394 -83.662470679304093,46.101618903259421,162.909828968346119 -83.636288998528812,46.105314086165485,162.887508791871369 -83.626862680666378,46.103573249216701,162.871367785148323 -83.616651233440365,46.097337563556032,162.842394661158323 -83.599919603044555,46.091446941571341,162.806349129416049 -83.582622084050044,46.090975154358887,162.783933094702661 -83.57739678657363,46.084875407317419,162.761418635956943 -83.573946482496382,46.076284718963713,162.734488025307655 -83.573880361948667,46.071257879050634,162.72111685667187 -83.566656961305966,46.06326121513662,162.691131043247879 -83.55536455871578,46.060245439782591,162.669336618855596 -83.548507097937971,46.049231867466318,162.631809578277171 -83.544670734092136,46.038560249955161,162.598875004798174 -83.542149284916931,46.022611785215275,162.553570757620037 -83.534216819022234,46.012693190902986,162.51759612839669 -83.496142424985464,46.000906999703432,162.439783129841089 -83.48965023448271,46.000909073618182,162.4318478256464 -83.481940928943516,45.997530268880944,162.413464482873678 -83.475247554164966,45.989924586997752,162.385117578320205 -83.474522435958036,45.985788726819706,162.373265398666263 -83.483066392707116,45.973240028877278,162.350440773181617 -83.490110525989564,45.970107048405154,162.35075122397393 -83.511924243188474,45.930692056294404,162.272892669774592 -83.518543303642303,45.924982163132491,162.26584882941097 -83.527648454019797,45.920004218343173,162.263796290382743 -83.56314035138702,45.913930007963636,162.291203252971172 -83.58435505095909,45.917286658903201,162.326145966537297 -83.633518873186304,45.933653575265353,162.429926855489612 -83.658965926888513,45.946828864064265,162.496113839559257 -83.689001568798759,45.936754842304495,162.506347164511681 -83.720740465799679,45.935443521173468,162.541924667544663 -83.734293945629432,45.939006252292657,162.568046059459448 -83.744086240249914,45.939367128678256,162.581058881245553 -83.767541860046805,45.936585948930173,162.602585734799504 -83.770162862450732,45.933434019610466,162.597468892112374 -83.787419397097366,45.934739780200971,162.622194760479033 -83.802349932049509,45.938946474682865,162.65173863992095 -83.804642135091399,45.944726263772367,162.669863094575703 -83.80945733058995,45.947057134118857,162.681968900375068 -83.824120718411919,45.945349020519139,162.695532493293285 -83.828876792451979,45.942600053785256,162.694125151261687 -83.836816038461848,45.943206943322274,162.70552627556026 -83.842180451615619,45.954089534169391,162.740936266258359 -83.84774862485996,45.954544455738521,162.749009900726378 -83.866171310775755,45.960828043603186,162.788363505154848 -83.880928900347783,45.967558659236254,162.824375638738275 -83.88236798932752,45.969547579220254,162.8314098874107 -83.912151797407645,45.966975319036557,162.861393343657255 -83.922570923074318,45.9594374399597,162.854345069266856 -83.953498000234262,45.966859847182192,162.912191335111856 -83.986456999454404,45.968494415586214,162.957278816029429 -83.997787195230458,45.962822466288088,162.956320855766535 -84.018881752402791,45.960407300457838,162.976060877554119 -84.081389851222411,45.972182203405744,163.084605276584625 -84.091710066879116,45.968616198247652,163.087993648834527 -84.106689637820224,45.974307843433181,163.121591797098517 -84.108523791250335,45.978520687654715,163.134980344213545 -84.112493942721656,45.980034593440458,163.143898800946772 -84.115603906603724,45.979681320980383,163.146825411356986 -84.141781320574424,45.97670773026438,163.171471580862999 -84.142136724872557,45.976667358554913,163.17180634662509 -84.170689267480469,45.968278117453018,163.185144886374474 -84.173571419097627,45.967431290416307,163.186492897570133 -84.176084411807622,45.968773299470215,163.193154274486005 -84.17656580625939,45.969030377698026,163.194430334493518 -84.179381661734624,45.970534124016361,163.201894408091903 -84.204457616633391,45.969874792531037,163.231325502507389 -84.215207506811836,45.969592141588556,163.243947892449796 -84.220273893645341,45.969458929146427,163.249897922389209 -84.239497370360354,45.968953478879001,163.272480856627226 -84.255316332187945,45.958085669732533,163.263527108356357 -84.256275582960512,45.95742665339592,163.262984392233193 -84.262624251149447,45.95744171716602,163.270929007790983 -84.263181572390124,45.957443039546675,163.271626485511661 -84.267996925247601,45.957454465143115,163.2776531400159 -84.28298688924761,45.957490032442713,163.29641786403954 -84.318747311733176,45.957574882426854,163.341208116151392 -84.320890393698704,45.957579967380816,163.343893453478813 -84.321342022507963,45.957581038973721,163.344459367915988 -84.321819548662646,45.957582172013922,163.345057742670178 -84.325972399661154,45.957592025602018,163.350261826068163 -84.326440545665633,45.957593136385086,163.350848503410816 -84.32711260283692,45.957594730993826,163.351690732873976 -84.327738216802032,45.957596215405452,163.352474774233997 -84.328502682221441,45.957598029273484,163.35343283880502 -84.331346764841115,45.957604777505168,163.356997326016426 -84.331671698435414,45.957400971177208,163.356865708716214 -84.332898227512118,45.956631662027199,163.35636892542243 -84.346776562492977,45.947926829619917,163.350751030258834 -84.354585382321304,45.943028946141595,163.347592693753541 -84.354598091028123,45.9430209749287,163.347587558440864 -84.355040385969659,45.942835691727211,163.347651449032128 -84.358850807339266,45.941239455812514,163.348202174529433 -84.377755530586455,45.933320017162259,163.350942078977823 -84.377757135509469,45.933320828114013,163.350946218706667 -84.388709697161403,45.938855049688442,163.379204186610878 -84.392791533147104,45.940917561217709,163.389735110104084 -84.399334012525856,45.944223411613699,163.406613979488611 -84.39965077513942,45.944383468642314,163.407431176863611 -84.399867762336299,45.944493110135696,163.407990970648825 -84.400461287237192,45.944793012422039,163.409522170200944 -84.400787057777279,45.944957621067196,163.410362606868148 -84.400909967619583,45.945019726199888,163.410679693333805 -84.412539815216562,45.95089617361856,163.44068200327456 -84.4295674627636,45.959500076107737,163.484606622718275 -84.430017674325498,45.959727563571775,163.485767950303853 -84.437782902338867,45.973078239125172,163.530600441619754 -84.437903694047236,45.973285915047207,163.531297721900046 -84.438962301068074,45.97510596703512,163.537408467382193 -84.444416044757588,45.979180286737559,163.554940727539361 -84.444467558905302,45.979218771330622,163.555106326937675 -84.44446987976518,45.979217733644646,163.555106499232352 -84.444665216904582,45.979130395924926,163.55512089561671 -84.461286238866677,45.971698925575303,163.556350738741457 -84.464457923751013,45.970280824916195,163.556586526334286 -84.475024205252836,45.975676387545882,163.583990073762834 -84.479906147719831,45.978169301085963,163.596650897525251 -84.481766636350073,45.979119340403315,163.601475809700787 -84.482131001453169,45.979740608375174,163.603565032593906 -84.483893548608123,45.982745874477423,163.613670824095607 -84.484392819631552,45.983597166468769,163.616533329710364 -84.483837279919399,45.986463758324021,163.62337461579591 -84.483772878337348,45.98679607129548,163.624167672358453 -84.484104158890162,45.987389858366818,163.6261429162696 -84.485339991015991,45.989604963149226,163.633511252701283 -84.486956128388016,45.989808342190706,163.636066960170865 -84.489867048134187,45.990174660101168,163.640670333988965 -84.508532732258118,45.992523599562766,163.670192656107247 -84.515454838381189,45.988596644582884,163.668534164316952 -84.515402454526907,45.972647155925266,163.626545514911413 -84.526383707100834,45.969933114925453,163.6331583308056 -84.533723940219218,45.97080300151157,163.644636596553028 -84.535754078365116,45.974116871678632,163.655889619141817 -84.535980213660622,45.979486697037721,163.670286110602319 -84.531776409973887,45.992739321737439,163.6998475138098 -84.534758840373783,46.007073828323847,163.741235717199743 -84.542328390516005,46.020854299405315,163.786894996650517 -84.545738569954779,46.024213152260423,163.799980398267508 -84.565225364767969,46.033811618103066,163.849561743438244 -84.582415828017105,46.032393462679622,163.867362702265382 -84.587926880153944,46.027936540749423,163.862570148892701 -84.610398526045003,46.027770283537677,163.890286109410226 -84.64894620193418,46.051055088807367,163.999659252353013 -84.657904532127205,46.054004889777858,164.018621535971761 -84.66804777300608,46.051836840309072,164.025658833794296 -84.677172928659701,46.047359876513077,164.025371679104865 -84.688659991946778,46.036231097708317,164.010617242194712 -84.694072958625384,46.028370285695267,163.996805813163519 -84.694037715070863,46.018314607790785,163.97039748262614 -84.687605618467444,45.98049689422745,163.863109824247658 -84.685704524025553,45.9788519691921,163.856404181569815 -84.686590452289352,45.974807088514424,163.846899935975671 -84.689048470448157,45.972613130121232,163.844229064881802 -84.705284930260433,45.972253951730018,163.863690657541156 -84.724376393771095,45.96863184453332,163.878186351619661 -84.731516453334976,45.962550956088847,163.871206424199045 -84.740186332701882,45.947145349221998,163.841673350892961 -84.740707252120416,45.94316947083481,163.831889925524592 -84.734377853929075,45.934190833376462,163.800345622003078 -84.720291318569494,45.928803171291477,163.768466518260539 -84.714949994606727,45.921720461435044,163.743136750534177 -84.714586880500136,45.917401604555756,163.731330937705934 -84.735338261888387,45.908380652118979,163.733746468089521 -84.731587876665699,45.898621939780824,163.703374764882028 -84.730817745801687,45.89661801611873,163.697137132287025 -84.722612086477938,45.875266430057756,163.630657047964633 -84.722611101579403,45.875263867296461,163.630649064667523 -84.716835749653882,45.867317717450909,163.602471005171537 -84.716815743847775,45.867290192005434,163.602373384870589 -84.716699741251162,45.867186012186842,163.601953175850213 -84.711061634572687,45.862122531287909,163.581528515554965 -84.703456174189526,45.855292205828917,163.553973698988557 -84.702927731526316,45.854817621095542,163.552058995701373 -84.702517025027291,45.854448773067219,163.550570878200233 -84.703589685068948,45.851913744554274,163.545249431394041 -84.70362899421157,45.851820844853478,163.545054412446916 -84.705980784130546,45.85078189416538,163.545282122679055 -84.706370300049301,45.850609817642443,163.54531985707581 -84.707257381200222,45.850217931630567,163.545405808836222 -84.707312521234371,45.850193572406965,163.545411152765155 -84.70771706871524,45.850014855387904,163.545450361445546 -84.709009943350225,45.84996555425694,163.546949329786003 -84.710594685500709,45.849905123354461,163.548786757513881 -84.72194325662737,45.849472368774116,163.561946966685355 -84.722170471523512,45.849463704397799,163.562210491858423 -84.722345715403733,45.849328639431597,163.562075844034553 -84.722802946652834,45.848976239546836,163.56172454636544 -84.724098491473953,45.847977729829275,163.560729186981916 -84.72433910200894,45.847201927872362,163.55899050924927 -84.724886491740918,45.845436975965107,163.555034909397364 -84.727068348006171,45.838402004217123,163.539266769774258 -84.728255354121004,45.838321114974946,163.540550133213401 -84.748319924702542,45.836953802749377,163.5622498691082 -84.748368101443234,45.83697810452189,163.562374593690038 -84.752842245314156,45.839234994981318,163.573957498185337 -84.756007054672494,45.840831418395119,163.582150586880744 -84.759668749058704,45.842678485304766,163.591629871167243 -84.775097325813519,45.85046111553941,163.631569214165211 -84.776735771069937,45.85128759576078,163.635810431092978 -84.794099793985538,45.86004652217148,163.68075636960566 -84.821894661622736,45.869648153586176,163.741080641746521 -84.830334107121729,45.872563527930801,163.759397711604834 -84.832734224779571,45.873392639442791,163.764607003889978 -84.833285561365443,45.874130744404518,163.767242808826268 -84.835551434280418,45.877164194532831,163.778074921108782 -84.835574897395318,45.877195605910039,163.778187084943056 -84.836485085992337,45.878414126017816,163.782538070343435 -84.839621014040162,45.882612367329251,163.797527870163321 -84.839765476428141,45.882805767163283,163.798218367621303 -84.839810655641983,45.882866251089666,163.798434314318001 -84.839566424642371,45.885038743779766,163.803833356127143 -84.839179892223427,45.88847704147291,163.812377610243857 -84.839055858472591,45.889580351183078,163.815119220875204 -84.83896281242167,45.890408017941944,163.817175840958953 -84.838973663483159,45.890429487384061,163.817245932295918 -84.840978197580924,45.894395572052083,163.830193720757961 -84.842005271316424,45.896427695813188,163.836827372200787 -84.843486426549418,45.899358245610536,163.846393270418048 -84.843582164884523,45.899547669346518,163.847011562436819 -84.844426359836518,45.899699277187679,163.848475350998342 -84.84595447227548,45.89997370885412,163.851125046610832 -84.847373836159321,45.900228610512691,163.853586208075285 -84.851931518296666,45.901047118539275,163.861489422619343 -84.854255517858917,45.901464482503911,163.865519469603896 -84.854642954124827,45.901649324515731,163.866493976674974 -84.857321311679542,45.902927142422904,163.873230731114745 -84.860364476478395,45.904379006256804,163.880884991958737 -84.861884297136072,45.905104097663347,163.884707661345601 -84.86283362468572,45.905557012449172,163.887095410376787 -84.869190833467343,45.908589973885249,163.903084858320653 -84.871695028959067,45.909784700784492,163.909383233636618 -84.87459433603685,45.911167931511315,163.916675297543406 -84.874613128224027,45.911185154367026,163.91674423404038 -84.8785936022675,45.914833219886496,163.931345512159169 -84.880309265094311,45.916405608078925,163.937638627365232 -84.880847543600936,45.916898935062541,163.939613009802997 -84.881175670452308,45.917199660110583,163.94081655703485 -84.903913834741573,45.924909618480719,163.989766582846642 -84.904254522395917,45.92502513737567,163.990500024519861 -84.918630543469973,45.931927839150504,164.026768137700856 -84.918826109902398,45.932021741124387,164.027261503040791 -84.937908228815587,45.956567701616294,164.115717612206936 -84.938296214351553,45.95706678023172,164.117515632882714 -84.938477284955852,45.957299697333099,164.11835474986583 -84.972577281274212,45.985557632110584,164.235456926748157 -84.974901062143644,45.98748329939658,164.243434727191925 -84.976012718890189,45.988223174382604,164.246776424348354 -84.976059606561691,45.988254380971625,164.246917365118861 -84.993856797413429,46.000099490804665,164.300411419942975 -85.004943410394645,46.007478304035658,164.333730171434581 -85.011554530048699,46.010432122005405,164.349814351648092 -85.01228764601376,46.010759674858818,164.351597929373384 -85.015336821821691,46.012122032634323,164.359016169793904 -85.022298049959318,46.014192888465246,164.373233842663467 -85.048375942483332,46.02195065103556,164.42649897094816 -85.0493223809288,46.02223220157358,164.428432210348547 -85.05032016241104,46.022529025856429,164.430470333434641 -85.055645134759573,46.024113121295279,164.441347541287541 -85.05692931761979,46.024495145477324,164.443970748223364 -85.083283562136145,46.028641532237678,164.488158090040088 -85.089694603705055,46.029650199255215,164.49890919867903 -85.090167399613833,46.029724585551307,164.499702092260122 -85.104211780451251,46.03382345296221,164.528191202320158 -85.104248904049015,46.033834287523455,164.528266509994864 -85.106497787686024,46.03494400189242,164.534012616612017 -85.10803408012319,46.035702087265413,164.537937956862152 -85.114951243782727,46.039115370084353,164.555611502379179 -85.126146821380175,46.044639841435973,164.584215425886214 -85.126593730068365,46.044860369069802,164.585357218980789 -85.128396660159012,46.045750027107509,164.589963446371257 -85.128552804549457,46.045827076746157,164.590362370945513 -85.131784025730425,46.047421526750668,164.598617584444582 -85.135054924425589,46.048529844386074,164.605654053390026 -85.139001696890631,46.049867176392432,164.614144551567733 -85.140923680849284,46.050518425148546,164.618279244750738 -85.142186410343356,46.050946290848351,164.620995715260506 -85.143806967521655,46.051109012141367,164.623473569750786 -85.146511472146912,46.05138057336319,164.627608917653561 -85.148454473801664,46.051575671532163,164.630579981952906 -85.153090155244314,46.052041143577419,164.637668779119849 -85.153177070437636,46.052049870793297,164.637801693752408 -85.153378759069639,46.052070122491052,164.638110123574734 -85.19198279118352,46.048966765182143,164.678953686729074 -85.196077259167268,46.047336853532869,164.679894868284464 -85.196554241930258,46.047146977884701,164.680004550144076 -85.19887592194172,46.04622277153728,164.68053853046149 -85.212187920190232,46.054645055513511,164.719395996071398 -85.216010439176998,46.05706350086281,164.730552973225713 -85.219058399377516,46.058991895511163,164.739448927342892 -85.221643230008937,46.060627275641131,164.746992967091501 -85.222560431701794,46.061207574173551,164.749669851735234 -85.223769682792835,46.06197264759043,164.753199059516191 -85.223865024924208,46.062032968999894,164.753477312624454 -85.224312891404026,46.062084919192195,164.754181055352092 -85.226406069522895,46.062327717013204,164.757470156997442 -85.249769033865661,46.065037699804982,164.794187582097948 -85.256730495406174,46.065845193242232,164.805130458436906 -85.267740407520847,46.067122285926985,164.822439227253199 -85.269663565336856,46.067708611191293,164.8264094972983 -85.279701025211182,46.070768794935645,164.847131795249879 -85.289049177379852,46.073618825067946,164.866431661881506 -85.28929262204997,46.073740931815294,164.867059024050832 -85.291401968005346,46.074798935563699,164.872494840063155 -85.29667795916356,46.077445262211313,164.886090916581452 -85.305595195629152,46.081917961213691,164.909069632180035 -85.311969783508758,46.08511532093835,164.925495655275881 -85.31762134749755,46.087950027018387,164.940058189444244 -85.336823553991906,46.093800858992694,164.979694665409625 -85.337269057381121,46.093936602010352,164.98061428964138 -85.3376383067408,46.093927341028753,164.981059570796788 -85.357458485892977,46.093430239736492,165.004966612905264 -85.357572626533681,46.093427377024412,165.005104321986437 -85.357697644534127,46.093363620387954,165.005097395740449 -85.367980794293857,46.088119423242546,165.004529779776931 -85.368517124502347,46.087947547575013,165.004764786921442 -85.382622143790584,46.083427366582157,165.010948905721307 -85.382753101019858,46.083385399225079,165.011006354354322 -85.383671536761497,46.084376323491092,165.014753890223801 -85.384140043027486,46.08488180711543,165.016665528528392 -85.384285980207849,46.085039262543859,165.017260990105569 -85.391406821412716,46.092722123724272,165.046313361264765 -85.395191786815246,46.096805821526246,165.061753711663187 -85.40555462966158,46.100199875858635,165.083771234378219 -85.410823046968815,46.101925396041707,165.094965039752424 -85.413424455593599,46.102777413414785,165.100492302328348 -85.42827689366375,46.103304219746697,165.120772530324757 -85.430571275693154,46.102361337058859,165.121242753230035 -85.43089432067427,46.10222858082372,165.121308976784348 -85.433425014017132,46.101188585342562,165.121827879920602 -85.438713377352116,46.099015317692228,165.122912952676415 -85.43912956721914,46.09884428330642,165.122998391278088 -85.442931445061944,46.097281891010219,165.123779132962227 -85.443239754986408,46.097155190187351,165.123842470347881 -85.443293171519755,46.097133238514083,165.123853442259133 -85.443295051544524,46.097123592967272,165.123830760829151 -85.443473577597771,46.096207657497281,165.121676648966968 -85.443654136284223,46.095281293522135,165.119497964158654 -85.443615738683988,46.095256671709912,165.119385023601353 -85.442268695009574,46.094392902720635,165.115422874689102 -85.44155204298653,46.093933361722918,165.11331491637975 -85.447195956571321,46.08776662024718,165.104469611309469 -85.447337053004986,46.087612453247353,165.104248482733965 -85.44835105476109,46.086504518735062,165.102659322321415 -85.454511295655522,46.088559672384434,165.115854342468083 -85.46818943612098,46.093122916027284,165.145153049379587 -85.470261247127084,46.093814104889802,165.149590957909822 -85.477459582956158,46.096215583365939,165.16501026507467 -85.481677548637705,46.097622763302716,165.174045532010496 -85.481965292034417,46.097718759042124,165.174661905504763 -85.482082381123703,46.097722126521347,165.17481994535774 -85.487678585401937,46.097883073211356,165.182373721152544 -85.500784544254557,46.098260000217572,165.200067298486829 -85.501462863286932,46.098279508652581,165.200983176939189 -85.501603201624079,46.098254852227079,165.201098101213574 -85.514059168806099,46.09606642934132,165.211301108822227 -85.522787448791959,46.092653480143376,165.213569995947182 -85.522933336909119,46.092596434685028,165.213607939891517 -85.522998922421692,46.092556733495975,165.213588475249708 -85.529766407238853,46.088460139855812,165.211580677889287 -85.530310816853003,46.0881305898058,165.211419221945107 -85.530421670742882,46.088063486095685,165.211386349052191 -85.534704963572224,46.085470660164368,165.210116419941187 -85.540842198619387,46.08175557861825,165.20829785335809 -85.542221600278438,46.080920578882782,165.207889279350638 -85.544337918771447,46.079265355463335,165.20629021152854 -85.547313741002796,46.076937893573898,165.20404189825058 -85.562460941912136,46.065090904799469,165.192601257935166 -85.564930318126414,46.063159546508246,165.190736691467464 -85.605149184294504,46.031703408421734,165.160389967262745 -85.617025253977133,46.013020446584108,165.127002002671361 -85.618941234301118,46.010006302404094,165.121614770963788 -85.619073042481133,46.009798947008989,165.12124415487051 -85.626482482328967,46.003855853868394,165.115273365750909 -85.629657180674087,46.001309436291379,165.112715483643115 -85.630361973837751,46.000744123464116,165.112147657200694 -85.63069448440055,46.000477417576619,165.111879770644009 -85.647643286559884,45.986882826032101,165.098228492774069 -85.647723340609531,45.986818614880889,165.098164030350745 -85.648793807812879,45.985959995839266,165.097302062436938 -85.648918225887442,45.985860200415758,165.097201881930232 -85.649945313234255,45.985036376248431,165.096374872140586 -85.650306586250153,45.9844440856576,165.095296756364405 -85.651798694659519,45.981997842154328,165.09084390103817 -85.652306189152739,45.981165828143993,165.089329364709556 -85.656050241193839,45.975027626118518,165.078155343420804 -85.656102499508307,45.974990049555323,165.078124564141035 -85.665330341428486,45.968354730608752,165.072690251283348 -85.665973000973622,45.968222184319877,165.073169701732695 -85.689513505673062,45.963367037299548,165.090741481631994 -85.698568118483905,45.961499554944027,165.097505250014365 -85.69897381996401,45.961578320906213,165.098231138661504 -85.702992330981175,45.962358505108909,165.10542125813663 -85.705602542227723,45.962865271312523,165.110091709531844 -85.706316412832109,45.963003867564346,165.111369055695832 -85.707913926966754,45.963314021070723,165.114227556623518 -85.717593711347021,45.965193327788953,165.131548860110343 -85.725612016335205,45.966750062286408,165.145898150280118 -85.726519207929513,45.966739000220315,165.147034696303308 -85.733141855843868,45.966658245311358,165.155332330614328 -85.744896684961503,45.966514909844079,165.17006311006844 -85.744984561125278,45.966513838303854,165.170173251070082 -85.761531764574997,45.970254078077488,165.201168145984411 -85.772305489315698,45.972689312124153,165.221350544132292 -85.775422835529639,45.973677371556896,165.227927482686937 -85.791646902716451,45.978819675750472,165.262157729826868 -85.792007202713734,45.978933874745962,165.262917921878397 -85.793209381070668,45.979085192954734,165.26485728751868 -85.81056902230128,45.981270251231791,165.292865206487477 -85.811810826558343,45.981426557147643,165.294868955388665 -85.81242322853133,45.981371474721215,165.295513664372265 -85.818435027242543,45.980830744158524,165.301843222230673 -85.818927012853223,45.980786492567361,165.302361262962222 -85.819375291917581,45.98061529146441,165.302493180148304 -85.822090127523978,45.979578475589271,165.303292240016162 -85.827188169644941,45.977631495449288,165.304793464951217 -85.82740305146217,45.977360681387623,165.304366276599467 -85.827646763235691,45.977053533132597,165.303881770931184 -85.83114906639733,45.972639604809785,165.296919032931328 -85.833630651337984,45.9695120805874,165.291985426098108 -85.83397215153505,45.969081690268354,165.291306487284601 -85.835872993476613,45.968597804358318,165.292496022768319 -85.836586147566678,45.968416261007214,165.292942341417074 -85.836825138077558,45.968355422628917,165.293091913685203 -85.839502246038066,45.967673927341764,165.294767528772354 -85.839735739739808,45.967614488253091,165.294913684949279 -85.840394377386076,45.967446822824861,165.295325973071158 -85.843773368211089,45.966586653431776,165.297441356815398 -85.844385856899876,45.966682009585959,165.298477874137461 -85.86155967609605,45.969355739500173,165.327543968334794 -85.862526972266721,45.969506334346995,165.329181239008904 -85.866772057865674,45.969596624359234,165.334884244017303 -85.883812587210343,45.969959064497907,165.357781768776476 -85.894566858467954,45.968591979679566,165.368090994656086 -85.910471107623025,45.960413053231157,165.36735022533685 -85.913741034430103,45.957826576479022,165.364848292432725 -85.913975000727248,45.957641511667788,165.364669286645949 -85.92410822807949,45.949626238436942,165.356917729601264 -85.927584075259304,45.93943252656581,165.334915887564421 -85.9273879221264,45.933443722773788,165.319098808802664 -85.918608566990869,45.929121968006548,165.29653462022543 -85.911634229832615,45.923452235245655,165.272794126532972 -85.915139263313193,45.920779279791837,165.270367804914713 -85.921951494528173,45.922334147735981,165.283203158527613 -85.955434827930674,45.937968239722686,165.367064824327826 -86.000241450227492,45.952306237467354,165.462181732058525 -86.052331201899349,45.963542247486522,165.558680473826826 -86.073442875930468,45.966649892837665,165.594050553627312 -86.096129551853863,45.9680405746441,165.627015484496951 -86.124944317834704,45.966084290766943,165.659252266399562 -86.147091760748054,45.958708262569701,165.668824462220073 -86.151550815366107,45.955830302003022,165.667142855003476 -86.160793058297159,45.955101214175677,165.677233207970858 -86.197997342267996,45.964520460304755,165.749888876453042 -86.209634665584304,45.964313326535709,165.764449584297836 -86.221925910774232,45.960218310760773,165.769791653379798 -86.230439895010647,45.949905542094989,165.754126633517444 -86.234992954744655,45.947137576831686,165.752866918221116 -86.24938833703213,45.946184433875366,165.769093510694802 -86.256148621739925,45.949975229325851,165.787695229053497 -86.279388113381259,45.943392161950001,165.8008415652439 -86.317362517550222,45.91658257301647,165.78078015614301 -86.325613522375093,45.907415771066674,165.767767611891031 -86.334005414141728,45.853150435343643,165.637991978786886 -86.350514441558843,45.835497811316692,165.613709569908679 -86.356441896396049,45.806693679750929,165.546664193272591 -86.353037622520205,45.799470956780972,165.523462323471904 -86.365187764364663,45.791396073923671,165.518347890116274 -86.371297916048093,45.790593026381522,165.524240160360932 -86.397189654583954,45.791078697719833,165.559320737607777 -86.403036958697513,45.796750441661445,165.581688337959349 -86.41735232028509,45.795131321541085,165.596191034652293 -86.426209468741746,45.791085346730888,165.59726395085454 -86.42980446679212,45.786925439295352,165.591163280420005 -86.430327405805201,45.783862533149865,165.583894019015133 -86.428564270587245,45.780388668101459,165.572567718103528 -86.42967521705161,45.776958766886821,165.565112982876599 -86.433302124618436,45.769094980394563,165.549431777559221 -86.436874635494476,45.765823952940565,165.545608155429363 -86.436910667488732,45.765790961678583,165.545569591224194 -86.441042166663991,45.762008118846708,165.541147960349917 -86.441710085186202,45.761847420230417,165.541604385711253 -86.443716536425825,45.761364675812636,165.542975598946214 -86.456915517173641,45.758189052009357,165.551999231800437 -86.461247827879617,45.759381180882642,165.560766472481191 -86.467420882803637,45.761079830282235,165.573259091004729 -86.480432189821443,45.758754749052919,165.584255992434919 -86.487410118430148,45.747947018781069,165.565323905088007 -86.497633469959055,45.750593808342252,165.585591435432434 -86.505598815768096,45.755568548918532,165.608946426771581 -86.515953058822916,45.753675485626346,165.617598910816014 -86.51966404785631,45.749026593083194,165.610391175374389 -86.524579909126118,45.737836900497015,165.587775472551584 -86.526548576796614,45.722136391843016,165.549570104107261 -86.534662558373782,45.712188620272485,165.534364586696029 -86.538640608247562,45.709700653847435,165.533118544146419 -86.542812718687429,45.709449611601165,165.537940938025713 -86.572010739540204,45.717750985438649,165.597833570092916 -86.582319916734392,45.713259008110619,165.599702169187367 -86.587230881240529,45.706261178544679,165.587973951362073 -86.586154286139561,45.68334694499881,165.52701451536268 -86.588910980028842,45.667796423391529,165.490209290757775 -86.594996129412152,45.66696537708421,165.496047836728394 -86.612689724386527,45.671073027585109,165.529991671442986 -86.621813914043614,45.66843800382297,165.535142132081091 -86.62651596442582,45.665159054841901,165.53280383720994 -86.629321931190148,45.660633169923734,165.524729743599892 -86.618354672793686,45.62192257904654,165.409605260007083 -86.618275331887403,45.608138035044412,165.373620708473027 -86.625252685203904,45.614603737124931,165.399638429284096 -86.634607068488663,45.619590459276644,165.424934063106775 -86.649822436992153,45.617333349548623,165.439100401476026 -86.667511069925439,45.623029947237995,165.477225058712065 -86.688592966492124,45.635593277137772,165.537678333930671 -86.690157150880523,45.641309069616668,165.554599401541054 -86.696660534300619,45.649514720141468,165.584497854113579 -86.709423915162631,45.650541531466281,165.603987575508654 -86.719214654369438,45.669444789603631,165.665998843498528 -86.719577892045194,45.678658481701497,165.690403611399233 -86.717167988671648,45.685287292692699,165.704438852146268 -86.706570865111317,45.692239192520226,165.70852710865438 -86.690488341670331,45.689200487715652,165.679459488019347 -86.677570080255506,45.693200512838736,165.672839285805821 -86.667063043002372,45.703555299725537,165.685896963812411 -86.666897206749695,45.710368077752136,165.703364380635321 -86.670649356676634,45.712197972073305,165.713050393387675 -86.672866657676508,45.72186762739517,165.741061965934932 -86.664148623021049,45.730301456173521,165.751478970982134 -86.648705282299332,45.733955523597935,165.740655364468694 -86.634524258340917,45.748991202219763,165.761027199216187 -86.636288700926372,45.764872660010191,165.804534039460123 -86.632405050496715,45.783355101559899,165.847349189221859 -86.618722705660204,45.784874217891854,165.833325581625104 -86.613523456633104,45.780692417936351,165.815660815685987 -86.599046953463954,45.776721723624078,165.786367245018482 -86.584776625133713,45.779578803135159,165.775053881108761 -86.578254696854472,45.789838546342502,165.793104009702802 -86.582456896202899,45.793138387379038,165.807169917039573 -86.583144989690396,45.796133281029853,165.815836174413562 -86.578244018059664,45.80280912207899,165.826714782044291 -86.572557957586469,45.806788060917654,165.82957393489778 -86.564777715438439,45.805805187425534,165.816828761249781 -86.558600634323142,45.80950814125643,165.818332080729306 -86.55693271971748,45.814834987345264,165.829953160136938 -86.560430036541419,45.823658656569293,165.857400813139975 -86.556572161121309,45.833031397201964,165.87663057167083 -86.551109115909014,45.837374321661088,165.880726419389248 -86.546988011777998,45.83783035676278,165.876511407084763 -86.540216911140178,45.841418321763904,165.876940857619047 -86.530593963281603,45.854378015602158,165.897913497872651 -86.52961003335021,45.85830889932646,165.906806008890271 -86.530959518587338,45.876308296190572,165.955172855407 -86.534375805694168,45.883999004173994,165.979546406306326 -86.542851231749978,45.891567654796361,166.010216592811048 -86.554995727756307,45.897809304108456,166.042249285615981 -86.569107223705601,45.901833001715296,166.071118047460914 -86.584692617870559,45.900116868220294,166.087076848372817 -86.594572554009417,45.886443193521714,166.064651282504201 -86.604681625885533,45.877959347164932,166.055948136374354 -86.614924896749429,45.877315243670502,166.067701950669289 -86.627125046903998,45.869628346026509,166.063807927072048 -86.634557050073639,45.861401524059964,166.05226981267333 -86.633866613636556,45.844643079490275,166.008001915179193 -86.647386757545618,45.835222222900562,166.001355005428195 -86.722504145154474,45.846763932052419,166.129840156063437 -86.729911435116563,45.850091733146606,166.14817682094872 -86.743858223022485,45.866051042104978,166.207752869464457 -86.751030500274808,45.869127854273579,166.225127313286066 -86.759841733452987,45.868605763930127,166.235357793048024 -86.783473216792217,45.861526706992827,166.248136861249804 -86.785570136656489,45.855972862838591,166.236545796506107 -86.783651467003651,45.831282693296188,166.170208971016109 -86.778617257498553,45.828515845141396,166.156431509181857 -86.776004047796391,45.823029056477083,166.138805211521685 -86.774670753704697,45.812718410147824,166.110383464023471 -86.787113680880537,45.795850810978486,166.083124512806535 -86.802867759625144,45.781361093998562,166.066378253512084 -86.822915077804851,45.771690166963602,166.067768428474665 -86.82513501852786,45.766820299707177,166.058090347796679 -86.822259821295503,45.762110489308725,166.042107737623155 -86.823205757851397,45.758498596349199,166.034004137851298 -86.840049845918386,45.743165894721187,166.016520082950592 -86.843209616438926,45.730386276251764,165.987591150216758 -86.840137363488964,45.72364253541577,165.966066385619342 -86.87178394073662,45.711422551961768,165.976192450150847 -86.878296166652149,45.713226413245685,165.989468470215797 -86.896734668811973,45.712799202583739,166.012725187465549 -86.905481864374224,45.710881159086235,166.019318548962474 -86.922453046065513,45.699203336726136,166.011509765870869 -86.945551637258362,45.697168122068362,166.036795441061258 -86.965668622991998,45.67409663732959,166.003659418784082 -86.968278751039819,45.676336531597606,166.012919360771775 -86.96870900934266,45.686258199139857,166.039190766401589 -86.971159250562494,45.693229939407452,166.060491031967103 -86.982743685703824,45.697797647463929,166.087657427415252 -86.985983008102394,45.707146299882709,166.116147921420634 -86.983808297564181,45.721206863408391,166.149657361209393 -86.979050386844406,45.730101628768004,166.166373974643648 -86.976619926277706,45.754462857318359,166.226165512576699 -86.98273742127526,45.767492354452429,166.267939728684723 -86.983021079836305,45.793552495505004,166.335649707354605 -86.989835729337528,45.811951808789431,166.392170640639961 -87.006478720359922,45.833047913920275,166.468611967749894 -87.007493855428962,45.833574305266936,166.471311644650996 -87.00762362046747,45.833641594040031,166.471656745299697 -87.020301284473504,45.84021550997263,166.505370708182454 -87.032834591752362,45.838567410436653,166.517689120955765 -87.041241750501641,45.835574405473238,166.521087257191539 -87.051504113043094,45.825173500022281,166.507835881784558 -87.053442779737367,45.823208661156059,166.505332675762475 -87.058838694281874,45.813812903073512,166.488234799355268 -87.059262771697163,45.810500421013565,166.480249792337418 -87.059281892873315,45.810351064906449,166.479889743961394 -87.059606773527875,45.807813411956765,166.473772082477808 -87.059676381137038,45.807269704754113,166.472461295314133 -87.059888138975353,45.80561565770671,166.468473543412983 -87.060243458522336,45.802840245763463,166.461781941354275 -87.060080968819506,45.797777637857493,166.448501550592482 -87.060027207925799,45.796102637178059,166.444107273593545 -87.059812133357326,45.789401667658197,166.426525803282857 -87.059525879186211,45.780482988440276,166.403121175244451 -87.060000294185642,45.779457415754962,166.40110136475414 -87.065373725522775,45.767841332168061,166.378221509046853 -87.065700542648017,45.760159580666127,166.358813197351992 -87.063804351842052,45.754627785761329,166.342010292224586 -87.056948117566947,45.752866927574267,166.328376838006079 -87.054305955554781,45.749315076718368,166.315698496066034 -87.058841802910152,45.738154388405803,166.292864982038736 -87.063118821769905,45.734153467758453,166.288192024454474 -87.071839713494867,45.72011182342662,166.263453159481287 -87.061350501209603,45.710226444041361,166.223981079645455 -87.060930154674821,45.709830295610324,166.222399093210697 -87.062736390395003,45.70945528999696,166.223824240267277 -87.075328983120599,45.70684085106214,166.233762996271253 -87.076210215753676,45.706657892002575,166.234458712860942 -87.076270385302891,45.706645399768711,166.23450621496886 -87.094763227661943,45.702805967418563,166.249111957848072 -87.09685296479114,45.702372102020064,166.250763164833188 -87.100799013719367,45.699947133697151,166.249729054048657 -87.100808588884917,45.699847135896931,166.249483152292669 -87.101122938400337,45.69656424130109,166.241410030983388 -87.101662865827393,45.696141574089346,166.241033541038632 -87.113036036130353,45.687238403194307,166.233104783110321 -87.113921799453379,45.687029346927126,166.233740232884884 -87.129968791862481,45.683241964598658,166.245256973430514 -87.130810423909281,45.683043324113072,166.245861247181892 -87.14811211592054,45.67499558892554,166.248035419732332 -87.151729211889105,45.673313127437005,166.248491263948381 -87.162992098741285,45.668074291215433,166.249913570471108 -87.173640113062675,45.663121457733673,166.251262268051505 -87.174891842074757,45.661823882453028,166.249570637010038 -87.192895305363265,45.643161018282804,166.225241335108876 -87.198251158418259,45.637609000072878,166.218004053458571 -87.212619278844755,45.617802844402703,166.185875211842358 -87.217015365329303,45.611742930640204,166.176043821498752 -87.220387541706103,45.607094455715689,166.168501915410161 -87.22504598008851,45.600672895477558,166.158082718029618 -87.233870939819738,45.592205484856045,166.147919459268451 -87.236011021380179,45.590152110139542,166.145454990677536 -87.251521214247674,45.570394134744703,166.114963047206402 -87.262107482526744,45.556908601541558,166.094148850999773 -87.263378216561861,45.555289851166002,166.091650268062949 -87.264886904758328,45.553367978053316,166.088683773763478 -87.26516215514016,45.552818025411817,166.087625990621746 -87.265845010614711,45.551453674277212,166.08500175178051 -87.282107444070604,45.518961193525548,166.022486070170999 -87.290124350516521,45.502943347284486,165.991654551587999 -87.290841675580296,45.501867417674411,165.989822349511087 -87.307520183760317,45.476851004420936,165.947215010412037 -87.318813868162053,45.468049792531453,165.93948408216238 -87.32110129567937,45.466267191440544,165.937918636016548 -87.331659853819104,45.452349856748015,165.915923931635916 -87.334545227403495,45.448546618788122,165.909912916831672 -87.334804710792724,45.44739442489783,165.907268570736051 -87.335431487738674,45.444611323594295,165.900880923494697 -87.335647136826779,45.443653768829549,165.898683092556894 -87.334707268351409,45.438607970534683,165.884319505654275 -87.334637975290974,45.43823596230002,165.883260455913842 -87.3325047222542,45.435012376056868,165.872029558755457 -87.331355762633351,45.433276168313363,165.865980289876461 -87.330038130805349,45.432670130382554,165.862640785984695 -87.328764876602136,45.432084503709746,165.859413741156459 -87.328252926141758,45.431849034748403,165.858116207644343 -87.327231602465261,45.431379282215531,165.855527660809457 -87.32746683980379,45.430797880695479,165.854332329705358 -87.329146538300222,45.426646417087163,165.845796740613878 -87.329645569797378,45.426055704230961,165.844930531457067 -87.330902261446695,45.424568134976766,165.842749182134867 -87.332279865161823,45.422937439868782,165.840357940644026 -87.337549523804313,45.416699647092138,165.831210739910603 -87.339480066050797,45.415699335573798,165.8311986932531 -87.352249739726076,45.409082722200658,165.831122180446982 -87.352703377914096,45.40866817222323,165.83065308816731 -87.360909782371749,45.401168881262883,165.822167659178376 -87.361476070591351,45.39985146596694,165.819503053091466 -87.361926391188717,45.398803838239694,165.817384068854153 -87.365765637203893,45.3898722003591,165.799316750839353 -87.372679738636947,45.385078758830765,165.796131836250424 -87.389248492329941,45.373591893594586,165.788505084812641 -87.390578482380036,45.372669831702531,165.787893213331699 -87.390876390480486,45.372463296543501,165.7877561673522 -87.391246451009792,45.372206739201893,165.787585928104818 -87.392844086545693,45.371099122763283,165.786851023323834 -87.393897928536745,45.37036851012612,165.786366296932101 -87.39591752410449,45.365042872120327,165.775229377672076 -87.401370648258165,45.35066308016156,165.745152425952256 -87.411384499642395,45.340261691193234,165.731547896750271 -87.428777070804401,45.322196025299817,165.707920237444341 -87.433081706930693,45.317724799290268,165.702072698622942 -87.437525287548937,45.309047397423903,165.685463122092187 -87.438654592047968,45.306842097318651,165.681241516023874 -87.4389043873595,45.305011910269606,165.676812906749547 -87.440305340134813,45.294747484354318,165.651971901766956 -87.4569160079119,45.282078653288529,165.641339497640729 -87.45781136403798,45.281395771927556,165.640766576863825 -87.466191205496628,45.275004530108674,165.635405467823148 -87.466598567189124,45.274693838422252,165.635144896805286 -87.498266156483737,45.241707522710641,165.591881729662418 -87.504699970997095,45.235005786510783,165.583092719316483 -87.505583353072652,45.23408561798815,165.581885980442166 -87.513733651228165,45.225595919182432,165.570752487517893 -87.531896990200138,45.209400176619056,165.55304507818073 -87.536743727933839,45.205078475880896,165.548320944420993 -87.550361850940945,45.192935575895611,165.535049427300692 -87.553866118243761,45.191112083284395,165.535028523765504 -87.557725404254427,45.189103851916308,165.535005981102586 -87.564815060986447,45.185414653711319,165.534965857863426 -87.583721957187677,45.170384091972963,165.5213228976354 -87.587049234480546,45.16773898059715,165.518922825343907 -87.589220354989536,45.164936148293116,165.514547418802977 -87.597954035517418,45.153661305901878,165.496945638209581 -87.602194168885987,45.148187458484621,165.488399527966976 -87.609210077754682,45.136178525648305,165.466553146019578 -87.609355936928935,45.135928862628099,165.466098919510841 -87.610678044979636,45.133665847705622,165.461981616914272 -87.613416901088115,45.124723118003587,165.442343106493354 -87.613212271364702,45.123752089952013,165.439530507661402 -87.612898023608324,45.122260892175873,165.4352110857144 -87.612895044660291,45.12224675619354,165.435170139186084 -87.612614215172229,45.120914137891752,165.431309920735657 -87.61147062263521,45.115487455731738,165.41558899730444 -87.610348098506634,45.114232311434975,165.410790298134089 -87.608154846853353,45.111779938929871,165.401413933373988 -87.606590262455114,45.110030507321234,165.394724861718714 -87.605860961020028,45.109215042852846,165.391606790013611 -87.603938971936685,45.107065981116662,165.383389189839363 -87.603614304495551,45.106702955966348,165.382001009769738 -87.603576538487218,45.106660728107542,165.381839535199106 -87.603378439006136,45.106439224240077,165.38099251780659 -87.603046372898476,45.106067926310445,165.379572682082653 -87.602483456117255,45.105438503943503,165.377165761776268 -87.601517080236974,45.10435795595707,165.373033649288118 -87.600086353207786,45.103398661887319,165.36858924292028 -87.599061973285387,45.102711821165471,165.365407070145011 -87.593715003876682,45.099126709573788,165.348796441219747 -87.591666651152337,45.097753301097164,165.342432864010334 -87.590792419888658,45.097837550304376,165.341468914411962 -87.583365209062066,45.098553306699742,165.333280422724783 -87.591604621628392,45.096611340705195,165.339364468120039 -87.66135081749789,45.108858070485262,165.465881204232574 -87.732791313708219,45.172332037877382,165.72831423766911 -87.736684556406644,45.177907800891319,165.748119275085628 -87.743135263255567,45.199542988034786,165.813203033059835 -87.740895298813811,45.20346788254642,165.820382120087743 -87.733113201839814,45.208133820075076,165.821976195089519 -87.713125560524787,45.244821823933137,165.890350195579231 -87.709182819218114,45.259683370020504,165.923657990060747 -87.710540905444773,45.261681285817694,165.930690823122859 -87.649530192693874,45.340734370131273,166.053583430126309 -87.649133461859208,45.352058994009639,166.082443901337683 -87.658754170790928,45.370089269473809,166.14221378043294 -87.676422992806735,45.383790591679414,166.201596217229962 -87.68734044610342,45.390047247124919,166.232554053887725 -87.695362694499636,45.391229108642563,166.246448436751962 -87.720298066900185,45.378798219123361,166.247909410856664 -87.752859317790296,45.353091682501436,166.225287198089063 -87.772791847648023,45.352546455207019,166.250840568915009 -87.791732419220338,45.354780146509128,166.282264746725559 -87.834021541502679,45.353584665074408,166.336434327997267 -87.836712583278825,45.352315674593676,166.336792348884046 -87.839550514637651,45.346436837560958,166.325405209325254 -87.851542725285739,45.341770846745568,166.32956744171679 -87.886580959361723,45.353071033410735,166.406345612369478 -87.889463111355738,45.35603189807977,166.417921490967274 -87.861844071910582,45.424836926032825,166.558531947433949 -87.821759896231342,45.461616188234352,166.599376264959574 -87.814387791761732,45.4654911495604,166.599424851126969 -87.807758813093741,45.473593960170462,166.611403750255704 -87.8003719331859,45.486478620261579,166.634711095131934 -87.794181134421464,45.501298201162093,166.664625349454582 -87.790211678003544,45.567276047923706,166.82950672134757 -87.793431042232015,45.618083316763389,166.964750157669187 -87.797295200583449,45.620173199411845,166.97533746343106 -87.82551868563975,45.648463909564484,167.086168385110795 -87.825088993578092,45.661142493984748,167.118194953538477 -87.783039181189892,45.674605568775824,167.096196266822517 -87.782224337174327,45.681674344526357,167.113275258801877 -87.8085617578176,45.709338101392781,167.219804205931723 -87.830245302209207,45.724083431208626,167.286847167648375 -87.869531478957725,45.750798972405683,167.408271989785135 -87.99287202493953,45.796711919810384,167.692043119110167 -88.041155199147269,45.790944507817187,167.7424192186445 -88.052060276702832,45.782290657601266,167.735003503970802 -88.059682475398461,45.782038008009849,167.74464880861342 -88.073517845192512,45.781579413195431,167.762160471640527 -88.095474582984366,45.786975960570182,167.805621796287596 -88.131863199742355,45.811336700955053,167.917048020288348 -88.137539585316532,45.820345332558503,167.947726899757981 -88.135069622723478,45.82444422819357,167.954855716787279 -88.115696471069128,45.839206983636522,167.966378074139357 -88.108051343454591,45.842387974406755,167.964176148176193 -88.090254235332907,45.857175709760568,167.977903575636446 -88.074563218194228,45.873267376238765,167.997805510647595 -88.075373333706267,45.876908246300189,168.008188107050955 -88.104033998726095,45.911201760054489,168.134284630417824 -88.119947233122062,45.919875747941248,168.17784534022212 -88.140804521065007,45.931244641075793,168.234932365827262 -88.176965896456508,45.946208696382683,168.321808749809861 -88.203681748410119,45.950895207281782,168.36978895496577 -88.212592861828867,45.945842261230986,168.368966398760676 -88.241107756541382,45.950292757010914,168.418797527439892 -88.245887968842311,45.953452593241636,168.433289716020226 -88.25156940849412,45.96445716077401,168.46893950458616 -88.296996348068319,45.952768973172013,168.500631052069366 -88.377887541323446,45.990765708011878,168.706544123589993 -88.424878628441547,45.983237362389495,168.751079617068172 -88.491051678274886,45.992687217019615,168.864737682975829 -88.498860989089465,45.996454994752014,168.884876694530249 -88.501577201189164,46.00176278633198,168.902007731609046 -88.508632857970838,46.01960511222039,168.956763569265604 -88.533859621400168,46.02251669780226,168.99835095461458 -88.614510020088943,45.991931680451472,169.030465251766145 -88.617852034717544,45.989004734252902,169.027600405737758 -88.63894753693836,45.986264557103752,169.049353282898664 -88.667504397376788,45.989495089167022,169.09638081677258 -88.672387837072492,46.001260640860245,169.132787004113197 -88.671563814676247,46.001260651306183,169.13166578207165 -88.676055213758517,46.011870246095931,169.164605191908777 -88.680581414391256,46.014841091207558,169.178274115547538 -88.684647983388246,46.015866390861241,169.18639906309545 -88.732126154852793,46.027837010740598,169.281270906329155 -88.741445428227408,46.028609867048417,169.295912928879261 -88.771164016902887,46.020269763238431,169.315334864892066 -88.817082350692814,46.023621069577317,169.386396825313568 -88.842038258031906,46.032412463556085,169.442623157054186 -88.849918674945869,46.040158109095415,169.472913080826402 -88.851724761084498,46.041574039652147,169.478948285803199 -88.934016004211003,46.07489890762249,169.675248680636287 + + + Missouri + + + Missouri + 0400000US29 + 29 + 68741.521999999997206 + + -89.546276448189033,36.338491747955189,142.687609896995127 -89.561709820110806,36.339428539442991,142.715415237471461 -89.582907384828758,36.344039095349544,142.764444818720222 -89.606939937936716,36.343915845453239,142.802613613195717 -89.611961024746066,36.342123876994684,142.804837223142385 -89.617113072860846,36.337767028806887,142.798916715197265 -89.621072057956837,36.331228296866193,142.78397146705538 -89.621526962170208,36.324688602330042,142.763392647728324 -89.61309054138016,36.310771352632891,142.704479712992907 -89.579762435054946,36.290001693096805,142.583219135180116 -89.555558704977486,36.279436451966994,142.50988388992846 -89.546066529575754,36.282143424175871,142.503485777415335 -89.540756356884046,36.279053627294559,142.484878095798194 -89.536798154951711,36.27222699356966,142.45623779669404 -89.536013846253283,36.254262855478906,142.396305807866156 -89.542889929297615,36.249578005221828,142.392037346027792 -89.590830893883307,36.240802913749583,142.440367271192372 -89.603644173107384,36.239792825767758,142.457659809850156 -89.679318082255662,36.249969537609033,142.612601034343243 -89.692580449280683,36.253764216042207,142.646332612261176 -89.701089585352165,36.250069301296108,142.647970778867602 -89.630721945319735,36.187071048165592,142.328858437016606 -89.619497599312766,36.181655425254853,142.29308012034744 -89.608273198956667,36.172868962965701,142.246268182061613 -89.59566565507123,36.157147845941367,142.174517504870892 -89.592873407789611,36.14578741721202,142.132817630656064 -89.595268190918432,36.128882198256633,142.081281394697726 -89.603204249541292,36.121162482615695,142.068753355182707 -89.625503588579548,36.110318764146619,142.069112913683057 -89.685708058923808,36.053413846346345,141.97950043156743 -89.688522840064394,36.035743662079852,141.926029594615102 -89.691574762435508,36.026531070787208,141.900698932819068 -89.708200761932304,36.002678037322895,141.8491738922894 -89.734364356394238,36.002304778400699,141.890217774547637 -89.738833457552317,36.002218735228595,141.897157442755997 -89.738917460200724,36.002263732183295,141.897441059350967 -89.771243201134268,36.00223239147644,141.949596386402845 -89.771525207408217,36.002220389065435,141.9500129846856 -89.87028245580926,36.00133538479345,142.106949520297348 -89.875862582495643,36.001270328716132,142.115776154212654 -89.876357593874189,36.001273323320888,142.116587989032269 -89.876858605084735,36.001257318773057,142.117347170598805 -89.897781081800616,36.001127103004407,142.15082442946732 -89.902456187688898,36.001060056600096,142.158182071521878 -89.960649854883343,36.000714465013658,142.251425648108125 -89.960651512920364,36.000714455167113,142.25142830517143 -89.961167524714355,36.000714449684665,142.252265591174364 -89.962349553580765,36.000829431608487,142.254560953006148 -89.966601645579644,36.000507401877385,142.260404310189188 -89.973837813855866,36.000688316298763,142.272741679102182 -90.127628300965426,35.99928874683097,142.518103028647602 -90.12860932395283,35.999327734504263,142.519827489741147 -90.160091037043316,35.999067411421954,142.570226659066975 -90.290081979222578,35.9981100697877,142.779022279195487 -90.290229032353508,35.998109163590897,142.77925934176892 -90.293658060137972,35.998088032627997,142.784787363372743 -90.340717123259935,35.99772354698834,142.860443270765245 -90.343899193278688,35.997585519586657,142.86519015301019 -90.370001784483946,35.997502244304457,142.907574356533587 -90.365713975918339,36.015314433886005,142.958858939819038 -90.320452187522164,36.091662253646419,143.134525992907584 -90.221708482679077,36.18644677474721,143.2829156126827 -90.200018171240814,36.203064048684254,143.301796778105199 -90.116204392948177,36.267275048439792,143.374785702675581 -90.085012789411039,36.274012061813323,143.346141239628196 -90.077582756260213,36.282387742491942,143.36135193053633 -90.065261839371075,36.304716811496966,143.414015493355691 -90.065797147661584,36.383760048103532,143.671597597189248 -90.074180519349753,36.394681439493866,143.720584379509091 -90.135278659115869,36.439577651889905,143.964930471032858 -90.157655995231281,36.48941704854856,144.162382171489298 -90.155696100592678,36.498500639513217,144.188570964150131 -90.153768074924997,36.499620607282758,144.189071056433022 -90.195231023042908,36.499491165932668,144.255759980529547 -90.218611558152588,36.499464914701605,144.293538104742765 -90.221990636544604,36.499525875316507,144.299208482727408 -90.22202062332714,36.499525558445207,144.299256032332778 -90.230231823808637,36.4994387904188,144.312277680262923 -90.341183369101429,36.499879569742667,144.49362931214273 -90.495869901985415,36.500032885801168,144.745565719902515 -90.496321912337464,36.500035880752982,144.746311121620238 -90.501455029790947,36.500063823709809,144.754756885580719 -90.577408760397162,36.500109996486877,144.878630937077105 -90.577476317949987,36.500110369012994,144.878742258995771 -90.586638971307707,36.500160893734979,144.893841804936528 -90.595597174511624,36.5001227981478,144.908324791118503 -90.606747428183496,36.500122676904688,144.926507351920009 -90.613851591448253,36.500222594898403,144.93841605540365 -90.649792406809254,36.500110209199256,144.996694883331656 -90.65454451550994,36.500151155534276,145.004583071917295 -90.694304419276762,36.500172721602063,145.069573044776917 -90.712525829874338,36.499980532232776,145.098721444606781 -90.766973068523171,36.500155930401306,145.188289949670434 -90.783755449656184,36.50018474598243,145.215833533555269 -90.785699731822177,36.500185439742872,145.219016536138952 -90.851736990848906,36.500209002788786,145.327190647833049 -90.875078511508079,36.499734770347118,145.363903364166617 -90.877870578729457,36.499973728481585,145.369247009977698 -90.878170587365503,36.500083719975272,145.370092395693064 -90.880523639884615,36.500038696403607,145.373803427442908 -90.961953482915021,36.500085803733477,145.507487617433071 -90.964368537377425,36.500077777687487,145.511425018310547 -91.009864562977498,36.499929286686104,145.585639636032283 -91.019280772160187,36.499721193453048,145.60043709538877 -91.097188527219345,36.499528348699066,145.72787844017148 -91.097585536560132,36.499551343250296,145.728605320677161 -91.127838215623697,36.499370019976929,145.777797682210803 -91.218671258058421,36.499168032026738,145.926752869971097 -91.219956287870843,36.49922101537971,145.929041053168476 -91.22870948573302,36.499273916644768,145.943640155717731 -91.406230465377547,36.498774985991815,146.235144898295403 -91.406456471207818,36.498819981354885,146.235662853345275 -91.408452515080825,36.49876696187313,146.238793654367328 -91.408576518048093,36.498777959981503,146.239033967256546 -91.434614104251338,36.498916666197815,146.282545801252127 -91.437818178024926,36.499031625369888,146.288215197622776 -91.447600398850611,36.499123513060304,146.304695639759302 -91.451321454698132,36.499192682601176,146.311074971221387 -91.531092295085102,36.500675517119717,146.447924081236124 -91.538188456158807,36.500809432313524,146.460112592205405 -91.540677511177535,36.500769406714483,146.464109574444592 -91.550481731302412,36.500814296208283,146.480503732338548 -91.597532783513486,36.500814775884884,146.558529591187835 -91.60263690067417,36.500995710783656,146.567576608620584 -91.632759571312405,36.500850384368597,146.617100525647402 -91.643910822724166,36.500987254388548,146.636050680652261 -91.673664489261938,36.501114918798159,146.685870106332004 -91.687347793161621,36.501025771467191,146.708316643722355 -91.688936829014963,36.50104875276412,146.711030332371593 -91.727985696950711,36.500860328965437,146.775329284369946 -91.767434574764778,36.500764896006416,146.840634129941463 -91.786036988567844,36.500724691511977,146.871459641493857 -91.800824315870059,36.500602533219386,146.895681873895228 -91.80336437262676,36.500613504498553,146.899945362471044 -91.807305460802013,36.500637459602466,146.906582999043167 -91.865710757356041,36.500438820372239,147.003231402486563 -91.867320793068785,36.500432802767811,147.005895300768316 -91.987130449267113,36.500079486887003,147.204633241519332 -91.990079515867308,36.500146450845619,147.209771735593677 -92.020704195831556,36.500172108502774,147.261008621193469 -92.030176407947167,36.500289997321701,147.277212426066399 -92.057119005829222,36.500317695701547,147.322333966381848 -92.058508036620523,36.500317680216853,147.324656156823039 -92.076264431722421,36.50040847788631,147.354636501520872 -92.099686951373158,36.500450214634398,147.393948040902615 -92.121637438534535,36.500510966798643,147.430871824733913 -92.121746416742965,36.500509978065743,147.431051060557365 -92.139072821815262,36.500352779757243,147.459551646374166 -92.151627234979784,36.500280358272065,147.480340260080993 -92.200729179692757,36.499997108133236,147.561689720489085 -92.212782446908079,36.500040971326648,147.5820307508111 -92.215476506063112,36.500017942316916,147.586473111063242 -92.21774555698741,36.500062914800736,147.590420012362301 -92.310759602091338,36.499538899392654,147.744789930060506 -92.319750797318562,36.499355807499548,147.75930301938206 -92.530485462136923,36.499381761686152,148.113854457624257 -92.77367877037571,36.499411703330416,148.524540167301893 -92.773686449119012,36.499411738803886,148.52455326821655 -92.839968224904041,36.499717940451085,148.637713091447949 -92.840223229678671,36.499671939781486,148.637998922728002 -92.855397027126685,36.499621399056856,148.663538516499102 -92.895349430292129,36.499488325812351,148.730814315378666 -92.895684437898566,36.499505321209099,148.731436085887253 -93.015092629480591,36.499766607614873,148.934860101900995 -93.069807238626581,36.499886332060676,149.028202001005411 -93.070864261481603,36.499878320465086,149.02997334394604 -93.088987655608292,36.499875115165231,149.060774138197303 -93.090340684074306,36.499820102470999,149.062900411896408 -93.297474046456159,36.50002271959589,149.416326653212309 -93.316682007006875,36.500041508359828,149.449159855023026 -93.316694599576081,36.50004152067752,149.449181384406984 -93.396077319010445,36.500151611463913,149.585083450190723 -93.397438351056195,36.500301588728675,149.587883268482983 -93.428349017637942,36.500217240504519,149.640446982346475 -93.508769759566093,36.500542307463647,149.779045292176306 -93.515873912285528,36.500512227819655,149.791111316531897 -93.585644416465243,36.500526430214094,149.910663716495037 -93.585645416322407,36.500526432264593,149.910665436647832 -93.701536914279131,36.500764093072313,150.110213148407638 -93.711322125341738,36.500807978911354,150.127153523266315 -93.720259317354817,36.50080687661697,150.142498103901744 -93.728918501219155,36.500683783382172,150.156982476823032 -93.7293885109992,36.500665778867791,150.157733009196818 -93.868127578714166,36.5004157142466,150.395515928044915 -93.907498324744438,36.500344751408647,150.46308764629066 -93.923210661041452,36.50034457091995,150.490154944360256 -93.960561460043166,36.50034314173935,150.554521852172911 -93.965291561189318,36.500343087364001,150.562676344998181 -94.078462978631819,36.500354784567065,150.757999151013792 -94.099962436275973,36.500300539544163,150.794966285116971 -94.101626471656886,36.500294520664319,150.79782229475677 -94.112047692404701,36.500211404613417,150.815567185170949 -94.112847709638558,36.500221394911556,150.81698105391115 -94.520861384847194,36.500833648861914,151.526182434521616 -94.56067423155541,36.501115173406887,151.596316833980381 -94.619304468392485,36.501032496834327,151.698116953484714 -94.6192627452523,36.516616741354539,151.746884942054749 -94.619268795301565,36.519416605503409,151.755667778663337 -94.619383091697216,36.535896805179426,151.807486300356686 -94.619254121274395,36.537706718952855,151.812929295934737 -94.619283137824439,36.538599675336123,151.815775861032307 -94.619200864079005,36.579346702558816,151.943142157047987 -94.619240247601667,36.600733667065157,152.010074837133288 -94.619252386286917,36.608464292951645,152.034254472702742 -94.619202488277779,36.614217015296191,152.052141579799354 -94.619407909232621,36.669531552673455,152.225166817195714 -94.619413512165423,36.671040266990616,152.229882120154798 -94.619519089598995,36.703031721823386,152.32979456987232 -94.619697267285602,36.768165580727164,152.532855930738151 -94.619771729607237,36.848921696164197,152.783820441924036 -94.620050329439124,36.881664120858481,152.885831972584128 -94.619635628701445,36.898626311912295,152.93767130561173 -94.619674892069213,36.913070618766163,152.982474582269788 -94.619600159009579,36.927833911961294,153.028048425912857 -94.619688222945683,36.931244747472668,153.038757126778364 -94.619559364673435,36.939181368704887,153.063092869706452 -94.619502526981918,36.948160939226497,153.090773626230657 -94.619419590683862,36.951754768077528,153.101745813153684 -94.619425403156043,36.996298636135329,153.239432076923549 -94.619443430997535,36.997802563993922,153.244108420796692 -94.619474466841083,36.99972947147414,153.250113412737846 -94.619389663773404,37.010609952204646,153.283564861863852 -94.619360239462139,37.042129446338343,153.380782498046756 -94.619270539937261,37.058388814886271,153.430767768993974 -94.619270535214724,37.058389670916654,153.43077040091157 -94.619377872382898,37.076667797258935,153.487292705103755 -94.619516074374928,37.087524277686249,153.520978790707886 -94.619478082699814,37.088022254379744,153.522447065450251 -94.619486212408518,37.095083917476735,153.544210923835635 -94.619484215613284,37.095260909059512,153.544752543792129 -94.619455270131425,37.098265766105143,153.553956000134349 -94.619547405914773,37.105557417349672,153.576566427946091 -94.619608576142809,37.114757978047159,153.604993951506913 -94.619471877940455,37.131343189357253,153.655792008154094 -94.619468925481868,37.133933066017029,153.663753917440772 -94.619748443996983,37.161797735917325,153.749915227293968 -94.619870714900998,37.176368041129692,153.794898854568601 -94.619902833528499,37.182769736212805,153.814619660377502 -94.61971696944839,37.190359377430411,153.837608626112342 -94.619703311481459,37.208921495090323,153.894571963697672 -94.619617317675178,37.209356475430972,153.89575862698257 -94.619548691842283,37.229704509403028,153.95807302929461 -94.619521713670522,37.23091745210705,153.96174690220505 -94.619556867066493,37.239180059274354,153.987147535197437 -94.619473917759407,37.242018925449727,153.995709341950715 -94.619048448510782,37.325167987170353,154.249611441977322 -94.619095695523669,37.338420359025633,154.290218606591225 -94.619036806576617,37.339993066787279,154.294925450347364 -94.619036723511357,37.339995285157443,154.294932089745998 -94.618938917063062,37.365744171270848,154.373454353772104 -94.618938203379471,37.365932058827362,154.374027103185654 -94.619027262739394,37.369021911603717,154.383619177155197 -94.619026265154218,37.369152905419057,154.384017594158649 -94.61895879965877,37.397950544573057,154.471828884445131 -94.618913069448027,37.41248385837914,154.516095902770758 -94.618667336893353,37.427110170465859,154.560283219441772 -94.618534600510301,37.441391497800225,154.603594090789557 -94.618603881482343,37.456360790567928,154.649329957552254 -94.618607985895778,37.461945527053402,154.666350454092026 -94.618624988183498,37.462048521993054,154.666693428531289 -94.618583075609166,37.46677529953525,154.681018834002316 -94.618586159064279,37.471237089071401,154.69461261946708 -94.61842641928132,37.485336426200561,154.737265977077186 -94.618193120927984,37.523079650812036,154.851692477241158 -94.618312241437053,37.52937335308323,154.871032118797302 -94.618590729086577,37.555053141327789,154.949548365548253 -94.61856480029104,37.558875961821471,154.961115815676749 -94.618485980832091,37.568580506378055,154.990452498197556 -94.618720070105269,37.573066292681347,155.004474595189095 -94.6186880768783,37.573463274398421,155.005624919198453 -94.618833787495191,37.611087504810953,155.120039815083146 -94.618705803067243,37.612060460645985,155.122770750895143 -94.618883309275603,37.638734206466083,155.203932639211416 -94.618982054229178,37.655140013268067,155.253801682032645 -94.61898262252268,37.655234431268525,155.254088615067303 -94.6191408169868,37.674667885135719,155.313199826516211 -94.619140993079313,37.674689517253114,155.313265604898334 -94.619292167926503,37.683776089621617,155.341025063768029 -94.619094247541042,37.688214884009128,155.354116910137236 -94.619058266003378,37.689232836747586,155.357135155238211 -94.619212316676951,37.691739717468408,155.3649837160483 -94.619382925468472,37.723736217265646,155.462030264548957 -94.619216064451933,37.731266866864729,155.484502834267914 -94.618271747235212,37.821011684824917,155.753713056445122 -94.617860082845738,37.839114845279902,155.8075519092381 -94.617836229348697,37.846836485510813,155.830766816623509 -94.617410560139305,37.864679658921958,155.883757649920881 -94.617244735465547,37.874063223715282,155.911712965928018 -94.617331848347575,37.879883951538844,155.929374868050218 -94.617117006114881,37.888395557726248,155.954611096531153 -94.61688028605208,37.903326865460997,155.999105330556631 -94.616804372593023,37.90794365150898,156.01285436283797 -94.616592550521133,37.917495209623176,156.041199797764421 -94.616189890865854,37.93575036542137,156.09535548556596 -94.616246939910994,37.938250248506591,156.102961017750204 -94.616166016010965,37.942319060320436,156.115041682496667 -94.61602408170512,37.945911895014376,156.12558750808239 -94.616006188800327,37.951527634224099,156.14241717942059 -94.615974217571292,37.953066563090317,156.146982431411743 -94.615969591311185,37.972585656343853,156.205552444793284 -94.615877910646063,37.989346879202195,156.255670102313161 -94.615624994632611,37.994009665814012,156.269219574518502 -94.615394843931639,38.038494605351175,156.402116598561406 -94.615395192513816,38.038602944608456,156.402441594749689 -94.615469187190996,38.061600391426296,156.471405393444002 -94.615469290605631,38.061632532433237,156.471501743420959 -94.615503403232168,38.06744526282916,156.488951501436532 -94.615475430390603,38.068887196395856,156.493217566981912 -94.615272016172881,38.151309387190857,156.739141962490976 -94.615164223921767,38.162172886832266,156.771372565999627 -94.614838357627349,38.16944755492559,156.792517672292888 -94.614489788485045,38.19209051430353,156.859437483362854 -94.61426498052451,38.202252048367967,156.88933814689517 -94.614239042063815,38.205455900950746,156.898840215057135 -94.614075304771532,38.219186269985265,156.939462341368198 -94.614076335868333,38.220788196145008,156.944234919734299 -94.614052485445768,38.228523839973278,156.96722926478833 -94.61403169422519,38.239302343693154,156.999280893243849 -94.614110329942562,38.271928840765753,157.096479098312557 -94.614267713144372,38.29144794102524,157.154771241359413 -94.614262742412862,38.292956871700582,157.159246988594532 -94.614091954951178,38.304060363298703,157.191947490908206 -94.614092194713749,38.316364797824832,157.228494295850396 -94.614207300711485,38.321674552480779,157.244456710293889 -94.614244384281506,38.325919357038046,157.257122453302145 -94.614419610706122,38.337332830744181,157.291298603639007 -94.614732175997446,38.365937514091833,157.376685531809926 -94.614749278197536,38.371148274853866,157.392164518125355 -94.614696054256143,38.390247767558435,157.448683747090399 -94.614685722831524,38.393955229873598,157.459651139564812 -94.614785940208591,38.404950724759345,157.492392973974347 -94.614288383704334,38.479096337440531,157.710910462774336 -94.614287429579932,38.479127690140928,157.71100149769336 -94.61411848973728,38.484679084326103,157.727119490504265 -94.614148514229598,38.485892028525903,157.730754316784441 -94.614066655514691,38.493168696997195,157.752113343216479 -94.613695755497261,38.549439132704244,157.917570298537612 -94.613580790468404,38.551339047449744,157.922978395596147 -94.613600318327073,38.578066828748504,158.001798364333808 -94.613326382761514,38.581630669692593,158.011835058219731 -94.613311383008664,38.581659668553847,158.011895093135536 -94.613332959249888,38.610791341575315,158.097724173218012 -94.613283180000678,38.622003831870671,158.130640781484544 -94.613027469391241,38.636902157206023,158.174040146172047 -94.610936405468408,38.739615355651075,158.472169255837798 -94.610883513862476,38.742213401606314,158.479698359966278 -94.610826547262931,38.74395332343542,158.484703904017806 -94.610467323878453,38.762123082802937,158.537358672358096 -94.609469886277651,38.812574233124323,158.683413413353264 -94.609462608782422,38.848715599640364,158.789099968038499 -94.609462764914227,38.856515247348277,158.811896119266748 -94.6094628890623,38.862714967384612,158.830012359656394 -94.60942300965246,38.868778694106197,158.847660519182682 -94.609463027272213,38.869614655878173,158.850170056335628 -94.609463049310065,38.870714606224169,158.853383215144277 -94.609463341927011,38.88531394734742,158.896020687185228 -94.609409406024994,38.938374555990308,159.050735909491777 -94.609297414195922,38.93890253358272,159.052086381241679 -94.609565472475254,38.941510412838085,159.060140169225633 -94.609565512688945,38.943510322769569,159.065969713963568 -94.608824842339487,39.045585725395831,159.361799718812108 -94.608667988007227,39.067202774573488,159.42433396819979 -94.608768314034805,39.083202055909702,159.470955007709563 -94.608668471840815,39.091101703045396,159.493714833632112 -94.608788957659456,39.114940633565304,159.563074072822928 -94.591368123544243,39.141898641370332,159.611956804990768 -94.593368463846033,39.156497963730502,159.657616384327412 -94.597468608457092,39.159197792497544,159.672322002239525 -94.603168771835229,39.16109763732323,159.687397088855505 -94.708161356522339,39.175293707735939,159.904932850040495 -94.715575449248263,39.171895768185038,159.907574168406427 -94.725075628200187,39.170495713529078,159.919505427591503 -94.737975913935301,39.170695545310565,159.941787644289434 -94.753777340372267,39.174695171239833,159.979943737387657 -94.795389296908581,39.202766868640836,160.131099215708673 -94.833841190309442,39.228706766568834,160.270704892463982 -94.902454213797554,39.303164592956243,160.600720616057515 -94.909014746547626,39.322106667246452,160.666239576414227 -94.912087384388514,39.349817394923456,160.751043883152306 -94.909783484889246,39.357129098105524,160.768167994916439 -94.911400794701649,39.368941048143625,160.804805767722428 -94.948110230865552,39.401196661338389,160.959107014350593 -94.970510288169478,39.420354962891722,161.051705026067793 -95.104342411848322,39.534818782437014,161.604122271761298 -95.110758738158154,39.54375630631818,161.640407644212246 -95.115012074228574,39.555411737042867,161.680790486745536 -95.114532172249753,39.560603513252978,161.694778360426426 -95.108909357204041,39.575312932824779,161.72722517605871 -95.071047009021584,39.616574204136093,161.781044472008944 -95.016765449263715,39.675728654059995,161.858145493082702 -95.012558154518629,39.679039028182466,161.860496350564063 -94.939378492604291,39.726936711511243,161.873928773216903 -94.918386427473081,39.729651513733586,161.846497000195086 -94.896722688660844,39.764674246757266,161.909673638641834 -94.909722819988119,39.813633911237744,162.070224188268185 -94.929354999848428,39.887570452945795,162.31224578153342 -94.937421351720715,39.895812991172207,162.349010701291263 -94.95561389516395,39.90259546588122,162.398558271117508 -94.994807545035883,39.902203675496892,162.462942887097597 -95.009900075388629,39.902052806381313,162.487746343947947 -95.017780209428395,39.900222787179722,162.495755189098418 -95.026700212692404,39.891157071360745,162.48507587891072 -95.026709958132599,39.879145596771238,162.451169431209564 -95.029390886186064,39.872979832879473,162.438236596994102 -95.036506942229963,39.868264949709257,162.43682227563113 -95.043602055293405,39.866262948054278,162.443039159290493 -95.086463932194548,39.863340536346556,162.506539949215949 -95.109206383018588,39.870035849180027,162.563539215363562 -95.134157273977721,39.877381320409768,162.626075494103134 -95.182685846973854,39.901450654432537,162.775293730199337 -95.303017260416169,39.985052477530964,163.212306387722492 -95.309248546668556,39.992067092249442,163.24245869088918 -95.309758758722595,40.001446676273311,163.269651019014418 -95.313680045737598,40.010843216447171,163.302602785639465 -95.523403809576749,40.250905107499598,164.32490708399564 -95.553952746821139,40.263338178269436,164.410684856586158 -95.553793679743606,40.265876687559491,164.417473714798689 -95.552446238076698,40.287380156380209,164.474960731342435 -95.554772402517131,40.29259090107621,164.49333075992763 -95.624167034662008,40.343752799421715,164.751563796773553 -95.688767140883755,40.46648267543123,165.199168686755002 -95.694152654734836,40.48444483302233,165.257734824903309 -95.682896581243483,40.492242642442946,165.260391506366432 -95.660768738451793,40.521229681199742,165.303261417895555 -95.698162115659528,40.546557111703599,165.435564833693206 -95.698769948436436,40.538405453912901,165.4141426961869 -95.711462933684302,40.525218856832879,165.399076834321022 -95.750169788712014,40.52569533744542,165.465197367593646 -95.758600010520752,40.527410155041707,165.484037363901734 -95.768410347858349,40.532982789024913,165.515806393697858 -95.770771512182264,40.538075539729903,165.533774171955884 -95.776195449359349,40.574991884555516,165.644364885054529 -95.775040526999121,40.579622700764375,165.655156378634274 -95.767136510092087,40.586625502409774,165.661166322417557 -95.747934084940582,40.586352762019168,165.628282182849944 -95.688989785160672,40.585799546295739,165.528175676241517 -95.688931783870814,40.585798547086632,165.528075963258743 -95.64332878347733,40.585653141276588,165.451461980119348 -95.612557093714145,40.584914569441978,165.398031462915242 -95.57553327116787,40.584383069046957,165.334757257252932 -95.556445845548694,40.584049329068982,165.301984941586852 -95.534668359772908,40.58366962560266,165.264607401564717 -95.528168214747339,40.583556714075748,165.2534542940557 -95.52687818544139,40.583510732642978,165.251176036894321 -95.470803942950127,40.582961477313091,165.156176103278995 -95.416889747061433,40.582436192599076,165.064915011636913 -95.375405843759935,40.581924118178506,164.994445100426674 -95.375375822960606,40.581923747603724,164.994394120760262 -95.359284460098579,40.581522971290632,164.966512902639806 -95.337069966136923,40.581294266121056,164.928927560336888 -95.223004429225583,40.580251772836945,164.73648897651583 -95.220262367708216,40.580205809919882,164.731809047050774 -95.218934337919194,40.580183827867366,164.729543306864798 -95.21480624528148,40.580113883722717,164.722496212460101 -95.214194231555098,40.580103891987157,164.7214525192976 -95.213069206176584,40.580078907461896,164.719515709206462 -95.212887202071812,40.580074909963415,164.719202503561974 -95.203743465975663,40.579952796667996,164.703685670159757 -95.165536142641145,40.579442543124145,164.638870000839233 -95.155976928000854,40.579285672141125,164.622578349895775 -95.122306173977748,40.578839121906817,164.565504154190421 -95.113698979592456,40.578654239866282,164.550723251886666 -95.112139944632773,40.578632260739049,164.548077964223921 -95.111779935659996,40.578586267307479,164.547354015521705 -95.108689866356215,40.578542308693343,164.542110058479011 -95.099083655032658,40.578594429272265,164.526331342756748 -95.081218256242678,40.578433664486319,164.496280068531632 -95.070397013975068,40.578306808186753,164.477999991737306 -94.967964721680474,40.577267160406841,164.305550277233124 -94.956607466037553,40.577097312538193,164.28629445284605 -94.916368559864708,40.576496851278534,164.218099515885115 -94.902923257135839,40.576306030800566,164.195348976179957 -94.898273150818866,40.576167095993775,164.187279613688588 -94.825228509933055,40.575372060279378,164.064436531625688 -94.821448420863362,40.57514411812253,164.057565133087337 -94.812658221339561,40.574962237764389,164.042552771046758 -94.775457381275658,40.574407734744689,163.979636521078646 -94.718133087333129,40.573632496641892,163.882971770130098 -94.716393048548667,40.57363251875416,163.880104180425406 -94.684068318759799,40.573218947076654,163.825697761029005 -94.633501299721729,40.572618651823682,163.740768094547093 -94.633498177148184,40.57261861475471,163.740762849338353 -94.595466322907228,40.572399106669216,163.677572144195437 -94.543618160419427,40.572242770742236,163.591880289837718 -94.543292153127737,40.572242774874034,163.591344434767962 -94.539782073613722,40.572196821318727,163.585447329096496 -94.538522045428806,40.572196837287223,163.583376379683614 -94.535341973769235,40.572172878609521,163.578083177097142 -94.490742974940943,40.572141444954646,163.50472167879343 -94.472675572906965,40.572259668699374,163.475380714982748 -94.47211056036052,40.572264675639673,163.474466923624277 -94.461550326350078,40.572381804341653,163.457454955205321 -94.43118664794801,40.57247618459818,163.40788240917027 -94.35976705281945,40.572799074021688,163.291653748601675 -94.338165569726542,40.572888343199836,163.256501543335617 -94.338015566857464,40.572911344116548,163.2563197882846 -94.326224302058236,40.572913492992022,163.237007175572217 -94.312182987617504,40.572960668343292,163.214138070121408 -94.296271626062733,40.572777877050818,163.187571339309216 -94.288808462210085,40.572957963620794,163.17585280444473 -94.233697275680726,40.573345014650897,163.086736707948148 -94.092539071273293,40.57433637926222,162.858835402876139 -94.090648026626241,40.574245406929521,162.855494922026992 -94.081916831571959,40.574338512866248,162.841504191048443 -94.081676826154435,40.574338515886652,162.841112504713237 -94.035586800152217,40.575025066577624,162.767835962586105 -94.01694438599776,40.575354287019188,162.73835675790906 -93.978217525960318,40.576075743153218,162.6772520262748 -93.965314236636445,40.576194900214539,162.656562930904329 -93.941307702829647,40.576633183150314,162.618687372654676 -93.940077676974141,40.576725194692486,162.616941428743303 -93.938547645298627,40.576862208092145,162.614832727238536 -93.937767624682706,40.57672522370062,162.613179967738688 -93.937137611414443,40.576771229659748,162.612282627262175 -93.915411126865095,40.577113487922503,162.577867830172181 -93.902326834867551,40.577315643580853,162.557137168943882 -93.900766800995569,40.57738366027467,162.554788463748991 -93.899776780057181,40.577452669772093,162.553370190784335 -93.855104780450446,40.578048204968333,162.482364440336823 -93.842378495849402,40.578233356710335,162.462188960053027 -93.820172998488232,40.578528622583349,162.426918134093285 -93.816932929109427,40.578720655053907,162.422189215198159 -93.775791272626307,40.579027526633205,162.356206340715289 -93.771677909035844,40.579058207790361,162.349611746147275 -93.751669456795511,40.579163453908826,162.317417103797197 -93.744205282847958,40.578961555925083,162.304734773002565 -93.738705158377911,40.578985623764808,162.295874014496803 -93.729800956114943,40.57899073501337,162.281436167657375 -93.72388882375094,40.579084805027811,162.272104715928435 -93.691778098613256,40.57931919690094,162.220664552412927 -93.678543802963702,40.579571351761544,162.19990692846477 -93.670289617599337,40.579685450159879,162.186841954477131 -93.663357462271378,40.57979853205719,162.175919223576784 -93.660716401645729,40.579774566096937,162.171570419333875 -93.657655332446282,40.579796603438041,162.166669713333249 -93.598795016513037,40.580941290577677,162.074502349831164 -93.567631319483993,40.581562653474819,162.025784209370613 -93.567252309939903,40.581520659984982,162.025053026154637 -93.566682298402881,40.581588664223105,162.024320872500539 -93.562240200566649,40.581749712866852,162.017581848427653 -93.560380155679638,40.581634740956503,162.014249049127102 -93.558341110166239,40.581680764464558,162.011077743023634 -93.555428045189601,40.581748797951207,162.006553667597473 -93.549725917580915,40.581862864303197,161.997645218856633 -93.529618457774205,40.581813117362678,161.964971359819174 -93.529048446248325,40.581882121554969,161.964242619462311 -93.525565367731929,40.581927163111139,161.958734254352748 -93.468327052046519,40.581518894273543,161.865038907155395 -93.466737017693831,40.58161091020213,161.86272715870291 -93.443206474677467,40.581363213961538,161.824010251089931 -93.375823950667225,40.581782346741818,161.716383809223771 -93.346879283763172,40.581962388085302,161.670188277028501 -93.31904164950744,40.582119727727452,161.625735701993108 -93.262047345698747,40.582246430890969,161.534238062798977 -93.099938689564411,40.585424308447521,161.282376614399254 -93.098727662575243,40.585465321725962,161.280546318739653 -93.086948399816478,40.585854451280518,161.262718193233013 -92.959175520149003,40.588882905269337,161.066217312589288 -92.943023154110762,40.589196091794769,161.041211886331439 -92.904971278144814,40.589313557169511,160.980583916418254 -92.891222964404733,40.589492719477448,160.959073254838586 -92.88060472551625,40.589794837905671,160.942924747243524 -92.86446034892127,40.589629044276606,160.916616077534854 -92.858817222422019,40.589814106157135,160.908106555230916 -92.83649970909515,40.589938376430844,160.87274881079793 -92.829417545974863,40.589969462529851,160.861507696099579 -92.829486549226871,40.590047458391659,160.861837935633957 -92.75883092076873,40.590363316580884,160.749778298661113 -92.743655575631024,40.590662491029988,160.726379886269569 -92.71602071597674,40.591019996436444,160.683257944881916 -92.691276376041799,40.591340107768268,160.644663667306304 -92.688115301153488,40.591265149848766,160.63940748386085 -92.640644221377627,40.592281691368868,160.566551486030221 -92.639319191216458,40.592309706492941,160.564517761580646 -92.581697880545292,40.593608360487458,160.476350550539792 -92.486005713660816,40.596382419236242,160.331874529831111 -92.483811661953069,40.596352447425716,160.328300381079316 -92.483109646603467,40.596399454065633,160.327316798269749 -92.463026187729909,40.59681368310531,160.296553331427276 -92.455162003160638,40.596746782400892,160.28386234305799 -92.381106302861141,40.597968639018568,160.169670544564724 -92.352221357375129,40.598733148203536,160.125985542312264 -92.35219064438202,40.598733961096251,160.125939104706049 -92.332859202444141,40.599174179332621,160.096513235010207 -92.332619198758692,40.599265178449137,160.096390039660037 -92.300167454925486,40.599929547776405,160.046804656274617 -92.237896021815033,40.600992264815545,159.951134849339724 -92.219014586498588,40.60129348296379,159.92208781465888 -92.203080216775831,40.601441671457941,159.89728166628629 -92.197573089764873,40.601530735004076,159.888817136175931 -92.181190715963155,40.601990915811484,159.864195239730179 -92.097795789402724,40.603292879074246,159.736020998097956 -92.094283712340697,40.603544911341331,159.731186352670193 -92.084608488845589,40.603707022538444,159.716360454447567 -92.083747467224384,40.603639035889096,159.714807496406138 -92.070929179060329,40.604235167188889,159.696250960230827 -92.069312138522974,40.604111192101669,159.693345515988767 -92.031056263060577,40.605176613693558,159.635968662798405 -92.00008955094853,40.605896960708712,159.5891506774351 -91.972393914431962,40.606576269443913,159.547399908304214 -91.944519738348433,40.607377293669394,159.50573433469981 -91.869804562729456,40.60952439369526,159.394158120267093 -91.833883752952843,40.611262757315728,159.342576615512371 -91.826228580796453,40.61165683379005,159.331655785441399 -91.815370331880644,40.611991951614222,159.315532331354916 -91.801535014644813,40.612419101704567,159.294993399642408 -91.796775905524768,40.61256715327788,159.287932773120701 -91.787317690570774,40.612954251875756,159.274166312068701 -91.730515395193578,40.615106850874938,159.191054098308086 -91.718168788406516,40.599997632696642,159.128701354376972 -91.697758090042683,40.58961631448669,159.067119927145541 -91.621467303414093,40.542288219864716,158.81256920658052 -91.619424114248218,40.535501529027229,158.790009667165577 -91.623757808612794,40.515834301440876,158.740704630501568 -91.620881590834642,40.50860663942732,158.715563342906535 -91.526003358678651,40.412242832604413,158.291123761795461 -91.492367208278282,40.394962964516033,158.188830522820354 -91.485896858340865,40.385379445819467,158.151204399764538 -91.420810203619624,40.379744464906224,158.032973069697618 -91.446221494862414,40.364650795572416,158.029503086581826 -91.463528478220752,40.34389546265961,157.99707689229399 -91.491255978699357,40.287531509269343,157.878677846863866 -91.502822263062455,40.250359064031059,157.789933577179909 -91.507355301312685,40.235790504846875,157.755128792487085 -91.511718486715921,40.202628910389677,157.666480076499283 -91.514360381298033,40.182549677298944,157.612763457931578 -91.511707240192422,40.129483962228768,157.455471657216549 -91.496248042528904,40.038915001964718,157.16922608204186 -91.461668078475356,39.981829850045536,156.949238582514226 -91.457267404463579,39.947036583176761,156.84131343383342 -91.447763545032984,39.871895719069201,156.60787155199796 -91.434296632219784,39.842057158690281,156.49971572495997 -91.366770785534939,39.778772677270126,156.208462947979569 -91.369336040978666,39.760631562238402,156.159535373561084 -91.371327251847489,39.746550009094285,156.121539457701147 -91.371383004566184,39.734032547186274,156.085040968842804 -91.36912688226991,39.730537724345687,156.071256815455854 -91.350412111747147,39.713825665439686,155.992793555371463 -91.314533320315249,39.686418312560839,155.85585640091449 -91.230685494768949,39.622368022854062,155.535554804839194 -91.179378844118503,39.599712605306948,155.387978789396584 -91.169784965514253,39.566446155989567,155.275012156926095 -91.159971502077184,39.554566785136856,155.224558060057461 -91.043711798300251,39.45358652280521,154.743237504735589 -90.995148091031041,39.424485353488379,154.580574809573591 -90.941340176135256,39.395083136888474,154.408679607324302 -90.884061302090529,39.363784286280953,154.225624931044877 -90.843528955615383,39.343463641656399,154.101469190791249 -90.800698391179182,39.314620394486091,153.948347276076674 -90.73130965790061,39.257430690641876,153.668972939252853 -90.728330497211758,39.252709930959206,153.650224710814655 -90.720344618542626,39.226511499949353,153.559597069397569 -90.682431542379547,39.10213404197841,153.128449197858572 -90.684089348761546,39.089892559188129,153.094432545825839 -90.713886455419782,39.058609587119307,153.047784698195755 -90.714974422411615,39.055522710012646,153.040257005020976 -90.712925238067982,39.048344048685763,153.015519727952778 -90.667211874152812,38.935746722901342,152.605430703610182 -90.664713860819361,38.92959382528651,152.582985420711339 -90.658595570786261,38.921822237986234,152.549948536790907 -90.626462221592263,38.890208000557806,152.404048091731966 -90.584726872927845,38.870585344807601,152.279025135561824 -90.567895474021341,38.870402545808098,152.251901989802718 -90.557031255027042,38.872340584829935,152.240596020594239 -90.54536806081849,38.876605530383429,152.235046764835715 -90.508788720245022,38.904321727969467,152.260878368280828 -90.488311673925779,38.927535940501834,152.298528983257711 -90.484062737815819,38.93626560506263,152.31811891309917 -90.483756913774656,38.946013179781325,152.346976174972951 -90.473459941440751,38.960390665638947,152.374028032645583 -90.469121895066266,38.963361584781609,152.376138524152339 -90.452146749017032,38.969310510271477,152.367325727827847 -90.452129606460389,38.969316517865884,152.367316836491227 -90.407703460623878,38.964107255745304,152.281781108118594 -90.387087085376905,38.958401787906745,152.232203383930027 -90.277265099319123,38.928009159268285,151.968171027489007 -90.251579963162641,38.920900939246401,151.906435012817383 -90.227181191458939,38.910480675674648,151.836726355366409 -90.208365255677634,38.900512593092451,151.777131782844663 -90.114654417938809,38.850867579592837,151.480225574225187 -90.11073421813569,38.845109877668897,151.456662675365806 -90.110434097729083,38.839010149716195,151.437731675803661 -90.116033814494841,38.816611073059676,151.378688416443765 -90.119033712981917,38.807311448976485,151.355222280137241 -90.1244336979655,38.799611727213737,151.340360453352332 -90.166409128804986,38.772182710222495,151.323079471476376 -90.172636253778265,38.768113570002235,151.320518872700632 -90.211237415437324,38.727615921536227,151.258333259262145 -90.213337200499694,38.713316530319375,151.218240888789296 -90.210536968080191,38.704316960402792,151.186519291251898 -90.203536631131186,38.695017451519732,151.14727524574846 -90.196536357048856,38.689117792156765,151.118350399658084 -90.187735913233382,38.676318458837741,151.065626672469079 -90.182724334506702,38.661947421886566,151.01406511105597 -90.182435507935992,38.661119192379168,151.011092908680439 -90.179035118238161,38.644319975629514,150.954657962545753 -90.179334959616924,38.635320371357871,150.927750806324184 -90.183949749295053,38.619559827815493,150.887047559022903 -90.185834704453228,38.613122282742601,150.870416909456253 -90.19733566114175,38.596022911811346,150.83645124360919 -90.203835707695859,38.59022309587332,150.829020105302334 -90.22583696861588,38.57622346896229,150.821025461889803 -90.250237993952013,38.546325522526793,150.76836646720767 -90.259097554126669,38.533581738684681,150.743481448851526 -90.261638961260147,38.529926123509874,150.736341810785234 -90.264388485982067,38.521794588345912,150.715877246111631 -90.280539381665179,38.474029401029618,150.595576531253755 -90.286538992432142,38.445030627536923,150.516451617702842 -90.29663992453591,38.428331259341078,150.481362053193152 -90.341621139784635,38.388577366176769,150.430904406122863 -90.347442296616947,38.383432693271018,150.424374441616237 -90.352242285116318,38.376632943430643,150.411161503754556 -90.372142995366204,38.335135577832666,150.315597442910075 -90.373842849599342,38.324936016002589,150.287034368142486 -90.375252128571873,38.283436862517618,150.162000449374318 -90.365248069894605,38.237941019832974,150.006429060362279 -90.355223428462295,38.215442144840466,149.921364386565983 -90.335578537052086,38.191520442718279,149.816602482460439 -90.255428958861302,38.123582538823939,149.480110163800418 -90.244433014992453,38.114261948434851,149.433910214342177 -90.205162554067783,38.090347451210981,149.297799434512854 -90.127845015759334,38.043263458785852,149.029680873267353 -90.073594305472398,38.018600179033022,148.867389626801014 -89.998411587772722,37.964827449072423,148.581625840626657 -89.976225420753309,37.928323349045229,148.433128013275564 -89.974949230506425,37.9192657737199,148.402953214012086 -89.951900051666414,37.883132668224327,148.254073568619788 -89.939496369652659,37.876717867189981,148.214473637752235 -89.938688621490812,37.876300124801155,148.211894733831286 -89.924490217815219,37.872279464693889,148.17690790630877 -89.903136702288265,37.871429739937604,148.140481417998672 -89.882779397172314,37.881198522330543,148.138714944012463 -89.864253267939205,37.898512942508994,148.163346415385604 -89.852352113418419,37.905586753774955,148.166565811261535 -89.846089994495301,37.907178751017163,148.161631003953516 -89.741173497678986,37.848540570274494,147.813291945494711 -89.675602302879966,37.804791829029227,147.57326868455857 -89.672553081897831,37.80275740550892,147.562102950178087 -89.516728155666144,37.672991020640502,146.910026959143579 -89.507854144739881,37.62667322958189,146.750502203591168 -89.513226571507317,37.586189019072435,146.63159865885973 -89.519297703830873,37.585586980191593,146.639275813475251 -89.522564694462659,37.580596172493493,146.628716308623552 -89.522698013430599,37.573768338053938,146.607429089024663 -89.522813900381692,37.567833273421989,146.588921966962516 -89.522987330962479,37.558951157228314,146.561219412833452 -89.518340876322895,37.538905124840525,146.490723439492285 -89.493339544730375,37.495637378437856,146.314802868291736 -89.476812768235632,37.473018594996077,146.217306202277541 -89.452255825971179,37.451700839812155,146.111198928207159 -89.44105534252482,37.438832551930091,146.052842199802399 -89.427225509317438,37.409105066586257,145.936967883259058 -89.422339056405718,37.389303029070398,145.86655845772475 -89.429469686417079,37.35779439970738,145.777979091741145 -89.434120640472983,37.348692767769606,145.756469851359725 -89.437324671105529,37.346077853255565,145.753239405341446 -89.448840873719604,37.34211191063644,145.758856358937919 -89.475854467881334,37.339801723477329,145.794221461750567 -89.485883966281506,37.336469082335071,145.799511009827256 -89.490290724556445,37.33500478737627,145.801836183294654 -89.513127875613165,37.312462577213026,145.766471319831908 -89.51967866354282,37.290992495417299,145.708715184591711 -89.518317505216672,37.2835588529096,145.682964480482042 -89.492506464310864,37.250269743675446,145.536366691812873 -89.468914267078063,37.219842329051581,145.402270273305476 -89.415751449235614,37.126697211389299,145.02134455461055 -89.386712594373321,37.056780764995352,144.752035311423242 -89.385215413608847,37.048092184244197,144.721878323704004 -89.379555166597143,37.041256562441568,144.691046418622136 -89.3240091705906,37.010686614664117,144.505223893560469 -89.293405357369878,36.993843690764827,144.402814808301628 -89.279902982501156,36.990324999274449,144.370168270543218 -89.272401662793385,36.986941849199432,144.347452975809574 -89.262428140755645,36.98409261294028,144.32253818679601 -89.246755537938384,36.984805120454496,144.300032828934491 -89.227521027203167,36.986942330926091,144.276472875848413 -89.208286433204435,36.984093193876618,144.236931203864515 -89.186763547629994,36.975174702431922,144.174307432956994 -89.171280130967588,36.971955017929808,144.139514252543449 -89.133956453387441,36.983856865024038,144.118781170807779 -89.102063817434399,36.945665211232956,143.945803373120725 -89.102036068954575,36.94563198223468,143.945652805268764 -89.148943564831029,36.848810987554771,143.70826433878392 -89.178447067692929,36.837442202540679,143.718318053521216 -89.179843782694391,36.818218084522933,143.658582530915737 -89.180498737920018,36.814579247357216,143.64789021667093 -89.124797978827559,36.78697513033616,143.470707333646715 -89.124816067894457,36.78688662735523,143.470450344495475 -89.131666586353276,36.753369627247594,143.373079781420529 -89.143580925459489,36.75703632890616,143.403783634305 -89.17037461977371,36.761139851486249,143.459463589824736 -89.185791884194558,36.75530495987077,143.465049250982702 -89.199076960518539,36.741079483497415,143.440166926942766 -89.202315811757686,36.727440087138952,143.401242476888001 -89.200748615175812,36.717713559096524,143.367327899672091 -89.173149255859826,36.674196891262731,143.182828029617667 -89.176000227117953,36.652147704850584,143.115971377119422 -89.176007960263121,36.652087897321849,143.115789976902306 -89.189016111640711,36.642787195194032,143.106308747082949 -89.198921143415731,36.63060866127222,143.082580757327378 -89.202169043119184,36.619850131721428,143.052878112532198 -89.203873811365369,36.603249893109272,143.00177860353142 -89.214829716211185,36.581793784792445,142.949602348729968 -89.228585861406813,36.571050143673695,142.936610536649823 -89.237809034694351,36.5684991656086,142.942996090278029 -89.26126155373862,36.566823995088278,142.974856126122177 -89.27297792857776,36.573061577136563,143.013726523146033 -89.295905828042379,36.595402282799306,143.122633685357869 -89.314674697551254,36.621791842913304,143.237983523868024 -89.32800120584767,36.633857134218616,143.298247360624373 -89.328847734270269,36.633797700239107,143.299401958473027 -89.345023582589562,36.632662008826834,143.321468877606094 -89.366818992512378,36.626730054980158,143.336969461292028 -89.377638060543092,36.615539465379278,143.317977583035827 -89.389410671019277,36.575089242017846,143.205717244185507 -89.401851385881088,36.540011760886195,143.111827092245221 -89.418563131564511,36.500709435395983,143.010949219577014 -89.43058113036092,36.483552116879451,142.974421083927155 -89.449738289943141,36.466097736882809,142.948322431184351 -89.46170646501669,36.459817906049715,142.947045623324811 -89.472988707979141,36.458678839744344,142.961382322013378 -89.48748611935865,36.463297467217984,142.999573128297925 -89.494469420031052,36.471800991238304,143.038364956155419 -89.494766566995793,36.480376583168862,143.066690139472485 -89.486377682924712,36.499367776267825,143.114930734038353 -89.473731652125252,36.515416154083063,143.14679750893265 -89.46715976485244,36.531620460202987,143.188861485570669 -89.466716856365437,36.537837171940652,143.208313793875277 -89.469033085121453,36.548520643857067,143.246649350039661 -89.474613428878044,36.561590968672945,143.297920453362167 -89.480365698318934,36.569878517021024,143.333956366404891 -89.486108890927454,36.573493285511447,143.354836786165833 -89.501349318202031,36.577976911661651,143.393699058331549 -89.528857035890496,36.582818389811536,143.453323661349714 -89.54738744659987,36.581660246248283,143.479192635975778 -89.553914551735815,36.578849308820175,143.480528912506998 -89.568091667363404,36.565887767735745,143.461238515563309 -89.57278358478888,36.554241266357273,143.43102843593806 -89.571345417146716,36.54605966735955,143.402225069701672 -89.561617880920593,36.527109664801834,143.325250452384353 -89.5403729426409,36.499876176440772,143.202936792746186 -89.523946285724662,36.482981149166747,143.121821987442672 -89.520773116005387,36.477095460903705,143.097636134363711 -89.510828249943017,36.376746312115323,142.755417903885245 -89.514448087173022,36.36157899204759,142.711817701347172 -89.5202700383402,36.350282465453638,142.684342110529542 -89.533092182961624,36.34092877255307,142.67441276088357 -89.546276448189033,36.338491747955189,142.687609896995127 + + + Nebraska + + + Nebraska + 0400000US31 + 31 + 76824.171000000002095 + + -104.054514226199473,41.699209313553929,183.082387698814273 -104.054459295025495,41.734654552031429,183.168474062345922 -104.054715289761063,41.88671096943424,183.537481417879462 -104.05462083303749,41.907389078983734,183.587278159335256 -104.054681067023438,41.91621869748414,183.608713855966926 -104.054425595607896,41.974250202779338,183.748250198550522 -104.054547675917831,41.977201074076781,183.755583832040429 -104.054522169002979,41.995842273096294,183.800445571541786 -104.054453177466442,41.996209258342702,183.801203903742135 -104.054391274512454,41.999915100014491,183.810015453957021 -104.0543965322166,42.002959868506402,183.817356357350945 -104.054421742749867,42.017559341686137,183.852544823661447 -104.054572889858079,42.023002105771212,183.865916446782649 -104.054661305623199,42.076242821035791,183.994059898890555 -104.054648679817319,42.090315218422312,184.027825746685266 -104.054295629362329,42.126199687923481,184.113271988928318 -104.05443386674348,42.135005309345878,184.134631439112127 -104.054696964524155,42.138490156476202,184.143460864201188 -104.054243745171377,42.168035900838959,184.213409488089383 -104.054457842001497,42.171512749215431,184.222121176309884 -104.054491976562474,42.251193351693146,184.412660845555365 -104.054475197900587,42.25945100046907,184.432340658269823 -104.054483749347014,42.612029094397613,185.268726191483438 -104.05448377058589,42.612806061767607,185.270558146759868 -104.05448205067016,42.612982421439852,185.270970859564841 -104.054295295670826,42.63213225326156,185.31576996576041 -104.054450382396141,42.635197122338305,185.32327020354569 -104.05429281971756,42.65127645020771,185.36085800267756 -104.054521567145144,42.751176265503226,185.596093898639083 -104.054575694873691,42.755779072427238,185.606991095468402 -104.054846516894187,43.001784841491009,186.182222518138587 -103.817288121161596,43.002482377107157,185.759234280325472 -103.815654093444138,43.002581397503079,185.756548460572958 -103.578676642038104,43.001952969962488,185.33260465785861 -103.578039631772413,43.002013976967227,185.331613264046609 -103.508265319698651,43.001979020861235,185.207349260337651 -103.507860312081078,43.001979026909595,185.206628731451929 -103.506928294523163,43.001978040869425,185.204968295991421 -103.506809289708713,43.001978003627123,185.204756495542824 -103.406286397990826,43.00194654435974,185.025945606641471 -103.34253519842278,43.002089489167709,184.913029491901398 -103.134657256799429,43.001997588281483,184.544082674197853 -103.133442233682928,43.001996606392673,184.541927682235837 -103.002596368726955,43.001689204822817,184.309551648795605 -102.793806727583771,43.001198680820785,183.939450653269887 -102.489018846650353,43.000782205753438,183.401446633972228 -102.442235942875328,43.000832894216686,183.319303093478084 -102.084227972082104,43.000585176414866,182.690650249831378 -102.084168009316784,43.000585160505814,182.690545232966542 -101.877101911545537,43.000530218832523,182.328340001404285 -101.627096900101648,42.997474002990792,181.885027980431914 -101.231990091547473,42.999140696758765,181.202600078657269 -101.230868067916916,42.999095714908449,181.200547084212303 -101.229769411041659,42.999115365280467,181.198690230958164 -101.228518022100019,42.999137747389426,181.196575268171728 -101.228159015062261,42.999142752408837,181.195965110324323 -100.965849756423538,42.99913156276461,180.74203816242516 -100.960024636836337,42.999041650878745,180.731757529079914 -100.908372600235467,42.999156394971088,180.642831766046584 -100.889556220378608,42.999127668778783,180.610280393622816 -100.55478246862458,42.999972474952841,180.035668917000294 -100.545669285406163,43.000046603444076,180.020184256136417 -100.53598609452024,43.000268734161956,180.00408098846674 -100.474391848639328,43.000540611388672,179.898926800116897 -100.357053442006062,43.000014322835469,179.696291293017566 -100.351195321844699,42.999994407957537,179.686197753995657 -100.285358976955365,43.000022354015691,179.573424329049885 -100.27943885336704,42.999929442899308,179.563055776059628 -100.200078224696455,42.999798588820418,179.426847858354449 -100.200056912545946,42.999798639470924,179.426811506971717 -100.20005626112264,42.99979864101914,179.426810395903885 -100.128538761508935,42.999968609228986,179.304880424402654 -100.128069751851712,42.999967616000696,179.304076033644378 -100.120939604869235,42.999946719176869,179.291833680123091 -100.036029852202887,42.999683947708959,179.146093898452818 -100.029455716870203,42.999683041990423,179.134863839484751 -100.006397241268601,42.999651373764351,179.09541268274188 -99.962843342298783,42.999595000033352,179.02093493938446 -99.952560129099382,42.99955114907705,179.003281804732978 -99.952050118449193,42.999546156582028,179.002399446442723 -99.929283644236406,42.999373489528629,178.963139868341386 -99.920039451990476,42.999317624118952,178.947236680425704 -99.879334612503584,42.999355205160334,178.877925339154899 -99.871522451104212,42.99935531692671,178.864609674550593 -99.861582242190977,42.99922346443384,178.847345841117203 -99.851674042942875,42.999432597744644,178.830972727388144 -99.823504455756222,42.999257007646932,178.782550596632063 -99.811009202097324,42.999440178920423,178.761716150678694 -99.804964073977075,42.999326269918157,178.751142138615251 -99.801942008992143,42.999234316815027,178.74577060341835 -99.789882760537381,42.999278487400026,178.725344171747565 -99.770159355004381,42.999387764853509,178.692033384926617 -99.744772823378909,42.999175136074243,178.648305432870984 -99.728422483920298,42.999155370386738,178.620436445809901 -99.720811326287674,42.999162478788023,178.607505222782493 -99.703079961031108,42.999257728121897,178.577577620744705 -99.700867912118696,42.999143764281783,178.573536157608032 -99.570908214696132,42.999260613316693,178.352975462563336 -99.537005509978329,42.999304094650796,178.295529767870903 -99.535679759654201,42.999306694668682,178.293286100029945 -99.495916655856135,42.999384676611669,178.226009664125741 -99.492427583770478,42.999409725284146,178.220152755267918 -99.47616024288277,42.99934795935107,178.192410612478852 -99.472982173578359,42.999234009163047,178.186741138808429 -99.397195596587338,42.999438079218628,178.058784849010408 -99.375895148095566,42.999315387001168,178.022401504218578 -99.372748083506707,42.999361429893945,178.017184644006193 -99.370255032615546,42.999408463448141,178.013078064657748 -99.348909588174394,42.999485763743962,177.977122917771339 -99.289670346199429,42.999421607883924,177.876704326830804 -99.264334817392836,42.999503964309646,177.834050809033215 -99.256078891045775,42.999409879634037,177.819856843911111 -99.255921638474859,42.999408087580989,177.819586500525475 -99.236086226238044,42.999551363359963,177.786400235258043 -99.196822397611456,42.999377927361685,177.719608146697283 -99.163010696802246,42.999736392477182,177.66336930450052 -99.15276547830085,42.999615542561195,177.645767799578607 -99.140667228286503,42.999779707475369,177.625742301344872 -99.137583157996758,42.999572759474511,177.6200244538486 -99.083501019779121,42.999560526200142,177.528708627447486 -99.08163198224284,42.999629549907866,177.525725322775543 -99.023919763191756,42.999510371731532,177.428091337904334 -99.023528758310263,42.999638372142812,177.427748141810298 -99.001989301669056,42.999546680595358,177.391211304813623 -98.963699493988486,42.999560221643364,177.326722323894501 -98.920851587740586,42.999515829159741,177.254447494633496 -98.920753585695721,42.999516830504774,177.254284958355129 -98.904771249550237,42.999581053791843,177.227536395192146 -98.901561176857584,42.999397106504709,177.221677917987108 -98.825604574426677,42.99958617164009,177.094349685125053 -98.802919092008466,42.999517494552585,177.056036428548396 -98.765992311289224,42.999600012212184,176.994176426902413 -98.744007845412156,42.999620321434186,176.957290897145867 -98.667225219650135,42.999814395800669,176.828854256309569 -98.665324176831419,42.999722426250422,176.825436101295054 -98.570546162158777,42.999816756673177,176.66672246530652 -98.566682076251425,42.999679816495984,176.659906602464616 -98.500158609355523,42.999840523585533,176.548866932280362 -98.497355327524971,42.989313204796758,176.518025250174105 -98.492090952381503,42.979229681124991,176.484154523350298 -98.468962667760849,42.948839219422368,176.369845746085048 -98.448652910991498,42.936401001439513,176.304868407547474 -98.327466061259827,42.887787643411855,175.980762157589197 -98.311342530330663,42.882519704086519,175.940624534152448 -98.206104438825577,42.848135926819594,175.678623872809112 -98.167432356324269,42.838302860277018,175.589354891330004 -98.15900211147617,42.833190881333408,175.562458726577461 -98.058218310744238,42.772077036503326,175.2407013066113 -98.03662667844003,42.765501600687784,175.188104061409831 -98.018820249850236,42.763707920268551,175.153853203170002 -98.001939908601742,42.764553121028847,175.127790826372802 -97.951737991383482,42.770916563444196,175.060009960085154 -97.938306859195961,42.777051504083069,175.053039334714413 -97.910573752065986,42.796206121913478,175.054980139248073 -97.890152884125783,42.818547511368877,175.077129859477282 -97.88146916201201,42.836690906460717,175.108267115429044 -97.876936662978693,42.860019037345843,175.159318123012781 -97.867286560781537,42.864155006333888,175.15364455897361 -97.846861244633743,42.869029095657105,175.131903013214469 -97.830086909317146,42.870092286336259,175.106674880720675 -97.815972406994902,42.86241478887294,175.06391862872988 -97.776045252225018,42.851070796164734,174.969026538543403 -97.688093159084858,42.843733309080676,174.804449003189802 -97.636701330194839,42.846282870773919,174.72556761931628 -97.533450996433174,42.851405144591737,174.567289653234184 -97.486959102225441,42.85613824679087,174.502227133139968 -97.42477191122606,42.862469206364558,174.415292757563293 -97.330090801118629,42.860803579978779,174.254591540433466 -97.258667094789203,42.855157789613585,174.122399498708546 -97.219845626760176,42.830866291231416,173.996892699971795 -97.191710388702901,42.806382653646629,173.888470095582306 -97.164656725391112,42.794692892708873,173.814207599498332 -97.139033657241171,42.78362128512417,173.743862367235124 -97.05375147911613,42.771496939580594,173.572484437376261 -97.027673715209957,42.763935598787363,173.510307625867426 -97.017261095650468,42.760008210671842,173.483172836713493 -96.96258966507871,42.73938746982099,173.340687604621053 -96.922061606031761,42.732745289694144,173.257060997188091 -96.908364364131643,42.735113382700938,173.240550003014505 -96.814712611428405,42.707712756272223,173.016677114181221 -96.808117109029965,42.704721091613038,172.998201515525579 -96.725594631405713,42.667289586218025,172.766974874772131 -96.714431561300387,42.649455523519237,172.703023757785559 -96.708804914586651,42.63257795360478,172.650588111020625 -96.712164176429155,42.620945621918985,172.626330306753516 -96.712891962220681,42.61171998120912,172.603901602327824 -96.70960867011361,42.602915378381617,172.575949462130666 -96.637538560231832,42.525649624408096,172.259172815829515 -96.62751366929588,42.514902023464863,172.215059230104089 -96.61304416422675,42.507414520543271,172.172007936052978 -96.48904177406834,42.481175255339224,171.900653124786913 -96.477116514856874,42.481365409148822,171.881558574736118 -96.44495903650521,42.490824464559019,171.853148407302797 -96.410958236153732,42.488925000836311,171.79246414359659 -96.39765685487049,42.485425321214002,171.761620790697634 -96.386956346190274,42.474424907550457,171.715691206045449 -96.382855974198861,42.463025420832032,171.679544981569052 -96.382255583922372,42.447726043752361,171.639057845808566 -96.389156394622603,42.433826509409464,171.614480089396238 -96.415157365243317,42.409227148149093,171.593606293201447 -96.417057220432227,42.401627428540486,171.577082376927137 -96.419333071504497,42.352784366960726,171.454462005756795 -96.415441787943493,42.344728744583307,171.427205416373909 -96.409544510859192,42.338744065729223,171.402008420787752 -96.385714701317326,42.327210852749218,171.332945225760341 -96.376852320858291,42.319676276518656,171.298843956552446 -96.350358117021301,42.283363500342205,171.161073109135032 -96.330447741104351,42.256074473223471,171.057448597624898 -96.324410093694695,42.234978408740439,170.992674452252686 -96.325265021327169,42.231228549173515,170.984328443184495 -96.337865033117822,42.220263824166388,170.976539767347276 -96.358133390083538,42.216523703298144,171.000172004103661 -96.358207909291608,42.216418323884739,171.000020573846996 -96.361412349716389,42.211886847249879,170.993508506566286 -96.351229189140184,42.173386546690438,170.876518920063972 -96.345661824671453,42.163435025720027,170.841422294266522 -96.308960253448859,42.132052793994042,170.699138018302619 -96.280616257446098,42.075374481217935,170.504411398433149 -96.274413474555431,42.04858765633076,170.42412920948118 -96.253249844270769,42.041822215559115,170.371535548008978 -96.223264838584228,42.02755619871872,170.284759239293635 -96.131036490905544,41.973027657358543,169.989784413948655 -96.130717327290625,41.966490928791835,169.97209039144218 -96.138273434453851,41.922182640834912,169.868085835129023 -96.143795426323166,41.916735790301416,169.862864742055535 -96.160628670992551,41.911413783939935,169.876628502272069 -96.163518627222686,41.906909929960548,169.869548828341067 -96.163286532947652,41.903177086030695,169.859345958568156 -96.146012436640419,41.87321254486988,169.751970016397536 -96.141083378245966,41.867188957143753,169.727970343083143 -96.112434718413624,41.832178676328176,169.588403802365065 -96.087933715576696,41.812741800792324,169.496677026152611 -96.079172460934046,41.810166023103889,169.475418283604085 -96.072533215441695,41.806001282526758,169.453464983031154 -96.067295946375111,41.799536617896734,169.427748240530491 -96.066062796470092,41.794364846954998,169.412050780840218 -96.078612236677188,41.716768876419032,169.227543158456683 -96.098319276197756,41.700047305035966,169.215837066061795 -96.123250449132513,41.684106632625813,169.214846769347787 -96.10136045500866,41.662397819997523,169.121092899702489 -96.096938162182653,41.654104221504028,169.091781876981258 -96.096569027547474,41.648733448501794,169.076924905180931 -96.099250904546253,41.641001732790507,169.060850626789033 -96.117755886860678,41.622943235028451,169.043561615049839 -96.119627738010436,41.614864544772949,169.025216068141162 -96.095610467663647,41.540637940842487,168.788118864409626 -96.091234196131694,41.533151309617828,168.760937323793769 -96.056614915532663,41.510951689389351,168.644429654814303 -96.048225672766904,41.508459903738277,168.623885925859213 -96.042219540429429,41.508450983415798,168.61390929762274 -96.038121496319889,41.510421955614909,168.612372258678079 -96.032111790551525,41.528666277082749,168.651031397283077 -95.996301977481465,41.52761679347288,168.588938759639859 -95.982836682859286,41.508213232964181,168.514917599968612 -95.932219413618327,41.435273477960713,168.236315040849149 -95.938859642873908,41.395784036300768,168.141661461442709 -95.939823431023612,41.393543368213308,168.1372603867203 -95.958304022984748,41.350578667604658,168.052817554213107 -95.958203935135117,41.346878823511325,168.042734694667161 -95.954603726389976,41.341279104846244,168.021749859675765 -95.940803168574263,41.330280745933415,167.969358615577221 -95.927201714625511,41.32358120471315,167.92881992738694 -95.915301406688585,41.321581444612136,167.903712679632008 -95.90400007837529,41.274784551279303,167.759281675331295 -95.92640013918917,41.212586865696743,167.629176747053862 -95.928999989493661,41.203587209524372,167.609266333281994 -95.927498807269671,41.197087502194655,167.589266948401928 -95.924727341281098,41.1924359116638,167.572130667977035 -95.924698637908108,41.192387736315702,167.571953179314733 -95.916098313734352,41.186488096846119,167.541762829758227 -95.854294504875341,41.166789733598328,167.385954154655337 -95.85490231448567,41.161671703043133,167.373156137764454 -95.867792842059274,41.053127722867963,167.101272642612457 -95.868750042654526,41.045067672739052,167.081048450432718 -95.868789086710947,41.002997449925289,166.96714964043349 -95.836935993282736,40.985583601662647,166.866875376552343 -95.830575661166094,40.977088043980629,166.833232176490128 -95.824622550517972,40.902327523493248,166.620202190242708 -95.822692249198695,40.878086343361836,166.551024296320975 -95.855669571709001,40.785419435389876,166.353523708879948 -95.863192573672052,40.764279660628901,166.308395161293447 -95.873778703294661,40.759757716127545,166.313746410422027 -95.883026731495178,40.752019926247065,166.308081991970539 -95.888187653198884,40.743510222465297,166.293473246507347 -95.890404471807614,40.733264631134332,166.269193242304027 -95.88467502693257,40.718989315191813,166.22059527784586 -95.844296249475391,40.678908551869533,166.043384621851146 -95.824407586496989,40.668653248085519,165.982023863121867 -95.796982879542213,40.663797810728276,165.922846117988229 -95.788061570315534,40.658667145661184,165.893864790908992 -95.777744126781229,40.648877698034433,165.849773007445037 -95.750117541847189,40.604771944118717,165.682533665560186 -95.751544432919545,40.598469195864247,165.667610208503902 -95.75463940689518,40.594257336481313,165.661218971945345 -95.767136510092087,40.586625502409774,165.661166322417557 -95.775040526999121,40.579622700764375,165.655156378634274 -95.776195449359349,40.574991884555516,165.644364885054529 -95.770771512182264,40.538075539729903,165.533774171955884 -95.768410347858349,40.532982789024913,165.515806393697858 -95.758600010520752,40.527410155041707,165.484037363901734 -95.750169788712014,40.52569533744542,165.465197367593646 -95.711462933684302,40.525218856832879,165.399076834321022 -95.698769948436436,40.538405453912901,165.4141426961869 -95.698162115659528,40.546557111703599,165.435564833693206 -95.660768738451793,40.521229681199742,165.303261417895555 -95.682896581243483,40.492242642442946,165.260391506366432 -95.694152654734836,40.48444483302233,165.257734824903309 -95.688767140883755,40.46648267543123,165.199168686755002 -95.624167034662008,40.343752799421715,164.751563796773553 -95.554772402517131,40.29259090107621,164.49333075992763 -95.552446238076698,40.287380156380209,164.474960731342435 -95.553793679743606,40.265876687559491,164.417473714798689 -95.553952746821139,40.263338178269436,164.410684856586158 -95.523403809576749,40.250905107499598,164.32490708399564 -95.313680045737598,40.010843216447171,163.302602785639465 -95.309758758722595,40.001446676273311,163.269651019014418 -95.341365448758879,40.001447275595204,163.322666801512241 -95.376727220243453,40.001447827096158,163.382010375149548 -95.786054119397761,40.001905598693064,164.072458610869944 -95.789503193742789,40.001894555156156,164.078252401202917 -95.789590610696067,40.001894570690254,164.078400075435638 -95.884005235545985,40.001911347432724,164.238004917278886 -95.959621867203097,40.00196137826017,164.366092876531184 -96.01216200116157,40.002077700654809,164.455401547253132 -96.012164079642588,40.002077713180036,164.455405104905367 -96.025574291542981,40.002158525353487,164.478353466838598 -96.053175885437284,40.002166171446191,164.525158118456602 -96.082880521323673,40.002041796230984,164.575180096551776 -96.091266699711952,40.00195769242,164.589169601909816 -96.127274471984649,40.001905233002503,164.65011671371758 -96.127423474424887,40.001870232626743,164.650272033177316 -96.148653931169861,40.001916958231199,164.686438356526196 -96.155733082454105,40.001887868677088,164.698375741019845 -96.155852085983781,40.001932865175895,164.698703169822693 -96.221659501957262,40.002157010537381,164.811109094880521 -96.225327580748669,40.002165963031814,164.817367789335549 -96.240660908404791,40.002127767741008,164.843323426321149 -96.240696790775516,40.002127733077657,164.843384326435626 -96.302556232002829,40.002067974836493,164.948418724350631 -96.306045306570056,40.002064930104694,164.954346702434123 -96.465133711012186,40.00240086725961,165.226275167427957 -96.465206667783193,40.002402139608598,165.226403120905161 -96.4690297955446,40.002468814056513,165.233108356595039 -96.471438845390011,40.002399786039291,165.237025131471455 -96.528606064552463,40.002464046042824,165.334742429666221 -96.540472313208326,40.002283900874275,165.354498346336186 -96.559358717639157,40.002400652026871,165.387069485150278 -96.572349996666958,40.002523478944866,165.409597001038492 -96.58234820656341,40.00239835537954,165.426327402703464 -96.606380715820507,40.002323048377256,165.46717781573534 -96.611845831745342,40.002312978238336,165.476488957181573 -96.623898093877855,40.002589810383938,165.497855235822499 -96.807268986594934,40.002800399934785,165.812264545820653 -96.875314427205197,40.002878544136344,165.929142178967595 -96.876559453468786,40.002876528084734,165.931272188201547 -96.879755521393037,40.002894485858491,165.936804273165762 -96.881961567607334,40.00287645805188,165.940538649447262 -96.917596321453246,40.002933993394414,166.0018425071612 -96.917910325701882,40.002933844258457,166.002381023019552 -97.010670283405574,40.002889787242445,166.161567345261574 -97.032308736525863,40.002768511498559,166.198424278758466 -97.051169133195444,40.002749267273884,166.230797601863742 -97.139373998895195,40.003239098656934,166.383913730271161 -97.143956088139234,40.002920053114693,166.390921512618661 -97.183283915159521,40.002974538808999,166.458802835084498 -97.201699301581598,40.002973299068117,166.490527352318168 -97.203819343704467,40.002866276183433,166.493885098025203 -97.246590241151239,40.002890717911519,166.567676299251616 -97.246679244030119,40.002936714720285,166.567956670187414 -97.351784454699526,40.003398323667476,166.750583768822253 -97.35240846673365,40.003352317556931,166.751534445211291 -97.370615850267569,40.003482074176944,166.783335031010211 -97.370711362455793,40.00348195234703,166.783499661833048 -97.370711970802702,40.003481951571018,166.783500709570944 -97.417346825279793,40.003422466598032,166.863908287137747 -97.419339867404432,40.0034454395485,166.867416123859584 -97.426957026971579,40.003469338986854,166.880647484213114 -97.446176426142273,40.003379091862556,166.913623964414001 -97.464799816664637,40.003467844547238,166.946071472018957 -97.511779791450223,40.003255239688492,167.026759550906718 -97.512896816141492,40.003319222248344,167.028868699446321 -97.516823898012063,40.00332117079693,167.035670234821737 -97.769267145132304,40.003410859123719,167.473560862243176 -97.770725175362614,40.003411839942878,167.47609562985599 -97.772297207532105,40.003393820107085,167.478776264935732 -97.778676343898283,40.00358372795727,167.490376771427691 -97.820948214482598,40.003374182176927,167.563242346048355 -97.823018214744877,40.003417991903042,167.566959973424673 -97.823120260453081,40.003420151610221,167.567143246531487 -97.839901605570034,40.003325935338069,167.596052282489836 -97.858973003440468,40.003480677886579,167.629632839001715 -97.87778439314765,40.003517429017371,167.66244597081095 -97.933335539433386,40.003464700872875,167.758951508440077 -97.93335008574519,40.00346472373792,167.758976888842881 -97.973711373944624,40.003528166781592,167.82941862475127 -98.011683157606058,40.003566665165216,167.895666861906648 -98.015938246842083,40.003636606026539,167.903272482566535 -98.048995926896097,40.003599172240314,167.960783724673092 -98.051583982229275,40.003691134060034,167.965547187253833 -98.070228367710897,40.003767884968447,167.998263685032725 -98.077561517405059,40.003713790720475,168.010903091169894 -98.101187001737031,40.003639482576737,168.051906326785684 -98.143559877722851,40.003863913783768,168.126458433456719 -98.173798498451234,40.003849515430197,168.179209118708968 -98.180844644107893,40.003894420439885,168.19163606967777 -98.195012937827101,40.004025227607976,168.216738284565508 -98.251539090205156,40.003717494780609,168.314664826728404 -98.26974946743195,40.003900246048666,168.346999211236835 -98.275546586766154,40.003926168287734,168.35720603261143 -98.275548456661312,40.003926166596294,168.357209297828376 -98.492069006639511,40.003730311411076,168.735812519676983 -98.505991275470066,40.003735692002934,168.760243175551295 -98.52458966952986,40.003742879741516,168.792886480689049 -98.544723078350543,40.003691615031798,168.828072093427181 -98.562115432100626,40.003680384832407,168.858565096743405 -98.576756734614818,40.003886181420221,168.884826882742345 -98.594880103126641,40.003881941109142,168.916635418310761 -98.615293516414184,40.003805673547525,168.952277624979615 -98.6422490661936,40.003898311514504,168.999884031713009 -98.654033299953809,40.003650166060616,169.01991549320519 -98.655372327683196,40.003674147207199,169.022333942353725 -98.671263653477098,40.003814929840047,169.050647092983127 -98.674358715266422,40.003768890772008,169.055962149053812 -98.691827073882791,40.003952650479476,169.08717189822346 -98.692983096370682,40.003909637033736,169.089087350293994 -98.694636126941433,40.003777620948526,169.091634435579181 -98.711944473675743,40.003584399518338,169.12154486309737 -98.727835796824536,40.003626186403778,169.14960927516222 -98.727914215123747,40.003626369119566,169.149747715331614 -98.776482784995011,40.003739534383961,169.235517350956798 -98.778744831315308,40.003762503266451,169.239561473950744 -98.822132708487928,40.00372192768323,169.315845211967826 -98.835998989913918,40.003765741132035,169.340388187207282 -98.936337012924696,40.003606411473541,169.516821503639221 -98.962464541343579,40.003672060169201,169.563092981465161 -98.962554544195299,40.003718056916121,169.563376676291227 -98.9732667590376,40.003668916241978,169.58214589394629 -98.973832769927654,40.003645909719452,169.583082284778357 -98.993681168706942,40.003592647327196,169.617969200015068 -99.020247706952759,40.003733286554372,169.665253763087094 -99.021884738355766,40.003664267787762,169.667957156896591 -99.068569645882505,40.003569935997312,169.750163906253874 -99.087145048314326,40.003532402328041,169.782887034118176 -99.115058610624914,40.003592026740726,169.832390155643225 -99.124581801287832,40.003563900736808,169.849151666276157 -99.171365735004898,40.003323286077766,169.931247604079545 -99.180514919720338,40.003375161408677,169.9475764837116 -99.180682923090245,40.003375159161962,169.947873756289482 -99.18851208011732,40.003375054456583,169.961727711372077 -99.190455120124,40.003421026413399,169.965290827676654 -99.199142294544501,40.003430909770707,169.980692183598876 -99.21792667070055,40.003413659234496,170.01389598660171 -99.251921350378836,40.003354206938823,170.073930088430643 -99.255563425955799,40.003471152956102,170.0806974042207 -99.284519001126341,40.003275774002049,170.131463971920311 -99.288208078064059,40.003413718429314,170.13837403152138 -99.2922551574935,40.003345667271532,170.145361202768981 -99.404943409365231,40.003364156118387,170.345243349671364 -99.414199591738594,40.003263036488917,170.361396989785135 -99.482283950474027,40.003336119536442,170.482484414242208 -99.495021203995506,40.003330948747482,170.505098280496895 -99.49921628694716,40.003305893536798,170.512484006583691 -99.500555314625501,40.003350873541237,170.514984647743404 -99.503348371792214,40.003419832945106,170.520133651793003 -99.62688283247752,40.003258030341073,170.739371339790523 -99.627538836596855,40.003257171114967,170.740536483004689 -99.629813423857968,40.003258101823164,170.744587048888206 -99.629904883577055,40.003258139246363,170.744749924167991 -99.72119969209642,40.003198913182153,170.907163475640118 -99.73351993646358,40.003217746412787,170.929167965427041 -99.74818922665456,40.003210549140725,170.955292586237192 -99.758396417738311,40.002732433072303,170.97219867631793 -99.765775568479754,40.002941324280279,170.985916471108794 -99.773682730641397,40.003194206389765,171.000695354305208 -99.77720179665971,40.003037166011431,171.006546806544065 -99.814963537456705,40.002789668112328,171.073227564804256 -99.908222380521821,40.002900405038488,171.239989121444523 -99.93199784917168,40.0029040838943,171.28246861603111 -99.945982126195588,40.002971892010919,171.307636739686131 -99.949732205279943,40.003200831085273,171.314953506924212 -99.988176956035758,40.002937323577612,171.382959983311594 -99.99249203985778,40.002890267384174,171.390548225492239 -100.179364593186648,40.002977721795205,171.725284965708852 -100.179392710501617,40.00297773495339,171.725335389375687 -100.189750912139004,40.002925596993336,171.743759536184371 -100.191892955107392,40.002970565954229,171.747719483450055 -100.1951600187694,40.002957522282607,171.753540395759046 -100.195166904695498,40.002957360730875,171.753552304580808 -100.198529082911264,40.002878480195506,171.759367309510708 -100.21697644702445,40.003013224188528,171.792799877934158 -100.231049723800226,40.003077030598028,171.818205635994673 -100.233222764698112,40.003007004296052,171.821914663538337 -100.391653861579215,40.003190846606607,172.106800340116024 -100.440655814871462,40.003155182552902,172.194779244251549 -100.448646970837046,40.003176073019056,172.209203242324293 -100.470348391293257,40.00310478127296,172.248038741759956 -100.477429529982089,40.003148683033956,172.260892692953348 -100.478593552243979,40.003132667930885,172.262943614274263 -100.488734749715121,40.003147529384904,172.281226025894284 -100.512641215896366,40.003220201017392,172.324433940462768 -100.553463009557689,40.003268643495225,172.398040991276503 -100.568815307407732,40.003268434579908,172.425683464854956 -100.596334843056496,40.003356056025901,172.475481811910868 -100.602522961364173,40.003284974978634,172.486439285799861 -100.64702382283518,40.003261369970659,172.566566224209964 -100.661809115448747,40.003540155957637,172.593963420949876 -100.685014566066172,40.003611836491011,172.635995545424521 -100.722708290975433,40.003446330093482,172.703542927280068 -100.73148446151032,40.003488208527855,172.719489048235118 -100.734876530705421,40.003647155096431,172.726033826358616 -100.740406481816549,40.003605505974271,172.735901308245957 -100.753763892202429,40.003504903903703,172.759738712571561 -100.760411024550521,40.003678805378804,172.772200142964721 -100.939011461164597,40.003519373446146,173.094495221041143 -101.029272196497899,40.003629133789033,173.258149572648108 -101.061903823150871,40.003679684795642,173.31738762371242 -101.132495177242873,40.003798712454291,173.445641207508743 -101.170292902586695,40.003918188957613,173.514506521634758 -101.180394093738585,40.00383905404167,173.532620454207063 -101.193808350474569,40.00386186906178,173.557018842548132 -101.216622787498366,40.003925553260721,173.598589714616537 -101.250263428978059,40.003913092258649,173.659625465981662 -101.288146151376708,40.003928571565417,173.728465666994452 -101.295582293024538,40.003928469471056,173.741973894648254 -101.325627868258053,40.004065050664117,173.796929317526519 -101.327105803069415,40.004055922919484,173.799591016955674 -101.344451223728214,40.003948797348862,173.830833048559725 -101.375918820727463,40.003889367634621,173.887886200100183 -101.411546493740715,40.00372188545682,173.952242331579328 -101.412636064629226,40.003732381093684,173.954252322204411 -101.418802633152666,40.003791782515449,173.965628584846854 -101.543869008290486,40.003975053149411,174.193823911249638 -101.627406590023313,40.004075897574367,174.346376659348607 -101.628668611736131,40.003984884306895,174.348437692038715 -101.806462964767718,40.004114424912665,174.673397693783045 -101.809288018946702,40.004160383798464,174.67868250887841 -101.833762482002356,40.004295039525829,174.723778121173382 -101.842626645016423,40.004145923803677,174.739591694436967 -101.905778838929791,40.00452303357293,174.856102143414319 -101.918299073179014,40.004502861317476,174.878960532136261 -102.053349598604484,40.004436994766451,175.126137867569923 -102.053610018822738,40.149711397967003,175.508295848965645 -102.053518354981875,40.164025751335586,175.545636597089469 -102.053504927958301,40.230541744941398,175.719671883620322 -102.053533074227488,40.236692466873194,175.735799115151167 -102.053283111661258,40.350556525297897,176.032349688000977 -102.053186820545136,40.394421370764199,176.146292716264725 -102.053454904794393,40.397737218150212,176.155400992371142 -102.053080940805941,40.441347267005995,176.267997737973928 -102.053136863185671,40.521429681289845,176.47568775806576 -102.053343293837486,40.539173885402249,176.521984499879181 -102.053020578303688,40.698869591720999,176.933466186746955 -102.052915418527846,40.750911212612408,177.067087828181684 -102.05291540791238,40.75091646591838,177.067101305350661 -102.053243600856604,41.003691299849599,177.714356314390898 -102.053347127343358,41.003691549224527,177.71454390604049 -102.072227961791199,41.003737029418382,177.748760004527867 -102.126602989249477,41.003651264051122,177.846788972616196 -102.192842241161642,41.003638327006541,177.966524084098637 -102.210993586782138,41.003754064856501,177.999654144048691 -102.2138326408718,41.003774023766923,178.004841353744268 -102.233564009920954,41.003638750216204,178.040200307965279 -102.269445687984756,41.003694239330471,178.105288371443748 -102.273733765401744,41.003556184631833,178.112700865603983 -102.292988127269325,41.003517913382851,178.14746752101928 -102.294187149856143,41.003517896385254,178.149638803675771 -102.294256151724056,41.003540894394447,178.149822196923196 -102.294467155130718,41.003517892415815,178.150145864114165 -102.365701494911704,41.003483883611565,178.27911314368248 -102.381228789932379,41.003610657696512,178.307579460553825 -102.470860475519373,41.003732379698263,178.470450749620795 -102.472174499116619,41.00369036288339,178.472728646360338 -102.489592827172601,41.003753112647665,178.50449872482568 -102.558428110370713,41.003526144202155,178.628908228129148 -102.567687283077575,41.003507013373806,178.645679243840277 -102.577135459746046,41.003506879005542,178.662843550555408 -102.577377465955678,41.003574872564386,178.663455464877188 -102.580335521827905,41.003597829478473,178.668887950479984 -102.622673320461374,41.003903213665694,178.746602267958224 -102.655103919224956,41.003637763791346,178.804891874082386 -102.741266522407273,41.003534541166154,178.961387648247182 -102.75625980469303,41.003665321724988,178.98901145812124 -102.768366027778995,41.003579152980294,179.010834665037692 -102.775189158134751,41.003718049585643,179.02360952924937 -102.8289241500066,41.003446295361037,179.120798823423684 -102.83194721131278,41.003654243053056,179.12683227006346 -102.848099508816958,41.003559016839461,179.156025076285005 -102.850907562053266,41.003603974790366,179.161256113089621 -102.867428860828994,41.003290752896021,179.190577441826463 -102.869466903483811,41.003485715197471,179.194784740917385 -102.887391234608074,41.003433461696758,179.22732943855226 -102.889052266573458,41.003480435912351,179.230476473458111 -102.906441589621693,41.003509186412828,179.262257225811481 -102.908192623786519,41.003578158365784,179.265624538995326 -102.925674944335981,41.003443914689704,179.29717037640512 -102.927213976274331,41.003581886613887,179.300325762480497 -102.944755295384681,41.003352646242519,179.331746457144618 -102.946476333514937,41.003604610521734,179.335522030480206 -102.961270602147749,41.003396408409067,179.36199011746794 -102.962352621273226,41.003360394544842,179.363873683847487 -102.964168655198904,41.003373368028647,179.367220263928175 -102.965315679258751,41.003487346602846,179.369600859470665 -102.983130006938282,41.003413095372068,179.40192470792681 -102.984337030379734,41.003458076136205,179.404241197742522 -103.001749358351233,41.003700816576632,179.436637419275939 -103.003673396055234,41.003786785276553,179.440366650000215 -103.040352067790977,41.00355127138085,179.506747171282768 -103.045092157624936,41.003644199495497,179.515638655982912 -103.059646426871254,41.003667990322121,179.542283333837986 -103.061186455291477,41.003667968299254,179.545096538029611 -103.078184766039371,41.003552730281697,179.575861235149205 -103.079452790549595,41.00359771015367,179.578291400335729 -103.364633018839569,41.00313964476446,180.099036694504321 -103.366968061622259,41.003141611170662,180.103321746923029 -103.384147177888238,41.003178687758378,180.134907408617437 -103.423580099892618,41.003263793134323,180.207431582733989 -103.423630101756842,41.003301790731179,180.207618660293519 -103.488353280961945,41.003207865226472,180.32613807823509 -103.499103470018525,41.002928723134694,180.345170931890607 -103.576179876033677,41.003013611267335,180.486932432278991 -103.860112020638027,41.002969523159727,181.00928708165884 -103.87963037266266,41.002961241899762,181.045241616666317 -103.897870703587074,41.003037975244489,181.079059703275561 -103.955189732439479,41.002883154574789,181.184385693632066 -103.973038051863028,41.002810899996511,181.217136196792126 -103.974307076986989,41.002901877616118,181.219704766757786 -104.019888896660206,41.002903218955545,181.303838015533984 -104.025048996177986,41.003173132360914,181.314037437550724 -104.040904271293854,41.002787920334185,181.342352435924113 -104.054915520455324,41.002691722062295,181.367987344972789 -104.054824906946777,41.018094037670636,181.406194082461298 -104.054763937009227,41.019329983544857,181.409159922040999 -104.05484574872952,41.091006796352779,181.587614777497947 -104.054693759887442,41.091555774183099,181.588698398321867 -104.05475213327864,41.106266120471332,181.625344539992511 -104.054811374230923,41.115737699429204,181.648970065638423 -104.054339455550533,41.276524594728635,182.04613927565515 -104.054247524589016,41.279292473996456,182.052803003229201 -104.05412652708192,41.279475467685486,182.053032195195556 -104.05424250071691,41.317473791426607,182.146981857717037 -104.054150620864206,41.322232583204205,182.158543603494763 -104.053998622806589,41.322415577358029,182.158715304918587 -104.05396351806364,41.394482408701336,182.336062885820866 -104.053963472768146,41.394575404593205,182.33629145193845 -104.053836839416547,41.408929776167902,182.371343529783189 -104.054017105061988,41.419132325763847,182.396742666140199 -104.054157631905554,41.517017035967719,182.637061538174748 -104.054155802235869,41.52360574792182,182.653187860734761 -104.054366239850424,41.540373012053465,182.694604358635843 -104.054372292839844,41.542415922712046,182.699613007716835 -104.054264588548065,41.553911422180001,182.727530578151345 -104.054211589479266,41.553984419766863,182.72761201672256 -104.054220888905149,41.56553491533333,182.755867131054401 -104.054540620315734,41.593513689964418,182.824806882068515 -104.054417174323817,41.614934758015167,182.876869864761829 -104.054657419180515,41.624189351309745,182.899887918494642 -104.054627814817124,41.639424688286496,182.9369878731668 -104.054595996958525,41.646447383056362,182.954049231484532 -104.054514226199473,41.699209313553929,183.082387698814273 + + + Nevada + + + Nevada + 0400000US32 + 32 + 109781.179999999993015 + + -114.048350768528991,40.118107493183899,198.74086092505604 -114.048924425434947,39.907224247532476,198.258943644352257 -114.049509061867255,39.543947247780451,197.418020408600569 -114.051652171941555,38.678613916898101,195.365127871744335 -114.051910892955192,38.57417429576342,195.112400758080184 -114.051618277141614,38.549019592697185,195.050627475604415 -114.051590180004325,38.545039797704263,195.040886402130127 -114.051843811885973,38.40593595995621,194.702006508596241 -114.051872808930185,38.40579896659451,194.701732018962502 -114.051649664554873,38.149877231324055,194.071776791475713 -114.052166139594604,38.001244971331303,193.704261409118772 -114.050211637651685,37.811154957765169,193.22547541372478 -114.052846414707219,37.757572735590522,193.096582046709955 -114.053407203619571,37.748255217571355,193.074356473051012 -114.053522188433931,37.747546253184638,193.072817795909941 -114.053465181856637,37.747294267285405,193.072064084000885 -114.054205901560081,37.606080702694193,192.71773773431778 -114.054420891155885,37.519168297436465,192.498143716715276 -114.054449877753981,37.518573328525989,192.496696126647294 -114.054416536591745,37.503823110480802,192.459202663972974 -114.054432294396392,37.493324666655909,192.432586912997067 -114.053655494281088,37.372051117354864,192.122279676608741 -114.053655487972009,37.371776131980994,192.121578071266413 -114.053526725322811,37.294869228857991,191.924780474044383 -114.053526713804231,37.294365255721949,191.923490615561604 -114.053700520916777,37.285832708063026,191.902018597349524 -114.053700505771189,37.285169743410961,191.900321203283966 -114.05354411903852,37.092308056440324,191.40428894944489 -114.05347106065345,37.089766193763708,191.397574399597943 -114.052320059543575,37.00173293559201,191.167551374994218 -114.052299166685074,36.844486589682909,190.759018384851515 -114.052293462703091,36.801520705346377,190.646943795494735 -114.052274373100317,36.657614516586591,190.270168209448457 -114.048196294825487,36.474814515996229,189.779724318534136 -114.048109070385394,36.373244061863787,189.510368017479777 -114.050219302596233,36.290973533886138,189.296093311160803 -114.048809438505373,36.251968691905553,189.189064119942486 -114.04854021030232,36.195449797562361,189.037510445341468 -114.062004267499347,36.19074386457271,189.053962706588209 -114.064723247216122,36.188322958900791,189.053352663293481 -114.121894091449875,36.103612806387119,188.94988482631743 -114.127496625289709,36.078917087579008,188.895726585760713 -114.139901991327577,36.042671910405197,188.825180388055742 -114.15047381520364,36.028698531670763,188.810472553595901 -114.155829804006245,36.025250646079847,188.812783717177808 -114.215390324836477,36.017001257284839,188.919449931941926 -114.234989525669576,36.015677052551361,188.958303426392376 -114.240499595932349,36.015948959399843,188.970959446392953 -114.254351878820529,36.021580451840308,189.016074600629508 -114.264847124869618,36.027323985689321,189.054220080375671 -114.294365011120163,36.052503176238922,189.185692684724927 -114.305316354421592,36.067840172472863,189.250519159249961 -114.308938058498526,36.077927880938752,189.285391429439187 -114.312559706335506,36.085170318718831,189.312629923224449 -114.330480604731193,36.106882662475236,189.409526824951172 -114.367539646244396,36.135101579522335,189.565137780271471 -114.383150999750811,36.143043919565812,189.620118762366474 -114.514962735741662,36.15259351552826,189.93080457765609 -114.573738423258533,36.152985656026615,190.059098791331053 -114.63342390922854,36.143681318327559,190.16359097417444 -114.737873285947657,36.105742924652141,190.288946843706071 -114.746565262581314,36.10006911443665,190.292681861668825 -114.75732613621328,36.088542598529372,190.285304570570588 -114.745281766526119,35.985103499490606,189.982794888317585 -114.733000797112737,35.946541813755481,189.852777342312038 -114.707832744993141,35.880100522636248,189.619611967355013 -114.705913491227008,35.853374376033713,189.543513492681086 -114.707313440960576,35.850274528681233,189.538212211802602 -114.709411674872356,35.813277558662797,189.443077368661761 -114.702007218285857,35.701785882133002,189.125598270446062 -114.691105056207888,35.65281377301649,188.969026607461274 -114.67840469082573,35.642391534963899,188.913028488866985 -114.659202991878743,35.619693075438228,188.809463103301823 -114.655102786673311,35.612193552896159,188.780124201439321 -114.655502552722254,35.60089517972542,188.750258618965745 -114.672842123103024,35.52204987067455,188.573243448510766 -114.676675510937073,35.51197360472171,188.554111772216856 -114.678427775652708,35.500473555581365,188.526535771787167 -114.679337514487017,35.491152997667662,188.503060953691602 -114.663818383687541,35.445654771613292,188.344702729955316 -114.653697952797572,35.43057976105122,188.281291507184505 -114.628829258170342,35.410920215233837,188.173029756173491 -114.606004830715534,35.355003682014711,187.969575486145914 -114.597621144660792,35.326655396370981,187.873251925222576 -114.570924900732095,35.18490977095577,187.423496363684535 -114.571255482644872,35.164483921722059,187.367647806182504 -114.574433016982695,35.140157254299019,187.3071797080338 -114.580209877171811,35.130182738708747,187.292182088829577 -114.58598586564321,35.126431870788601,187.294445254839957 -114.600805952934081,35.122482888322352,187.316000291146338 -114.623641627301708,35.096111850568086,187.292913453653455 -114.637153320343614,35.02970328612421,187.137948775663972 -114.635227698069158,35.017082394275164,187.098575437441468 -114.63469689381094,35.003524167004308,187.059636627323925 -114.80593766044106,35.14111797625575,187.817937284708023 -114.806718681532615,35.14171293164253,187.821298980154097 -114.927073039015028,35.238460771573443,188.352625206112862 -114.927172040437739,35.238475769340575,188.352883864194155 -115.147511179927349,35.414590728080562,189.319129944778979 -115.148486200853526,35.415070687291113,189.32257841154933 -115.161766568339729,35.425536910067429,189.380257358774543 -115.162297578111691,35.425720892219765,189.381923940964043 -115.226972943384496,35.477311441374312,189.6642622994259 -115.273043667373756,35.514061352835114,189.865131742320955 -115.305445565699841,35.539606457151464,190.005462895147502 -115.39057059430111,35.60656558463576,190.373243135400116 -115.39323999826378,35.608665330892286,190.384764972142875 -115.395701069398626,35.61073817951911,190.395756799727678 -115.406242360994725,35.618998565924777,190.441161744296551 -115.407784399398565,35.620006487435745,190.447262017987669 -115.648914110373141,35.810374380247019,191.486740018241107 -115.649395123420874,35.810737353061121,191.488763152621686 -115.649741022079084,35.811008640469005,191.490245423279703 -115.691015279220181,35.843379931759479,191.667034807614982 -115.847797500357004,35.964964146285631,192.333435118198395 -115.894693905206879,36.001332189181269,192.53231889847666 -115.914577454541714,36.016723045013386,192.616504929959774 -116.095325465753803,36.157158619377121,193.381466681137681 -116.098940560225458,36.159699425863323,193.396032503806055 -116.489968371190116,36.46042807186096,195.032282039523125 -117.002644492306047,36.848996137966388,197.141557500697672 -117.167940633324093,36.972154838411406,197.811205537989736 -117.5026721964296,37.221556332527989,199.15985166374594 -117.834498270775043,37.46618505570784,200.480613254010677 -118.041626894331827,37.616489790195871,201.294385342858732 -118.041575894493505,37.616517789447947,201.294342180714011 -118.430369818163385,37.896837197457543,202.807659553363919 -118.7483950929023,38.126132597336515,204.036005302332342 -119.127789321674712,38.394356428642325,205.477914034388959 -119.158670854429118,38.415928138681011,205.594160592183471 -119.330311073869368,38.535824165152121,206.238857445307076 -119.452439034055217,38.621134340907602,206.696130683645606 -119.452428033928157,38.621133341131397,206.696104694157839 -119.495839186769047,38.650901087417516,206.857096469029784 -119.496000191237158,38.651019078657043,206.857710445299745 -119.587256635746982,38.714374300953935,207.197409433312714 -119.588885679451394,38.715507215578747,207.203471793793142 -119.58949869495072,38.715896185430658,207.205668928101659 -119.906143159904175,38.934469687770978,208.37632964272052 -120.00284473655968,39.000714680302082,208.731131880544126 -120.004293502620556,39.068626084289555,208.884109613485634 -120.005236062435003,39.113821750562948,208.985608577728271 -120.006339484327967,39.166730582866705,209.104163262993097 -120.00758262639981,39.226338762229751,209.237385903485119 -120.007579716394176,39.229792581599845,209.244933265261352 -120.007252925322163,39.314469163089242,209.429046995006502 -120.007251938479655,39.314972136862544,209.430140508338809 -120.007159003136081,39.317474007803355,209.435390927828848 -120.007156801953954,39.317602795316418,209.435666715726256 -120.004959531012489,39.446162116464635,209.710142323747277 -120.004958364999567,39.446230338632972,209.710287542082369 -120.003168729871419,39.72351933937896,210.30300332698971 -120.003168706123546,39.723523019084176,210.303011140786111 -120.002353238041692,39.781056070560112,210.424088985659182 -120.002458261048744,39.781879026561519,210.426066738553345 -119.999150085630845,40.072888181645048,211.035219232551754 -119.999034232544744,40.078329906221434,211.046416693367064 -119.999093623363308,40.092675174533923,211.076693701557815 -119.998984569486112,40.127445406498587,211.149459835141897 -119.998047283869539,40.263536513377943,211.432050679810345 -119.998046313258854,40.264607459149374,211.434280845336616 -119.99802089968739,40.322322538987123,211.55435935780406 -119.998020915875273,40.322910509261348,211.555581561289728 -119.997796837996361,40.500964536895808,211.923667324706912 -120.001112129660058,40.866944194794236,212.678513791412115 -120.001113173670817,40.868499117541013,212.681665894575417 -120.00123933465764,40.874145835032351,212.693366965278983 -120.001756208343267,41.185003467792178,213.319359471090138 -120.00108199375137,41.995530179228247,214.904454506002367 -119.988591915144909,41.996832325218115,214.88126112241298 -119.791999102852074,41.998537519999495,214.480350389145315 -119.362084855380616,41.995384823570717,213.591739806346595 -119.326089244223198,41.99527965444549,213.517730521038175 -118.779130001619109,41.993681578479425,212.394814409315586 -118.777770988486679,41.993702599999821,212.392077238298953 -118.199085160891173,41.998014969534978,211.219391630962491 -117.028105614419843,42.001291094877033,208.847591072320938 -117.020177499769375,42.000397266854392,208.829742933623493 -116.628649047610509,41.998795758508379,208.034932965412736 -116.588815583382598,41.998416428203278,207.953733362257481 -116.512329702863227,41.998143692363868,207.798795827664435 -116.487700414302168,41.997909106164272,207.748621046543121 -116.484971383777747,41.997933149674608,207.743163576349616 -116.46540514981379,41.997595485423453,207.703001417219639 -116.16580472167648,41.998608333014992,207.101199613884091 -116.162706684274951,41.998561385771097,207.094865313731134 -116.04047425721987,41.998515382306437,206.848731061443686 -116.040442255467951,41.998468385016452,206.848570513539016 -116.032626163605343,41.998454513140807,206.832815571688116 -116.032630163183214,41.998438513820417,206.832790880464017 -116.020832036180195,41.998817688582221,206.809829640202224 -116.020817034832291,41.99877769068879,206.809717597439885 -116.014090965613832,41.999103785197811,206.796853377483785 -116.01408396515086,41.999090785917069,206.7968126880005 -115.988751682861306,41.999590175753205,206.746876481920481 -115.040116191974079,41.997096831517119,204.83933430723846 -115.033643148292725,41.997079817779444,204.826357782818377 -114.91604581492615,42.0009825423301,204.599471759051085 -114.765681953376713,42.000984975872804,204.299272112548351 -114.600121732161483,41.995589901409161,203.95779378246516 -114.500112480235899,41.995679512615858,203.758683357387781 -114.500096481108244,41.995716511169242,203.758728986606002 -114.283704860730339,41.995348496037593,203.327195343561471 -114.109276505263239,41.995051843654018,202.979807035066187 -114.109107499224123,41.99491785253398,202.979188934899867 -114.063610919764088,41.995026580053718,202.889039206318557 -114.063621915797697,41.994884586400957,202.888761664740741 -114.050104742977553,41.994901803197905,202.861951583065093 -114.050093740146693,41.994808807647559,202.861733618192375 -114.043570656444658,41.994807912684244,202.848777151666582 -114.042950523628306,41.851667515389316,202.544741249643266 -114.042995524835987,41.85168951365123,202.544877495616674 -114.041722399033304,41.743090558068459,202.311387400142848 -114.0439646327725,41.001060360598792,200.709395594894886 -114.045616073650407,40.760350826235033,200.180818282067776 -114.045644059358835,40.759811851630573,200.179677926935256 -114.045317176419786,40.727439409355021,200.107071413658559 -114.047087272187923,40.507743962515477,199.619844016619027 -114.047382986657439,40.496959479276086,199.596236095763743 -114.047323950339873,40.495632544362962,199.5931367110461 -114.048350768528991,40.118107493183899,198.74086092505604 + + + New Hampshire + + + New Hampshire + 0400000US33 + 33 + 8952.650999999999840 + + -70.820407605543124,43.124811484498174,140.71153367869556 -70.78496493644009,43.100544529065729,140.605616971850395 -70.757252695625425,43.081570457993585,140.522786598652601 -70.704789314148002,43.061204268997521,140.413707761093974 -70.719789835509374,43.033934364421206,140.343264699913561 -70.74542420807262,43.00167527655789,140.266908804886043 -70.749878286383407,42.997052401575097,140.256658930331469 -70.760829541088498,42.99017755524541,140.245265753939748 -70.796450954571725,42.937877082671548,140.11612858902663 -70.810924046582016,42.911136893170458,140.046732798218727 -70.815464860433622,42.892934582027216,139.994734498672187 -70.817175899731481,42.88607570839374,139.975135960616171 -70.818150762451836,42.873879120925864,139.938431541435421 -70.849480604213142,42.862528277832823,139.931463201530278 -70.886993099040865,42.884198250997017,140.031792328692973 -70.90362568326853,42.888117991509354,140.058760765008628 -70.915744069821045,42.888151899535238,140.069725583307445 -70.915757070581719,42.888176898577271,140.069814206101 -70.931657549365525,42.886176848220693,140.077914029359818 -70.932557572486701,42.885776855241929,140.077489849179983 -70.997761376496641,42.866177040904923,140.075710674747825 -71.038762535145523,42.855677094589325,140.080289146862924 -71.059269094971555,42.848597419912309,140.076972507871687 -71.114721532932052,42.829453046976205,140.06807850394398 -71.15056755166691,42.817077584449649,140.062387155368924 -71.166467961864285,42.8102776994142,140.055840663611889 -71.18696936190581,42.792278167066762,140.018969198688865 -71.182667486813784,42.739181038865162,139.851366306655109 -71.209002400861507,42.744863642922006,139.892802161164582 -71.209092404007308,42.744884641513806,139.89294866938144 -71.20916740666361,42.744904640253601,139.893078465946019 -71.24637057599243,42.744179384094494,139.924654899165034 -71.255399087255626,42.73572632456613,139.906800780445337 -71.295072483973016,42.698581598484544,139.828347749076784 -71.543395575089605,42.704315025156014,140.073461746796966 -71.632692268107732,42.706376754515404,140.162094393745065 -71.637092408449945,42.706476717295146,140.166463484056294 -71.773392651882887,42.709897422894869,140.303111100569367 -71.806333335876033,42.710724129250188,140.336225925944746 -71.899601265277497,42.713064855890536,140.430177194997668 -71.929698740379195,42.713820205715095,140.460555166937411 -72.079355464650149,42.717949026972974,140.613186811096966 -72.111962010600763,42.718848595491863,140.646537126973271 -72.283867349675063,42.723591216008572,140.822928572073579 -72.41291441168238,42.727151433108368,140.955966597422957 -72.452161126535287,42.728234190873607,140.996532952412963 -72.459423600336365,42.7284345515437,141.004045034758747 -72.461099728657885,42.733647356502459,141.02162091806531 -72.479358741267404,42.763876158667699,141.131614303216338 -72.492028286963816,42.774044704327494,141.174801535904408 -72.510412990966842,42.782762255299204,141.218973195180297 -72.543692434139999,42.810060041831434,141.334178613498807 -72.556602541284775,42.857956275571027,141.492924989201128 -72.556677824557994,42.859729283261281,141.498415289446712 -72.557021699359211,42.867827929741665,141.523490864783525 -72.55712371281183,42.868525904720137,141.525720600970089 -72.444670224077313,43.007816981611221,141.844199100509286 -72.433570466632162,43.115645362280766,142.162008785642684 -72.434006568428131,43.12158915495425,142.180494378320873 -72.44281409243402,43.138182516068071,142.239244934171438 -72.453010782496918,43.162980585532274,142.324210774153471 -72.440318123511176,43.212886979949623,142.463770465925336 -72.43209769415904,43.233350088520446,142.518115006387234 -72.398061355101021,43.318076731949645,142.742912869900465 -72.401423133109631,43.33863426557204,142.808309122920036 -72.404861192742914,43.359658265385058,142.875158884562552 -72.406165712267125,43.39155117342824,142.972841331735253 -72.39786122151979,43.430482456138712,143.082713988609612 -72.397847157620845,43.430548387414625,143.082899985834956 -72.388765386202962,43.473123553072028,143.20295746717602 -72.388555845446888,43.504036511705586,143.296036995947361 -72.396739378398863,43.522114836943807,143.358212633989751 -72.330533475656736,43.601753688073558,143.536334071308374 -72.335658855613175,43.616071166704849,143.584213759750128 -72.335314916303957,43.620802010782306,143.598131988197565 -72.330573998543329,43.636199532491396,143.640047867782414 -72.303781177150341,43.704267469193198,143.819773263297975 -72.272093643157589,43.735686673737391,143.884718408808112 -72.265158421979748,43.735706728498918,143.878341845236719 -72.233625629356553,43.749834509343323,143.891525878570974 -72.206628690544932,43.772691147875264,143.935146908275783 -72.205704096104725,43.773473944815073,143.93664101138711 -72.18465495072013,43.808190958018422,144.021354484371841 -72.183115318380516,43.835578060662513,144.102067708037794 -72.16813663287931,43.887657453634688,144.244304412975907 -72.121913652393445,43.920499735979547,144.300053247250617 -72.105332602788465,43.952078825103278,144.379310837946832 -72.106505794358299,43.960571659380378,144.405797686427832 -72.107953977140454,43.971055178071154,144.438486265018582 -72.113990221092124,43.974332021821795,144.45383542496711 -72.113725445796732,43.989561521895439,144.499127765186131 -72.091622347545098,44.036751189288069,144.619837608188391 -72.055587481882867,44.113684907937106,144.816433247178793 -72.040994928041414,44.157284866254273,144.933067885227501 -72.040994683253686,44.15728559763653,144.933069841004908 -72.043000051595925,44.159169136123204,144.940516100265086 -72.053934287689671,44.1694390970016,144.981113006360829 -72.065198959358582,44.189423354194794,145.050934470258653 -72.068689358647831,44.272508618880096,145.301303159445524 -72.06634938025968,44.278767434103891,145.317768588662148 -72.059795308449736,44.287772193910435,145.338545023463666 -72.013087345538594,44.32293942612263,145.400432844646275 -72.003228080601048,44.32640239270517,145.401740431785583 -71.850375159336039,44.360826218359776,145.365244957618415 -71.816973702147919,44.36834852025008,145.357382007874548 -71.815296881557558,44.383463044899244,145.400754468515515 -71.794832486368193,44.400801647550615,145.433753555640578 -71.765444657179742,44.407933682540055,145.428418069146574 -71.762873569772339,44.408557651222218,145.427952758967876 -71.756998369494724,44.407931718103221,145.420799307525158 -71.745917932107517,44.402889968849884,145.395846237428486 -71.709839919682921,44.413141924306807,145.393806789070368 -71.680855230192094,44.42943862858035,145.416132272221148 -71.600383518319163,44.48798438153711,145.517704525962472 -71.581166202630897,44.508037889457668,145.559988813474774 -71.537154027986006,44.589465628753274,145.761978489346802 -71.554060179373749,44.628170258565412,145.89159726165235 -71.599562775016665,44.699527623865769,146.143075250089169 -71.626231141403409,44.731239403704933,146.260473080910742 -71.628266486955113,44.749064821396743,146.314878732897341 -71.624832493679605,44.756655607782918,146.334205969236791 -71.573427771085761,44.811592953265439,146.450397089123726 -71.496750652613642,44.906496888804966,146.661818230524659 -71.494891691187249,44.912828704200265,146.678801200352609 -71.517722011241716,44.949103381778947,146.805676116608083 -71.538693279016584,44.985812062145449,146.932091342285275 -71.539501366947292,44.98969593385732,146.944212201051414 -71.537889408824327,44.995690758654511,146.960388160310686 -71.531000269269143,45.001169641704415,146.970377940684557 -71.505908579485805,45.009664575132291,146.973128751851618 -71.487364470091805,45.008524817317422,146.953397314064205 -71.469474278394514,45.01173581456527,146.947028868831694 -71.465462337222917,45.015150724814546,146.953514833003283 -71.503395579393839,45.014880431698572,146.986219901591539 -71.497007253944048,45.070746734706205,147.144484737887979 -71.490054073978143,45.073819694057939,147.147359212860465 -71.429735906444506,45.125391565101651,147.245382026769221 -71.398718149560224,45.205061334799865,147.451396665535867 -71.404175517350509,45.216855925538859,147.490688530728221 -71.4437901346069,45.236306007206679,147.582339834421873 -71.402090881866144,45.244051099349463,147.56838334351778 -71.343868416840706,45.272787673091408,147.601389286108315 -71.29799834175293,45.300491181440897,147.642265364527702 -71.285301976725862,45.303940175714246,147.641264213249087 -71.26765921478264,45.292736661458974,147.593140408396721 -71.263946872116563,45.27890811800836,147.549482686445117 -71.260518692623904,45.274747273739585,147.534328835085034 -71.233901548692103,45.258132998066571,147.462540626525879 -71.184686735889684,45.246440748674104,147.38548141438514 -71.140330237368659,45.244467159646483,147.341146889142692 -71.132853028893152,45.246932142333144,147.341869266703725 -71.125416938316306,45.256778896463466,147.364236440509558 -71.12081389679615,45.263795715864326,147.380778088234365 -71.121011957874188,45.267246607675503,147.391048696823418 -71.106050919246528,45.296142833437614,147.462613189592957 -71.098671789790615,45.303413667309805,147.47748380433768 -71.085233398085379,45.306800668717351,147.475750027224422 -71.076537829116418,45.225603245510506,147.230552352033556 -71.060995116042221,45.021177726287149,146.616928122937679 -71.038407293279747,44.757132208440893,145.818297258578241 -71.029987957338221,44.611860850883474,145.380539114587009 -71.014372335732233,44.342420503555324,144.565090083517134 -71.011120684895047,44.286314648330098,144.394708437845111 -71.009616834829501,44.260366339794217,144.315840957686305 -71.009644830038454,44.259984351952561,144.31472370121628 -71.002213132533143,44.094751782136292,143.813389187678695 -71.002245129517988,44.094477790833672,143.812595484778285 -70.993861226154294,43.915784711642665,143.268142182379961 -70.992960745067663,43.887814740499451,143.183099347166717 -70.989940320145436,43.79399676032115,142.897477687336504 -70.98991429112111,43.793708371111208,142.896584003232419 -70.982954969950754,43.716602378899346,142.657444984652102 -70.983109928876573,43.71342448323815,142.647972164675593 -70.982849776997583,43.703524814033926,142.61780003271997 -70.982817761402913,43.702519847665585,142.614731781184673 -70.981629790838923,43.68570168904148,142.56279628444463 -70.980856623627218,43.674755920652032,142.528985080309212 -70.973585576761423,43.571819272910943,142.210629596374929 -70.954190700192186,43.554283006560347,142.140198146924376 -70.956214592735819,43.542262393260785,142.105510806664824 -70.956205596508795,43.542545383860869,142.106361847370863 -70.959826751974902,43.53919976253713,142.099422316998243 -70.963424733121471,43.535875552204992,142.092527264729142 -70.955623130556475,43.511368432113478,142.011174513958395 -70.964610081717126,43.477815775473452,141.917212165892124 -70.965409922024989,43.474829583028153,141.908846541307867 -70.965300918720772,43.474843583385685,141.908792143687606 -70.987679794269539,43.415833396576261,141.749235825613141 -70.988600499165116,43.393083155529631,141.680805356241763 -70.985172179573638,43.378384676794361,141.63298926781863 -70.985202170761085,43.377698699688565,141.630926710553467 -70.968095161383758,43.345348920463245,141.517108662985265 -70.953221545057644,43.335555363679234,141.473996262066066 -70.931647790269608,43.331141675905947,141.441320352256298 -70.917615040099349,43.319304074889367,141.392721683718264 -70.913323900796115,43.309862533248811,141.360096986405551 -70.910668792871064,43.308255607612843,141.352830421179533 -70.864091711520871,43.266684365152585,141.184475286863744 -70.864092711397788,43.266673365517434,141.184442572295666 -70.84007374564581,43.252800016148456,141.120704755187035 -70.84057775010568,43.251969040503262,141.118613134138286 -70.834510449626762,43.244444341072509,141.090224073268473 -70.828882251278301,43.243173426465432,141.081339032389224 -70.827571205075571,43.242877446353475,141.079269646666944 -70.825931147268022,43.242506471256192,141.076678805053234 -70.824169082510139,43.241919504394509,141.0733193885535 -70.82381906909265,43.241763512311998,141.072531647048891 -70.818724873737693,43.239487627731471,141.061049843207002 -70.818632863714811,43.238984645468626,141.059430424124002 -70.817091780403445,43.236573738759823,141.050691009499133 -70.829160488728476,43.188263287214845,140.913639953359962 -70.830033720893852,43.181943040331376,140.895072964951396 -70.834659106977966,43.148465598872292,140.796685840934515 -70.82895867538484,43.130666247525269,140.737084375694394 -70.820407605543124,43.124811484498174,140.71153367869556 + + + New York + + + New York + 0400000US36 + 36 + 47126.398999999997613 + + -73.774279795947336,40.861088005870506,136.472992523573339 -73.771470757538538,40.861969238948241,136.472920487634838 -73.767251610318482,40.858955828478727,136.459034621715546 -73.766046109343108,40.855867061101002,136.447988957166672 -73.766950075903566,40.846600717957187,136.419468067586422 -73.770566446699092,40.846299345066335,136.422207465395331 -73.773956848063563,40.84976477569024,136.436686221510172 -73.774635010771846,40.856469680948734,136.458683497272432 -73.774279795947336,40.861088005870506,136.472992523573339-74.041784347692001,40.701760159174732,136.241243224591017 -74.040942610490518,40.702321291755574,136.242159911431372 -74.040325329138952,40.702096845373511,136.240807144902647 -74.03892240089624,40.700637934959232,136.234711339697242 -74.044365551795522,40.691323224567881,136.210673966445029 -74.045375626807342,40.690088741829527,136.207786508835852 -74.04728359098857,40.690818188452134,136.21208274923265 -74.048237584786875,40.692108766665349,136.217179664410651 -74.047844780268534,40.692782119424244,136.218918008729815 -74.041784347692001,40.701760159174732,136.241243224591017-74.145353194648706,40.536808381882167,135.82249915972352 -74.149622312870193,40.536137373422306,135.824794595129788 -74.161784570007413,40.528438571243662,135.812848038971424 -74.178911982260814,40.521251709715344,135.807709811255336 -74.183083120906673,40.52228263673333,135.81534690130502 -74.20084952838873,40.51337783602947,135.805397622287273 -74.211400811704564,40.511096838973423,135.809104606509209 -74.220713995217679,40.504252027066698,135.796939396299422 -74.234167378405118,40.502947969204158,135.806803871877491 -74.247615707767736,40.497752060828624,135.804231437854469 -74.251115820364845,40.498352009684346,135.809802470728755 -74.255516028683815,40.50395175927445,135.832291351631284 -74.257016150586537,40.509551532189818,135.851750260218978 -74.253630132246599,40.515543329345725,135.867358891293406 -74.243815936233801,40.522551139191343,135.879504214972258 -74.242660044779839,40.532920750606081,135.911418315023184 -74.248736393325785,40.545043236857943,135.956464414484799 -74.229929993012533,40.556687941550841,135.974028531461954 -74.217924634063181,40.556638039877527,135.96135868690908 -74.211814533282677,40.562548862443627,135.973861129023135 -74.20498172196757,40.590981828543889,136.057472256943583 -74.19774761234595,40.598682591971063,136.074506199918687 -74.196334636058978,40.603451420884376,136.088245015591383 -74.197023855266991,40.61781386610248,136.13475747499615 -74.201922011800107,40.61855079857385,136.142202351242304 -74.202740072231492,40.621151692569548,136.151344541460276 -74.201508200716546,40.633092246114749,136.188120700418949 -74.190328014381237,40.643764928255649,136.210503520444036 -74.181118786182481,40.647164872412731,136.211764067411423 -74.175012597935137,40.646752937198436,136.204106390476227 -74.171114441145193,40.643845079554332,136.190790698863566 -74.15389988061726,40.640530344360926,136.162346789613366 -74.1211119459511,40.643845480805915,136.138883554376662 -74.08741002613796,40.650245506596846,136.124344866722822 -74.076808702010169,40.649745610585903,136.111769811250269 -74.070624421949887,40.642860922892886,136.083417731337249 -74.068522119810453,40.625510602280684,136.025913695804775 -74.061268739363683,40.613645113659359,135.980550598353148 -74.054048408844324,40.605324489418841,135.946523172780871 -74.060107450045763,40.595148830035853,135.920323688536882 -74.069107589860621,40.585749117612139,135.899645011872053 -74.091721023205423,40.568110611822206,135.866777134127915 -74.112395372003945,40.548556195402398,135.825782069005072 -74.113509414834965,40.549251159859899,135.829158975742757 -74.122596618707121,40.544339275372501,135.822906796820462 -74.138165910162897,40.531724634349388,135.798783988691866 -74.141155049755298,40.535386470012433,135.813591537997127 -74.145353194648706,40.536808381882167,135.82249915972352-72.133096982833081,41.106029557154443,135.622573509812355 -72.129223913585761,41.109773447188012,135.630762373097241 -72.127575955759283,41.116781199018227,135.651483568362892 -72.085077472226587,41.103167026764275,135.567238858900964 -72.082037278862984,41.095583331895376,135.540160803124309 -72.087844986897906,41.059936615459691,135.432158421725035 -72.09658119840087,41.055664708704676,135.426949876360595 -72.098070255426947,41.056528665259322,135.43113780580461 -72.09800652982895,41.077487884889543,135.497876115143299 -72.1040228547173,41.088127443281493,135.537564300000668 -72.107270985993054,41.090526329432514,135.548332476057112 -72.121431476843597,41.094814062764826,135.575623827055097 -72.140105039854106,41.094093948282683,135.591320601291955 -72.142793147653748,41.09601385647413,135.600025186315179 -72.143801224058279,41.099453720817912,135.611950172111392 -72.141609196853864,41.102477624882489,135.619465919211507 -72.133096982833081,41.106029557154443,135.622573509812355-71.944431598995209,41.288312227756116,136.021106050349772 -71.927670509157281,41.291759286117809,136.016056475229561 -71.936127262410849,41.282216515432481,135.993835452012718 -71.947138783693177,41.277943765340552,135.990780876018107 -71.963467071897895,41.272605879955755,135.989426948130131 -71.979795375979791,41.266640024704003,135.986089034937322 -71.995586772998223,41.258088957930653,135.974039200693369 -72.003330963745526,41.254505031908359,135.970067981630564 -72.037716980777347,41.251431885566269,135.993230017833412 -72.035828997930849,41.257095690426581,136.009402194060385 -72.03030892949991,41.264727450074943,136.028340906836092 -72.024292849411964,41.272631203514784,136.047666143625975 -72.019796752513813,41.275751122259422,136.053263922221959 -72.007742119179639,41.275117431065965,136.039719208143651 -71.991986992417438,41.282968065958144,136.049566649831831 -71.980930638229069,41.281928187896085,136.035699499770999 -71.953733036617763,41.286735318234385,136.024979091249406 -71.944431598995209,41.288312227756116,136.021106050349772-73.768094724885103,40.887937032280711,136.551940064877272 -73.767994709426844,40.887037067072136,136.548980528488755 -73.767994701129624,40.88643708973602,136.54707558453083 -73.767994683153148,40.885137138842907,136.542948113754392 -73.767194625875206,40.882737235880001,136.534510451368988 -73.767894633131675,40.881737268084301,136.532050433568656 -73.771794739522917,40.880937267245216,136.533495381474495 -73.776194912132041,40.883837122629934,136.547199891880155 -73.776094936782656,40.885837047872293,136.553447533398867 -73.773694870035385,40.886237051883505,136.552264831028879 -73.773194895088892,40.889136946326381,136.560960693284869 -73.771494856336162,40.890036925877723,136.562080813571811 -73.769194775995928,40.88923697441637,136.557191111147404 -73.768194736194928,40.888537008821508,136.553947111591697 -73.768094724885103,40.887937032280711,136.551940064877272-73.404641950393454,44.154627585765368,146.201788336038589 -73.430194947319194,44.080941743751623,146.008133813738823 -73.438384683848213,44.048389750562841,145.919522444717586 -73.437835597553814,44.044106896756524,145.90629664901644 -73.411730517194258,44.028473632043529,145.834856064990163 -73.406953193568967,44.017759026522604,145.798479915596545 -73.406478099366325,43.95034526531353,145.597847484052181 -73.40869486740641,43.931419875446267,145.543730876408517 -73.398208148533385,43.907201768049312,145.461630963720381 -73.38933970215848,43.83394028288383,145.235010252334177 -73.38026205831882,43.810015202659557,145.154971632175148 -73.38022903279095,43.809928160423162,145.154680366627872 -73.358495989185585,43.787471091565074,145.066795645281672 -73.351379534752681,43.772976635458114,145.016705467365682 -73.361659855270091,43.754807203907625,144.972380748018622 -73.371672610247103,43.737110668085087,144.929198272526264 -73.404465849540756,43.686573091716362,144.809870300814509 -73.409645689239269,43.675561692443814,144.78196182101965 -73.422554815023318,43.648119234618299,144.712386306375265 -73.432177202322592,43.589829119181971,144.547261816449463 -73.429584053219287,43.585538285493882,144.531902769580483 -73.401241922830195,43.570434030302579,144.45923379343003 -73.37654084068852,43.614893735089709,144.568506879732013 -73.367483713483935,43.625005469430164,144.590028899721801 -73.307178880728856,43.629561814932799,144.545510902069509 -73.303496728246031,43.627251923134843,144.535048281773925 -73.246535165118715,43.541800685608713,144.224077966064215 -73.242983400890523,43.536472484550067,144.204670427367091 -73.248002248168007,43.516467119636353,144.149459184147418 -73.253521193296322,43.372549957991026,143.722069083712995 -73.253613185205197,43.371837981473085,143.720013906247914 -73.253771085395371,43.365046211423902,143.699712269939482 -73.254022957941899,43.3562675083569,143.673513115383685 -73.255786279209488,43.316239327387564,143.554584320634604 -73.260096030574132,43.218406169207675,143.263476449996233 -73.27040685624408,43.03225040357799,142.709904152899981 -73.275227349587155,42.945219464143626,142.450332938693464 -73.275326335006653,42.944049503912687,142.446873442269862 -73.275399305250872,42.941928576880166,142.440498143434525 -73.279604825531962,42.834981260678916,142.119154734537005 -73.286320045209379,42.835664182226488,142.127784076146781 -73.291875735314832,42.803492258819894,142.035163041204214 -73.277351445445049,42.747593329666671,141.850467035546899 -73.265887087213272,42.747514425547998,141.839034245349467 -73.307933781774182,42.634231507243129,141.533934300765395 -73.35345629753408,42.511584008702847,141.202869115397334 -73.41157616136114,42.353325294869698,140.773913720622659 -73.509069877120766,42.087852858404787,140.051401756703854 -73.497805998360889,42.051272266650834,139.926976145245135 -73.488240703788776,42.051235345227525,139.917349696159363 -73.50586798715328,41.825890360641388,139.235353830270469 -73.505931981752511,41.825378378745782,139.233824368566275 -73.511094654140351,41.760294070665445,139.036284383386374 -73.518395305495801,41.668256954064404,138.756450891494751 -73.522378518590628,41.618041818650838,138.603532955981791 -73.530987513735482,41.528810027961221,138.332913538441062 -73.534888960120711,41.481310746596471,138.187955689616501 -73.534974952487573,41.480585772642115,138.185768600553274 -73.535069942541142,41.479677805364801,138.183016643859446 -73.535188929918462,41.478528846784158,138.179532961919904 -73.535188922608285,41.478011865849922,138.177911631762981 -73.535288918584286,41.477511883489392,138.176444069482386 -73.536688696439853,41.458777563477312,138.119084044359624 -73.53677667863667,41.457327616289497,138.114623192697763 -73.536804672807961,41.45685463352352,138.113167290575802 -73.536905645148536,41.454678713033907,138.106441367417574 -73.536986623196043,41.452949776210012,138.101097620092332 -73.537888506119558,41.442713146974675,138.069879001937807 -73.538388447890938,41.437509335181815,138.054047917015851 -73.538592426089025,41.435524406875501,138.048022219911218 -73.544560028636795,41.378399001752626,137.874588940292597 -73.545646689320847,41.367996848474995,137.842984168790281 -73.551878882390369,41.297046430537868,137.626031456515193 -73.48362365535904,41.214388048630148,137.296694335527718 -73.510402301439953,41.202442281030294,137.285977575927973 -73.515532423893902,41.200062328974866,137.283638593740761 -73.615324937281287,41.154629756283853,137.241034054197371 -73.633071239671139,41.14655039087576,137.233491575345397 -73.640590419504619,41.143124458992709,137.230290451087058 -73.728695515207264,41.1023262824556,137.190848281607032 -73.69519192555876,41.060928101621457,137.025890147313476 -73.688091591377116,41.052329480818976,136.991467502899468 -73.68089125008413,41.043429872185072,136.955985051579773 -73.671389800487248,41.03173038708595,136.909294095821679 -73.656288104220138,41.01443115706514,136.839167107827961 -73.655588067821284,41.013331203963155,136.834971758536994 -73.658252780727835,40.986806179918261,136.75363480951637 -73.656888662363272,40.981232400430351,136.734581192024052 -73.660888628114947,40.970033790013424,136.70314540527761 -73.66298866106186,40.967833856118986,136.698305554687977 -73.665388747344196,40.968833799397132,136.703916844911873 -73.678990096948382,40.964433856852594,136.70380188152194 -73.684190062882735,40.950634335157908,136.66533269546926 -73.687390106854991,40.946834452853111,136.656537862494588 -73.698891376317334,40.941234572360933,136.650486675091088 -73.722656988388778,40.933673668203554,136.650718729011714 -73.73269319356136,40.926635853658446,136.638624953106046 -73.757694775464543,40.914236122265194,136.6247932985425 -73.782257139619119,40.887084951627415,136.563707632943988 -73.784464370474609,40.882677656883644,136.551971160806715 -73.785722148244403,40.880166185415291,136.545282770879567 -73.786421038619835,40.870717536945293,136.515992649830878 -73.789704826990715,40.860124353721936,136.485704300925136 -73.788979037215938,40.855770280721075,136.471130006015301 -73.785672908235014,40.853432009200844,136.460319584235549 -73.783092479914956,40.848997321771307,136.443589831702411 -73.783011804220578,40.846255869028511,136.434796007350087 -73.78317304559954,40.843998197593585,136.42778648622334 -73.782124724595022,40.840531070711371,136.415695588104427 -73.783495528153381,40.839240963917334,136.412997582927346 -73.784785700550771,40.838434644112155,136.411754702217877 -73.786317811160743,40.839644096993936,136.41716596763581 -73.789140144266256,40.843675626886018,136.432865493930876 -73.791962485636247,40.848190941583852,136.450100967660546 -73.79043045854911,40.853028815750193,136.463904966600239 -73.793172159447025,40.857463501908889,136.48079836461693 -73.794704250027479,40.857221595742331,136.481597231701016 -73.79817157400727,40.853835065189166,136.474386246874928 -73.800462634411062,40.849665897297285,136.463484876789153 -73.807833155562363,40.851139841451456,136.475711168721318 -73.813729518685051,40.848376041720002,136.472966513596475 -73.81649329515011,40.836768271190387,136.438912798650563 -73.816124715187598,40.832714771637619,136.425653107464314 -73.812807909922896,40.827003050439266,136.404101960361004 -73.805437318708655,40.820185857663489,136.374882508069277 -73.798251035765944,40.817237916386098,136.358151871711016 -73.78688171638683,40.802502986449817,136.299652684479952 -73.782287147800901,40.796548307517334,136.276007268577814 -73.7769493715751,40.796916448351112,136.27171543892473 -73.769348440567526,40.80234543032654,136.28120922204107 -73.76921887220756,40.802437974817614,136.281371067278087 -73.754949418503742,40.822581509589774,136.330845286138356 -73.755318016582564,40.82847750733854,136.349969366565347 -73.729192092083622,40.854539604085751,136.406124756671488 -73.727592097677558,40.858439469345115,136.416884525679052 -73.731592336785837,40.867039112443585,136.448291936889291 -73.730492318831821,40.868139079617272,136.450663670897484 -73.714590889484626,40.87173807003888,136.445871245115995 -73.67648856099845,40.858638867767048,136.365397142246366 -73.671607577453386,40.86034829491625,136.365856937132776 -73.656787062272556,40.865538763327706,136.367258224636316 -73.655287213941847,40.879838235036758,136.411171446554363 -73.641987011273159,40.894237796910019,136.443381049670279 -73.634685868214845,40.899836643537661,136.453737863339484 -73.627886679652789,40.901035652226916,136.450632006861269 -73.618485375422907,40.899536783333353,136.436313604004681 -73.602783969191535,40.904436722934257,136.435922003351152 -73.596083828966883,40.908936606300273,136.443408820778131 -73.570882179826327,40.917036500510726,136.443551514297724 -73.567082070614973,40.917436515521374,136.440966515801847 -73.548980426509701,40.910336926463863,136.400057019665837 -73.520178633787467,40.915936943132849,136.388657179661095 -73.515910484601179,40.914460032541648,136.379642262123525 -73.500852103171439,40.919804950093891,136.381375152617693 -73.497972550196053,40.924439627646997,136.393183053471148 -73.497553076422648,40.925114776083795,136.394903075881302 -73.492676184869225,40.943735113335229,136.449102157726884 -73.486276050535764,40.948035002041038,136.456280977465212 -73.485708796491124,40.947702782946983,136.454652549698949 -73.481021183826897,40.944957426702047,136.441195605322719 -73.479275782623986,40.943935211676539,136.436184948310256 -73.47532092884461,40.942694128477491,136.428245399147272 -73.464618276428979,40.939335500595092,136.406760649755597 -73.461512805859002,40.93901402255586,136.402601104229689 -73.457432769951524,40.938591657595097,136.397136632353067 -73.445935355465437,40.937401446228407,136.381740572862327 -73.438418862807637,40.936623339531039,136.371677435934544 -73.437573420462343,40.93653581940859,136.370545658282936 -73.430772144926095,40.931436065064226,136.347477488219738 -73.430574616949258,40.929841702350281,136.34221273753792 -73.429745000263893,40.923145385408688,136.320098700001836 -73.406982294708115,40.921874612640124,136.29308352060616 -73.403871267202177,40.926736454034014,136.305394879542291 -73.404370516511449,40.943835806366295,136.360224498435855 -73.401770599600596,40.955635382886797,136.395078571513295 -73.400670582774978,40.956835346417748,136.397780013270676 -73.393770375393729,40.956935397025404,136.391141111031175 -73.375369576295554,40.939236207864724,136.31637458410114 -73.366868238397942,40.933336496831991,136.289062118157744 -73.353667770698522,40.928336788885026,136.259875427931547 -73.346467533738576,40.926936898202896,136.248175018467009 -73.345067518712241,40.928936833915252,136.253122153691947 -73.332266162807187,40.931236847952881,136.247546562924981 -73.29596644071124,40.926137668624705,136.194825840182602 -73.295963994570812,40.926137325004753,136.194822289049625 -73.230187739532042,40.906762570058937,136.067141029052436 -73.149894630307344,40.930539302998952,136.062350537627935 -73.147142630754047,40.936715092227821,136.079243787564337 -73.145573865367439,40.957482323857228,136.143717991188169 -73.141685887994967,40.967817965964478,136.172689351253211 -73.111268043604269,40.973577987246273,136.160615597851574 -73.082481185319722,40.974698169826617,136.135452543385327 -73.044598888088316,40.963825873269371,136.063120936974883 -73.041342820598643,40.966138811782059,136.067233537323773 -72.996827496122762,40.968139083100709,136.0292893294245 -72.956058253048923,40.967787413105796,135.987651852890849 -72.914727947577347,40.964107871902378,135.934923244640231 -72.889143176684939,40.964604051577702,135.911137676797807 -72.826948377611899,40.971436276628069,135.871320162899792 -72.774993736818203,40.966956845954741,135.805731758475304 -72.760920329164236,40.976976875014714,135.823748833499849 -72.715312994464725,40.987238214297008,135.811467637307942 -72.690228939630614,40.991418807474226,135.800087329931557 -72.665904920331457,40.989138775122335,135.768905971199274 -72.63626008619616,40.992179293297156,135.749461135827005 -72.586211418709425,40.999230089502113,135.722812013700604 -72.56628997043947,41.011150796272595,135.741254705004394 -72.561857914567412,41.017086608246373,135.755814524367452 -72.550736634049869,41.021486528989627,135.758936224505305 -72.522431008091715,41.039294080370524,135.787937629036605 -72.478187851442087,41.053853875388214,135.791068125516176 -72.461659544069903,41.068653449525755,135.822040056809783 -72.446123324370859,41.087756855941748,135.867668311111629 -72.418825514256213,41.089595996090061,135.846938225440681 -72.397879985101355,41.09794784488686,135.853126532398164 -72.356966231214315,41.135274767728184,135.932061512023211 -72.334229593461743,41.139657778192728,135.923937270417809 -72.323259645535813,41.142303359454431,135.921711650677025 -72.291986537477996,41.157513436503869,135.939760776236653 -72.279666197852777,41.160361424542742,135.936888691037893 -72.273873970838409,41.15664960654285,135.91948932223022 -72.268976809222053,41.155785675921287,135.912006793543696 -72.246224205905492,41.16285658640178,135.912483558058739 -72.239086964070921,41.161129704824091,135.900099214166403 -72.238606908669141,41.158073821979166,135.889922518283129 -72.254448137468074,41.138778418529114,135.843891115859151 -72.266000376302486,41.130122652500198,135.827539785765111 -72.301251240408604,41.113914987201426,135.81012078654021 -72.300921493791265,41.133699253656438,135.872716758400202 -72.307259257028406,41.139480080478322,135.897233716212213 -72.313612351624684,41.140185884576489,135.905632277950644 -72.31902421442706,41.138774142866474,135.906388926319778 -72.327508309496892,41.133802047221074,135.898806992918253 -72.3361494155846,41.121914423590397,135.86939172167331 -72.33605523468222,41.108557921461653,135.826824425719678 -72.318115442480945,41.090300738103466,135.751339287497103 -72.298594743703447,41.082684170484043,135.70817260723561 -72.281249204223144,41.082044326266214,135.689328595995903 -72.277585043187216,41.078364491251619,135.674064516089857 -72.283969121154641,41.06951677249711,135.652078657411039 -72.274532615584647,41.053176453569641,135.590893690474331 -72.261390087934231,41.043708906611734,135.547998974099755 -72.242126534197425,41.046413951910779,135.537967001087964 -72.230238164809293,41.045999057584226,135.525140767917037 -72.218349751359767,41.042255287410207,135.501709938980639 -72.202732163083681,41.033919716810047,135.460038773715496 -72.191435821271156,41.034223791028104,135.450089880265296 -72.184138637995673,41.03726373285172,135.452730879187584 -72.180362559556784,41.0400796563816,135.45806027110666 -72.175754520290866,41.047791403612649,135.478192104026675 -72.163770246201963,41.054831231823606,135.489060366526246 -72.161242177211733,41.055471227096902,135.488660333678126 -72.154728951699283,41.053503349752532,135.476103756576777 -72.138168283742289,41.041328929004024,135.421319118700922 -72.136008106834524,41.032929258680952,135.392451732419431 -72.138280079219925,41.025553516743997,135.371120048686862 -72.117238117462662,41.001442575919043,135.273898761719465 -72.109877816997525,40.995730844840701,135.248571060597897 -72.10302957346822,40.993155992709113,135.23374961130321 -72.096325366076627,40.992996049252113,135.226777292788029 -72.083908052834687,40.998099952213316,135.231107129715383 -72.080820049874475,41.005075714964448,135.250399990007281 -72.080076799479514,41.008083822835324,135.259285282343626 -72.077044008608169,41.010739531956091,135.264840894378722 -72.062316461401508,41.011089129519959,135.251780640333891 -72.058802393226117,41.006435830115016,135.233546506613493 -72.057943819596588,41.00653993593577,135.233052671886981 -72.056056519807612,41.006883072458763,135.232332052662969 -72.052453489821659,41.008084030995747,135.232699160464108 -72.050394658819172,41.011343718400674,135.241123319603503 -72.052416890769649,41.017387898005239,135.262358964420855 -72.052796820171068,41.022152076382099,135.27792773488909 -72.048335940673326,41.024210857174857,135.280207093805075 -72.03666016472549,41.022405429738129,135.263220202177763 -72.015880503579595,41.029994197150742,135.267470491118729 -72.000127052379611,41.041314970591166,135.28846672270447 -71.96790663401184,41.049417789429796,135.283413580618799 -71.961943832861408,41.055922361256421,135.298449127003551 -71.961221134334608,41.061523486640233,135.315622625872493 -71.962429215336314,41.065666346805912,135.329993180930614 -71.960461249628793,41.072882092942713,135.351118529215455 -71.939115675379895,41.079058023485338,135.350372322835028 -71.920250136795005,41.082162049670437,135.342219633981586 -71.900120522758641,41.08248218884254,135.323994651436806 -71.896360361988116,41.079026345629757,135.309380142018199 -71.890407157132159,41.077346452788412,135.298333647660911 -71.870421534642162,41.076691626981592,135.27715552970767 -71.86533340282233,41.078563595461205,135.278268809430301 -71.85835714453863,41.075203772732245,135.260892373509705 -71.857077066501901,41.072243892457905,135.250228160060942 -71.874773370524153,41.053924441870954,135.208672332577407 -71.904600127892081,41.041812669512723,135.198528586886823 -71.936554030249184,41.035828652824918,135.210011668503284 -72.03022445356153,41.001556227492806,135.190482527948916 -72.115317694532223,40.973732626020777,135.183580933138728 -72.396726903053974,40.868309447210379,135.119742883369327 -72.470874846547133,40.844389782546131,135.115718656219542 -72.574322604875135,40.814901103883052,135.122853299602866 -72.746094211032784,40.768741530049304,135.144536686129868 -72.75399840411238,40.765221602354934,135.141094867140055 -72.758062538051732,40.76602154090628,135.147675216197968 -72.769038834062073,40.763237561788259,135.149632272310555 -72.864053333857569,40.734612913375699,135.152277926914394 -72.924104890371041,40.714933195583427,135.149036023765802 -73.013438144417933,40.681302780614558,135.130511684343219 -73.055857249205332,40.668022956438946,135.130423516966403 -73.146163026120234,40.647143085535511,135.154121125116944 -73.209338407512774,40.632536114121315,135.170877994969487 -73.240039255668179,40.626752095310273,135.183283186517656 -73.263005899328689,40.623128054383642,135.194836513139307 -73.265393177524686,40.623089229653246,135.19712040387094 -73.307297224270897,40.622407736438454,135.237241457216442 -73.310641348886577,40.624183642711039,135.246305060572922 -73.320158813990048,40.637446063482685,135.298369028605521 -73.352367712977113,40.632151013414195,135.313988822512329 -73.392870757416119,40.619152191742103,135.313395930454135 -73.424710690085234,40.611519839194401,135.321248176507652 -73.451274326021448,40.605152267952548,135.327827755361795 -73.563280425348452,40.585354143923588,135.378422061912715 -73.584682108790588,40.588353861031898,135.409845633432269 -73.611782936203227,40.58935360947364,135.440702128224075 -73.64758494460537,40.584454514359827,135.461606680415571 -73.702050592211251,40.585260166456976,135.519912660121918 -73.755690209587186,40.586053599217706,135.57743061799556 -73.755237483319419,40.588006620711909,135.583210199140012 -73.754263250620255,40.592209375350883,135.595646583475173 -73.775842900423953,40.592408196891746,135.618425449356437 -73.802345249367221,40.587308201454789,135.629340929910541 -73.807749773202929,40.586268178644787,135.631570058874786 -73.835324498315686,40.578850243477632,135.636210707947612 -73.879823608430058,40.562537514100299,135.629877832718194 -73.935431058085555,40.546824673508027,135.63700027577579 -73.935385194877753,40.556930286987729,135.669259836897254 -73.933648027341718,40.561915609505562,135.683401527814567 -73.936605463957122,40.566562568981595,135.701306187547743 -73.939517156206179,40.567810320743035,135.708299512974918 -73.945477635118408,40.570364573530817,135.722615619190037 -73.950969972323165,40.575011516950127,135.743134801276028 -73.960300523114128,40.574330710063819,135.75059624761343 -73.992267103024076,40.571998257266735,135.776182655245066 -74.002977427137338,40.572271161410178,135.788131575100124 -74.009951666233931,40.574494020716863,135.802446966059506 -74.012943778806942,40.57617593248834,135.810914866626263 -74.013917857912091,40.57981678541924,135.823550888337195 -74.008197761573797,40.585263622712262,135.835027715191245 -74.007272138185328,40.586414487172718,135.837745339609683 -74.002513018017524,40.592331691034218,135.851717531681061 -74.004203010397191,40.597401108516152,135.869650334119797 -74.011848106635256,40.602435936979511,135.893629182130098 -74.033778812717671,40.60606762301402,135.927909962832928 -74.040513569205444,40.614580630502466,135.962045803666115 -74.043335342759136,40.626493212349928,136.002970179542899 -74.039259861019701,40.638719344419599,136.037746413610876 -74.036791581601534,40.642421602876297,136.046998700127006 -74.032989763307157,40.648124082882049,136.061248710379004 -74.019195452961583,40.660663787949474,136.086962795816362 -74.021390302525376,40.680413620351146,136.152171774767339 -74.023835040457485,40.68291031799351,136.162652728147805 -74.024905814373568,40.684003849809152,136.167243158444762 -74.025750839939391,40.68865082271396,136.1829200880602 -74.022644558713736,40.695147627459328,136.200404475443065 -74.019413721440941,40.697099928922832,136.203284747898579 -74.017723886130213,40.703436762798795,136.221720384433866 -74.020450167740663,40.708627707148693,136.241065935231745 -74.025467011722114,40.71107868376339,136.254052000120282 -74.014708341766024,40.758241976076953,136.393026913516223 -74.010108300757352,40.765241746969679,136.410542203113437 -74.001829176285682,40.778128009641243,136.442977424710989 -73.993953595643859,40.79038616606443,136.4738256232813 -73.987787665640525,40.799983291558028,136.497973104007542 -73.949204787187639,40.860036640557439,136.648992393165827 -73.93900470706177,40.876336105646452,136.690236631780863 -73.934331592016676,40.883711829029714,136.708837673068047 -73.934329669062933,40.883714864087679,136.708845325745642 -73.928393956660983,40.89731790846276,136.74590050149709 -73.920628693708906,40.915113787520923,136.794362362474203 -73.918828696600002,40.919212647187891,136.805510288104415 -73.89490308621788,40.99882983797923,137.033178265206516 -73.90360434980127,40.998929764454125,137.04240757226944 -73.912804682899761,41.002929540145828,137.064491828903556 -74.041978384775376,41.060715328523798,137.379755363799632 -74.041983384954136,41.060717328408344,137.379766821861267 -74.093417255515575,41.083524056676346,137.504681905731559 -74.097717411839113,41.085423950596407,137.515104428865016 -74.214308187529497,41.135453084734792,137.793057966046035 -74.235409394973402,41.144507618351973,137.843372846022248 -74.366604778385948,41.205021317874206,138.169521568343043 -74.393040177982584,41.217214610978033,138.235246143303812 -74.458528617571574,41.249843854842474,138.405678079463542 -74.695867339321126,41.359035825514454,138.994998739100993 -74.690720244879827,41.363170714190154,139.002546780742705 -74.692082369994722,41.368936488263273,139.021993160247803 -74.753518084124195,41.4281277774841,139.271072270348668 -74.756906095236786,41.428413656574307,139.275507930666208 -74.800122543648399,41.4320602438059,139.332117745652795 -74.877681020805085,41.441946230186325,139.444269361905754 -74.892908603994385,41.450460786825239,139.486797138117254 -74.913478617250703,41.477211621994691,139.591741898097098 -74.940722550995559,41.484977106036119,139.644548286683857 -74.985190227167195,41.507903883415466,139.762665032409132 -75.041456861275847,41.571290064024247,140.018914021551609 -75.051041496588937,41.608493851943287,140.144492487423122 -75.054044969450359,41.620152152657965,140.183822144754231 -75.049167023974192,41.633610697049797,140.220429653301835 -75.054400990401305,41.754133216892072,140.599155940115452 -75.091771014229437,41.813583720503779,140.822117606177926 -75.115372204383831,41.84517436392742,140.944415911100805 -75.141215112873368,41.853668834028248,140.997785158455372 -75.147420282177535,41.852489824532881,141.00067541655153 -75.263983317812418,41.886697582521762,141.228892272338271 -75.280073625214996,41.940503480344489,141.411458653397858 -75.293569261762116,41.95548281883152,141.471754528582096 -75.342850352934988,41.994845963304037,141.644708617590368 -75.360561982470855,42.001028586581533,141.682396620512009 -75.432946164428785,42.000945969058492,141.758689573965967 -75.43720129256694,42.000935932903054,141.763163877651095 -75.478130527142355,42.000989579418416,141.806692101992667 -75.484136806675153,42.000841065744417,141.812604554928839 -75.484724723348151,42.000826528680776,141.813183349557221 -75.981251645720505,42.000613236101323,142.343011677265167 -75.984083730638304,42.000613211388924,142.34606018755585 -76.106845406407402,42.000435144639802,142.477910275571048 -76.124701942604972,42.00053098469904,142.497501450590789 -76.132207167308252,42.000530918923957,142.505615454167128 -76.146525798538306,42.000489832034638,142.520975342951715 -76.344734513468822,41.999921072495638,142.734277019277215 -76.350910698977529,41.999985015675243,142.741193192079663 -76.463171058687323,42.000508004528491,142.865164131857455 -76.467556190968978,42.000598962383222,142.870230074971914 -76.55864306209385,42.001722019965491,142.973257747478783 -76.559136940022569,42.001728109238421,142.973817081190646 -76.816904637445177,42.003243756995012,143.261737491004169 -76.83610620981446,42.003343581557139,143.283229838125408 -76.921813756058086,42.003343813634913,143.37794983945787 -76.922913787110829,42.003243807433421,143.378862711600959 -76.928113941522597,42.003243760780762,143.384617231786251 -76.938114238444413,42.003243671044451,143.395686042495072 -76.943615400154385,42.003143625336307,143.401472073048353 -76.966717081069277,42.002843428906878,143.426145690493286 -76.966759055602054,42.002842972206103,143.426190806552768 -77.008568315608414,42.002388069462803,143.471157746389508 -77.008667319014265,42.002417067508759,143.471355776302516 -77.125728766178412,42.000963066361535,143.597010362893343 -77.506355032123011,42.001634588580124,144.025008328258991 -77.611077904671546,42.001082276932657,144.141335521824658 -77.750985220141345,42.000344397061987,144.2972910720855 -77.823855359993146,42.000108735834665,144.379216650500894 -77.833086631060965,42.000085651723651,144.389627591706812 -78.032025488676993,42.000951783535932,144.618768074549735 -78.03223949533853,42.000974780707359,144.619081960059702 -78.125795256135362,42.002010875434003,144.729170986451209 -78.207673875234647,42.001547173430794,144.821602914482355 -78.309198608855766,42.000972207497533,144.936507957987487 -78.597729042551265,42.001431488916545,145.271152355708182 -78.875846099052808,41.999110950676005,145.587869981303811 -78.919942584749904,41.999512445170303,145.640625267289579 -79.053565533082136,42.000729066963437,145.800852940417826 -79.062357542919912,42.000809117057607,145.811414771713316 -79.53955133163781,42.000072573921223,146.37301048822701 -79.552491707238872,42.0002114440261,146.388814199715853 -79.611947281553697,42.000534204467506,146.460547143593431 -79.626409844894496,42.000612715782779,146.478012620471418 -79.626395843362701,42.000547718332903,146.477801291272044 -79.762486762465997,42.000610399085971,146.640441384166479 -79.763237094539704,42.132784490705191,147.036188836209476 -79.762976428604631,42.152249773647746,147.093922267667949 -79.762874635757285,42.164212332686553,147.129459233954549 -79.763036827467644,42.174855938065342,147.161370924673975 -79.76304493975195,42.181229702698609,147.180370736867189 -79.762949006159317,42.18516355844357,147.191975530236959 -79.763269062045808,42.244588364916751,147.36925314925611 -79.763081203055833,42.252888061236376,147.393716036342084 -79.76306852940958,42.271393380552688,147.448725723661482 -79.71894151640447,42.286244264421974,147.440365863963962 -79.646472965721372,42.317163834271078,147.446194904856384 -79.595105937009819,42.343173379955061,147.462595933116972 -79.547374937526328,42.364949046109722,147.470804218202829 -79.512111248884111,42.383904694936781,147.485433684661984 -79.475905584449748,42.405822245181241,147.507783753797412 -79.454644087918993,42.412688200585634,147.50310030952096 -79.430229682273833,42.429910808671202,147.52546096034348 -79.406568433817853,42.454811130111608,147.571499736048281 -79.383052982840923,42.468020876723116,147.583034979179502 -79.363239648087571,42.481724569752863,147.600399289280176 -79.353098652219032,42.490449627189257,147.614364155568182 -79.343425642821856,42.491193744914291,147.605216250754893 -79.336238005140743,42.489850535481516,147.592798030003905 -79.332591912246798,42.490605543301122,147.590758653357625 -79.32418776837676,42.496324416646452,147.59785779286176 -79.318848838312221,42.501413743046321,147.606686470098794 -79.28447190082062,42.512757203508045,147.600026405416429 -79.26573156491061,42.524687951361834,147.613450525328517 -79.243996082518365,42.533285849299688,147.613501524552703 -79.224301584091208,42.537615882409682,147.603304596617818 -79.194337881984794,42.547409816446887,147.59732089471072 -79.14982771892565,42.555200963356434,147.568461249582469 -79.139673612419301,42.565990670324496,147.588601024821401 -79.137829775312937,42.571221878179102,147.601954813115299 -79.130734519517318,42.59135205083755,147.653327989391983 -79.127365719762949,42.592464830587886,147.652699083089828 -79.123025651021138,42.595761753158868,147.657408820465207 -79.114817618576211,42.607521407006558,147.682678085751832 -79.112465679862126,42.614885163484573,147.701744934543967 -79.07986519729107,42.641584513352733,147.742853463627398 -79.074365034409553,42.641484569970835,147.736162985675037 -79.064863840917454,42.646284488285026,147.739325574599206 -79.063365214452119,42.669883651486437,147.807410193607211 -79.049964189835094,42.690683031135961,147.853360552340746 -79.019963529439906,42.703082873769617,147.855213219299912 -79.007263209889217,42.706082888135988,147.849356925114989 -78.992261783773586,42.706883003804506,147.834335437044501 -78.945259874339555,42.733482499632167,147.858551818877459 -78.919258204057954,42.738782559281454,147.844149872660637 -78.869656329386643,42.771781851532246,147.884387521073222 -78.854555127493995,42.785481505428514,147.907441434450448 -78.852455203802265,42.793281246087545,147.928058163262904 -78.857556504576792,42.801780892572253,147.959039483219385 -78.860456597048497,42.802180850373652,147.963563987053931 -78.864756943514237,42.814580365011331,148.005127662792802 -78.866757245501162,42.828279855461219,148.047863972373307 -78.861546240283744,42.836631606804247,148.066500185057521 -78.860557322101002,42.842879392879745,148.083792048506439 -78.866693266726131,42.85387902318746,148.123304368928075 -78.873328959062832,42.854826851296579,148.133745552971959 -78.883659463186547,42.868778244910878,148.186782187782228 -78.892758044435183,42.886364529254926,148.249093411490321 -78.913561687967118,42.888076267650575,148.278116198256612 -78.906861729468304,42.90147585402751,148.309859410859644 -78.906763144167442,42.924875020548313,148.378636775538325 -78.910263424213312,42.934774633999709,148.411803726106882 -78.919963953390237,42.948374055979762,148.462989373132586 -78.922311488137098,42.949938820035683,148.470296553336084 -78.933465512587617,42.957373605189844,148.505013870075345 -78.973630893018012,42.968319827399867,148.583497790619731 -79.01267137507709,42.986770793127299,148.682752430438995 -79.021072793461784,42.996270373921618,148.720347263850272 -79.029463637903248,43.068408545243692,148.941665629856288 -79.029763395758522,43.07098563717674,148.949565137736499 -79.05951010044447,43.076741673528467,149.000747296959162 -79.067380549038177,43.09248078099283,149.055936665274203 -79.057879263446864,43.128364332601691,149.150036143139005 -79.045178091255082,43.139564060089199,149.168171123601496 -79.04347814252958,43.145163878707187,149.182597037404776 -79.059513070968364,43.240429058154312,149.479460585862398 -79.07158413429822,43.263958417585926,149.562012319453061 -79.020961840672754,43.275190515988186,149.536569380201399 -78.972978557187574,43.282758717107768,149.503555491566658 -78.93187555734599,43.294758695461532,149.491437191143632 -78.86047176102123,43.312459767989594,149.461352338083088 -78.837370211530512,43.319959729243209,149.456831449642777 -78.835170129823339,43.319059782110642,149.45169189479202 -78.778866629756507,43.328559994973759,149.415141246281564 -78.748264856249264,43.336060028682915,149.402141081169248 -78.697961481562345,43.342760280771707,149.36441673990339 -78.635449917432908,43.359129312302642,149.341136744245887 -78.548496541861979,43.37104673448254,149.277306282892823 -78.489956890006866,43.376269115639488,149.226301219314337 -78.483625694957254,43.375931188314219,149.218155220150948 -78.474198348332834,43.372318405008606,149.196944664232433 -78.466601249198831,43.372738854867755,149.189585680142045 -78.371317378592991,43.378012194025878,149.097447848878801 -78.359806989282717,43.375495392110075,149.077119266614318 -78.25173370149858,43.372374535049822,148.946385331451893 -78.234701159617885,43.370578760337871,148.92199825309217 -78.146284627788205,43.377019379309388,148.841668673790991 -78.105597410757838,43.377137762624663,148.796459916047752 -78.024694823472217,43.368085846864247,148.679512831382453 -77.99667628220773,43.366804614716216,148.64448257163167 -77.995922936931208,43.36677016573266,148.643541015684605 -77.977522454301308,43.370670204472269,148.634443554095924 -77.966322098570814,43.369570348945928,148.618731733411551 -77.954020647479226,43.364971625620157,148.59154062345624 -77.923818625251172,43.358472137943686,148.538836271502078 -77.905918087798369,43.358472307344272,148.518904916010797 -77.876416072206609,43.35117284050115,148.46466520614922 -77.817612197487492,43.345073608237072,148.381403693929315 -77.798459556344312,43.341370917839917,148.349266960285604 -77.78621017762795,43.340775054083466,148.333920734934509 -77.761308462626303,43.342675222591815,148.311873215250671 -77.758008296215493,43.338875385978874,148.297055593691766 -77.731706378136238,43.331675884321513,148.246751098893583 -77.715204765393352,43.325076269435129,148.209076764062047 -77.702504113658691,43.309776921936717,148.150043596513569 -77.66143243391393,43.284515188541214,148.030273645184934 -77.654832173666875,43.28100137305892,148.012629675678909 -77.629387264747891,43.272820897121882,147.960400790907443 -77.603232385838737,43.258468051862124,147.889220271259546 -77.578293236453433,43.244782354531281,147.821342553943396 -77.552091317061439,43.237282861544941,147.770296951755881 -77.535252789585797,43.236089060611583,147.748185405507684 -77.501988064376363,43.251882819765953,147.75803298316896 -77.477709405948772,43.256041901226858,147.743529963307083 -77.437897401746682,43.267220882580368,147.732640145346522 -77.415581791315731,43.270782966359498,147.718591736629605 -77.392080206599189,43.27788293779787,147.713685164228082 -77.386453172378694,43.278367405338734,147.708930900320411 -77.377102657813424,43.279172451215175,147.701033043675125 -77.342155775561011,43.282181252644271,147.671541471034288 -77.315681983052542,43.282550485896294,147.643596356734633 -77.305041611761283,43.279670685062392,147.623441881500185 -77.265238396377484,43.278884082006847,147.577522200532258 -77.215117999663363,43.285635311723624,147.542608004063368 -77.174146716202728,43.283030781824039,147.490163487382233 -77.144473923954649,43.289082845774686,147.475639319978654 -77.131486497808723,43.287157032868414,147.455791327171028 -77.112922976303324,43.289467124087885,147.442372409626842 -77.068350506432949,43.282459779426858,147.373137241229415 -77.034929327046086,43.272741425761517,147.30806827172637 -77.000744296237059,43.272979732404998,147.271607513539493 -76.989498008163409,43.276023730059855,147.268383090384305 -76.959454020725317,43.271529162841979,147.222479895688593 -76.953225843885079,43.272216196220135,147.217751207761467 -76.923402186619541,43.28652997270148,147.227707064710557 -76.905338756259525,43.293339902030247,147.228256523609161 -76.88796326508853,43.295414989522058,147.215570922009647 -76.878446959874736,43.294450110405087,147.202417450025678 -76.856025374621282,43.299967124556332,147.194461584091187 -76.842724090634718,43.306923005076165,147.200634724460542 -76.795755737635844,43.311156288678859,147.162405388429761 -76.770072109087081,43.31997621792587,147.160759799182415 -76.748113665573399,43.333000967365763,147.175578524358571 -76.732085383497605,43.344944700217852,147.193603068590164 -76.723547432785267,43.345209947418581,147.185193003155291 -76.6994054072334,43.345959963906196,147.161425339989364 -76.685901138132039,43.354214801528549,147.171292439103127 -76.67066891210267,43.368049461991511,147.195792177692056 -76.64371668768365,43.40276350840071,147.269366923719645 -76.631818533408079,43.414878198829847,147.292364532127976 -76.618153524631268,43.42065882942105,147.294773813337088 -76.608136983882346,43.424896069414807,147.296543911099434 -76.56386906635359,43.450058605955334,147.323399876244366 -76.532852321947217,43.461820483716224,147.324938769452274 -76.523041553856118,43.47013842417325,147.338996068574488 -76.516924254461586,43.472657226248295,147.339892680756748 -76.507899711787076,43.470648407257158,147.324329836294055 -76.488003210998428,43.476871374381716,147.321452340111136 -76.473539068433311,43.494301906764385,147.357439819723368 -76.438513279988797,43.510733661063426,147.36857661511749 -76.418620878926419,43.522805427619851,147.382997266948223 -76.411675698644757,43.524679426474364,147.381133689545095 -76.369887465608244,43.527342714878458,147.344563079066575 -76.346529538352229,43.51495835183875,147.283226067200303 -76.331948067012959,43.513499534189194,147.26344156358391 -76.298139047101728,43.514391810078997,147.230206266976893 -76.260893108947414,43.526249740726392,147.225729656405747 -76.236868450072521,43.530777802936974,147.213659807108343 -76.229735295175686,43.534508739604618,147.217122626490891 -76.2189921737764,43.546677419906075,147.241665437817574 -76.210887181336332,43.561656980372852,147.277285457588732 -76.204507239522428,43.576498530313557,147.314312282949686 -76.200172542720978,43.601973698746832,147.384829442948103 -76.197631310530284,43.651279039204148,147.527370144613087 -76.201536183086759,43.681747733088166,147.621149713173509 -76.206472769577502,43.720266610954823,147.739614627324045 -76.214242608591363,43.75502735996762,147.849925128743052 -76.230306979054973,43.805647498111576,148.015410997904837 -76.251174995989416,43.827224577993341,148.100659118965268 -76.268017728955087,43.839557007531724,148.154547381214797 -76.278853117585328,43.842715802023967,148.175221521407366 -76.284348336320207,43.845433858532971,148.188976802863181 -76.285522686178567,43.852478779161721,148.210851496085525 -76.283761478077849,43.860110790965336,148.231348359957337 -76.277303298333521,43.864807478392443,148.238297844305634 -76.270257992378262,43.870091235559059,148.246348951943219 -76.262625585272716,43.874787933752465,148.25206402502954 -76.250883330267399,43.877136343682132,148.246579208411276 -76.244425109516172,43.879484728229556,148.246658958494663 -76.235618360257448,43.878897721295864,148.23567430768162 -76.228525155561755,43.876571116561401,148.221399741247296 -76.220353175773852,43.868330451365082,148.188668988645077 -76.203296201040814,43.866408689172879,148.165104703977704 -76.193815983000931,43.870685630979231,148.167670425958931 -76.181642752658291,43.879039459702781,148.179352924227715 -76.159287236847945,43.889052325095697,148.185210851021111 -76.14654386334783,43.890191402442937,148.175176554359496 -76.134304560111246,43.894485368812219,148.174917389638722 -76.128322460745295,43.899399257490003,148.183037999086082 -76.126060649412807,43.914282776571483,148.224251477979124 -76.131484169999922,43.934591043616592,148.289380528964102 -76.13473558269979,43.941864357285908,148.314070450142026 -76.135397508982621,43.947122586472872,148.330148328095675 -76.135334612263051,43.956234264628087,148.356736838817596 -76.140125022257308,43.963618753319452,148.38335245847702 -76.147110891211497,43.966213269095945,148.398258053697646 -76.17084189310772,43.963709706408338,148.415809701196849 -76.185914514522125,43.972635269223666,148.457709020934999 -76.229092507718249,43.984243068905513,148.53693968243897 -76.237906238756395,43.979406567848578,148.5320646436885 -76.245481246212719,43.977309614369865,148.53389495331794 -76.2533605005098,43.977309542479809,148.542173350229859 -76.259348743675474,43.97762464305567,148.549386939965189 -76.265337014416517,43.979515489204744,148.561204755678773 -76.269749448421621,43.982351797087702,148.574128096923232 -76.269745386047674,43.988783962220737,148.592910477891564 -76.267776470661602,43.997083701450947,148.61507866345346 -76.270715659047994,44.002653487600682,148.634430233389139 -76.282972178360524,44.010682106130453,148.670749554410577 -76.28886539971279,44.012924976997525,148.683490944094956 -76.297800177033551,44.014811986192356,148.698392200283706 -76.300006452800162,44.019224078311822,148.713587450794876 -76.301267219125307,44.02426646516188,148.729626067914069 -76.300637030310639,44.032460372954574,148.752868552692235 -76.298031631718956,44.046958450749024,148.792416702024639 -76.301577782563157,44.058691519994063,148.830355393700302 -76.305252712344071,44.06094785435176,148.84079537447542 -76.36135368520344,44.072409319443608,148.933200104162097 -76.361845995782218,44.089145754791261,148.982470782473683 -76.368020003073369,44.101910722034347,149.026137907989323 -76.364883514588271,44.113196922706543,149.055694154463708 -76.359211772384256,44.124837689296541,149.083609749563038 -76.356727643796944,44.134758277354244,149.109865724109113 -76.313695477345007,44.20054247956233,149.255973826162517 -76.287594752644353,44.205271561680711,149.242356872186065 -76.246533478334996,44.205167941504655,149.199056750163436 -76.207822470532236,44.216041934390482,149.19018145557493 -76.192373109863738,44.222742853068816,149.193518157117069 -76.165309594824976,44.241101490914197,149.218624006956816 -76.119180140094443,44.296347081339661,149.331026345491409 -76.046270525456791,44.333220527902562,149.362275649793446 -76.002039428164409,44.349030409341246,149.362281890586019 -75.979321708864575,44.348376637973836,149.336847034282982 -75.971225385059768,44.344331845225213,149.316720800474286 -75.950579852999553,44.350625825518648,149.313620516099036 -75.914024048377144,44.369580533118551,149.330839472822845 -75.872534226809989,44.396335029208984,149.365643482655287 -75.861097947366417,44.404777721591906,149.378343822434545 -75.821867305764712,44.433739259701618,149.421933081001043 -75.808815595185578,44.473138085303155,149.522717622108757 -75.766532063228738,44.517778007423033,149.608592904172838 -75.697621813750217,44.569074957017321,149.686473062261939 -75.492232938786103,44.714436092520977,149.897480119019747 -75.434154767423664,44.751550416802317,149.945817425847054 -75.334772630206785,44.807865496421108,150.007995462045074 -75.303002985779003,44.828124130421408,150.034444631077349 -75.308658345573335,44.838299752240921,150.069483082741499 -75.284163790106859,44.850642576006642,150.080435987561941 -75.217512183154099,44.878964266107928,150.095165097154677 -75.190338420842821,44.884523331899203,150.083953526802361 -75.140892095305958,44.898162338435192,150.073778328485787 -75.065848295107443,44.93093496183738,150.093304571695626 -75.028146400977761,44.948053752058271,150.105072022415698 -75.006175912468677,44.959887570610455,150.117305560037494 -75.00067587093227,44.967406379798462,150.133498476818204 -75.000290960102561,44.973123200835026,150.149585474282503 -74.99377685602272,44.978934073716012,150.159847548231483 -74.973483316051897,44.984887065252195,150.156827854923904 -74.827594244436753,45.017335332760972,150.105746088549495 -74.80264042621134,45.016056595398148,150.077408333308995 -74.725992665006288,45.007401719440267,149.976850276812911 -74.703030050300811,45.004808837365843,149.946754620410502 -74.29230572190761,44.993548811097156,149.512386526912451 -74.147808080685436,44.992992089491871,149.370634996332228 -74.028382196699994,44.997258490615089,149.267656829208136 -73.875582504618677,45.002717140439074,149.136574618518353 -73.625565500635645,45.005450202632545,148.905737269669771 -73.344092530682602,45.012338382996845,148.659307354129851 -73.351156480395119,44.995802845723226,148.617898551747203 -73.360417916808629,44.917185502163157,148.397893767803907 -73.370613337447267,44.830639924132662,148.155296819284558 -73.340922543257108,44.780398778205964,147.980570036917925 -73.366290102777512,44.704801983272418,147.783642205409706 -73.391194495552682,44.619863501917756,147.558639892376959 -73.375351278837982,44.57696701778562,147.417852383106947 -73.362914157382107,44.564576225117854,147.369692628271878 -73.357749425326361,44.559430731868005,147.349690605886281 -73.339595034299037,44.548359909243977,147.299961755052209 -73.339590660746211,44.548357242185212,147.299949772655964 -73.307665873606183,44.501849013866021,147.133061576634645 -73.300843267111176,44.478167837817658,147.056982018053532 -73.294570449072779,44.440420114235884,146.940002763643861 -73.29698835402661,44.429856436832438,146.91121406853199 -73.315973312026244,44.390031571872875,146.812015807256103 -73.324223689835065,44.266318562583137,146.455044742673635 -73.325636267588706,44.245137219946045,146.393833588808775 -73.351761815042266,44.227466580339239,146.366565649397671 -73.391539515872893,44.192410397472791,146.300984205678105 -73.404641950393454,44.154627585765368,146.201788336038589 + + + Ohio + + + Ohio + 0400000US39 + 39 + 40860.694000000003143 + + -82.701396631966489,41.613718555775996,149.145842364057899 -82.692311365737254,41.612859682617724,149.131552750244737 -82.681338203373841,41.620498503356139,149.140006938949227 -82.678960119733716,41.619514565629629,149.134018814191222 -82.68185677084783,41.59614043157422,149.068482156842947 -82.687220783700653,41.588775658606338,149.053579847328365 -82.689931833675971,41.58742568238079,149.053082105703652 -82.703215191312268,41.586966562735206,149.068899044767022 -82.727016026136297,41.596727942239632,149.128626870922744 -82.73695540611736,41.602510617658616,149.158625912852585 -82.736896448177504,41.604889527048805,149.165598643943667 -82.719991281134682,41.621157078419046,149.191923656500876 -82.708498963980787,41.621137198059195,149.177004399709404 -82.704626822801444,41.619262309940922,149.166443864814937 -82.701396631966489,41.613718555775996,149.145842364057899-82.825923932625301,41.66095345663912,149.446829464286566 -82.809779529518607,41.663207537899382,149.432582589797676 -82.806371483579071,41.665806473800224,149.43585477117449 -82.797525271058163,41.667498500829154,149.429404492489994 -82.794261157485664,41.666217583699577,149.421390734612942 -82.795390148090405,41.664021656017646,149.41635799780488 -82.798685159591955,41.659722786362309,149.407909653149545 -82.82820352093006,41.635227418224403,149.373684706166387 -82.835854651005249,41.630857506303911,149.370672482997179 -82.843291837124298,41.629849467769652,149.377332927659154 -82.84479522309833,41.648534736257993,149.434560031630099 -82.835285147851621,41.658646447784967,149.45213742274791 -82.825923932625301,41.66095345663912,149.446829464286566-82.804534358767143,41.695361079506704,149.52084250189364 -82.787496719874909,41.698664146855229,149.508556699380279 -82.783911890674858,41.695527722597497,149.494650075212121 -82.791753500875302,41.691495040514923,149.492877138778567 -82.802731716748625,41.684101827524145,149.48523302283138 -82.806329673023257,41.676456332957343,149.467289798893034 -82.806615631273644,41.67344517900105,149.458757614716887 -82.814973837083386,41.672119142992564,149.465660348534584 -82.827636447840788,41.686298469177331,149.523972083814442 -82.81399820559416,41.693526334441749,149.52767124120146 -82.804534358767143,41.695361079506704,149.52084250189364-82.814682806404534,41.724991125258057,149.62149806227535 -82.811680669142206,41.722047268849018,149.608920828439295 -82.810062399004494,41.70985675125074,149.570823474787176 -82.817326569643598,41.708255736972085,149.575496225617826 -82.836312134341355,41.710494454199541,149.606688332743943 -82.836771181264879,41.71234637867645,149.612751854583621 -82.833903191559813,41.717173224096229,149.623291895724833 -82.82691413144849,41.724333023295266,149.635384505614638 -82.821603017218393,41.726072012087691,149.633644727058709 -82.814682806404534,41.724991125258057,149.62149806227535-81.750810201933334,39.18237770182472,140.45663589425385 -81.748372789217001,39.097017493524795,140.182660677470267 -81.748372772570335,39.097016910545037,140.182658806443214 -81.81347631181886,39.083716840962431,140.225925015285611 -81.815276224057499,39.075117183412168,140.200980085879564 -81.812775937049338,39.061217789137018,140.153537987731397 -81.80447552608014,39.04931836709622,140.104809305630624 -81.794424140487109,39.041993770392274,140.068310799077153 -81.77397336765307,39.027820560448951,139.996358760632575 -81.765371964842444,39.016921099722786,139.95038057025522 -81.75724846155299,38.935190607796656,139.679375513456762 -81.761112444122602,38.927473895164219,139.659851811826229 -81.875976820979247,38.882820673744838,139.668800933286548 -81.909765682504727,38.880106463949929,139.704767640680075 -81.92808837917967,38.893247734412938,139.770893788896501 -81.92947347549844,38.897016562369529,139.784741582348943 -81.92779252395357,38.902956328377925,139.801457319408655 -81.902031196813752,38.925982606667077,139.840822578407824 -81.89959121435966,38.931247408633453,139.854377286508679 -81.901716398297737,38.939315048921465,139.882884836755693 -81.920905398088522,38.970136569001006,140.00635174382478 -81.936742153971537,38.991141534454677,140.0940873157233 -82.003386546290059,39.029517281755297,140.304085906594992 -82.018687990869111,39.031717041812094,140.331296037882566 -82.037089410444864,39.027117057114914,140.34101786557585 -82.042689439718487,39.019517321925377,140.324287266470492 -82.04678932578058,39.00541787418679,140.284918775781989 -82.052689334584031,38.996018211961115,140.262857033871114 -82.094292076006198,38.972620793466056,140.243587339296937 -82.099888716798048,38.959929619671627,140.210652218200266 -82.140405653236627,38.868051753049699,139.971937483176589 -82.185555069901909,38.818175424335791,139.872956403531134 -82.192299227581088,38.816783418128161,139.877494012005627 -82.216886603658011,38.799108928505959,139.853851568885148 -82.222693596333599,38.788834307320933,139.828800112940371 -82.221576354861298,38.775386887466667,139.784382663667202 -82.2000085291114,38.759373773725976,139.704494147561491 -82.189393875319283,38.735731878018122,139.614796807058156 -82.183592324149714,38.710433006958681,139.52616345603019 -82.17318975260504,38.627638624994248,139.247153165750206 -82.173189648055114,38.620938910089286,139.22567302454263 -82.176290561968727,38.610139340005219,139.195179406553507 -82.178390544457073,38.605439519947808,139.182908342219889 -82.183090600676422,38.601039662186309,139.175069472752512 -82.194947817480724,38.594751816154343,139.170731739141047 -82.220091462861461,38.593338634842098,139.199790335260332 -82.247094285524497,38.600138085602879,139.257694534957409 -82.263195708009192,38.599837943533785,139.278266070410609 -82.27539596132668,38.595338017909739,139.280159581452608 -82.288227655285866,38.584243523132621,139.261754787527025 -82.292397182560677,38.580638480935079,139.255774425342679 -82.294997153125834,38.574338724567994,139.239048139192164 -82.294396943713551,38.561939259274773,139.198461275547743 -82.296696685002544,38.541440112084786,139.13574411906302 -82.315060055535255,38.469744000504164,138.929977950640023 -82.321348011160481,38.456176520954244,138.894774000160396 -82.325124029562247,38.450928709433505,138.882958425208926 -82.331460123125339,38.446160852813946,138.876123427413404 -82.341765340502874,38.442608906016282,138.878532282076776 -82.507798751806192,38.411753100020064,139.002724743448198 -82.521307562759901,38.409242609610267,139.012872463092208 -82.561794579533654,38.405998358531306,139.057093312963843 -82.594804721754457,38.423468289886465,139.157870690338314 -82.666619846447517,38.507389275564449,139.524384005926549 -82.66668293028134,38.507462993425889,139.524705672636628 -82.691645071557048,38.538229434489899,139.657064664177597 -82.697757319740532,38.543765138356434,139.683062314987183 -82.725983307487468,38.559252201903398,139.770832198671997 -82.732095494776729,38.560916071368318,139.784428237006068 -82.790915054984652,38.561602470064123,139.8662686701864 -82.801251378155158,38.564834231248554,139.890615101903677 -82.817151760895612,38.572383582676046,139.936314920894802 -82.821301056373386,38.574353628939882,139.948240333236754 -82.840678779238829,38.587808864890007,140.017534137703478 -82.848327123110735,38.596815405393933,140.056691873818636 -82.854695540366876,38.612574669995759,140.115678430534899 -82.870735030383145,38.679822644118346,140.35203490126878 -82.874635640939502,38.711721247138229,140.458984666503966 -82.871535750448331,38.723720766667867,140.493007832206786 -82.871135873823178,38.732120413149921,140.519215005449951 -82.872436050040065,38.741019021872425,140.549306968227029 -82.875610337689437,38.746989084174714,140.572608813643456 -82.87663628685894,38.748918644792944,140.580139399506152 -82.880636459390217,38.753118427047745,140.59892178978771 -82.890337788666258,38.757718136479049,140.626695945858955 -82.895337928494826,38.758218066248439,140.635058840736747 -82.924839602312574,38.75171805358422,140.654353952035308 -82.944293006285221,38.744922151976212,140.659108862280846 -82.969841447371991,38.73041851870606,140.64762151427567 -82.980541684341262,38.727618532969664,140.653236708603799 -83.012963602969208,38.731699041097443,140.710256263613701 -83.031850030517248,38.727362040349298,140.722124754451215 -83.032036684426529,38.727201732923959,140.721868459135294 -83.128801246861045,38.64409564000578,140.589017254300416 -83.136195269520769,38.633364025981706,140.564903650432825 -83.14398536784573,38.62672123342594,140.55436022952199 -83.158075665117437,38.622192288645195,140.559156727977097 -83.266921642747732,38.606922809307598,140.659292227588594 -83.283252664162106,38.604631808560946,140.674351963214576 -83.321684985810705,38.624356585431038,140.789836442098022 -83.325311250830964,38.634969095569794,140.828595330007374 -83.334501623452638,38.643204652594235,140.867403198033571 -83.370232843842984,38.66097553979435,140.972920805215836 -83.513731278894468,38.703354307615811,141.304589658044279 -83.522113519384817,38.704683167657144,141.320332181639969 -83.534499827779797,38.703743084874901,141.334382046945393 -83.575915756745388,38.694309076775944,141.361433857120574 -83.616898688288543,38.68578303405716,141.390831304714084 -83.628084903077493,38.681025126360758,141.391150933690369 -83.637371002809914,38.672222410674429,141.376014766283333 -83.644156738142058,38.644912512496056,141.298653427511454 -83.647863977832259,38.639128928633987,141.285396465100348 -83.650899743907104,38.634392896175832,141.274539544247091 -83.656587843360967,38.631374968974541,141.272802610881627 -83.665074035280028,38.629569961984338,141.278784342110157 -83.680647474945928,38.631675716887464,141.306982960551977 -83.707207417107938,38.63873967974741,141.366117436438799 -83.763610991943153,38.653740945276773,141.491732019931078 -83.770513222085128,38.656857742923343,141.511172032915056 -83.774848433639789,38.662946438845445,141.536488747224212 -83.778989754688425,38.676089834619134,141.58390895370394 -83.854499991521209,38.754204738847989,141.935831658542156 -83.860198208738055,38.758425501479408,141.957071377895772 -83.87161358446852,38.763240181492584,141.988103779032826 -83.905089635068975,38.769781223664758,142.055153264664114 -83.905142563968965,38.769791565690021,142.055259294807911 -83.945150857574745,38.785246504341657,142.159552530385554 -83.963296391163553,38.789014161297878,142.196616963483393 -83.979987820515177,38.788734005624725,142.218887003138661 -84.045661255565207,38.772202051856041,142.257872879505157 -84.053882013341962,38.772172442845033,142.269205864518881 -84.072666955054757,38.772104784360891,142.295110253617167 -84.20677196177931,38.804215060154341,142.583151429891586 -84.214084202745966,38.807333853036454,142.603177790530026 -84.226480721386764,38.819291216954944,142.658146999776363 -84.231134606818387,38.829275915298311,142.696092696860433 -84.232487089924106,38.832177605922972,142.707118485122919 -84.234908533369065,38.855200598798987,142.782988089136779 -84.233660327921029,38.876261765479363,142.847526333294809 -84.233313937447178,38.882106467530463,142.865430133417249 -84.235635208823922,38.894848900987903,142.908740143291652 -84.305883915467362,39.008072372353503,143.362040929496288 -84.314866324439365,39.018597834165739,143.407535145059228 -84.321123043002501,39.023697509605597,143.432227534241974 -84.327725833450202,39.02907925849987,143.458283338695765 -84.434031712267583,39.095873342765216,143.815442246384919 -84.494935429731427,39.104071372995762,143.926079391501844 -84.503254547357457,39.098252534452698,143.91953397821635 -84.50727485780078,39.096692305163153,143.92028025072068 -84.510935696219249,39.095271582209612,143.920960266143084 -84.51124925202177,39.095204786946717,143.921189937740564 -84.604638786218359,39.075310469356246,143.98974984139204 -84.621307213362385,39.075068308813719,144.012349287979305 -84.624927638432894,39.076037737673452,144.020449887961149 -84.633641588129365,39.078371042220141,144.03994784783572 -84.68604434360077,39.102068499200143,144.187372101470828 -84.690944532879456,39.105768291969127,144.205784232355654 -84.719746834800986,39.138666601505015,144.3487270437181 -84.733247309348556,39.146065149202059,144.390715328976512 -84.745348673098277,39.149064897597484,144.417041319422424 -84.755648925752297,39.148264825449786,144.429010640829802 -84.767949106094719,39.14016504196394,144.421063654124737 -84.788880252005498,39.116904812507698,144.378027114085853 -84.821357923835052,39.107087894485154,144.393115195445716 -84.821186660017773,39.150687047587496,144.528632120229304 -84.821027569176451,39.158109713674683,144.551505510695279 -84.821003800407709,39.159218688039303,144.554922502487898 -84.821016279188811,39.245936020154247,144.824437552131712 -84.821004338205654,39.249407873658598,144.835197770036757 -84.821062394599153,39.252619737434657,144.845248349942267 -84.82083657402508,39.263456282294364,144.878559944219887 -84.820825740256538,39.273190871596569,144.908745574764907 -84.820655310525964,39.306751458112835,145.012566721998155 -84.820655279215885,39.306752819600682,145.01257089804858 -84.82055638169787,39.311053277846305,145.02575986739248 -84.81865874610763,39.393348834492258,145.27785752620548 -84.81696117844929,39.478944260627152,145.539875718764961 -84.816961142670493,39.478950318943298,145.539894361980259 -84.816762754528582,39.512542855830674,145.643219627439976 -84.816762756259934,39.512642851646014,145.643527892418206 -84.816562957322446,39.523540443026718,145.676838179118931 -84.816562939818851,39.523541397724962,145.676841099746525 -84.816363387046607,39.549640308514576,145.756968139670789 -84.816163697681304,39.567839550202045,145.812725263647735 -84.816163715042904,39.568839508436149,145.815803430043161 -84.816244915523896,39.569283816014334,145.817284572869539 -84.816364739363564,39.569939460404711,145.819470201618969 -84.815914779744546,39.630439940923658,146.004923796281219 -84.815829480409718,39.670758262619671,146.128649425692856 -84.815740674556352,39.682012795232879,146.163072519004345 -84.815340470444156,39.728137882015524,146.303994576446712 -84.815340536892833,39.728202127360845,146.304191612638533 -84.815401506303033,39.78714843284596,146.484835834242404 -84.815391528580562,39.788432379731397,146.488751723431051 -84.815421755912624,39.801333844790477,146.528274147771299 -84.815332958161036,39.812976363470717,146.563766869716346 -84.815392009159382,39.815790246328312,146.572455606423318 -84.815065183646411,39.826198818818661,146.603830642998219 -84.815006219921386,39.828348730446145,146.610322056338191 -84.814916504174136,39.844636057438095,146.659984841942787 -84.814887505424451,39.84475005302582,146.660292870365083 -84.814762635972158,39.852349740001294,146.683342795819044 -84.814677677570359,39.854837638006444,146.690826279111207 -84.814264013838894,39.874533828144124,146.750414687208831 -84.814001322182236,39.892405092630092,146.804612262174487 -84.813912333181207,39.89316006238424,146.806792946532369 -84.813625784129954,39.918489031324995,146.883681852370501 -84.813625772946935,39.918490019827438,146.883684853091836 -84.813571857200301,39.923337820393641,146.898396402597427 -84.813407951470111,39.928913592121951,146.915173181332648 -84.811886234018644,40.006644368566043,147.149861929006875 -84.811315790966049,40.035783214690667,147.237717327661812 -84.810954043092664,40.050497614066622,147.281954630278051 -84.809924054190773,40.108782233846362,147.457573879510164 -84.809523397045837,40.128583426875423,147.517106714658439 -84.809509432548225,40.130592344756103,147.523181853815913 -84.807985306156283,40.181691270262469,147.67598410975188 -84.807566512260621,40.193814779244327,147.712128442712128 -84.807559513420401,40.193889776253975,147.71234589535743 -84.807394610628862,40.199557546451459,147.729282289743423 -84.806847056352012,40.225220504428236,147.806212581694126 -84.805319433301634,40.304056307798056,148.042433740571141 -84.805139074502819,40.311651575352684,148.065120633691549 -84.805138565753637,40.311672999792847,148.065184622071683 -84.805340928553264,40.354313202506326,148.19414502568543 -84.805341341717593,40.354400260700274,148.194408178329468 -84.804292443883455,40.466939213499067,148.531901916489005 -84.803708475910213,40.529595183980128,148.719375676475465 -84.803491290551179,40.573759358837577,148.851605115458369 -84.80349127557129,40.573762404985501,148.851614230312407 -84.803362600677048,40.646403482923191,149.069090844132006 -84.803420885187847,40.661841861989188,149.115376190282404 -84.803448151466526,40.676319280315127,149.158726081252098 -84.803385416847334,40.690866697098564,149.20214537344873 -84.803355454269905,40.69294761392193,149.208326055668294 -84.803322656770803,40.704018170179452,149.241375888697803 -84.803409955505103,40.720143522710323,149.289684840478003 -84.803348240072694,40.729687077807476,149.318110594525933 -84.803348129735014,40.729704140220285,149.318161409348249 -84.803495393780423,40.743838572451565,149.360576051287353 -84.803767828693708,40.767054640192789,149.430251216515899 -84.804167742213281,40.923910377711941,149.897934651002288 -84.804168823684947,40.924100947782058,149.898502524010837 -84.804546996087822,40.990739718348053,150.096905865706503 -84.804547112261204,40.990924673153621,150.097454780712724 -84.804609868472909,41.090828753234717,150.393571401946247 -84.80461392603992,41.098393459382805,150.415961326099932 -84.804650284020155,41.166172778285521,150.616379523649812 -84.804831449763554,41.174726439180475,150.641888115555048 -84.804709459426249,41.175412413456861,150.643747336231172 -84.804730942778775,41.254051318695311,150.875756084918976 -84.804731090787811,41.254082160590549,150.875847175717354 -84.804819293121795,41.272461594606078,150.930117861367762 -84.804820295739177,41.272598589216159,150.930522752925754 -84.804820990374168,41.27279260761884,150.931095190346241 -84.805167141502935,41.369474788592115,151.215993923135102 -84.805374914288819,41.409806209748695,151.334718225523829 -84.805287913279599,41.409875207992641,151.33480248786509 -84.805256975183426,41.413169079672677,151.344428167678416 -84.805198588223433,41.427558004921508,151.386571710929275 -84.805198249358398,41.42764151522578,151.386816256679595 -84.805161427631361,41.437044148661847,151.414348876103759 -84.805700448149736,41.489735088875527,151.569526892155409 -84.805794682851428,41.501874615227784,151.605208192020655 -84.805973256791972,41.531601456866689,151.692465664818883 -84.805973257608031,41.531644045875147,151.692590283229947 -84.805973259455314,41.531740451462611,151.69287237431854 -84.807057878490895,41.614546225377893,151.936378045007586 -84.806942228790092,41.63290351542615,151.989808794111013 -84.806919246355477,41.633847479117527,151.992532542906702 -84.807457074579844,41.676053840076385,152.116368610411882 -84.807329487124093,41.697592009050176,152.178967350162566 -84.439304759891513,41.706409648287199,151.70864041429013 -84.400782882873571,41.707265450843394,151.659450329840183 -84.400666734240403,41.707268031202553,151.659302084706724 -84.39778365979258,41.707442055523863,151.65594367031008 -84.361654492713797,41.708432835750521,151.610402692109346 -83.881761955944967,41.7215930337034,151.009261973202229 -83.881610113503797,41.72159798849534,151.009075192734599 -83.764374932100552,41.725423504458966,150.865078563801944 -83.686554763606125,41.727962862392019,150.769727785140276 -83.667154244232933,41.728463048768319,150.745595945045352 -83.640852542176049,41.72926329662414,150.713256783783436 -83.637852462244197,41.729363324550356,150.709595080465078 -83.596450357265425,41.730662712843177,150.658852754160762 -83.595050319060164,41.730662727650525,150.657008813694119 -83.586450088123371,41.730862810934234,150.64627031236887 -83.505546920244853,41.733062581403296,150.546295682899654 -83.504645895625913,41.733062590913889,150.54511143732816 -83.500945796404807,41.733162626137052,150.540542324073613 -83.498945745514604,41.73336263958474,150.538501507602632 -83.455043560533738,41.734163072059658,150.483187350444496 -83.456837511844753,41.728961252378404,150.470253806561232 -83.450212016661155,41.712235963073972,150.412381559610367 -83.447242862842742,41.708364142772709,150.397096113301814 -83.410740572498113,41.69276512526757,150.303284901194274 -83.393839123450363,41.693465276274722,150.283168553374708 -83.376938562013549,41.688165657270453,150.245400551706553 -83.358281072514828,41.689281810633979,150.224223054014146 -83.343024762712488,41.695036750354454,150.221171518787742 -83.339192754440234,41.700200592707468,150.231353024020791 -83.339184842690514,41.704928411619811,150.245259771123528 -83.328032502827753,41.703080599622012,150.225212279707193 -83.299937695732837,41.685390316993555,150.136328249238431 -83.296816380571713,41.683424937857041,150.126452063210309 -83.295134214968414,41.682365739085562,150.121129401959479 -83.291886050383127,41.678313928536291,150.104939443059266 -83.290888367232938,41.67792909396443,150.102499436587095 -83.289674916001744,41.677461031548845,150.099531741812825 -83.288331170353587,41.676942710895837,150.096245392225683 -83.286386620882823,41.676192643237052,150.091489686630666 -83.279660627636062,41.673598237645564,150.075040297582746 -83.239395135218558,41.652688461903836,149.960706711746752 -83.232863826977152,41.645739796996985,149.931666704826057 -83.19572656408522,41.632530692812388,149.844125816598535 -83.166914327188962,41.624768820812726,149.783556215465069 -83.1470879880452,41.619427704457095,149.74188344180584 -83.105127757191028,41.615082309480073,149.674268464557827 -83.087235139140986,41.608204760304126,149.630598996765912 -83.06779139603789,41.596865398660896,149.571715087629855 -83.049419916569732,41.575477819081591,149.484493797644973 -83.044483869248097,41.569731406223113,149.461052430793643 -83.04427624525033,41.569489695977033,149.460066363215446 -83.044106128607638,41.569350199120912,149.459431692026556 -83.032849440962309,41.560119635219586,149.417432027868927 -83.031961077798655,41.559391171107364,149.414117185398936 -83.029268606602301,41.557183325576048,149.404070219956338 -83.020253390508884,41.551701581494328,149.376085670664907 -83.018669355432479,41.550738401595694,149.371168408542871 -83.017949013071373,41.550300394071094,149.368932258337736 -83.001111518851559,41.540062277326882,149.316660559736192 -83.001092117343418,41.540053110657134,149.316608118824661 -82.971044865940755,41.525856625066645,149.235387838445604 -82.970836425194605,41.525758142645458,149.234824386425316 -82.970768428666474,41.525739106525343,149.234679383225739 -82.959675271474538,41.522633496875308,149.211023811250925 -82.935562275929087,41.515882889144791,149.159609578549862 -82.898920359929747,41.520771080956173,149.126428086310625 -82.898046001253078,41.521070875849567,149.126180091872811 -82.889392158266062,41.5240380539664,149.123727022670209 -82.883496676043862,41.527299515111402,149.125735216774046 -82.876420933727118,41.53121391223884,149.128146802075207 -82.870613852728937,41.535491807824627,149.133286396041512 -82.867453485423354,41.539063703523475,149.139771918766201 -82.862514697593568,41.544645597469639,149.149906630627811 -82.859032786701718,41.548580906727892,149.157051455229521 -82.857961767627316,41.54979138896794,149.159249121323228 -82.857724891694687,41.552178807026216,149.166019219905138 -82.856389015611072,41.565642795976601,149.204192160628736 -82.857279945426598,41.568162131327767,149.212814886122942 -82.857839615175621,41.56974474283458,149.218231285922229 -82.859893864908457,41.575553667197781,149.238110202364624 -82.860723360107556,41.577899280174655,149.246136395260692 -82.859137700278879,41.57957701757141,149.249048070050776 -82.858508668742672,41.580242576296456,149.250203124247491 -82.858111227692007,41.580663096324244,149.250932918861508 -82.855455807428882,41.583472714011734,149.255808856338263 -82.854149307286846,41.58485508122871,149.25820785202086 -82.848849204060699,41.587167047423392,149.258177288807929 -82.835292867026922,41.589115113191788,149.246357618831098 -82.82139817379003,41.572192906964574,149.178191492334008 -82.795514018124535,41.54801610396013,149.072934398427606 -82.786685668779938,41.542205418690585,149.044248236343265 -82.773199296059914,41.542110561840055,149.026480073109269 -82.751095795770567,41.548000564000205,149.015308662317693 -82.741056711466967,41.546577759824181,148.998081356287003 -82.734073996332256,41.545588124106978,148.986100206151605 -82.733088068601447,41.545448392027957,148.984408614225686 -82.732816573583946,41.545409913991378,148.983942801132798 -82.731703904650232,41.545252219325768,148.982033787295222 -82.729677134087069,41.544964972241559,148.978556510061026 -82.728844465192793,41.544846960998917,148.977127951569855 -82.723257257573508,41.544055105650713,148.967542726546526 -82.721727042186927,41.543838233587273,148.964917662553489 -82.719065831012969,41.543461069453791,148.960352522321045 -82.718783174495826,41.543246054014631,148.959348390810192 -82.716414696009991,41.54144436393819,148.950934288091958 -82.7125199027966,41.538481613660558,148.937097374349833 -82.712122543226855,41.538179344165847,148.935685649514198 -82.712154055122625,41.537752160115474,148.93445835635066 -82.712819389653916,41.528732700143159,148.908542558550835 -82.717679224830022,41.523758667479427,148.900066682137549 -82.723101480261903,41.518208998724575,148.890609726309776 -82.721143117584617,41.512267604381648,148.870427037589252 -82.72099830578307,41.511828265931221,148.868934502825141 -82.715090986177913,41.503229657818842,148.835738576948643 -82.71119980413124,41.499122856056729,148.818495685234666 -82.695908369980813,41.495478299588861,148.787859354168177 -82.689107100109879,41.493857286666668,148.774234258569777 -82.659486730259744,41.46341276460312,148.645353032276034 -82.618928067993025,41.433369340366305,148.503432331606746 -82.618134984301946,41.429961479985892,148.492256671190262 -82.559260848750426,41.401543181569586,148.331421836279333 -82.515006345524853,41.38579624353595,148.227264219895005 -82.500277890854861,41.383080499352957,148.200137570500374 -82.482392394614877,41.382881690229802,148.176451962441206 -82.461776916383826,41.38785570922937,148.164693316444755 -82.432492299543199,41.39840560171713,148.158414636738598 -82.39926269120248,41.415484282871745,148.166567323729396 -82.362959918367068,41.428183164578364,148.157734420150518 -82.349251219512325,41.429970655593031,148.145436611026525 -82.335357221026371,41.43178230797033,148.132979112677276 -82.29275401151159,41.429981812295736,148.072868573479354 -82.284662076229992,41.430822524980471,148.064987482503057 -82.269652416203272,41.432381955551691,148.050374735146761 -82.255851099423339,41.435980957733804,148.043408331461251 -82.194546945133055,41.466079424719837,148.054665085859597 -82.190021883891376,41.46963633410207,148.059485049918294 -82.187345906009298,41.474979156038579,148.072000922635198 -82.185945878044748,41.475579147247295,148.07199888676405 -82.182769746759988,41.473173272053138,148.060754948295653 -82.16654434789038,41.475979329490627,148.048363615758717 -82.09533874497285,41.496578263185008,148.018814234063029 -82.013133833946512,41.517178308535378,147.975433142855763 -81.995732329069639,41.515979531150009,147.949690611101687 -81.969296737979235,41.507962239815299,147.892102608457208 -81.966078343750311,41.506986176735971,147.885092128068209 -81.963830207633634,41.502881356902037,147.869974753819406 -81.959629042493901,41.500182502977516,147.856568736955523 -81.939027340984325,41.49298398781923,147.808853915892541 -81.931569599911754,41.491998262455716,147.796422075480223 -81.929817196840602,41.491766638945066,147.79350106138736 -81.878523515938397,41.484986907039946,147.70803408138454 -81.861425047519745,41.485383064777423,147.687498175539076 -81.851304118859261,41.487796919704948,147.681861688382924 -81.838254054921009,41.490909377258717,147.674599296413362 -81.837221477421593,41.491155648360191,147.674024920910597 -81.812153585023054,41.497134373844617,147.660092468373477 -81.811919881142913,41.497190112528486,147.659962681122124 -81.802368650160162,41.497765512262127,147.649570458568633 -81.801414666044522,41.497822983617965,147.648532637394965 -81.800908069831593,41.497853502754111,147.647981532849371 -81.795610291777933,41.49817265951831,147.64221880864352 -81.795318436852199,41.498190241884295,147.64190136641264 -81.783419094851737,41.497592384934698,147.625030404888093 -81.770058812664587,41.493205535210606,147.594982136972249 -81.770016643062391,41.493191688818285,147.594887297600508 -81.763649103742225,41.492003189580757,147.58326527941972 -81.759770378837018,41.49127922677669,147.576186246238649 -81.747255253854874,41.488943282544653,147.55334709212184 -81.746977962648685,41.488891526225856,147.55284109339118 -81.745914891521181,41.488693104324838,147.550901223905385 -81.745432364205115,41.48880569191607,147.550626907497644 -81.743011486407639,41.489370552786099,147.549250762909651 -81.739914749346084,41.490093111185587,147.547490729019046 -81.733833187638481,41.492980446164246,147.548427353613079 -81.72896526221075,41.495291584657792,147.549177931621671 -81.72758806807353,41.495945433290203,147.549390414729714 -81.726922659661057,41.49626134835902,147.549493104219437 -81.72046960072143,41.49932505858655,147.550489699468017 -81.717995717698827,41.500499580745711,147.550872112624347 -81.716748907227952,41.501091527298186,147.551064922474325 -81.712145142125323,41.503277250745938,147.551777292974293 -81.712112210008996,41.503292885883099,147.551782390102744 -81.708780732990803,41.506651121125309,147.557611486874521 -81.708023169538592,41.507414769283933,147.55893699079752 -81.694408468385063,41.515703235579643,147.566505300812423 -81.692406519581041,41.516921997934212,147.56761858984828 -81.689217206760929,41.518863613223225,147.569392399862409 -81.666042083414808,41.53297234966945,147.582289989106357 -81.666009454048151,41.532992214035595,147.58230816014111 -81.651030186668109,41.53731702312048,147.576320178806782 -81.649610628903275,41.537726877363298,147.575753124430776 -81.642212442088734,41.539862879379704,147.572799009270966 -81.634809743953596,41.542000183894352,147.569845040328801 -81.628588575900181,41.545704851492268,147.573069320060313 -81.618067572033851,41.551970045085056,147.57852453365922 -81.617724179143579,41.552174533455812,147.578702636063099 -81.616973782736864,41.552621389937237,147.579091846011579 -81.61132045995852,41.555987909159498,147.582024565897882 -81.610827150771129,41.556281671771039,147.582280517555773 -81.60090415719354,41.562190753919793,147.587430442683399 -81.594301302472687,41.567003636627071,147.593491370789707 -81.594249532072837,41.567041372556879,147.593538895249367 -81.593137739195939,41.567851768809859,147.594559527933598 -81.59262827659451,41.568223120877391,147.595027222298086 -81.580972235810847,41.576719318337645,147.605729100294411 -81.58090335836097,41.576769523757065,147.605792344547808 -81.580883396917329,41.576784073840656,147.605810673907399 -81.580441596242991,41.577106106497546,147.606216362677515 -81.57982298191709,41.577557020284189,147.606784421019256 -81.578615649710031,41.578437056058846,147.607893100008368 -81.576872167367426,41.579707896699581,147.609494174830616 -81.576734051324493,41.579808570779385,147.609621013514698 -81.564000605700045,41.589090098831605,147.621316254138947 -81.532830157150826,41.614512670222055,147.658028119243681 -81.532768376273211,41.614563058614415,147.658100896514952 -81.531110966402181,41.615914839654472,147.660053323954344 -81.530898161671402,41.616088402878333,147.660304012708366 -81.528182101998382,41.616913338563421,147.659352221526206 -81.52186251177973,41.618832757170658,147.657138664275408 -81.510515113038295,41.622279247756218,147.653167577460408 -81.50159550031556,41.624988358612761,147.650049317628145 -81.489795310908178,41.632888176541471,147.658814499154687 -81.488073792822107,41.634243889292449,147.660700238309801 -81.478699502445878,41.641626236972549,147.67096958681941 -81.467192995561192,41.650687726609107,147.683576624840498 -81.453615871057323,41.664678721454941,147.708299310877919 -81.448888984582226,41.669549697274427,147.716906224377453 -81.444802184800167,41.67376107470966,147.724347519688308 -81.443997289531367,41.674590505551741,147.725813068449497 -81.443874497291816,41.674717040859662,147.726036644540727 -81.443799770498728,41.674794045545099,147.726172708906233 -81.443706359273563,41.67485265162501,147.726230455562472 -81.442957994833279,41.675322174491761,147.726693101227283 -81.442493900027529,41.67561334696321,147.72698001563549 -81.440125479734306,41.677099290744984,147.7284443276003 -81.438964038645111,41.677827977359655,147.72916245739907 -81.438168375221295,41.678327175547416,147.72965444251895 -81.436737107647801,41.679225150944887,147.730539487674832 -81.432595433024076,41.681823632171778,147.733100852929056 -81.414216123638496,41.693354786825516,147.744472705759108 -81.409138204544846,41.69654066663356,147.747616128996015 -81.407252427909938,41.697723800433288,147.748783665709198 -81.405630059585206,41.698741672203703,147.749788194894791 -81.403571036608511,41.700033500533884,147.751063188537955 -81.401839618165823,41.701119790207649,147.752135407179594 -81.401771536349187,41.701162504650654,147.752177570015192 -81.389785860741839,41.708682301921371,147.759602133184671 -81.389422589755185,41.708893660624994,147.759777846746147 -81.382088872456777,41.713160571662044,147.763325967825949 -81.375663045496182,41.71689925300452,147.766436095349491 -81.375607629320612,41.71693149530163,147.76646292116493 -81.374820066270445,41.71738971605707,147.766844186931849 -81.373740761119478,41.718017678506236,147.76736671756953 -81.370066267512598,41.720155576212107,147.769145916216075 -81.369823222509012,41.720296984909901,147.76926361490041 -81.368651530094496,41.720978700214133,147.769831038080156 -81.354382234725094,41.729280876565127,147.776744477450848 -81.331307141012203,41.739475894891477,147.778306821361184 -81.310651820437371,41.748601811089515,147.779720417223871 -81.308161971820283,41.749701873890558,147.779891782440245 -81.307647478400042,41.749929186936328,147.779927216470242 -81.302778191798353,41.752080531005937,147.780263023450971 -81.290044413274899,41.760482193396108,147.789417213760316 -81.288076951715666,41.761780311453755,147.790831956081092 -81.281076749415263,41.761481392940119,147.781211220659316 -81.280338379446576,41.761396710584506,147.780038109980524 -81.266727037732252,41.759835649671899,147.758415061049163 -81.265375275397787,41.759680618417761,147.756267899647355 -81.264902192567604,41.75977637752419,147.755963618867099 -81.264260900444071,41.759906184730816,147.755551163107157 -81.260499916262859,41.760667464702564,147.753132516518235 -81.256670594402308,41.761442577249142,147.750670436769724 -81.254127874293985,41.761957262178711,147.749035868793726 -81.253068844079607,41.762171625878651,147.748355148360133 -81.249822893933498,41.762828655179781,147.746268970891833 -81.249759475694205,41.762853684741657,147.746264558285475 -81.248982428305098,41.763160365531014,147.746210525743663 -81.248757412566093,41.763249173505244,147.746194884181023 -81.203509001441446,41.781107567437267,147.743084660731256 -81.202870483907759,41.781359574022915,147.74304127600044 -81.193833828685854,41.784926111363504,147.742428782396019 -81.185517536190034,41.788208339902802,147.7418675981462 -81.18447795958518,41.788657702553614,147.741914046928287 -81.168787390482791,41.79544003652056,147.742619534954429 -81.123443415916796,41.815040216473726,147.744704919867218 -81.114033072151827,41.819107888804631,147.745146383531392 -81.100078482233485,41.822855729823416,147.739001523703337 -81.096739553717754,41.823752479441616,147.737532265484333 -81.093863599599658,41.824524886140225,147.736267050728202 -81.053066743293414,41.841093669341674,147.735069614835083 -81.025671092532789,41.84800568253165,147.721744289621711 -81.011635829510098,41.855498540555004,147.726699453778565 -81.003809012143506,41.856383013784516,147.719653717242181 -81.003262316612947,41.85644479337315,147.719161655753851 -80.992944666187114,41.857610744357331,147.709877029061317 -80.974819053278907,41.859659037788376,147.693574948236346 -80.972285769119779,41.859945312752828,147.691297413781285 -80.9596385481981,41.861374517862046,147.67993026599288 -80.937387878896402,41.863888965051721,147.65994486771524 -80.917671388352659,41.86749152545687,147.646345289424062 -80.901484979386481,41.870449075873111,147.635190831497312 -80.854684228142872,41.886221840190089,147.624509379267693 -80.853205767860246,41.886720110084326,147.624173208139837 -80.828029867095452,41.895204878658994,147.618460590019822 -80.820305761858876,41.897808052446855,147.616712421178818 -80.817585324027519,41.898724892938048,147.616097215563059 -80.816084071768856,41.899230844164506,147.615757831372321 -80.814381334730385,41.900297262410142,147.616840485483408 -80.813799668318836,41.900661558047389,147.617210344411433 -80.809837964256857,41.903142759434203,147.619729677215219 -80.80915103354252,41.90384061556761,147.620963870547712 -80.80727386736676,41.905747637490002,147.624336523935199 -80.802577277011181,41.910518925681643,147.632774675264955 -80.801934883014653,41.911171536760875,147.633928830735385 -80.800963022552196,41.911285542140682,147.633073566481471 -80.799452030350253,41.911462791083373,147.631743914447725 -80.795529086610031,41.911922977195303,147.628292147070169 -80.787550803824047,41.91285888021477,147.621273735538125 -80.786637367368101,41.912966032085976,147.620470335707068 -80.785822459503819,41.913061625930311,147.619753616861999 -80.784084808968458,41.909831122200821,147.607994339428842 -80.783192297845233,41.90817183544447,147.601954068057239 -80.782252670712595,41.908433639727946,147.60157932434231 -80.778230373840856,41.909554355075706,147.599975496530533 -80.772923702438405,41.911032930192995,147.597860424779356 -80.771896490114088,41.911319137961513,147.597451125271618 -80.769159892114658,41.912081624535247,147.596360896714032 -80.767186404174566,41.912631489022431,147.595574848353863 -80.763315935826427,41.913709901029073,147.594033629633486 -80.759084733164869,41.914888822888344,147.592349381186068 -80.728642579026399,41.920129611514589,147.57059387024492 -80.721954792568042,41.92128095166678,147.565818795002997 -80.718607953578228,41.922193099030814,147.56443078070879 -80.713356385066618,41.923624361298323,147.562253643758595 -80.70943163666027,41.924694012065387,147.560627206228673 -80.70050130605452,41.927127883986564,147.556928474456072 -80.694566871188584,41.928745254603264,147.554472149349749 -80.636712624164332,41.944512848212518,147.530591591261327 -80.620579053586724,41.948909890631391,147.523953445255756 -80.620377950103489,41.948964699363103,147.523870759643614 -80.609746577842969,41.951862172936373,147.519501646980643 -80.583017514648446,41.959146910166311,147.508534805849195 -80.580574668993506,41.960035751237527,147.508198414929211 -80.577870374662112,41.961019721659021,147.50782626401633 -80.577726824076322,41.961071953225883,147.507806515321136 -80.57663556491049,41.961469013090309,147.507656420581043 -80.573162808094679,41.962732592258973,147.507179043255746 -80.564461800036057,41.965898495629503,147.505984831601381 -80.56180624055601,41.966864733637365,147.505620885640383 -80.557033270898742,41.968601401455544,147.504967365413904 -80.554970897181619,41.969351805987095,147.504685232415795 -80.534908149275424,41.97501174405987,147.497062553651631 -80.532524464028967,41.975684209808399,147.496157847344875 -80.531298727052729,41.976030004679401,147.495692706666887 -80.53040815494532,41.976281245584147,147.495354789309204 -80.526655070491557,41.977340035012134,147.493931036442518 -80.523191165528857,41.978317243489876,147.49261743016541 -80.520595146142725,41.979049611200743,147.491633231751621 -80.520559089078546,41.979059783324089,147.491619561798871 -80.520559074232054,41.979058771340533,147.491616529412568 -80.520539064291782,41.977694834508675,147.487528555095196 -80.520437491236748,41.945530037807984,147.391537364572287 -80.520478229946804,41.930706592012854,147.347380676306784 -80.520425379879782,41.851104607253482,147.109656563028693 -80.520369335958733,41.766682751685423,146.857037853449583 -80.520499117680174,41.754032227055987,146.819307835772634 -80.520537888597772,41.740904721544766,146.780025620944798 -80.520502224160637,41.703020151469445,146.66641061194241 -80.520552696884579,41.672776293752023,146.575731766410172 -80.520485669464605,41.671315349647017,146.571264673024416 -80.520465397610167,41.540850295329271,146.179027478210628 -80.520283209832456,41.530322697276425,146.147100799717009 -80.520350711889094,41.50147879383524,146.06028120405972 -80.52033416007356,41.490568078697059,146.027372581884265 -80.520294064256646,41.46413721668582,145.947616280056536 -80.52011759074108,41.437011252897825,145.865542721003294 -80.520117262661486,41.417994978760525,145.808125678449869 -80.520149263582809,41.41799597840965,145.808168067596853 -80.520372623541093,41.380477409893999,145.695083680562675 -80.52034050369609,41.373565674546711,145.674149621278048 -80.520372315810235,41.362590094141652,145.641001834534109 -80.520420387511038,41.35239356813522,145.610221766866744 -80.520467969803377,41.342300869904435,145.579747598618269 -80.520467959582746,41.341705892690165,145.577947406098247 -80.520415949681436,41.341214912000922,145.576397800818086 -80.520415939375496,41.340614934979079,145.574582435190678 -80.520433939849084,41.340612934880049,145.574598555453122 -80.520403906746935,41.338735007097803,145.568879328668118 -80.520403906248873,41.338706008208504,145.568791581317782 -80.520403885863175,41.337519053671848,145.565199933946133 -80.520387843115728,41.335056148170068,145.557727299630642 -80.520251477377855,41.31396995757315,145.493733095936477 -80.51991634961098,41.307071225358797,145.472431072033942 -80.520117717883338,41.269863651252855,145.359955763444304 -80.520114715317135,41.269718656850316,145.359512588009238 -80.520014661158314,41.266718773036494,145.350296324118972 -80.519814376710997,41.250419401200325,145.300632941536605 -80.520014103782287,41.234121025821089,145.251446302048862 -80.520013878367664,41.220922533505565,145.211400581523776 -80.520013878350596,41.220921533544036,145.211397548206151 -80.519950703454796,41.210778924470276,145.180537204258144 -80.520264064324962,41.172770385426688,145.06550204847008 -80.520234626384124,41.147088376130611,144.987415542826056 -80.520286229346823,41.134956853137865,144.95059338118881 -80.52028642079253,41.134911845549759,144.950456751510501 -80.520131276615231,41.126685164668551,144.925245554186404 -80.520131276223537,41.126662112905571,144.925175439566374 -80.520131275612741,41.126626166946664,144.925066108815372 -80.520175276850296,41.126626166519173,144.925120482221246 -80.520111120481687,41.117527518534708,144.897363913245499 -80.520310946128234,41.106927926106493,144.865360126830637 -80.520243867206005,41.102389102164828,144.851464641280472 -80.520210693884437,41.092228495262248,144.820497266948223 -80.520206548202935,41.083644827236739,144.794359595514834 -80.520117426024086,41.076585101185572,144.772752289660275 -80.520078371578634,41.073437223354162,144.763117399998009 -80.520046355225205,41.072525258950975,144.760300357826054 -80.520078196744421,41.063117622717044,144.731684550642967 -80.520044414938567,41.016960411209126,144.590954625047743 -80.520106079879795,40.997019184116432,144.530200531706214 -80.520117003308599,40.988954498163608,144.505604421719909 -80.520206829457436,40.922638073472534,144.303164786659181 -80.520905507835522,40.902338856918298,144.241965232416987 -80.52087949193637,40.901435892334511,144.239171410910785 -80.520153578177244,40.852918871963617,144.089799552224576 -80.520134635780096,40.851652840103576,144.085899371653795 -80.520195622139511,40.850736875252991,144.083170227706432 -80.520105817384959,40.802802748105016,143.936189334839582 -80.520171670109704,40.793880096299169,143.908913174644113 -80.520102113443215,40.640389115890144,143.437264908105135 -80.561832027409039,40.625268309085833,143.442699827253819 -80.590153758510084,40.621716176105693,143.467079819180071 -80.595177957310497,40.625251988507451,143.484230242669582 -80.602607193098294,40.626974849089279,143.498801099136472 -80.628284818513563,40.62152381610732,143.51407443638891 -80.635468954971685,40.617682898064075,143.511224890127778 -80.667006362652799,40.589316711609605,143.463312787935138 -80.669071333328773,40.584084897992682,143.449784386903048 -80.668031157840517,40.575253256372122,143.421283196657896 -80.611370212736247,40.492555068925903,143.095392829738557 -80.600304766366563,40.484159507457207,143.05563169810921 -80.613405345395108,40.436462270627892,142.924629967659712 -80.6184557246591,40.39760033142359,142.810743904672563 -80.620305664868383,40.383365311269806,142.769000919535756 -80.610422041078181,40.362066252371903,142.690663285553455 -80.601003079077401,40.319269045049538,142.546220540069044 -80.604002989113241,40.308669438355878,142.517107629217207 -80.617803934397855,40.281871373969118,142.451270585879683 -80.638306091761095,40.25667218275553,142.398777005262673 -80.645706234915579,40.252872263547033,142.396270946599543 -80.653206340037286,40.246572443202069,142.386128672398627 -80.686499340855889,40.18924649705734,142.249851084314287 -80.704160413725418,40.158836573087783,142.177499564364552 -80.7065903213403,40.154652608510922,142.167541795410216 -80.727611863887688,40.090679973716796,141.994834488257766 -80.734211555283977,40.060381128233715,141.908711109310389 -80.732011339162199,40.050781535326053,141.875993926078081 -80.732611166460117,40.039082000285376,141.840252387337387 -80.733158363831876,40.034849953631095,141.827738131396472 -80.741232327684415,39.972405604291112,141.642938539385796 -80.744272384420896,39.970725643044524,141.641531757079065 -80.760561658067701,39.959845926558572,141.62812792416662 -80.807125278435848,39.918744142255271,141.558561881072819 -80.809829279441686,39.914184300798333,141.54772446770221 -80.810726192338734,39.907240573043929,141.527136742137372 -80.807285963770553,39.898920942428454,141.496741451323032 -80.813447862403422,39.850462305384525,141.352809314616024 -80.829723177397383,39.72246943426682,140.971821328625083 -80.830868640960588,39.713461246066728,140.944962175562978 -80.832975600156374,39.707277477907525,140.928200785070658 -80.881464576872887,39.622331482864865,140.722626161761582 -80.893312838524423,39.618381531646904,140.725294082425535 -80.944888093797445,39.608551442845574,140.760162345133722 -81.021162359512445,39.557036825744348,140.69538804050535 -81.039798319299422,39.542091294988246,140.672141420654953 -81.064694993018634,39.522124843002032,140.641090801917017 -81.128804767878464,39.466508253254595,140.547895355150104 -81.216727040788584,39.390233821820509,140.420111058279872 -81.224691217015135,39.387693850662572,140.422354051843286 -81.250198972479453,39.391623444995844,140.467699184082448 -81.27182749538477,39.387545406766741,140.482737615704536 -81.296484996464429,39.376921609876042,140.481014181859791 -81.348679944561169,39.347402330969814,140.455194913782179 -81.358024156853844,39.344810348810995,140.459097905084491 -81.372384228783574,39.343693894576518,140.474169971421361 -81.377074649878438,39.343329227835177,140.479094465263188 -81.385669910688421,39.345081073111523,140.495774487033486 -81.394908292219242,39.353337643160387,140.533857432194054 -81.407804220349803,39.389720015821716,140.665545344352722 -81.413821487450662,39.396247688516851,140.693959917873144 -81.436758330199225,39.410102896393397,140.767436088062823 -81.447659656074393,39.412002713336783,140.78756788931787 -81.457259898795002,39.410902666594005,140.79654760658741 -81.468861125513286,39.405402782312599,140.794240888208151 -81.543464334074088,39.354504169951909,140.73045767005533 -81.606934823396415,39.277483752392683,140.569650029763579 -81.696844724728848,39.244492258391155,140.582684479653835 -81.722671894681369,39.21408192609502,140.520207579247653 -81.741182089316752,39.192287004355002,140.475416083820164 -81.750974286832744,39.188124083561895,140.475058403797448 -81.750810201933334,39.18237770182472,140.45663589425385 + + + Oregon + + + Oregon + 0400000US41 + 41 + 95988.013000000006286 + + -121.910319620424502,45.655191288539719,225.047836299054325 -121.902910833129027,45.66280110057405,225.045071046799421 -121.903908160197957,45.671507715414421,225.060392268933356 -121.869220678970507,45.694068388026302,225.027369907125831 -121.822108670264001,45.705440474525822,224.952975563704967 -121.813357677208558,45.707552824498308,224.939161927439272 -121.737156532699018,45.694832729187176,224.771075500175357 -121.709410312789473,45.695603195233289,224.718188202939928 -121.628236990465339,45.706710186280951,224.577168396674097 -121.535157904572685,45.727336991804513,224.427786287851632 -121.524443739191568,45.725473262432068,224.404056721366942 -121.464899345490551,45.702165309757383,224.252118068747222 -121.443094677567046,45.698068502772436,224.203330852091312 -121.425641718094028,45.694789323890987,224.164277940988541 -121.403788478207915,45.693686762237341,224.120035707019269 -121.374623584847228,45.703910856356593,224.079147261567414 -121.339819332810933,45.705749403585884,224.014292977750301 -121.314246914279352,45.700726072944903,223.956746929325163 -121.21782597806974,45.672042004774191,223.724529080092907 -121.202413055473471,45.650634179564946,223.66112806648016 -121.197278268661805,45.630319124991331,223.619385064579546 -121.088719883730235,45.647474347897926,223.434998583979905 -121.06641488950963,45.653356500351833,223.400832390412688 -120.946020901753855,45.657254491431473,223.172897360287607 -120.917919087773058,45.642155626981697,223.094553620554507 -120.872085378079689,45.662052613053483,223.03678026329726 -120.857717616856945,45.672355438730477,223.025072410702705 -120.790915517428942,45.687057018695739,222.918494594283402 -120.691413645079365,45.716658562157171,222.772045871242881 -120.670912969764089,45.730958332428585,222.754810398444533 -120.655602737128262,45.738048732975741,222.736295804381371 -120.63701221663095,45.746658284622804,222.713821931742132 -120.593209819883739,45.747359039087307,222.630066600628197 -120.561508214415426,45.739160947538011,222.555736253038049 -120.524005812767712,45.710662805467429,222.43808501213789 -120.507904299948862,45.700863501762342,222.391387398354709 -120.484402868139199,45.695265155088187,222.336983679793775 -120.406000279230128,45.700066355322988,222.192689132876694 -120.212793352282276,45.72677069355256,221.861110617406666 -120.172493264200398,45.762769918060833,221.840407487936318 -120.143392383607491,45.773970973147414,221.801969869993627 -120.003188397495904,45.812721872263765,221.592881696298718 -120.001546237807389,45.813018929643555,221.590185919776559 -119.870174935982945,45.836783253197204,221.374695996753871 -119.804694694636353,45.848351944895747,221.266972860321403 -119.774966320908362,45.846400555981468,221.206600585952401 -119.671915680842204,45.857690929682612,221.026229170151055 -119.625432987942986,45.906461753339592,221.014716708101332 -119.60258926362296,45.920403588649371,220.993058963678777 -119.573624180294004,45.926278864663011,220.946779420599341 -119.526671077742364,45.909429394193523,220.82964470051229 -119.489867612401326,45.907132145129125,220.755260147154331 -119.434105288447554,45.914454851648131,220.659883138723671 -119.378167987048741,45.921800535991203,220.564261595718563 -119.324546873284376,45.934009992129269,220.480943133123219 -119.259187434111467,45.94075388154198,220.366400827653706 -119.227781839808841,45.933553735979558,220.294605957344174 -119.197566343477419,45.928699473088386,220.228858297690749 -119.171532058713311,45.928432947884303,220.178512055426836 -119.128155791879621,45.933689505703192,220.103828860446811 -119.095256804586654,45.94357568772211,220.056714654900134 -119.029092066665314,45.969964789117611,219.972526766359806 -119.010594240671153,45.980100705329107,219.953455133363605 -118.989165766522049,46.000685248361251,219.945618159137666 -118.679903468001058,46.001770711356137,219.356267645023763 -118.660750260046584,46.001791051303364,219.319724743254483 -118.641365050028597,46.00183039457098,219.282773484475911 -118.639758031610413,46.001806424132255,219.279666242189705 -118.581938393931239,46.001655458660764,219.169041126966476 -118.577742344316235,46.001555537337723,219.160869671963155 -118.571424277115881,46.001610647452786,219.14890010189265 -118.539150925630651,46.001678218560194,219.087417169474065 -118.499058476992204,46.001458940201601,219.010559994727373 -118.472787188190381,46.001471406647454,218.960460921749473 -118.380390165407064,46.001415050688628,218.784154269844294 -118.369820050063339,46.001463236497202,218.764079774729908 -118.317011457819248,46.001295181211823,218.663137109950185 -118.258396804790138,46.001282222438,218.551413580775261 -118.254558762720706,46.001302289757703,218.544133480638266 -118.238612583299044,46.001261574466866,218.513684975914657 -118.230969498073478,46.001264710003063,218.499128855764866 -118.133046396416972,46.001125453248534,218.312396191991866 -118.128224342341554,46.001127538705198,218.303218121640384 -117.99893690360706,46.001634810840983,218.057972679845989 -117.979792056323348,46.001542773026152,218.021397215314209 -117.605184332983669,45.999741859373493,217.306488994508982 -117.506853173238014,45.99917362093921,217.118916650302708 -117.482150352220927,45.998727572288608,217.07130625564605 -117.482122869581289,45.998727076045924,217.071253290399909 -117.477379813873469,45.998712160474341,217.062230161391199 -117.477167812790128,45.998750162690214,217.061891159974039 -117.218747803222712,45.999217707658126,216.572783195413649 -117.216550776009043,45.999181747874971,216.568561343476176 -117.21463275342694,45.999182781680361,216.564929883927107 -116.918002122754004,45.996280128128831,215.998651813715696 -116.87713570662666,45.943069984707655,215.831687362864614 -116.868553691932433,45.917829150947348,215.772815345786512 -116.85926311869801,45.905030829490833,215.733588011004031 -116.79842449304337,45.854681592666836,215.533053940162063 -116.791105269086984,45.848624300266124,215.508904028683901 -116.635379128450708,45.785561577644287,215.106429321691394 -116.596211453565033,45.779961490116079,215.022640877403319 -116.550089938849666,45.753247377388313,214.889514210633934 -116.537697140990247,45.735115327611105,214.834936724044383 -116.540012480785876,45.715814068309108,214.806201277300715 -116.53739362275482,45.692620053709973,214.761389611288905 -116.530269171072305,45.682359594203739,214.730232033878565 -116.512934485405566,45.669001438918798,214.67435566149652 -116.491115617072225,45.652028508802047,214.603713287040591 -116.473498598130405,45.62935673698636,214.531169989146292 -116.465498051159798,45.616675391876633,214.49408465065062 -116.465628592175207,45.603675918010843,214.471872860565782 -116.483201020419358,45.581488513997101,214.466896791011095 -116.555464018760517,45.500000577116353,214.463250880129635 -116.675779234583743,45.322409769122984,214.384026643820107 -116.693181232901836,45.270146037830656,214.326091734692454 -116.698031169664134,45.255580139722312,214.30991801340133 -116.711518534050583,45.203918042536273,214.245342222042382 -116.731587660610828,45.142996220507847,214.176966995000839 -116.785881125431672,45.079928901739301,214.170327966101468 -116.847346717059125,45.017967421062266,214.179376106709242 -116.860253526554345,44.978917829973632,214.135350714437664 -116.852712754516617,44.959023793083539,214.085707587189972 -116.846628381690763,44.950249265772143,214.058486950583756 -116.83767697756933,44.941544785203106,214.025859386660159 -116.833964672381427,44.933919168909071,214.005220897495747 -116.854400358355534,44.888490721262471,213.964155616238713 -116.893435645404054,44.84144609079538,213.956012370064855 -116.933470036410483,44.793197365826288,213.947619774378836 -117.018186777772513,44.756488453538338,214.046128141693771 -117.040240783425858,44.749095385466404,214.075647147372365 -117.046187749386249,44.746056411340739,214.081751059740782 -117.064243348177513,44.728059861143336,214.084696036763489 -117.097836622847211,44.665655926557115,214.038662196137011 -117.117867455212846,44.624259339773666,214.00366174057126 -117.146126162860952,44.546570161621901,213.919627002440393 -117.151206902071536,44.537074479324424,213.912493021227419 -117.158453722070035,44.529235689213778,213.912532924674451 -117.210417896641985,44.486852606578424,213.937600136734545 -117.216851903670289,44.467826264100509,213.91598654538393 -117.191727691300429,44.33751633377468,213.632431169040501 -117.193504479906537,44.33055260294028,213.623316185548902 -117.19678505870705,44.311472517756123,213.595228032208979 -117.198554932946678,44.30321227974364,213.583742135204375 -117.199463872067199,44.298212537303314,213.57647093012929 -117.199734831744877,44.296722087039271,213.57430300489068 -117.198554442968586,44.288461894077287,213.557050541043282 -117.192063477481867,44.274891649960658,213.519807886332273 -117.172297887634628,44.259825013954703,213.453913304023445 -117.043097896839782,44.244590882221225,213.174058171920478 -117.035123955047695,44.249129822860631,213.166754267178476 -117.02951191305597,44.249818889141764,213.157057696953416 -116.988823330027785,44.246415731745678,213.071484640240669 -116.977858115988951,44.243783032744084,213.045300791971385 -116.904702175037215,44.180410017553832,212.786893632262945 -116.89770682360836,44.172210491220895,212.758238852024078 -116.896032439376668,44.161134998476037,212.734698859043419 -116.897880266727967,44.155239221843424,212.727511942386627 -116.899094024227793,44.153481693718504,212.726663649082184 -116.933666977960399,44.103419854606791,212.70245866291225 -116.937245291859526,43.989566738699352,212.50007910747081 -116.963477306142281,43.919341353884661,212.421835976652801 -116.981127025781532,43.880927650553332,212.385393631644547 -116.98442306601072,43.873753990015807,212.378579664044082 -116.998444964864348,43.865669105542011,212.391133857890964 -117.028573476507731,43.809061073944122,212.345365893095732 -117.028588081491137,43.734895331266173,212.207509995438159 -117.028778050468375,43.733865373350255,212.205965750850737 -117.028661466365236,43.715776171285725,212.172033521346748 -117.02876118994098,43.707154549157373,212.156156769953668 -117.028521441198052,43.68396357480222,212.112418771721423 -117.028558799716222,43.68182719987098,212.108504358679056 -117.028652202345185,43.676485902178868,212.098715988919139 -117.028595843888894,43.66534839421049,212.077803083695471 -117.028638794237224,43.632623837584383,212.016705889254808 -117.02883857921141,43.625845133566557,212.004414919763803 -117.028934456988438,43.621997301907527,211.997401867061853 -117.028870346738117,43.618579453982427,211.990877105854452 -117.028722122576113,43.611634763345414,211.977580978535116 -117.028692841843522,43.602878150872819,211.961120716296136 -117.028756792796472,43.601323218531256,211.958333539776504 -117.0288216551413,43.596999408600851,211.950359326787293 -117.028854578683067,43.594598514207213,211.945924681611359 -117.028706098531416,43.579641178318617,211.917588604614139 -117.028678061505886,43.57849322958463,211.915380225516856 -117.028566647742863,43.026119927122842,210.865988302975893 -117.02859764026249,43.025867937986433,210.865565361455083 -117.028160916145751,42.80844880517224,210.444453335367143 -117.028210908197124,42.808171816950669,210.444015208631754 -117.028238903749624,42.808016823541195,210.443770087324083 -117.028105614419843,42.001291094877033,208.847591072320938 -118.199085160891173,41.998014969534978,211.219391630962491 -118.777770988486679,41.993702599999821,212.392077238298953 -118.779130001619109,41.993681578479425,212.394814409315586 -119.326089244223198,41.99527965444549,213.517730521038175 -119.362084855380616,41.995384823570717,213.591739806346595 -119.791999102852074,41.998537519999495,214.480350389145315 -119.988591915144909,41.996832325218115,214.88126112241298 -120.00108199375137,41.995530179228247,214.904454506002367 -120.288340629155954,41.994043457457522,215.492969039827585 -120.327921996551439,41.994106793489834,215.574639243073761 -120.694139351297224,41.994655646063443,216.330927021801472 -120.695861366778246,41.994654617305251,216.33447942789644 -120.881403031038687,41.994756507118723,216.717810226604342 -121.037118395772296,41.994295921127438,217.038742975331843 -121.156271532260632,41.997322778263381,217.290838754735887 -121.336311105032962,41.997622744105783,217.663943430408835 -121.33766011254653,41.997485728080484,217.666478903964162 -121.342443144838711,41.997187662203956,217.675821064040065 -121.362179328890164,41.997647308846162,217.717541144229472 -121.378027475814861,41.997993026203027,217.751000693999231 -121.436903981472426,41.997988038219347,217.87290679384023 -121.441537022935819,41.998045957648017,217.882610243745148 -121.449467498219519,41.998134624244486,217.899200642481446 -121.522177739409173,41.998947560120129,218.051333851180971 -121.582793275651596,41.999631508985203,218.17820673622191 -121.677277125815849,42.001312840201365,218.377177079208195 -121.691088249259622,42.001545596833679,218.40624310541898 -121.706974388514297,42.001727321040768,218.439517668448389 -121.710128416532982,42.001776265660418,218.44614820741117 -122.003050952590002,42.004973184109907,219.059788051061332 -122.157341320442384,42.008382421131657,219.386479776352644 -122.158599329333498,42.008337402126259,219.389009590260684 -122.162371367732391,42.008590326329347,219.397312059998512 -122.163261374983961,42.008590311339503,219.399160710163414 -122.291461418503644,42.008715145396032,219.665753288194537 -122.291467515081536,42.008715265889549,219.66576618142426 -122.380128185063953,42.010467565780814,219.853286242112517 -122.503071134527431,42.009407544060963,220.106998960487545 -122.636676081801767,42.005803465212125,220.378376044332981 -123.003091868727196,42.003939368164176,221.13817027490586 -123.047194207090186,42.003987620436476,221.230194329284132 -123.15684919129032,42.00897252324873,221.46790281124413 -123.232703635709868,42.004780445003043,221.618520847521722 -123.232705268027146,42.00478037877798,221.618524135090411 -123.349504365468235,42.000041700536002,221.853677593171597 -123.50077352819487,42.001456070946475,222.172076338902116 -123.500839527128576,42.001405072324751,222.172122125513852 -123.503940551552049,42.00145801722919,222.178694298490882 -123.520018391809998,42.00136723131542,222.212110890075564 -123.626498427508949,42.000765975559723,222.433475484140217 -123.823417717118929,41.996398852902438,222.837259035557508 -124.088608638963493,41.997790287359187,223.394582903012633 -124.089774647805285,41.997812266495693,223.397062831558287 -124.102163733080445,41.99776305870418,223.422908280044794 -124.102868741491264,41.997877041140796,223.424587586894631 -124.213553558482943,41.999379088833443,223.659005174413323 -124.21616180476029,42.006857676856391,223.677788875997066 -124.272414404202252,42.046468774999283,223.865983138792217 -124.289324535030332,42.046931464895856,223.902197506278753 -124.301599794606275,42.052650975349437,223.938037866726518 -124.316240389085209,42.068777934603943,223.997267025522888 -124.342962340894061,42.093841250172503,224.097541821189225 -124.358182121122454,42.115862911226223,224.168293346650898 -124.359075221328894,42.118926745829889,224.175571145489812 -124.353488544823648,42.130706263646033,224.184682286344469 -124.353737705372538,42.135875006170707,224.19432321190834 -124.357649947369794,42.142873596732755,224.214845950715244 -124.363517043067006,42.144676408513511,224.230289276689291 -124.367982337451863,42.153251912508551,224.254737835377455 -124.368786530859921,42.159358599830391,224.26717731449753 -124.365343511486728,42.159496651728659,224.260224844329059 -124.362272603784945,42.163180523724314,224.260296143591404 -124.362964177555511,42.181659607755208,224.294272741302848 -124.369706457047641,42.189228122663067,224.321671552024782 -124.375130552724457,42.191124937439682,224.336337670683861 -124.376904654621782,42.194035764854355,224.345161128789186 -124.378170763561798,42.197287584268331,224.353521716780961 -124.377509142664891,42.209725987526781,224.373994326218963 -124.379718466074607,42.219714461769208,224.396146847866476 -124.385589764170689,42.228064953694357,224.423060109838843 -124.412939674192614,42.251450345110037,224.521145060658455 -124.413491788307027,42.255018161539219,224.528545189648867 -124.410471967859834,42.261490897211701,224.533574787899852 -124.40710648703282,42.279009100134672,224.55720392614603 -124.412515432752599,42.308331578527877,224.619725474156439 -124.431248315497555,42.332645074286532,224.701199023984373 -124.429182398686081,42.335778957052263,224.702354626730084 -124.427514915268759,42.352772158649294,224.728482566773891 -124.426027694103823,42.378138950621739,224.769525510258973 -124.426825265769722,42.396322053483381,224.802790768444538 -124.430031064129992,42.421227789356472,224.852702272124588 -124.436845565853815,42.435809965099082,224.892172050662339 -124.437068731193946,42.44105670678114,224.901728826574981 -124.424002299652713,42.462118909557447,224.911019559949636 -124.425048861135593,42.479844032902747,224.943866409361362 -124.4233462495597,42.492628443069954,224.962428693659604 -124.401031606637545,42.540817495219649,224.999245263636112 -124.392631386101286,42.567481351646833,225.027751549147069 -124.391944637981382,42.575645969369248,225.0403848933056 -124.402886429241434,42.598404683519909,225.10225311294198 -124.401390066380912,42.61896471811869,225.13447389472276 -124.403146365659254,42.628077248880885,225.153762310743332 -124.415089417704593,42.658817563388851,225.231245449744165 -124.418744558433204,42.66247732439686,225.245093625970185 -124.452711240664499,42.676680056631028,225.339829943142831 -124.453455308637118,42.678668948149635,225.34477380849421 -124.449458500998006,42.685621682530019,225.348374872468412 -124.450389670851351,42.690790417955682,225.359139573760331 -124.475837199470462,42.73354992512116,225.484844311140478 -124.493652610665322,42.742667180399998,225.537280350923538 -124.500446634595122,42.741955097506377,225.550141821615398 -124.501095560672113,42.739484204960661,225.547279115766287 -124.511990512793673,42.735624202581036,225.563278016634285 -124.515341545908299,42.735946129375812,225.570768963545561 -124.516642609909539,42.737684023492584,225.576423274353147 -124.518210154410497,42.754509188698457,225.608299712650478 -124.52641435922763,42.790668312792221,225.686720558442175 -124.538049214496965,42.815048943757333,225.752146659418941 -124.546155549546,42.823831383217403,225.783797699026763 -124.554418167134429,42.84144039755445,225.83069440536201 -124.502120266836727,42.918371624963612,225.852511245757341 -124.482918223731161,42.952363336321511,225.870131556876004 -124.481324135038847,42.95583849411252,225.872691386379302 -124.464600379087116,42.992296752034179,225.899503326043487 -124.458899625236043,43.001181428120475,225.902673001401126 -124.438181767694914,43.072175415277719,225.979028670117259 -124.434220581630484,43.098245248066362,226.014485781081021 -124.436436198004913,43.116847328474982,226.050131560303271 -124.426098477936819,43.12771999310737,226.047008626163006 -124.403713202242685,43.185754637955434,226.097716886550188 -124.397290008090479,43.21195851267629,226.128112968988717 -124.397595426299006,43.224764903320491,226.150026807561517 -124.384449839867074,43.271021952494849,226.199800868518651 -124.390881548170555,43.291376882740337,226.246726126410067 -124.395978868683954,43.300113383110407,226.271647815592587 -124.402395006739113,43.302974136898051,226.289547071792185 -124.404805145938084,43.306724918573771,226.300696623511612 -124.389633696391144,43.326820238254392,226.302794275805354 -124.375029018774441,43.339804882758081,226.294295951724052 -124.35532400239633,43.343519051594498,226.260028250515461 -124.343579203658521,43.352188849282733,226.250272748991847 -124.317005230140779,43.389239575151549,226.256972665898502 -124.288890603849381,43.437144823168154,226.278337643481791 -124.257605550069343,43.503018293006996,226.322610877454281 -124.235532207131143,43.557974118446126,226.367582271806896 -124.220875842037756,43.611160442809897,226.424610923975706 -124.205029658179598,43.668664512056189,226.486044833436608 -124.206889875865116,43.674815194509847,226.499847389757633 -124.200277344296325,43.690319592291068,226.51159518584609 -124.195457862479572,43.70692290828255,226.528766588307917 -124.170398115394391,43.809736600298777,226.644401458092034 -124.160692361470495,43.864335744605917,226.71281616948545 -124.152276406208841,43.91167923002245,226.77195452246815 -124.144714946134712,43.959009192448562,226.832632776349783 -124.135560504560885,44.036668800673695,226.938405299559236 -124.124421750879407,44.105262867695394,227.0252531087026 -124.127840512957377,44.126949819672056,227.066669437102973 -124.119024008424418,44.172730893040224,227.12155226431787 -124.116442885431468,44.198980746368029,227.157946755178273 -124.117690181000725,44.207370343516239,227.173751068301499 -124.113074122359123,44.235886131708661,227.209545376710594 -124.110966147974295,44.266288791567263,227.253314946778119 -124.111765329293092,44.271410545536554,227.263009161688387 -124.116890439284063,44.273534358697653,227.27669663541019 -124.117974512963585,44.275454252604085,227.281911363825202 -124.117870553797502,44.277090371335895,227.28428210131824 -124.117221913674854,44.287298729893294,227.299068983644247 -124.111092460133207,44.304519059535316,227.31384296156466 -124.110110666541146,44.31073779578098,227.321656352840364 -124.111578835851489,44.315356561018092,227.331886197440326 -124.102610367977817,44.33273693463785,227.341159155592322 -124.094125629883933,44.371197349342481,227.384499493986368 -124.086427133456255,44.416418448493353,227.439904964528978 -124.083015250741084,44.420535323722767,227.43948785122484 -124.073732318872217,44.424469311378061,227.426974825561047 -124.069595458627987,44.429389163426542,227.42635683529079 -124.075967709002811,44.435287785033076,227.448404072783887 -124.081327623092008,44.431669852665422,227.453522264957428 -124.084140011904481,44.442324323557713,227.475845265202224 -124.084089280017736,44.478975677489913,227.533001262694597 -124.086457600695425,44.487731242327406,227.55142093449831 -124.085630086826001,44.501926619971449,227.57189182844013 -124.078417078559411,44.532016398978122,227.604268466122448 -124.06928368566291,44.608839124126966,227.705254604108632 -124.071172871771481,44.613777869879804,227.716695686802268 -124.084358824675206,44.609659819140298,227.736752872355282 -124.086508916968569,44.611854682808463,227.744464199990034 -124.067235173205347,44.623243517251609,227.723464849404991 -124.067041522941679,44.63330207167288,227.738650406710804 -124.060315394758376,44.65966301553523,227.765949898399413 -124.06207777476186,44.670157516334484,227.785697645507753 -124.07242934604588,44.684309701301444,227.828280180692673 -124.065441983573436,44.703971950330534,227.844621274620295 -124.061114161276535,44.738449493969306,227.889071145094931 -124.068363093407214,44.763463253312516,227.942036243155599 -124.077511467663584,44.77219470234138,227.973741132766008 -124.076105397287847,44.79889754258032,228.011904229409993 -124.068786509812298,44.831980207120772,228.047965267673135 -124.06519562955512,44.836122087859167,228.047133158892393 -124.056191665627665,44.839022120344517,228.033590459264815 -124.050855042002567,44.850795694588925,228.040950017981231 -124.034338716614641,44.90159574429665,228.085605751723051 -124.027179633366558,44.928960664676083,228.113059201277792 -124.027721934116016,44.937327285991913,228.126886998303235 -124.025878391836443,44.950609733469165,228.143436755053699 -124.017288503486952,44.983687430523581,228.176628891378641 -124.00664592086089,45.045740330204382,228.249585784040391 -124.006433677290474,45.046977843181843,228.251037903130054 -124.006715749667322,45.048947751653387,228.254582426510751 -124.011817755377535,45.048046699722249,228.263367598876357 -124.020038907044395,45.050588440730863,228.283570787869394 -124.017899424891809,45.065538823046637,228.301937943324447 -124.01421183199092,45.077700355819303,228.312994776293635 -124.008106065979959,45.085515122773685,228.312666974030435 -124.006912039097003,45.085011166286193,228.309531561098993 -123.991578276003551,45.094824011413905,228.293879491277039 -123.977476012769202,45.146253013877654,228.343474293127656 -123.97023996044156,45.201991709957831,228.412995998747647 -123.974972555815683,45.217557946114852,228.445763001218438 -123.964942767763247,45.280989365056413,228.520950281061232 -123.966226107818059,45.317795742831244,228.57850522082299 -123.974956892213527,45.337658723515595,228.625424323603511 -123.980729006514139,45.339622534317094,228.639775324612856 -124.009814149743008,45.337581098792235,228.694296249188483 -124.009552253826683,45.340507976510303,228.698138372972608 -123.981773335707658,45.348492130788372,228.655060932040215 -123.975456544629623,45.355558938220689,228.653091022744775 -123.967787628380023,45.387008713954963,228.68473413400352 -123.962618208764098,45.431542880851602,228.740671504288912 -123.966135902788054,45.449876025355522,228.774805943481624 -123.975015640114592,45.468276070689903,228.819593909196556 -123.97860747788387,45.490495047349015,228.859551058150828 -123.972857572578178,45.49426898851226,228.853781498968601 -123.96840353587514,45.494179072853477,228.844858504831791 -123.959632090453411,45.51116049955543,228.852644777856767 -123.949622009254199,45.56563733649854,228.913263815455139 -123.958777313675199,45.572061894809153,228.94076738320291 -123.953312803422421,45.586533372013655,228.951296563260257 -123.94107451104658,45.662678328822913,229.038996327668428 -123.941519243379702,45.709548316294111,229.108455207198858 -123.945192944953391,45.727783470847989,229.142308519221842 -123.948099196806098,45.734001152704714,229.157093464396894 -123.970636246450056,45.757769729683183,229.236017329618335 -123.984651529664291,45.762565270818044,229.270528202876449 -123.983937763994945,45.769035007897443,229.278541039675474 -123.971533192658029,45.783120632726508,229.274671320803463 -123.971413766491224,45.783946603645951,229.275637960061431 -123.963620165296518,45.837848447344975,229.338613350875676 -123.964813397843614,45.870720029257363,229.388571417890489 -123.969708845640696,45.908551335433351,229.452853699214756 -123.981580778811747,45.931132162671226,229.508686200715601 -123.995120197044074,45.939584558304396,229.547378861345351 -123.99578348588139,45.947173224966754,229.559606763534248 -123.972072156642241,45.969880696079059,229.545881914906204 -123.959519261249596,45.975210699360503,229.528989549726248 -123.943912187573389,45.97640193324046,229.500169730745256 -123.939552216159257,45.978047943081762,229.494009449146688 -123.929973352881106,46.010304755446207,229.52166816778481 -123.931413581193453,46.042717362365011,229.571017967537045 -123.935450728947885,46.072410038198932,229.621456014923751 -123.949617512498051,46.116866910091261,229.712673431262374 -123.961277565798596,46.142409624475206,229.77185732871294 -123.976212705028729,46.169531213759122,229.839599841274321 -123.998856210093493,46.204721325189524,229.933728818781674 -124.012435053812595,46.224244259556841,229.987864395603538 -124.026396377541701,46.229985763914165,230.023192659951746 -124.013446544134609,46.236952709355464,230.007832444272935 -124.004089514743541,46.238045834818465,229.991156656295061 -124.000143409259366,46.236056990189184,229.980655131861567 -123.990519911120273,46.224862634512405,229.94605056848377 -123.992207736266877,46.218360744990669,229.940120719373226 -123.989286029396283,46.212252557411247,229.925765726715326 -123.984239782102804,46.210393632796446,229.913296670652926 -123.963829093059559,46.208647801201913,229.871052403002977 -123.952237860061814,46.204829172971813,229.843046428635716 -123.929127210999908,46.192350117920711,229.780278868041933 -123.914493718955612,46.180184310538493,229.73444927111268 -123.906288031696107,46.170027599366982,229.703989101573825 -123.893274026449305,46.165513054074303,229.672186712734401 -123.856888118626273,46.158077615389921,229.590651695616543 -123.844936755249279,46.161264738661643,229.57190630864352 -123.843609163041918,46.170559893299028,229.58258708845824 -123.865435373216485,46.183084669722518,229.642980724573135 -123.868731600076359,46.188408386585316,229.656989444978535 -123.866297651608477,46.190261353478107,229.654887389391661 -123.840889558357858,46.192945705330452,229.609215357340872 -123.823922355324058,46.191028095558558,229.573430493474007 -123.796024367403461,46.197018354566083,229.527638098224998 -123.762064522644778,46.208035514266626,229.477231559343636 -123.738835092317927,46.201423215027077,229.422566742636263 -123.714867833166167,46.199487733687462,229.37314030341804 -123.708754820329901,46.200401807122269,229.362546185031533 -123.677468059564873,46.213137846395064,229.319855595007539 -123.675919161843851,46.216154748687224,229.321153872646391 -123.668839213199732,46.218964760668626,229.311393713578582 -123.657478114997858,46.218710978782966,229.288925027474761 -123.63856183033927,46.215096475183017,229.246949725784361 -123.634587887286784,46.217418450818357,229.242539905942976 -123.628335208124042,46.227171157968833,229.244326300919056 -123.627307489640486,46.234605017861824,229.252956583164632 -123.624900568344842,46.237376794946954,229.252237659879029 -123.615547593331499,46.239964857877979,229.237748173996806 -123.60757553362545,46.240037000507563,229.222348631359637 -123.602278321926605,46.235550951019057,229.205631879158318 -123.588292978668889,46.229391796686748,229.169620582833886 -123.550282423093805,46.248982674239627,229.123754293657839 -123.549747831292507,46.259846231466518,229.138257768936455 -123.48633272642553,46.270268956158667,229.029953483492136 -123.476932587417821,46.268569198611502,229.009258550591767 -123.470831413756599,46.265269447371502,228.992679469287395 -123.449679688101995,46.250571445457922,228.930513054132462 -123.429715752875197,46.2300886630007,228.862307948991656 -123.432931979895017,46.182569586087624,228.800192118622363 -123.373516168557714,46.147117150122611,228.633421088568866 -123.365721148699379,46.146986708446747,228.618062348105013 -123.282248380858647,46.145589876883122,228.453617506660521 -123.215136885483332,46.17328794371015,228.363234956748784 -123.168497128660533,46.189720108741504,228.296401199884713 -123.117986578480583,46.186016183318081,228.192887270823121 -122.906196020303781,46.084490270650498,227.633037996478379 -122.886553978485907,46.061037607255024,227.560391651466489 -122.816069683905738,45.961747043446159,227.276705418713391 -122.787093975647082,45.868466488059191,227.081721609458327 -122.787582343574783,45.851304201977051,227.057110447436571 -122.798029485678242,45.825793088333143,227.039469526149333 -122.797670927063635,45.810769728629289,227.016345445998013 -122.771596624274437,45.781354441944217,226.921423847787082 -122.763514767112767,45.759935493164448,226.873549883253872 -122.76217084416173,45.735186564329823,226.833808458410203 -122.764244626417295,45.729371672025181,226.82913779001683 -122.774572667789144,45.700411813315277,226.80584835074842 -122.776571979092452,45.681212591345741,226.780890586785972 -122.765870035634165,45.657914773094639,226.724853199906647 -122.740168346109257,45.644915788477967,226.654907701537013 -122.677065866037807,45.618819034321135,226.491847716271877 -122.645964303104051,45.610519947225306,226.418342303484678 -122.494314063618802,45.584065801247405,226.081043086014688 -122.382355847006636,45.576728126581322,225.850551409646869 -122.354855375858591,45.570228897074387,225.786763736978173 -122.333554422150669,45.549030180809822,225.712613923475146 -122.296952938283781,45.544331038141145,225.633714590221643 -122.268752707587751,45.544631531907484,225.578936815261841 -122.251044697625261,45.548535684052872,225.55024267360568 -122.2037518873734,45.564931837195637,225.482798220589757 -122.185747225648626,45.578486585464567,225.468351831659675 -122.14280210243993,45.585299068071194,225.394779868423939 -122.131599948435237,45.583736335549347,225.370467710308731 -122.131541948733911,45.583758335658523,225.370388024486601 -122.128248905833502,45.583364411509535,225.363341531716287 -122.128248907436301,45.583408409644321,225.363409082405269 -122.114407743371203,45.582200709451108,225.33447954710573 -122.103726727381186,45.584307811978789,225.316823617555201 -121.985090124654931,45.623604279493875,225.14529503788799 -121.92429422572377,45.649287677236202,225.066041461192071 -121.910319620424502,45.655191288539719,225.047836299054325 + + + Rhode Island + + + Rhode Island + 0400000US44 + 44 + 1033.814000000000078 + + -71.384439635457738,41.466416874446921,136.05760099645704 -71.390137757486258,41.462239984928623,136.049678829498589 -71.391128715296645,41.456678181039784,136.032975126057863 -71.40042191905944,41.450231347967268,136.021212553605437 -71.401414111743108,41.462574888968092,136.061262663453817 -71.396781367799605,41.493849189439935,136.156019818969071 -71.387365187068269,41.494705220489948,136.149949782527983 -71.379768192930754,41.506581713166646,136.180477697402239 -71.391859559983899,41.516211168550733,136.22223437204957 -71.392991603161789,41.526100466951441,136.254590891301632 -71.385332970766484,41.558367230100956,136.349538220092654 -71.379875538741501,41.569403061330441,136.37935477681458 -71.374472473666543,41.574844525751054,136.391529767774045 -71.371048411695199,41.57559351571625,136.390710913576186 -71.364414239114282,41.572490710264567,136.374726767651737 -71.360722465797025,41.557939430308288,136.325272949412465 -71.364145810498414,41.503585984862561,136.156435768119991 -71.361256507125916,41.484754901033554,136.094096989370883 -71.381800812535474,41.476195153131911,136.086125479079783 -71.384439635457738,41.466416874446921,136.05760099645704-71.327621219011803,41.492920327115066,136.088650896213949 -71.326217127116593,41.489235472116725,136.075670110993087 -71.328674142945601,41.484619622547349,136.06333096884191 -71.343865877875416,41.497249443599145,136.117482593283057 -71.341974404111596,41.500232022322272,136.12516912445426 -71.327621219011803,41.492920327115066,136.088650896213949-71.33205317227582,41.581949499117862,136.374542358331382 -71.33680265621463,41.587528536809351,136.396594433113933 -71.337901571135362,41.596318298079886,136.425400068052113 -71.334605328174021,41.607488654600957,136.457639316096902 -71.330413180613348,41.610726540698792,136.463976568542421 -71.327463290469794,41.617743436308281,136.483407314866781 -71.326730873427664,41.625617611548073,136.5076022753492 -71.334159599562241,41.631164918094555,136.532021572813392 -71.347424951869257,41.633857863393303,136.552847451530397 -71.363724007651641,41.653085373377507,136.628695865161717 -71.367020520406498,41.662607592391659,136.661811298690736 -71.349256702521188,41.665354530150978,136.653977769427001 -71.339550608847532,41.660410353765833,136.629362005740404 -71.337036214188515,41.649589215488355,136.592869844287634 -71.337902250220054,41.647775070548008,136.587946638464928 -71.343368766887934,41.646419270048654,136.588742536492646 -71.344520776698701,41.641528997142231,136.574372609145939 -71.331565570309195,41.634620927564235,136.540527628734708 -71.315743002237184,41.632026902278433,136.517647795379162 -71.306403134205212,41.62415280172975,136.484108357690275 -71.304205340218616,41.608221362416351,136.431729547679424 -71.308234138032148,41.599614680771964,136.408266230486333 -71.318327502376619,41.584818148934204,136.370861088857055 -71.326956555373087,41.580213912863542,136.364318943582475 -71.33205317227582,41.581949499117862,136.374542358331382-71.28242382479651,41.649836412919527,136.542995604686439 -71.279023357650829,41.64893810136941,136.537008198909461 -71.275167911704244,41.639754587813442,136.504432731308043 -71.284643910482004,41.639426465469533,136.512177467346191 -71.287608214492309,41.644354168556106,136.530487801879644 -71.283857543377593,41.646062728638476,136.532407394610345 -71.28242382479651,41.649836412919527,136.542995604686439-71.590406501219547,41.198200209620211,135.39866944309324 -71.581084321528451,41.206479972726974,135.416245758533478 -71.578157359932092,41.216352629501451,135.444923622533679 -71.577517467022318,41.22607627491869,135.475277286954224 -71.574641430461057,41.230078148459675,135.485305053181946 -71.5619489834787,41.225849399064415,135.45988249592483 -71.555861699295207,41.218464717180538,135.430635463446379 -71.554922619944961,41.214599866999144,135.417443783022463 -71.558314615017395,41.206185152872031,135.393841040320694 -71.564974701119482,41.197015442496962,135.370910024270415 -71.56660760830691,41.186016837276853,135.337408401072025 -71.561824354217592,41.177830175796856,135.306810100562871 -71.551080900598805,41.168431603513845,135.266724522225559 -71.545300697931069,41.166556715835881,135.255299321375787 -71.54472663357069,41.162965853073516,135.24330999981612 -71.547905632430286,41.155329112356164,135.221956465393305 -71.552807758080974,41.153363148817569,135.220309177413583 -71.594555975382747,41.147984038139334,135.242553048767149 -71.600849177084143,41.148576969393041,135.250387723557651 -71.612562620210412,41.154883648579641,135.281561331823468 -71.613989755885001,41.161925377058367,135.305356314405799 -71.606421807291227,41.183782623976448,135.367859120480716 -71.595850562739955,41.190035471201107,135.377799207344651 -71.590406501219547,41.198200209620211,135.39866944309324-71.409492986669335,41.655447106459057,136.678717503324151 -71.404626348269119,41.590951317528926,136.470520507544279 -71.448569611843837,41.582030130276564,136.483301321044564 -71.443423575951755,41.566705585796477,136.430063222534955 -71.422504298150358,41.539524164340271,136.324586734175682 -71.418253349478832,41.536168446994893,136.310004957951605 -71.415680280365081,41.524758915615323,136.271503044292331 -71.415792053916249,41.517935564400034,136.250012685544789 -71.42228004562773,41.500261899256373,136.20011942461133 -71.420825606576599,41.48639147868942,136.154838161543012 -71.418811984681611,41.483706895115112,136.144455282948911 -71.418476331438413,41.479568138564233,136.131032139062881 -71.419258444623395,41.474286763384875,136.115031592547894 -71.42201209471699,41.471522169571422,136.108844402246177 -71.423845961851995,41.474316292907126,136.119409169070423 -71.431599175496089,41.472270310089542,136.1201694868505 -71.43178111569182,41.467289490903774,136.104559196159244 -71.428789942445164,41.461163737226819,136.082354405894876 -71.429506894156233,41.455792928414837,136.066003969870508 -71.434466927688192,41.446630226914735,136.041597995907068 -71.438525005046415,41.442937331954774,136.033685290254653 -71.442054118405807,41.44323729474123,136.037935634143651 -71.449803317658734,41.440114351485029,136.035282555967569 -71.456700459351879,41.434621501371787,136.024321178905666 -71.456226116345334,41.409598421906068,135.94452391564846 -71.475773435346355,41.387741078376848,135.893481531180441 -71.484150506294952,41.373359544048867,135.855688195675611 -71.514257477399397,41.376339210677756,135.893383090384305 -71.527580915176742,41.378273040475349,135.912025519646704 -71.556238758469192,41.374952948894716,135.928409535437822 -71.625364732953813,41.362506890365992,135.953972565941513 -71.688931459898555,41.344460078698077,135.95668722037226 -71.70249280164937,41.338605192621444,135.950923307798803 -71.72160232061529,41.333204248293079,135.951854545623064 -71.730109580217174,41.332627563160536,135.958073949441314 -71.77456590832486,41.329613983311233,135.990616453811526 -71.786821256983345,41.327375973731066,135.995134540833533 -71.834620598011895,41.317267986952423,136.008433143608272 -71.858298204939828,41.307955152129111,136.001388250850141 -71.863638415557887,41.311427983898064,136.017487702891231 -71.862975775053116,41.318248325487573,136.038497655652463 -71.860436200020217,41.324035688239725,136.054442811757326 -71.840647917637696,41.336325963255554,136.07461941614747 -71.833396337617756,41.342839784302924,136.088390094228089 -71.832105832659593,41.346281030073079,136.098077548667789 -71.832479264060865,41.372533968507803,136.181658810004592 -71.834309501365055,41.386158453838775,136.226568734273314 -71.842997913527014,41.396992990259555,136.269137313589454 -71.844339094102921,41.407463595545252,136.303570666350424 -71.843430119542958,41.411488454595933,136.315452603623271 -71.840516059643164,41.413752393432361,136.319855523295701 -71.819256502349774,41.421232279024885,136.32337323948741 -71.798548824135082,41.418342540979452,136.29459794331342 -71.798539519072222,41.418543952153996,136.29522689525038 -71.790226642161869,41.598479176345819,136.855998926796019 -71.790223970111668,41.598537013915752,136.856178820133209 -71.790333142489089,41.641642634429502,136.992170218378305 -71.79054727780823,41.726190372085682,137.258527180179954 -71.790547698227698,41.726356365769462,137.259049629792571 -71.793637905958761,41.808620364986972,137.520445303991437 -71.793656929153713,41.810289304540774,137.525702334009111 -71.795032398512134,41.841759157801562,137.625750390812755 -71.795032411536283,41.842719123161849,137.628761711530387 -71.796961713366585,41.906084302448775,137.829204089008272 -71.797694982119054,41.930167450093592,137.905312201939523 -71.800115844858027,42.009677080407243,138.156292193569243 -71.591971256798814,42.015326255012155,137.979284698143601 -71.577774986770578,42.015711550252696,137.967266209423542 -71.560305444192906,42.015955673422283,137.951766526326537 -71.528471458125026,42.016611890093863,137.924210083670914 -71.528171450102676,42.016711888776868,137.924244073219597 -71.501769651797474,42.018712016170994,137.905971989035606 -71.50076962188362,42.018812020125495,137.905356234870851 -71.499122760730842,42.018834266392446,137.903896584175527 -71.458966841409435,42.019376703697652,137.868333954364061 -71.382261936168476,42.020412853631086,137.800555327907205 -71.382326358569131,41.986614379212597,137.694765470921993 -71.382361237502408,41.968315718064311,137.637457521632314 -71.382261208816317,41.966415786910019,137.631410055793822 -71.3824596520287,41.924517288466269,137.500209243968129 -71.382559652469524,41.924317294898195,137.49967441894114 -71.377459108196746,41.895618364078643,137.404885709285736 -71.374658026050128,41.896018370655021,137.403547048568726 -71.371857941252088,41.896218384410837,137.401581755839288 -71.366257775667052,41.896918401134428,137.398593778721988 -71.365557755135541,41.897018402775124,137.398259601555765 -71.363357689075883,41.897218412038463,137.396850675344467 -71.355557457407485,41.898118438011217,137.392456109635532 -71.353557397589739,41.8983184457745,137.391233059577644 -71.340155937319878,41.895218657329643,137.36910152155906 -71.340155934643477,41.895018664517579,137.368473567999899 -71.338454083855666,41.83532182538606,137.179333916865289 -71.340454123618599,41.833621871709767,137.17584090679884 -71.34015377429526,41.808122793174746,137.095367955975235 -71.328752072463672,41.78212481633912,137.002994432114065 -71.318650698824769,41.777725050454777,136.979788428172469 -71.318645648342468,41.777722919529239,136.979777043685317 -71.262245623194858,41.753926329713735,136.852646851912141 -71.225649611525085,41.712124763109081,136.68704882171005 -71.228726714517649,41.707125012858683,136.674120638519526 -71.241843019825893,41.699371043980889,136.661781894974411 -71.238486833432304,41.683263472364253,136.607852103188634 -71.242401936173906,41.668833713401852,136.565925062634051 -71.260412028026664,41.644224741283466,136.504884455353022 -71.267907071974733,41.646573714780452,136.51924404874444 -71.270927547790805,41.654068202534717,136.545708288438618 -71.270032655644499,41.656529088037836,136.552649829536676 -71.281219476731579,41.674202630646612,136.618801578879356 -71.28849076149686,41.674090712127729,136.625184033997357 -71.291399142171997,41.664023441494521,136.596103654243052 -71.3000126410804,41.651159668675987,136.563476847484708 -71.302249971465613,41.651607082560275,136.566963984631002 -71.304599214181735,41.656416977788062,136.584327886812389 -71.306948632702998,41.674202439571452,136.642642899416387 -71.303480912461026,41.683374850217326,136.668371019884944 -71.299789332510272,41.683151161573413,136.664243986830115 -71.293972399778738,41.689974564515452,136.680381848476827 -71.292070863508471,41.704292451423342,136.723783256486058 -71.306613643640759,41.720288088639506,136.787690465338528 -71.315674847427459,41.725433504182938,136.81230547465384 -71.343641384183982,41.730131346799894,136.853038549423218 -71.350912661595004,41.729460144381555,136.857668608427048 -71.354028330271362,41.726816670665613,136.852229159325361 -71.354604192703718,41.72632808302675,136.85122380591929 -71.366573663754494,41.713240572724885,136.821085954084992 -71.366573442641126,41.696573677339352,136.768540232442319 -71.373844432219755,41.674201952232934,136.704735115170479 -71.378766438865895,41.668273430090068,136.690606129355729 -71.382905484769992,41.668944551785813,136.696571446023881 -71.390736165958003,41.673530685774317,136.718320705927908 -71.391631206233029,41.682255629556451,136.746673334389925 -71.3902888564525,41.685052101260354,136.754244792275131 -71.391407525419481,41.685723241129622,136.757401457987726 -71.41892653576943,41.685834896090043,136.783352785743773 -71.442194669454807,41.688071887409201,136.812070517800748 -71.443940438614206,41.689929070381979,136.819551773369312 -71.442754047062721,41.691651349007984,136.823876291513443 -71.446781233353434,41.692769903609921,136.831153722479939 -71.450176550058757,41.689027096564601,136.822517770342529 -71.445326621358973,41.666035766597794,136.74549725651741 -71.430895963155237,41.669167910021493,136.74193303193897 -71.426309506964614,41.672411835836762,136.747893801890314 -71.410158801681717,41.664270907969446,136.707178119570017 -71.409492986669335,41.655447106459057,136.678717503324151-71.121415889243707,41.499083624353474,135.917062944732606 -71.137713350661869,41.495577632392319,135.920999308116734 -71.14193942999519,41.491572747458896,135.912205878645182 -71.141070349838941,41.487490902853779,135.898459289222956 -71.168191894628777,41.473040920747991,135.877711361274123 -71.170977995092869,41.46561048186831,135.856720182113349 -71.193867627883691,41.459567534122542,135.858743702061474 -71.1958151418998,41.460673543280969,135.864056371152401 -71.197705052147697,41.462752259675369,135.872401172295213 -71.19745447173041,41.466391866134401,135.883713628165424 -71.190863898533749,41.479911284976815,135.920484994538128 -71.191015166316589,41.485920702512644,135.939679353497922 -71.200237893173437,41.493404065221021,135.971942986361682 -71.200540323098963,41.49714577672497,135.984083288349211 -71.207230557390432,41.500849646865923,136.002018306404352 -71.201636698906555,41.516005520880562,136.044863699004054 -71.214412718455762,41.547450948368656,136.156281357631087 -71.209499351231457,41.572660317007418,136.231522372923791 -71.208630391021345,41.602291682428735,136.324447062797844 -71.213506412267051,41.611702625810672,136.358711552806199 -71.213267110124463,41.619920922486138,136.384469179436564 -71.212854214379021,41.624620318700202,136.398940595798194 -71.217010990478755,41.627120190766895,136.410684777423739 -71.241559798819068,41.620855191564964,136.413597477599978 -71.244451026858414,41.589139540489377,136.316007408313453 -71.236980764901688,41.576399129413161,136.268790511414409 -71.237492313256269,41.537484983691108,136.146105625666678 -71.235624747696349,41.534171873854497,136.133884428068995 -71.228838830245735,41.529931131751347,136.114167456515133 -71.230293122132366,41.52317836602586,136.094128134660423 -71.23390554074949,41.516391169800841,136.075977138243616 -71.233990242463278,41.516232027904593,136.075551520101726 -71.234284629130968,41.515678919231853,136.074072246439755 -71.241463361544817,41.50219115111414,136.037995278835297 -71.239435379517488,41.488480281571846,135.992662600241601 -71.238024361107961,41.488180725714749,135.990404466167092 -71.237600654798939,41.485004295004721,135.979942818172276 -71.238632065545673,41.482790614246248,135.973882079124451 -71.238751496950201,41.482534282806675,135.973180265165865 -71.240653415902671,41.4784522608035,135.962003585882485 -71.240896234496105,41.477931107767141,135.960576596669853 -71.241559585949361,41.476507379796153,135.956678163260221 -71.247552801479912,41.473595245875067,135.953005860559642 -71.247525168654562,41.473958208236162,135.954131017439067 -71.247023173451836,41.480552009897984,135.974569756537676 -71.24684157884856,41.482937289359093,135.981962655670941 -71.253541847149279,41.487537071854184,136.002759738825262 -71.265643262402378,41.490536872862528,136.023498910479248 -71.268429096684628,41.490390221888624,136.025620445609093 -71.283112337599789,41.489617271505587,136.036806916818023 -71.286489740957265,41.489439479330535,136.039381077513099 -71.295962068780199,41.485985014769682,136.037235992960632 -71.297368107577213,41.481464233911105,136.024215752258897 -71.301289533661006,41.468855828211609,135.987896176986396 -71.303433937800293,41.461961010840433,135.968031171709299 -71.303591966176953,41.461452908488738,135.966567142866552 -71.303745675987855,41.460958691450308,135.965143107809126 -71.303779808439927,41.460848946735531,135.964826886542141 -71.305097703867389,41.456611570038831,135.952616722323 -71.305245042753839,41.456137837186255,135.951251579448581 -71.305455022915794,41.456026852856965,135.951094963587821 -71.306747270795256,41.455343839457818,135.950131169520319 -71.311208286928917,41.452985983939818,135.946804400533438 -71.311324544838186,41.452924536201301,135.946717709302902 -71.312194959102854,41.452464481582531,135.946068674325943 -71.312245211712153,41.452437920729807,135.946031202562153 -71.312255160122106,41.452442511891832,135.946055022068322 -71.313545259912672,41.453037889162253,135.949143429286778 -71.313569156924558,41.456232488251239,135.959295650944114 -71.322261467053849,41.457235312865116,135.970564282499254 -71.338229323163219,41.450668443239962,135.96460890956223 -71.338547003255044,41.450537795535155,135.964490516111255 -71.351948444020891,41.452437626743055,135.982998971827328 -71.352309776472552,41.452734726211176,135.984277634881437 -71.359018747114035,41.458251063304665,136.008018081076443 -71.359115154958204,41.458330333016022,136.008359218016267 -71.359208980179815,41.458407479209811,136.008691215887666 -71.359509637256565,41.45865468938127,136.009755086153746 -71.359868225397051,41.458949532385276,136.011023936793208 -71.359989218387952,41.459049016815577,136.011452062986791 -71.360145000092004,41.45917710567408,136.012003290466964 -71.362704827425134,41.461281880190604,136.021060975268483 -71.363053801437616,41.461568818140847,136.022295766510069 -71.363141297368841,41.461640760183172,136.022605354897678 -71.363551779077554,41.461978271791111,136.024057774804533 -71.363595679205531,41.462014367925185,136.024213106371462 -71.36358862418291,41.462040052826879,136.024287945590913 -71.362864473098924,41.464676436945744,136.031969420611858 -71.362613429814004,41.465590398890285,136.034632279537618 -71.362373027214218,41.466465621775505,136.037182228639722 -71.347922777481969,41.47286472951096,136.044000308029354 -71.336844172332732,41.471282261009016,136.028668626211584 -71.317370739133935,41.479195144944946,136.035624611191452 -71.318265431846697,41.490410591926903,136.071996224112809 -71.323976942336117,41.504722290485098,136.122645788826048 -71.32865611294423,41.50589196625149,136.130702841095626 -71.331546224325919,41.509332268571875,136.14428688865155 -71.331683991433593,41.519997268857999,136.17818570509553 -71.313930942301795,41.536304528943788,136.213303764350712 -71.311385095381652,41.548552096346988,136.2496995665133 -71.304504156289966,41.561556569051788,136.284454504959285 -71.295214811338781,41.573047315294986,136.312178655527532 -71.289228268931652,41.574905134247189,136.312499073334038 -71.285994197288232,41.57875832126944,136.321685140952468 -71.27429670518103,41.608620410739874,136.405252505093813 -71.273264648728698,41.616670776280891,136.429738823324442 -71.276085960902194,41.621074367516812,136.446268998086452 -71.272714276499272,41.625615619907158,136.457493427209556 -71.25193352661789,41.6404091589975,136.484982779249549 -71.212986485246589,41.643574543095063,136.458955150097609 -71.196490731682275,41.676719105136883,136.548390979878604 -71.195240509784981,41.676430630910183,136.546325909905136 -71.192028401914143,41.675844675913375,136.541510452516377 -71.192025402820946,41.675920673181473,136.541747622191906 -71.182140071018367,41.674130811175239,136.526972059160471 -71.176839891269722,41.673030890234834,136.51860808301717 -71.176939856246619,41.670130994597649,136.509543208405375 -71.176939850986145,41.669731009095472,136.508280107751489 -71.15483810918262,41.665731317427408,136.475261671468616 -71.146718838800084,41.664424424774033,136.463648358359933 -71.136036475527959,41.662131586765497,136.446560407988727 -71.13553645993278,41.66213159045649,136.446099669672549 -71.135326200963647,41.642892289725083,136.385116197168827 -71.135332200311495,41.642828292002598,136.384919472038746 -71.134644097142512,41.635720724641082,136.361821079626679 -71.134456417558653,41.63378214132527,136.355520375072956 -71.134200570835489,41.631139444734615,136.346930756233633 -71.121415889243707,41.499083624353474,135.917062944732606 + + + South Dakota + + + South Dakota + 0400000US46 + 46 + 75811.000000000000000 + + -104.056848089569556,43.854642720616745,188.141181960701942 -104.056823291925156,43.937696790145914,188.328528475947678 -104.05669633504472,43.939251730089232,188.331808011047542 -104.056314399462977,44.142234648203718,188.786863252520561 -104.056240462178181,44.181533124814443,188.87460068333894 -104.057690575793231,44.518868877201484,189.62655926682055 -104.057656348133847,44.544478881215618,189.683043252676725 -104.057641851207862,44.572152537726303,189.744062649086118 -104.057578833937754,44.692475144567538,190.008703390136361 -104.057706913630525,44.695013044499049,190.014498803764582 -104.057546111050854,44.701597792551482,190.028675292618573 -104.057639812285117,44.724552904652306,190.079208869487047 -104.057703822590639,44.724850892158706,190.079973784275353 -104.0577341735749,44.769091185716029,190.176991612650454 -104.057734181948149,44.769365175160367,190.177591698244214 -104.059476261428642,44.998551361335139,190.680604596622288 -104.041906003878552,45.001107537390808,190.655757124535739 -104.04205838361014,45.21400323512475,191.117075007408857 -104.042146490742596,45.337053811344639,191.382199615240097 -104.042053785229811,45.346463459103148,191.402257305569947 -104.041903691845434,45.375320377672359,191.463959949091077 -104.042200305349795,45.394579650457729,191.505789002403617 -104.043557411972913,45.491890987500291,191.716480503790081 -104.043067694702941,45.501095651524807,191.735313968732953 -104.042938799316062,45.504468527654261,191.742300369776785 -104.043511946924156,45.540222185265385,191.819633852690458 -104.043442313774733,45.551790755371762,191.844199092127383 -104.04373254941757,45.559014481800276,191.860105174593627 -104.045619555582405,45.869472971248122,192.522024714387953 -104.045814675587266,45.873061836369473,192.529931357130408 -104.045835991597954,45.883058555629098,192.551060645841062 -104.045835999941914,45.883062468886045,192.551068916916847 -104.047251082970334,45.94639512521222,192.686943488195539 -103.670279697261591,45.946333079706044,192.046714522875845 -103.662579545597794,45.946332201066035,192.033665136434138 -103.662579545274056,45.946322201431023,192.033643969334662 -103.578881896684464,45.946375517613369,191.892006325535476 -103.56050852898619,45.946223812341067,191.860584944486618 -103.436647083685187,45.94638575447528,191.651437545195222 -103.434189035680632,45.946407792304498,191.647329868748784 -103.419835747052403,45.946281022488002,191.622803554870188 -103.413120616416961,45.946359125159454,191.61162222828716 -103.285902085541849,45.946249126712019,191.396573142148554 -103.285885085106827,45.946246127087953,191.396538071334362 -103.220187778435289,45.946306155358926,191.285851110704243 -103.212425624122289,45.946320276544135,191.272793755866587 -103.163041641521616,45.946408047372721,191.189743138849735 -103.142729234149897,45.946356367495611,191.155409277416766 -103.099661373376691,45.946362041813728,191.082883496768773 -103.080265986197745,45.946389344483947,191.050286120735109 -103.049567373064193,45.946435823291296,190.998713194392622 -103.02784593697173,45.946408164181783,190.962103147991002 -102.997455226405691,45.946269127044161,190.910682049579918 -102.997132316650237,45.946267649734992,190.910135778598487 -102.991689208911765,45.946312733225739,190.901077463291585 -102.943856016123732,45.946194283790952,190.820398412644863 -102.922267809402626,45.946140824738158,190.784000172279775 -102.882037001381207,45.946172452132551,190.716474357992411 -102.706652464326552,45.94617818869699,190.422174136154354 -102.675857848005606,45.946380661330188,190.370992744341493 -102.674254814611189,45.946350687397135,190.368241988122463 -102.668464699466384,45.946413775336651,190.358674625866115 -102.653400399135236,45.946557004861972,190.333741153590381 -102.644335214119366,45.946511147748105,190.318455562926829 -102.560357502905759,45.946237465235917,190.177251791581511 -102.55272534435079,45.946123588133474,190.16423393972218 -102.477800827302644,45.946292747459729,190.039265596307814 -102.469339654419215,45.946268879874282,190.0250672865659 -102.461362489621337,45.946191006706115,190.011563171632588 -102.44819522170387,45.946193211301249,189.989557195454836 -102.427172792318188,45.946151539522006,189.954332697205245 -102.427133789895493,45.946100541972996,189.954157651402056 -102.421948686837268,45.946180619646476,189.945665628649294 -102.412121486919943,45.946189772005425,189.929265066049993 -102.407951399331537,45.94610783975655,189.922121259383857 -102.40035024030675,45.945978962503347,189.909144571982324 -102.398134196671265,45.94602699519065,189.905546049587429 -102.394542125462493,45.946090048708463,189.899681366980076 -102.394471123121491,45.946062050824011,189.899502414278686 -102.356057338075615,45.946012649176666,189.835240866057575 -102.355158322378429,45.946095660133707,189.833918777294457 -102.330003803229474,45.945918057057661,189.791540776379406 -102.219638543316094,45.945824772415236,189.607230374589562 -102.178763702955578,45.945736409102928,189.538912272080779 -102.178468696907643,45.945736413673806,189.538420703262091 -102.161209343594749,45.945755680380039,189.509705522097647 -102.159735313361054,45.945755703214132,189.507249866612256 -102.158163281816186,45.945777726771588,189.504678571596742 -102.147126055258724,45.945773897877402,189.486284177750349 -102.137038845937923,45.945701056739715,189.469325120560825 -102.1271986460562,45.94576720674079,189.453080041334033 -102.126397634734701,45.945928213332571,189.452094431035221 -102.089323866426611,45.945713795049848,189.389904057607055 -102.086890817827026,45.945757831120503,189.385949370451272 -102.062698319863898,45.945738206233855,189.34564274456352 -102.002445973556348,45.945632182717766,189.245182814076543 -102.002423076010473,45.945632142425779,189.24514464661479 -102.002192073349576,45.945698143617292,189.244903548620641 -102.000470037118959,45.945674171109488,189.24198801536113 -102.000385290737896,45.945673053977075,189.241844669915736 -101.993953900162154,45.945588274960485,189.230966655537486 -101.991267844857745,45.945589316452683,189.226502707228065 -101.975515519753401,45.94557356054522,189.200279396958649 -101.959205184407253,45.945601811630326,189.173228851519525 -101.888602729676123,45.94567789961495,189.056094898842275 -101.854406019716691,45.94557643124746,188.999094936996698 -101.83475461353035,45.94558373429404,188.966492190957069 -101.796368816956502,45.945517328949663,188.902654462493956 -101.79181672411805,45.945562397544201,188.89520104508847 -101.767939225678845,45.945442770109032,188.85533769056201 -101.767055208785777,45.94548778212026,188.853969536721706 -101.766039189156771,45.94553279616683,188.852382501587272 -101.760373073819935,45.945598881157508,188.843130212277174 -101.731830478160774,45.945477325564823,188.795543833635747 -101.725141334054982,45.94530843474697,188.784088466316462 -101.710546036317311,45.945469653879101,188.760249046608806 -101.68357947952947,45.945566065903002,188.715775655582547 -101.682334450033252,45.94545108922037,188.71346271969378 -101.659390975239191,45.945509440518364,188.675584453158081 -101.630356368693711,45.945415890965599,188.627300328575075 -101.563913984020516,45.945360915459602,188.517216009087861 -101.559033878025105,45.945223995453183,188.508844108320773 -101.375523050971353,45.945391809215955,188.205960766412318 -101.372443984404555,45.945324858879744,188.200731942430139 -101.367036867863078,45.945218945670788,188.191575560718775 -101.335624212257969,45.945293425010973,188.139900959096849 -101.315024780453442,45.94529174106308,188.105914479121566 -101.288975232363399,45.945235142578042,188.062828768976033 -101.273275906165381,45.945337379607047,188.037167121656239 -101.225756902503477,45.945154114452762,187.958444975316525 -101.205537473452779,45.945024428858176,187.924848636612296 -101.18085295438604,45.945025806863995,187.884193953126669 -101.177442885386228,45.945112855960772,187.878769002854824 -101.172823787450184,45.945088927547182,187.871110127307475 -101.164990621238488,45.945045049054166,187.858115760609508 -101.14782525763033,45.944972314441216,187.829695828258991 -101.144320183801682,45.944971368126573,187.823923834599555 -101.108574435317905,45.945114910005536,187.76540938206017 -101.103082315071717,45.944971999153267,187.756059307605028 -100.982438775482834,45.945200835324883,187.558210768736899 -100.978310681801219,45.944996905688463,187.550980675034225 -100.966156423457889,45.944955092838065,187.53092285245657 -100.940733886411195,45.944981480126344,187.489228527061641 -100.937326811447235,45.944890535402791,187.483433955349028 -100.891919853101157,45.944995224748403,187.409125853329897 -100.771492294462647,45.944902064435752,187.211430544033647 -100.763851132076951,45.944903180822088,187.198911967687309 -100.763813132396081,45.944939180114019,187.198929048143327 -100.752147879564745,45.944785363331953,187.179477201774716 -100.722605262880165,45.945160799878813,187.131913566030562 -100.652558760269514,45.944817878367687,187.016489150002599 -100.629419265686721,45.94478023173567,186.978547621518373 -100.513684788036713,45.944793974269828,186.789386781863868 -100.513528790707412,45.944793992791546,186.78913199622184 -100.501089452428346,45.944771822420968,186.768764440901577 -100.464572740155418,45.944706739286559,186.708991691470146 -100.432331051639835,45.944779226035074,186.656526487320662 -100.426171917470185,45.944710321948023,186.646323231980205 -100.42189582467995,45.944674388108503,186.639266225509346 -100.412119612574358,45.944594539272458,186.623138611204922 -100.295857110194817,45.944412308223278,186.43318922072649 -100.287075917010498,45.944273446184091,186.418576079420745 -100.285864885391305,45.944094470904055,186.416206330060959 -100.277344701200519,45.944065600975584,186.402263994328678 -100.276492683585218,45.944088613059201,186.400927301496267 -100.172554431118783,45.943659201431892,186.230791411362588 -100.153812025891185,45.943631485862149,186.200245605781674 -100.143457803046218,45.943651641704328,186.183452478609979 -100.112066120885771,45.943513121164045,186.132109012454748 -100.110198081277886,45.943537148541104,186.129126069135964 -100.085889553208261,45.943447519051084,186.089421383105218 -100.070746221758313,45.943316752474175,186.064526117406785 -100.007210840050703,45.943097719618926,185.960859017446637 -99.967498975657463,45.942970323388664,185.896125949919224 -99.882014116031002,45.942821617595875,185.75716792140156 -99.881784197245594,45.942819527092347,185.756790610030293 -99.840401199937361,45.942443257962658,185.688895976170897 -99.752115267176592,45.942086599612026,185.545161134563386 -99.7512132481707,45.942107612436644,185.543748493306339 -99.751044243839004,45.942086615724605,185.543428114615381 -99.749589212071086,45.942084637684886,185.541069302707911 -99.719791561713649,45.942059086790167,185.492806041613221 -99.719789601839025,45.942059090099221,185.492802882567048 -99.694693015531243,45.942101462672163,185.452310886234045 -99.673655559871776,45.94221477488194,185.418552065268159 -99.612876233152846,45.942251686719977,185.320421242155135 -99.590495743910495,45.942258022561461,185.284289915114641 -99.49485362720209,45.941538483142779,185.128326910547912 -99.491967563278948,45.941517527162219,185.123625188134611 -99.402971610084919,45.94152386065614,184.980187998153269 -99.387276266394096,45.941564094288459,184.95499617792666 -99.380197110657178,45.941560200429912,184.94358597509563 -99.346670370120634,45.941456705993289,184.889370526187122 -99.346484366028307,45.941456708777089,184.88907110132277 -99.319584772905912,45.941421112569309,184.845695654861629 -99.298981316191757,45.941323424247173,184.812324531376362 -99.285677024026441,45.94135362216268,184.790990036912262 -99.277974854094211,45.941346737587317,184.778585904277861 -99.259453441917728,45.941219019034698,184.748512761667371 -99.223976659786388,45.941230548883787,184.691504994407296 -99.223379646551777,45.941228557875462,184.690540957264602 -99.215351470833141,45.941275676168267,184.677744316868484 -99.21427844690615,45.941267692483116,184.676001927815378 -99.104077013125419,45.94131933603753,184.499143821187317 -99.094572803595369,45.941345476907912,184.48395159561187 -99.007457216368849,45.941107093324653,184.34370980784297 -99.00734486371519,45.941106785881296,184.343529039993882 -98.907177626691222,45.940684292428948,184.182135617360473 -98.90612960339412,45.940684308024586,184.18045811727643 -98.726071083567746,45.939851617893744,183.890700866468251 -98.187314389875198,45.93736007121602,183.027740397490561 -98.186321367372997,45.937358085922419,183.026161360554397 -98.072196784774818,45.937356766808961,182.845345169305801 -98.009882369317651,45.937273686407337,182.746544779278338 -98.009782022200085,45.937273052185418,182.74638460110873 -97.988572881613663,45.937139004429255,182.712534381076694 -97.980457478378369,45.937115218144072,182.699647393077612 -97.96039723929529,45.937056421432438,182.667798407375813 -97.786250259170345,45.936507996630468,182.391583058983088 -97.778715089311291,45.936574104773278,182.3798518916592 -97.698364253804073,45.936534283323773,182.253126703202724 -97.544267724017516,45.936442540462778,182.01044653262943 -97.520704185010302,45.936488883080749,181.973521135747433 -97.520613182922759,45.936488884409933,181.973378144204617 -97.493560556381695,45.936296286213199,181.930434865877032 -97.483635329353262,45.936323430173658,181.914908396080136 -97.320563576289715,45.936241811046628,181.658899703063071 -97.313848422244305,45.936264908050433,181.648430792614818 -97.229985489825125,45.936330126520531,181.517256888560951 -97.229966374782165,45.936330158220898,181.517227046191692 -97.229953091331055,45.936330180250188,181.517206308431923 -97.146647568161569,45.936468333398693,181.387225393205881 -97.119712951185861,45.936675717487653,181.345607849769294 -97.021253667062652,45.93657415023943,181.191624323837459 -97.000309190672766,45.93689244292505,181.159682111814618 -96.793157377966438,45.937052437030559,180.83736408688128 -96.702963272236872,45.937003742052973,180.697046262212098 -96.682295786786256,45.936913043621573,180.664733627811074 -96.66154429723224,45.936757348572748,180.632148887962103 -96.64071480309201,45.936515657547467,180.599252557381988 -96.619943319901424,45.936604954096737,180.567224725149572 -96.608790055806423,45.936499118634579,180.54967387765646 -96.599079825839056,45.936407261853049,180.534396640956402 -96.578544346585048,45.936457556177899,180.502663200721145 -96.564927027065707,45.936436753181248,180.481499597430229 -96.566164790224462,45.927455047289762,180.462528965435922 -96.565963632205154,45.922273230219467,180.450162601657212 -96.570715557452871,45.915984380301786,180.442901252768934 -96.571047540413446,45.915145404680146,180.441464108414948 -96.57091146404278,45.912670492672675,180.435494185425341 -96.570564454589061,45.912625499236555,180.434851187281311 -96.569961188491945,45.904101804299231,180.41407829336822 -96.569699058096319,45.899896954321676,180.403883890248835 -96.569926842043216,45.892403211746263,180.386791090480983 -96.570417761061989,45.889272313625867,180.380262766033411 -96.574629078416052,45.86280317471023,180.325143308378756 -96.578188523294259,45.841146878458744,180.280192928388715 -96.581384182018965,45.827022325298991,180.252219408750534 -96.584729089572591,45.821226479491891,180.24389813747257 -96.653869551038341,45.748013045797727,180.180577207356691 -96.674308602452498,45.733540259206237,180.178616120480001 -96.712801064829861,45.718765223858156,180.204116648994386 -96.746730384846984,45.702780297033414,180.219717184081674 -96.837413967578442,45.650852819123138,180.240092043764889 -96.842390955429863,45.646498900942312,180.237702579237521 -96.845855868557479,45.6407880524213,180.229775379411876 -96.859395199020383,45.6071680441121,180.172347984276712 -96.855289997276515,45.603513232302234,180.157367274165154 -96.851087801838759,45.600150411581971,180.142916616052389 -96.84597755020566,45.595581646549135,180.124219899997115 -96.845600530623358,45.595209665118716,180.12275870423764 -96.837094104015989,45.587336065772099,180.091002700850368 -96.786503627373051,45.542509378835533,179.906700454652309 -96.766919596072157,45.522624364396755,179.829354675486684 -96.747125189015932,45.48992380794818,179.721519384533167 -96.744146830619059,45.479935205163471,179.69336823374033 -96.734376025858381,45.459950054970427,179.631043647415936 -96.694175899323596,45.418553102669748,179.470532121136785 -96.682088422273495,45.411714519035101,179.435460767708719 -96.619358900015484,45.409308501864039,179.331487462855875 -96.523416741390221,45.376864027026329,179.104627384804189 -96.490693448607075,45.35829115533943,179.009476792067289 -96.471646759770692,45.328053314376007,178.908059709705412 -96.455720046816964,45.302768634185206,178.823188929818571 -96.454692924912621,45.299337771338173,178.813443655148149 -96.454416523262111,45.285503269548826,178.780190478079021 -96.454574092420714,45.27028281145278,178.744313680566847 -96.454572674286027,45.270148810083683,178.743993355892599 -96.453938366235064,45.210211971691258,178.600591226480901 -96.45377524479332,45.206075122366116,178.590497196651995 -96.453785195543944,45.204335184630722,178.586374540813267 -96.453926501289956,45.179790063493463,178.528195909224451 -96.453973957088351,45.125300021784376,178.39847304765135 -96.454038919118176,45.123906071038249,178.395251930691302 -96.453646130809545,45.096368068488978,178.328957224264741 -96.453839098460634,45.095066112675894,178.326153985224664 -96.453828905473557,45.052833636407051,178.225307989865541 -96.453795864737486,45.051416688042792,178.221870917826891 -96.453858645138581,45.043578970238364,178.203242680989206 -96.453708858536686,44.978727900046529,178.047891375608742 -96.453708815621141,44.978709319103189,178.047846822068095 -96.453963407423274,44.963968849689635,178.012949447147548 -96.453661941251156,44.911931742531657,177.887742160819471 -96.453467824133128,44.907908891456792,177.877785507589579 -96.453623363399814,44.891317492419446,177.838216710835695 -96.453171533978335,44.806810059016961,177.634412803687155 -96.453170991422425,44.806708581483385,177.634167771786451 -96.453440781096134,44.798931861587057,177.615879306569695 -96.453499632372186,44.793540057656529,177.602994498796761 -96.453434580005336,44.791712125338186,177.598491543903947 -96.453231178106677,44.777432649936145,177.563788530416787 -96.452990772238195,44.763030179876992,177.528716180473566 -96.453183741167891,44.761752223892898,177.525942127220333 -96.453152148766421,44.704379325264824,177.387542831711471 -96.453367697499345,44.632596547672136,177.214459074661136 -96.45336816469306,44.632440963915542,177.214083530008793 -96.453327150340328,44.631954982366693,177.212843202985823 -96.453492768378311,44.545308172834794,177.003279328346252 -96.4535949719792,44.544888954786671,177.002424975857139 -96.453620756888583,44.544783190417576,177.002209433354437 -96.453840304403613,44.528121802660813,176.96214840374887 -96.453614026417526,44.518180173206794,176.937668147496879 -96.453577749141346,44.508100546343236,176.913147367537022 -96.453724826432477,44.474295795161702,176.831284111365676 -96.453820769239002,44.472125874171297,176.826163946650922 -96.453418473556638,44.461655267665677,176.800078243017197 -96.453525960608729,44.442802964917888,176.754412580281496 -96.453673548857466,44.390945887839933,176.628433835692704 -96.45373438646655,44.384935110390067,176.613888720050454 -96.453812747629314,44.361405984350945,176.556673015467823 -96.453881605229924,44.35611418031214,176.543881037272513 -96.45390434671566,44.346589534549253,176.520690833218396 -96.453751258589605,44.343476652601069,176.512854785658419 -96.453847217913278,44.341899709980964,176.509161091409624 -96.45390787833287,44.329352176527266,176.478645618073642 -96.453970822646866,44.327249254004499,176.473614263348281 -96.453846476904545,44.314620726451452,176.442593272775412 -96.453967444624482,44.313329772890974,176.439634405076504 -96.453837077647876,44.299914275058981,176.406669178046286 -96.453932035172755,44.298268335137074,176.402800554409623 -96.454097731988554,44.28694675532018,176.375408471561968 -96.454214653755585,44.28396186510949,176.368301840499043 -96.453962357299062,44.273232269285465,176.341678979806602 -96.453966276004735,44.270227381467016,176.33434043917805 -96.454015906452994,44.2565348923861,176.300943056121469 -96.454269893679822,44.255848914474527,176.299670490436256 -96.45436933708028,44.198158072003004,176.158631104975939 -96.454369633601559,44.198043057196251,176.158349837176502 -96.454778086449551,44.039619026320963,175.770022081211209 -96.454904037936558,44.037699096987417,175.765498445369303 -96.454995745332866,44.02668251137284,175.738526895642281 -96.454963699976787,44.025013574805719,175.734366599470377 -96.454643295602821,44.010157140150525,175.697267428971827 -96.454706243305466,44.00814621522089,175.692414744757116 -96.454886922842377,43.995993671807319,175.662762770429254 -96.454917874102279,43.994141741359741,175.658248634077609 -96.454852536524641,43.981548218312433,175.627103226259351 -96.454978480240484,43.979331300387365,175.621839456260204 -96.4548811878892,43.968451713236391,175.594856326468289 -96.454754167945211,43.967811739214355,175.593074490316212 -96.454877751677316,43.952086332619629,175.554480192251503 -96.454940708036602,43.950394395798497,175.550406244583428 -96.454769830553658,43.879925070051584,175.376064100302756 -96.454890831516835,43.879858070915361,175.376092570833862 -96.454921790979796,43.878304129492456,175.372299714945257 -96.454850062125104,43.850880172470603,175.304342526011169 -96.454849671397753,43.850782085678887,175.304099148139358 -96.454849652512294,43.850777344722189,175.304087387397885 -96.454672880804395,43.806400867456944,175.193906607106328 -96.454865523417638,43.792713386250426,175.160290335305035 -96.454961843299685,43.690919272333254,174.907706562429667 -96.454989459619185,43.67629083193934,174.871368190273643 -96.454966753388234,43.611229326942905,174.709323730319738 -96.454935689878809,43.608829419520617,174.703291733749211 -96.45496218407645,43.589469162855679,174.655062085017562 -96.454931153496759,43.588326207208041,174.652161373756826 -96.454625887210483,43.501704546265437,174.435340574011207 -96.592792995732125,43.501801635125005,174.65888496208936 -96.60050816740916,43.501744530710965,174.671224370598793 -96.588730492291575,43.485985301978587,174.612810057587922 -96.58564901061456,43.470144956571147,174.568241158500314 -96.601618062356323,43.458369191312023,174.564655968919396 -96.604438965009763,43.452196391106483,174.553791088052094 -96.595832336422717,43.435443158185954,174.497952471487224 -96.559162803773333,43.408083723515382,174.370075917802751 -96.539036052973486,43.396538448307474,174.308555699884892 -96.532734921040841,43.396902521034264,174.29926497861743 -96.530727931076541,43.39902746635078,174.301341109909117 -96.525619739417493,43.396054651934378,174.285619540140033 -96.523272483016868,43.388189989083791,174.262103015556931 -96.522839164714327,43.376271457159163,174.231513333506882 -96.527137645746492,43.313762825262756,174.081555474549532 -96.531965433231562,43.301330242361921,174.058139299973845 -96.553502733524127,43.294270220769036,174.075328847393394 -96.570684184178134,43.29683088468645,174.109642224386334 -96.587891022147488,43.275615473959284,174.08425020519644 -96.585697812875566,43.269397746382694,174.065056307241321 -96.574062304681135,43.250476104876334,173.998566742986441 -96.558698079364959,43.225490829840041,173.910715485922992 -96.486834470948878,43.225482817211869,173.794022780843079 -96.477141173541128,43.222354072322972,173.770407704636455 -96.438155736462605,43.12214652339884,173.454074056819081 -96.440901621225777,43.115220757046636,173.441014385782182 -96.456673419889071,43.084672141865013,173.389331017620862 -96.4675829011437,43.063541418409542,173.353558275848627 -96.514677078856565,43.029187123795545,173.343159380368888 -96.511043557118924,42.972431407825951,173.193267797119915 -96.512312908503148,42.945707444275257,173.127461347728968 -96.524827581173014,42.910370738488027,173.058048601262271 -96.543022401572969,42.858995452281427,172.957009457051754 -96.551075113414129,42.840457076756621,172.922945602796972 -96.553654093001114,42.837371163868816,172.919298065826297 -96.564620210588288,42.832365212685417,172.924469146877527 -96.57937546406356,42.829416128280315,172.941081643104553 -96.633704229330064,42.772178659593557,172.88407969288528 -96.634730188288486,42.76964074649981,172.879286158829927 -96.641265548317719,42.738387900770228,172.810232113115489 -96.632177565183355,42.707198267030613,172.715654251165688 -96.612534851630329,42.696069978200271,172.654994484037161 -96.607699742300952,42.6959800476289,172.646836876869202 -96.603548719630481,42.69874799380927,172.6471102302894 -96.576857759062364,42.683984945758333,172.565589034929872 -96.543923481471282,42.662057268471017,172.455463130958378 -96.517894148996717,42.631757831908388,172.335134634748101 -96.481238390210393,42.562564242813586,172.097349761985242 -96.478505427888734,42.557405340377358,172.07960222940892 -96.479261936886303,42.536922150822747,172.028153988532722 -96.481461703246552,42.525522578048118,172.002426688559353 -96.482860944619119,42.51788420599641,171.985060433857143 -96.478498866129371,42.51000522426876,171.957613566890359 -96.467804950984316,42.499030992406233,171.911793129518628 -96.44495903650521,42.490824464559019,171.853148407302797 -96.477116514856874,42.481365409148822,171.881558574736118 -96.48904177406834,42.481175255339224,171.900653124786913 -96.61304416422675,42.507414520543271,172.172007936052978 -96.62751366929588,42.514902023464863,172.215059230104089 -96.637538560231832,42.525649624408096,172.259172815829515 -96.70960867011361,42.602915378381617,172.575949462130666 -96.712891962220681,42.61171998120912,172.603901602327824 -96.712164176429155,42.620945621918985,172.626330306753516 -96.708804914586651,42.63257795360478,172.650588111020625 -96.714431561300387,42.649455523519237,172.703023757785559 -96.725594631405713,42.667289586218025,172.766974874772131 -96.808117109029965,42.704721091613038,172.998201515525579 -96.814712611428405,42.707712756272223,173.016677114181221 -96.908364364131643,42.735113382700938,173.240550003014505 -96.922061606031761,42.732745289694144,173.257060997188091 -96.96258966507871,42.73938746982099,173.340687604621053 -97.017261095650468,42.760008210671842,173.483172836713493 -97.027673715209957,42.763935598787363,173.510307625867426 -97.05375147911613,42.771496939580594,173.572484437376261 -97.139033657241171,42.78362128512417,173.743862367235124 -97.164656725391112,42.794692892708873,173.814207599498332 -97.191710388702901,42.806382653646629,173.888470095582306 -97.219845626760176,42.830866291231416,173.996892699971795 -97.258667094789203,42.855157789613585,174.122399498708546 -97.330090801118629,42.860803579978779,174.254591540433466 -97.42477191122606,42.862469206364558,174.415292757563293 -97.486959102225441,42.85613824679087,174.502227133139968 -97.533450996433174,42.851405144591737,174.567289653234184 -97.636701330194839,42.846282870773919,174.72556761931628 -97.688093159084858,42.843733309080676,174.804449003189802 -97.776045252225018,42.851070796164734,174.969026538543403 -97.815972406994902,42.86241478887294,175.06391862872988 -97.830086909317146,42.870092286336259,175.106674880720675 -97.846861244633743,42.869029095657105,175.131903013214469 -97.867286560781537,42.864155006333888,175.15364455897361 -97.876936662978693,42.860019037345843,175.159318123012781 -97.88146916201201,42.836690906460717,175.108267115429044 -97.890152884125783,42.818547511368877,175.077129859477282 -97.910573752065986,42.796206121913478,175.054980139248073 -97.938306859195961,42.777051504083069,175.053039334714413 -97.951737991383482,42.770916563444196,175.060009960085154 -98.001939908601742,42.764553121028847,175.127790826372802 -98.018820249850236,42.763707920268551,175.153853203170002 -98.03662667844003,42.765501600687784,175.188104061409831 -98.058218310744238,42.772077036503326,175.2407013066113 -98.15900211147617,42.833190881333408,175.562458726577461 -98.167432356324269,42.838302860277018,175.589354891330004 -98.206104438825577,42.848135926819594,175.678623872809112 -98.311342530330663,42.882519704086519,175.940624534152448 -98.327466061259827,42.887787643411855,175.980762157589197 -98.448652910991498,42.936401001439513,176.304868407547474 -98.468962667760849,42.948839219422368,176.369845746085048 -98.492090952381503,42.979229681124991,176.484154523350298 -98.497355327524971,42.989313204796758,176.518025250174105 -98.500158609355523,42.999840523585533,176.548866932280362 -98.566682076251425,42.999679816495984,176.659906602464616 -98.570546162158777,42.999816756673177,176.66672246530652 -98.665324176831419,42.999722426250422,176.825436101295054 -98.667225219650135,42.999814395800669,176.828854256309569 -98.744007845412156,42.999620321434186,176.957290897145867 -98.765992311289224,42.999600012212184,176.994176426902413 -98.802919092008466,42.999517494552585,177.056036428548396 -98.825604574426677,42.99958617164009,177.094349685125053 -98.901561176857584,42.999397106504709,177.221677917987108 -98.904771249550237,42.999581053791843,177.227536395192146 -98.920753585695721,42.999516830504774,177.254284958355129 -98.920851587740586,42.999515829159741,177.254447494633496 -98.963699493988486,42.999560221643364,177.326722323894501 -99.001989301669056,42.999546680595358,177.391211304813623 -99.023528758310263,42.999638372142812,177.427748141810298 -99.023919763191756,42.999510371731532,177.428091337904334 -99.08163198224284,42.999629549907866,177.525725322775543 -99.083501019779121,42.999560526200142,177.528708627447486 -99.137583157996758,42.999572759474511,177.6200244538486 -99.140667228286503,42.999779707475369,177.625742301344872 -99.15276547830085,42.999615542561195,177.645767799578607 -99.163010696802246,42.999736392477182,177.66336930450052 -99.196822397611456,42.999377927361685,177.719608146697283 -99.236086226238044,42.999551363359963,177.786400235258043 -99.255921638474859,42.999408087580989,177.819586500525475 -99.256078891045775,42.999409879634037,177.819856843911111 -99.264334817392836,42.999503964309646,177.834050809033215 -99.289670346199429,42.999421607883924,177.876704326830804 -99.348909588174394,42.999485763743962,177.977122917771339 -99.370255032615546,42.999408463448141,178.013078064657748 -99.372748083506707,42.999361429893945,178.017184644006193 -99.375895148095566,42.999315387001168,178.022401504218578 -99.397195596587338,42.999438079218628,178.058784849010408 -99.472982173578359,42.999234009163047,178.186741138808429 -99.47616024288277,42.99934795935107,178.192410612478852 -99.492427583770478,42.999409725284146,178.220152755267918 -99.495916655856135,42.999384676611669,178.226009664125741 -99.535679759654201,42.999306694668682,178.293286100029945 -99.537005509978329,42.999304094650796,178.295529767870903 -99.570908214696132,42.999260613316693,178.352975462563336 -99.700867912118696,42.999143764281783,178.573536157608032 -99.703079961031108,42.999257728121897,178.577577620744705 -99.720811326287674,42.999162478788023,178.607505222782493 -99.728422483920298,42.999155370386738,178.620436445809901 -99.744772823378909,42.999175136074243,178.648305432870984 -99.770159355004381,42.999387764853509,178.692033384926617 -99.789882760537381,42.999278487400026,178.725344171747565 -99.801942008992143,42.999234316815027,178.74577060341835 -99.804964073977075,42.999326269918157,178.751142138615251 -99.811009202097324,42.999440178920423,178.761716150678694 -99.823504455756222,42.999257007646932,178.782550596632063 -99.851674042942875,42.999432597744644,178.830972727388144 -99.861582242190977,42.99922346443384,178.847345841117203 -99.871522451104212,42.99935531692671,178.864609674550593 -99.879334612503584,42.999355205160334,178.877925339154899 -99.920039451990476,42.999317624118952,178.947236680425704 -99.929283644236406,42.999373489528629,178.963139868341386 -99.952050118449193,42.999546156582028,179.002399446442723 -99.952560129099382,42.99955114907705,179.003281804732978 -99.962843342298783,42.999595000033352,179.02093493938446 -100.006397241268601,42.999651373764351,179.09541268274188 -100.029455716870203,42.999683041990423,179.134863839484751 -100.036029852202887,42.999683947708959,179.146093898452818 -100.120939604869235,42.999946719176869,179.291833680123091 -100.128069751851712,42.999967616000696,179.304076033644378 -100.128538761508935,42.999968609228986,179.304880424402654 -100.20005626112264,42.99979864101914,179.426810395903885 -100.200056912545946,42.999798639470924,179.426811506971717 -100.200078224696455,42.999798588820418,179.426847858354449 -100.27943885336704,42.999929442899308,179.563055776059628 -100.285358976955365,43.000022354015691,179.573424329049885 -100.351195321844699,42.999994407957537,179.686197753995657 -100.357053442006062,43.000014322835469,179.696291293017566 -100.474391848639328,43.000540611388672,179.898926800116897 -100.53598609452024,43.000268734161956,180.00408098846674 -100.545669285406163,43.000046603444076,180.020184256136417 -100.55478246862458,42.999972474952841,180.035668917000294 -100.889556220378608,42.999127668778783,180.610280393622816 -100.908372600235467,42.999156394971088,180.642831766046584 -100.960024636836337,42.999041650878745,180.731757529079914 -100.965849756423538,42.99913156276461,180.74203816242516 -101.228159015062261,42.999142752408837,181.195965110324323 -101.228518022100019,42.999137747389426,181.196575268171728 -101.229769411041659,42.999115365280467,181.198690230958164 -101.230868067916916,42.999095714908449,181.200547084212303 -101.231990091547473,42.999140696758765,181.202600078657269 -101.627096900101648,42.997474002990792,181.885027980431914 -101.877101911545537,43.000530218832523,182.328340001404285 -102.084168009316784,43.000585160505814,182.690545232966542 -102.084227972082104,43.000585176414866,182.690650249831378 -102.442235942875328,43.000832894216686,183.319303093478084 -102.489018846650353,43.000782205753438,183.401446633972228 -102.793806727583771,43.001198680820785,183.939450653269887 -103.002596368726955,43.001689204822817,184.309551648795605 -103.133442233682928,43.001996606392673,184.541927682235837 -103.134657256799429,43.001997588281483,184.544082674197853 -103.34253519842278,43.002089489167709,184.913029491901398 -103.406286397990826,43.00194654435974,185.025945606641471 -103.506809289708713,43.001978003627123,185.204756495542824 -103.506928294523163,43.001978040869425,185.204968295991421 -103.507860312081078,43.001979026909595,185.206628731451929 -103.508265319698651,43.001979020861235,185.207349260337651 -103.578039631772413,43.002013976967227,185.331613264046609 -103.578676642038104,43.001952969962488,185.33260465785861 -103.815654093444138,43.002581397503079,185.756548460572958 -103.817288121161596,43.002482377107157,185.759234280325472 -104.054846516894187,43.001784841491009,186.182222518138587 -104.055603655943287,43.290988931078154,186.853066592477262 -104.055611861215567,43.298234634556955,186.869769467972219 -104.055946074813789,43.305557330046348,186.887226032093167 -104.05613168882148,43.327100446733127,186.937137323431671 -104.056344539981964,43.392132790031262,187.086963783949614 -104.056497624026164,43.430096241846158,187.174323980696499 -104.056512208412528,43.478995362783401,187.286357516422868 -104.056519742469078,43.504251228603032,187.344148221425712 -104.056520883599234,43.504507153934831,187.344735464081168 -104.056767338433446,43.559779974505254,187.47144379094243 -104.056575931085149,43.580544137202274,187.518478550948203 -104.05662105099286,43.584687968922665,187.528008808381855 -104.056638061080847,43.585027954915077,187.528814264573157 -104.056873776449649,43.748274371011128,187.900456620380282 -104.056878872646834,43.751590237718425,187.907984502613544 -104.056848089569556,43.854642720616745,188.141181960701942 + + + Texas + + + Texas + 0400000US48 + 48 + 261231.711000000010245 + + -96.831335210883651,28.11389104302744,126.172088889405131 -96.828354142279949,28.11446594866959,126.168483866378665 -96.817879076424163,28.121667155094819,126.17635431792587 -96.811725004779362,28.128082742605017,126.189636556431651 -96.812248891011137,28.138426140799393,126.231651959940791 -96.818141417480874,28.160094864985759,126.329089543782175 -96.821620762640592,28.165540233503567,126.357508947141469 -96.82416474477138,28.169521706894908,126.37828590720892 -96.819961027018948,28.174325692843791,126.389006039127707 -96.817748806475365,28.176853806549488,126.394646987318993 -96.793263313811437,28.190732530397216,126.401277226395905 -96.734340626113465,28.192958884263525,126.293978358618915 -96.705141238791413,28.200291196235856,126.265490419231355 -96.69872526582725,28.205004709894567,126.271507883444428 -96.703962942811501,28.213253198196949,126.314444958232343 -96.704617701301842,28.218490359825878,126.336445148102939 -96.688119365769779,28.22045445691602,126.311741460114717 -96.663764752807509,28.229357874010486,126.299030938185751 -96.661931621103037,28.230929042388173,126.301637336611748 -96.664419516742925,28.235249682428115,126.323612479493022 -96.653158953621585,28.253318016640097,126.372878818772733 -96.609294578976503,28.279111489686649,126.38855854421854 -96.609425552067705,28.282122859105101,126.400707977823913 -96.612829996796421,28.283432119996192,126.412566252984107 -96.61178250057155,28.285134207300178,126.41722924541682 -96.594236794928193,28.299012871283047,126.437557977624238 -96.582321373007645,28.304250158544882,126.434833043254912 -96.554562228976593,28.304381342011556,126.380860201083124 -96.548277177148861,28.307654635492099,126.381446499377489 -96.543432545348878,28.317998087601847,126.412761768326163 -96.530207751767179,28.324544675898448,126.412649094127119 -96.47757022068275,28.332793715080431,126.341988358646631 -96.452298995595456,28.339078558182063,126.317265868186951 -96.435407908768738,28.346803543811021,126.31465533003211 -96.420219067617751,28.356885242691252,126.324678597971797 -96.416552857851784,28.364871952531097,126.348996604792774 -96.418517003062036,28.369192598458376,126.369877097196877 -96.414196029716734,28.371549366551552,126.370710187591612 -96.404506542585622,28.373513396774467,126.359488066285849 -96.402542394170212,28.368930893111404,126.337577026337385 -96.399145693991628,28.345552803972129,126.238720160908997 -96.414999791917779,28.329383605974233,126.205950865522027 -96.440399162913479,28.321092852840312,126.222973013296723 -96.549075591713461,28.272840664868632,126.24552958086133 -96.622836457240666,28.231744390369521,126.227985003963113 -96.695969230436887,28.184166508284743,126.183620505966246 -96.759444852164776,28.138921583546569,126.129480511881411 -96.85092866472985,28.066990979202487,126.024748652242124 -96.854760114603394,28.063397541962079,126.018054083921015 -96.930358223229803,27.992495649885086,125.885849052108824 -96.968301437676416,27.952588663393374,125.802216325886548 -97.002746597934546,27.913501663549784,125.714829157106578 -97.032965652541819,27.872036847633513,125.609482867643237 -97.04310463335905,27.854988767923441,125.561598234809935 -97.046714308799238,27.839516146973452,125.507017562165856 -97.04728549509106,27.837067797013368,125.498378552496433 -97.086700714555562,27.795310915869457,125.409884258173406 -97.11758279186148,27.754667051339911,125.30877689179033 -97.167987803452334,27.678655120482816,125.104734047316015 -97.203171709535567,27.616933484360292,124.92726516444236 -97.223218054843798,27.578392158585121,124.812444591894746 -97.27739636780511,27.474228347457522,124.501462893560529 -97.305775123230006,27.409820952647515,124.298448069021106 -97.327827816292981,27.349702363765608,124.099718631245196 -97.348742154070635,27.280057316303001,123.859769927337766 -97.35170231743642,27.270199930518473,123.825767979025841 -97.364704878916896,27.212464291774634,123.617722084745765 -97.372244442847801,27.163267191679161,123.433061805553734 -97.378303854742342,27.103125769392079,123.200622170232236 -97.380432280151965,27.050103956336589,122.988907311111689 -97.37966363102592,26.994988299554606,122.762499015778303 -97.372031538719554,26.911822409207986,122.407177097164094 -97.366025995699076,26.87381176972502,122.239440268836915 -97.352712036388411,26.8107267207508,121.953931405209005 -97.334325885984569,26.738606270474161,121.620559461414814 -97.301986161155071,26.637508714668154,121.138933589681983 -97.289180385647626,26.602477201402596,120.968523757532239 -97.276413914188979,26.567553207033939,120.798482655547559 -97.27068668363556,26.55618495166118,120.739933338016272 -97.231136625151734,26.435715655759012,120.161066675558686 -97.225019901297983,26.41363975025326,120.057070659473538 -97.195934581182868,26.308667732743711,119.56173081509769 -97.187133987289215,26.269260221355911,119.37969166226685 -97.174553936851936,26.194475910300447,119.04201780166477 -97.16275858831861,26.090873363061387,118.584457998163998 -97.155558190556263,26.069010668758306,118.478220989927649 -97.162749643599653,26.069809596696775,118.49609549716115 -97.171129875830019,26.080021977906288,118.55585777759552 -97.173069376751457,26.104689191971453,118.663193267770112 -97.180820129462063,26.148366777630571,118.86178294941783 -97.180034840646414,26.179266014440419,118.989480137825012 -97.185272816546799,26.216449776009444,119.155475717037916 -97.195748592795439,26.273796553505932,119.415987471118569 -97.216176031964352,26.355757888324156,119.7986118523404 -97.228222797360658,26.387704437573891,119.955756795592606 -97.241578829196683,26.408129234324267,120.067555786110461 -97.242141446563238,26.413652074500288,120.091630989685655 -97.244459805626605,26.436409860520723,120.190798037685454 -97.24891198941377,26.458405886383908,120.291042669676244 -97.255459117021573,26.473331730261012,120.366136799566448 -97.263839369590571,26.485115261676267,120.431872868910432 -97.277719373976808,26.523870095821078,120.62037733849138 -97.293694047414576,26.530154542958122,120.67858065944165 -97.312025866147167,26.558696893477773,120.833605512976646 -97.309407252831136,26.57336095928725,120.888956643640995 -97.309931060189044,26.578859970323887,120.912740951403975 -97.318311416771792,26.599808528800473,121.016176993027329 -97.319754443499903,26.6024057070771,121.029810983687639 -97.326167931069961,26.613948785383002,121.090396394953132 -97.339786020310484,26.649561338169804,121.264779537916183 -97.337691197746011,26.668153268366655,121.337216024287045 -97.347119221072219,26.702718438398794,121.49860699288547 -97.36440332084679,26.712668879258036,121.57437985856086 -97.371736071629797,26.726023564888692,121.644108222797513 -97.372259966988878,26.738330894291114,121.695794361643493 -97.368855597816903,26.742520650887887,121.70617158152163 -97.365451372016466,26.761112588862265,121.775762047618628 -97.365945080586414,26.769246780644973,121.810188661329448 -97.37016537182464,26.776824024681904,121.849820303730667 -97.371736716246829,26.783632318147816,121.880953799001873 -97.369641854672963,26.797772670212019,121.9348129555583 -97.3743558220159,26.810603666263571,121.996977319009602 -97.388759278188544,26.822910858992177,122.076471985317767 -97.384831720865876,26.877639218576842,122.29294641315937 -97.386926916618748,26.890993949538341,122.351860165596008 -97.392950261653013,26.904086795471162,122.417580788955092 -97.390855753821569,26.948078956798867,122.593336162157357 -97.391642606547066,27.054393311245914,123.028907828964293 -97.391119023311191,27.069319226815118,123.08868052996695 -97.387714791073478,27.085292593369445,123.146908947266638 -97.388762377078322,27.09262460803717,123.178868222050369 -97.391904963660309,27.096290591109863,123.200103411450982 -97.391381930422128,27.158612814248812,123.452545632608235 -97.378812252714567,27.201557654493666,123.601746681146324 -97.381169197957632,27.204961787843967,123.620290641672909 -97.387978073564753,27.206794730789806,123.641386077739298 -97.383526408530656,27.231147579199579,123.731255702674389 -97.376194066115048,27.252358143967278,123.802550530992448 -97.374623104716207,27.278543968073667,123.905498964712024 -97.37416578223872,27.280163595850368,123.911142118275166 -97.368338276275409,27.30080196655954,123.983027149923146 -97.365981416524974,27.304729858856387,123.99420350510627 -97.361267619500609,27.306824766682031,123.993238885886967 -97.358910750562089,27.309967086974517,124.0012346515432 -97.363624792749107,27.328820822766932,124.08695350214839 -97.368076797887355,27.335367240322338,124.122345104813576 -97.363101416640475,27.362076808091256,124.220347554422915 -97.34791280713722,27.392452492782859,124.3126335227862 -97.337437804122573,27.404498065343834,124.340298943221569 -97.332462236792239,27.414448720005932,124.370502902194858 -97.330891027254793,27.420209617270345,124.390604449436069 -97.332200497688973,27.427541631854531,124.422802138142288 -97.331153091032775,27.436444817921032,124.456615478731692 -97.318583268900866,27.465773043975886,124.5497060213238 -97.295014585813831,27.499291106619193,124.637607228010893 -97.284277845504334,27.523644016884838,124.714175050146878 -97.267779752119438,27.544592822958517,124.7654969682917 -97.25913792130639,27.558471392819598,124.804047572426498 -97.263066178065927,27.565541526465438,124.840305793099105 -97.261756830152578,27.569469415282757,124.853478020057082 -97.253376841256468,27.580729393646404,124.881998456083238 -97.249183392330607,27.583442651850582,124.884531718678772 -97.248924946522649,27.583609872251266,124.884687848389149 -97.238188116901512,27.600368899307416,124.930579513311386 -97.242378222666275,27.604558588899874,124.95575906150043 -97.243949548897476,27.609533890662714,124.978866868652403 -97.23268906516121,27.634410510079448,125.056240879930556 -97.223261447615513,27.634934316290323,125.039547385647893 -97.22038074468216,27.63231576141732,125.023299469612539 -97.21540506537535,27.63362509800595,125.018634354695678 -97.202049478946577,27.6522171580357,125.06659203581512 -97.198645222469395,27.666619390316214,125.1175527414307 -97.198907270476852,27.680497873352355,125.17369594052434 -97.204780932826651,27.686603949865642,125.2098602745682 -97.204395621404217,27.690071868515254,125.22298494912684 -97.191312957988728,27.694900150673107,125.216268137097359 -97.171934261326726,27.722395443104276,125.287777077406645 -97.167482475823789,27.734440969235376,125.327122330665588 -97.16250679600779,27.736143077082353,125.324031200259924 -97.154912302583128,27.735357573835138,125.305776404216886 -97.148627237989203,27.737452498012505,125.301653997041285 -97.132129079017801,27.753687865405251,125.333786456845701 -97.129248467151427,27.757877622402891,125.344814786687493 -97.128986634188678,27.762067359763375,125.361049104481936 -97.104632261257422,27.791133856896451,125.428823970258236 -97.103584859224242,27.8002989043285,125.463360618799925 -97.10018056363873,27.810511404114283,125.497388456016779 -97.094157418714204,27.816534208844029,125.509474231861532 -97.093895602288583,27.821247656416315,125.527774577960372 -97.100180735962908,27.824913612076379,125.554896086454391 -97.127416070382964,27.821771054251521,125.596467042341828 -97.131606146366835,27.822556592154779,125.607930366881192 -97.135796259234624,27.82727000770695,125.635071892291307 -97.133701251038644,27.829364877360554,125.639268947765231 -97.058018497711643,27.844356982557368,125.54877570644021 -97.057128688041843,27.845467022340451,125.551439137198031 -97.044531939083939,27.861181498292243,125.589135541580617 -97.014940241434473,27.908839968861347,125.720430923625827 -97.019261296208029,27.913553378623131,125.747775283642113 -97.017690087811317,27.919314255336577,125.767606412060559 -96.987050725777934,27.956105632685432,125.853350968100131 -96.979194637572846,27.978494591363798,125.926852214150131 -96.980111229816174,27.980327593109838,125.935956590808928 -96.982206263284581,27.980327573219913,125.940105576999485 -96.987312875143729,27.978232656745721,125.941888950765133 -96.987967622596869,27.98281517029854,125.961407403461635 -96.979587761531505,28.003763914886452,126.028083387762308 -96.96911283047578,28.022094099249678,126.08017042838037 -96.968065317679418,28.022421424179178,126.079397182911634 -96.966493959779072,28.0153512659837,126.048201936297119 -96.963875164466799,28.014434786877079,126.039377409033477 -96.95392382207163,28.018493685022765,126.035807259380817 -96.948293550690224,28.028575285104829,126.064711147919297 -96.933759390394329,28.03747860583556,126.071314350701869 -96.927736279385144,28.045465341755268,126.091111884452403 -96.93087892109196,28.053451990604305,126.12903041485697 -96.928391144403363,28.059343827398081,126.147493716329336 -96.907310133378644,28.078197825130008,126.180619492195547 -96.892252112242929,28.078852612334622,126.153456715866923 -96.887538386136868,28.086446549897929,126.174263412132859 -96.889633446644964,28.088672327036324,126.187230288982391 -96.890419240782933,28.101503379304372,126.239658523350954 -96.888193479753809,28.119178841073033,126.305314969271421 -96.880730108839302,28.133450178959418,126.347111411392689 -96.876278193525181,28.135283234702808,126.345580323599279 -96.872088110103604,28.133319335033473,126.329527738504112 -96.865933898072399,28.128344084097726,126.29766724538058 -96.858470226607082,28.117607963324769,126.240389703772962 -96.846685600664273,28.110930686560227,126.190656512975693 -96.831335210883651,28.11389104302744,126.172088889405131-100.001841577378926,34.748104362094317,156.017310922034085 -100.00184157556599,34.74800136749603,156.016983198001981 -100.001838319368488,34.562162137195159,155.423899317160249 -99.999309981900979,34.563138142034738,155.422163039445877 -99.956023788849407,34.579847752473512,155.392463969066739 -99.94717664551014,34.580925801304389,155.378921065479517 -99.924667150490649,34.576205318448693,155.320586083456874 -99.886296965884924,34.548608229348481,155.158522658981383 -99.875857602811351,34.538750873034317,155.106883643195033 -99.873811478329728,34.533752160790741,155.086927856318653 -99.866376184074838,34.524674727697885,155.043540046550333 -99.847852956583111,34.506702980794607,154.950308974832296 -99.79513567737186,34.455555220042164,154.684754565358162 -99.768684786947361,34.432164768663739,154.558708811178803 -99.696418558483202,34.379999380448119,154.251880710013211 -99.665395907496844,34.375346993416052,154.177341733127832 -99.618240068337045,34.377058460740543,154.092427127063274 -99.581507101037161,34.418318717005093,154.155168843455613 -99.575814024002383,34.41994669847255,154.149514879100025 -99.516830866561662,34.415999604203236,154.023853534832597 -99.501320498540281,34.411275036709782,153.978923126123846 -99.475606211765296,34.399719843082373,153.892414231784642 -99.454921281906081,34.390424684586229,153.822817320935428 -99.442203795372748,34.375792606735125,153.751202896237373 -99.408611147377954,34.374275083030049,153.682047120295465 -99.400078044651366,34.377502013390625,153.676165194250643 -99.358156406109757,34.443811012934262,153.810275354422629 -99.262761970520529,34.405169173094819,153.50336317718029 -99.212861920120787,34.339571218327528,153.195773495361209 -99.212834571780306,34.339362614926799,153.195045125670731 -99.211162667243457,34.326609922147384,153.150508440099657 -99.213038515055729,34.315645478783779,153.118527089245617 -99.213086145368621,34.293908625905182,153.048082038760185 -99.19232645058905,34.21693193835803,152.758240436203778 -99.158549689794739,34.209095748430904,152.668213849887252 -99.120638888499855,34.203429491806745,152.577373533509672 -99.061777843335264,34.206444020634954,152.474873818457127 -98.968175036489171,34.202869303065476,152.284781456924975 -98.953958819292936,34.197306215621929,152.239554676227272 -98.921472855064536,34.184593814100872,152.136199034750462 -98.859848193624345,34.154420127760879,151.920313115231693 -98.766997179138386,34.138066072874679,151.690169136971235 -98.701607945744087,34.137685852731892,151.564628543332219 -98.667249562630872,34.153307426146846,151.550498372875154 -98.653772467391448,34.162719085474478,151.555710058659315 -98.639000210639267,34.1639741907358,151.531777873635292 -98.611536313051914,34.162729544471844,151.475590049289167 -98.60121347073256,34.162261719832749,151.454475206322968 -98.57877985573468,34.150791585831591,151.374367417767644 -98.555140151489198,34.135352675395751,151.278954909183085 -98.505603192618977,34.074067488347445,150.98394601047039 -98.476486508388859,34.065966253469568,150.902118431404233 -98.435189598191982,34.097812520336959,150.928462364710867 -98.401914060690686,34.123473076694552,150.949688331224024 -98.399861133524595,34.130150747915309,150.967714868485928 -98.384642169364042,34.149499902872428,151.002387715503573 -98.365442961732839,34.158802634284413,150.996578409336507 -98.326864129389719,34.152719401245051,150.903685569763184 -98.301627376325669,34.136274560227235,150.802019295282662 -98.295319230728779,34.134715715322372,150.784979689866304 -98.20149117967874,34.118480654520795,150.554418128915131 -98.170535548084615,34.115869149123391,150.487403830513358 -98.107674015855565,34.035399119829378,150.10382251162082 -98.089615205127274,34.007185818032035,149.976664766669273 -98.086672112392151,34.004963969258128,149.963776010088623 -98.042528110487893,33.995161993917719,149.84810943249613 -98.020895704435731,33.995510223607781,149.808453842997551 -97.9849311474742,34.00326522618672,149.766259207390249 -97.947139233406659,33.991546278373562,149.656313714571297 -97.95480349929683,33.938155013378164,149.494146713986993 -97.979267200129769,33.891641196006127,149.386212681420147 -97.979218643747487,33.891606457255499,149.386005892418325 -97.968113856706793,33.883661746182781,149.338709598407149 -97.87879263463013,33.851951445943477,149.064986929297447 -97.867170399159946,33.851108623120361,149.040274493396282 -97.835737934893444,33.859386542856811,149.008523060940206 -97.786721539561867,33.89241535296604,149.025866311043501 -97.735127301776416,33.938104525381938,149.080366686917841 -97.701881253664993,33.973957011228997,149.136704350821674 -97.694514300694962,33.985409490894398,149.16079868376255 -97.68942725094746,33.988317395521818,149.160875298082829 -97.673176017489951,33.993080329721494,149.146135272458196 -97.657613687858699,33.991198606560459,149.110692973248661 -97.610493431522329,33.969805272464527,148.951389144174755 -97.590999818462961,33.955267261692427,148.866612084209919 -97.590229776251064,33.953595358698919,148.859621926210821 -97.59851637820266,33.919583060242658,148.762295609340072 -97.597690295245329,33.915484286166027,148.747135004960001 -97.588841940599167,33.904194983290402,148.693030199036002 -97.58244178360772,33.902112166133769,148.674097763374448 -97.562454396743306,33.899722281742442,148.628647194243968 -97.556402232397474,33.898998626696347,148.614886298775673 -97.54692610115373,33.902112569879328,148.607456324622035 -97.520570810794965,33.915354170020386,148.602026931941509 -97.502359558552911,33.921359059935682,148.587836566381156 -97.487904236995746,33.918710364025515,148.551943342201412 -97.485470584959742,33.917396021196389,148.543015038594604 -97.459467438519582,33.903352497856098,148.447607475332916 -97.452352134398339,33.893116119199618,148.400233156979084 -97.45286681053139,33.872649194600292,148.333099039271474 -97.459014671397242,33.856845960128133,148.292013559490442 -97.462883655223479,33.851280210511874,148.280733227729797 -97.464254554810395,33.843492606760861,148.257366128265858 -97.460465364853846,33.836302029997597,148.226306008175015 -97.454454150820212,33.830257417839832,148.194892076775432 -97.445589902745084,33.825494770202084,148.162397203035653 -97.427889490850461,33.821120202088835,148.114628011360765 -97.374336459949973,33.821176805284061,148.014458955265582 -97.312238123198441,33.8741817072316,148.07489397842437 -97.227916179006911,33.916361436435466,148.057756972499192 -97.212314900032652,33.917783538059837,148.033360279165208 -97.186851156723307,33.90242063607657,147.934665077365935 -97.182237977967347,33.896924978022511,147.907745493575931 -97.168020924883294,33.849034665369835,147.721519690938294 -97.168215816527578,33.842119028270936,147.698804230429232 -97.173018827539778,33.837059241218356,147.690885655581951 -97.182761952035321,33.833099340355197,147.695866137742996 -97.19607020671225,33.83291619978133,147.720117837190628 -97.201092241188533,33.829046347490397,147.716583686880767 -97.206387206693407,33.820594734217721,147.698262232355773 -97.206218896361619,33.80163373819061,147.634618865326047 -97.173582257332086,33.739274404661415,147.365043204277754 -97.164538949781004,33.731051941735146,147.320600691251457 -97.164192989741991,33.730856638980505,147.319299734197557 -97.152646611467702,33.724338431003567,147.275878314860165 -97.13891928226279,33.720394794242168,147.237002379260957 -97.122490940231174,33.718905057892009,147.201302750967443 -97.108571734197199,33.722850005578138,147.188511015847325 -97.098542647644905,33.729539764277341,147.192189601249993 -97.093802642855692,33.734944531569639,147.201443249359727 -97.04936114789048,33.819657554387348,147.401975870132446 -97.007519046003978,33.863608707046637,147.470816792920232 -96.986956045148318,33.888245640352459,147.514758571051061 -96.974259595867863,33.937419194478032,147.655101217329502 -96.946000261318218,33.95071484162581,147.646842011250556 -96.935897208128168,33.955468195994619,147.643893939442933 -96.923502994720621,33.961299511301306,147.640280682593584 -96.917688852390839,33.959518670535104,147.62354329507798 -96.908775552278755,33.951746179749748,147.581083613447845 -96.900830132764568,33.935450126365218,147.512001618742943 -96.897115455484837,33.898138131702311,147.380626506172121 -96.884396748035499,33.86974477017111,147.262160181067884 -96.867824184581934,33.854875739997873,147.181653009727597 -96.857475891378471,33.849217154538096,147.143494094721973 -96.762971674305035,33.82613543233996,146.89065317157656 -96.713804829493341,33.833362603083266,146.823571507818997 -96.708656782403679,33.837127746913197,146.826625012792647 -96.702334359151223,33.842477249959217,146.832803872413933 -96.696011998567926,33.851717244934612,146.852004480548203 -96.690662368069866,33.863388780712732,146.88113996386528 -96.686771784951659,33.874573990000897,146.911343770101666 -96.683853858237129,33.884786577317705,146.940088121220469 -96.679963251710333,33.894512855943454,146.965394771657884 -96.673640842639884,33.901321281107784,146.976434940472245 -96.660023140414111,33.90180776317861,146.952826084569097 -96.648350733553883,33.896944762475734,146.914942177943885 -96.634732929203167,33.891109172314188,146.870200607925653 -96.623546900714913,33.887705115974569,146.838094809092581 -96.616737967165875,33.882842079508848,146.809215360321105 -96.614876108098315,33.88004958542939,146.796424072235823 -96.612847090663692,33.877006380236857,146.782483323477209 -96.614344461501389,33.869379822314393,146.759734244085848 -96.617223856680383,33.855122300425727,146.717339950613678 -96.61625097014381,33.842964525110176,146.674821704626083 -96.614305471033674,33.835669873374648,146.646779798902571 -96.501645723543163,33.774318087729981,146.232281863689423 -96.449421832617674,33.782766225565716,146.164008164778352 -96.437831589028633,33.781785406532599,146.139273482374847 -96.424738272582232,33.778100746629129,146.102676752023399 -96.379847803804864,33.728386599112525,145.852456315420568 -96.370964264055814,33.718548483765943,145.802904460579157 -96.306048449103542,33.747639672995057,145.780876066535711 -96.231231011624587,33.750059377508116,145.650917404331267 -96.221892812424059,33.749129530233432,145.630559476092458 -96.20127148035462,33.75385651054421,145.608445576392114 -96.183075222444401,33.760243376592236,145.596404694952071 -96.171426161985408,33.770908944903312,145.610843954607844 -96.165471284649428,33.785999217475869,145.650661864317954 -96.158088602084504,33.815060772082823,145.734817013144493 -96.149441821729738,33.83953458282749,145.801156860776246 -96.098896976073064,33.849279633536632,145.740898289717734 -95.951303203832779,33.859188753659041,145.503052796237171 -95.847700101442726,33.842875009927397,145.258175407536328 -95.826045395847927,33.839465176310014,145.207015792839229 -95.764986340471197,33.849693316352869,145.129641802981496 -95.758520518907673,33.869031375206298,145.182907446287572 -95.6010404335468,33.93598361734238,145.120418693870306 -95.56838375389728,33.934434059527852,145.055654471740127 -95.560775561173585,33.931916275138136,145.033316089771688 -95.55050600162626,33.909688549640045,144.939806738868356 -95.550835902754145,33.903049892855329,144.918061828240752 -95.553691850587313,33.896159221396168,144.900070529431105 -95.553445750403,33.89016153759173,144.879425269551575 -95.549685584840958,33.884483875907307,144.853445206768811 -95.545706463234296,33.881851057480787,144.837319602258503 -95.447109304968293,33.870591733685309,144.619676787406206 -95.409152501573786,33.868050284721917,144.541992976330221 -95.341114170784522,33.870494906072715,144.426451073028147 -95.31183094137873,33.873224575287452,144.382424104958773 -95.288920195807648,33.875360226158854,144.347996095195413 -95.26216987805968,33.889395787660412,144.346767426468432 -95.25689584109378,33.893789616368245,144.352014739997685 -95.251276885453606,33.90376615765075,144.375466375611722 -95.249555013695939,33.914068639215884,144.4070834973827 -95.251162203074784,33.92398210457538,144.44342122413218 -95.254978398412845,33.931450673188863,144.475518512539566 -95.254261446318566,33.935388475805233,144.487486655823886 -95.232468429499292,33.962100323894497,144.537927398458123 -95.227748359371191,33.963693292904644,144.534731571562588 -95.220713211038543,33.963306390523762,144.520671792328358 -95.157334884657729,33.945767969776718,144.346708373166621 -95.1309250011806,33.938459672337018,144.274226476438344 -95.068604432840985,33.919094365470094,144.096055280417204 -95.064810303686428,33.915783579583398,144.078012867830694 -95.06363511542834,33.905362135484765,144.040702304802835 -95.040801975327355,33.862367627311237,143.85408844333142 -94.87064472544148,33.747625476525023,143.157351330853999 -94.823816568984441,33.734471673756445,143.028003805316985 -94.761946222682241,33.728810642431945,142.896989097818732 -94.747437553566627,33.704774056350317,142.789015844464302 -94.736469147825474,33.693025789695696,142.72921652533114 -94.662303157783811,33.662083212279789,142.489914745092392 -94.529715768641452,33.617759965382326,142.099575573578477 -94.525390676792298,33.61753002412204,142.090997801162302 -94.492019146668682,33.627350870656223,142.064451255835593 -94.488946129502992,33.630308749126641,142.069024221971631 -94.487210237875274,33.63963128035099,142.097744099795818 -94.479701319676238,33.622612160114564,142.026083528064191 -94.4722974408309,33.607706111205289,141.961803851649165 -94.465670195719582,33.600585555292703,141.925525007769465 -94.410661601172379,33.570033747222546,141.721973332576454 -94.357276123947742,33.544950635017436,141.540006781928241 -94.259130715717106,33.58427763176519,141.498436251655221 -94.253985665914328,33.587913496925552,141.501657186076045 -94.18313331938846,33.594986888170133,141.398808038793504 -94.086569062749902,33.577317847187722,141.165250218473375 -94.068171582527455,33.570681391067239,141.109550775028765 -94.044774846328593,33.554026512021956,141.010514598339796 -94.044752833237837,33.553198555537712,141.007632578723133 -94.04469969313611,33.544089032350335,140.976257133297622 -94.044332934783,33.494815614093305,140.806260099634528 -94.044602909768173,33.492806716372755,140.799834299832582 -94.044511592975908,33.472101801529327,140.728435955941677 -94.044311064865539,33.437603611315609,140.609290318563581 -94.044310992032862,33.432803862933845,140.592753860168159 -94.044209826160596,33.422005430205672,140.555360758677125 -94.044375185664435,33.379498658623561,140.409062929451466 -94.044191082846524,33.372953004214082,140.386142393574119 -94.044449900459085,33.360540653221825,140.343757108785212 -94.044388798539686,33.353881003645938,140.32065090816468 -94.04438872682428,33.349135252933792,140.304260374978185 -94.044388472299758,33.332283138381442,140.246039326302707 -94.044310598505291,33.273031422996645,140.040968832559884 -94.044310577257704,33.27301525609959,140.040912829339504 -94.044370423147114,33.262692798771347,140.005282166413963 -94.044324260128377,33.251917366553073,139.967881361022592 -94.044050129653982,33.243612806770145,139.938620317727327 -94.044195733053769,33.217010206663943,139.846677732653916 -94.044211545016665,33.204457868067891,139.803175059147179 -94.044194501453276,33.201577020111635,139.793151498772204 -94.044503664419125,33.145270987077787,139.598226689733565 -94.044395582733785,33.139957268734527,139.579567832872272 -94.044325517426003,33.13568549500966,139.564595865085721 -94.044187899863317,33.094524670766823,139.421204221434891 -94.044353705766227,33.081283368928908,139.375416902825236 -94.044280807088967,33.021020557855913,139.16531883366406 -94.044403865292693,32.957396927416411,138.943462261930108 -94.044382602856828,32.939708865668074,138.881610427983105 -94.04440719085143,32.911828344747597,138.784157318994403 -94.044200022404837,32.900718936659096,138.744912378489971 -94.044173931158397,32.894579262917539,138.723377397283912 -94.044200476600778,32.882897443264717,138.682530004531145 -94.044200757361267,32.882773889569052,138.682097904384136 -94.044339752540324,32.882254915672362,138.680531427264214 -94.044099615386529,32.873295394119772,138.648723172023892 -94.044339530179002,32.799289326542201,138.389681448228657 -94.044060370101903,32.788786888437613,138.35230921395123 -94.044142346854954,32.787090977851605,138.346502726897597 -94.044251279749673,32.782372227907992,138.330129936337471 -94.04434022729167,32.778677423684435,138.317314975894988 -94.04426009537994,32.769805896907322,138.286009235307574 -94.044459001017799,32.694849889881432,138.022764952853322 -94.044458994829753,32.694848889972953,138.022761421278119 -94.044224442365348,32.656947915087095,137.888828589580953 -94.044091269464943,32.645287539123537,137.847483572550118 -94.044135224245096,32.6421267074764,137.83641832601279 -94.044236959627312,32.623837683425052,137.772097192704678 -94.044239904964599,32.620082884028776,137.758855142630637 -94.044229786487193,32.611965317948545,137.73019215837121 -94.044393122269128,32.566086769576245,137.568467349745333 -94.044452054315244,32.56132802358097,137.551756073720753 -94.044390387073918,32.515441480823732,137.389356629922986 -94.044194260351887,32.506973936467404,137.359030402265489 -94.044220082802752,32.494681594849133,137.315554962493479 -94.044397995334862,32.488390930137456,137.293598493561149 -94.044380962257677,32.486130051494925,137.285559626296163 -94.044263901415619,32.482091269201518,137.271040936931968 -94.044303869566548,32.47983438976911,137.263118018396199 -94.044210793910025,32.474736664030488,137.244888045825064 -94.044183770821306,32.473178747839,137.239318823441863 -94.044211757474827,32.472216799124325,137.235960860736668 -94.04421631678288,32.441723434607241,137.127866447903216 -94.044294255055206,32.43733966901673,137.112458827905357 -94.044206750497892,32.402493540489729,136.988633120432496 -94.044230740304158,32.401752580032102,136.986045622266829 -94.044208629819195,32.394117990295506,136.958893422968686 -94.044070354067827,32.375168009789348,136.891321043483913 -94.044046212922808,32.365395535221495,136.85654507111758 -94.044038865359312,32.2715375852042,136.522449256852269 -94.044037864250541,32.271461589307705,136.522176569327712 -94.043967126568873,32.219990363909439,136.338450856506824 -94.043925337277869,32.19785051628093,136.259317773394287 -94.043870393407701,32.168741129989009,136.155196377076209 -94.043843391891215,32.168673133938128,136.154904210008681 -94.043895268595065,32.159944604654967,136.123790145851672 -94.043984983703055,32.139804691430776,136.051913933828473 -94.043640720137574,32.121763669735117,135.986720338463783 -94.044002820533734,32.057865121600628,135.758418224751949 -94.044022017943135,32.001121194183703,135.554772362112999 -94.01693119541298,31.981713523839517,135.435698131099343 -93.976676588632728,31.925520983370358,135.160209274850786 -93.933433291381206,31.895535052718166,134.97343354485929 -93.921587980900796,31.890514446222443,134.933771955780685 -93.890489904562983,31.85868449184305,134.762330158613622 -93.879521509276259,31.846142495067948,134.697082833386958 -93.841324122173006,31.802465047486649,134.469715308398008 -93.813770375941289,31.717119971137755,134.110462443903089 -93.818351864849632,31.67357029744959,133.960765623487532 -93.827582266142471,31.616782301497388,133.77121159248054 -93.836216044751097,31.588091780613276,133.682563664391637 -93.836215489498031,31.588090714356937,133.682558770291507 -93.819873281430787,31.556708660305066,133.538480528630316 -93.799377580661982,31.53592800304413,133.425370743498206 -93.730901561016822,31.489809215184867,133.132266712374985 -93.697152803476953,31.411283853144138,132.78362159896642 -93.671467980439502,31.389077327627156,132.655476453714073 -93.642090185900187,31.374440424321662,132.548300875350833 -93.672960819676334,31.301484117453821,132.336858018301427 -93.645690963056168,31.279009624274572,132.20453227777034 -93.622112406981159,31.273199178967239,132.140172733925283 -93.615685135682071,31.262769816013236,132.090097405947745 -93.609440562743373,31.229737693483841,131.957146446220577 -93.608525233402275,31.206709968736213,131.870661082677543 -93.60359682273895,31.183647286482781,131.776667939499021 -93.600986824476507,31.178361242076647,131.752414948306978 -93.60010965702935,31.176584709825104,131.744263269007206 -93.589784325566285,31.167487313261034,131.69187075085938 -93.580496162323556,31.169328304383527,131.681718295440078 -93.553929868657747,31.18748057010081,131.700223726220429 -93.553820816297716,31.187510662556925,131.700135896913707 -93.550211807144265,31.18850655067515,131.697229376994073 -93.53637751352835,31.187519742617869,131.668375315144658 -93.533024381013774,31.182723039796095,131.644573468714952 -93.52892287125573,31.076420933821144,131.244404430501163 -93.541632241464782,31.010050469100566,131.021820318885148 -93.532212937987723,30.926454180902955,130.69437943957746 -93.555852645302267,30.879392053218364,130.562622677534819 -93.556246758488498,30.878607449419334,130.560424572788179 -93.559893765901123,30.871346956885489,130.540081609040499 -93.559948390575499,30.870751932931054,130.537967436015606 -93.564568186183564,30.820428731507988,130.35903285164386 -93.579671273353327,30.803973495008684,130.325352156534791 -93.729120280884487,30.576007701370617,129.747385953553021 -93.741321063680701,30.540704550706561,129.637411691248417 -93.711392040836472,30.50834164977368,129.460803907364607 -93.699101979590523,30.445783264022893,129.202933266758919 -93.699575921735288,30.440602548948164,129.184304845519364 -93.703938895989538,30.4318929932179,129.159549144096673 -93.742975432564421,30.404954148330351,129.130013092420995 -93.752711435738917,30.39823539975653,129.122647472657263 -93.758928484042613,30.392370667289402,129.112011258490384 -93.767095907255765,30.335268785218201,128.911716892383993 -93.737168870637319,30.301392975089531,128.728557704947889 -93.724858566396392,30.296904346442123,128.688882267102599 -93.721847519190788,30.297914319101292,128.687144579365849 -93.71749462542499,30.246274257716287,128.483798200264573 -93.713279038809361,30.196263106327052,128.286584063433111 -93.696522104804359,30.149561892860419,128.07849249523133 -93.696953961420576,30.137691556059064,128.034223865717649 -93.713370415321222,30.069312245026023,127.80466893222183 -93.722858408177174,30.053906021082586,127.763591900467873 -93.723750098653085,30.052865414521055,127.761280613020062 -93.75330756273263,30.018371729687725,127.684633158147335 -93.757899625765603,30.016131811669204,127.68460089340806 -93.79070094399971,29.989781981379753,127.644940804690123 -93.842068983548558,29.916396249239689,127.460210769437253 -93.89194912190365,29.845136180485241,127.280478855594993 -93.899739372348179,29.773558160231651,127.020878692157567 -93.893515169014691,29.767222579117799,126.985017000697553 -93.839238153863661,29.69260533165723,126.597678868100047 -93.854135264597659,29.677872025521872,126.568755971267819 -93.868248509364321,29.675072049521876,126.584248351864517 -93.891257977131431,29.675999776716068,126.630634196102619 -93.932268859901271,29.681598066206437,126.728504100814462 -94.002676276875931,29.683471285168807,126.866895936429501 -94.057777236193459,29.673148343373843,126.930024673230946 -94.133849423924318,29.648203032011342,126.976258663460612 -94.355438897104619,29.563447800453922,127.065383051522076 -94.372141563455969,29.557059237380209,127.072154788300395 -94.502084884225241,29.507357526713502,127.125094604678452 -94.596132250437648,29.469894765062573,127.157949408516288 -94.63236375055375,29.453456357574115,127.162936547771096 -94.671669256710317,29.432773164110717,127.157391368411481 -94.695438529392973,29.417625803444995,127.143870272673666 -94.709753650152166,29.405043386980797,127.122380540706217 -94.725239703480426,29.385263372235404,127.075318165123463 -94.732327664406981,29.371137114359442,127.034180820919573 -94.746114932521621,29.37115398097777,127.060323728248477 -94.762772165026675,29.363879238357047,127.063745757564902 -94.779972494001242,29.36347909608223,127.094752129167318 -94.783637599994492,29.366261901177261,127.112434973940253 -94.784412757519689,29.377637241040777,127.15781787969172 -94.768129664969607,29.39548337394287,127.195877522230148 -94.755381511471484,29.402994065849906,127.200739926658571 -94.725099243127787,29.428528893492572,127.241964452899992 -94.707646032512216,29.438797473078047,127.248570487834513 -94.687667016736697,29.468499964425764,127.325285671278834 -94.682821983732268,29.473379731733424,127.334932658821344 -94.673680874269152,29.478833507582504,127.338679642416537 -94.667133766326344,29.480391481445132,127.332321852445602 -94.658017584101017,29.480023590242858,127.313700972124934 -94.647228320285578,29.475759938057013,127.276921066455543 -94.629497002544383,29.477976981779708,127.252009063959122 -94.609836711641421,29.485335749892112,127.243273533880711 -94.59549054213349,29.49411738560034,127.250044595450163 -94.596719761497852,29.509658485088199,127.312191407196224 -94.59268676063958,29.515847170093028,127.328408447094262 -94.581553687230866,29.52728362356601,127.351435715332627 -94.567953505911305,29.533976372035433,127.351563517935574 -94.555269227604839,29.531547632910076,127.318331393413246 -94.54827302577516,29.526367996205195,127.285227382555604 -94.533626656898491,29.51978951302328,127.232332334853709 -94.512323263798393,29.521639612174013,127.199351056478918 -94.496303018198802,29.527020458791277,127.189914520829916 -94.504707411648042,29.545238337390824,127.275826155208051 -94.510765521807883,29.544578316796613,127.284685926511884 -94.512364599815982,29.544959308375397,127.289160398766398 -94.523699653145172,29.547659964517059,127.320878660306334 -94.525021843280314,29.547974985610459,127.324578587897122 -94.527614977652547,29.554621581066261,127.355019259266555 -94.533300019722205,29.560365727563006,127.387803978286684 -94.542387697173083,29.569547884851879,127.440203017555177 -94.543811500431659,29.570986490647304,127.448411681689322 -94.547664614165456,29.574034279516464,127.467376274988055 -94.555267785881583,29.575868101550654,127.488733980804682 -94.571286078049553,29.574218041366198,127.512549767270684 -94.571872791078846,29.573864030138648,127.512294239364564 -94.572146710748783,29.57369875233892,127.512174940668046 -94.579491175882339,29.569267244973084,127.508976598270237 -94.59479839961412,29.563305437903953,127.514896409586072 -94.611428155906211,29.558933429145181,127.52942455932498 -94.619309059514976,29.556861517864242,127.536312492564321 -94.623099865366058,29.5558649045566,127.539626351557672 -94.62323418780457,29.555829590817268,127.53974378388375 -94.6271709241026,29.554794611992325,127.543185696005821 -94.683988003957865,29.541811841437934,127.600427802652121 -94.690634486111222,29.540293112321727,127.607130642049015 -94.692907016219593,29.539773836475106,127.609422761015594 -94.719558481789065,29.535533821758381,127.643426779657602 -94.741981821256076,29.527845045091038,127.656211076304317 -94.756797560224427,29.526762798532012,127.680035075172782 -94.758972136170001,29.526603952093463,127.683532405644655 -94.75907137120879,29.526613361790066,127.683756040409207 -94.759166551615408,29.526622387017007,127.68397054169327 -94.768529688475738,29.527510221368562,127.705072491429746 -94.769959363031731,29.527645786424323,127.708294772543013 -94.770701813905504,29.527974775035013,127.710962095297873 -94.770856553764972,29.528043342065097,127.711518012918532 -94.772123182359849,29.528604599915507,127.71606847923249 -94.775854426743678,29.530257957663167,127.729473187588155 -94.776081516339673,29.530358583702071,127.730289014056325 -94.780957652867016,29.532519256459892,127.747806602157652 -94.780991196586058,29.532534120071556,127.747927109710872 -94.781114654165236,29.532588825559497,127.748370630666614 -94.782221670094756,29.533079357181297,127.752347566187382 -94.784579288845023,29.537300045626875,127.773021157830954 -94.785317308302055,29.538621272898645,127.779492286965251 -94.787795998121368,29.543058706832177,127.801224472932518 -94.787933270187352,29.543304455904153,127.8024279512465 -94.790824052273337,29.548479631266012,127.827770008705556 -94.791889076730541,29.550386273882062,127.837105730548501 -94.780722873117682,29.551457320545236,127.820121601223946 -94.772336696945715,29.550424460641715,127.800311557017267 -94.756520570494075,29.564766793480782,127.825521766208112 -94.735909438171674,29.586029777555904,127.868237771093845 -94.710024455304492,29.627207676320392,127.977357821539044 -94.694438030102134,29.696430878632018,128.213118407875299 -94.693718132508494,29.70558736371623,128.246795526705682 -94.696601436208027,29.725028227967353,128.326578268781304 -94.725901667496473,29.77673899855284,128.579316329210997 -94.736557011705102,29.787405287806564,128.640093757770956 -94.742205142971557,29.789053139075381,128.657020474784076 -94.772798571009147,29.775861592413811,128.664328438229859 -94.793524892471311,29.769405758394605,128.678762463852763 -94.817372219994496,29.758683137139272,128.682809211313725 -94.852395450439019,29.723347810404878,128.613960088230669 -94.866294388663448,29.697313160192206,128.540705648250878 -94.868725224782537,29.680745081972166,128.481939369812608 -94.873838228418819,29.67322746137804,128.462842613458633 -94.894394501617498,29.663313827667857,128.463764078915119 -94.916700874716014,29.6585918806162,128.487872016616166 -94.922606009283427,29.660155733932516,128.505023835226893 -94.932442311712862,29.675850557287593,128.58366463240236 -94.935455520024675,29.680658438325864,128.607749070972204 -94.937377736200702,29.694679619251833,128.664987075142562 -94.943969928941954,29.699753265533683,128.696844330057502 -94.967252413425172,29.70230489328101,128.750632262788713 -94.973955346107331,29.68684571054062,128.704235658980906 -94.990213395487913,29.674178508006779,128.686579938977957 -95.006687655451017,29.661342848609863,128.668687012046576 -95.006938090280229,29.660961776654545,128.667703812941909 -95.007670253401585,29.659847687081275,128.664829299785197 -95.008912794261434,29.657956985716943,128.659950813278556 -95.012314559836994,29.652780719098082,128.646593402139843 -95.012972655315579,29.651779333916327,128.644009092822671 -95.014009656544488,29.649065609015484,128.635591519996524 -95.015066778734138,29.646299229660904,128.627009928226471 -95.016925600069229,29.641434886666861,128.611918542534113 -95.016889734581369,29.641262665764643,128.611191589385271 -95.014912502710345,29.631768283250441,128.571109862066805 -95.014788427939081,29.631172494071205,128.568594310432673 -95.012949172860644,29.629746293933298,128.559650714509189 -95.002069986687118,29.621310326009745,128.506744753569365 -95.001748566912511,29.621061089819747,128.505181552842259 -95.000769600488994,29.620301977030735,128.500420385971665 -95.00037117875037,29.619993031769614,128.498482659459114 -94.990159707691944,29.612074825281077,128.448815469630063 -94.986119686225933,29.60634073909889,128.419198003597558 -94.984224218280232,29.603650462161553,128.405300909653306 -94.983994476957434,29.603324385540692,128.403616443276405 -94.98414321033087,29.603083353473533,128.402974676340818 -94.98421156686085,29.602972577288369,128.402679721824825 -94.990281469305003,29.593135907240114,128.376484896987677 -95.008958616452745,29.576238692718029,128.347107005305588 -95.017433407160212,29.561318414013975,128.305958027951419 -95.017641253387708,29.560952490688493,128.304948614910245 -95.017915589696528,29.560469508363113,128.303616278804839 -95.017960185415234,29.560370721959114,128.303321938030422 -95.019541575468494,29.556867698783417,128.292883814312518 -95.019486119567105,29.556600226108994,128.291752690449357 -95.019479149070591,29.556566606290616,128.291610514745116 -95.018176997123447,29.550286119310353,128.265048344619572 -95.01645332677974,29.541972581579007,128.229880675673485 -95.014666230491486,29.539805898106003,128.218177059665322 -95.000868785716762,29.523077814757233,128.127798957750201 -94.983203317747439,29.513126555874347,128.05608766246587 -94.959729785635943,29.506999134088908,127.988052977249026 -94.936162695933234,29.503066049487892,127.928281008265913 -94.93476921809723,29.502833493565525,127.924747135490179 -94.934325339891188,29.502759415239201,127.923621465452015 -94.911183887404889,29.498897364650606,127.864940225146711 -94.910750733141711,29.498825076029252,127.863841946236789 -94.914670688123465,29.489241587130145,127.834420756436884 -94.92719970118695,29.471035509314962,127.788135594688356 -94.932146563214985,29.452493524447199,127.726161660626531 -94.92068631002941,29.450020776872002,127.694922866299748 -94.892084571906466,29.435422889884176,127.584516189061105 -94.888584273865305,29.417123973095183,127.507385006174445 -94.887819854976613,29.368380832481044,127.317964394576848 -94.89551758552804,29.339996260240003,127.222979596816003 -94.895276643129378,29.310168480466707,127.107276435941458 -94.887818996597574,29.299825047648135,127.053141197189689 -94.877234075128825,29.295014215952882,127.014458914287388 -94.866408652041386,29.295976507015478,126.997648512944579 -94.851012530734323,29.299344306882819,126.981478669680655 -94.826234431190883,29.308004223247302,126.967999840155244 -94.823828976266512,29.323880325884588,127.024819280952215 -94.823588696371175,29.346251164307937,127.110803809016943 -94.811978014374006,29.355431250444354,127.124268752522767 -94.78617628979471,29.337532525828568,127.006264900788665 -94.781276187195573,29.336932607315866,126.994668955914676 -94.778345153760796,29.33880852775318,126.996369265951216 -94.746809509280979,29.336232978273244,126.926726676523685 -94.746225525116046,29.338407859031847,126.934027820825577 -94.732600281137849,29.340063894706724,126.914649019017816 -94.723810027660093,29.333444358975001,126.872431912459433 -94.732362198647934,29.333831254739756,126.890106738545001 -94.770975612568634,29.306935428832116,126.859188160859048 -94.787375753594091,29.292737087306325,126.835319857113063 -94.804975951477402,29.281237579457056,126.824165318161249 -95.027502620377803,29.150069999806966,126.738499066792428 -95.083057232810091,29.113229593825981,126.701305571012199 -95.111768499776844,29.090232647121258,126.666712162084877 -95.120555684494661,29.079852933230871,126.643135990016162 -95.123809554879003,29.076009353705604,126.634404174052179 -95.126418522222238,29.069330714730032,126.613419267348945 -95.192676246786164,29.025101638631746,126.567901414819062 -95.240209732045855,28.990657178004341,126.52468591555953 -95.273552035704583,28.963560429062397,126.482928531244397 -95.298433172568821,28.936088783862239,126.423484217375517 -95.310990341032834,28.930278000878431,126.424880165606737 -95.354737805630535,28.90016233032398,126.391252008266747 -95.378265983894238,28.878178382001352,126.350573001429439 -95.38367696628616,28.86836690019528,126.322643336839974 -95.41746152625177,28.861500976500331,126.360685041174293 -95.440881967124312,28.861040779556408,126.403868988156319 -95.488057585716788,28.838306650458151,126.405731151811779 -95.508329702969164,28.826774629690927,126.399656685069203 -95.569425563373628,28.792019566543786,126.381382299587131 -95.813796655060997,28.666968526672388,126.363520105369389 -95.885319613604565,28.635125705169536,126.377154116518795 -96.001977259070998,28.590267216473567,126.427426097914577 -96.079164320875392,28.558656331415801,126.453301339410245 -96.195709837559804,28.50425640965592,126.466424349695444 -96.221674381621312,28.493998764000928,126.476707272231579 -96.246049445991019,28.47708852452762,126.457740963436663 -96.271689764221506,28.463964050932685,126.456139713525772 -96.304511131376373,28.443905916761011,126.441283487714827 -96.322859269172724,28.427183725134011,126.411290692165494 -96.330116386228383,28.425694743467332,126.41960755456239 -96.342916547476477,28.419369993417149,126.419716112315655 -96.372416856658702,28.399697869687017,126.399903112091124 -96.373400828782536,28.395912083170298,126.386911012232304 -96.372016727304938,28.389704461851807,126.359741432592273 -96.379916217495889,28.385946937497764,126.360384072177112 -96.380671839725949,28.388126308453241,126.370451612398028 -96.383163688510308,28.395313316218573,126.4036476444453 -96.377259564404596,28.403718732663691,126.425215184688568 -96.375438396465185,28.406311441558639,126.4318667948246 -96.336418872236862,28.439829700545019,126.487570948898792 -96.269640269602377,28.480025608522627,126.515320286154747 -96.225123088545288,28.497099856211577,126.495624538511038 -96.220276395767385,28.502414984238669,126.507070760242641 -96.216348324077956,28.511710997214266,126.535952479578555 -96.146745296923655,28.546771040867355,126.538110471330583 -96.106032047826361,28.561528902934171,126.51683753170073 -96.047506830257603,28.589008891293744,126.510927054099739 -96.034274988965635,28.591044545643754,126.493207733146846 -96.008829239842953,28.601731236565399,126.485722257755697 -95.987454752209956,28.60834687220941,126.470182531513274 -95.983383520657995,28.61648894428054,126.494222301989794 -95.986946026707798,28.623104341833379,126.527083492837846 -95.984401690907774,28.643968395658181,126.603947153314948 -95.979821500013273,28.65261936976346,126.628964561969042 -95.98736178415848,28.65749327111369,126.662690808065236 -95.997633744280435,28.660761252621768,126.695424090139568 -96.004249636437052,28.658216803832403,126.698294478468597 -96.007811980900925,28.650074716546019,126.673307611607015 -96.03478465707002,28.654654362080315,126.743609828874469 -96.049034332209317,28.651092076203682,126.75732450466603 -96.073462210364198,28.637352121786471,126.750941228121519 -96.100434717720034,28.626665405703108,126.761479630135 -96.149799593888531,28.613434100015748,126.805619383230805 -96.188477138979763,28.595622983898497,126.811066387221217 -96.199673237860353,28.589007455565309,126.806924665346742 -96.223083388972498,28.582391810346511,126.826576842926443 -96.230208234374757,28.582900624062155,126.842453513294458 -96.23529761186181,28.598675802494078,126.914222247898579 -96.235297674475717,28.603764587576421,126.934168835170567 -96.223592627195657,28.609362366850913,126.933307294733822 -96.215450020527555,28.615468979210085,126.941379514522851 -96.213923384157766,28.624628820049828,126.974294575862586 -96.232244655271558,28.643457144394713,127.08370588440448 -96.209852532510737,28.664321377899331,127.121776009909809 -96.215959586569014,28.667374581666095,127.145609070546925 -96.193567482679953,28.689765447146176,127.189619487151504 -96.192549731622606,28.696380888596305,127.213506862521172 -96.197130045635163,28.700960748227281,127.240321383811533 -96.203745993776039,28.702996192997723,127.261148050427437 -96.224102677124677,28.700451621770657,127.290810030885041 -96.23275426013312,28.698416010553306,127.299690647982061 -96.258200003644362,28.686711563617827,127.303472289815545 -96.26481592372474,28.685693745876051,127.312376358546317 -96.269905160297171,28.69078248736286,127.34218074567616 -96.289243972546515,28.685184624060359,127.357966324314475 -96.305529196112929,28.673480265481984,127.34393650572747 -96.306546895421519,28.662284930947205,127.302136524580419 -96.305019947909202,28.647018594792389,127.23943292349577 -96.324223018590018,28.643883455974059,127.264602136798203 -96.329956838972009,28.642947338867163,127.272119596600533 -96.374741420806274,28.62869831219772,127.303720338270068 -96.377794856973978,28.62208285201001,127.28378442209214 -96.385937468322595,28.61801175763075,127.28374045714736 -96.474997566385099,28.575265115782738,127.290317586623132 -96.489247228877417,28.571702830156564,127.304226140491664 -96.484158177708281,28.582389325176198,127.336140798404813 -96.481613787180123,28.598673462465563,127.394939347170293 -96.487212014908678,28.609868732021109,127.449710662476718 -96.49179232916363,28.612921959779339,127.470615361817181 -96.512149091648681,28.616992789667158,127.526350245811045 -96.511640216646299,28.619537189402333,127.535310386680067 -96.498917353603233,28.627170476738137,127.540296085178852 -96.497899590186449,28.632768153295956,127.560201999731362 -96.50095315111038,28.637856913668767,127.586073270998895 -96.507569124430617,28.64040123497492,127.608956726267934 -96.546755877954539,28.647525155129973,127.713438133709133 -96.556425323883204,28.648033948765008,127.734341561794281 -96.564567985745654,28.646507229377647,127.744304731488228 -96.57423771556617,28.669915557299252,127.854680358432233 -96.571693199903009,28.676022106029272,127.873550596646965 -96.560497185433789,28.689253056093012,127.903310655616224 -96.561006142448406,28.693324087106248,127.920197121798992 -96.562532964482187,28.698412842639332,127.943043953739107 -96.568131072827867,28.699939449236279,127.959948974661529 -96.576448171728643,28.704853597070855,127.995389707386494 -96.579034506337578,28.706381729746731,128.006410093978047 -96.579327343635967,28.706554752310296,128.007657861337066 -96.580947012931787,28.714328080210404,128.041148913092911 -96.58097688581401,28.71447145003707,128.041766548529267 -96.581872086965788,28.718767815970399,128.06027408875525 -96.585398962175688,28.724813241331155,128.090746180154383 -96.585434587031457,28.724874305982837,128.091053956188262 -96.585503945985479,28.724892556214822,128.0912607582286 -96.59295509769828,28.726853157397411,128.113477635197341 -96.595104058307768,28.727418607526744,128.119885233230889 -96.606229489147012,28.724225322880116,128.129197002388537 -96.635727773675754,28.71575855692047,128.153904004953802 -96.63622110914082,28.715616956959899,128.154317427426577 -96.647175748918656,28.712472693736458,128.163499382324517 -96.650066971336074,28.71164283857885,128.165923327207565 -96.656837418489317,28.706183106072302,128.157887098379433 -96.665843267667285,28.698920730929004,128.147196446545422 -96.659227222115064,28.689760988987189,128.098505677655339 -96.636325695405006,28.670932711788652,127.980171507224441 -96.635307676049095,28.656684126189681,127.922534855082631 -96.6292006038734,28.652104262612443,127.892685298807919 -96.624620340972925,28.651595439694077,127.881728610023856 -96.616986513577046,28.646506723709404,127.846899048425257 -96.611897271268489,28.640909116039765,127.815059937536716 -96.611897239730823,28.638364731087311,127.805115530267358 -96.621057645711176,28.629713704360821,127.789237468503416 -96.624111084033828,28.624116008383151,127.773332953453064 -96.612405532426962,28.587985757580118,127.609061979688704 -96.609351983448775,28.585441392313001,127.593120768666267 -96.575254514900365,28.586459484408437,127.530329077504575 -96.566602882927825,28.584424049947305,127.505421372130513 -96.565584974893511,28.578317516414025,127.479516643099487 -96.562531407931715,28.572719879461673,127.451615199446678 -96.537594301534114,28.561524796523738,127.358939416706562 -96.527415916983813,28.559998263478022,127.333035915158689 -96.523344522823606,28.556436149084863,127.311107377521694 -96.515710520132302,28.537098833978419,127.22035344876349 -96.507058800426421,28.52793911221584,127.167493175715208 -96.451586322340916,28.492827026591378,126.921121321618557 -96.421050996512065,28.469418920776054,126.769410572946072 -96.411890343674145,28.461276952884024,126.719482861459255 -96.403747557788748,28.451099462638279,126.66353121958673 -96.40527421595722,28.444484028323103,126.640492537990212 -96.462781672789731,28.423619468485708,126.67092464864254 -96.48313827561519,28.409879531115518,126.656705266796052 -96.506039434330987,28.399701754741088,126.661499098874629 -96.521815825763468,28.396139455898933,126.678389915265143 -96.544208116044061,28.387488315236872,126.688220178708434 -96.561002290028853,28.379854972089024,126.691091416403651 -96.571689449777082,28.370695056854114,126.675973421894014 -96.593063856203372,28.359499532199202,126.673805102705956 -96.601715425299489,28.356446188421433,126.678754631429911 -96.652098171602631,28.348812534388411,126.747611152008176 -96.673981523114207,28.337616995441408,126.746488384902477 -96.689758099928994,28.349321041093383,126.823616881854832 -96.695865114804931,28.349320982653666,126.835620688274503 -96.699427482504774,28.344741047279456,126.82457906845957 -96.706552404540545,28.350847520708346,126.862643899396062 -96.701463477488375,28.371711568819411,126.934806630015373 -96.707061960058454,28.402244224454492,127.065962355583906 -96.711642297433301,28.408859609211223,127.100981433875859 -96.723856342302611,28.41089497975652,127.132988177239895 -96.750320066673083,28.41089472585687,127.185007028281689 -96.76355196624246,28.413947879683985,127.223027049563825 -96.768267241447944,28.412769112795576,127.227665588259697 -96.769658952398828,28.412421200379857,127.229034777730703 -96.773516855077844,28.410106574950337,127.227522601373494 -96.777292659663715,28.40784120590968,127.226042741909623 -96.782103345829128,28.400453758683543,127.206458766013384 -96.791542095392913,28.38595930600631,127.16802195366472 -96.795861285382315,28.367723145964831,127.104767276905477 -96.796103020466973,28.366702510252843,127.101226045750082 -96.796122114366511,28.366621893425251,127.100946329534054 -96.796119702343447,28.36654956471823,127.100656906142831 -96.796119311426494,28.366537842394973,127.100610001012683 -96.795664526805695,28.352900332738294,127.04602889996022 -96.795613011108188,28.35135554452982,127.039844883605838 -96.795323093208012,28.349285052534515,127.031121187843382 -96.795233026661535,28.348641828834523,127.028410960920155 -96.795142373506735,28.347994415781717,127.025683037005365 -96.795071626662434,28.347489166619038,127.023554093204439 -96.79384677418841,28.338741699452235,126.986690544523299 -96.792050266336332,28.325911669358216,126.932605899870396 -96.792465795560048,28.321132950888909,126.914591949433088 -96.793067995178532,28.31420746372136,126.888481023721397 -96.807317483017485,28.298940984262352,126.856354204937816 -96.810879825727682,28.29232552244078,126.837282185442746 -96.807317302830171,28.284183508364574,126.798147764056921 -96.800608378397229,28.274755693316983,126.747732684016228 -96.78848704985748,28.257722017441257,126.65661699231714 -96.788486981657073,28.252124363185683,126.63451343588531 -96.801718507444249,28.226171433628412,126.558062507770956 -96.81134283561849,28.219129635878463,126.549203769303858 -96.843449384835807,28.195638352341263,126.519647069275379 -96.873984246071828,28.178336213158545,126.511466970667243 -96.899429831308865,28.154927563228718,126.469079596921802 -96.91164379165987,28.149329793269558,126.471046884544194 -96.93607156399932,28.125921163958878,126.426626873202622 -96.964062017366842,28.125412020404227,126.479944560676813 -97.001722096523238,28.139660257141525,126.61083353497088 -97.008846924234845,28.138133549255816,126.618885135278106 -97.02869457217065,28.126429157070035,126.611826245673001 -97.030221234188119,28.11930484956957,126.586640461347997 -97.024114103023521,28.109636226768107,126.536262355744839 -97.025131885981992,28.105565193993399,126.522150942124426 -97.033274457065176,28.095896415675707,126.499963444657624 -97.036836769071783,28.086736582453206,126.470717802643776 -97.036836639574773,28.076050143529002,126.42835754621774 -97.032765044043813,28.05569505804419,126.339571942575276 -97.027166814744135,28.043990919498299,126.282046860083938 -97.032255871822656,28.035339948875652,126.257792666554451 -97.041925253190186,28.030759957488176,126.258767884224653 -97.05006787129517,28.024144464387685,126.248638487420976 -97.063299417445066,27.998191563059425,126.171789105050266 -97.077040072674961,27.989031614404848,126.162636552006006 -97.122841917036027,27.92542140179512,126.000539428554475 -97.130475606371022,27.921859183659972,126.001517413184047 -97.136109135647985,27.904525996840505,125.94369482062757 -97.137091320593669,27.901504020054258,125.933610598556697 -97.137922679947025,27.90101501051338,125.933314287103713 -97.145742843533995,27.896415152966838,125.930527386255562 -97.156429946726163,27.882675355939934,125.897024370729923 -97.184762740979124,27.835293654162321,125.7644401807338 -97.185946568344576,27.833313907575107,125.758896365761757 -97.188017317439105,27.827516053863469,125.739881978370249 -97.188178818173967,27.827063870819998,125.738398883491755 -97.18849107339517,27.826189592965193,125.735531310550869 -97.19017419601623,27.825835259769427,125.737465171143413 -97.194182133781268,27.824991503420311,125.742070522159338 -97.195009170434219,27.824817394572232,125.74302089586854 -97.198160484788204,27.824153975713749,125.746642355807126 -97.210435206811297,27.824153859413478,125.771062158048153 -97.210883417214376,27.824153855166411,125.771953921765089 -97.212534033924584,27.824453929478128,125.776435459963977 -97.221046125530862,27.826001387469567,125.799547114409506 -97.222079635514589,27.826189274695313,125.802353339269757 -97.223520309673361,27.826711472716305,125.80730361584574 -97.224265147893632,27.826981452601835,125.809862942434847 -97.226484247489509,27.827785804792896,125.817487948574126 -97.22674394676568,27.828207771781507,125.819688172079623 -97.227119499744234,27.828817981258162,125.822869893163443 -97.227321077641037,27.829145510927614,125.824577663093805 -97.228626184909757,27.831266087432716,125.835634198971093 -97.228626205719564,27.833000895305414,125.842554284259677 -97.228626209553155,27.833320465842231,125.843829003162682 -97.228626229189018,27.834957240355056,125.850357661955059 -97.22862622987131,27.835014110389558,125.850584494881332 -97.22782308193915,27.840368424682143,125.870340981520712 -97.229697311410504,27.845722723987539,125.895421586930752 -97.235820719000259,27.851124161048524,125.929141544736922 -97.242436742193959,27.859775028164474,125.976789490319788 -97.242702233569403,27.861013827492535,125.982254941947758 -97.243963566272683,27.866899284563392,126.008218408562243 -97.244231564159662,27.86726774385324,126.010219848714769 -97.252106398071845,27.878094529602052,126.069022270850837 -97.257704280904235,27.879960287676294,126.087592763826251 -97.259614826828397,27.880597067077467,126.093930853530765 -97.264320473073852,27.882165445285857,126.109541514888406 -97.273562915105487,27.883485589117978,126.133192998357117 -97.275007759243735,27.88369196337058,126.136890520341694 -97.277941824699113,27.883202961656554,126.140783141367137 -97.286776224226742,27.881730589418147,126.152505320496857 -97.296382251827978,27.880129614912178,126.165254059247673 -97.302765326418864,27.877965961921685,126.169347193092108 -97.319203024267026,27.872394121338321,126.179892865009606 -97.326408267768514,27.869951780052801,126.184517706744373 -97.328804747593892,27.86846439037749,126.1833675513044 -97.355925249542437,27.8516318872332,126.170353929512203 -97.361523358441133,27.852649606689042,126.185567071661353 -97.361858337110121,27.852423282412623,126.185333071276546 -97.362557537746284,27.851950875980123,126.184844651259482 -97.380353149755507,27.839927486569231,126.172413597814739 -97.393075808592613,27.816010093584609,126.10244107618928 -97.394602189141239,27.784968527701192,125.981644627638161 -97.387477149195547,27.768684500360738,125.902415545657277 -97.36966473878914,27.743749655695392,125.767257529310882 -97.348289999897503,27.727465763637316,125.659509646706283 -97.317754804317659,27.714744107801639,125.547710326500237 -97.255262777801278,27.698765939071169,125.359158203005791 -97.261264537046728,27.681667581615791,125.302648025564849 -97.267371537723974,27.68064977118236,125.310746864415705 -97.29790579337795,27.616021995801379,125.112558798864484 -97.299941368670957,27.606862182464905,125.079862867482007 -97.298923464055591,27.600755646222776,125.053319768048823 -97.295360987331847,27.596175782743884,125.027822191826999 -97.303503567693497,27.58803366479362,125.01138468272984 -97.3228422626227,27.57327601958978,124.990730849094689 -97.326425516854385,27.56300444464863,124.956621343269944 -97.338109265885279,27.529512403744992,124.845329221338034 -97.344725089928517,27.519843662127276,124.819661866873503 -97.348796263712117,27.505086171698085,124.768422044813633 -97.351849451925787,27.480659992314312,124.676191706210375 -97.360500814342686,27.460304800805325,124.611498674377799 -97.367116662613597,27.452671584821083,124.593974087387323 -97.373223375235668,27.427227635588178,124.503614727407694 -97.371187541633986,27.414505718780962,124.44822303019464 -97.374240906252069,27.40331037332194,124.409160317853093 -97.380856693088376,27.392115004512444,124.37721711024642 -97.400703955968197,27.346824706683172,124.234025347046554 -97.403248438611186,27.337664881550694,124.202096834778786 -97.406301888926336,27.332067204894386,124.185583628714085 -97.41444446378199,27.323416203801763,124.166919724084437 -97.421569260217069,27.319345107928125,124.164736297912896 -97.431747578469356,27.315782859738327,124.170733897015452 -97.452104258839483,27.315782669474654,124.211554341949522 -97.484165891618332,27.300007168711186,124.212061702273786 -97.509611483207024,27.277107434357145,124.170467528514564 -97.533530646116972,27.280669363663705,124.232918079942465 -97.545744735128537,27.286266897076214,124.280102306045592 -97.54828940248791,27.292882283080719,124.311978276818991 -97.538111025141887,27.291355739923045,124.285359028726816 -97.527932715170408,27.293900225779272,124.275212853215635 -97.525897122698794,27.300006778538581,124.295828328467906 -97.518772362387082,27.307131131288653,124.310339016839862 -97.506049412875186,27.307131250284453,124.28479943331331 -97.49943353662789,27.310693455253539,124.285927538760006 -97.504013931958951,27.324433108732023,124.350674607791007 -97.500451595402751,27.33003078996903,124.366153066977859 -97.485184181195351,27.340717372314536,124.378710819408298 -97.485184330550524,27.353439306843228,124.430110948160291 -97.488237936041529,27.36107245086782,124.467066435143352 -97.502996639530807,27.368705485252665,124.527492986992002 -97.515719509633684,27.363616564547812,124.532471187412739 -97.521826419817799,27.354965602091021,124.509790951386094 -97.539638326150282,27.33766358560321,124.475651185959578 -97.572208815843283,27.317817060370174,124.460856098681688 -97.585440589642417,27.311710402743017,124.462755004875362 -97.610377255693066,27.287284054616229,124.414101507514715 -97.623100228504356,27.289319430256384,124.447915012016892 -97.632769639972324,27.288301597300443,124.463242843747139 -97.637858766838093,27.284230520779971,124.457012081518769 -97.637989809794519,27.283818687376513,124.455609859898686 -97.641421057314858,27.273035182778035,124.418887731619179 -97.640403011782126,27.255224478359018,124.344758678227663 -97.63633160260737,27.249117983185826,124.311845411546528 -97.630224543496539,27.24504702141849,124.283075051382184 -97.598671657884211,27.244538440193619,124.217551763169467 -97.583913031013452,27.242503063699264,124.179632199928164 -97.5752614117646,27.240976511187885,124.156054952181876 -97.562538411037153,27.234870101631138,124.105739476159215 -97.544217334479768,27.231308129872726,124.054482494480908 -97.521316069314238,27.233343857983918,124.016716866753995 -97.511137777099606,27.237414971924558,124.012769502587616 -97.504521892953946,27.241994928796618,124.018040925264359 -97.501468450420091,27.246574857387714,124.03046599868685 -97.48645541869351,27.252935988804335,124.026092311367393 -97.46838888862689,27.255734981173646,124.001164908520877 -97.459737355173687,27.261587152515499,124.007508303038776 -97.451594709938433,27.26464050519311,124.003536721691489 -97.425385478798148,27.266167378227298,123.957142746075988 -97.423604193498832,27.259806427967703,123.927801021374762 -97.436072023651406,27.204338643707448,123.727917841635644 -97.4462497047749,27.146835379643605,123.514834372326732 -97.444977079155407,27.118338241102848,123.396412199363112 -97.453628659169866,27.117320413517518,123.409653778187931 -97.457191034869666,27.112486042792938,123.397146574221551 -97.457954280085147,27.101799608317382,123.355201245285571 -97.463043402795918,27.097728537637778,123.348861942067742 -97.476784216528927,27.100527233469052,123.38786946143955 -97.481873433558391,27.104598209654686,123.414663515053689 -97.492815147253197,27.103325912924063,123.431484128348529 -97.497140865418459,27.096201592896023,123.411194164305925 -97.494596089887281,27.080171970979901,123.340834078378975 -97.478819506333707,27.068213495271419,123.260415012016892 -97.480346216051245,27.064905776843609,123.250012785196304 -97.48356125804014,27.064048462146349,123.252986037172377 -97.488234379746089,27.059816923378651,123.24514742847532 -97.488997711583067,27.055745897981627,123.23009807150811 -97.48797966197121,27.036917444190287,123.15132159460336 -97.478819118079954,27.034627572043572,123.123560706153512 -97.475256648206155,27.03131990580064,123.102910246700048 -97.474747668635416,27.024958935293796,123.075949574820697 -97.479836575280387,27.001296093267406,122.989661144092679 -97.481872211774515,26.999769441409153,122.987527247518301 -97.485434675693583,27.002568231548079,123.006115775555372 -97.538107619099293,27.00180442993398,123.109023408032954 -97.55057605100238,26.997987734459219,123.118562063202262 -97.556682992901642,26.992390026932114,123.108024058863521 -97.552357093614376,26.982975831150352,123.060892873443663 -97.550830161875567,26.967455082667161,122.99445644300431 -97.553629052269756,26.954224243780498,122.946061035618186 -97.556682487507857,26.949389876328304,122.932465347461402 -97.556682390876759,26.940993397797651,122.898159477859735 -97.542177876853586,26.908425370182766,122.73578255623579 -97.541414426752567,26.903082174547958,122.712387043982744 -97.549302591599371,26.897230013268992,122.704344363883138 -97.553628316184103,26.890614566032795,122.685995513573289 -97.553628076893261,26.869750592415748,122.600591108202934 -97.559735040403552,26.866442832534482,122.599361489526927 -97.564569503247114,26.844306620092564,122.518439579755068 -97.553882075425207,26.830058151503916,122.438487221486866 -97.549047321165929,26.826750492557419,122.415175558999181 -97.538868975233456,26.827005025454046,122.395690461620688 -97.511132727055212,26.805632427178764,122.252102452330291 -97.485686399101525,26.76568579224125,122.036796455271542 -97.479324862245946,26.759324881923334,121.997836365364492 -97.472963415194556,26.760851572978016,121.991283275187016 -97.469909706823671,26.743040889728555,121.911927566863596 -97.468637052213879,26.712253825387517,121.782742983661592 -97.446243822636376,26.635667983353109,121.422098591923714 -97.447006918523371,26.611496304063444,121.323922986164689 -97.442504287838005,26.602035265556989,121.275787931866944 -97.429448847301188,26.574602851919664,121.136155021376908 -97.4182524544199,26.555774498675163,121.035749503411353 -97.423595712005437,26.522442989922876,120.908687480725348 -97.427158083719306,26.51888081203553,120.901140582747757 -97.431992685825961,26.508703222284662,120.868783137761056 -97.431992551578205,26.496744606351847,120.819277360104024 -97.427666646810295,26.486567104992211,120.768394760787487 -97.430465603387745,26.480206095134115,120.74770034942776 -97.436826979220598,26.472318437931825,120.727873403578997 -97.442679492508105,26.468756244410724,120.724937703460455 -97.442679367071577,26.457560947555979,120.678541948087513 -97.438862424864666,26.451963328873287,120.647626088932157 -97.427157280648302,26.448146861777289,120.608153488487005 -97.422322572808994,26.448910214371669,120.601551126688719 -97.418505727439623,26.451963513550812,120.606499897316098 -97.412907603689291,26.449419175546289,120.584642654284835 -97.414179739109301,26.43517061258283,120.528121398761868 -97.423085621571985,26.419395328685766,120.480666424147785 -97.420795444421898,26.415324333435244,120.459144188091159 -97.407309086657705,26.411253439599271,120.414997358806431 -97.399420889471955,26.413034581155515,120.406454077921808 -97.395604044766927,26.41659675104388,120.413529065437615 -97.396367454903086,26.419395570735887,120.426687155850232 -97.383780045171562,26.413472699234241,120.376678797416389 -97.379064171967315,26.411253695349501,120.357942569069564 -97.370921334987671,26.396750770187914,120.281275813467801 -97.375755888356039,26.383011038956994,120.233965759165585 -97.390259870292269,26.367999031144127,120.200886247679591 -97.393313091156998,26.341537388465785,120.097033714875579 -97.392295170140173,26.334413117637315,120.065340708941221 -97.389241654606153,26.332632070279772,120.051758762449026 -97.377536613240935,26.338484266658103,120.052448358386755 -97.37346531533089,26.342046438529138,120.059039133600891 -97.370666368864718,26.350697376089549,120.089364290237427 -97.359470266043701,26.358585080901278,120.099544966593385 -97.344711684914117,26.361384038254329,120.081373557448387 -97.336568970082752,26.357821970425896,120.050117900595069 -97.331734196986943,26.352733242992507,120.019191811792552 -97.338095447105943,26.333904728683777,119.953709141351283 -97.354126207193175,26.320673785270408,119.931029003113508 -97.355652904210814,26.316093880042139,119.915048803202808 -97.348273569869988,26.313549558076836,119.889545717276633 -97.348782289580825,26.294975535202919,119.813221578486264 -97.34521958599025,26.269531707454927,119.699993129819632 -97.342420523558928,26.267750665198747,119.686910979449749 -97.333259996828232,26.267750747664902,119.668397900648415 -97.324099560227566,26.274111793829164,119.676405450329185 -97.313157862060251,26.275892962275861,119.661724335514009 -97.308322917480623,26.255283480120561,119.566020160913467 -97.309340704380759,26.251212440628425,119.551095300354064 -97.322572410447833,26.238235956638245,119.523694469593465 -97.32257232889701,26.230857244198777,119.492901511490345 -97.3057777585868,26.2046502179616,119.349533538334072 -97.297889526730017,26.202869214004973,119.326151017099619 -97.296108223337441,26.194472761422443,119.287471656687558 -97.297380408801345,26.184549644592931,119.248574802652001 -97.308067421341846,26.161650079267389,119.174442269839346 -97.297888885038674,26.144602786359822,119.082550045102835 -97.28665063082687,26.130542913817461,119.000983763486147 -97.283384487646487,26.122466751089096,118.960568184033036 -97.284402294092729,26.11992236370628,118.951972289010882 -97.295343976106551,26.11610568360485,118.958116818219423 -97.296361749035825,26.11050802263167,118.936732530593872 -97.281094048535124,26.094224099077181,118.837634347379208 -97.272187933240858,26.088626526895251,118.796164425089955 -97.248268747110586,26.082520213176309,118.722203466109931 -97.209336563684971,26.081757247368451,118.640316211618483 -97.200939397641562,26.079212934217701,118.612680199556053 -97.196358740420706,26.04410046210285,118.456101801246405 -97.206282508536745,26.032396199629289,118.427019499242306 -97.216206400108604,26.032904991744516,118.449217270128429 -97.226130259829304,26.02959720187329,118.45539241656661 -97.227402521334369,26.026543926939031,118.445143634453416 -97.220531823092387,25.998301310106697,118.312599275261164 -97.21824167137035,25.996011382853581,118.298343216069043 -97.20984451113253,25.993975947757765,118.27280643209815 -97.197121576537185,25.995248259868589,118.252429399639368 -97.175747122876174,26.002245509502103,118.238634868524969 -97.168495124317474,26.009242633548787,118.253386819735169 -97.164042179026723,26.016748608377469,118.27592954877764 -97.163915044675178,26.025653957676628,118.313084973022342 -97.173330251688739,26.046899493832871,118.421321324072778 -97.179946187427561,26.04766275325818,118.437891510315239 -97.184017608475159,26.055295871286763,118.478155167773366 -97.166269227036494,26.066046062059847,118.487413457594812 -97.15329612787572,26.064278078289476,118.453795626759529 -97.154496896024611,26.041077490725101,118.358834804035723 -97.153208641127364,26.019825806201826,118.266971605829895 -97.146853020784022,25.973307718406797,118.058556805364788 -97.173919415743569,25.965058984493478,118.078558058477938 -97.229312363738401,25.961111734583604,118.173980205319822 -97.272670061194162,25.954007785546086,118.231846077367663 -97.349564208100759,25.933319373493028,118.300571465864778 -97.363634291142517,25.917901196787337,118.264201313257217 -97.368334236786353,25.905198936579612,118.220248534344137 -97.368012036011407,25.887245044426905,118.143966592848301 -97.409646466736476,25.858639435875688,118.10788731276989 -97.498152296310863,25.882236195527668,118.387088747695088 -97.512452630747887,25.889635612432791,118.447311819531024 -97.583858447240175,25.940030872055761,118.804495247080922 -97.669394890513502,26.024689895706544,119.333851373754442 -97.672864077564938,26.036122161226537,119.388824644498527 -97.864355530191489,26.06343648496075,119.893224244005978 -97.889999256387711,26.067094303370535,119.960827953182161 -98.009609320840909,26.063309458316933,120.189186869189143 -98.01318533354744,26.058770705678331,120.177514044567943 -98.045819764975747,26.045909203863037,120.190425318665802 -98.133909317559997,26.059668509188427,120.428154686465859 -98.242970562396408,26.076703523932562,120.722686805762351 -98.265821083792659,26.087665641004104,120.815288097597659 -98.388004024113599,26.16002507065199,121.367518131621182 -98.44013353924413,26.214171259079968,121.699727819301188 -98.46747914177692,26.225393318194932,121.802488136105239 -98.587124608167173,26.259548120213147,122.19005265366286 -98.588034636386723,26.259601193645047,122.192143458873034 -98.6246502849027,26.261736641759871,122.276285518892109 -98.634215346917301,26.252493123848328,122.257620397023857 -98.706992915612375,26.279622784612524,122.519851996563375 -98.752482312702867,26.333446050219511,122.836323510855436 -98.80866771811921,26.371557185508337,123.109555809758604 -98.823692995017694,26.373037955811753,123.146621274761856 -98.862674613524334,26.36812589895278,123.206656488589942 -99.048899293088027,26.409053656376329,123.75976363196969 -99.107044657270208,26.440849158200681,124.010874133557081 -99.169324095747413,26.559920247305843,124.628897323273122 -99.173386335567955,26.572980749680841,124.690853791311383 -99.210281323221324,26.691601769202773,125.252576960250735 -99.243776049176049,26.790368392269432,125.724645430222154 -99.269946141799494,26.845315776470262,126.002285005524755 -99.323153803244637,26.908944375199077,126.370559032075107 -99.380485113347532,26.936586139656633,126.601013883017004 -99.447862315462928,27.025098081867299,127.098420499823987 -99.453654885281978,27.064756600863582,127.270587272942066 -99.452373911948783,27.068852362603348,127.284477876499295 -99.447931881201569,27.072680170843125,127.290760643780231 -99.431217876343084,27.096408879523615,127.352020950987935 -99.427687792082793,27.178342909076111,127.674868910573423 -99.442889934665629,27.251996270609038,128.002283598296344 -99.45373229044867,27.266121305594233,128.081330650486052 -99.455290326148173,27.266747849294916,128.087055799551308 -99.464650530770882,27.270511933284688,128.121450366452336 -99.472221624920323,27.267519043151548,128.125043178908527 -99.496020179578935,27.279669074216198,128.222845794633031 -99.530997122208291,27.308123004079047,128.409034608863294 -99.537786316816792,27.314609543537681,128.449023383669555 -99.53911438218077,27.318144315368887,128.46592254191637 -99.508303339593411,27.358489154137096,128.563953679986298 -99.494174508222343,27.392558216362364,128.671124648302794 -99.489047655036643,27.411990083501475,128.738236716017127 -99.481563445815439,27.487857543540535,129.025659629143775 -99.520727188224896,27.57562483555235,129.455672458745539 -99.542990964653171,27.60782566601765,129.62942722812295 -99.60196741381462,27.643364937635788,129.891808700747788 -99.624826841131423,27.646186544185557,129.950038032606244 -99.62764286881675,27.64450061903711,129.949147070758045 -99.628471833534732,27.640462855865092,129.934838101267815 -99.667524502778107,27.640374481273792,130.014884965494275 -99.844817219024236,27.776600491159126,130.919087994843721 -99.877529171531691,27.808314249287999,131.111612495034933 -99.902842323685618,27.866196496315961,131.391768389381468 -99.905741511743159,27.877317794822542,131.441498883068562 -99.897184725583926,27.906210131291651,131.537474540062249 -99.923403397835784,27.924149788194583,131.661982062272727 -99.992806490519001,27.996585724994098,132.08916962146759 -100.0584108827953,28.09767497166985,132.619792390614748 -100.082230814211286,28.139208229776859,132.830959131009877 -100.084755943901172,28.146050792069623,132.862844254821539 -100.089506068855485,28.149518535732941,132.886151616461575 -100.145504286509805,28.170251728217252,133.082356894388795 -100.172687851046874,28.178242975534186,133.169524340890348 -100.203813562936375,28.192565801635485,133.289466952905059 -100.210830094986619,28.19887764134463,133.328498140908778 -100.259155138195041,28.242349248434284,133.597180443815887 -100.292759156954105,28.277403800423667,133.802596762776375 -100.348356792628522,28.409229310277226,134.427651635371149 -100.335185755835226,28.501243916458016,134.755519529804587 -100.339889869254392,28.503824714099508,134.775153450667858 -100.38833585084646,28.516013493356628,134.921923090703785 -100.406431440286937,28.537769004976898,135.042953191325068 -100.431230649566402,28.598426116289581,135.327206426300108 -100.448034094069058,28.610643213639282,135.408734187483788 -100.501730701040714,28.663940475036696,135.723769738338888 -100.51143224180808,28.692701654041059,135.85389712266624 -100.513375466306826,28.707329758584269,135.913877755403519 -100.508078525629756,28.718722130707864,135.946542305871844 -100.508990853878629,28.742574694330894,136.039614357054234 -100.536817175412523,28.807166548588068,136.343518702313304 -100.548183634271993,28.827344226812833,136.443851000629365 -100.59123484334846,28.863585621620057,136.670535622164607 -100.641474413065964,28.917796870302372,136.980147582478821 -100.652894972906083,28.94539410648995,137.108463132753968 -100.64948745251111,28.985819731048799,137.254795959219337 -100.647277449100713,28.988380601149832,137.259955099783838 -100.66544991499461,29.075160245405137,137.625865457579494 -100.669740634851664,29.085923695945478,137.67537544388324 -100.676041450232432,29.101729555100931,137.748053074814379 -100.795050980032229,29.24408930994726,138.529233568347991 -100.79906051547232,29.248885534826908,138.555506221018732 -100.955435525572653,29.349532932910801,139.254791688174009 -100.997001442587958,29.365336561210537,139.399518576450646 -101.039037851493831,29.416611081242536,139.6777208968997 -101.044760155800716,29.431809120629065,139.746240148320794 -101.061547832910776,29.46058823967201,139.888164633885026 -101.088546435510182,29.471340319457237,139.983844980597496 -101.138901340408196,29.475467546040438,140.102964737452567 -101.236675690320084,29.52677547850978,140.49545671697706 -101.248721185578972,29.620397812480128,140.867804360575974 -101.251785315852487,29.626086443835185,140.89520076289773 -101.315538870620458,29.660966707875904,141.155759105458856 -101.34514740915084,29.663959217393117,141.227875751443207 -101.405332749250675,29.759492936987591,141.704817750491202 -101.456414781419156,29.772092649989752,141.856597142294049 -101.627368650720172,29.772965776849755,142.212772705592215 -101.636538630075563,29.760578410837915,142.186117378994823 -101.647828757036876,29.756207548709703,142.193362067453563 -101.763251964063031,29.779087901823946,142.51635049842298 -101.787766474189482,29.783947415210179,142.584969455376267 -101.885070287226512,29.798091538078523,142.838508445769548 -101.946329375714754,29.803365570043098,142.984876520931721 -102.041956794937903,29.791958219715024,143.141441110521555 -102.051461881414937,29.786967413158063,143.142859098501503 -102.117495074898628,29.794423263304768,143.307402570731938 -102.263888347818764,29.85565606452526,143.836139510385692 -102.283669811895876,29.865488269500815,143.913261823356152 -102.298754223923396,29.877083420748139,143.987044920213521 -102.322242465550019,29.877082266110222,144.035922200419009 -102.324812651202151,29.877082139760613,144.04127136990428 -102.366070878970405,29.845514563655016,144.011759717948735 -102.388100076369525,29.763375195254433,143.756863502785563 -102.40584541760002,29.766999789284071,143.8071602685377 -102.435487065719542,29.778593782367484,143.911481060087681 -102.48824406848027,29.788617619286622,144.058283258229494 -102.502166220686277,29.783338782440399,144.068014489486814 -102.556340643166067,29.750860126766678,144.062186459079385 -102.614305574476333,29.750075548609054,144.180476753041148 -102.666621271387726,29.739314623980952,144.250485164113343 -102.691165456028699,29.724243255374791,144.246629975736141 -102.699774217116769,29.697486754160181,144.166558679193258 -102.746920533001131,29.594868359235868,143.888440777547657 -102.783233409673727,29.544357982790483,143.778709372505546 -102.810118560841701,29.524223896475235,143.760981815867126 -102.833363754199212,29.439852690825809,143.498511124402285 -102.834745372107065,29.410892409134643,143.394374662078917 -102.877238285380017,29.355629264961941,143.279290997423232 -102.897310649797731,29.286696184981516,143.06603073514998 -102.887731954242611,29.24760063418266,142.90067198779434 -102.882558875958068,29.247942668732243,142.891038682311773 -102.872770657986294,29.243546036990413,142.854069858789444 -102.868269355970156,29.22693708248244,142.782840662635863 -102.879443392685829,29.216620583397702,142.768031569197774 -102.952314037585268,29.178759084486117,142.780887759290636 -102.997112538691653,29.163143547605504,142.817351971752942 -103.105854516612155,29.035521084504072,142.571373978629708 -103.116752027417917,28.987203886597076,142.413828329183161 -103.158070513922411,28.974765200599929,142.454858168028295 -103.165289618581241,28.974033168381151,142.467423954047263 -103.283329737378111,28.99202082952862,142.785089509561658 -103.384936812104485,29.02604069323435,143.127873963676393 -103.472467900307521,29.077292663133267,143.504878961481154 -103.471949026710774,29.087032080134048,143.540033352561295 -103.504668012922778,29.121031677007092,143.736036015674472 -103.526903621498022,29.139664314178429,143.852532922290266 -103.560112383320373,29.156880919480511,143.987050664611161 -103.611504341263654,29.167644719459325,144.136261658743024 -103.628501575155312,29.165253681810672,144.163541661575437 -103.716303242569637,29.186052484563266,144.427487877197564 -103.76925164143455,29.226866451539252,144.691328048706055 -103.793443547845186,29.264604913692818,144.882361318916082 -103.794143787409297,29.264840967266043,144.884724192321301 -103.839742490832862,29.280212473437977,145.038587138988078 -103.926417063544406,29.295819597237742,145.280834498815238 -103.964517720723663,29.300309915070894,145.378611044026911 -104.026930917588459,29.316308275332769,145.5706756869331 -104.14513772568499,29.38517684006457,146.076251868158579 -104.168952373095763,29.404825396577177,146.199235245585442 -104.214857923357528,29.463962332714985,146.514061375521123 -104.237295764044845,29.498634999626006,146.688873117789626 -104.265604448279433,29.515890651927798,146.812397129833698 -104.292177935525061,29.521215041524016,146.888584348373115 -104.323053535719367,29.52981118698856,146.985917582176626 -104.395803125411106,29.562420428707984,147.260338258929551 -104.516967153958888,29.643372229329017,147.814055197872221 -104.540025025592684,29.67927281683863,147.993777086958289 -104.551229756107176,29.717965367804407,148.158123662695289 -104.550573929760475,29.730687610622208,148.202848267741501 -104.567512806117321,29.773249867942535,148.39320114068687 -104.634735279451618,29.872349180573785,148.894815377891064 -104.668762384513315,29.912262411837485,149.111317390576005 -104.676393512150497,29.912973284679545,149.130171341821551 -104.681338731740055,29.922806640754391,149.176135500892997 -104.695055379661582,30.020931615516407,149.558079499751329 -104.687257342001416,30.094506305845314,149.805151456966996 -104.688761647143394,30.181309110128648,150.118674703873694 -104.710382815564017,30.237667510176646,150.365717543289065 -104.763102598677975,30.302985031016952,150.71040056925267 -104.782489096916294,30.316400015255056,150.799341026693583 -104.860992437315545,30.392243622675988,151.235510057769716 -104.87428129049195,30.501968958526582,151.651737787760794 -104.931253663275967,30.601057441588051,152.121971597895026 -104.973547479506806,30.612076309265152,152.250641545280814 -104.986841600354737,30.625607795408641,152.326458112336695 -105.045885707908269,30.685706129473726,152.662886874750257 -105.130809019155649,30.751945244931221,153.075333187356591 -105.212717028640625,30.801411386074331,153.42229285929352 -105.251511612069805,30.80086997409137,153.502968721091747 -105.266962900834201,30.804337592326462,153.547951103188097 -105.396113733651774,30.860716780945285,154.019287273287773 -105.413320526894822,30.895161549474146,154.175627401098609 -105.558281214666891,30.991256210323286,154.817492823116481 -105.57914200269947,31.021596180891137,154.966814761050045 -105.581248296084183,31.038372168052465,155.029238448478281 -105.586815706435402,31.059270872680855,155.11322620511055 -105.60482337161919,31.084406184283804,155.238261038437486 -105.650328580518618,31.117680698517265,155.449803369119763 -105.710986817554101,31.138151790023926,155.649470019154251 -105.752015885036741,31.166714632997419,155.835060192272067 -105.795217114790617,31.203484968142128,156.053318836726248 -105.870853626346118,31.290399979892538,156.512050572782755 -105.901816272065318,31.30177295039605,156.616896580904722 -105.924632806443654,31.313852974486505,156.706780087202787 -105.982530677471331,31.376881598612936,157.045084215700626 -105.999162492233594,31.38824783842097,157.119230409152806 -106.008434348076364,31.394584256802577,157.160557704977691 -106.100899082722819,31.4165158851992,157.432303130626678 -106.13428875135557,31.427121870854396,157.539564089849591 -106.204359417066996,31.465824777430456,157.820408533327281 -106.20752687426787,31.468399292298127,157.835895832628012 -106.209032681513307,31.469623215114765,157.843258164823055 -106.210708594508645,31.470985400188599,157.851451953873038 -106.214426320655633,31.475159752253571,157.873533476144075 -106.220046901965716,31.481470675715393,157.906912523321807 -106.255572521392281,31.549258286938493,158.212089953012764 -106.358452556115907,31.703946027332279,158.952735485509038 -106.382554400939014,31.733843996225655,159.104508118703961 -106.419456273710722,31.753741396557103,159.249922356568277 -106.438259632362048,31.758603889121662,159.306316088885069 -106.4740310807356,31.75353375900756,159.365617363713682 -106.530061435523507,31.785636218613387,159.592668739147484 -106.530061443694208,31.78613618945208,159.594341934658587 -106.529515477081958,31.788674047945022,159.601669693365693 -106.52914150707322,31.790847925622575,159.608145883306861 -106.529256519271087,31.791489886812347,159.61053925473243 -106.529461534502914,31.792235840864521,159.613472545519471 -106.532033598702625,31.793831717120341,159.62429950106889 -106.533998624726365,31.793642704705135,159.627859645523131 -106.534518631040811,31.793557703459786,159.628684745170176 -106.534561632953029,31.793635698398379,159.629037433303893 -106.536261726810309,31.797835433209251,159.646714157424867 -106.536672748957585,31.79881737104656,159.650875672698021 -106.53686175859329,31.799235344418921,159.652677017264068 -106.537361783990107,31.800335274315501,159.657422899268568 -106.543615934521497,31.803873993355705,159.682601485401392 -106.543662934579714,31.803834995068815,159.682571346871555 -106.546233008310722,31.806014837300179,159.695344273932278 -106.546863029421914,31.80673478780443,159.699095877818763 -106.564963421811939,31.814333128747347,159.763118452392519 -106.5683634836045,31.815033047348873,159.772712890990078 -106.606765586038634,31.847629688553027,159.963533013127744 -106.607365601474598,31.848029658072004,159.966148380190134 -106.616157734528201,31.848214542189112,159.985527361743152 -106.623377945704789,31.854578085021899,160.022171440534294 -106.627284059617423,31.857999838919344,160.041923708282411 -106.62932916072306,31.862316562935113,160.060688302852213 -106.617658433549948,31.950157589592703,160.328384710475802 -106.616224537024777,31.957718167157868,160.350472346879542 -106.600619044524549,32.002446755122506,160.465851203538477 -106.60016203813278,32.002469759272749,160.464954109862447 -106.596855989537346,32.002493797565002,160.457991761155427 -106.58949487995595,32.002464887608099,160.442216754890978 -106.567578555141537,32.002475150061848,160.395576205104589 -106.566664541203437,32.002452162365948,160.393553516827524 -106.412595260149956,32.003051975170614,160.067714993841946 -106.395818012491063,32.003202167486172,160.032545408234 -106.378693405743604,32.003208292475087,159.996164368465543 -106.314825803597657,32.003231135811049,159.860532397404313 -106.207432199460399,32.003482406259927,159.6333680273965 -106.202216121590681,32.003505467301906,159.622377052903175 -106.183356842932952,32.003770677443903,159.58324836846441 -106.101276012427576,32.003895772715765,159.409609881229699 -105.999517080012794,32.004050857287723,159.194540775381029 -105.902112603637661,32.003824032336254,158.987628201954067 -105.887671382799113,32.00369421201583,158.956647280603647 -105.430786391239124,32.002306726179803,157.98783752694726 -105.430087380879698,32.002329733146759,157.986442821100354 -105.428554357956031,32.002367749143843,157.983342436142266 -105.391900794195209,32.002337185741894,157.906084139831364 -105.155495144778712,32.002229992564544,157.408784720115364 -105.151811087733179,32.002230036152305,157.401050288230181 -105.149741055481684,32.002218061334254,157.396664273925126 -105.134416818651019,32.002251240719957,157.364606589078903 -105.132877794903763,32.002257258579547,157.361396305263042 -105.11954058758208,32.002218418579496,157.333272835239768 -105.080104976755081,32.002266882137043,157.250687465071678 -105.078545953310339,32.002312897919964,157.247571268118918 -104.919769482188428,32.002231778254092,156.914484707638621 -104.849253388653551,32.002219008292521,156.766807819716632 -104.645019180427866,32.002182019473658,156.339708152227104 -104.642411138675683,32.002135052866343,156.334103578701615 -104.533428421656282,32.002051339578074,156.106361551210284 -104.533247415662188,32.001857352840837,156.105330592952669 -104.026004357823254,32.001756305502717,155.049770275130868 -103.981661649881374,32.001871817226693,154.95818689558655 -103.724331531866767,32.001971261007263,154.425651618279517 -103.327973087396401,32.002124415020511,153.608331465162337 -103.279992305037126,32.002173968783438,153.509739514440298 -103.271854170619264,32.00208106845276,153.49267821572721 -103.269179126885206,32.002079099584456,153.487167452462018 -103.269104128070822,32.002230091849036,153.487526023760438 -103.217111278631165,32.002268692372049,153.380711209028959 -103.090166197127317,32.002210165838861,153.119654414243996 -103.087344150985103,32.002222197811889,153.113900544121861 -103.065890799483768,32.002275443015471,153.070035330019891 -103.065813179661362,32.088803522925723,153.363775352947414 -103.065817756052112,32.124791478894117,153.485779302194715 -103.065892109513356,32.146755231357822,153.560316410847008 -103.06617222326804,32.523920913290887,154.830030538141727 -103.066238301715103,32.589707212896485,155.049949336796999 -103.066265505847682,32.602120515099458,155.091423573903739 -103.066238529463277,32.603586433062695,155.096258706413209 -103.066292902737771,32.626259159031768,155.171973724849522 -103.066111259514969,32.648140932815224,155.244517400860786 -103.066342859822313,32.684365897886089,155.365583629347384 -103.066276992475622,32.692479443723485,155.392440279945731 -103.066278288279037,32.710411438527821,155.452071013860404 -103.066306584809567,32.728344433362885,155.511725339107215 -103.066287422482375,32.779016596493456,155.679897546768188 -103.066178524989013,32.785315245350759,155.700565562583506 -103.066191541618579,32.78630618975496,155.703878160566092 -103.06618025338652,32.829241788894336,155.846133917570114 -103.066153268525653,32.830180736732999,155.849188268184662 -103.066370619055505,32.85106856696359,155.918773887678981 -103.066397750819746,32.858969125308711,155.944969481788576 -103.066288756259937,32.85940510224777,155.946190155111253 -103.066343934262846,32.870054506838464,155.981526710093021 -103.0661831147507,32.88106289409091,156.017598686739802 -103.066051456537409,32.901720742636989,156.085600579157472 -103.066140443690429,32.960800447048946,156.280773381702602 -103.066162532216836,32.966076152806892,156.298212423920631 -103.066109125554746,33.001600174848633,156.415150129236281 -103.065936296686289,33.011990598489085,156.4490085542202 -103.065464764930226,33.040392023752148,156.541501121595502 -103.065389820081336,33.043753837650378,156.552404759451747 -103.061590742130448,33.22091404937094,157.125612840056419 -103.059345333362927,33.316917764306467,157.434471809305251 -103.058976569482226,33.331159981713206,157.48013636469841 -103.058145864728928,33.390096140879535,157.670280674472451 -103.058145560339412,33.390117736517475,157.670350283384323 -103.054103615430563,33.572268756822069,158.252728761173785 -103.053158615129163,33.631155535470327,158.440987853333354 -103.052857825352461,33.643615855641109,158.480573259294033 -103.053029975783602,33.652152385436423,158.508445778861642 -103.052582101404312,33.659850968762655,158.532360603101552 -103.05202733815176,33.674072195971817,158.577070333994925 -103.051643843712142,33.703633581126759,158.671490254811943 -103.050592594682115,33.747930169271051,158.811844136565924 -103.048843929797556,33.8263309055191,159.059980878606439 -103.048405369520111,33.851954512151394,159.141207474283874 -103.047143243961671,33.90318873341598,159.30264032445848 -103.047197328225124,33.907950473249585,159.317974398843944 -103.046393003694362,33.947266341529755,159.441979212686419 -103.045450497096084,33.976276774146804,159.532676551491022 -103.045118001334018,34.005279200881056,159.624485345557332 -103.045032252949781,34.019659420259345,159.670132926665246 -103.045056512214771,34.034358621238034,159.716995189897716 -103.045247596118045,34.038938370108134,159.731959245167673 -103.045272671325947,34.043182139282372,159.745518708601594 -103.045222684266903,34.043964097419959,159.747907462529838 -103.04526870663129,34.045189030325716,159.751898630522192 -103.045245819788349,34.051629680814763,159.77235028333962 -103.045188049713829,34.064720970704165,159.813884476199746 -103.045018334612791,34.081024087887094,159.865387710742652 -103.045071486766801,34.08958862251697,159.892718109302223 -103.045149485014463,34.258535474193252,160.428335695527494 -103.045225066328697,34.291071715990036,160.531265832483768 -103.045442304570884,34.304215003852235,160.573187331669033 -103.045485423785635,34.314378538432578,160.605342670343816 -103.045485487066117,34.314393454051988,160.605389850214124 -103.045453681490002,34.381180853757542,160.815794362686574 -103.045451683337902,34.381285848126332,160.816120876930654 -103.045426705425172,34.382541780780578,160.820024377666414 -103.045200749319946,34.385203640184962,160.827951460145414 -103.045137768188397,34.386315581069745,160.831325367093086 -103.045121772919387,34.386594566240426,160.832171471789479 -103.045120839412704,34.390304366448369,160.843844719231129 -103.04512087102276,34.392067271507322,160.84939232468605 -103.045092929258985,34.395341095552041,160.859637790359557 -103.045118990479523,34.398729912753723,160.870351766236126 -103.045091054098933,34.402302720730269,160.881535494700074 -103.045046139189637,34.407087463689663,160.896495816297829 -103.045091041722898,34.457278762850379,161.054314953275025 -103.045097113874988,34.461283547463601,161.066901125945151 -103.045098115906995,34.461395541430328,161.067254732362926 -103.045103167920303,34.464281386228137,161.076324608176947 -103.044583997440711,34.621394963256904,161.567231231369078 -103.044339926713846,34.672798215621846,161.727142196148634 -103.044283313237202,34.748967146963707,161.964204240590334 -103.044285132890579,34.793827753905354,162.103615525178611 -103.044297195769602,34.851843662999507,162.283621727488935 -103.044038096796783,34.901144043373002,162.435780225321651 -103.044038870147261,34.955696144244207,162.604428171180189 -103.044041462508716,35.137181531519765,163.163302006199956 -103.044121597279698,35.144351151656089,163.185469859279692 -103.044232635815916,35.146320046233484,163.191732779145241 -103.044089904886846,35.160902277726557,163.236195702105761 -103.043917260729074,35.180156263259079,163.294901644811034 -103.043861322213147,35.18350508719152,163.305057216435671 -103.043888338783773,35.184369041249852,163.307759026996791 -103.043899345740087,35.184732021952584,163.30889345984906 -103.04389937506383,35.184739006653146,163.308914926834404 -103.044019883571963,35.213443505552867,163.397099918685853 -103.043084613448414,35.624046976930494,164.644157147966325 -103.042889833020169,35.740827807841065,164.995875372551382 -103.042362936021277,36.056768538181338,165.94058602489531 -103.043218090442281,36.319058048083804,166.719858130440116 -103.043289106127034,36.31979100963504,166.722160058096051 -103.043216277898367,36.480029823751096,167.193716351874173 -103.003981032526809,36.501912217469567,167.181624358519912 -102.163995286068314,36.501852061439756,165.555808371864259 -102.033868986141201,36.501593417632762,165.304606841877103 -101.828091284086526,36.501184401151775,164.908135357312858 -101.828024280551332,36.501065408027863,164.907654105685651 -101.789635595590681,36.501208891789958,164.834447202272713 -101.784884511031265,36.501239950973833,164.82542869169265 -101.783512486611045,36.501248968062008,164.822824549861252 -101.782135462100314,36.501257985213819,164.8202108675614 -101.780960441171189,36.501264999883702,164.817978619597852 -101.710838182582833,36.501253896698451,164.683545807376504 -101.700208987447837,36.5010400432976,164.662548477761447 -101.655231180166709,36.501105614394383,164.576605358161032 -101.651489112854193,36.501105662168122,164.56944106798619 -101.625437643177861,36.501060996973415,164.519440004602075 -101.086668872103758,36.500783865282806,163.490744720213115 -101.05393028057955,36.501103264281653,163.429451992735267 -101.046843150673041,36.501080355269345,163.415912253782153 -100.978598903952971,36.501136217106485,163.286417645402253 -100.955663430094532,36.501140420203342,163.242877780459821 -100.937568152843753,36.501143736240991,163.208534914068878 -100.920022831733277,36.50116295734604,163.175290810875595 -100.885683203309128,36.501224388757862,163.110317294485867 -100.885589201584892,36.501224389946969,163.110138973221183 -100.861165753553195,36.501229698601442,163.063829693943262 -100.852348591958119,36.501242809443966,163.047148312442005 -100.825744101801092,36.501161149918147,162.996463307179511 -100.825726101470423,36.501161150145684,162.99642918817699 -100.807697771297796,36.501217375193676,162.96242559608072 -100.807679770191484,36.501177377432178,162.962271917611361 -100.804416709966958,36.501164419322819,162.956049045547843 -100.804393709544215,36.501164419613467,162.956005456857383 -100.763317954127189,36.501161938720415,162.878172500990331 -100.763317953390882,36.501123940630393,162.878058874048293 -100.72586826403861,36.501124413547181,162.807138966396451 -100.725867263594097,36.50110241466534,162.80707126762718 -100.710131973659202,36.501097613558031,162.777267466299236 -100.71013397307641,36.501065615140668,162.77717552613467 -100.659268034633271,36.501028258916129,162.680805502459407 -100.659268034962253,36.501045258062199,162.680856380611658 -100.649847861075514,36.501040377140605,162.663021698594093 -100.649848860474776,36.501008378735321,162.662927814759314 -100.594117831594076,36.501015081150811,162.557563995942473 -100.594059830522426,36.501015081881896,162.557454357855022 -100.594054829656585,36.500975083953435,162.557325134985149 -100.585042664169535,36.501029194831858,162.540452513843775 -100.584882660439206,36.500989198856821,162.540030322037637 -100.579617563517289,36.501009264208243,162.530139300972223 -100.57961756305329,36.500985265413235,162.530067426152527 -100.547647970069193,36.500889673050224,162.469371877610683 -100.532717693804599,36.500887861217883,162.441162560135126 -100.53271769281919,36.500836863777813,162.441009772010148 -100.53198067821495,36.50078687557032,162.439467891119421 -100.531816677440716,36.500903871763207,162.439508635550737 -100.523729526498798,36.500837976929063,162.424036590382457 -100.44256602661126,36.50103798859142,162.271422800607979 -100.442565026052293,36.501009990008697,162.27133696898818 -100.435459894154974,36.501004079697189,162.257914131507277 -100.422828659648076,36.500995239038986,162.234059411101043 -100.422801659938216,36.501036237321948,162.234131419099867 -100.415134516813623,36.500992335963126,162.219537901692092 -100.415050515737036,36.50101733576561,162.21945443470031 -100.380133868389407,36.501065772409298,162.153756888583302 -100.38009186622071,36.500993776548071,162.153461736626923 -100.353351370181031,36.501036110555262,162.103183057159185 -100.353341369725271,36.50102211138293,162.103122205473483 -100.335963045632042,36.500969332416396,162.070214753039181 -100.335940045589851,36.500989331702662,162.07023142836988 -100.325648858812599,36.501228449017731,162.051558820530772 -100.312743617822193,36.501180613540939,162.027103345841169 -100.312516614697103,36.501237613534983,162.026846809312701 -100.312141606833592,36.501191620551403,162.026002359576523 -100.182717194848621,36.501184245394143,161.782377663999796 -100.091515490746715,36.501186388433254,161.610960270278156 -100.005254763244537,36.501252918666907,161.449203698895872 -100.001898813858816,36.501255506983419,161.442914151586592 -100.001883383601751,36.057252863175144,160.097412960603833 -100.001877314945304,35.882532735849679,159.56268017180264 -100.001868273531585,35.620713110581335,158.755769871175289 -100.001861519423812,35.423972211105266,158.144975547678769 -100.001853339264656,35.184322611803566,157.395775509998202 -100.001849213473122,35.032013522269132,156.916644451208413 -100.001841577378926,34.748104362094317,156.017310922034085 + + diff --git a/display-kml-on-map/img/star.png b/display-kml-on-map/img/star.png new file mode 100644 index 0000000..cae7b2d Binary files /dev/null and b/display-kml-on-map/img/star.png differ diff --git a/display-kml-on-map/index.html b/display-kml-on-map/index.html new file mode 100644 index 0000000..e8bfc94 --- /dev/null +++ b/display-kml-on-map/index.html @@ -0,0 +1,21 @@ + + + + + + + Display KML Data + + + + + + + + +

Display KML Data

+

This example shows a map of the continental United States, highlighting the state capitals and borders of each state. The data to display on the map has been read in from a KML file and loaded using the built-in KML parser.

+
+ + + diff --git a/display-kml-on-map/js/app.js b/display-kml-on-map/js/app.js new file mode 100644 index 0000000..c0d0631 --- /dev/null +++ b/display-kml-on-map/js/app.js @@ -0,0 +1,51 @@ +/** + * Renders specified a KML file on the map + * + * Note that the maps data module http://js.api.here.com/v3/3.0/mapsjs-data.js + * must be loaded for KML parsing to occcur + * + * @param {H.Map} map A HERE Map instance within the application + */ +function renderKML(map) { + // Center map on New York + map.setCenter({lat: 37.4602, lng: -95.7475}); + map.setZoom(4); + + // Create a reader object passing in the URL of our KML file + var reader = new H.data.kml.Reader('data/us-states.kml'); + + // Parse the document + reader.parse(); + + // Get KML layer from the reader object and add it to the map + map.addLayer(reader.getLayer()); +} + + +/** + * Boilerplate map initialization code starts below: + */ + +// Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true +}); +var defaultLayers = platform.createDefaultLayers(); + +// Step 2: initialize a map +var map = new H.Map(document.getElementById('map'), defaultLayers.normal.map, { + zoom: 1 +}); + +// Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Step 4: create the default UI component, for displaying bubbles +var ui = H.ui.UI.createDefault(map, defaultLayers); + +// Step 5: main logic goes here +renderKML(map); \ No newline at end of file diff --git a/display-kml-on-map/thumb.jpg b/display-kml-on-map/thumb.jpg new file mode 100644 index 0000000..23d4f3c Binary files /dev/null and b/display-kml-on-map/thumb.jpg differ diff --git a/draggable-marker/boston.png b/draggable-marker/boston.png new file mode 100644 index 0000000..d562789 Binary files /dev/null and b/draggable-marker/boston.png differ diff --git a/draggable-marker/index.html b/draggable-marker/index.html new file mode 100644 index 0000000..58733aa --- /dev/null +++ b/draggable-marker/index.html @@ -0,0 +1,20 @@ + + + + + + + Draggable Marker + + + + + + + +

Draggable Marker

+

This example displays a moveable map of Boston, including a marker. The marker can also be moved around the map.

+
+ + + diff --git a/draggable-marker/js/app.js b/draggable-marker/js/app.js new file mode 100644 index 0000000..df68b24 --- /dev/null +++ b/draggable-marker/js/app.js @@ -0,0 +1,76 @@ + +/** + * Adds a draggable marker to the map.. + * + * @param {H.Map} map A HERE Map instance within the + * application + * @param {H.mapevents.Behavior} behavior Behavior implements + * default interactions for pan/zoom + */ +function addDraggableMarker(map, behavior){ + + var marker = new H.map.Marker({lat:42.35805, lng:-71.0636}); + // Ensure that the marker can receive drag events + marker.draggable = true; + map.addObject(marker); + + // disable the default draggability of the underlying map + // when starting to drag a marker object: + map.addEventListener('dragstart', function(ev) { + var target = ev.target; + if (target instanceof H.map.Marker) { + behavior.disable(); + } + }, false); + + + // re-enable the default draggability of the underlying map + // when dragging has completed + map.addEventListener('dragend', function(ev) { + var target = ev.target; + if (target instanceof mapsjs.map.Marker) { + behavior.enable(); + } + }, false); + + // Listen to the drag event and move the position of the marker + // as necessary + map.addEventListener('drag', function(ev) { + var target = ev.target, + pointer = ev.currentPointer; + if (target instanceof mapsjs.map.Marker) { + target.setPosition(map.screenToGeo(pointer.viewportX, pointer.viewportY)); + } + }, false); +} + +/** + * Boilerplate map initialization code starts below: + */ + +//Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +//Step 2: initialize a map - this map is centered over Boston +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map,{ + center: {lat:42.35805, lng:-71.0636}, + zoom: 12 +}); + +//Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Step 4: Create the default UI: +var ui = H.ui.UI.createDefault(map, defaultLayers, 'en-US'); + +// Add the click event listener. +addDraggableMarker(map, behavior); \ No newline at end of file diff --git a/explore-places/index.html b/explore-places/index.html new file mode 100644 index 0000000..8b670e3 --- /dev/null +++ b/explore-places/index.html @@ -0,0 +1,22 @@ + + + + + + + Explore Popular Places by Category + + + + + + + + +

Explore Popular Places by Category

+

This example uses the explore entrypoint to find places by using categories without typing search queries. It looks for sights and museums (i.e. within the sights-museums category) , around the Brandenburg Gate (52.5159°N, 13.3777°E) in Berlin. For more information about available parameters and options visit Explore Entrypoint Places API documentation.

+
+
+ + + diff --git a/explore-places/js/app.js b/explore-places/js/app.js new file mode 100644 index 0000000..f8177ae --- /dev/null +++ b/explore-places/js/app.js @@ -0,0 +1,170 @@ + +/** + * This example uses the explore entrypoint to find sights and museums, around the + * Brandenburg Gate (52.5159°N, 13.3777°E) in Berlin. + * + * A full list of available request parameters can be found in the Places API + * documentation. + * see: http://developer.here.com/rest-apis/documentation/places/topics_api/resource-explore.html + * + * Note that the places module https://js.api.here.com/v3/3.0/mapsjs-places.js + * must be loaded to use the Places API endpoints + * + * @param {H.service.Platform} platform A stub class to access HERE services + */ +function explorePlaces(platform) { + var explore = new H.places.Explore(platform.getPlacesService()); + var params = { + 'cat': 'sights-museums', + 'in': '52.5159,13.3777;r=500' // Berlin + }; + explore.request(params, {}, onResult, onError); +} + + +/** + * This function will be called once the Places REST API provides a response + * @param {Object} result A JSONP object representing the location(s) found. + * + * see: http://developer.here.com/rest-apis/documentation/places/topics_api/media-type-search.html + * + */ +function onResult(result) { + var places = result.results.items; + /* + * The styling of the places response on the map is entirely under the developer's control. + * A representative styling can be found the full JS + HTML code of this example + * in the functions below: + */ + addPlacesToMap(places); + addPlacesToPanel(places); +} + + +/** + * This function will be called if a communication error occurs during the JSON-P request + * @param {Object} error The error message received. + * + * see: see: http://developer.here.com/rest-apis/documentation/places/topics_api/object-error.html + */ +function onError(error) { + error = data; +} + + +/** + * Boilerplate map initialization code starts below: + */ + + +// Hold a reference to any infobubble opened +var bubble; + +/** + * Opens/Closes a infobubble + * @param {H.geo.Point} position The location on the map. + * @param {String} text The contents of the infobubble. + */ +function openBubble(position, text){ + if(!bubble){ + bubble = new H.ui.InfoBubble( + position, + // The FO property holds the province name. + {content: text}); + ui.addBubble(bubble); + } else { + bubble.setPosition(position); + bubble.setContent(text); + bubble.open(); + } +} + + + +/** + * Creates a series of clickable markers for each place found and adds it to the map. + * @param {Object[]} places An array of places as received from the H.service.getPlacesService + */ +function addPlacesToMap(places) { + var group = new H.map.Group(); + // add 'tap' event listener, that opens info bubble, to the group + group.addEventListener('tap', function (evt) { + map.setCenter(evt.target.getPosition()); + openBubble( + evt.target.getPosition(), evt.target.content); + }, false); + + group.addObjects(places.map(function (place) { + var marker = new H.map.Marker({lat: place.position[0], lng: place.position[1]}) + marker.content = '

' + place.title + + '

' + place.category.title + '

' + place.vicinity + '
'; + return marker; + })); + + map.addObject(group); + + // get geo bounding box for the group and set it to the map + map.setViewBounds(group.getBounds()); +} + +/** + * Creates a series of list items for each location found, and adds it to the panel. + * @param {Object[]} locations An array of locations as received from the + * H.service.GeocodingService + */ +function addPlacesToPanel(places){ + + var nodeOL = document.createElement('ul'), + i; + + nodeOL.style.fontSize = 'small'; + nodeOL.style.marginLeft ='5%'; + nodeOL.style.marginRight ='5%'; + + + for (i = 0; i < places.length; i += 1) { + var li = document.createElement('li'), + divLabel = document.createElement('div'), + content = '' + places[i].title + ''; + content += ' (' + places[i].category.title + ')
'; + content += places[i].vicinity + '
'; + content += 'distance:' + places[i].distance + 'm
'; + + divLabel.innerHTML = content; + li.appendChild(divLabel); + nodeOL.appendChild(li); + } + + placesContainer.appendChild(nodeOL); +} + + +// 1. initialize platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useHTTPS: true, + useCIT: true +}); + +var defaultLayers = platform.createDefaultLayers(); + +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map, { + center: {lat: -37.7942, lng: -122.4070}, + zoom: 15 + }); + +var placesContainer = document.getElementById('panel'); + +// add map behavior + +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Create the default UI components + +var ui = H.ui.UI.createDefault(map, defaultLayers); + +explorePlaces(platform); + + diff --git a/explore-places/places.jpg b/explore-places/places.jpg new file mode 100644 index 0000000..1d4d59e Binary files /dev/null and b/explore-places/places.jpg differ diff --git a/finding-the-nearest-marker/finding-the-nearest-marker.png b/finding-the-nearest-marker/finding-the-nearest-marker.png new file mode 100644 index 0000000..cae74c1 Binary files /dev/null and b/finding-the-nearest-marker/finding-the-nearest-marker.png differ diff --git a/finding-the-nearest-marker/index.html b/finding-the-nearest-marker/index.html new file mode 100644 index 0000000..3e39c68 --- /dev/null +++ b/finding-the-nearest-marker/index.html @@ -0,0 +1,20 @@ + + + + + + + Finding the Nearest Marker + + + + + + + +

Finding the Nearest Marker

+

Click anywhere on the Map to find out which of the five Markers is the nearest to that spot. You can also drag and drop any Marker to a new position.

+
+ + + diff --git a/finding-the-nearest-marker/js/app.js b/finding-the-nearest-marker/js/app.js new file mode 100644 index 0000000..ba8216c --- /dev/null +++ b/finding-the-nearest-marker/js/app.js @@ -0,0 +1,110 @@ + +function findNearestMarker(coords) { + var minDist = 1000, + nearest_text = '*None*', + markerDist, + // get all objects added to the map + objects = map.getObjects(), + len = map.getObjects().length, + i; + + // iterate over objects and calculate distance between them + for (i = 0; i < len; i += 1) { + markerDist = objects[i].getPosition().distance(coords); + if (markerDist < minDist) { + minDist = markerDist; + nearest_text = objects[i].getData(); + } + } + + alert('The nearest marker is: ' + nearest_text); +} + +function addClickEventListenerToMap(map) { + // add 'tap' listener + map.addEventListener('tap', function (evt) { + var coords = map.screenToGeo(evt.currentPointer.viewportX, evt.currentPointer.viewportY); + findNearestMarker(coords); + }, false); +} + + + + + +/** + * Boilerplate map initialization code starts below: + */ + +//Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +//Step 2: initialize a map - this map is centered over New Delhi +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map,{ + center: {lat: 60.1697, lng:24.8292}, + zoom: 16 +}); + +//Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + + +// Set up five markers. +var coords = [{ lat:60.1697, lng:24.8292}, + { lat: 60.1704, lng: 24.8285 }, + { lat: 60.1709, lng: 24.8277 }, + { lat: 60.1700, lng: 24.8265 }, + { lat:60.1700, lng: 24.8283}]; + +//Create the svg mark-up +var svgMarkup = '' + + '' + + '${REPLACE}'; + +$.each(coords , function (index, value) { + var myIcon = new H.map.Icon(svgMarkup.replace('${REPLACE}', index + 1)), + marker = new H.map.Marker(value, {icon: myIcon}); + // add custom data to the marker + marker.setData(index + 1); + + // set draggable attribute on the marker so it can recieve drag events + marker.draggable = true; + map.addObject(marker); +}); + + +// simple D'n"D implementation for markers"' +map.addEventListener('dragstart', function(ev) { + var target = ev.target; + if (target instanceof H.map.Marker) { + behavior.disable(); + } +}, false); + +map.addEventListener('drag', function(ev) { + var target = ev.target, + pointer = ev.currentPointer; + if (target instanceof mapsjs.map.Marker) { + target.setPosition(map.screenToGeo(pointer.viewportX, pointer.viewportY)); + } +}, false); + +map.addEventListener('dragend', function(ev) { + var target = ev.target; + if (target instanceof mapsjs.map.Marker) { + behavior.enable(); + } +}, false); + +// Add the click event listener. +addClickEventListenerToMap(map); \ No newline at end of file diff --git a/geocode-a-location-from-address/geocoder.jpg b/geocode-a-location-from-address/geocoder.jpg new file mode 100644 index 0000000..c63d44d Binary files /dev/null and b/geocode-a-location-from-address/geocoder.jpg differ diff --git a/geocode-a-location-from-address/index.html b/geocode-a-location-from-address/index.html new file mode 100644 index 0000000..48f842b --- /dev/null +++ b/geocode-a-location-from-address/index.html @@ -0,0 +1,21 @@ + + + + + + + Search for a Location based on an Address + + + + + + + +

Search for a Location based on an Address

+

This example makes a geocoding request and retrieves the latitude, longitude and complete address details of 200 S Mathilda Ave, Sunnyvale, CA based on a free-form text input. A clickable marker is placed on the location found.

+
+
+ + + diff --git a/geocode-a-location-from-address/js/app.js b/geocode-a-location-from-address/js/app.js new file mode 100644 index 0000000..eaf4508 --- /dev/null +++ b/geocode-a-location-from-address/js/app.js @@ -0,0 +1,186 @@ + + + +/** + * Calculates and displays the address details of 200 S Mathilda Ave, Sunnyvale, CA + * based on a free-form text + * + * + * A full list of available request parameters can be found in the Geocoder API documentation. + * see: http://developer.here.com/rest-apis/documentation/geocoder/topics/resource-geocode.html + * + * @param {H.service.Platform} platform A stub class to access HERE services + */ +function geocode(platform) { + var geocoder = platform.getGeocodingService(), + geocodingParameters = { + searchText: '200 S Mathilda Sunnyvale CA', + jsonattributes : 1 + }; + + geocoder.geocode( + geocodingParameters, + onSuccess, + onError + ); +} +/** + * This function will be called once the Geocoder REST API provides a response + * @param {Object} result A JSONP object representing the location(s) found. + * + * see: http://developer.here.com/rest-apis/documentation/geocoder/topics/resource-type-response-geocode.html + */ +function onSuccess(result) { + var locations = result.response.view[0].result; + /* + * The styling of the geocoding response on the map is entirely under the developer's control. + * A representitive styling can be found the full JS + HTML code of this example + * in the functions below: + */ + addLocationsToMap(locations); + addLocationsToPanel(locations); + // ... etc. +} + +/** + * This function will be called if a communication error occurs during the JSON-P request + * @param {Object} error The error message received. + */ +function onError(error) { + alert('Ooops!'); +} + + + + +/** + * Boilerplate map initialization code starts below: + */ + +//Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +//Step 2: initialize a map - this map is centered over California +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map,{ + center: {lat:37.376, lng:-122.034}, + zoom: 15 +}); + +var locationsContainer = document.getElementById('panel'); + +//Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Create the default UI components +var ui = H.ui.UI.createDefault(map, defaultLayers); + +// Hold a reference to any infobubble opened +var bubble; + +/** + * Opens/Closes a infobubble + * @param {H.geo.Point} position The location on the map. + * @param {String} text The contents of the infobubble. + */ +function openBubble(position, text){ + if(!bubble){ + bubble = new H.ui.InfoBubble( + position, + {content: text}); + ui.addBubble(bubble); + } else { + bubble.setPosition(position); + bubble.setContent(text); + bubble.open(); + } +} + +/** + * Creates a series of list items for each location found, and adds it to the panel. + * @param {Object[]} locations An array of locations as received from the + * H.service.GeocodingService + */ +function addLocationsToPanel(locations){ + + var nodeOL = document.createElement('ul'), + i; + + nodeOL.style.fontSize = 'small'; + nodeOL.style.marginLeft ='5%'; + nodeOL.style.marginRight ='5%'; + + + for (i = 0; i < locations.length; i += 1) { + var li = document.createElement('li'), + divLabel = document.createElement('div'), + address = locations[i].location.address, + content = '' + address.label + '
'; + position = { + lat: locations[i].location.displayPosition.latitude, + lng: locations[i].location.displayPosition.longitude + }; + + content += 'houseNumber: ' + address.houseNumber + '
'; + content += 'street: ' + address.street + '
'; + content += 'district: ' + address.district + '
'; + content += 'city: ' + address.city + '
'; + content += 'postalCode: ' + address.postalCode + '
'; + content += 'county: ' + address.county + '
'; + content += 'country: ' + address.country + '
'; + content += '
position: ' + + Math.abs(position.lat.toFixed(4)) + ((position.lat > 0) ? 'N' : 'S') + + ' ' + Math.abs(position.lng.toFixed(4)) + ((position.lng > 0) ? 'E' : 'W'); + + divLabel.innerHTML = content; + li.appendChild(divLabel); + + nodeOL.appendChild(li); + } + + locationsContainer.appendChild(nodeOL); +} + + +/** + * Creates a series of H.map.Markers for each location found, and adds it to the map. + * @param {Object[]} locations An array of locations as received from the + * H.service.GeocodingService + */ +function addLocationsToMap(locations){ + var group = new H.map.Group(), + position, + i; + + // Add a marker for each location found + for (i = 0; i < locations.length; i += 1) { + position = { + lat: locations[i].location.displayPosition.latitude, + lng: locations[i].location.displayPosition.longitude + }; + marker = new H.map.Marker(position); + marker.label = locations[i].location.address.label; + group.addObject(marker); + } + + group.addEventListener('tap', function (evt) { + map.setCenter(evt.target.getPosition()); + openBubble( + evt.target.getPosition(), evt.target.label); + }, false); + + // Add the locations group to the map + map.addObject(group); + map.setCenter(group.getBounds().getCenter()); +} + +// Now use the map as required... +geocode(platform); diff --git a/geocode-a-location-from-structured-address/geocoder.jpg b/geocode-a-location-from-structured-address/geocoder.jpg new file mode 100644 index 0000000..c63d44d Binary files /dev/null and b/geocode-a-location-from-structured-address/geocoder.jpg differ diff --git a/geocode-a-location-from-structured-address/index.html b/geocode-a-location-from-structured-address/index.html new file mode 100644 index 0000000..aef567b --- /dev/null +++ b/geocode-a-location-from-structured-address/index.html @@ -0,0 +1,21 @@ + + + + + + + Search for a Location given a Structured Address + + + + + + + +

Search for a Location given a Structured Address

+

This example makes a geocode request and retrieves the latitude, longitude and complete address details of 425 Randolph St, Chicago, IL based on partial address information. Two addresses are found - 425 E Randolph St, and 425 W Randolph St. A clickable marker is placed on each location found.

+
+
+ + + diff --git a/geocode-a-location-from-structured-address/js/app.js b/geocode-a-location-from-structured-address/js/app.js new file mode 100644 index 0000000..889d2d3 --- /dev/null +++ b/geocode-a-location-from-structured-address/js/app.js @@ -0,0 +1,187 @@ + +/** + * Calculates and displays the address details of 425 Randolph St, Chicago, IL + * based on a structured input + * + * + * A full list of available request parameters can be found in the Geocoder API documentation. + * see: http://developer.here.com/rest-apis/documentation/geocoder/topics/resource-geocode.html + * + * @param {H.service.Platform} platform A stub class to access HERE services + */ +function geocode(platform) { + var geocoder = platform.getGeocodingService(), + geocodingParameters = { + housenumber: '425', + street: 'randolph', + city: 'chicago', + country: 'usa', + jsonattributes : 1 + }; + + geocoder.geocode( + geocodingParameters, + onSuccess, + onError + ); +} +/** + * This function will be called once the Geocoder REST API provides a response + * @param {Object} result A JSONP object representing the location(s) found. + * + * see: http://developer.here.com/rest-apis/documentation/geocoder/topics/resource-type-response-geocode.html + */ +function onSuccess(result) { + var locations = result.response.view[0].result; + /* + * The styling of the geocoding response on the map is entirely under the developer's control. + * A representitive styling can be found the full JS + HTML code of this example + * in the functions below: + */ + addLocationsToMap(locations); + addLocationsToPanel(locations); + // ... etc. +} + +/** + * This function will be called if a communication error occurs during the JSON-P request + * @param {Object} error The error message received. + */ +function onError(error) { + alert('Ooops!'); +} + + + + +/** + * Boilerplate map initialization code starts below: + */ + +//Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +//Step 2: initialize a map - this map is centered over California +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map,{ + center: {lat:37.376, lng:-122.034}, + zoom: 15 +}); + +var locationsContainer = document.getElementById('panel'); + +//Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Create the default UI components +var ui = H.ui.UI.createDefault(map, defaultLayers); + +// Hold a reference to any infobubble opened +var bubble; + +/** + * Opens/Closes a infobubble + * @param {H.geo.Point} position The location on the map. + * @param {String} text The contents of the infobubble. + */ +function openBubble(position, text){ + if(!bubble){ + bubble = new H.ui.InfoBubble( + position, + {content: text}); + ui.addBubble(bubble); + } else { + bubble.setPosition(position); + bubble.setContent(text); + bubble.open(); + } +} + +/** + * Creates a series of list items for each location found, and adds it to the panel. + * @param {Object[]} locations An array of locations as received from the + * H.service.GeocodingService + */ +function addLocationsToPanel(locations){ + + var nodeOL = document.createElement('ul'), + i; + + nodeOL.style.fontSize = 'small'; + nodeOL.style.marginLeft ='5%'; + nodeOL.style.marginRight ='5%'; + + + for (i = 0; i < locations.length; i += 1) { + var li = document.createElement('li'), + divLabel = document.createElement('div'), + address = locations[i].location.address, + content = '' + address.label + '
'; + position = { + lat: locations[i].location.displayPosition.latitude, + lng: locations[i].location.displayPosition.longitude + }; + + content += 'houseNumber: ' + address.houseNumber + '
'; + content += 'street: ' + address.street + '
'; + content += 'district: ' + address.district + '
'; + content += 'city: ' + address.city + '
'; + content += 'postalCode: ' + address.postalCode + '
'; + content += 'county: ' + address.county + '
'; + content += 'country: ' + address.country + '
'; + content += '
position: ' + + Math.abs(position.lat.toFixed(4)) + ((position.lat > 0) ? 'N' : 'S') + + ' ' + Math.abs(position.lng.toFixed(4)) + ((position.lng > 0) ? 'E' : 'W'); + + divLabel.innerHTML = content; + li.appendChild(divLabel); + + nodeOL.appendChild(li); + } + + locationsContainer.appendChild(nodeOL); +} + + +/** + * Creates a series of H.map.Markers for each location found, and adds it to the map. + * @param {Object[]} locations An array of locations as received from the + * H.service.GeocodingService + */ +function addLocationsToMap(locations){ + var group = new H.map.Group(), + position, + i; + + // Add a marker for each location found + for (i = 0; i < locations.length; i += 1) { + position = { + lat: locations[i].location.displayPosition.latitude, + lng: locations[i].location.displayPosition.longitude + }; + marker = new H.map.Marker(position); + marker.label = locations[i].location.address.label; + group.addObject(marker); + } + + group.addEventListener('tap', function (evt) { + map.setCenter(evt.target.getPosition()); + openBubble( + evt.target.getPosition(), evt.target.label); + }, false); + + // Add the locations group to the map + map.addObject(group); + map.setViewBounds(group.getBounds()); +} + +// Now use the map as required... +geocode(platform); diff --git a/get-place-details/index.html b/get-place-details/index.html new file mode 100644 index 0000000..af322ad --- /dev/null +++ b/get-place-details/index.html @@ -0,0 +1,22 @@ + + + + + + + Detailed Place Information + + + + + + + + +

Detailed Place Information

+

This example searches for places to eat (i.e. within the eat-drink category) close to the Chinatown district of San Francisco (37.7942°N,-122.4070°W). The response contains places links and those links are rendered on the map as markers. All Places API's Search & Discovery entrypoints return place links with a function for easy access to place details. On place link click, user triggers this function and returns place details inside a panel. For more information about place details responses visit Places API Documentation.

+
+
+ + + diff --git a/get-place-details/js/app.js b/get-place-details/js/app.js new file mode 100644 index 0000000..54412cb --- /dev/null +++ b/get-place-details/js/app.js @@ -0,0 +1,299 @@ +/** + * This example searches for places to eat in the Chinatown district of San Francisco + * (37.7942N, 122.4070W). The response contains places links and those links are rendered + * on the map as markers. + * + * When a marker is clicked, the user triggers the follow function and full place details + * are displayed in the panel on the right. + * + * Note that the places module https://js.api.here.com/v3/3.0/mapsjs-places.js + * must be loaded to use the Places API endpoints + * + * A full list of available request parameters can be found in the Places API documentation. + * see: http://developer.here.com/rest-apis/documentation/places/topics_api/resource-explore.html + * + * @param {H.service.Platform} platform A stub class to access HERE services + */ +function exploreRequest(platform) { + var explore = new H.places.Explore(platform.getPlacesService()); + var params = { + 'cat': 'eat-drink', + 'in': '37.7942,-122.4070;r=500' + }; + + explore.request(params, {}, onResult, onError); +} + + +/** + * This function will be called once the Explore request provides a response + * @param {Object} result A JSONP object representing result of Explore request + * + * see: http://developer.here.com/rest-apis/documentation/places/topics_api/media-type-search.html + */ +function onResult(result) { + addPlaceLinksToMap(result.results.items); + addPlacesToPanel(result.results.items); +} + + +/** + * This function will be called once user clicks on the marker + * @param {Object} placeLink A JSONP object representing place link + * + * see: http://developer.here.com/rest-apis/documentation/places/topics_api/object-link.html#place-link + */ +function onPlaceDetailLinkClick(placeLink) { + /* + * Follow method on place link is used to create new request that will fetch + * additional place details. + */ + placeLink.follow(onPlaceDetailResult, onError); +} + + +/** + * This function will be called once the follow method provides a place details response + * @param {Object} placeDetails A JSONP object representing the place details + * + * see: http://developer.here.com/rest-apis/documentation/places/topics_api/media-type-place.html + * + */ +function onPlaceDetailResult(placeDetails) { + + /* + * The styling of the place response on the map is entirely under the developer's control. + * A representitive styling can be found the full JS + HTML code of this example + * in the functions below: + */ + showPlaceDetailsInPanel(placeDetails); + // ... etc. +} + + +/** + * Boilerplate map initialization code starts below: + */ + +/** + * This function will be called in case some of the request towards Places API return + * something other then HTTP status 200 + * @param {Object} data A JSONP object representing the place details + * + * see: http://developer.here.com/rest-apis/documentation/places/topics_api/object-error.html + */ +function onError(data) { + error = data; +} + + +//initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useHTTPS: true, + useCIT: true +}); + + +//creating map layers +var defaultLayers = platform.createDefaultLayers(); + + +// set up containers for the map + panel +var mapContainer = document.getElementById('map'), + placeDetailsContainer = document.getElementById('panel'); + +//initialize a map - this map is centered over San Francisco +var map = new H.Map(mapContainer, + defaultLayers.normal.map, { + center: {lat: 37.7942, lng: -122.4070}, + zoom: 15 + }); + +//add map behavior +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + + +//create the default UI components +var ui = H.ui.UI.createDefault(map, defaultLayers); + + +//creates a group that contains all places shown +var group = new H.map.Group(); + + +//add 'tap' event listener, that opens info bubble, to the group +group.addEventListener('tap', function (evt) { + updateMarkerSelection(evt.target); + onPlaceDetailLinkClick(evt.target.getData()); +}, false); + +//holder for the error +var error; + +// Hold a reference to any infobubble opened +var bubble; + +// holder of current resultItems +var resultItems; + +/** + * Renders place details inside a panel + * @param {Object} placeDetail JSONP containing place details + */ +function showPlaceDetailsInPanel(placeDetail) { + var content = '

' + placeDetail.name + + '

' + placeDetail.location.address.text + '
'; + + if (placeDetail.media) { + content += addEditorials(placeDetail.media.editorials); + content += addImages(placeDetail.media.images); + } + + if (placeDetail.contacts) { + content += 'Contacts
'; + content += addContact(placeDetail.contacts.fax); + content += addContact(placeDetail.contacts.phone); + content += addContact(placeDetail.contacts.website); + } + content += '
'; + + placeDetailsContainer.innerHTML = content; + +} + + +/** + * Obtains the contact information about a place. + * @param {Contact} contact Contact information for a place + * + * see: http://developer.here.com/rest-apis/documentation/places/topics_api/object-contacts.html + */ +function addContact(contact) { + return (contact && contact.length ) ? + contact[0].label + ': ' + contact[0].value + '
' : ''; +} + + +/** + * Obtains the first editorial of a place if it exists. + * @param {Editorial[]} editorials Editorial descriptions about the place + * + * see: http://developer.here.com/rest-apis/documentation/places/topics_api/object-media.html#place-editorial + */ +function addEditorials(editorials) { + return (editorials && editorials.items.length ) ? + '
' + editorials.items[0].description + '
' + editorials.items[0].attribution + '
' : ''; +} + + +/** + * Obtains the first image of a place if it exists. + * @param {[Image[]} images Images of a place. + * + * see: http://developer.here.com/rest-apis/documentation/places/topics_api/media-type-image.html + */ +function addImages(images) { + return (images && images.items.length ) ? + '

' + images.items[0].attribution + '
' : ''; +} + + +/** + * Adds place links to the map using their location position + * @param {Array} placeLinks A JSONP object representing the list of place Links + * + */ +function addPlaceLinksToMap(placeLinks) { + resultItems = placeLinks; + map.addObject(group); + var markers = placeLinks.map(function (place) { + return createMarker(place, blueIcon); + }); + markers.forEach(function (marker) { + group.addObject(marker); + }); +} + +/** + * Creates a series of list items for each location found, and adds it to the panel. + * @param {Object[]} locations An array of locations as received from the + * H.service.GeocodingService + */ +function addPlacesToPanel(places){ + + var divInstruction = document.createElement('div'), + nodeOL = document.createElement('ul'), + i; + + nodeOL.style.fontSize = 'small'; + nodeOL.style.marginLeft ='5%'; + nodeOL.style.marginRight ='5%'; + + divInstruction.innerHTML = 'Click on a marker for more details.'; + + for (i = 0; i < places.length; i += 1) { + var li = document.createElement('li'), + divLabel = document.createElement('div'), + content = '' + places[i].title + ''; + content += ' (' + places[i].category.title + ')
'; + + divLabel.innerHTML = content; + li.appendChild(divLabel); + nodeOL.appendChild(li); + } + + placeDetailsContainer.appendChild(divInstruction); + placeDetailsContainer.appendChild(nodeOL); +} + + + + +/*Creating a svg icon used for displaying marker*/ +var svgIcon = ' ' + + ' ' + + '' + + '' + + '' + + ''; + +var redIcon = new H.map.Icon(svgIcon.replace('${FILL}', 'red')); + +var blueIcon = new H.map.Icon(svgIcon.replace('${FILL}', '#007fff')); + +var activeMarker; + + +/** + * This function will be called for crating marker with based on passed place position. + * + * @param {Object} placeLink A JSONP object representing the place link + * @param {H.map.Icon} icon svg representation of marker + */ +function createMarker(placeLink, icon) { + var marker = new H.map.Marker({lat: placeLink.position[0], lng: placeLink.position[1]}, {icon: icon}); + //data is valude that marker can hold. we save whole place so we can latter get + //follow function when we click on it + return marker.setData(placeLink); +} + + +/** + * This function update marker selection + * + * @param {Object} marker + */ +function updateMarkerSelection(marker) { + if (activeMarker) { + // return to unselected marker + group.addObject(createMarker(activeMarker.getData(), blueIcon)); + group.removeObject(activeMarker); + } + activeMarker = createMarker(marker.getData(), redIcon); + group.addObject(activeMarker); + group.removeObject(marker); +} + +exploreRequest(platform); \ No newline at end of file diff --git a/get-place-details/places.jpg b/get-place-details/places.jpg new file mode 100644 index 0000000..1d4d59e Binary files /dev/null and b/get-place-details/places.jpg differ diff --git a/ground-overlay/divided-berlin.png b/ground-overlay/divided-berlin.png new file mode 100644 index 0000000..b7f5c00 Binary files /dev/null and b/ground-overlay/divided-berlin.png differ diff --git a/ground-overlay/img/berlin-sector.png b/ground-overlay/img/berlin-sector.png new file mode 100644 index 0000000..fd841ea Binary files /dev/null and b/ground-overlay/img/berlin-sector.png differ diff --git a/ground-overlay/index.html b/ground-overlay/index.html new file mode 100644 index 0000000..26bdd5b --- /dev/null +++ b/ground-overlay/index.html @@ -0,0 +1,20 @@ + + + + + + + Adding a Ground Overlay to the Map + + + + + + + +

Adding a Ground Overlay to the Map

+

This example adds a ground overlay, which displays an image showing the allied occupation sectors in Berlin after the Second World War, with the image stretched across a specified geographic area.

+
+ + + diff --git a/ground-overlay/js/app.js b/ground-overlay/js/app.js new file mode 100644 index 0000000..21fc800 --- /dev/null +++ b/ground-overlay/js/app.js @@ -0,0 +1,78 @@ + +/** + * Displays an image showing the allied occupation sectors in Berlin + * after the Second World War, + * + * @param {H.Map} map A HERE Map instance within the application + * + */ +function addGroundOverlay(map){ + + // This is the location of the ground overlay - i.e. the city of Berlin. + var berlinBounds = new H.geo.Rect(52.687, 13.06, 52.328, 13.78), + // Create an image node in the DOM to be used + image = document.createElement('img'); + + image.style.position = "absolute"; + image.style.opacity = "0.8"; + image.src = './img/berlin-sector.png'; // This is the image itself + + // this function updates the image whenever something changes + updateOverlay = function() { + // project the rectangle's geo-coords to screen space + var topLeft = map.geoToScreen(berlinBounds.getTopLeft()), + bottomRight = map.geoToScreen(berlinBounds.getBottomRight()), + offsetX = topLeft.x, + offsetY = topLeft.y, + width = bottomRight.x - topLeft.x, + height = bottomRight.y - topLeft.y; + + // set image position and size + image.style.top = offsetY + "px"; + image.style.left = offsetX + "px"; + image.style.width = width + "px"; + image.style.height = height + "px"; + }; + + // append the DOM element to the map + map.getViewPort().element.appendChild(image); + + // update whenever viewport or viewmodel changes + map.getViewPort().addEventListener('sync', updateOverlay); + map.getViewModel().addEventListener('sync', updateOverlay); + + // zoom to rectangle (just to get the overlay nicely into view) + map.setViewBounds(berlinBounds); +} + +/** + * Boilerplate map initialization code starts below: + */ + +//Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +//Step 2: initialize a map - this map is centered over Berlin +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map,{ + center: {lat:52.5159, lng:13.3777}, + zoom: 12 +}); + + + +//Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Step 4: Create the default UI: +var ui = H.ui.UI.createDefault(map, defaultLayers, 'en-US'); + +addGroundOverlay(map); \ No newline at end of file diff --git a/identify-places-at-location/index.html b/identify-places-at-location/index.html new file mode 100644 index 0000000..5f3f069 --- /dev/null +++ b/identify-places-at-location/index.html @@ -0,0 +1,22 @@ + + + + + + + Explore Nearby Places + + + + + + + + +

Explore Nearby Places

+

This example identifies places close to a location in the Chinatown district of San Francisco (37.7942°N,-122.4070°W). For this purpose we are using the here Entrypoint, one of Places API entrypoints, that helps users identify places at a specified location or at a point selected on a map. The results returned included places close to a given point, sorted by distance. For more information on possible parameters and options regarding this entrypoint visit Here Entrypoint Places API documentation.

+
+
+ + + diff --git a/identify-places-at-location/js/app.js b/identify-places-at-location/js/app.js new file mode 100644 index 0000000..deede81 --- /dev/null +++ b/identify-places-at-location/js/app.js @@ -0,0 +1,171 @@ + + +/** + * This example identifies places close to a location in the Chinatown + * district of San Francisco (37.7942N, 122.4070W) + * using the here Entrypoint, one of the Places API entrypoints. + * + * A full list of available request parameters can be found in the Places API documentation. + * see: http://developer.here.com/rest-apis/documentation/places/topics_api/resource-here.html + * + * Note that the places module https://js.api.here.com/v3/3.0/mapsjs-places.js + * must be loaded to use the Places API endpoints + * + * @param {H.service.Platform} platform A stub class to access HERE services + */ +function placesNearby(platform) { + var here = new H.places.Here(platform.getPlacesService()); + // List of parameters passed to the Explore entrypoint + var params = { + 'at': '37.7942,-122.4070' + }; + // Creating a here request with parameters and callbacks + here.request(params, {}, onResult, onError); +} + + +/** + * This function will be called once the Places REST API provides a response + * @param {Object} result A JSONP object representing the location(s) found. + * + * see: http://developer.here.com/rest-apis/documentation/places/topics_api/media-type-search.html + */ +function onResult(result) { + var places = result.results.items; + /* + * The styling of the places response on the map is entirely under the developer's control. + * A representative styling can be found the full JS + HTML code of this example + * in the functions below: + */ + addPlacesToMap(places); + addPlacesToPanel(places); +} + + +/** + * Boilerplate map initialization code starts below: + */ + + +/** + * This function will be called if a communication error occurs during the JSON-P request + * @param {Object} error The error message received. + * + * see: http://developer.here.com/rest-apis/documentation/places/topics_api/object-error.html + */ +function onError(error) { + error = data; +} + + +// 1. initialize platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useHTTPS: true, + useCIT: true +}); + + +// Hold a reference to any infobubble opened +var bubble; + +/** + * Opens/Closes a infobubble + * @param {H.geo.Point} position The location on the map. + * @param {String} text The contents of the infobubble. + */ +function openBubble(position, text){ + if(!bubble){ + bubble = new H.ui.InfoBubble( + position, + // The FO property holds the province name. + {content: text}); + ui.addBubble(bubble); + } else { + bubble.setPosition(position); + bubble.setContent(text); + bubble.open(); + } +} + + +/** + * Creates a series of clickable markers for each place found and adds it to the map. + * @param {Object[]} places An array of places as received from the H.service.getPlacesService + */ +function addPlacesToMap(places) { + var group = new H.map.Group(); + // add 'tap' event listener, that opens info bubble, to the group + group.addEventListener('tap', function (evt) { + map.setCenter(evt.target.getPosition()); + openBubble( + evt.target.getPosition(), evt.target.content); + }, false); + + group.addObjects(places.map(function (place) { + var marker = new H.map.Marker({lat: place.position[0], lng: place.position[1]}) + marker.content = '

' + place.title + + '

' + place.category.title + '

' + place.vicinity + '
'; + return marker; + })); + + map.addObject(group); + + // get geo bounding box for the group and set it to the map + map.setViewBounds(group.getBounds()); +} + +/** + * Creates a series of list items for each location found, and adds it to the panel. + * @param {Object[]} locations An array of locations as received from the + * H.service.GeocodingService + */ +function addPlacesToPanel(places){ + + var nodeOL = document.createElement('ul'), + i; + + nodeOL.style.fontSize = 'small'; + nodeOL.style.marginLeft ='5%'; + nodeOL.style.marginRight ='5%'; + + + for (i = 0; i < places.length; i += 1) { + var li = document.createElement('li'), + divLabel = document.createElement('div'), + content = '' + places[i].title + ''; + content += ' (' + places[i].category.title + ')
'; + content += places[i].vicinity + '
'; + content += 'distance:' + places[i].distance + 'm
'; + + divLabel.innerHTML = content; + li.appendChild(divLabel); + nodeOL.appendChild(li); + } + + placesContainer.appendChild(nodeOL); +} + + +var defaultLayers = platform.createDefaultLayers(); + + +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map, { + center: {lat: -37.7942, lng: -122.4070}, + zoom: 15 + }); + +var placesContainer = document.getElementById('panel'); + +// add map behavior +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Create the default UI components +var ui = H.ui.UI.createDefault(map, defaultLayers); + +placesNearby(platform); + + + diff --git a/identify-places-at-location/places.jpg b/identify-places-at-location/places.jpg new file mode 100644 index 0000000..1d4d59e Binary files /dev/null and b/identify-places-at-location/places.jpg differ diff --git a/map-at-specified-location/index.html b/map-at-specified-location/index.html new file mode 100644 index 0000000..8a5896d --- /dev/null +++ b/map-at-specified-location/index.html @@ -0,0 +1,20 @@ + + + + + + + Map at a specified location + + + + + + + +

Map at a specified location

+

This example displays a movable map initially centered on the Brandenburg Gate in the centre of Berlin (52.5159°N, 13.3777°E)

+
+ + + diff --git a/map-at-specified-location/js/app.js b/map-at-specified-location/js/app.js new file mode 100644 index 0000000..4b1092d --- /dev/null +++ b/map-at-specified-location/js/app.js @@ -0,0 +1,42 @@ + +/** + * Moves the map to display over Berlin + * + * @param {H.Map} map A HERE Map instance within the application + */ +function moveMapToBerlin(map){ + map.setCenter({lat:52.5159, lng:13.3777}); + map.setZoom(14); +} + + + + + +/** + * Boilerplate map initialization code starts below: + */ + +//Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +//Step 2: initialize a map - not specificing a location will give a whole world view. +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map); + +//Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Create the default UI components +var ui = H.ui.UI.createDefault(map, defaultLayers); + +// Now use the map as required... +moveMapToBerlin(map); \ No newline at end of file diff --git a/map-at-specified-location/map-at-location.png b/map-at-specified-location/map-at-location.png new file mode 100644 index 0000000..1448183 Binary files /dev/null and b/map-at-specified-location/map-at-location.png differ diff --git a/map-multi-language-support/index.html b/map-multi-language-support/index.html new file mode 100644 index 0000000..cf2c3a7 --- /dev/null +++ b/map-multi-language-support/index.html @@ -0,0 +1,20 @@ + + + + + + + Multi-language support + + + + + + + +

Multi-language support

+

This example displays a movable map initially centered over Hong Kong (22.2917°N, 114.1872°E) with map labels in simplified Chinese.

+
+ + + diff --git a/map-multi-language-support/js/app.js b/map-multi-language-support/js/app.js new file mode 100644 index 0000000..58203b4 --- /dev/null +++ b/map-multi-language-support/js/app.js @@ -0,0 +1,62 @@ + +/** + * Switches the map language to simplified Chinese + * + * @param {H.Map} map A HERE Map instance within the application + * @pama {H.service.Platform} platform A stub class to access HERE services + */ +function switchMapLanguage(map, platform){ + var mapTileService = platform.getMapTileService({ + type: 'base' + }), + // Our layer will load tiles from the HERE Map Tile API + chineseMapLayer = mapTileService.createTileLayer( + 'maptile', + 'normal.day', + 256, + 'png8', + {lg: 'CHI'} + ); + map.setBaseLayer(chineseMapLayer); + + // Display default UI components on the map and change default + // language to simplified Chinese. + // Besides supported language codes you can also specify your custom translation + // using H.ui.i18n.Localization. + var ui = H.ui.UI.createDefault(map, defaultLayers, 'zh-CN'); + + // Remove not needed settings control + ui.removeControl('mapsettings'); +} + + + + + +/** + * Boilerplate map initialization code starts below: + */ + +//Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +//Step 2: initialize a map - this map is centered over Hong Kong. +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map,{ + center: {lat:22.2783, lng:114.1588}, + zoom: 12 +}); + +//Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Now use the map as required... +switchMapLanguage(map , platform); \ No newline at end of file diff --git a/map-multi-language-support/map-multi-language-support.png b/map-multi-language-support/map-multi-language-support.png new file mode 100644 index 0000000..adde1bf Binary files /dev/null and b/map-multi-language-support/map-multi-language-support.png differ diff --git a/map-object-events-displayed/css/log.css b/map-object-events-displayed/css/log.css new file mode 100644 index 0000000..7eeec11 --- /dev/null +++ b/map-object-events-displayed/css/log.css @@ -0,0 +1,20 @@ +.log { + position: absolute; + top: 5px; + left: 5px; + height: 150px; + width: 250px; + overflow: scroll; + background: white; + margin: 0; + padding: 0; + list-style: none; + font-size: 12px; +} +.log-entry { + padding: 5px; + border-bottom: 1px solid #d0d9e9; +} +.log-entry:nth-child(odd) { + background-color: #e1e7f1; +} \ No newline at end of file diff --git a/map-object-events-displayed/img/marker-house.png b/map-object-events-displayed/img/marker-house.png new file mode 100644 index 0000000..58658d5 Binary files /dev/null and b/map-object-events-displayed/img/marker-house.png differ diff --git a/map-object-events-displayed/index.html b/map-object-events-displayed/index.html new file mode 100644 index 0000000..7b7de87 --- /dev/null +++ b/map-object-events-displayed/index.html @@ -0,0 +1,20 @@ + + + + + + + Map Objects Events + + + + + + + +

Map Objects Events

+

This example shows how to attach listeners to pointer events such as pointerup, pointerdown and tap to various map objects.

+
+ + + diff --git a/map-object-events-displayed/js/app.js b/map-object-events-displayed/js/app.js new file mode 100644 index 0000000..1a78f3f --- /dev/null +++ b/map-object-events-displayed/js/app.js @@ -0,0 +1,125 @@ +/** + * Shows how to subscribe to different event type on different map objects + * + * @param {H.Map} map A HERE Map instance within the application + * @param {Function} logEvent Custom function for logging events + */ +function testObjectsEvents(map, logEvent) { + // Let's create the same style for all objects + var style = { + fillColor: 'rgba(35, 51, 129, 0.3)', + lineWidth: 5, + strokeColor: 'rgba(114, 38, 51, 1)' + }; + + // Create a rectangle map object + var rect = new H.map.Rect(new H.geo.Rect( + 51.5072, 0, 48.8567, 2.3508 + ), {style: style}); + + // Create a circle map object + var circle = new H.map.Circle( + new H.geo.Point(52.3667, 4.9000), //center + 198000, // Radius in meters + {style: style} + ); + + // Create a polyline map object + var polyline = new H.map.Polyline(new H.geo.Strip([ + 52.5167, 13.3833, 0, + 50.0833, 14.4167, 0, + 52.2333, 21.0167, 0 + ]), {style: style}); + + // Create a polygon map object + var polygon = new H.map.Polygon(new H.geo.Strip([ + 45.4667, 9.1833, 0, + 48.1333, 11.566, 0, + 50.0800, 8.2400, 0, + ]), {style: style}); + + // Create a standard marker + var standardMarker = new H.map.Marker(new H.geo.Point(48.2000, 16.3667)); + + // Create image marker object + var imageMarker = new H.map.Marker(new H.geo.Point(53.5653, 10.0014), { + icon: new H.map.Icon('img/marker-house.png') + }); + + // Let's give names to our objects and save it as data + rect.setData('Rect'); + circle.setData('Circle'); + polyline.setData('Polyline'); + polygon.setData('Polygon'); + standardMarker.setData('Standard Marker'); + imageMarker.setData('Image Marker'); + + // Now lets add out objects to the container for the conviniece of use + var container = new H.map.Group({ + objects: [rect, circle, polyline, polygon, standardMarker, imageMarker] + }); + + // Subscribe to different events on every object + rect.addEventListener('pointerenter', logEvent); + rect.addEventListener('pointerdown', logEvent); + circle.addEventListener('pointermove', logEvent); + circle.addEventListener('pointerup', logEvent); + polyline.addEventListener('pointermove', logEvent); + polygon.addEventListener('tap', logEvent); + polygon.addEventListener('longpress', logEvent); + standardMarker.addEventListener('tap', logEvent); + standardMarker.addEventListener('pointerleave', logEvent); + imageMarker.addEventListener('pointerenter', logEvent); + imageMarker.addEventListener('pointerleave', logEvent); + imageMarker.addEventListener('dbltap', logEvent); + + // Add all of the above created map objects to the map's object collection + // so they will be rendered onto the map. + map.addObject(container); +} + + +/** + * Boilerplate map initialization code starts below: + */ + +// Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useHTTPS: true, + useCIT: true +}); +var defaultLayers = platform.createDefaultLayers(); + +// Step 2: initialize a map +var map = new H.Map(document.getElementById('map'), defaultLayers.normal.map, { + // initial center and zoom level of the map + center: new H.geo.Point(51, 7), + zoom: 5 +}); + +// Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Step 4: Create the default UI: +var ui = H.ui.UI.createDefault(map, defaultLayers, 'en-US'); + +// Step 5: create custom logging facilities +var logContainer = document.createElement('ul'); +logContainer.className ='log'; +logContainer.innerHTML = '
  • Try clicking on elements
  • '; +map.getElement().appendChild(logContainer); + +// Helper for logging events +function logEvent(evt) { + var entry = document.createElement('li'); + entry.className = 'log-entry'; + entry.textContent = ['event "', evt.type, '" @ '+ evt.target.getData()].join(''); + logContainer.insertBefore(entry, logContainer.firstChild); +} + +// Step 6: main logic goes here +testObjectsEvents(map, logEvent); \ No newline at end of file diff --git a/map-object-events-displayed/map-object-events-displayed.jpg b/map-object-events-displayed/map-object-events-displayed.jpg new file mode 100644 index 0000000..ba059a6 Binary files /dev/null and b/map-object-events-displayed/map-object-events-displayed.jpg differ diff --git a/map-objects-event-delegation/css/log.css b/map-objects-event-delegation/css/log.css new file mode 100644 index 0000000..7eeec11 --- /dev/null +++ b/map-objects-event-delegation/css/log.css @@ -0,0 +1,20 @@ +.log { + position: absolute; + top: 5px; + left: 5px; + height: 150px; + width: 250px; + overflow: scroll; + background: white; + margin: 0; + padding: 0; + list-style: none; + font-size: 12px; +} +.log-entry { + padding: 5px; + border-bottom: 1px solid #d0d9e9; +} +.log-entry:nth-child(odd) { + background-color: #e1e7f1; +} \ No newline at end of file diff --git a/map-objects-event-delegation/index.html b/map-objects-event-delegation/index.html new file mode 100644 index 0000000..715b384 --- /dev/null +++ b/map-objects-event-delegation/index.html @@ -0,0 +1,20 @@ + + + + + + + Map Objects Event Delegation + + + + + + + +

    Map Objects Event Delegation

    +

    This example shows how to use a single function to listen to the tap event across multiple map objects held within the same object container.

    +
    + + + diff --git a/map-objects-event-delegation/js/app.js b/map-objects-event-delegation/js/app.js new file mode 100644 index 0000000..2e022a4 --- /dev/null +++ b/map-objects-event-delegation/js/app.js @@ -0,0 +1,124 @@ +/** + * Shows how to use events delegation in your projects + * + * @param {H.Map} map A HERE Map instance within the application + * @param {Function} customLog Custom function for logging events + */ +function testDelegation(map) { + // We create several markers and other map objects + + // Brandenburger tor in Berlin, Germany + var brandenburgerTorMarker = new H.map.Marker(new H.geo.Point(52.516237, 13.377686)); + + // Fernsehturm in Berlin, Germany + var fernsehturmMarker = new H.map.Marker(new H.geo.Point(52.520816, 13.409417)); + // Circle with Altes Museum in Berlin as its center + var circle = new H.map.Circle( + new H.geo.Point(52.5194, 13.3986), //center + 250, // Radius in meters + { + style: { + fillColor: 'rgba(0, 221, 255, 0.66)', + } + } + ); + + // Polygon containing Alexanderplatz and Fernsehturm in Berlin + var polygon = new H.map.Polygon(new H.geo.Strip([ + 52.51998, 13.40529, 0, + 52.52395, 13.41250, 0, + 52.52197, 13.41590, 0, + 52.51860, 13.40718, 0 + ]), { + style: { + lineWidth: 1, + strokeColor: 'rgba(204, 34, 34, 0.66)', + fillColor: 'rgba(204, 34, 34, 0.66)', + } + }); + + // Purple polyline + var polyline = new H.map.Polyline(new H.geo.Strip([ + 52.521490, 13.387983, 0, + 52.517156, 13.388820, 0, + 52.516960, 13.385730, 0, + 52.515510, 13.386009, 0, + 52.515132, 13.381481, 0, + 52.516333, 13.380806, 0 + ]), { + style: { + strokeColor: 'rgba(34, 34, 204, 0.66)', + lineWidth: 7 + } + }); + + // Let's give names to our objects and save it as data + brandenburgerTorMarker.setData('I am Brandenburger Tor!'); + fernsehturmMarker.setData('I am Fernsehturm'); + circle.setData('I am Circle!'); + polygon.setData('I am Polygon!'); + polyline.setData('I am Polyline!'); + + // We add our newly created makers and objects to the object container + var container = new H.map.Group({ + objects: [brandenburgerTorMarker, fernsehturmMarker, circle, polygon, polyline] + }); + + // Instead of adding an event listener to every marker we are going + // to use event delegation. We install one event handler on the + // container that contains all of the objects. + container.addEventListener('tap', function (evt) { + // Now lets log the event + customLog(evt.target.getData()); + }); + // Let's zoom to our objects by default + map.setViewBounds(container.getBounds()); + // Make objects visible by adding them to the map + map.addObject(container); +} + + +/** + * Boilerplate map initialization code starts below: + */ + +// Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useHTTPS: true, + useCIT: true +}); +var defaultLayers = platform.createDefaultLayers(); + +// Step 2: initialize a map +var map = new H.Map(document.getElementById('map'), defaultLayers.normal.map, { + // initial center and zoom level of the map + center: new H.geo.Point(52.51, 13.4), + zoom: 10 +}); + +// Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Step 4: Create the default UI: +var ui = H.ui.UI.createDefault(map, defaultLayers, 'en-US'); + +// Step 5: create custom logging facilities +var logContainer = document.createElement('ul'); +logContainer.className ='log'; +logContainer.innerHTML = '
  • Try clicking on elements
  • '; +map.getElement().appendChild(logContainer); + +// Helper for logging events +function customLog(log) { + var entry = document.createElement('li'); + entry.className = 'log-entry'; + entry.textContent = log; + logContainer.insertBefore(entry, logContainer.firstChild); +} + +// Step 6: main logic goes here +testDelegation(map, customLog); \ No newline at end of file diff --git a/map-objects-event-delegation/thumb.jpg b/map-objects-event-delegation/thumb.jpg new file mode 100644 index 0000000..f54b057 Binary files /dev/null and b/map-objects-event-delegation/thumb.jpg differ diff --git a/map-scale-bar-changing-from-the-metric-system/index.html b/map-scale-bar-changing-from-the-metric-system/index.html new file mode 100644 index 0000000..a87df61 --- /dev/null +++ b/map-scale-bar-changing-from-the-metric-system/index.html @@ -0,0 +1,20 @@ + + + + + + + Changing from the Metric System + + + + + + + +

    Changing from the Metric System

    +

    This example displays a movable map centered over the business district of Boston (42.3572°N, 71.0596°W). The scale bar of the map is displayed in miles, yards or feet dependent upon the zoom level.

    +
    + + + diff --git a/map-scale-bar-changing-from-the-metric-system/js/app.js b/map-scale-bar-changing-from-the-metric-system/js/app.js new file mode 100644 index 0000000..4a67c82 --- /dev/null +++ b/map-scale-bar-changing-from-the-metric-system/js/app.js @@ -0,0 +1,47 @@ + +/** + * Alters the UI to use imperial measurements. + * + * @param {H.Map} map A HERE Map instance within the application + * @param {Object.} defaultLayers + * an object holding the three default HERE Map types + */ +function useImperialMeasurements(map, defaultLayers){ + // Create the default UI components + var ui = H.ui.UI.createDefault(map, defaultLayers); + + // Set the UI unit system to imperial measurement + ui.setUnitSystem(H.ui.UnitSystem.IMPERIAL); +} + + + + + +/** + * Boilerplate map initialization code starts below: + */ + +//Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +//Step 2: initialize a map - this map is centered over Boston. +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map,{ + center: {lat:42.3572, lng:-71.0596}, + zoom: 14 +}); + +//Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Now use the map as required... +useImperialMeasurements(map, defaultLayers); \ No newline at end of file diff --git a/map-scale-bar-changing-from-the-metric-system/scale-bar-miles.png b/map-scale-bar-changing-from-the-metric-system/scale-bar-miles.png new file mode 100644 index 0000000..13e8b5a Binary files /dev/null and b/map-scale-bar-changing-from-the-metric-system/scale-bar-miles.png differ diff --git a/map-using-view-bounds/index.html b/map-using-view-bounds/index.html new file mode 100644 index 0000000..4d0b710 --- /dev/null +++ b/map-using-view-bounds/index.html @@ -0,0 +1,20 @@ + + + + + + + Map using View Bounds + + + + + + + +

    Map using View Bounds

    +

    This example displays a map of Boston, covering the area from 42.3736°N, 71.0751°W in the North-West corner to 42.3472°N, 71.0408°W in the South-East corner.

    +
    + + + diff --git a/map-using-view-bounds/js/app.js b/map-using-view-bounds/js/app.js new file mode 100644 index 0000000..a57b0f2 --- /dev/null +++ b/map-using-view-bounds/js/app.js @@ -0,0 +1,42 @@ + +/** + * Moves the map to display over Boston using viewBounds + * + * @param {H.Map} map A HERE Map instance within the application + */ +function setMapViewBounds(map){ + var bbox = new H.geo.Rect(42.3736,-71.0751,42.3472,-71.0408); + map.setViewBounds(bbox); +} + + + + + +/** + * Boilerplate map initialization code starts below: + */ + +//Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +//Step 2: initialize a map - not specificing a location will give a whole world view. +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map); + +//Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Create the default UI components +var ui = H.ui.UI.createDefault(map, defaultLayers); + +// Now use the map as required... +setMapViewBounds(map); \ No newline at end of file diff --git a/map-using-view-bounds/map-using-viewbounds.png b/map-using-view-bounds/map-using-viewbounds.png new file mode 100644 index 0000000..3566335 Binary files /dev/null and b/map-using-view-bounds/map-using-viewbounds.png differ diff --git a/map-with-dom-marker/index.html b/map-with-dom-marker/index.html new file mode 100644 index 0000000..36bc41f --- /dev/null +++ b/map-with-dom-marker/index.html @@ -0,0 +1,20 @@ + + + + + + + DOM Marker + + + + + + + +

    DOM Marker

    +

    This example displays a movable map of Chicago with a single marker highlighting the location of Soldier Field (41.8625°N, 87.6166°W), home of the Chicago Bears. Marker displays the letter C in the correct club colors.

    The marker is capable of receiving DOM (Document Object Model) events such as mouseenter, mouseleave etc. The marker will fade if the mouse pointer is placed over it.

    +
    + + + diff --git a/map-with-dom-marker/js/app.js b/map-with-dom-marker/js/app.js new file mode 100644 index 0000000..73484c4 --- /dev/null +++ b/map-with-dom-marker/js/app.js @@ -0,0 +1,99 @@ + +/** + * Create a marker that is capable of receiving DOM events and add it + * to the map. + * + * @param {H.Map} map A HERE Map instance within the application + */ +function addDomMarker(map) { + var outerElement = document.createElement('div'), + innerElement = document.createElement('div'); + + outerElement.style.userSelect = 'none'; + outerElement.style.webkitUserSelect = 'none'; + outerElement.style.msUserSelect = 'none'; + outerElement.style.mozUserSelect = 'none'; + outerElement.style.cursor = 'default'; + + innerElement.style.color = 'red'; + innerElement.style.backgroundColor = 'blue'; + innerElement.style.border = '2px solid black'; + innerElement.style.font = 'normal 12px arial'; + innerElement.style.lineHeight = '12px' + + innerElement.style.paddingTop = '2px'; + innerElement.style.paddingLeft = '4px'; + innerElement.style.width = '20px'; + innerElement.style.height = '20px'; + + // add negative margin to inner element + // to move the anchor to center of the div + innerElement.style.marginTop = '-10px'; + innerElement.style.marginLeft = '-10px'; + + outerElement.appendChild(innerElement); + + // Add text to the DOM element + innerElement.innerHTML = 'C'; + + function changeOpacity(evt) { + evt.target.style.opacity = 0.6; + }; + + function changeOpacityToOne(evt) { + evt.target.style.opacity = 1; + }; + + //create dom icon and add/remove opacity listeners + var domIcon = new H.map.DomIcon(outerElement, { + // the function is called every time marker enters the viewport + onAttach: function(clonedElement, domIcon, domMarker) { + clonedElement.addEventListener('mouseover', changeOpacity); + clonedElement.addEventListener('mouseout', changeOpacityToOne); + }, + // the function is called every time marker leaves the viewport + onDetach: function(clonedElement, domIcon, domMarker) { + clonedElement.removeEventListener('mouseover', changeOpacity); + clonedElement.removeEventListener('mouseout', changeOpacityToOne); + } + }); + + // Marker for Chicago Bears home + var bearsMarker = new H.map.DomMarker({lat: 41.8625, lng: -87.6166}, { + icon: domIcon + }); + map.addObject(bearsMarker); +} + + + + + +/** + * Boilerplate map initialization code starts below: + */ + +//Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +//Step 2: initialize a map - this map is centered over Chicago. +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map,{ + center: {lat:41.881944, lng:-87.627778}, + zoom: 11 +}); + +//Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + + +// Now use the map as required... +addDomMarker(map); \ No newline at end of file diff --git a/map-with-dom-marker/thumb.jpg b/map-with-dom-marker/thumb.jpg new file mode 100644 index 0000000..4ad61c1 Binary files /dev/null and b/map-with-dom-marker/thumb.jpg differ diff --git a/map-with-interactive-kml-objects/data/sxf.kml b/map-with-interactive-kml-objects/data/sxf.kml new file mode 100644 index 0000000..b15e11a --- /dev/null +++ b/map-with-interactive-kml-objects/data/sxf.kml @@ -0,0 +1,489 @@ + + + + Berlin-Schönefeld + + + + + + Berlin-Schönefeld + Flughafen, 12529, Schönefeld, Germany + #globalStyles + + 13.505812,52.375318,0 + + + + + + Surroundings near main runway + + + + Airport building near runway + #globalStyles + + + + + + 13.481522,52.365572 + 13.481951,52.365100 + 13.481694,52.364471 + 13.482552,52.363161 + 13.484441,52.363632 + 13.484355,52.363999 + 13.485299,52.364261 + 13.484913,52.364641 + 13.484612,52.364589 + 13.484462,52.364851 + 13.492745,52.366960 + 13.492423,52.367314 + 13.484205,52.365401 + 13.483475,52.366069 + 13.482917,52.365899 + 13.483142,52.365552 + 13.482949,52.365198 + 13.482466,52.365368 + 13.482166,52.365663 + + + + + + + + + Taxiing path N1 + + + + + + 13.492809,52.367000 + 13.501650,52.369070 + 13.501306,52.369594 + 13.500491,52.369987 + 13.499075,52.368886 + 13.494869,52.368074 + 13.494054,52.368441 + 13.492637,52.367367 + + + + + + + + + Taxiing path N2 + + + + + + 13.513070,52.372954 + 13.515237,52.372784 + 13.518735,52.373674 + 13.518649,52.374094 + 13.516696,52.374329 + 13.514057,52.374290 + 13.515688,52.374762 + 13.521589,52.374238 + 13.525494,52.375168 + 13.526503,52.375653 + 13.526374,52.377238 + 13.526500,52.375651 + 13.526103,52.376489 + 13.526060,52.376457 + 13.525744,52.376499 + 13.525819,52.376761 + 13.525175,52.376971 + 13.526374,52.377236 + 13.527039,52.376190 + 13.527683,52.375823 + 13.529829,52.376281 + 13.529678,52.377958 + 13.530429,52.378154 + 13.531116,52.377224 + 13.531202,52.376792 + 13.530923,52.376347 + 13.529228,52.375142 + 13.528992,52.374644 + 13.527018,52.374251 + 13.526889,52.374565 + 13.527018,52.374696 + 13.526910,52.374853 + 13.521868,52.373897 + 13.520881,52.373426 + 13.521117,52.372902 + 13.520366,52.372757 + 13.520065,52.373203 + 13.519379,52.373281 + 13.518756,52.373177 + 13.501676,52.369063 + 13.501376,52.369561 + 13.501971,52.369522 + 13.512013,52.371906 + 13.512829,52.372325 + 13.512142,52.372666 + 13.508022,52.372849 + 13.509696,52.373242 + + + + + + + + + Taxiing path N3 + + + + 13.494397,52.368467 13.496285,52.369882 + + + + + + + Taxiing path N4 + + + + 13.503280,52.371795, 13.500748,52.369882 + + + + + + + Runway + #globalStyles + + + 1 + 13.480122,52.366528 13.531041,52.378607 + + + + + + + Airport Terminals + + Schönefeld Terminal A + #terminalA + + + + + + 13.519812,52.388373 + 13.520453,52.388528 + 13.520828,52.388612 + 13.521212,52.388694 + 13.521236,52.388718 + 13.521252,52.388757 + 13.521250,52.388828 + 13.521043,52.388820 + 13.521032,52.388831 + 13.520898,52.388800 + 13.520922,52.388774 + 13.520389,52.388638 + 13.520383,52.388648 + 13.519737,52.388489 + + + + + + + + + 13.520908,52.390065 + 13.520865,52.390064 + 13.520865,52.390060 + 13.520854,52.390057 + 13.520854,52.390052 + 13.520867,52.390051 + 13.521028,52.388833 + 13.521044,52.388821 + 13.521251,52.388826 + 13.521232,52.388965 + 13.521243,52.388970 + 13.521232,52.389000 + 13.521221,52.389001 + 13.521162,52.389416 + 13.521170,52.389422 + 13.521168,52.389470 + 13.521160,52.389474 + 13.521074,52.390075 + 13.520916,52.390069 + 13.520908,52.390062 + 13.520865,52.390062 + + + + + + + + + 13.519623,52.388884 + 13.519542,52.388866 + 13.519596,52.388779 + 13.519682,52.388799 + 13.519800,52.388632 + 13.519883,52.388643 + 13.519950,52.388563 + 13.519996,52.388571 + 13.519977,52.388611 + 13.520127,52.388648 + 13.520100,52.388691 + 13.520130,52.388702 + 13.520159,52.388648 + 13.520419,52.388716 + 13.520393,52.388758 + 13.520629,52.388820 + 13.520422,52.389138 + 13.519599,52.388940 + 13.519625,52.388889 + 13.519537,52.388869 + + + + + + + + Schönefeld Terminal D + + + + + + 13.518208,52.388608 + 13.518184,52.388643 + 13.518125,52.388623 + 13.518146,52.388590 + 13.518135,52.388587 + 13.518468,52.388065 + 13.519812,52.388371 + 13.519474,52.388901 + + + + + + + Schönefeld Terminal C + + + + + + 13.517449,52.387945 + 13.517484,52.387878 + 13.517767,52.387942 + 13.517798,52.387898 + 13.518066,52.387963 + 13.518035,52.388018 + 13.518386,52.388100 + 13.518417,52.388052 + 13.518468,52.388066 + 13.518397,52.388175 + 13.517452,52.387947 + + + + + + + Schönefeld Terminal B + + + + + + 13.520597,52.388871 + 13.520660,52.388884 + 13.520674,52.388869 + 13.520706,52.388874 + 13.520707,52.388883 + 13.520748,52.388892 + 13.520753,52.388888 + 13.520876,52.388917 + 13.520879,52.388923 + 13.520919,52.388933 + 13.520925,52.388928 + 13.520937,52.388932 + 13.520942,52.388943 + 13.520811,52.389153 + 13.520549,52.389087 + 13.520636,52.388950 + 13.520557,52.388930 + + + + + + + + diff --git a/map-with-interactive-kml-objects/img/terminal-a.jpg b/map-with-interactive-kml-objects/img/terminal-a.jpg new file mode 100644 index 0000000..af576c2 Binary files /dev/null and b/map-with-interactive-kml-objects/img/terminal-a.jpg differ diff --git a/map-with-interactive-kml-objects/img/terminal-d.jpg b/map-with-interactive-kml-objects/img/terminal-d.jpg new file mode 100644 index 0000000..2c5f64f Binary files /dev/null and b/map-with-interactive-kml-objects/img/terminal-d.jpg differ diff --git a/map-with-interactive-kml-objects/index.html b/map-with-interactive-kml-objects/index.html new file mode 100644 index 0000000..12551e5 --- /dev/null +++ b/map-with-interactive-kml-objects/index.html @@ -0,0 +1,21 @@ + + + + + + + Display Interactive KML Objects + + + + + + + + +

    Display Interactive KML Objects

    +

    This example shows a map highlighting locations around Berlin Schönefeld Airport. The data to display on the map has been read in from a KML file and loaded using the built-in KML parser. The parsed KML objects are interactive - clicking on the airport terminals reveals more information about them.

    +
    + + + diff --git a/map-with-interactive-kml-objects/js/app.js b/map-with-interactive-kml-objects/js/app.js new file mode 100644 index 0000000..418e8b9 --- /dev/null +++ b/map-with-interactive-kml-objects/js/app.js @@ -0,0 +1,142 @@ +/** + * Display interactive map with objects loaded from a KML file + * + * Note that the maps data module http://js.api.here.com/v3/3.0/mapsjs-data.js + * must be loaded for KML parsing to occcur + * + * @param {H.Map} map A HERE Map instance within the application + * @param {H.ui.UI} ui Default ui component + * @param {Function} renderControls Custom non-api function for rendering control buttons + */ +function renderSchoenefeldAirport(map, ui, renderControls) { + // Create a reader object, that will load data from a KML file + var reader = new H.data.kml.Reader('data/sxf.kml'); + + // Request document parsing. Parsing is an asynchronous operation. + reader.parse(); + + reader.addEventListener('statechange', function () { + // Wait till the KML document is fully loaded and parsed + if (this.getState() === H.data.AbstractReader.State.READY) { + var parsedObjects = reader.getParsedObjects(); + // Create a group from our objects to easily zoom to them + var container = new H.map.Group({objects: parsedObjects}); + + // First loaded object is a group of objects describing terminals. + // So let's zoom to them by default + map.setViewBounds(parsedObjects[0].getBounds()); + + // Render buttons for zooming into parts of the airport. + // Function is not a part of API. Scroll to the bottom to see the source. + renderControls({ + // Key is a button label and value is an click/tap callback + 'Zoom to the terminals': function () { + // First loaded object is a group of objects describing terminals + map.setViewBounds(parsedObjects[0].getBounds(), true); + }, + 'Zoom to runway': function () { + // Second loaded object is a group of objects describing the runway + map.setViewBounds(parsedObjects[1].getBounds(), true); + }, + 'View All': function () { + map.setViewBounds(container.getBounds(), true); + } + }); + + // Let's make kml ballon visible by tap on its owner + // Notice how we are using event delegation for it + container.addEventListener('tap', function (evt) { + var target = evt.target, position; + + // We need to calculated a position for our baloon + if (target instanceof H.map.Polygon || target instanceof H.map.Polyline) { + position = target.getBounds().getCenter(); + } else if (target instanceof H.map.Marker) { + position = target.getPosition(); + } + if (position) { + // Let's use out custom (non-api) function for displaying a baloon + showKMLBallon(position, target.getData()); + } + }); + + // Make objects visible by adding them to the map + map.addObject(container); + } + }); +} + + +/** + * Boilerplate map initialization code starts below: + */ + +// Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useHTTPS: true, + useCIT: true +}); +var defaultLayers = platform.createDefaultLayers(); + +// Step 2: initialize a map +// Please note, that default layer is set to satellite mode +var map = new H.Map(document.getElementById('map'), defaultLayers.satellite.map, { + zoom: 1 +}); + +// Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Template function for our controls +function renderControls(buttons) { + var containerNode = document.createElement('div'); + containerNode.setAttribute('style', 'position:absolute;top:0;left:0;background-color:#fff; padding:10px;'); + containerNode.className = "btn-group"; + + Object.keys(buttons).forEach(function (label) { + var input = document.createElement('input'); + input.value = label; + input.type = 'button'; + input.onclick = buttons[label]; + input.className="btn btn-sm btn-default" + containerNode.appendChild(input); + }); + + map.getElement().appendChild(containerNode); +} + +function showKMLBallon(position, data) { + var content = data.balloonStyle.text; + if (content) { + // Styling of the balloon text. + // The only supported wilde cards are $[text] and $[description]. + content = content + .replace('$[name]', data.name || '') + .replace('$[description]', data.description || ''); + + // Note how we are caching our infoBubble instance + // We create InfoBubble object only once and then reuse it + var bubble = showKMLBallon.infoBubble; + if (!bubble) { + bubble = new H.ui.InfoBubble(position, {content: content}); + ui.addBubble(bubble); + bubble.getContentElement().style.marginRight = "-24px"; + // Cache our instance for future use + showKMLBallon.infoBubble = bubble; + } else { + bubble.setPosition(position); + bubble.setContent(content); + bubble.open(); + } + } +} + +// Step 4: create the default UI component, for displaying bubbles +var ui = H.ui.UI.createDefault(map, defaultLayers); + +// Step 5: main logic goes here +renderSchoenefeldAirport(map, ui, renderControls); \ No newline at end of file diff --git a/map-with-interactive-kml-objects/thumb.jpg b/map-with-interactive-kml-objects/thumb.jpg new file mode 100644 index 0000000..90c36d7 Binary files /dev/null and b/map-with-interactive-kml-objects/thumb.jpg differ diff --git a/map-with-pedestrian-route-from-a-to-b/css/routing.css b/map-with-pedestrian-route-from-a-to-b/css/routing.css new file mode 100644 index 0000000..4bdfc8d --- /dev/null +++ b/map-with-pedestrian-route-from-a-to-b/css/routing.css @@ -0,0 +1,148 @@ +.directions li span.arrow { + display:inline-block; + min-width:28px; + min-height:28px; + background-position:0px; + background-image: url("../img/arrows.png"); + position:relative; + top:8px; +} +.directions li span.depart { + background-position:-28px; +} +.directions li span.rightUTurn { + background-position:-56px; +} +.directions li span.leftUTurn { + background-position:-84px; +} +.directions li span.rightFork { + background-position:-112px; +} +.directions li span.leftFork { + background-position:-140px; +} +.directions li span.rightMerge { + background-position:-112px; +} +.directions li span.leftMerge { + background-position:-140px; +} +.directions li span.slightRightTurn { + background-position:-168px; +} +.directions li span.slightLeftTurn{ + background-position:-196px; +} +.directions li span.rightTurn { + background-position:-224px; +} +.directions li span.leftTurn{ + background-position:-252px; +} +.directions li span.sharpRightTurn { + background-position:-280px; +} +.directions li span.sharpLeftTurn{ + background-position:-308px; +} +.directions li span.rightRoundaboutExit1 { + background-position:-616px; +} +.directions li span.rightRoundaboutExit2 { + background-position:-644px; +} + +.directions li span.rightRoundaboutExit3 { + background-position:-672px; +} + +.directions li span.rightRoundaboutExit4 { + background-position:-700px; +} + +.directions li span.rightRoundaboutPass { + background-position:-700px; +} + +.directions li span.rightRoundaboutExit5 { + background-position:-728px; +} +.directions li span.rightRoundaboutExit6 { + background-position:-756px; +} +.directions li span.rightRoundaboutExit7 { + background-position:-784px; +} +.directions li span.rightRoundaboutExit8 { + background-position:-812px; +} +.directions li span.rightRoundaboutExit9 { + background-position:-840px; +} +.directions li span.rightRoundaboutExit10 { + background-position:-868px; +} +.directions li span.rightRoundaboutExit11 { + background-position:896px; +} +.directions li span.rightRoundaboutExit12 { + background-position:924px; +} +.directions li span.leftRoundaboutExit1 { + background-position:-952px; +} +.directions li span.leftRoundaboutExit2 { + background-position:-980px; +} +.directions li span.leftRoundaboutExit3 { + background-position:-1008px; +} +.directions li span.leftRoundaboutExit4 { + background-position:-1036px; +} +.directions li span.leftRoundaboutPass { + background-position:1036px; +} +.directions li span.leftRoundaboutExit5 { + background-position:-1064px; +} +.directions li span.leftRoundaboutExit6 { + background-position:-1092px; +} +.directions li span.leftRoundaboutExit7 { + background-position:-1120px; +} +.directions li span.leftRoundaboutExit8 { + background-position:-1148px; +} +.directions li span.leftRoundaboutExit9 { + background-position:-1176px; +} +.directions li span.leftRoundaboutExit10 { + background-position:-1204px; +} +.directions li span.leftRoundaboutExit11 { + background-position:-1232px; +} +.directions li span.leftRoundaboutExit12 { + background-position:-1260px; +} +.directions li span.arrive { + background-position:-1288px; +} +.directions li span.leftRamp { + background-position:-392px; +} +.directions li span.rightRamp { + background-position:-420px; +} +.directions li span.leftExit { + background-position:-448px; +} +.directions li span.rightExit { + background-position:-476px; +} + +.directions li span.ferry { + background-position:-1316px; \ No newline at end of file diff --git a/map-with-pedestrian-route-from-a-to-b/img/arrows.png b/map-with-pedestrian-route-from-a-to-b/img/arrows.png new file mode 100644 index 0000000..f71e74a Binary files /dev/null and b/map-with-pedestrian-route-from-a-to-b/img/arrows.png differ diff --git a/map-with-pedestrian-route-from-a-to-b/index.html b/map-with-pedestrian-route-from-a-to-b/index.html new file mode 100644 index 0000000..79b77ca --- /dev/null +++ b/map-with-pedestrian-route-from-a-to-b/index.html @@ -0,0 +1,21 @@ + + + + + + + Map with Pedestrian Route from A to B + + + + + + + +

    Map with Pedestrian Route from A to B

    +

    This example calculates a walking route from St Paul's Cathedral in London (51.5141°N, 0.0999°W) to the Tate Modern (51.5081°N, 0.0985°W) on the south bank of the River Thames using pedestrian routing and displays it on the map. The calculation finds the shortest available walking route, which in this case directs the user to use the pedestrian only Millennium Footbridge.

    +
    +
    + + + diff --git a/map-with-pedestrian-route-from-a-to-b/js/app.js b/map-with-pedestrian-route-from-a-to-b/js/app.js new file mode 100644 index 0000000..70c54cc --- /dev/null +++ b/map-with-pedestrian-route-from-a-to-b/js/app.js @@ -0,0 +1,271 @@ + +/** + * Calculates and displays a walking route from the St Paul's Cathedral in London + * to the Tate Modern on the south bank of the River Thames + * + * A full list of available request parameters can be found in the Routing API documentation. + * see: http://developer.here.com/rest-apis/documentation/routing/topics/resource-calculate-route.html + * + * @param {H.service.Platform} platform A stub class to access HERE services + */ +function calculateRouteFromAtoB (platform) { + var router = platform.getRoutingService(), + routeRequestParams = { + mode: 'shortest;pedestrian', + representation: 'display', + waypoint0: '51.5141,-0.0999', // St Paul's Cathedral + waypoint1: '51.5081,-0.0985', // Tate Modern + routeattributes: 'waypoints,summary,shape,legs', + maneuverattributes: 'direction,action' + }; + + + router.calculateRoute( + routeRequestParams, + onSuccess, + onError + ); +} +/** + * This function will be called once the Routing REST API provides a response + * @param {Object} result A JSONP object representing the calculated route + * + * see: http://developer.here.com/rest-apis/documentation/routing/topics/resource-type-calculate-route.html + */ +function onSuccess(result) { + var route = result.response.route[0]; + /* + * The styling of the route response on the map is entirely under the developer's control. + * A representitive styling can be found the full JS + HTML code of this example + * in the functions below: + */ + addRouteShapeToMap(route); + addManueversToMap(route); + + addWaypointsToPanel(route.waypoint); + addManueversToPanel(route); + addSummaryToPanel(route.summary); + // ... etc. +} + +/** + * This function will be called if a communication error occurs during the JSON-P request + * @param {Object} error The error message received. + */ +function onError(error) { + alert('Ooops!'); +} + + + + +/** + * Boilerplate map initialization code starts below: + */ + +// set up containers for the map + panel +var mapContainer = document.getElementById('map'), + routeInstructionsContainer = document.getElementById('panel'); + +//Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +//Step 2: initialize a map - this map is centered over Berlin +var map = new H.Map(mapContainer, + defaultLayers.normal.map,{ + center: {lat:52.5160, lng:13.3779}, + zoom: 13 +}); + +//Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Create the default UI components +var ui = H.ui.UI.createDefault(map, defaultLayers); + +// Hold a reference to any infobubble opened +var bubble; + +/** + * Opens/Closes a infobubble + * @param {H.geo.Point} position The location on the map. + * @param {String} text The contents of the infobubble. + */ +function openBubble(position, text){ + if(!bubble){ + bubble = new H.ui.InfoBubble( + position, + // The FO property holds the province name. + {content: text}); + ui.addBubble(bubble); + } else { + bubble.setPosition(position); + bubble.setContent(text); + bubble.open(); + } +} + + +/** + * Creates a H.map.Polyline from the shape of the route and adds it to the map. + * @param {Object} route A route as received from the H.service.RoutingService + */ +function addRouteShapeToMap(route){ + var strip = new H.geo.Strip(), + routeShape = route.shape, + polyline; + + routeShape.forEach(function(point) { + var parts = point.split(','); + strip.pushLatLngAlt(parts[0], parts[1]); + }); + + polyline = new H.map.Polyline(strip, { + style: { + lineWidth: 4, + strokeColor: 'rgba(0, 128, 255, 0.7)' + } + }); + // Add the polyline to the map + map.addObject(polyline); + // And zoom to its bounding rectangle + map.setViewBounds(polyline.getBounds(), true); +} + + +/** + * Creates a series of H.map.Marker points from the route and adds them to the map. + * @param {Object} route A route as received from the H.service.RoutingService + */ +function addManueversToMap(route){ + var svgMarkup = '' + + '' + + '', + dotIcon = new H.map.Icon(svgMarkup, {anchor: {x:8, y:8}}), + group = new H.map.Group(), + i, + j; + + // Add a marker for each maneuver + for (i = 0; i < route.leg.length; i += 1) { + for (j = 0; j < route.leg[i].maneuver.length; j += 1) { + // Get the next maneuver. + maneuver = route.leg[i].maneuver[j]; + // Add a marker to the maneuvers group + var marker = new H.map.Marker({ + lat: maneuver.position.latitude, + lng: maneuver.position.longitude} , + {icon: dotIcon}); + marker.instruction = maneuver.instruction; + group.addObject(marker); + } + } + + group.addEventListener('tap', function (evt) { + map.setCenter(evt.target.getPosition()); + openBubble( + evt.target.getPosition(), evt.target.instruction); + }, false); + + // Add the maneuvers group to the map + map.addObject(group); +} + + +/** + * Creates a series of H.map.Marker points from the route and adds them to the map. + * @param {Object} route A route as received from the H.service.RoutingService + */ +function addWaypointsToPanel(waypoints){ + + + + var nodeH3 = document.createElement('h3'), + waypointLabels = [], + i; + + + for (i = 0; i < waypoints.length; i += 1) { + waypointLabels.push(waypoints[i].label) + } + + nodeH3.textContent = waypointLabels.join(' - '); + + routeInstructionsContainer.innerHTML = ''; + routeInstructionsContainer.appendChild(nodeH3); +} + +/** + * Creates a series of H.map.Marker points from the route and adds them to the map. + * @param {Object} route A route as received from the H.service.RoutingService + */ +function addSummaryToPanel(summary){ + var summaryDiv = document.createElement('div'), + content = ''; + content += 'Total distance: ' + summary.distance + 'm.
    '; + content += 'Travel Time: ' + summary.travelTime.toMMSS() + ' (in current traffic)'; + + + summaryDiv.style.fontSize = 'small'; + summaryDiv.style.marginLeft ='5%'; + summaryDiv.style.marginRight ='5%'; + summaryDiv.innerHTML = content; + routeInstructionsContainer.appendChild(summaryDiv); +} + +/** + * Creates a series of H.map.Marker points from the route and adds them to the map. + * @param {Object} route A route as received from the H.service.RoutingService + */ +function addManueversToPanel(route){ + + + + var nodeOL = document.createElement('ol'), + i, + j; + + nodeOL.style.fontSize = 'small'; + nodeOL.style.marginLeft ='5%'; + nodeOL.style.marginRight ='5%'; + nodeOL.className = 'directions'; + + // Add a marker for each maneuver + for (i = 0; i < route.leg.length; i += 1) { + for (j = 0; j < route.leg[i].maneuver.length; j += 1) { + // Get the next maneuver. + maneuver = route.leg[i].maneuver[j]; + + var li = document.createElement('li'), + spanArrow = document.createElement('span'), + spanInstruction = document.createElement('span'); + + spanArrow.className = 'arrow ' + maneuver.action; + spanInstruction.innerHTML = maneuver.instruction; + li.appendChild(spanArrow); + li.appendChild(spanInstruction); + + nodeOL.appendChild(li); + } + } + + routeInstructionsContainer.appendChild(nodeOL); +} + + +Number.prototype.toMMSS = function () { + return Math.floor(this / 60) +' minutes '+ (this % 60) + ' seconds.'; +} + +// Now use the map as required... +calculateRouteFromAtoB (platform); \ No newline at end of file diff --git a/map-with-pedestrian-route-from-a-to-b/map-with-route-walk.jpg b/map-with-pedestrian-route-from-a-to-b/map-with-route-walk.jpg new file mode 100644 index 0000000..044bd6c Binary files /dev/null and b/map-with-pedestrian-route-from-a-to-b/map-with-route-walk.jpg differ diff --git a/map-with-route-from-a-to-b-using-public-transport/css/routing.css b/map-with-route-from-a-to-b-using-public-transport/css/routing.css new file mode 100644 index 0000000..5b713d8 --- /dev/null +++ b/map-with-route-from-a-to-b-using-public-transport/css/routing.css @@ -0,0 +1,154 @@ +.directions li span.arrow { + display:inline-block; + min-width:28px; + min-height:28px; + background-position:0px; + background-image: url("../img/arrows.png"); + position:relative; + top:8px; +} +.directions li span.depart { + background-position:-28px; +} +.directions li span.rightUTurn { + background-position:-56px; +} +.directions li span.leftUTurn { + background-position:-84px; +} +.directions li span.rightFork { + background-position:-112px; +} +.directions li span.leftFork { + background-position:-140px; +} +.directions li span.rightMerge { + background-position:-112px; +} +.directions li span.leftMerge { + background-position:-140px; +} +.directions li span.slightRightTurn { + background-position:-168px; +} +.directions li span.slightLeftTurn{ + background-position:-196px; +} +.directions li span.rightTurn { + background-position:-224px; +} +.directions li span.leftTurn{ + background-position:-252px; +} +.directions li span.sharpRightTurn { + background-position:-280px; +} +.directions li span.sharpLeftTurn{ + background-position:-308px; +} +.directions li span.rightRoundaboutExit1 { + background-position:-616px; +} +.directions li span.rightRoundaboutExit2 { + background-position:-644px; +} + +.directions li span.rightRoundaboutExit3 { + background-position:-672px; +} + +.directions li span.rightRoundaboutExit4 { + background-position:-700px; +} + +.directions li span.rightRoundaboutPass { + background-position:-700px; +} + +.directions li span.rightRoundaboutExit5 { + background-position:-728px; +} +.directions li span.rightRoundaboutExit6 { + background-position:-756px; +} +.directions li span.rightRoundaboutExit7 { + background-position:-784px; +} +.directions li span.rightRoundaboutExit8 { + background-position:-812px; +} +.directions li span.rightRoundaboutExit9 { + background-position:-840px; +} +.directions li span.rightRoundaboutExit10 { + background-position:-868px; +} +.directions li span.rightRoundaboutExit11 { + background-position:896px; +} +.directions li span.rightRoundaboutExit12 { + background-position:924px; +} +.directions li span.leftRoundaboutExit1 { + background-position:-952px; +} +.directions li span.leftRoundaboutExit2 { + background-position:-980px; +} +.directions li span.leftRoundaboutExit3 { + background-position:-1008px; +} +.directions li span.leftRoundaboutExit4 { + background-position:-1036px; +} +.directions li span.leftRoundaboutPass { + background-position:1036px; +} +.directions li span.leftRoundaboutExit5 { + background-position:-1064px; +} +.directions li span.leftRoundaboutExit6 { + background-position:-1092px; +} +.directions li span.leftRoundaboutExit7 { + background-position:-1120px; +} +.directions li span.leftRoundaboutExit8 { + background-position:-1148px; +} +.directions li span.leftRoundaboutExit9 { + background-position:-1176px; +} +.directions li span.leftRoundaboutExit10 { + background-position:-1204px; +} +.directions li span.leftRoundaboutExit11 { + background-position:-1232px; +} +.directions li span.leftRoundaboutExit12 { + background-position:-1260px; +} +.directions li span.arrive { + background-position:-1288px; +} +.directions li span.leftRamp { + background-position:-392px; +} +.directions li span.rightRamp { + background-position:-420px; +} +.directions li span.leftExit { + background-position:-448px; +} +.directions li span.rightExit { + background-position:-476px; +} +.directions li span.ferry { + background-position:-1316px; +} +.directions li span.enter { + background-position:-1516px; +} +.directions li span.leave { + background-position:-1540px; +} \ No newline at end of file diff --git a/map-with-route-from-a-to-b-using-public-transport/img/arrows.png b/map-with-route-from-a-to-b-using-public-transport/img/arrows.png new file mode 100644 index 0000000..f71e74a Binary files /dev/null and b/map-with-route-from-a-to-b-using-public-transport/img/arrows.png differ diff --git a/map-with-route-from-a-to-b-using-public-transport/index.html b/map-with-route-from-a-to-b-using-public-transport/index.html new file mode 100644 index 0000000..1d360d8 --- /dev/null +++ b/map-with-route-from-a-to-b-using-public-transport/index.html @@ -0,0 +1,21 @@ + + + + + + + Map with Route from A to B using Public Transport + + + + + + + +

    Map with Route from A to B using Public Transport

    +

    This example calculates a route from the Fernsehturm at Panoramastraße in Berlin (52.5208°N, 13.4093°E) to Kurfürstendamm (52.5034°N, 13.3295°E) in the west of the city using public transport routing, and displays it on the map. The calculation finds the fastest available route using public transport.

    +
    +
    + + + diff --git a/map-with-route-from-a-to-b-using-public-transport/js/app.js b/map-with-route-from-a-to-b-using-public-transport/js/app.js new file mode 100644 index 0000000..aae5049 --- /dev/null +++ b/map-with-route-from-a-to-b-using-public-transport/js/app.js @@ -0,0 +1,271 @@ + +/** + * * Calculates and displays a public trasnsport route from the Fernsehturm in Berlin + * to Kurfürstendamm in the west of the city + * + * A full list of available request parameters can be found in the Routing API documentation. + * see: http://developer.here.com/rest-apis/documentation/routing/topics/resource-calculate-route.html + * + * @param {H.service.Platform} platform A stub class to access HERE services + */ +function calculateRouteFromAtoB (platform) { + var router = platform.getRoutingService(), + routeRequestParams = { + mode: 'fastest;publicTransport', + representation: 'display', + waypoint0: '52.5208,13.4093', // Fernsehturm + waypoint1: '52.5034,13.3280', // Kurfürstendamm + routeattributes: 'waypoints,summary,shape,legs', + maneuverattributes: 'direction,action' + }; + + + router.calculateRoute( + routeRequestParams, + onSuccess, + onError + ); +} +/** + * This function will be called once the Routing REST API provides a response + * @param {Object} result A JSONP object representing the calculated route + * + * see: http://developer.here.com/rest-apis/documentation/routing/topics/resource-type-calculate-route.html + */ +function onSuccess(result) { + var route = result.response.route[0]; + /* + * The styling of the route response on the map is entirely under the developer's control. + * A representitive styling can be found the full JS + HTML code of this example + * in the functions below: + */ + addRouteShapeToMap(route); + addManueversToMap(route); + + addWaypointsToPanel(route.waypoint); + addManueversToPanel(route); + addSummaryToPanel(route.summary); + // ... etc. +} + +/** + * This function will be called if a communication error occurs during the JSON-P request + * @param {Object} error The error message received. + */ +function onError(error) { + alert('Ooops!'); +} + + + + +/** + * Boilerplate map initialization code starts below: + */ + +// set up containers for the map + panel +var mapContainer = document.getElementById('map'), + routeInstructionsContainer = document.getElementById('panel'); + +//Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +//Step 2: initialize a map - this map is centered over Berlin +var map = new H.Map(mapContainer, + defaultLayers.normal.map,{ + center: {lat:52.5160, lng:13.3779}, + zoom: 13 +}); + +//Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Create the default UI components +var ui = H.ui.UI.createDefault(map, defaultLayers); + +// Hold a reference to any infobubble opened +var bubble; + +/** + * Opens/Closes a infobubble + * @param {H.geo.Point} position The location on the map. + * @param {String} text The contents of the infobubble. + */ +function openBubble(position, text){ + if(!bubble){ + bubble = new H.ui.InfoBubble( + position, + // The FO property holds the province name. + {content: text}); + ui.addBubble(bubble); + } else { + bubble.setPosition(position); + bubble.setContent(text); + bubble.open(); + } +} + + +/** + * Creates a H.map.Polyline from the shape of the route and adds it to the map. + * @param {Object} route A route as received from the H.service.RoutingService + */ +function addRouteShapeToMap(route){ + var strip = new H.geo.Strip(), + routeShape = route.shape, + polyline; + + routeShape.forEach(function(point) { + var parts = point.split(','); + strip.pushLatLngAlt(parts[0], parts[1]); + }); + + polyline = new H.map.Polyline(strip, { + style: { + lineWidth: 4, + strokeColor: 'rgba(0, 128, 255, 0.7)' + } + }); + // Add the polyline to the map + map.addObject(polyline); + // And zoom to its bounding rectangle + map.setViewBounds(polyline.getBounds(), true); +} + + +/** + * Creates a series of H.map.Marker points from the route and adds them to the map. + * @param {Object} route A route as received from the H.service.RoutingService + */ +function addManueversToMap(route){ + var svgMarkup = '' + + '' + + '', + dotIcon = new H.map.Icon(svgMarkup, {anchor: {x:8, y:8}}), + group = new H.map.Group(), + i, + j; + + // Add a marker for each maneuver + for (i = 0; i < route.leg.length; i += 1) { + for (j = 0; j < route.leg[i].maneuver.length; j += 1) { + // Get the next maneuver. + maneuver = route.leg[i].maneuver[j]; + // Add a marker to the maneuvers group + var marker = new H.map.Marker({ + lat: maneuver.position.latitude, + lng: maneuver.position.longitude} , + {icon: dotIcon}); + marker.instruction = maneuver.instruction; + group.addObject(marker); + } + } + + group.addEventListener('tap', function (evt) { + map.setCenter(evt.target.getPosition()); + openBubble( + evt.target.getPosition(), evt.target.instruction); + }, false); + + // Add the maneuvers group to the map + map.addObject(group); +} + + +/** + * Creates a series of H.map.Marker points from the route and adds them to the map. + * @param {Object} route A route as received from the H.service.RoutingService + */ +function addWaypointsToPanel(waypoints){ + + + + var nodeH3 = document.createElement('h3'), + waypointLabels = [], + i; + + + for (i = 0; i < waypoints.length; i += 1) { + waypointLabels.push(waypoints[i].label) + } + + nodeH3.textContent = waypointLabels.join(' - '); + + routeInstructionsContainer.innerHTML = ''; + routeInstructionsContainer.appendChild(nodeH3); +} + +/** + * Creates a series of H.map.Marker points from the route and adds them to the map. + * @param {Object} route A route as received from the H.service.RoutingService + */ +function addSummaryToPanel(summary){ + var summaryDiv = document.createElement('div'), + content = ''; + content += 'Total distance: ' + summary.distance + 'm.
    '; + content += 'Travel Time: ' + summary.travelTime.toMMSS() + ' (in current traffic)'; + + + summaryDiv.style.fontSize = 'small'; + summaryDiv.style.marginLeft ='5%'; + summaryDiv.style.marginRight ='5%'; + summaryDiv.innerHTML = content; + routeInstructionsContainer.appendChild(summaryDiv); +} + +/** + * Creates a series of H.map.Marker points from the route and adds them to the map. + * @param {Object} route A route as received from the H.service.RoutingService + */ +function addManueversToPanel(route){ + + + + var nodeOL = document.createElement('ol'), + i, + j; + + nodeOL.style.fontSize = 'small'; + nodeOL.style.marginLeft ='5%'; + nodeOL.style.marginRight ='5%'; + nodeOL.className = 'directions'; + + // Add a marker for each maneuver + for (i = 0; i < route.leg.length; i += 1) { + for (j = 0; j < route.leg[i].maneuver.length; j += 1) { + // Get the next maneuver. + maneuver = route.leg[i].maneuver[j]; + + var li = document.createElement('li'), + spanArrow = document.createElement('span'), + spanInstruction = document.createElement('span'); + + spanArrow.className = 'arrow ' + maneuver.action; + spanInstruction.innerHTML = maneuver.instruction; + li.appendChild(spanArrow); + li.appendChild(spanInstruction); + + nodeOL.appendChild(li); + } + } + + routeInstructionsContainer.appendChild(nodeOL); +} + + +Number.prototype.toMMSS = function () { + return Math.floor(this / 60) +' minutes '+ (this % 60) + ' seconds.'; +} + +// Now use the map as required... +calculateRouteFromAtoB (platform); \ No newline at end of file diff --git a/map-with-route-from-a-to-b-using-public-transport/public-transport-routing.jpg b/map-with-route-from-a-to-b-using-public-transport/public-transport-routing.jpg new file mode 100644 index 0000000..63d0190 Binary files /dev/null and b/map-with-route-from-a-to-b-using-public-transport/public-transport-routing.jpg differ diff --git a/map-with-route-from-a-to-b/css/routing.css b/map-with-route-from-a-to-b/css/routing.css new file mode 100644 index 0000000..4bdfc8d --- /dev/null +++ b/map-with-route-from-a-to-b/css/routing.css @@ -0,0 +1,148 @@ +.directions li span.arrow { + display:inline-block; + min-width:28px; + min-height:28px; + background-position:0px; + background-image: url("../img/arrows.png"); + position:relative; + top:8px; +} +.directions li span.depart { + background-position:-28px; +} +.directions li span.rightUTurn { + background-position:-56px; +} +.directions li span.leftUTurn { + background-position:-84px; +} +.directions li span.rightFork { + background-position:-112px; +} +.directions li span.leftFork { + background-position:-140px; +} +.directions li span.rightMerge { + background-position:-112px; +} +.directions li span.leftMerge { + background-position:-140px; +} +.directions li span.slightRightTurn { + background-position:-168px; +} +.directions li span.slightLeftTurn{ + background-position:-196px; +} +.directions li span.rightTurn { + background-position:-224px; +} +.directions li span.leftTurn{ + background-position:-252px; +} +.directions li span.sharpRightTurn { + background-position:-280px; +} +.directions li span.sharpLeftTurn{ + background-position:-308px; +} +.directions li span.rightRoundaboutExit1 { + background-position:-616px; +} +.directions li span.rightRoundaboutExit2 { + background-position:-644px; +} + +.directions li span.rightRoundaboutExit3 { + background-position:-672px; +} + +.directions li span.rightRoundaboutExit4 { + background-position:-700px; +} + +.directions li span.rightRoundaboutPass { + background-position:-700px; +} + +.directions li span.rightRoundaboutExit5 { + background-position:-728px; +} +.directions li span.rightRoundaboutExit6 { + background-position:-756px; +} +.directions li span.rightRoundaboutExit7 { + background-position:-784px; +} +.directions li span.rightRoundaboutExit8 { + background-position:-812px; +} +.directions li span.rightRoundaboutExit9 { + background-position:-840px; +} +.directions li span.rightRoundaboutExit10 { + background-position:-868px; +} +.directions li span.rightRoundaboutExit11 { + background-position:896px; +} +.directions li span.rightRoundaboutExit12 { + background-position:924px; +} +.directions li span.leftRoundaboutExit1 { + background-position:-952px; +} +.directions li span.leftRoundaboutExit2 { + background-position:-980px; +} +.directions li span.leftRoundaboutExit3 { + background-position:-1008px; +} +.directions li span.leftRoundaboutExit4 { + background-position:-1036px; +} +.directions li span.leftRoundaboutPass { + background-position:1036px; +} +.directions li span.leftRoundaboutExit5 { + background-position:-1064px; +} +.directions li span.leftRoundaboutExit6 { + background-position:-1092px; +} +.directions li span.leftRoundaboutExit7 { + background-position:-1120px; +} +.directions li span.leftRoundaboutExit8 { + background-position:-1148px; +} +.directions li span.leftRoundaboutExit9 { + background-position:-1176px; +} +.directions li span.leftRoundaboutExit10 { + background-position:-1204px; +} +.directions li span.leftRoundaboutExit11 { + background-position:-1232px; +} +.directions li span.leftRoundaboutExit12 { + background-position:-1260px; +} +.directions li span.arrive { + background-position:-1288px; +} +.directions li span.leftRamp { + background-position:-392px; +} +.directions li span.rightRamp { + background-position:-420px; +} +.directions li span.leftExit { + background-position:-448px; +} +.directions li span.rightExit { + background-position:-476px; +} + +.directions li span.ferry { + background-position:-1316px; \ No newline at end of file diff --git a/map-with-route-from-a-to-b/img/arrows.png b/map-with-route-from-a-to-b/img/arrows.png new file mode 100644 index 0000000..f71e74a Binary files /dev/null and b/map-with-route-from-a-to-b/img/arrows.png differ diff --git a/map-with-route-from-a-to-b/index.html b/map-with-route-from-a-to-b/index.html new file mode 100644 index 0000000..c0bbeb5 --- /dev/null +++ b/map-with-route-from-a-to-b/index.html @@ -0,0 +1,21 @@ + + + + + + + Map with Driving Route from A to B + + + + + + + +

    Map with Driving Route from A to B

    +

    This example calculates the fastest car route from the Brandenburg Gate in the centre of Berlin (52.51605°N, 13.37787°E) to Friedrichstraße Railway Station (52.52058°N, 13.38615°E), and displays it on the map.

    +
    +
    + + + diff --git a/map-with-route-from-a-to-b/js/app.js b/map-with-route-from-a-to-b/js/app.js new file mode 100644 index 0000000..af5d795 --- /dev/null +++ b/map-with-route-from-a-to-b/js/app.js @@ -0,0 +1,272 @@ + + +/** + * Calculates and displays a car route from the Brandenburg Gate in the centre of Berlin + * to Friedrichstraße Railway Station. + * + * A full list of available request parameters can be found in the Routing API documentation. + * see: http://developer.here.com/rest-apis/documentation/routing/topics/resource-calculate-route.html + * + * @param {H.service.Platform} platform A stub class to access HERE services + */ +function calculateRouteFromAtoB (platform) { + var router = platform.getRoutingService(), + routeRequestParams = { + mode: 'fastest;car', + representation: 'display', + routeattributes : 'waypoints,summary,shape,legs', + maneuverattributes: 'direction,action', + waypoint0: '52.5160,13.3779', // Brandenburg Gate + waypoint1: '52.5206,13.3862' // Friedrichstraße Railway Station + }; + + + router.calculateRoute( + routeRequestParams, + onSuccess, + onError + ); +} +/** + * This function will be called once the Routing REST API provides a response + * @param {Object} result A JSONP object representing the calculated route + * + * see: http://developer.here.com/rest-apis/documentation/routing/topics/resource-type-calculate-route.html + */ +function onSuccess(result) { + var route = result.response.route[0]; + /* + * The styling of the route response on the map is entirely under the developer's control. + * A representitive styling can be found the full JS + HTML code of this example + * in the functions below: + */ + addRouteShapeToMap(route); + addManueversToMap(route); + + addWaypointsToPanel(route.waypoint); + addManueversToPanel(route); + addSummaryToPanel(route.summary); + // ... etc. +} + +/** + * This function will be called if a communication error occurs during the JSON-P request + * @param {Object} error The error message received. + */ +function onError(error) { + alert('Ooops!'); +} + + + + +/** + * Boilerplate map initialization code starts below: + */ + +// set up containers for the map + panel +var mapContainer = document.getElementById('map'), + routeInstructionsContainer = document.getElementById('panel'); + +//Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +//Step 2: initialize a map - this map is centered over Berlin +var map = new H.Map(mapContainer, + defaultLayers.normal.map,{ + center: {lat:52.5160, lng:13.3779}, + zoom: 13 +}); + +//Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Create the default UI components +var ui = H.ui.UI.createDefault(map, defaultLayers); + +// Hold a reference to any infobubble opened +var bubble; + +/** + * Opens/Closes a infobubble + * @param {H.geo.Point} position The location on the map. + * @param {String} text The contents of the infobubble. + */ +function openBubble(position, text){ + if(!bubble){ + bubble = new H.ui.InfoBubble( + position, + // The FO property holds the province name. + {content: text}); + ui.addBubble(bubble); + } else { + bubble.setPosition(position); + bubble.setContent(text); + bubble.open(); + } +} + + +/** + * Creates a H.map.Polyline from the shape of the route and adds it to the map. + * @param {Object} route A route as received from the H.service.RoutingService + */ +function addRouteShapeToMap(route){ + var strip = new H.geo.Strip(), + routeShape = route.shape, + polyline; + + routeShape.forEach(function(point) { + var parts = point.split(','); + strip.pushLatLngAlt(parts[0], parts[1]); + }); + + polyline = new H.map.Polyline(strip, { + style: { + lineWidth: 4, + strokeColor: 'rgba(0, 128, 255, 0.7)' + } + }); + // Add the polyline to the map + map.addObject(polyline); + // And zoom to its bounding rectangle + map.setViewBounds(polyline.getBounds(), true); +} + + +/** + * Creates a series of H.map.Marker points from the route and adds them to the map. + * @param {Object} route A route as received from the H.service.RoutingService + */ +function addManueversToMap(route){ + var svgMarkup = '' + + '' + + '', + dotIcon = new H.map.Icon(svgMarkup, {anchor: {x:8, y:8}}), + group = new H.map.Group(), + i, + j; + + // Add a marker for each maneuver + for (i = 0; i < route.leg.length; i += 1) { + for (j = 0; j < route.leg[i].maneuver.length; j += 1) { + // Get the next maneuver. + maneuver = route.leg[i].maneuver[j]; + // Add a marker to the maneuvers group + var marker = new H.map.Marker({ + lat: maneuver.position.latitude, + lng: maneuver.position.longitude} , + {icon: dotIcon}); + marker.instruction = maneuver.instruction; + group.addObject(marker); + } + } + + group.addEventListener('tap', function (evt) { + map.setCenter(evt.target.getPosition()); + openBubble( + evt.target.getPosition(), evt.target.instruction); + }, false); + + // Add the maneuvers group to the map + map.addObject(group); +} + + +/** + * Creates a series of H.map.Marker points from the route and adds them to the map. + * @param {Object} route A route as received from the H.service.RoutingService + */ +function addWaypointsToPanel(waypoints){ + + + + var nodeH3 = document.createElement('h3'), + waypointLabels = [], + i; + + + for (i = 0; i < waypoints.length; i += 1) { + waypointLabels.push(waypoints[i].label) + } + + nodeH3.textContent = waypointLabels.join(' - '); + + routeInstructionsContainer.innerHTML = ''; + routeInstructionsContainer.appendChild(nodeH3); +} + +/** + * Creates a series of H.map.Marker points from the route and adds them to the map. + * @param {Object} route A route as received from the H.service.RoutingService + */ +function addSummaryToPanel(summary){ + var summaryDiv = document.createElement('div'), + content = ''; + content += 'Total distance: ' + summary.distance + 'm.
    '; + content += 'Travel Time: ' + summary.travelTime.toMMSS() + ' (in current traffic)'; + + + summaryDiv.style.fontSize = 'small'; + summaryDiv.style.marginLeft ='5%'; + summaryDiv.style.marginRight ='5%'; + summaryDiv.innerHTML = content; + routeInstructionsContainer.appendChild(summaryDiv); +} + +/** + * Creates a series of H.map.Marker points from the route and adds them to the map. + * @param {Object} route A route as received from the H.service.RoutingService + */ +function addManueversToPanel(route){ + + + + var nodeOL = document.createElement('ol'), + i, + j; + + nodeOL.style.fontSize = 'small'; + nodeOL.style.marginLeft ='5%'; + nodeOL.style.marginRight ='5%'; + nodeOL.className = 'directions'; + + // Add a marker for each maneuver + for (i = 0; i < route.leg.length; i += 1) { + for (j = 0; j < route.leg[i].maneuver.length; j += 1) { + // Get the next maneuver. + maneuver = route.leg[i].maneuver[j]; + + var li = document.createElement('li'), + spanArrow = document.createElement('span'), + spanInstruction = document.createElement('span'); + + spanArrow.className = 'arrow ' + maneuver.action; + spanInstruction.innerHTML = maneuver.instruction; + li.appendChild(spanArrow); + li.appendChild(spanInstruction); + + nodeOL.appendChild(li); + } + } + + routeInstructionsContainer.appendChild(nodeOL); +} + + +Number.prototype.toMMSS = function () { + return Math.floor(this / 60) +' minutes '+ (this % 60) + ' seconds.'; +} + +// Now use the map as required... +calculateRouteFromAtoB (platform); \ No newline at end of file diff --git a/map-with-route-from-a-to-b/map-with-route-drive.jpg b/map-with-route-from-a-to-b/map-with-route-drive.jpg new file mode 100644 index 0000000..63455e2 Binary files /dev/null and b/map-with-route-from-a-to-b/map-with-route-drive.jpg differ diff --git a/map-with-svg-graphic-markers/index.html b/map-with-svg-graphic-markers/index.html new file mode 100644 index 0000000..3f09ba8 --- /dev/null +++ b/map-with-svg-graphic-markers/index.html @@ -0,0 +1,20 @@ + + + + + + + SVG Graphic Markers + + + + + + + +

    SVG Graphic Markers

    +

    This example displays a movable map of Chicago with two individually colored SVG markers highlighting the location of Soldier Field (41.8625°N, 87.6166°W) and Wrigley Field (41.9483°N, 87.6555°W). These locations are the home of the Chicago Bears and Chicago Cubs respectively, and each marker displays the letter C in the correct club colors.

    +
    + + + diff --git a/map-with-svg-graphic-markers/js/app.js b/map-with-svg-graphic-markers/js/app.js new file mode 100644 index 0000000..fc9cdf8 --- /dev/null +++ b/map-with-svg-graphic-markers/js/app.js @@ -0,0 +1,64 @@ + +/** + * Adds two SVG markers over the homes of the Chicago Bears and Chicago Cubs + * + * @param {H.Map} map A HERE Map instance within the application + */ +function addSVGMarkers(map){ + //Create the svg mark-up + var svgMarkup = '' + + '' + + 'C'; + + // Add the first marker + var bearsIcon = new H.map.Icon( + svgMarkup.replace('${FILL}', 'blue').replace('${STROKE}', 'red')), + bearsMarker = new H.map.Marker({lat: 41.8625, lng: -87.6166 }, + {icon: bearsIcon}); + + map.addObject(bearsMarker); + + // Add the second marker. + var cubsIcon = new H.map.Icon( + svgMarkup.replace('${FILL}', 'white').replace('${STROKE}', 'orange')), + cubsMarker = new H.map.Marker({lat: 41.9483, lng: -87.6555 }, + {icon: cubsIcon}); + + map.addObject(cubsMarker); +} + + + + + +/** + * Boilerplate map initialization code starts below: + */ + +//Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +//Step 2: initialize a map - this map is centered over Chicago. +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map,{ + center: {lat:41.881944, lng:-87.627778}, + zoom: 11 +}); + +//Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Create the default UI components + var ui = H.ui.UI.createDefault(map, defaultLayers); + +// Now use the map as required... +addSVGMarkers(map); \ No newline at end of file diff --git a/map-with-svg-graphic-markers/svg-graphic-marker.png b/map-with-svg-graphic-markers/svg-graphic-marker.png new file mode 100644 index 0000000..8811b6f Binary files /dev/null and b/map-with-svg-graphic-markers/svg-graphic-marker.png differ diff --git a/map-with-truck-route-from-a-to-b/css/routing.css b/map-with-truck-route-from-a-to-b/css/routing.css new file mode 100644 index 0000000..4bdfc8d --- /dev/null +++ b/map-with-truck-route-from-a-to-b/css/routing.css @@ -0,0 +1,148 @@ +.directions li span.arrow { + display:inline-block; + min-width:28px; + min-height:28px; + background-position:0px; + background-image: url("../img/arrows.png"); + position:relative; + top:8px; +} +.directions li span.depart { + background-position:-28px; +} +.directions li span.rightUTurn { + background-position:-56px; +} +.directions li span.leftUTurn { + background-position:-84px; +} +.directions li span.rightFork { + background-position:-112px; +} +.directions li span.leftFork { + background-position:-140px; +} +.directions li span.rightMerge { + background-position:-112px; +} +.directions li span.leftMerge { + background-position:-140px; +} +.directions li span.slightRightTurn { + background-position:-168px; +} +.directions li span.slightLeftTurn{ + background-position:-196px; +} +.directions li span.rightTurn { + background-position:-224px; +} +.directions li span.leftTurn{ + background-position:-252px; +} +.directions li span.sharpRightTurn { + background-position:-280px; +} +.directions li span.sharpLeftTurn{ + background-position:-308px; +} +.directions li span.rightRoundaboutExit1 { + background-position:-616px; +} +.directions li span.rightRoundaboutExit2 { + background-position:-644px; +} + +.directions li span.rightRoundaboutExit3 { + background-position:-672px; +} + +.directions li span.rightRoundaboutExit4 { + background-position:-700px; +} + +.directions li span.rightRoundaboutPass { + background-position:-700px; +} + +.directions li span.rightRoundaboutExit5 { + background-position:-728px; +} +.directions li span.rightRoundaboutExit6 { + background-position:-756px; +} +.directions li span.rightRoundaboutExit7 { + background-position:-784px; +} +.directions li span.rightRoundaboutExit8 { + background-position:-812px; +} +.directions li span.rightRoundaboutExit9 { + background-position:-840px; +} +.directions li span.rightRoundaboutExit10 { + background-position:-868px; +} +.directions li span.rightRoundaboutExit11 { + background-position:896px; +} +.directions li span.rightRoundaboutExit12 { + background-position:924px; +} +.directions li span.leftRoundaboutExit1 { + background-position:-952px; +} +.directions li span.leftRoundaboutExit2 { + background-position:-980px; +} +.directions li span.leftRoundaboutExit3 { + background-position:-1008px; +} +.directions li span.leftRoundaboutExit4 { + background-position:-1036px; +} +.directions li span.leftRoundaboutPass { + background-position:1036px; +} +.directions li span.leftRoundaboutExit5 { + background-position:-1064px; +} +.directions li span.leftRoundaboutExit6 { + background-position:-1092px; +} +.directions li span.leftRoundaboutExit7 { + background-position:-1120px; +} +.directions li span.leftRoundaboutExit8 { + background-position:-1148px; +} +.directions li span.leftRoundaboutExit9 { + background-position:-1176px; +} +.directions li span.leftRoundaboutExit10 { + background-position:-1204px; +} +.directions li span.leftRoundaboutExit11 { + background-position:-1232px; +} +.directions li span.leftRoundaboutExit12 { + background-position:-1260px; +} +.directions li span.arrive { + background-position:-1288px; +} +.directions li span.leftRamp { + background-position:-392px; +} +.directions li span.rightRamp { + background-position:-420px; +} +.directions li span.leftExit { + background-position:-448px; +} +.directions li span.rightExit { + background-position:-476px; +} + +.directions li span.ferry { + background-position:-1316px; \ No newline at end of file diff --git a/map-with-truck-route-from-a-to-b/img/arrows.png b/map-with-truck-route-from-a-to-b/img/arrows.png new file mode 100644 index 0000000..f71e74a Binary files /dev/null and b/map-with-truck-route-from-a-to-b/img/arrows.png differ diff --git a/map-with-truck-route-from-a-to-b/index.html b/map-with-truck-route-from-a-to-b/index.html new file mode 100644 index 0000000..0afa3d0 --- /dev/null +++ b/map-with-truck-route-from-a-to-b/index.html @@ -0,0 +1,21 @@ + + + + + + + Map with Truck Route from A to B + + + + + + + +

    Map with Truck Route from A to B

    +

    This example calculates a truck route from Chicago O'Hare Airport (41.9798°N, 87.8801°W) to the I-290 Eisenhower Expressway (41.9043°N, 87.9216°W) nearby, and displays it on the map. The calculation finds the fastest available route for a truck journey, but does not take traffic conditions into account.

    +
    +
    + + + diff --git a/map-with-truck-route-from-a-to-b/js/app.js b/map-with-truck-route-from-a-to-b/js/app.js new file mode 100644 index 0000000..768ed25 --- /dev/null +++ b/map-with-truck-route-from-a-to-b/js/app.js @@ -0,0 +1,253 @@ + + +/** + * Calculates and displays a truck route from Chicago O'Hare Airport to + * the I-290 Eisenhower Expressway nearby. + * + * A full list of available request parameters can be found in the Routing API documentation. + * see: http://developer.here.com/rest-apis/documentation/enterprise-routing/topics/resource-calculate-route.html + * + * @param {H.service.Platform} platform A stub class to access HERE services + */ +function calculateRouteFromAtoB (platform) { + var router = platform.getEnterpriseRoutingService(), + routeRequestParams = { + mode: 'fastest;truck', + representation: 'display', + waypoint0: '41.9798,-87.8801', // Chicago O'Hare + waypoint1: '41.9043,-87.9216', // Eisenhower Expressway + instructionformat : 'html', + routeattributes: 'waypoints,summary,shape,legs', + maneuverattributes: 'direction,action', + jsonattributes:1 + }; + + + router.calculateRoute( + routeRequestParams, + onSuccess, + onError + ); +} +/** + * This function will be called once the Routing REST API provides a response + * @param {Object} result A JSONP object representing the calculated route + * + * see: http://developer.here.com/rest-apis/documentation/routing/topics/resource-type-calculate-route.html + */ +function onSuccess(result) { + var route = result.response.route[0]; + /* + * The styling of the route response on the map is entirely under the developer's control. + * A representitive styling can be found the full JS + HTML code of this example + * in the functions below: + */ + addRouteShapeToMap(route); + addManueversToMap(route); + + addManueversToPanel(route); + addSummaryToPanel(route.summary); + // ... etc. +} + +/** + * This function will be called if a communication error occurs during the JSON-P request + * @param {Object} error The error message received. + */ +function onError(error) { + alert('Ooops!'); +} + + + + +/** + * Boilerplate map initialization code starts below: + */ + +// set up containers for the map + panel +var mapContainer = document.getElementById('map'), + routeInstructionsContainer = document.getElementById('panel'); + +//Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +//Step 2: initialize a map - this map is centered over Berlin +var map = new H.Map(mapContainer, + defaultLayers.normal.map,{ + center: {lat:52.5160, lng:13.3779}, + zoom: 13 +}); + +//Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Create the default UI components +var ui = H.ui.UI.createDefault(map, defaultLayers); + +// Hold a reference to any infobubble opened +var bubble; + +/** + * Opens/Closes a infobubble + * @param {H.geo.Point} position The location on the map. + * @param {String} text The contents of the infobubble. + */ +function openBubble(position, text){ + if(!bubble){ + bubble = new H.ui.InfoBubble( + position, + // The FO property holds the province name. + {content: text}); + ui.addBubble(bubble); + } else { + bubble.setPosition(position); + bubble.setContent(text); + bubble.open(); + } +} + + +/** + * Creates a H.map.Polyline from the shape of the route and adds it to the map. + * @param {Object} route A route as received from the H.service.RoutingService + */ +function addRouteShapeToMap(route){ + var strip = new H.geo.Strip(), + routeShape = route.shape, + polyline; + + routeShape.forEach(function(point) { + var parts = point.split(','); + strip.pushLatLngAlt(parts[0], parts[1]); + }); + + polyline = new H.map.Polyline(strip, { + style: { + lineWidth: 4, + strokeColor: 'rgba(0, 128, 255, 0.7)' + } + }); + // Add the polyline to the map + map.addObject(polyline); + // And zoom to its bounding rectangle + map.setViewBounds(polyline.getBounds(), true); +} + + +/** + * Creates a series of H.map.Marker points from the route and adds them to the map. + * @param {Object} route A route as received from the H.service.RoutingService + */ +function addManueversToMap(route){ + var svgMarkup = '' + + '' + + '', + dotIcon = new H.map.Icon(svgMarkup, {anchor: {x:8, y:8}}), + group = new H.map.Group(), + i, + j; + + // Add a marker for each maneuver + for (i = 0; i < route.leg.length; i += 1) { + for (j = 0; j < route.leg[i].maneuver.length; j += 1) { + // Get the next maneuver. + maneuver = route.leg[i].maneuver[j]; + // Add a marker to the maneuvers group + var marker = new H.map.Marker({ + lat: maneuver.position.latitude, + lng: maneuver.position.longitude} , + {icon: dotIcon}); + marker.instruction = maneuver.instruction; + group.addObject(marker); + } + } + + group.addEventListener('tap', function (evt) { + map.setCenter(evt.target.getPosition()); + openBubble( + evt.target.getPosition(), evt.target.instruction); + }, false); + + // Add the maneuvers group to the map + map.addObject(group); +} + + + +/** + * Creates a series of H.map.Marker points from the route and adds them to the map. + * @param {Object} route A route as received from the H.service.RoutingService + */ +function addSummaryToPanel(summary){ + var summaryDiv = document.createElement('div'), + content = ''; + content += 'Total distance: ' + summary.distance + 'm.
    '; + content += 'Travel Time: ' + summary.trafficTime.toMMSS() + ' (in current traffic)'; + + + summaryDiv.style.fontSize = 'small'; + summaryDiv.style.marginLeft ='5%'; + summaryDiv.style.marginRight ='5%'; + summaryDiv.innerHTML = content; + routeInstructionsContainer.appendChild(summaryDiv); +} + +/** + * Creates a series of H.map.Marker points from the route and adds them to the map. + * @param {Object} route A route as received from the H.service.RoutingService + */ +function addManueversToPanel(route){ + + + + var nodeOL = document.createElement('ol'), + i, + j; + + nodeOL.style.fontSize = 'small'; + nodeOL.style.marginLeft ='5%'; + nodeOL.style.marginRight ='5%'; + nodeOL.className = 'directions'; + + // Add a marker for each maneuver + for (i = 0; i < route.leg.length; i += 1) { + for (j = 0; j < route.leg[i].maneuver.length; j += 1) { + // Get the next maneuver. + maneuver = route.leg[i].maneuver[j]; + + var li = document.createElement('li'), + spanArrow = document.createElement('span'), + spanInstruction = document.createElement('span'); + + spanArrow.className = 'arrow ' + maneuver.action; + spanInstruction.innerHTML = maneuver.instruction; + li.appendChild(spanArrow); + li.appendChild(spanInstruction); + + nodeOL.appendChild(li); + } + } + + routeInstructionsContainer.innerHTML = ''; + + routeInstructionsContainer.appendChild(nodeOL); +} + + +Number.prototype.toMMSS = function () { + return Math.floor(this / 60) +' minutes '+ (this % 60) + ' seconds.'; +} + +// Now use the map as required... +calculateRouteFromAtoB (platform); \ No newline at end of file diff --git a/map-with-truck-route-from-a-to-b/map-with-route-truck.jpg b/map-with-truck-route-from-a-to-b/map-with-route-truck.jpg new file mode 100644 index 0000000..43265aa Binary files /dev/null and b/map-with-truck-route-from-a-to-b/map-with-route-truck.jpg differ diff --git a/marker-clustering/cluster-markers.jpg b/marker-clustering/cluster-markers.jpg new file mode 100644 index 0000000..34e6324 Binary files /dev/null and b/marker-clustering/cluster-markers.jpg differ diff --git a/marker-clustering/data/airports.json b/marker-clustering/data/airports.json new file mode 100644 index 0000000..790f554 --- /dev/null +++ b/marker-clustering/data/airports.json @@ -0,0 +1 @@ +[{"latitude":-6.081689,"longitude":145.391881},{"latitude":-5.207083,"longitude":145.7887},{"latitude":-5.826789,"longitude":144.295861},{"latitude":-6.569828,"longitude":146.726242},{"latitude":-9.443383,"longitude":147.22005},{"latitude":-3.583828,"longitude":143.669186},{"latitude":61.160517,"longitude":-45.425978},{"latitude":64.190922,"longitude":-51.678064},{"latitude":67.016969,"longitude":-50.689325},{"latitude":76.531203,"longitude":-68.703161},{"latitude":65.659994,"longitude":-18.072703},{"latitude":65.283333,"longitude":-14.401389},{"latitude":64.295556,"longitude":-15.227222},{"latitude":65.952328,"longitude":-17.425978},{"latitude":66.058056,"longitude":-23.135278},{"latitude":63.985,"longitude":-22.605556},{"latitude":65.555833,"longitude":-23.965},{"latitude":64.13,"longitude":-21.940556},{"latitude":66.133333,"longitude":-18.916667},{"latitude":63.424303,"longitude":-20.278875},{"latitude":46.485001,"longitude":-84.509445},{"latitude":50.056389,"longitude":-97.0325},{"latitude":53.355833,"longitude":-110.82389},{"latitude":67.545833,"longitude":-64.031389},{"latitude":48.053333,"longitude":-77.782778},{"latitude":58.096111,"longitude":-68.426944},{"latitude":65.281617,"longitude":-126.798219},{"latitude":49.193889,"longitude":-123.184444},{"latitude":55.841944,"longitude":-108.4175},{"latitude":44.745834,"longitude":-81.107222},{"latitude":45.952221,"longitude":-77.319168},{"latitude":49.910036,"longitude":-97.239886},{"latitude":52.921944,"longitude":-66.864444},{"latitude":52.183056,"longitude":-122.054167},{"latitude":63.209444,"longitude":-123.436667},{"latitude":49.612222,"longitude":-115.781944},{"latitude":53.5725,"longitude":-113.520556},{"latitude":52.170834,"longitude":-106.699722},{"latitude":50.01889,"longitude":-110.720833},{"latitude":56.238056,"longitude":-120.740278},{"latitude":50.113889,"longitude":-91.905278},{"latitude":66.145,"longitude":-65.713611},{"latitude":47.695,"longitude":-79.848889},{"latitude":53.889444,"longitude":-122.678889},{"latitude":54.468508,"longitude":-128.576219},{"latitude":43.033056,"longitude":-81.151111},{"latitude":49.025278,"longitude":-122.360556},{"latitude":60.709553,"longitude":-135.067269},{"latitude":46.363611,"longitude":-79.422778},{"latitude":51.113888,"longitude":-114.020278},{"latitude":54.824722,"longitude":-127.182778},{"latitude":58.836389,"longitude":-122.596944},{"latitude":49.463056,"longitude":-119.602222},{"latitude":46.290001,"longitude":-63.121111},{"latitude":69.546667,"longitude":-93.576667},{"latitude":48.646944,"longitude":-123.425833},{"latitude":56.863888,"longitude":-101.07611},{"latitude":50.291944,"longitude":-107.690556},{"latitude":58.739167,"longitude":-94.065},{"latitude":53.319168,"longitude":-60.425833},{"latitude":47.61861,"longitude":-52.751945},{"latitude":49.413889,"longitude":-82.4675},{"latitude":50.290279,"longitude":-88.909721},{"latitude":48.608612,"longitude":-68.208056},{"latitude":43.677223,"longitude":-79.630556},{"latitude":43.7425,"longitude":-79.465556},{"latitude":45.885277,"longitude":-82.567778},{"latitude":62.462778,"longitude":-114.440278},{"latitude":55.293056,"longitude":-114.777222},{"latitude":53.254333,"longitude":-131.813833},{"latitude":42.999444,"longitude":-82.308889},{"latitude":50.680556,"longitude":-127.366667},{"latitude":54.14389,"longitude":-115.786667},{"latitude":50.223333,"longitude":-66.265556},{"latitude":60.172779,"longitude":-132.742778},{"latitude":44.984444,"longitude":-64.916944},{"latitude":62.2075,"longitude":-133.375833},{"latitude":67.4075,"longitude":-134.860556},{"latitude":36.503613,"longitude":2.814167},{"latitude":35.3325,"longitude":4.206389},{"latitude":36.711997,"longitude":5.069922},{"latitude":36.691014,"longitude":3.215408},{"latitude":24.292767,"longitude":9.452444},{"latitude":36.545834,"longitude":2.876111},{"latitude":26.710103,"longitude":0.285647},{"latitude":26.723536,"longitude":8.622653},{"latitude":35.525414,"longitude":2.878714},{"latitude":22.811461,"longitude":5.451075},{"latitude":36.795136,"longitude":5.873608},{"latitude":33.535853,"longitude":-0.242353},{"latitude":35.752239,"longitude":0.626272},{"latitude":36.822225,"longitude":7.809167},{"latitude":36.276028,"longitude":6.620386},{"latitude":35.431611,"longitude":8.120717},{"latitude":32.930431,"longitude":3.311542},{"latitude":35.341136,"longitude":1.463147},{"latitude":35.735389,"longitude":-0.805389},{"latitude":27.700372,"longitude":-8.167103},{"latitude":36.212658,"longitude":1.331775},{"latitude":35.542444,"longitude":-0.532278},{"latitude":35.016667,"longitude":-1.45},{"latitude":35.623858,"longitude":-0.621183},{"latitude":35.171775,"longitude":-0.593275},{"latitude":35.207725,"longitude":0.147142},{"latitude":27.837589,"longitude":-0.186414},{"latitude":34.793289,"longitude":5.738231},{"latitude":30.571294,"longitude":2.859586},{"latitude":32.384106,"longitude":3.794114},{"latitude":31.672972,"longitude":6.140444},{"latitude":27.251022,"longitude":2.512017},{"latitude":33.067803,"longitude":6.088672},{"latitude":33.764383,"longitude":2.928344},{"latitude":29.237119,"longitude":0.276033},{"latitude":31.917223,"longitude":5.412778},{"latitude":28.05155,"longitude":9.642911},{"latitude":6.357228,"longitude":2.384353},{"latitude":12.353194,"longitude":-1.512417},{"latitude":11.160056,"longitude":-4.330969},{"latitude":5.605186,"longitude":-0.166786},{"latitude":9.557192,"longitude":-0.863214},{"latitude":10.082664,"longitude":-2.507694},{"latitude":7.361828,"longitude":-2.328756},{"latitude":4.896056,"longitude":-1.774756},{"latitude":5.261386,"longitude":-3.926294},{"latitude":7.7388,"longitude":-5.073667},{"latitude":6.792808,"longitude":-6.473189},{"latitude":9.387183,"longitude":-5.556664},{"latitude":7.272069,"longitude":-7.587364},{"latitude":4.746717,"longitude":-6.660817},{"latitude":6.903167,"longitude":-5.365581},{"latitude":9.006792,"longitude":7.263172},{"latitude":67.701022,"longitude":24.84685},{"latitude":63.00715,"longitude":27.797756},{"latitude":61.144158,"longitude":25.693508},{"latitude":61.044553,"longitude":28.144397},{"latitude":60.122203,"longitude":19.898156},{"latitude":62.946667,"longitude":23.518889},{"latitude":61.6866,"longitude":27.201794},{"latitude":60.333889,"longitude":24.296389},{"latitude":64.930061,"longitude":25.354564},{"latitude":61.245558,"longitude":22.193356},{"latitude":61.461686,"longitude":21.799983},{"latitude":65.402222,"longitude":26.946944},{"latitude":63.731917,"longitude":25.926306},{"latitude":64.688056,"longitude":24.695833},{"latitude":62.065481,"longitude":28.356494},{"latitude":66.564822,"longitude":25.830411},{"latitude":60.744722,"longitude":24.107778},{"latitude":61.943064,"longitude":28.945136},{"latitude":61.062389,"longitude":26.798861},{"latitude":67.395033,"longitude":26.619133},{"latitude":61.414147,"longitude":23.604392},{"latitude":61.77335,"longitude":24.027006},{"latitude":60.514142,"longitude":22.262808},{"latitude":60.896394,"longitude":26.938353},{"latitude":63.05065,"longitude":21.762175},{"latitude":62.171111,"longitude":27.868611},{"latitude":64.060547,"longitude":24.715953},{"latitude":54.6575,"longitude":-6.215833},{"latitude":54.398889,"longitude":-7.651667},{"latitude":54.618056,"longitude":-5.8725},{"latitude":55.042778,"longitude":-7.161111},{"latitude":52.453856,"longitude":-1.748028},{"latitude":52.369722,"longitude":-1.479722},{"latitude":52.607778,"longitude":-1.031944},{"latitude":51.894167,"longitude":-2.167222},{"latitude":52.5175,"longitude":-2.259444},{"latitude":51.668056,"longitude":-2.056944},{"latitude":52.040833,"longitude":-1.095556},{"latitude":52.192222,"longitude":-1.614444},{"latitude":53.353744,"longitude":-2.27495},{"latitude":53.338056,"longitude":-2.148889},{"latitude":51.087167,"longitude":-4.150339},{"latitude":50.440558,"longitude":-4.995408},{"latitude":51.505144,"longitude":-1.993428},{"latitude":51.152189,"longitude":-1.747414},{"latitude":50.086092,"longitude":-5.255711},{"latitude":51.404811,"longitude":-3.43575},{"latitude":51.009358,"longitude":-2.638819},{"latitude":51.833056,"longitude":-4.961111},{"latitude":51.396667,"longitude":-3.343333},{"latitude":51.605333,"longitude":-4.067833},{"latitude":51.382669,"longitude":-2.719089},{"latitude":53.333611,"longitude":-2.849722},{"latitude":51.874722,"longitude":-0.368333},{"latitude":50.422778,"longitude":-4.105833},{"latitude":-23.845306,"longitude":29.458611},{"latitude":-26.670994,"longitude":27.0819},{"latitude":-26.889344,"longitude":27.503417},{"latitude":-31.920197,"longitude":26.882206},{"latitude":-28.741039,"longitude":32.092111},{"latitude":-25.6443,"longitude":27.271119},{"latitude":-33.812181,"longitude":19.902828},{"latitude":-29.689333,"longitude":17.939611},{"latitude":-26.524083,"longitude":29.170144},{"latitude":-32.964067,"longitude":17.969331},{"latitude":-26.248411,"longitude":28.397508},{"latitude":-25.809717,"longitude":28.164631},{"latitude":-27.648606,"longitude":22.999278},{"latitude":-34.048222,"longitude":20.474611},{"latitude":-24.960944,"longitude":31.588731},{"latitude":-28.260028,"longitude":22.993178},{"latitude":-29.032928,"longitude":26.157564},{"latitude":-26.776556,"longitude":29.338778},{"latitude":-23.824417,"longitude":30.329306},{"latitude":-28.320586,"longitude":31.416519},{"latitude":-28.399097,"longitude":21.260239},{"latitude":-31.547903,"longitude":28.674289},{"latitude":-26.982408,"longitude":24.728756},{"latitude":-29.770606,"longitude":31.058406},{"latitude":-31.640961,"longitude":18.544789},{"latitude":-26.566372,"longitude":27.960756},{"latitude":-25.653858,"longitude":28.224231},{"latitude":-25.832294,"longitude":29.192019},{"latitude":-25.83,"longitude":28.2225},{"latitude":-27.998,"longitude":26.669586},{"latitude":-33.900244,"longitude":18.498297},{"latitude":-25.598972,"longitude":26.042333},{"latitude":-21.159597,"longitude":27.474525},{"latitude":-24.602333,"longitude":24.690971},{"latitude":-17.832875,"longitude":25.1624},{"latitude":-19.972564,"longitude":23.431086},{"latitude":-24.555225,"longitude":25.918208},{"latitude":-22.05835,"longitude":27.828767},{"latitude":-4.2517,"longitude":15.253031},{"latitude":-0.53135,"longitude":15.950094},{"latitude":1.615994,"longitude":16.037917},{"latitude":-4.816028,"longitude":11.886597},{"latitude":-26.529022,"longitude":31.307519},{"latitude":4.398475,"longitude":18.518786},{"latitude":4.221583,"longitude":15.786369},{"latitude":1.905469,"longitude":9.805681},{"latitude":3.755267,"longitude":8.708717},{"latitude":-7.969597,"longitude":-14.393664},{"latitude":-20.430235,"longitude":57.6836},{"latitude":-19.757658,"longitude":63.360983},{"latitude":-7.313267,"longitude":72.411089},{"latitude":4.089192,"longitude":9.360528},{"latitude":4.006081,"longitude":9.719481},{"latitude":10.451392,"longitude":14.257361},{"latitude":5.636919,"longitude":10.750817},{"latitude":7.357011,"longitude":13.559242},{"latitude":9.335892,"longitude":13.370103},{"latitude":5.536919,"longitude":10.354583},{"latitude":6.039239,"longitude":10.122639},{"latitude":3.836039,"longitude":11.523461},{"latitude":-12.572778,"longitude":27.89395},{"latitude":-17.821756,"longitude":25.822692},{"latitude":-15.330817,"longitude":28.452628},{"latitude":-13.258878,"longitude":31.936581},{"latitude":-15.254542,"longitude":23.162306},{"latitude":-12.998139,"longitude":28.664944},{"latitude":-12.900469,"longitude":28.149858},{"latitude":-11.533661,"longitude":43.27185},{"latitude":-12.298108,"longitude":43.7664},{"latitude":-12.131667,"longitude":44.430279},{"latitude":-12.804722,"longitude":45.281113},{"latitude":-20.8871,"longitude":55.510308},{"latitude":-21.320039,"longitude":55.423581},{"latitude":-18.79695,"longitude":47.478806},{"latitude":-19.562778,"longitude":45.450832},{"latitude":-17.093889,"longitude":49.815834},{"latitude":-18.109517,"longitude":49.392536},{"latitude":-20.28475,"longitude":44.317614},{"latitude":-12.3494,"longitude":49.291747},{"latitude":-16.1639,"longitude":49.773753},{"latitude":-14.651667,"longitude":49.620556},{"latitude":-13.188431,"longitude":48.987978},{"latitude":-14.999411,"longitude":50.320233},{"latitude":-14.629694,"longitude":47.763783},{"latitude":-15.667144,"longitude":46.351828},{"latitude":-13.312067,"longitude":48.314822},{"latitude":-16.741945,"longitude":44.481388},{"latitude":-15.436666,"longitude":49.688332},{"latitude":-14.278611,"longitude":50.174721},{"latitude":-13.375834,"longitude":50.002777},{"latitude":-14.89875,"longitude":47.993894},{"latitude":-13.484814,"longitude":48.632739},{"latitude":-25.038056,"longitude":46.956111},{"latitude":-21.441558,"longitude":47.111736},{"latitude":-22.805286,"longitude":47.820614},{"latitude":-22.119722,"longitude":48.021667},{"latitude":-21.201772,"longitude":48.358317},{"latitude":-21.753867,"longitude":43.375533},{"latitude":-23.383369,"longitude":43.728453},{"latitude":-6.269897,"longitude":14.247025},{"latitude":-12.609025,"longitude":13.403711},{"latitude":-5.596992,"longitude":12.188353},{"latitude":18.3127,"longitude":-65.3034},{"latitude":-12.808878,"longitude":15.760547},{"latitude":-12.404633,"longitude":16.947414},{"latitude":-12.371233,"longitude":13.536625},{"latitude":-8.858375,"longitude":13.231178},{"latitude":-9.525086,"longitude":16.312406},{"latitude":-14.657583,"longitude":17.719833},{"latitude":-7.754506,"longitude":15.287728},{"latitude":-10.721956,"longitude":13.765528},{"latitude":-9.689067,"longitude":20.431875},{"latitude":-6.141086,"longitude":12.371764},{"latitude":-14.924733,"longitude":13.575022},{"latitude":-11.768086,"longitude":19.897672},{"latitude":-7.603067,"longitude":15.027822},{"latitude":-16.755417,"longitude":14.965344},{"latitude":1.543108,"longitude":11.581361},{"latitude":-0.665214,"longitude":13.673133},{"latitude":-0.704389,"longitude":10.245722},{"latitude":2.075639,"longitude":11.493195},{"latitude":-0.711739,"longitude":8.754383},{"latitude":-1.574733,"longitude":9.262694},{"latitude":0.579211,"longitude":12.890908},{"latitude":0.4586,"longitude":9.412283},{"latitude":-1.656156,"longitude":13.438036},{"latitude":1.662936,"longitude":7.411742},{"latitude":0.378175,"longitude":6.712153},{"latitude":-19.796419,"longitude":34.907556},{"latitude":-23.876431,"longitude":35.408544},{"latitude":-13.273986,"longitude":35.266262},{"latitude":-15.033058,"longitude":40.671728},{"latitude":-25.920836,"longitude":32.572606},{"latitude":-11.672922,"longitude":39.563142},{"latitude":-11.361789,"longitude":40.354875},{"latitude":-13.225053,"longitude":37.552067},{"latitude":-14.488233,"longitude":40.71225},{"latitude":-15.105611,"longitude":39.2818},{"latitude":-12.986753,"longitude":40.522492},{"latitude":-17.8555,"longitude":36.869106},{"latitude":-15.602694,"longitude":32.773189},{"latitude":-16.104817,"longitude":33.640181},{"latitude":-14.704617,"longitude":34.352369},{"latitude":-22.018431,"longitude":35.313297},{"latitude":-7.004783,"longitude":52.726247},{"latitude":-5.696697,"longitude":53.655844},{"latitude":-10.109611,"longitude":51.176119},{"latitude":-4.674342,"longitude":55.521839},{"latitude":-4.319292,"longitude":55.691417},{"latitude":-7.134567,"longitude":56.278239},{"latitude":13.847,"longitude":20.844333},{"latitude":8.624406,"longitude":16.071419},{"latitude":12.133689,"longitude":15.034019},{"latitude":17.917053,"longitude":19.111078},{"latitude":-20.017431,"longitude":28.617869},{"latitude":-17.751561,"longitude":30.924706},{"latitude":-21.008083,"longitude":31.57855},{"latitude":-18.095881,"longitude":25.839006},{"latitude":-17.931806,"longitude":31.092847},{"latitude":-16.519761,"longitude":28.884981},{"latitude":-17.431917,"longitude":32.184502},{"latitude":-18.997499,"longitude":32.627224},{"latitude":-20.055333,"longitude":30.859111},{"latitude":-20.289497,"longitude":30.088228},{"latitude":-19.436394,"longitude":29.861911},{"latitude":-18.629872,"longitude":27.021042},{"latitude":-15.679053,"longitude":34.974014},{"latitude":-9.953569,"longitude":33.893022},{"latitude":-13.014631,"longitude":33.468597},{"latitude":-13.789378,"longitude":33.781},{"latitude":-11.44475,"longitude":34.011776},{"latitude":-29.462256,"longitude":27.552503},{"latitude":-29.304053,"longitude":27.503458},{"latitude":-4.38575,"longitude":15.444569},{"latitude":-4.326689,"longitude":15.327342},{"latitude":-5.930858,"longitude":12.351789},{"latitude":-5.918056,"longitude":12.447694},{"latitude":-3.311319,"longitude":17.381683},{"latitude":-5.035767,"longitude":18.785631},{"latitude":0.0226,"longitude":18.288744},{"latitude":4.253206,"longitude":20.975283},{"latitude":3.235369,"longitude":19.771258},{"latitude":4.157639,"longitude":21.650917},{"latitude":2.170658,"longitude":21.496906},{"latitude":0.5175,"longitude":25.155014},{"latitude":2.827606,"longitude":27.588253},{"latitude":1.565719,"longitude":30.220833},{"latitude":2.818347,"longitude":24.793706},{"latitude":-2.308978,"longitude":28.808803},{"latitude":-1.670814,"longitude":29.238464},{"latitude":-2.919178,"longitude":25.915361},{"latitude":-11.591333,"longitude":27.530889},{"latitude":-10.765886,"longitude":25.505714},{"latitude":-5.875556,"longitude":29.25},{"latitude":-8.642025,"longitude":25.252897},{"latitude":-5.900055,"longitude":22.469166},{"latitude":-6.121236,"longitude":23.569008},{"latitude":12.533544,"longitude":-7.949944},{"latitude":16.248433,"longitude":-0.005456},{"latitude":14.481233,"longitude":-11.404397},{"latitude":14.512803,"longitude":-4.079561},{"latitude":16.730458,"longitude":-3.007583},{"latitude":20.242983,"longitude":0.977308},{"latitude":13.337961,"longitude":-16.652206},{"latitude":28.452717,"longitude":-13.863761},{"latitude":27.814847,"longitude":-17.887056},{"latitude":28.626478,"longitude":-17.755611},{"latitude":27.931886,"longitude":-15.386586},{"latitude":28.945464,"longitude":-13.605225},{"latitude":28.044475,"longitude":-16.572489},{"latitude":28.482653,"longitude":-16.341536},{"latitude":35.279817,"longitude":-2.956256},{"latitude":8.616444,"longitude":-13.195489},{"latitude":11.287917,"longitude":-15.1805},{"latitude":6.289061,"longitude":-10.758722},{"latitude":6.233789,"longitude":-10.362311},{"latitude":30.381353,"longitude":-9.546311},{"latitude":28.448194,"longitude":-11.161347},{"latitude":33.927261,"longitude":-4.977958},{"latitude":33.505319,"longitude":-5.152903},{"latitude":31.9475,"longitude":-4.398333},{"latitude":33.879067,"longitude":-5.515125},{"latitude":34.78715,"longitude":-1.923986},{"latitude":33.655422,"longitude":-7.22145},{"latitude":34.051467,"longitude":-6.751519},{"latitude":33.367467,"longitude":-7.589967},{"latitude":31.606886,"longitude":-8.0363},{"latitude":34.298864,"longitude":-6.595878},{"latitude":30.939053,"longitude":-6.909431},{"latitude":35.177103,"longitude":-3.839525},{"latitude":35.594333,"longitude":-5.320019},{"latitude":35.726917,"longitude":-5.916889},{"latitude":12.555617,"longitude":-16.281783},{"latitude":12.4102,"longitude":-16.746125},{"latitude":14.146881,"longitude":-16.051297},{"latitude":14.739708,"longitude":-17.490225},{"latitude":16.050761,"longitude":-16.463172},{"latitude":14.847256,"longitude":-12.468264},{"latitude":12.572292,"longitude":-12.220333},{"latitude":13.736817,"longitude":-13.653122},{"latitude":16.711294,"longitude":-9.637883},{"latitude":18.570103,"longitude":-11.423547},{"latitude":16.589983,"longitude":-11.406208},{"latitude":16.622,"longitude":-7.316567},{"latitude":16.159547,"longitude":-13.507617},{"latitude":18.097856,"longitude":-15.947956},{"latitude":15.179692,"longitude":-12.207272},{"latitude":20.506828,"longitude":-13.043194},{"latitude":20.933067,"longitude":-17.029956},{"latitude":25.236697,"longitude":-11.588697},{"latitude":10.350556,"longitude":-13.569167},{"latitude":10.035467,"longitude":-10.769825},{"latitude":11.326058,"longitude":-12.28685},{"latitude":16.741389,"longitude":-22.949444},{"latitude":16.136531,"longitude":-22.888897},{"latitude":15.155928,"longitude":-23.213703},{"latitude":16.588356,"longitude":-24.284656},{"latitude":16.833689,"longitude":-25.054661},{"latitude":8.977889,"longitude":38.799319},{"latitude":9.003681,"longitude":38.726019},{"latitude":6.039389,"longitude":37.590453},{"latitude":14.14675,"longitude":38.772833},{"latitude":11.608075,"longitude":37.321644},{"latitude":9.6247,"longitude":41.854203},{"latitude":8.128764,"longitude":34.563131},{"latitude":12.5199,"longitude":37.434047},{"latitude":3.4833,"longitude":72.8369},{"latitude":7.666094,"longitude":36.816639},{"latitude":11.975014,"longitude":38.979969},{"latitude":13.467367,"longitude":39.533464},{"latitude":10.01855,"longitude":34.586253},{"latitude":-3.324019,"longitude":29.318519},{"latitude":9.518167,"longitude":44.088758},{"latitude":10.389167,"longitude":44.941106},{"latitude":-0.377353,"longitude":42.459233},{"latitude":41.9929342,"longitude":-86.1280125},{"latitude":31.183903,"longitude":29.948889},{"latitude":22.375953,"longitude":31.611722},{"latitude":30.121944,"longitude":31.405556},{"latitude":30.116362,"longitude":30.915445},{"latitude":27.178317,"longitude":33.799436},{"latitude":31.068975,"longitude":34.129194},{"latitude":25.671028,"longitude":32.706583},{"latitude":31.325356,"longitude":27.221689},{"latitude":31.279444,"longitude":32.24},{"latitude":28.685278,"longitude":34.0625},{"latitude":23.964356,"longitude":32.819975},{"latitude":28.209028,"longitude":33.645517},{"latitude":0.404458,"longitude":35.238928},{"latitude":0.271342,"longitude":34.787297},{"latitude":-0.086139,"longitude":34.728892},{"latitude":0.971989,"longitude":34.958556},{"latitude":39.9750278,"longitude":-81.5775833},{"latitude":3.121967,"longitude":35.608692},{"latitude":-2.252417,"longitude":40.913097},{"latitude":-4.034833,"longitude":39.59425},{"latitude":-0.787953,"longitude":36.433528},{"latitude":-1.321719,"longitude":36.814833},{"latitude":-1.277267,"longitude":36.862339},{"latitude":1.733239,"longitude":40.091606},{"latitude":28.795372,"longitude":22.080939},{"latitude":28.638458,"longitude":21.438042},{"latitude":25.145564,"longitude":10.142647},{"latitude":24.178728,"longitude":23.313958},{"latitude":32.096786,"longitude":20.269472},{"latitude":26.986964,"longitude":14.472525},{"latitude":32.663544,"longitude":13.159011},{"latitude":30.378139,"longitude":19.576444},{"latitude":30.500013,"longitude":18.527161},{"latitude":29.110106,"longitude":15.965567},{"latitude":29.472567,"longitude":17.934936},{"latitude":30.151695,"longitude":9.715305},{"latitude":28.589878,"longitude":17.293858},{"latitude":-1.677203,"longitude":29.258875},{"latitude":-1.968628,"longitude":30.13945},{"latitude":-2.462242,"longitude":28.90795},{"latitude":19.153867,"longitude":30.430094},{"latitude":11.785889,"longitude":34.336656},{"latitude":13.614892,"longitude":25.32465},{"latitude":15.387494,"longitude":36.328842},{"latitude":11.138028,"longitude":29.701122},{"latitude":13.153219,"longitude":30.232675},{"latitude":4.872006,"longitude":31.601117},{"latitude":9.558969,"longitude":31.652242},{"latitude":15.589497,"longitude":32.553161},{"latitude":-3.367794,"longitude":36.633333},{"latitude":-6.878111,"longitude":39.202625},{"latitude":-6.170436,"longitude":35.752578},{"latitude":-7.668633,"longitude":35.752114},{"latitude":-3.429406,"longitude":37.074461},{"latitude":-3.376306,"longitude":35.818278},{"latitude":-10.339058,"longitude":40.181781},{"latitude":-2.444486,"longitude":32.932667},{"latitude":-5.257264,"longitude":39.811417},{"latitude":-5.092358,"longitude":39.071158},{"latitude":-6.222025,"longitude":39.224886},{"latitude":0.042386,"longitude":32.443503},{"latitude":51.220278,"longitude":6.792778},{"latitude":1.727578,"longitude":33.622861},{"latitude":41.414742,"longitude":19.720561},{"latitude":42.569583,"longitude":27.515236},{"latitude":43.151444,"longitude":25.712889},{"latitude":42.067806,"longitude":24.850833},{"latitude":42.695194,"longitude":23.406167},{"latitude":42.376667,"longitude":25.655195},{"latitude":43.232072,"longitude":27.825106},{"latitude":34.875117,"longitude":33.62485},{"latitude":34.718039,"longitude":32.485731},{"latitude":34.590416,"longitude":32.987861},{"latitude":42.561353,"longitude":18.268244},{"latitude":45.542169,"longitude":18.636233},{"latitude":45.462667,"longitude":18.810156},{"latitude":44.893533,"longitude":13.922192},{"latitude":45.379483,"longitude":14.503756},{"latitude":45.216889,"longitude":14.570267},{"latitude":43.538944,"longitude":16.297964},{"latitude":46.294724,"longitude":16.38125},{"latitude":45.742931,"longitude":16.068778},{"latitude":44.108269,"longitude":15.346697},{"latitude":44.55761,"longitude":15.774361},{"latitude":38.948528,"longitude":-1.863517},{"latitude":38.282169,"longitude":-0.558156},{"latitude":36.843936,"longitude":-2.370097},{"latitude":43.563567,"longitude":-6.034622},{"latitude":37.842006,"longitude":-4.848878},{"latitude":43.301097,"longitude":-2.910608},{"latitude":41.297078,"longitude":2.078464},{"latitude":38.89125,"longitude":-6.821333},{"latitude":43.302061,"longitude":-8.377256},{"latitude":37.133222,"longitude":-3.635694},{"latitude":41.900969,"longitude":2.760547},{"latitude":37.188731,"longitude":-3.777356},{"latitude":40.294139,"longitude":-3.723833},{"latitude":38.872858,"longitude":1.373117},{"latitude":36.744622,"longitude":-6.060111},{"latitude":37.774972,"longitude":-0.812389},{"latitude":37.298792,"longitude":23.148986},{"latitude":40.493556,"longitude":-3.566764},{"latitude":36.6749,"longitude":-4.499106},{"latitude":39.862597,"longitude":4.218647},{"latitude":37.174917,"longitude":-5.615944},{"latitude":39.9375,"longitude":-3.503333},{"latitude":42.770039,"longitude":-1.646331},{"latitude":37.951111,"longitude":-1.230319},{"latitude":41.147392,"longitude":1.167172},{"latitude":36.645211,"longitude":-6.349458},{"latitude":40.952117,"longitude":-5.501986},{"latitude":39.598889,"longitude":2.702778},{"latitude":39.551675,"longitude":2.738808},{"latitude":39.862222,"longitude":4.258333},{"latitude":43.356519,"longitude":-1.790611},{"latitude":42.896333,"longitude":-8.415144},{"latitude":42.338611,"longitude":1.409167},{"latitude":40.496747,"longitude":-3.445872},{"latitude":39.489314,"longitude":-0.481625},{"latitude":41.706111,"longitude":-4.851944},{"latitude":40.370678,"longitude":-3.785144},{"latitude":42.882836,"longitude":-2.724469},{"latitude":42.2318,"longitude":-8.626775},{"latitude":43.427064,"longitude":-3.820006},{"latitude":41.666242,"longitude":-1.041553},{"latitude":37.418,"longitude":-5.893106},{"latitude":50.962097,"longitude":1.954764},{"latitude":49.868547,"longitude":3.029578},{"latitude":48.596219,"longitude":3.006786},{"latitude":48.545836,"longitude":-0.387444},{"latitude":49.971531,"longitude":2.697661},{"latitude":50.517385,"longitude":1.620587},{"latitude":50.325808,"longitude":3.461264},{"latitude":49.873019,"longitude":2.387075},{"latitude":44.174721,"longitude":0.590556},{"latitude":44.533333,"longitude":-1.125},{"latitude":44.828335,"longitude":-0.715556},{"latitude":44.825279,"longitude":0.518611},{"latitude":43.545555,"longitude":1.3675},{"latitude":45.658333,"longitude":-0.3175},{"latitude":46.587745,"longitude":0.306666},{"latitude":46.222644,"longitude":2.363964},{"latitude":45.862778,"longitude":1.179444},{"latitude":43.911667,"longitude":-0.5075},{"latitude":46.311303,"longitude":-0.401503},{"latitude":43.629075,"longitude":1.363819},{"latitude":43.38,"longitude":-0.418611},{"latitude":43.448891,"longitude":1.263333},{"latitude":43.178675,"longitude":-0.006439},{"latitude":45.729247,"longitude":0.221456},{"latitude":45.150833,"longitude":1.469167},{"latitude":45.198055,"longitude":0.815556},{"latitude":43.468419,"longitude":-1.523325},{"latitude":44.351387,"longitude":1.475278},{"latitude":43.007764,"longitude":1.10315},{"latitude":44.59639,"longitude":-1.110833},{"latitude":43.913887,"longitude":2.113056},{"latitude":43.55625,"longitude":2.289183},{"latitude":43.586113,"longitude":1.499167},{"latitude":43.989342,"longitude":3.183},{"latitude":43.771111,"longitude":2.010833},{"latitude":44.407869,"longitude":2.482672},{"latitude":45.534721,"longitude":2.423889},{"latitude":44.396946,"longitude":0.758889},{"latitude":45.628056,"longitude":-0.9725},{"latitude":44.146111,"longitude":-1.174444},{"latitude":43.709444,"longitude":-0.245278},{"latitude":44.025694,"longitude":1.378042},{"latitude":43.687778,"longitude":0.601667},{"latitude":44.982498,"longitude":-0.134722},{"latitude":43.090556,"longitude":1.695833},{"latitude":44.498919,"longitude":0.200514},{"latitude":45.887779,"longitude":-0.983056},{"latitude":48.056789,"longitude":-2.921244},{"latitude":47.474167,"longitude":2.393055},{"latitude":48.052508,"longitude":-3.664717},{"latitude":47.408056,"longitude":-1.1775},{"latitude":48.429764,"longitude":4.482222},{"latitude":48.109853,"longitude":7.359011},{"latitude":47.005886,"longitude":4.893425},{"latitude":47.039014,"longitude":5.42725},{"latitude":47.992222,"longitude":3.392222},{"latitude":49.122383,"longitude":5.469047},{"latitude":44.544236,"longitude":4.372192},{"latitude":45.080689,"longitude":3.762889},{"latitude":45.076389,"longitude":2.993611},{"latitude":46.20089,"longitude":5.292028},{"latitude":45.901947,"longitude":4.634906},{"latitude":46.534581,"longitude":3.423725},{"latitude":43.823334,"longitude":2.745278},{"latitude":44.177776,"longitude":2.515},{"latitude":48.982142,"longitude":6.251319},{"latitude":42.552664,"longitude":9.483731},{"latitude":42.530753,"longitude":8.793189},{"latitude":41.500557,"longitude":9.097777},{"latitude":41.923637,"longitude":8.802917},{"latitude":41.660558,"longitude":8.889747},{"latitude":41.924416,"longitude":9.406},{"latitude":42.29361,"longitude":9.193055},{"latitude":47.850193,"longitude":3.497111},{"latitude":45.63805,"longitude":5.880225},{"latitude":45.786661,"longitude":3.169169},{"latitude":47.058056,"longitude":2.370278},{"latitude":45.56105,"longitude":5.975761},{"latitude":46.826108,"longitude":4.817633},{"latitude":46.191972,"longitude":6.268386},{"latitude":45.726387,"longitude":5.090833},{"latitude":46.295103,"longitude":4.795767},{"latitude":46.412536,"longitude":4.013264},{"latitude":46.058334,"longitude":4.001389},{"latitude":45.929233,"longitude":6.098764},{"latitude":45.362944,"longitude":5.329375},{"latitude":46.352525,"longitude":2.570486},{"latitude":44.921594,"longitude":4.9699},{"latitude":46.169689,"longitude":3.403736},{"latitude":44.891388,"longitude":2.421944},{"latitude":46.862194,"longitude":1.730667},{"latitude":45.727172,"longitude":4.944275},{"latitude":43.505554,"longitude":5.367778},{"latitude":43.384672,"longitude":6.387139},{"latitude":43.54205,"longitude":6.953478},{"latitude":45.540554,"longitude":4.296389},{"latitude":43.522736,"longitude":4.923844},{"latitude":43.215978,"longitude":2.306317},{"latitude":43.435555,"longitude":5.213611},{"latitude":43.658411,"longitude":7.215872},{"latitude":44.140481,"longitude":4.866717},{"latitude":42.740442,"longitude":2.870667},{"latitude":43.252506,"longitude":5.785189},{"latitude":44.069656,"longitude":4.142122},{"latitude":43.576194,"longitude":3.963014},{"latitude":43.323522,"longitude":3.353903},{"latitude":43.9073,"longitude":4.901831},{"latitude":43.606415,"longitude":5.10925},{"latitude":43.175835,"longitude":2.734167},{"latitude":44.502108,"longitude":3.532819},{"latitude":44.029847,"longitude":5.078058},{"latitude":47.053333,"longitude":2.6325},{"latitude":49.454444,"longitude":2.112778},{"latitude":48.058142,"longitude":1.376625},{"latitude":47.256839,"longitude":-0.115142},{"latitude":49.028669,"longitude":1.219864},{"latitude":49.533889,"longitude":0.088056},{"latitude":50.143492,"longitude":1.831892},{"latitude":47.987778,"longitude":1.760556},{"latitude":48.776072,"longitude":4.184492},{"latitude":49.384172,"longitude":1.1748},{"latitude":47.432222,"longitude":0.727606},{"latitude":47.082136,"longitude":-0.877064},{"latitude":48.031361,"longitude":-0.742986},{"latitude":47.896946,"longitude":2.163333},{"latitude":48.969444,"longitude":2.441389},{"latitude":49.253547,"longitude":2.519139},{"latitude":49.012779,"longitude":2.55},{"latitude":48.837653,"longitude":3.016117},{"latitude":48.604725,"longitude":2.671119},{"latitude":48.751922,"longitude":2.106189},{"latitude":48.725278,"longitude":2.359444},{"latitude":49.096647,"longitude":2.040833},{"latitude":48.774406,"longitude":2.201536},{"latitude":49.208689,"longitude":4.156581},{"latitude":48.322136,"longitude":4.016703},{"latitude":48.593275,"longitude":6.543456},{"latitude":49.226917,"longitude":5.672219},{"latitude":46.967283,"longitude":4.260572},{"latitude":47.002625,"longitude":3.113333},{"latitude":50.221814,"longitude":3.154236},{"latitude":50.310467,"longitude":4.033119},{"latitude":47.206567,"longitude":6.083681},{"latitude":48.76625,"longitude":7.200519},{"latitude":50.561942,"longitude":3.089444},{"latitude":50.618394,"longitude":2.642242},{"latitude":49.783942,"longitude":4.647078},{"latitude":47.637611,"longitude":6.203922},{"latitude":48.447911,"longitude":-4.418539},{"latitude":49.650106,"longitude":-1.470281},{"latitude":48.587683,"longitude":-2.079958},{"latitude":47.289444,"longitude":-2.346389},{"latitude":48.883057,"longitude":-1.564167},{"latitude":49.365339,"longitude":0.154306},{"latitude":47.760555,"longitude":-3.44},{"latitude":46.701944,"longitude":-1.378625},{"latitude":48.530258,"longitude":-4.151642},{"latitude":49.173333,"longitude":-0.45},{"latitude":48.281703,"longitude":-4.445017},{"latitude":47.948611,"longitude":0.201667},{"latitude":48.069508,"longitude":-1.734794},{"latitude":48.754378,"longitude":-3.471656},{"latitude":47.974981,"longitude":-4.167786},{"latitude":47.153189,"longitude":-1.610725},{"latitude":48.537777,"longitude":-2.854445},{"latitude":48.603222,"longitude":-3.815783},{"latitude":47.723303,"longitude":-2.718561},{"latitude":47.312189,"longitude":-2.149181},{"latitude":47.589583,"longitude":7.529914},{"latitude":47.921978,"longitude":7.399669},{"latitude":47.26889,"longitude":5.09},{"latitude":49.071667,"longitude":6.131667},{"latitude":48.324961,"longitude":6.069983},{"latitude":48.794331,"longitude":7.817613},{"latitude":48.636008,"longitude":4.899417},{"latitude":47.487,"longitude":6.790536},{"latitude":48.692069,"longitude":6.230458},{"latitude":48.583056,"longitude":5.955},{"latitude":46.903958,"longitude":6.327367},{"latitude":49.31,"longitude":4.05},{"latitude":48.538319,"longitude":7.628233},{"latitude":47.783131,"longitude":6.364056},{"latitude":43.247803,"longitude":6.126697},{"latitude":43.0973,"longitude":6.14603},{"latitude":43.757444,"longitude":4.416347},{"latitude":47.095472,"longitude":-56.380278},{"latitude":41.990278,"longitude":12.740833},{"latitude":42.760277,"longitude":10.239445},{"latitude":41.542436,"longitude":12.909019},{"latitude":41.060833,"longitude":14.081944},{"latitude":40.886033,"longitude":14.290781},{"latitude":43.683917,"longitude":10.39275},{"latitude":43.809953,"longitude":11.2051},{"latitude":42.759747,"longitude":11.071897},{"latitude":41.951946,"longitude":12.498889},{"latitude":42.430183,"longitude":12.064156},{"latitude":43.095906,"longitude":12.513222},{"latitude":45.899971,"longitude":15.530194},{"latitude":46.223686,"longitude":14.457611},{"latitude":46.479861,"longitude":15.686131},{"latitude":45.473353,"longitude":13.614978},{"latitude":46.471975,"longitude":15.116997},{"latitude":48.946381,"longitude":14.427464},{"latitude":49.939653,"longitude":15.381808},{"latitude":50.2532,"longitude":15.845228},{"latitude":49.848111,"longitude":13.893506},{"latitude":50.121367,"longitude":14.543642},{"latitude":49.029444,"longitude":17.439722},{"latitude":50.202978,"longitude":12.914983},{"latitude":49.675172,"longitude":13.274617},{"latitude":50.540211,"longitude":15.006592},{"latitude":49.696292,"longitude":18.111053},{"latitude":49.165833,"longitude":16.124925},{"latitude":50.013419,"longitude":15.738647},{"latitude":49.720078,"longitude":14.100567},{"latitude":49.425833,"longitude":17.404722},{"latitude":50.100833,"longitude":14.26},{"latitude":49.151269,"longitude":16.694433},{"latitude":50.216581,"longitude":14.395806},{"latitude":32.011389,"longitude":34.886667},{"latitude":31.287003,"longitude":34.722953},{"latitude":31.839472,"longitude":34.821844},{"latitude":32.440814,"longitude":35.007661},{"latitude":29.561281,"longitude":34.960081},{"latitude":30.621656,"longitude":35.203325},{"latitude":32.809444,"longitude":35.043056},{"latitude":31.7625,"longitude":34.727222},{"latitude":32.981047,"longitude":35.571908},{"latitude":32.597139,"longitude":35.228803},{"latitude":31.328169,"longitude":35.388608},{"latitude":31.208347,"longitude":35.0123},{"latitude":29.94025,"longitude":34.93585},{"latitude":32.665142,"longitude":35.179458},{"latitude":30.776061,"longitude":34.666769},{"latitude":32.114661,"longitude":34.782239},{"latitude":35.857497,"longitude":14.4775},{"latitude":47.843333,"longitude":16.260139},{"latitude":48.183304,"longitude":14.040861},{"latitude":46.991067,"longitude":15.439628},{"latitude":47.260219,"longitude":11.343964},{"latitude":48.233219,"longitude":14.187511},{"latitude":47.793304,"longitude":13.004333},{"latitude":48.110278,"longitude":16.569722},{"latitude":46.642514,"longitude":14.337739},{"latitude":47.202751,"longitude":14.744223},{"latitude":38.883278,"longitude":-9.030097},{"latitude":36.97139,"longitude":-25.170639},{"latitude":41.8578,"longitude":-6.707125},{"latitude":38.078903,"longitude":-7.932397},{"latitude":41.587058,"longitude":-8.445139},{"latitude":43.824583,"longitude":18.331467},{"latitude":46.17655,"longitude":21.262022},{"latitude":46.521946,"longitude":26.910278},{"latitude":47.658389,"longitude":23.470022},{"latitude":44.503194,"longitude":26.102111},{"latitude":44.362222,"longitude":28.488333},{"latitude":46.785167,"longitude":23.686167},{"latitude":45.42,"longitude":22.253333},{"latitude":44.318139,"longitude":23.888611},{"latitude":47.178492,"longitude":27.620631},{"latitude":47.025278,"longitude":21.9025},{"latitude":44.572161,"longitude":26.102178},{"latitude":45.785597,"longitude":24.091342},{"latitude":47.703275,"longitude":22.8857},{"latitude":47.6875,"longitude":26.354056},{"latitude":45.062486,"longitude":28.714311},{"latitude":46.467714,"longitude":24.412525},{"latitude":45.809861,"longitude":21.337861},{"latitude":47.08385,"longitude":6.792836},{"latitude":46.238064,"longitude":6.10895},{"latitude":46.487499,"longitude":7.250834},{"latitude":46.219592,"longitude":7.326764},{"latitude":46.943889,"longitude":8.284167},{"latitude":47.398644,"longitude":8.648231},{"latitude":47.092369,"longitude":8.305117},{"latitude":47.078872,"longitude":9.064831},{"latitude":46.743333,"longitude":8.11},{"latitude":46.843208,"longitude":6.915058},{"latitude":46.974914,"longitude":8.39915},{"latitude":46.004275,"longitude":8.910578},{"latitude":46.9141,"longitude":7.497153},{"latitude":47.181628,"longitude":7.417189},{"latitude":47.464722,"longitude":8.549167},{"latitude":47.485033,"longitude":9.560775},{"latitude":46.534075,"longitude":9.884106},{"latitude":39.93495,"longitude":32.740775},{"latitude":40.128082,"longitude":32.995083},{"latitude":39.949831,"longitude":32.688622},{"latitude":40.078919,"longitude":32.565625},{"latitude":36.982166,"longitude":35.280388},{"latitude":37.0021,"longitude":35.425894},{"latitude":38.726425,"longitude":30.601114},{"latitude":36.898731,"longitude":30.800461},{"latitude":36.947183,"longitude":37.478683},{"latitude":36.573472,"longitude":36.154},{"latitude":37.979,"longitude":32.561861},{"latitude":38.35375,"longitude":38.253944},{"latitude":40.829375,"longitude":35.521992},{"latitude":39.813828,"longitude":36.903497},{"latitude":38.435347,"longitude":38.091006},{"latitude":38.770386,"longitude":35.495428},{"latitude":39.451469,"longitude":31.365308},{"latitude":40.306281,"longitude":36.371089},{"latitude":37.785567,"longitude":29.701297},{"latitude":40.976922,"longitude":28.814606},{"latitude":39.619258,"longitude":27.925958},{"latitude":40.317972,"longitude":27.977694},{"latitude":61.076667,"longitude":-151.138056},{"latitude":39.784138,"longitude":30.582111},{"latitude":38.292392,"longitude":27.156953},{"latitude":38.319106,"longitude":27.159353},{"latitude":38.513022,"longitude":27.010053},{"latitude":37.785369,"longitude":30.581817},{"latitude":39.426708,"longitude":30.016872},{"latitude":40.684353,"longitude":29.375728},{"latitude":40.735028,"longitude":30.083336},{"latitude":36.713056,"longitude":28.7925},{"latitude":38.808887,"longitude":27.83386},{"latitude":43.064167,"longitude":-108.459722},{"latitude":37.140144,"longitude":27.669717},{"latitude":40.992975,"longitude":29.216539},{"latitude":38.606925,"longitude":39.291417},{"latitude":37.893897,"longitude":40.201019},{"latitude":39.710203,"longitude":39.527003},{"latitude":39.956501,"longitude":41.170166},{"latitude":40.995108,"longitude":39.789728},{"latitude":38.509794,"longitude":-107.894242},{"latitude":38.468219,"longitude":43.3323},{"latitude":37.928969,"longitude":41.116583},{"latitude":37.978886,"longitude":41.840436},{"latitude":38.517608,"longitude":26.977406},{"latitude":37.950747,"longitude":27.329014},{"latitude":47.838114,"longitude":27.781475},{"latitude":46.927744,"longitude":28.930978},{"latitude":41.179956,"longitude":20.742325},{"latitude":41.961622,"longitude":21.621381},{"latitude":36.151219,"longitude":-5.349664},{"latitude":44.818444,"longitude":20.309139},{"latitude":43.337289,"longitude":21.853722},{"latitude":42.359392,"longitude":19.251894},{"latitude":42.572778,"longitude":21.035833},{"latitude":42.404664,"longitude":18.723286},{"latitude":45.146889,"longitude":21.309889},{"latitude":48.170167,"longitude":17.212667},{"latitude":48.663055,"longitude":21.241112},{"latitude":48.402028,"longitude":17.118389},{"latitude":48.625247,"longitude":17.828444},{"latitude":48.637839,"longitude":19.134108},{"latitude":48.865003,"longitude":17.99225},{"latitude":49.073594,"longitude":20.241142},{"latitude":41.6959744,"longitude":-88.1292306},{"latitude":21.917475,"longitude":-71.939561},{"latitude":21.773625,"longitude":-72.265886},{"latitude":21.515739,"longitude":-71.528528},{"latitude":19.198586,"longitude":-69.429772},{"latitude":18.251464,"longitude":-71.1204},{"latitude":17.928981,"longitude":-71.644769},{"latitude":18.450711,"longitude":-68.911833},{"latitude":18.567367,"longitude":-68.363431},{"latitude":19.7579,"longitude":-70.570033},{"latitude":18.429664,"longitude":-69.668925},{"latitude":18.503706,"longitude":-69.761706},{"latitude":19.406092,"longitude":-70.604689},{"latitude":15.473528,"longitude":-88.837222},{"latitude":15.468958,"longitude":-90.406742},{"latitude":14.583272,"longitude":-90.527475},{"latitude":14.521017,"longitude":-91.697256},{"latitude":13.936192,"longitude":-90.835833},{"latitude":15.742481,"longitude":-86.853036},{"latitude":15.452639,"longitude":-87.923556},{"latitude":16.445367,"longitude":-85.906611},{"latitude":16.316814,"longitude":-86.522961},{"latitude":15.775864,"longitude":-87.475847},{"latitude":14.060883,"longitude":-87.217197},{"latitude":15.926847,"longitude":-85.93825},{"latitude":18.404247,"longitude":-76.969017},{"latitude":17.935667,"longitude":-76.7875},{"latitude":18.503717,"longitude":-77.913358},{"latitude":18.198806,"longitude":-76.534528},{"latitude":17.988558,"longitude":-76.823761},{"latitude":16.757061,"longitude":-99.753953},{"latitude":25.865572,"longitude":-100.237239},{"latitude":21.705558,"longitude":-102.317858},{"latitude":15.775317,"longitude":-96.262572},{"latitude":18.834764,"longitude":-99.2613},{"latitude":29.333917,"longitude":-101.100892},{"latitude":18.653739,"longitude":-91.799017},{"latitude":30.397439,"longitude":-107.874969},{"latitude":17.573767,"longitude":-99.514339},{"latitude":24.764547,"longitude":-107.474717},{"latitude":18.504667,"longitude":-88.326847},{"latitude":27.392639,"longitude":-109.833111},{"latitude":19.816794,"longitude":-90.500314},{"latitude":31.636133,"longitude":-106.428667},{"latitude":28.702875,"longitude":-105.964567},{"latitude":23.703336,"longitude":-98.956486},{"latitude":42.5956944,"longitude":-87.9278056},{"latitude":20.522403,"longitude":-86.925644},{"latitude":24.124194,"longitude":-104.528014},{"latitude":21.419453,"longitude":-104.842581},{"latitude":31.795281,"longitude":-116.602772},{"latitude":20.5218,"longitude":-103.311167},{"latitude":27.968983,"longitude":-110.925169},{"latitude":18.497189,"longitude":-97.419942},{"latitude":29.095858,"longitude":-111.047858},{"latitude":19.277011,"longitude":-103.577397},{"latitude":21.245033,"longitude":-86.739967},{"latitude":25.549497,"longitude":-100.928669},{"latitude":16.449336,"longitude":-95.093697},{"latitude":18.001731,"longitude":-102.220525},{"latitude":25.685194,"longitude":-109.080806},{"latitude":20.993464,"longitude":-101.480847},{"latitude":24.072694,"longitude":-110.362475},{"latitude":25.989194,"longitude":-111.348361},{"latitude":25.769894,"longitude":-97.525311},{"latitude":20.936981,"longitude":-89.657672},{"latitude":32.630634,"longitude":-115.241637},{"latitude":19.849944,"longitude":-101.0255},{"latitude":18.103419,"longitude":-94.580681},{"latitude":26.955733,"longitude":-101.470136},{"latitude":19.436303,"longitude":-99.072097},{"latitude":25.778489,"longitude":-100.106878},{"latitude":23.161356,"longitude":-106.266072},{"latitude":31.226083,"longitude":-110.975831},{"latitude":27.443918,"longitude":-99.57046},{"latitude":16.999906,"longitude":-96.726639},{"latitude":20.602671,"longitude":-97.460839},{"latitude":19.158144,"longitude":-98.371447},{"latitude":20.0772,"longitude":-98.782814},{"latitude":31.351878,"longitude":-113.525728},{"latitude":28.627394,"longitude":-100.535211},{"latitude":19.396692,"longitude":-102.039056},{"latitude":20.680083,"longitude":-105.254167},{"latitude":15.876861,"longitude":-97.089117},{"latitude":20.617289,"longitude":-100.185658},{"latitude":26.008908,"longitude":-98.228513},{"latitude":23.15185,"longitude":-109.721044},{"latitude":30.930222,"longitude":-114.808639},{"latitude":22.254303,"longitude":-100.930806},{"latitude":19.537964,"longitude":-98.173467},{"latitude":16.739919,"longitude":-93.173297},{"latitude":25.568278,"longitude":-103.410583},{"latitude":16.561822,"longitude":-93.026081},{"latitude":32.541064,"longitude":-116.970158},{"latitude":22.29645,"longitude":-97.865931},{"latitude":22.038292,"longitude":-98.806503},{"latitude":19.337072,"longitude":-99.566008},{"latitude":14.794339,"longitude":-92.370025},{"latitude":21.036528,"longitude":-86.877083},{"latitude":17.997,"longitude":-92.817361},{"latitude":19.145931,"longitude":-96.187267},{"latitude":22.897112,"longitude":-102.68689},{"latitude":17.601569,"longitude":-101.460536},{"latitude":20.045036,"longitude":-102.275955},{"latitude":19.144778,"longitude":-104.558631},{"latitude":20.755833,"longitude":-103.465278},{"latitude":11.990961,"longitude":-83.774086},{"latitude":12.190044,"longitude":-86.353872},{"latitude":12.428028,"longitude":-86.902361},{"latitude":12.141494,"longitude":-86.168178},{"latitude":14.047194,"longitude":-83.386722},{"latitude":9.340853,"longitude":-82.250842},{"latitude":9.458636,"longitude":-82.516806},{"latitude":8.391003,"longitude":-82.434992},{"latitude":8.914794,"longitude":-79.599633},{"latitude":8.973339,"longitude":-79.555583},{"latitude":8.085597,"longitude":-80.945253},{"latitude":9.071364,"longitude":-79.383453},{"latitude":9.163606,"longitude":-83.329872},{"latitude":36.2106944,"longitude":-115.1944444},{"latitude":8.601556,"longitude":-82.968614},{"latitude":9.981408,"longitude":-84.772736},{"latitude":38.8819456,"longitude":-83.8827367},{"latitude":10.202033,"longitude":-83.472167},{"latitude":8.916347,"longitude":-83.507267},{"latitude":8.653775,"longitude":-83.180544},{"latitude":10.217194,"longitude":-83.797003},{"latitude":10.593289,"longitude":-85.544408},{"latitude":11.035277,"longitude":-84.706108},{"latitude":9.957961,"longitude":-83.022006},{"latitude":9.97649,"longitude":-85.653},{"latitude":9.993861,"longitude":-84.208806},{"latitude":9.732169,"longitude":-82.983214},{"latitude":8.951025,"longitude":-83.468583},{"latitude":9.443164,"longitude":-84.129772},{"latitude":10.288278,"longitude":-83.713519},{"latitude":8.826111,"longitude":-82.958885},{"latitude":13.440947,"longitude":-89.055728},{"latitude":13.699492,"longitude":-89.119861},{"latitude":18.271103,"longitude":-73.788289},{"latitude":19.732989,"longitude":-72.194739},{"latitude":18.241083,"longitude":-72.5185},{"latitude":18.58005,"longitude":-72.292542},{"latitude":20.365317,"longitude":-74.506206},{"latitude":20.396331,"longitude":-76.621494},{"latitude":22.027053,"longitude":-78.789617},{"latitude":22.460986,"longitude":-78.328422},{"latitude":22.15,"longitude":-80.414167},{"latitude":21.616453,"longitude":-81.545989},{"latitude":21.420428,"longitude":-77.847433},{"latitude":19.969769,"longitude":-75.835414},{"latitude":21.499722,"longitude":-78.202778},{"latitude":19.906458,"longitude":-75.207056},{"latitude":20.085419,"longitude":-75.158328},{"latitude":22.989153,"longitude":-82.409086},{"latitude":20.785589,"longitude":-76.315108},{"latitude":22.336261,"longitude":-83.642111},{"latitude":20.654114,"longitude":-74.922114},{"latitude":20.288172,"longitude":-77.0893},{"latitude":21.834689,"longitude":-82.783819},{"latitude":23.032778,"longitude":-82.579444},{"latitude":22.421356,"longitude":-83.678428},{"latitude":22.871529,"longitude":-82.509308},{"latitude":22.492192,"longitude":-79.943611},{"latitude":21.509453,"longitude":-77.020375},{"latitude":21.642525,"longitude":-82.955114},{"latitude":21.969969,"longitude":-79.442692},{"latitude":42.6149167,"longitude":-88.3895833},{"latitude":23.034445,"longitude":-81.435278},{"latitude":20.987642,"longitude":-76.9358},{"latitude":19.686981,"longitude":-79.882789},{"latitude":19.292778,"longitude":-81.35775},{"latitude":24.287664,"longitude":-77.684614},{"latitude":24.698283,"longitude":-77.795611},{"latitude":26.511406,"longitude":-77.083472},{"latitude":25.053814,"longitude":-78.048997},{"latitude":22.441828,"longitude":-73.970858},{"latitude":26.004639,"longitude":-77.395483},{"latitude":26.745336,"longitude":-77.391269},{"latitude":25.417108,"longitude":-77.88085},{"latitude":25.738331,"longitude":-77.840114},{"latitude":25.699881,"longitude":-79.264656},{"latitude":41.9338342,"longitude":-88.7056864},{"latitude":23.562631,"longitude":-75.877958},{"latitude":23.466667,"longitude":-75.78167},{"latitude":25.474861,"longitude":-76.683489},{"latitude":25.284706,"longitude":-76.331011},{"latitude":24.594258,"longitude":-76.820214},{"latitude":24.8917,"longitude":-76.177739},{"latitude":24.169083,"longitude":-76.439056},{"latitude":26.558686,"longitude":-78.695553},{"latitude":20.975,"longitude":-73.666862},{"latitude":23.179014,"longitude":-75.093597},{"latitude":23.581444,"longitude":-75.270475},{"latitude":22.379528,"longitude":-73.0135},{"latitude":25.038958,"longitude":-77.466231},{"latitude":22.181803,"longitude":-75.729456},{"latitude":23.684378,"longitude":-74.836186},{"latitude":24.063275,"longitude":-74.523967},{"latitude":17.539144,"longitude":-88.308203},{"latitude":-18.830922,"longitude":-159.764233},{"latitude":-21.202739,"longitude":-159.805556},{"latitude":-17.755392,"longitude":177.443378},{"latitude":-18.043267,"longitude":178.559228},{"latitude":-21.241214,"longitude":-175.149644},{"latitude":-18.585336,"longitude":-173.961717},{"latitude":1.381636,"longitude":173.147036},{"latitude":-1.224469,"longitude":174.775614},{"latitude":-32.7033,"longitude":151.488},{"latitude":-13.238281,"longitude":-176.199228},{"latitude":-13.829969,"longitude":-172.008336},{"latitude":-14.331,"longitude":-170.7105},{"latitude":-22.434069,"longitude":-151.360614},{"latitude":-23.365353,"longitude":-149.524072},{"latitude":-17.352606,"longitude":-145.509956},{"latitude":-15.819928,"longitude":-140.88715},{"latitude":-15.119617,"longitude":-148.230697},{"latitude":-18.465861,"longitude":-136.439706},{"latitude":-16.05415,"longitude":-145.656994},{"latitude":-14.436764,"longitude":-146.070056},{"latitude":-23.079861,"longitude":-134.890333},{"latitude":-15.663333,"longitude":-146.884769},{"latitude":-16.583919,"longitude":-143.658369},{"latitude":-14.809458,"longitude":-138.812811},{"latitude":-14.709544,"longitude":-145.245814},{"latitude":-15.248289,"longitude":-146.616708},{"latitude":-14.868055,"longitude":-148.717225},{"latitude":-14.455781,"longitude":-145.024542},{"latitude":-8.795603,"longitude":-140.228789},{"latitude":40.4123056,"longitude":-86.9368889},{"latitude":-16.444378,"longitude":-151.751286},{"latitude":-14.954283,"longitude":-147.6608},{"latitude":-16.687242,"longitude":-151.021667},{"latitude":-17.489972,"longitude":-149.761869},{"latitude":-18.074814,"longitude":-140.945886},{"latitude":-16.426486,"longitude":-152.243669},{"latitude":-16.722861,"longitude":-151.465856},{"latitude":-17.699325,"longitude":168.319794},{"latitude":-21.053428,"longitude":164.837806},{"latitude":-20.546314,"longitude":164.255625},{"latitude":-20.7748,"longitude":167.239864},{"latitude":-22.258278,"longitude":166.472806},{"latitude":-21.481678,"longitude":168.037508},{"latitude":-20.790028,"longitude":165.259486},{"latitude":-20.640556,"longitude":166.572778},{"latitude":-22.014553,"longitude":166.212972},{"latitude":-37.008056,"longitude":174.791667},{"latitude":-38.739723,"longitude":176.084444},{"latitude":-37.029722,"longitude":174.973333},{"latitude":-43.489358,"longitude":172.532225},{"latitude":-43.81,"longitude":-176.457222},{"latitude":-45.928055,"longitude":170.198333},{"latitude":-38.663333,"longitude":177.978333},{"latitude":-43.906666,"longitude":170.128333},{"latitude":-42.713611,"longitude":170.985278},{"latitude":-37.866661,"longitude":175.332056},{"latitude":-39.646667,"longitude":176.766944},{"latitude":-35.262779,"longitude":173.911944},{"latitude":-35.07,"longitude":173.285278},{"latitude":-45.211666,"longitude":169.373333},{"latitude":-43.764999,"longitude":170.133333},{"latitude":-45.533056,"longitude":167.65},{"latitude":-40.973333,"longitude":175.633611},{"latitude":-39.008611,"longitude":174.179167},{"latitude":-41.298333,"longitude":173.221111},{"latitude":-46.412408,"longitude":168.312992},{"latitude":-40.206039,"longitude":175.387808},{"latitude":-44.97,"longitude":171.081667},{"latitude":-40.320556,"longitude":175.616944},{"latitude":-40.904722,"longitude":174.989167},{"latitude":-45.021111,"longitude":168.739167},{"latitude":-38.109167,"longitude":176.317222},{"latitude":-39.446389,"longitude":175.658333},{"latitude":-89.999997,"longitude":0},{"latitude":-37.671944,"longitude":176.19611},{"latitude":-44.302778,"longitude":171.225278},{"latitude":-44.235,"longitude":170.118333},{"latitude":-41.518333,"longitude":173.870278},{"latitude":-77.867358,"longitude":167.056572},{"latitude":-44.722222,"longitude":169.245556},{"latitude":-43.551111,"longitude":172.552778},{"latitude":-37.920556,"longitude":176.914167},{"latitude":-41.327221,"longitude":174.805278},{"latitude":-39.006944,"longitude":177.406667},{"latitude":-36.787777,"longitude":174.630278},{"latitude":-35.768333,"longitude":174.365},{"latitude":-41.738056,"longitude":171.580833},{"latitude":-39.962222,"longitude":175.025278},{"latitude":34.210017,"longitude":62.2283},{"latitude":34.399842,"longitude":70.498625},{"latitude":34.565853,"longitude":69.212328},{"latitude":31.505756,"longitude":65.847822},{"latitude":35.930789,"longitude":64.760917},{"latitude":36.706914,"longitude":67.209678},{"latitude":33.391331,"longitude":62.260975},{"latitude":36.750783,"longitude":65.913164},{"latitude":36.665111,"longitude":68.910833},{"latitude":26.270834,"longitude":50.63361},{"latitude":25.918362,"longitude":50.590557},{"latitude":18.240367,"longitude":42.656625},{"latitude":25.285306,"longitude":49.485189},{"latitude":20.296139,"longitude":41.634277},{"latitude":19.98435,"longitude":42.620881},{"latitude":25.911281,"longitude":49.591231},{"latitude":26.471161,"longitude":49.79789},{"latitude":26.265417,"longitude":50.152027},{"latitude":16.901111,"longitude":42.585833},{"latitude":26.302822,"longitude":43.773911},{"latitude":31.411942,"longitude":37.279469},{"latitude":27.437917,"longitude":41.686292},{"latitude":27.039028,"longitude":49.405083},{"latitude":21.3481,"longitude":39.173033},{"latitude":21.679564,"longitude":39.156536},{"latitude":27.900917,"longitude":45.528194},{"latitude":24.553422,"longitude":39.705061},{"latitude":17.611436,"longitude":44.419169},{"latitude":28.335192,"longitude":46.125069},{"latitude":25.174547,"longitude":47.488431},{"latitude":24.710333,"longitude":44.964527},{"latitude":24.107339,"longitude":41.036047},{"latitude":22.702608,"longitude":39.069842},{"latitude":29.626419,"longitude":43.490614},{"latitude":24.95764,"longitude":46.698776},{"latitude":28.079584,"longitude":48.610973},{"latitude":30.906589,"longitude":41.138217},{"latitude":26.723108,"longitude":50.030814},{"latitude":17.466875,"longitude":47.121431},{"latitude":-32.5625,"longitude":149.611},{"latitude":20.464744,"longitude":45.619644},{"latitude":28.365417,"longitude":36.618889},{"latitude":21.483418,"longitude":40.544334},{"latitude":25.212986,"longitude":46.640978},{"latitude":27.867844,"longitude":48.76915},{"latitude":31.692683,"longitude":38.7312},{"latitude":39.5022607,"longitude":-84.7843814},{"latitude":26.198553,"longitude":36.476381},{"latitude":24.144244,"longitude":38.06335},{"latitude":30.371111,"longitude":48.228333},{"latitude":32.434444,"longitude":48.39764},{"latitude":30.74445,"longitude":49.677183},{"latitude":30.337567,"longitude":50.827964},{"latitude":32.002372,"longitude":49.270364},{"latitude":30.835167,"longitude":49.534916},{"latitude":30.556192,"longitude":49.151879},{"latitude":31.337431,"longitude":48.76195},{"latitude":25.875742,"longitude":55.032994},{"latitude":28.944811,"longitude":50.834637},{"latitude":27.212678,"longitude":54.318592},{"latitude":27.481425,"longitude":52.615483},{"latitude":26.526156,"longitude":53.980211},{"latitude":26.532,"longitude":54.824847},{"latitude":29.260278,"longitude":50.323889},{"latitude":25.908869,"longitude":54.5394},{"latitude":26.8103,"longitude":53.356289},{"latitude":34.345853,"longitude":47.158128},{"latitude":35.245856,"longitude":47.009247},{"latitude":32.928889,"longitude":51.561111},{"latitude":32.567039,"longitude":51.691594},{"latitude":33.895333,"longitude":51.577044},{"latitude":32.750836,"longitude":51.861267},{"latitude":32.621108,"longitude":51.697017},{"latitude":37.325314,"longitude":49.605817},{"latitude":40.2424722,"longitude":-85.39575},{"latitude":34.138147,"longitude":49.847292},{"latitude":35.952097,"longitude":50.450778},{"latitude":34.98395,"longitude":50.806219},{"latitude":35.702983,"longitude":51.475131},{"latitude":35.416111,"longitude":51.152222},{"latitude":35.644806,"longitude":51.380695},{"latitude":35.689167,"longitude":51.313416},{"latitude":36.240061,"longitude":50.047153},{"latitude":35.776286,"longitude":50.881014},{"latitude":27.218317,"longitude":56.37785},{"latitude":28.726925,"longitude":57.670269},{"latitude":30.274444,"longitude":56.951111},{"latitude":27.158251,"longitude":56.172461},{"latitude":26.754639,"longitude":55.902353},{"latitude":29.550933,"longitude":55.672708},{"latitude":32.898056,"longitude":59.266111},{"latitude":36.501178,"longitude":61.064903},{"latitude":36.425094,"longitude":55.104833},{"latitude":-20.276,"longitude":148.755},{"latitude":33.66775,"longitude":56.892675},{"latitude":37.383272,"longitude":55.452008},{"latitude":36.909908,"longitude":50.679589},{"latitude":-31.282072,"longitude":-61.501594},{"latitude":28.891756,"longitude":53.723339},{"latitude":28.586675,"longitude":53.579144},{"latitude":27.372744,"longitude":53.188794},{"latitude":29.539242,"longitude":52.589786},{"latitude":38.427453,"longitude":44.973575},{"latitude":41.5209,"longitude":2.10508},{"latitude":38.133889,"longitude":46.235},{"latitude":36.77365,"longitude":48.359422},{"latitude":31.904908,"longitude":54.276503},{"latitude":31.098333,"longitude":61.543889},{"latitude":25.44335,"longitude":60.382114},{"latitude":29.475686,"longitude":60.906189},{"latitude":27.236117,"longitude":60.720039},{"latitude":27.419261,"longitude":62.315789},{"latitude":31.722556,"longitude":35.993214},{"latitude":31.972703,"longitude":35.991569},{"latitude":29.611619,"longitude":35.018067},{"latitude":32.160747,"longitude":37.149383},{"latitude":31.864722,"longitude":35.219167},{"latitude":32.356353,"longitude":36.259181},{"latitude":29.226567,"longitude":47.968928},{"latitude":33.820931,"longitude":35.488389},{"latitude":34.589333,"longitude":36.011322},{"latitude":24.432972,"longitude":54.651138},{"latitude":24.428333,"longitude":54.458084},{"latitude":24.073981,"longitude":52.463644},{"latitude":24.187428,"longitude":52.614},{"latitude":65.6558,"longitude":-16.9181},{"latitude":24.248249,"longitude":54.547722},{"latitude":24.780528,"longitude":52.559944},{"latitude":25.146219,"longitude":52.873711},{"latitude":24.861542,"longitude":53.077833},{"latitude":25.252778,"longitude":55.364444},{"latitude":25.112225,"longitude":56.323964},{"latitude":25.613483,"longitude":55.938817},{"latitude":25.328575,"longitude":55.51715},{"latitude":26.170986,"longitude":56.240569},{"latitude":20.675434,"longitude":58.890467},{"latitude":23.593278,"longitude":58.284444},{"latitude":17.038719,"longitude":54.091297},{"latitude":17.666,"longitude":54.024612},{"latitude":32.056108,"longitude":72.9484},{"latitude":-17.917,"longitude":25.817},{"latitude":46,"longitude":5},{"latitude":31.365014,"longitude":72.994842},{"latitude":25.233308,"longitude":62.329494},{"latitude":35.918786,"longitude":74.333644},{"latitude":28.284167,"longitude":68.449711},{"latitude":24.906547,"longitude":67.160797},{"latitude":31.521564,"longitude":74.403594},{"latitude":31.494794,"longitude":74.346239},{"latitude":33.050086,"longitude":73.638381},{"latitude":34.339022,"longitude":73.508639},{"latitude":32.563089,"longitude":71.570681},{"latitude":27.335156,"longitude":68.143053},{"latitude":24.893564,"longitude":66.938753},{"latitude":30.203222,"longitude":71.419111},{"latitude":26.219442,"longitude":68.390053},{"latitude":30.741025,"longitude":73.357736},{"latitude":26.954547,"longitude":64.132517},{"latitude":25.290487,"longitude":63.345083},{"latitude":33.993911,"longitude":71.514581},{"latitude":33.560153,"longitude":73.033217},{"latitude":30.251369,"longitude":66.937764},{"latitude":28.3839,"longitude":70.279572},{"latitude":33.616653,"longitude":73.099233},{"latitude":34.081112,"longitude":71.972583},{"latitude":33.849658,"longitude":73.798147},{"latitude":48.9797222,"longitude":-123.0788889},{"latitude":27.721989,"longitude":68.791683},{"latitude":34.813556,"longitude":72.352814},{"latitude":28.645142,"longitude":69.176917},{"latitude":24.841519,"longitude":68.838408},{"latitude":32.304664,"longitude":69.570433},{"latitude":31.358381,"longitude":69.463606},{"latitude":30.549069,"longitude":47.662142},{"latitude":36.180675,"longitude":37.224358},{"latitude":33.410636,"longitude":36.514267},{"latitude":35.285374,"longitude":40.175961},{"latitude":35.401094,"longitude":35.948681},{"latitude":34.557361,"longitude":38.316889},{"latitude":25.261125,"longitude":51.565056},{"latitude":-2.768122,"longitude":-171.710394},{"latitude":14.174308,"longitude":145.242536},{"latitude":15.119003,"longitude":145.729356},{"latitude":13.583953,"longitude":144.930025},{"latitude":13.48345,"longitude":144.795983},{"latitude":14.999203,"longitude":145.61935},{"latitude":-32.0372,"longitude":150.832},{"latitude":7.064758,"longitude":171.272022},{"latitude":9.396886,"longitude":167.470869},{"latitude":8.720122,"longitude":167.731661},{"latitude":1.986161,"longitude":-157.349778},{"latitude":28.201725,"longitude":-177.380636},{"latitude":7.461869,"longitude":151.843006},{"latitude":6.9851,"longitude":158.208989},{"latitude":7.367303,"longitude":134.544278},{"latitude":5.356975,"longitude":162.958386},{"latitude":9.498911,"longitude":138.082497},{"latitude":24.427892,"longitude":118.359197},{"latitude":22.672367,"longitude":120.461728},{"latitude":24.855136,"longitude":121.237636},{"latitude":22.754986,"longitude":121.101681},{"latitude":22.673853,"longitude":121.466481},{"latitude":22.577094,"longitude":120.350006},{"latitude":23.461779,"longitude":120.39283},{"latitude":22.028842,"longitude":121.533642},{"latitude":24.264668,"longitude":120.62058},{"latitude":-32.7875,"longitude":151.342},{"latitude":22.950361,"longitude":120.205778},{"latitude":24.818033,"longitude":120.939394},{"latitude":23.568669,"longitude":119.628311},{"latitude":22.793117,"longitude":121.181975},{"latitude":22.700239,"longitude":120.482},{"latitude":25.069722,"longitude":121.5525},{"latitude":25.077731,"longitude":121.232822},{"latitude":23.370833,"longitude":119.494444},{"latitude":24.023725,"longitude":121.616906},{"latitude":35.764722,"longitude":140.386389},{"latitude":36.166758,"longitude":137.922669},{"latitude":36.181083,"longitude":140.415444},{"latitude":24.289697,"longitude":153.979119},{"latitude":24.784,"longitude":141.322722},{"latitude":33.662222,"longitude":135.364444},{"latitude":34.590836,"longitude":133.933225},{"latitude":42.733333,"longitude":143.217222},{"latitude":42.7752,"longitude":141.692283},{"latitude":41.77,"longitude":140.821944},{"latitude":42.794475,"longitude":141.666447},{"latitude":43.880606,"longitude":144.164053},{"latitude":43.5775,"longitude":144.96},{"latitude":42.890544,"longitude":143.158475},{"latitude":45.404167,"longitude":141.800833},{"latitude":33.749027,"longitude":129.785417},{"latitude":33.93,"longitude":131.278611},{"latitude":34.284889,"longitude":129.33055},{"latitude":44.303914,"longitude":143.404028},{"latitude":43.670833,"longitude":142.4475},{"latitude":42.071667,"longitude":139.432911},{"latitude":45.242006,"longitude":141.186431},{"latitude":33.883083,"longitude":130.653},{"latitude":30.385569,"longitude":130.659017},{"latitude":32.666269,"longitude":128.832808},{"latitude":33.585942,"longitude":130.450686},{"latitude":30.605067,"longitude":130.991231},{"latitude":31.803397,"longitude":130.719408},{"latitude":31.877222,"longitude":131.448611},{"latitude":32.083611,"longitude":131.451389},{"latitude":33.479444,"longitude":131.737222},{"latitude":33.845942,"longitude":131.034689},{"latitude":32.837319,"longitude":130.85505},{"latitude":32.916944,"longitude":129.913611},{"latitude":31.367608,"longitude":130.845456},{"latitude":33.685,"longitude":131.040278},{"latitude":28.430633,"longitude":129.712542},{"latitude":27.425522,"longitude":128.700903},{"latitude":27.836381,"longitude":128.881253},{"latitude":36.142847,"longitude":136.223922},{"latitude":35.394078,"longitude":136.869667},{"latitude":34.750239,"longitude":137.703083},{"latitude":36.394611,"longitude":136.406544},{"latitude":36.181125,"longitude":133.324844},{"latitude":36.648333,"longitude":137.1875},{"latitude":34.812778,"longitude":138.298056},{"latitude":34.436111,"longitude":132.919444},{"latitude":34.756944,"longitude":133.855278},{"latitude":35.413611,"longitude":132.89},{"latitude":34.034667,"longitude":131.549194},{"latitude":35.492222,"longitude":133.236389},{"latitude":34.14386,"longitude":132.23575},{"latitude":33.546111,"longitude":133.669444},{"latitude":33.827222,"longitude":132.699722},{"latitude":34.785528,"longitude":135.438222},{"latitude":35.530069,"longitude":134.166553},{"latitude":34.132808,"longitude":134.606639},{"latitude":34.214167,"longitude":134.015556},{"latitude":34.596311,"longitude":135.602944},{"latitude":34.045322,"longitude":131.052144},{"latitude":40.734722,"longitude":140.690833},{"latitude":38.411894,"longitude":140.371331},{"latitude":38.060181,"longitude":138.413928},{"latitude":40.556447,"longitude":141.466325},{"latitude":39.428611,"longitude":141.135278},{"latitude":39.615556,"longitude":140.218611},{"latitude":40.703222,"longitude":141.368364},{"latitude":38.139722,"longitude":140.916944},{"latitude":38.404919,"longitude":141.219572},{"latitude":50.1929,"longitude":14.1532},{"latitude":35.454611,"longitude":139.450167},{"latitude":34.987053,"longitude":139.829208},{"latitude":33.115,"longitude":139.785833},{"latitude":35.841944,"longitude":139.410556},{"latitude":35.398272,"longitude":139.909936},{"latitude":35.798944,"longitude":140.011111},{"latitude":34.782033,"longitude":139.360306},{"latitude":35.513769,"longitude":139.393675},{"latitude":35.552258,"longitude":139.779694},{"latitude":35.748492,"longitude":139.348483},{"latitude":35.126389,"longitude":126.808889},{"latitude":35.878436,"longitude":127.11955},{"latitude":34.842328,"longitude":127.61685},{"latitude":38.142614,"longitude":128.598556},{"latitude":37.753561,"longitude":128.943625},{"latitude":40.5200833,"longitude":-90.6523889},{"latitude":33.511306,"longitude":126.493028},{"latitude":35.141175,"longitude":128.695792},{"latitude":35.179528,"longitude":128.938222},{"latitude":-17.5453,"longitude":128.307},{"latitude":35.593494,"longitude":129.351722},{"latitude":36.962214,"longitude":127.031072},{"latitude":37.445833,"longitude":127.113889},{"latitude":37.090617,"longitude":127.029594},{"latitude":37.558311,"longitude":126.790586},{"latitude":37.239406,"longitude":127.007053},{"latitude":35.987858,"longitude":129.420486},{"latitude":35.894108,"longitude":128.658856},{"latitude":36.631933,"longitude":128.35485},{"latitude":26.195814,"longitude":127.645869},{"latitude":26.728775,"longitude":127.761775},{"latitude":26.355612,"longitude":127.767633},{"latitude":24.344525,"longitude":124.186983},{"latitude":26.363506,"longitude":126.713806},{"latitude":25.846533,"longitude":131.263494},{"latitude":24.782833,"longitude":125.295111},{"latitude":25.944722,"longitude":131.326944},{"latitude":24.826667,"longitude":125.144722},{"latitude":24.653889,"longitude":124.675278},{"latitude":27.043964,"longitude":128.401517},{"latitude":26.274275,"longitude":127.756494},{"latitude":24.466944,"longitude":122.977778},{"latitude":14.508647,"longitude":121.019581},{"latitude":37.6194,"longitude":61.8967},{"latitude":7.165242,"longitude":124.209619},{"latitude":8.415619,"longitude":124.611219},{"latitude":7.827197,"longitude":123.458294},{"latitude":6.058003,"longitude":125.096033},{"latitude":-3.070875,"longitude":39.21943056},{"latitude":6.922419,"longitude":122.059633},{"latitude":16.375103,"longitude":120.619636},{"latitude":14.129167,"longitude":122.980181},{"latitude":14.986527,"longitude":120.4925},{"latitude":16.034786,"longitude":120.241106},{"latitude":12.361517,"longitude":121.046639},{"latitude":13.955017,"longitude":121.124925},{"latitude":13.208092,"longitude":120.60535},{"latitude":17.555331,"longitude":120.355797},{"latitude":15.729836,"longitude":121.500133},{"latitude":-2.8,"longitude":37.53333333},{"latitude":-0.245167,"longitude":36.8849},{"latitude":55.7001,"longitude":11.2549},{"latitude":16.619194,"longitude":121.252319},{"latitude":11.227628,"longitude":125.027758},{"latitude":10.642511,"longitude":122.929617},{"latitude":60.1939,"longitude":11.1004},{"latitude":9.333714,"longitude":123.300472},{"latitude":11.924503,"longitude":121.95405},{"latitude":11.035544,"longitude":125.741594},{"latitude":10.713044,"longitude":122.545297},{"latitude":11.679431,"longitude":122.376294},{"latitude":10.307542,"longitude":123.979439},{"latitude":44.9262845,"longitude":-89.6270018},{"latitude":9.742119,"longitude":118.758731},{"latitude":10.766044,"longitude":121.933439},{"latitude":-31.296944,"longitude":-57.996631},{"latitude":-33.010278,"longitude":-58.613056},{"latitude":-34.545889,"longitude":-60.930556},{"latitude":-31.794778,"longitude":-60.480361},{"latitude":-32.903611,"longitude":-60.785},{"latitude":-31.711666,"longitude":-60.811668},{"latitude":-34.559175,"longitude":-58.415606},{"latitude":-31.323619,"longitude":-64.207953},{"latitude":-30.345278,"longitude":-66.29361},{"latitude":-34.453189,"longitude":-58.589644},{"latitude":-34.56065,"longitude":-58.789564},{"latitude":-34.972222,"longitude":-57.894694},{"latitude":-34.676317,"longitude":-58.642756},{"latitude":-34.609939,"longitude":-58.612592},{"latitude":-37.444692,"longitude":-70.222469},{"latitude":-39.000672,"longitude":-67.620514},{"latitude":-32.831717,"longitude":-68.792856},{"latitude":-35.493597,"longitude":-69.574267},{"latitude":-34.588314,"longitude":-68.403854},{"latitude":-28.593214,"longitude":-65.750925},{"latitude":-27.765617,"longitude":-64.310122},{"latitude":-28.03775,"longitude":-67.580314},{"latitude":-29.381636,"longitude":-66.795839},{"latitude":-29.223888,"longitude":-67.438889},{"latitude":-26.840861,"longitude":-65.104944},{"latitude":-31.571472,"longitude":-68.418194},{"latitude":-33.085128,"longitude":-64.261314},{"latitude":-31.945183,"longitude":-65.146283},{"latitude":-34.135444,"longitude":-63.36225},{"latitude":-32.683639,"longitude":-62.157792},{"latitude":-33.725144,"longitude":-65.378086},{"latitude":-33.273192,"longitude":-66.356422},{"latitude":-27.445503,"longitude":-58.761864},{"latitude":-27.449986,"longitude":-59.056125},{"latitude":-26.212722,"longitude":-58.228111},{"latitude":-25.737281,"longitude":-54.473444},{"latitude":-29.689425,"longitude":-57.152078},{"latitude":-30.271922,"longitude":-57.640231},{"latitude":-27.385839,"longitude":-55.970728},{"latitude":-26.756519,"longitude":-60.493103},{"latitude":-24.855978,"longitude":-65.486169},{"latitude":-24.392778,"longitude":-65.097778},{"latitude":-23.152779,"longitude":-64.32917},{"latitude":-22.150556,"longitude":-65.5775},{"latitude":43.5603136,"longitude":-89.4828607},{"latitude":-26.397499,"longitude":-54.574722},{"latitude":-29.099472,"longitude":-59.250583},{"latitude":-27.518156,"longitude":-55.124156},{"latitude":-29.210278,"longitude":-59.68},{"latitude":-29.770555,"longitude":-57.978889},{"latitude":-41.943189,"longitude":-71.532289},{"latitude":-45.785347,"longitude":-67.465508},{"latitude":-42.90795,"longitude":-71.139472},{"latitude":-43.2105,"longitude":-65.270319},{"latitude":-40.869222,"longitude":-63.000389},{"latitude":-42.759161,"longitude":-65.102725},{"latitude":-64.238335,"longitude":-56.630833},{"latitude":-47.735292,"longitude":-65.904097},{"latitude":-53.777667,"longitude":-67.749389},{"latitude":-51.608875,"longitude":-69.312636},{"latitude":-54.843278,"longitude":-68.29575},{"latitude":-49.306775,"longitude":-67.802589},{"latitude":-46.537911,"longitude":-70.978689},{"latitude":-50.01655,"longitude":-68.579197},{"latitude":-38.724967,"longitude":-62.169317},{"latitude":-37.446111,"longitude":-61.889297},{"latitude":-36.890039,"longitude":-60.216619},{"latitude":-35.696183,"longitude":-63.758286},{"latitude":-38.386911,"longitude":-60.329711},{"latitude":-36.186594,"longitude":-61.076367},{"latitude":46.5274747,"longitude":-90.1313967},{"latitude":-37.934167,"longitude":-57.573333},{"latitude":-38.949,"longitude":-68.155711},{"latitude":45.8649344,"longitude":-84.637344},{"latitude":-35.844592,"longitude":-61.857553},{"latitude":-36.588322,"longitude":-64.275694},{"latitude":-41.151172,"longitude":-71.157542},{"latitude":-37.237392,"longitude":-59.227922},{"latitude":-37.235408,"longitude":-57.029239},{"latitude":-38.939683,"longitude":-69.264642},{"latitude":-40.075383,"longitude":-71.137294},{"latitude":-8.348347,"longitude":-49.301528},{"latitude":-22.875083,"longitude":-43.384708},{"latitude":2.077511,"longitude":-50.858236},{"latitude":-21.812,"longitude":-48.133028},{"latitude":-10.984,"longitude":-37.070333},{"latitude":-22.638564,"longitude":-50.455914},{"latitude":-9.866092,"longitude":-56.106206},{"latitude":-21.141342,"longitude":-50.424722},{"latitude":-1.37925,"longitude":-48.476292},{"latitude":-31.390528,"longitude":-54.112244},{"latitude":-19.851181,"longitude":-43.950628},{"latitude":-25.405078,"longitude":-49.232036},{"latitude":-21.267167,"longitude":-43.761056},{"latitude":-15.8711,"longitude":-47.918625},{"latitude":-22.345042,"longitude":-49.0538},{"latitude":2.846311,"longitude":-60.690069},{"latitude":-15.861344,"longitude":-52.388894},{"latitude":-25.000339,"longitude":-53.500764},{"latitude":-9.333936,"longitude":-54.965422},{"latitude":-19.63375,"longitude":-43.968856},{"latitude":-20.468667,"longitude":-54.6725},{"latitude":-27.134219,"longitude":-52.656553},{"latitude":-7.320444,"longitude":-47.458667},{"latitude":-28.725817,"longitude":-49.424739},{"latitude":-29.945944,"longitude":-51.144367},{"latitude":-21.698333,"longitude":-41.301669},{"latitude":-19.011931,"longitude":-57.673053},{"latitude":-25.528475,"longitude":-49.175775},{"latitude":-17.652283,"longitude":-39.253069},{"latitude":-29.197064,"longitude":-51.187536},{"latitude":-15.652931,"longitude":-56.116719},{"latitude":-7.599906,"longitude":-72.769489},{"latitude":-22.175056,"longitude":-51.424639},{"latitude":-3.038611,"longitude":-60.049721},{"latitude":-6.233156,"longitude":-57.776869},{"latitude":-22.812872,"longitude":-42.092633},{"latitude":-25.59615,"longitude":-54.487206},{"latitude":-27.670489,"longitude":-48.547181},{"latitude":-3.854928,"longitude":-32.423336},{"latitude":-20.278483,"longitude":-49.187472},{"latitude":-20.702817,"longitude":-46.335264},{"latitude":-3.776283,"longitude":-38.532556},{"latitude":-22.808903,"longitude":-43.243647},{"latitude":-10.786375,"longitude":-65.284792},{"latitude":-16.632033,"longitude":-49.220686},{"latitude":-21.773683,"longitude":-48.405078},{"latitude":-23.432075,"longitude":-46.469511},{"latitude":-22.791608,"longitude":-45.204778},{"latitude":-3.253906,"longitude":-52.253978},{"latitude":-3.127256,"longitude":-58.481186},{"latitude":-4.242342,"longitude":-56.000669},{"latitude":-14.815964,"longitude":-39.033197},{"latitude":-19.470722,"longitude":-42.487583},{"latitude":-18.444661,"longitude":-49.213361},{"latitude":-5.531292,"longitude":-47.46005},{"latitude":-1.414158,"longitude":-48.460739},{"latitude":-21.7915,"longitude":-43.386778},{"latitude":-7.148381,"longitude":-34.950681},{"latitude":-26.224453,"longitude":-48.797364},{"latitude":-7.269917,"longitude":-35.896364},{"latitude":-23.0075,"longitude":-47.134444},{"latitude":-27.782142,"longitude":-50.281486},{"latitude":-21.664039,"longitude":-49.730519},{"latitude":-23.333625,"longitude":-51.130072},{"latitude":-13.262086,"longitude":-43.408114},{"latitude":-19.661611,"longitude":-43.896403},{"latitude":-5.368589,"longitude":-49.138025},{"latitude":-0.889839,"longitude":-52.60225},{"latitude":-23.476392,"longitude":-52.016406},{"latitude":-16.706925,"longitude":-43.8189},{"latitude":47.8383333,"longitude":-90.3829444},{"latitude":-3.146042,"longitude":-59.9863},{"latitude":-9.510808,"longitude":-35.791678},{"latitude":0.050664,"longitude":-51.072178},{"latitude":-5.201919,"longitude":-37.364347},{"latitude":-23.509119,"longitude":-46.637753},{"latitude":-5.811381,"longitude":-61.278319},{"latitude":-26.879999,"longitude":-48.65139},{"latitude":-28.281683,"longitude":-54.169139},{"latitude":-5.911417,"longitude":-35.247717},{"latitude":3.855486,"longitude":-51.796867},{"latitude":-29.994428,"longitude":-51.171428},{"latitude":-2.893747,"longitude":-41.731961},{"latitude":-21.843014,"longitude":-46.567917},{"latitude":-28.243989,"longitude":-52.326558},{"latitude":-31.718353,"longitude":-52.327689},{"latitude":-9.362411,"longitude":-40.569097},{"latitude":-10.719417,"longitude":-48.399736},{"latitude":-22.549639,"longitude":-55.702614},{"latitude":-8.709294,"longitude":-63.902281},{"latitude":41.4539722,"longitude":-87.0070833},{"latitude":-9.583,"longitude":-67.4836},{"latitude":-8.126794,"longitude":-34.923039},{"latitude":-32.082617,"longitude":-52.166542},{"latitude":-22.910461,"longitude":-43.163133},{"latitude":-21.134167,"longitude":-47.774189},{"latitude":-22.93235,"longitude":-43.719092},{"latitude":-23.228172,"longitude":-45.862739},{"latitude":-2.585361,"longitude":-44.234139},{"latitude":-23.626692,"longitude":-46.655375},{"latitude":-20.816567,"longitude":-49.406511},{"latitude":-23.925206,"longitude":-46.2875},{"latitude":-12.910994,"longitude":-38.331044},{"latitude":-1.4896,"longitude":-56.396803},{"latitude":-5.059942,"longitude":-42.823478},{"latitude":-3.382944,"longitude":-64.724056},{"latitude":-8.155256,"longitude":-70.783269},{"latitude":-24.317775,"longitude":-50.651592},{"latitude":2.223472,"longitude":-55.946056},{"latitude":-4.255669,"longitude":-69.935828},{"latitude":-3.786008,"longitude":-49.720267},{"latitude":-0.148419,"longitude":-66.985589},{"latitude":-9.400878,"longitude":-38.250575},{"latitude":-29.782178,"longitude":-57.038189},{"latitude":-18.882844,"longitude":-48.225594},{"latitude":-20.777067,"longitude":-51.564761},{"latitude":-19.765,"longitude":-47.964778},{"latitude":-21.590067,"longitude":-45.473342},{"latitude":-12.694375,"longitude":-60.098269},{"latitude":-20.258056,"longitude":-40.286389},{"latitude":0.6075,"longitude":-69.185837},{"latitude":-21.984561,"longitude":-47.334764},{"latitude":-18.348531,"longitude":-70.338742},{"latitude":-45.916058,"longitude":-71.689475},{"latitude":-33.5618,"longitude":-70.6884},{"latitude":-46.583341,"longitude":-71.687405},{"latitude":-22.498175,"longitude":-68.903575},{"latitude":-36.582497,"longitude":-72.031367},{"latitude":-53.002642,"longitude":-70.854586},{"latitude":-45.594211,"longitude":-72.106133},{"latitude":-20.535222,"longitude":-70.181275},{"latitude":-33.392975,"longitude":-70.785803},{"latitude":-23.444478,"longitude":-70.4451},{"latitude":-53.2537,"longitude":-70.319228},{"latitude":-43.189167,"longitude":-71.851112},{"latitude":-37.401731,"longitude":-72.425444},{"latitude":-54.931072,"longitude":-67.626261},{"latitude":-36.77265,"longitude":-73.063106},{"latitude":-27.164792,"longitude":-109.421831},{"latitude":-40.611208,"longitude":-73.061042},{"latitude":-28.596403,"longitude":-70.755997},{"latitude":-34.173694,"longitude":-70.775694},{"latitude":-62.190833,"longitude":-58.986667},{"latitude":-29.916233,"longitude":-71.199522},{"latitude":-33.456278,"longitude":-70.546667},{"latitude":-38.766819,"longitude":-72.637097},{"latitude":-41.438886,"longitude":-73.093953},{"latitude":-42.932808,"longitude":-72.699114},{"latitude":-39.649956,"longitude":-73.086111},{"latitude":-1.212067,"longitude":-78.574636},{"latitude":-1.706275,"longitude":-79.378936},{"latitude":-0.462886,"longitude":-76.986842},{"latitude":-2.889467,"longitude":-78.984397},{"latitude":-0.453758,"longitude":-90.265914},{"latitude":-2.157419,"longitude":-79.883558},{"latitude":-3.423214,"longitude":-78.566994},{"latitude":0.338419,"longitude":-78.136422},{"latitude":0.184203,"longitude":-79.391956},{"latitude":-1.704381,"longitude":-79.552261},{"latitude":-0.906833,"longitude":-78.615756},{"latitude":-4.378231,"longitude":-79.941022},{"latitude":-2.299167,"longitude":-78.12075},{"latitude":-3.268903,"longitude":-79.961572},{"latitude":-2.067014,"longitude":-76.975742},{"latitude":-0.946078,"longitude":-80.678808},{"latitude":-2.851097,"longitude":-79.803619},{"latitude":-3.319667,"longitude":-79.769165},{"latitude":-1.041647,"longitude":-80.472206},{"latitude":-0.9894,"longitude":-79.465114},{"latitude":-0.141144,"longitude":-78.488214},{"latitude":-1.653433,"longitude":-78.656142},{"latitude":-3.435161,"longitude":-79.977817},{"latitude":-2.204994,"longitude":-80.988878},{"latitude":-0.248222,"longitude":-79.214447},{"latitude":-2.261036,"longitude":-79.680169},{"latitude":-0.986767,"longitude":-77.819447},{"latitude":-0.122956,"longitude":-76.33775},{"latitude":0.809506,"longitude":-77.708056},{"latitude":37.812545,"longitude":-107.662994},{"latitude":-25.23985,"longitude":-57.519133},{"latitude":-27.37065,"longitude":-56.853944},{"latitude":-23.44175,"longitude":-57.427122},{"latitude":-25.407853,"longitude":-54.619417},{"latitude":-22.044986,"longitude":-60.621694},{"latitude":-26.881467,"longitude":-58.318036},{"latitude":4.452775,"longitude":-75.766447},{"latitude":0.505228,"longitude":-76.500836},{"latitude":9.045542,"longitude":-73.974931},{"latitude":7.1265,"longitude":-73.184778},{"latitude":4.701594,"longitude":-74.146947},{"latitude":10.889589,"longitude":-74.780819},{"latitude":6.202917,"longitude":-77.394675},{"latitude":3.819628,"longitude":-76.989767},{"latitude":7.927567,"longitude":-72.511547},{"latitude":10.442381,"longitude":-75.512961},{"latitude":3.543222,"longitude":-76.381583},{"latitude":1.814417,"longitude":-78.749228},{"latitude":9.332742,"longitude":-75.285594},{"latitude":7.024331,"longitude":-73.8068},{"latitude":1.589189,"longitude":-75.564372},{"latitude":4.276242,"longitude":-74.796692},{"latitude":61.4370608,"longitude":-142.9030737},{"latitude":2.570133,"longitude":-77.8986},{"latitude":4.812333,"longitude":-74.064919},{"latitude":4.421608,"longitude":-75.1333},{"latitude":0.861925,"longitude":-77.671764},{"latitude":7.811956,"longitude":-76.716428},{"latitude":11.232528,"longitude":-72.490139},{"latitude":-4.193549,"longitude":-69.943163},{"latitude":6.219958,"longitude":-75.590519},{"latitude":9.284739,"longitude":-74.846092},{"latitude":8.823744,"longitude":-75.825831},{"latitude":1.253664,"longitude":-70.233878},{"latitude":5.029597,"longitude":-75.464708},{"latitude":2.95015,"longitude":-75.294},{"latitude":8.315061,"longitude":-73.358331},{"latitude":7.010369,"longitude":-74.715497},{"latitude":12.221483,"longitude":-71.984817},{"latitude":6.184717,"longitude":-67.493164},{"latitude":4.812675,"longitude":-75.739519},{"latitude":1.857769,"longitude":-76.085719},{"latitude":2.4544,"longitude":-76.609319},{"latitude":1.396247,"longitude":-77.291478},{"latitude":13.356944,"longitude":-81.35833},{"latitude":5.212556,"longitude":-74.883647},{"latitude":6.164536,"longitude":-75.423119},{"latitude":11.526222,"longitude":-72.925958},{"latitude":2.579694,"longitude":-72.639358},{"latitude":11.11965,"longitude":-74.230647},{"latitude":12.583594,"longitude":-81.711192},{"latitude":2.152175,"longitude":-74.76635},{"latitude":6.451081,"longitude":-71.760261},{"latitude":7.068881,"longitude":-70.736925},{"latitude":5.690758,"longitude":-76.641181},{"latitude":4.088358,"longitude":-76.235133},{"latitude":10.435042,"longitude":-73.249506},{"latitude":4.167875,"longitude":-73.613761},{"latitude":-22.773336,"longitude":-64.312881},{"latitude":-17.421058,"longitude":-66.177114},{"latitude":-16.990019,"longitude":-65.141533},{"latitude":-11.040436,"longitude":-68.782972},{"latitude":-16.513339,"longitude":-68.192256},{"latitude":-17.962589,"longitude":-67.076236},{"latitude":-19.543069,"longitude":-65.723706},{"latitude":-18.975281,"longitude":-57.820586},{"latitude":-13.762208,"longitude":-65.435158},{"latitude":-19.007083,"longitude":-65.288747},{"latitude":-21.555736,"longitude":-64.701325},{"latitude":-14.818739,"longitude":-64.918019},{"latitude":-21.255231,"longitude":-63.405611},{"latitude":-17.644756,"longitude":-63.135364},{"latitude":-21.960925,"longitude":-63.651669},{"latitude":5.452831,"longitude":-55.187783},{"latitude":4.819808,"longitude":-52.360447},{"latitude":3.8976,"longitude":-51.804083},{"latitude":-5.256767,"longitude":-79.442856},{"latitude":-2.796128,"longitude":-76.466617},{"latitude":-10.729117,"longitude":-73.766503},{"latitude":60.1269383,"longitude":-149.4188122},{"latitude":-11.411578,"longitude":-69.488711},{"latitude":-8.377939,"longitude":-74.574297},{"latitude":-9.149614,"longitude":-78.52385},{"latitude":-9.768131,"longitude":-70.706456},{"latitude":-17.178961,"longitude":-70.930803},{"latitude":-6.787475,"longitude":-79.828097},{"latitude":-13.154819,"longitude":-74.204417},{"latitude":-13.706408,"longitude":-73.350378},{"latitude":-9.347444,"longitude":-77.598392},{"latitude":-12.021889,"longitude":-77.114319},{"latitude":-7.1691,"longitude":-76.728561},{"latitude":-11.783144,"longitude":-75.473394},{"latitude":-15.467103,"longitude":-70.158169},{"latitude":41.7033,"longitude":-86.8211},{"latitude":-17.695036,"longitude":-71.343964},{"latitude":-12.160708,"longitude":-76.998942},{"latitude":-3.552528,"longitude":-80.381356},{"latitude":-5.893772,"longitude":-76.118211},{"latitude":-11.9287,"longitude":-77.061139},{"latitude":-6.201806,"longitude":-77.856064},{"latitude":-3.784739,"longitude":-73.308806},{"latitude":-16.341072,"longitude":-71.583083},{"latitude":-11.128639,"longitude":-75.3505},{"latitude":-8.081411,"longitude":-79.108761},{"latitude":-13.744864,"longitude":-76.220284},{"latitude":-6.508742,"longitude":-76.373247},{"latitude":-18.053333,"longitude":-70.275833},{"latitude":-12.613611,"longitude":-69.228611},{"latitude":-5.20575,"longitude":-80.616444},{"latitude":-4.576639,"longitude":-81.254139},{"latitude":34.366944,"longitude":139.268611},{"latitude":-13.535722,"longitude":-71.938781},{"latitude":-34.789208,"longitude":-56.264703},{"latitude":-33.358867,"longitude":-56.499172},{"latitude":48.443965,"longitude":-113.218556},{"latitude":-34.838417,"longitude":-56.030806},{"latitude":-31.438481,"longitude":-57.985294},{"latitude":9.553422,"longitude":-69.237536},{"latitude":9.430225,"longitude":-64.470725},{"latitude":4.051819,"longitude":-67.701072},{"latitude":10.107139,"longitude":-64.689161},{"latitude":8.619575,"longitude":-70.220825},{"latitude":10.183375,"longitude":-67.557319},{"latitude":10.042747,"longitude":-69.358619},{"latitude":8.121898,"longitude":-63.537353},{"latitude":7.626078,"longitude":-66.164917},{"latitude":9.647722,"longitude":-68.574656},{"latitude":8.924656,"longitude":-67.417094},{"latitude":6.231989,"longitude":-62.854433},{"latitude":10.175603,"longitude":-70.065214},{"latitude":10.660014,"longitude":-63.261681},{"latitude":11.414867,"longitude":-69.681656},{"latitude":10.286589,"longitude":-66.816219},{"latitude":10.450333,"longitude":-64.130472},{"latitude":9.372167,"longitude":-66.922989},{"latitude":6.715438,"longitude":-61.639219},{"latitude":7.059722,"longitude":-69.496694},{"latitude":7.211081,"longitude":-70.75645},{"latitude":10.574078,"longitude":-62.312667},{"latitude":9.026944,"longitude":-69.75515},{"latitude":10.462453,"longitude":-66.092758},{"latitude":10.794406,"longitude":-63.981589},{"latitude":11.780775,"longitude":-70.151497},{"latitude":9.906953,"longitude":-67.379639},{"latitude":8.239167,"longitude":-72.271028},{"latitude":11.808822,"longitude":-66.179214},{"latitude":10.558208,"longitude":-71.727856},{"latitude":8.582294,"longitude":-71.161186},{"latitude":10.912926,"longitude":-63.967581},{"latitude":10.603117,"longitude":-66.990583},{"latitude":9.749067,"longitude":-63.1534},{"latitude":5.619992,"longitude":-67.606103},{"latitude":10.4805,"longitude":-68.073025},{"latitude":7.801317,"longitude":-72.202847},{"latitude":8.288528,"longitude":-62.760361},{"latitude":7.575706,"longitude":-70.174328},{"latitude":7.840831,"longitude":-72.439742},{"latitude":7.803514,"longitude":-71.165717},{"latitude":4.554722,"longitude":-61.144922},{"latitude":7.565111,"longitude":-72.035125},{"latitude":10.278728,"longitude":-68.755211},{"latitude":7.883317,"longitude":-67.444025},{"latitude":8.945147,"longitude":-64.151083},{"latitude":8.974425,"longitude":-71.943014},{"latitude":9.088994,"longitude":-62.094175},{"latitude":7.249381,"longitude":-61.528933},{"latitude":10.149733,"longitude":-67.9284},{"latitude":51.4838,"longitude":9.2259},{"latitude":9.340797,"longitude":-70.584089},{"latitude":9.222028,"longitude":-65.993583},{"latitude":5.965922,"longitude":-58.270336},{"latitude":3.372761,"longitude":-59.789439},{"latitude":17.136749,"longitude":-61.792667},{"latitude":13.074603,"longitude":-59.492456},{"latitude":15.336719,"longitude":-61.392211},{"latitude":15.547028,"longitude":-61.3},{"latitude":14.591033,"longitude":-61.003175},{"latitude":18.099914,"longitude":-63.047197},{"latitude":16.265306,"longitude":-61.531806},{"latitude":12.004247,"longitude":-61.786192},{"latitude":18.337306,"longitude":-64.973361},{"latitude":17.701889,"longitude":-64.798556},{"latitude":18.494861,"longitude":-67.129444},{"latitude":18.308889,"longitude":-65.661861},{"latitude":18.456828,"longitude":-66.098139},{"latitude":18.255694,"longitude":-67.148472},{"latitude":18.008306,"longitude":-66.563028},{"latitude":18.439417,"longitude":-66.001833},{"latitude":17.311194,"longitude":-62.718667},{"latitude":51.3659,"longitude":6.5155},{"latitude":14.020228,"longitude":-60.992936},{"latitude":13.733194,"longitude":-60.952597},{"latitude":12.501389,"longitude":-70.015221},{"latitude":12.131044,"longitude":-68.268511},{"latitude":12.188853,"longitude":-68.959803},{"latitude":17.496492,"longitude":-62.979439},{"latitude":18.040953,"longitude":-63.1089},{"latitude":18.204834,"longitude":-63.055084},{"latitude":11.149658,"longitude":-60.832194},{"latitude":10.595369,"longitude":-61.337242},{"latitude":18.444834,"longitude":-64.542975},{"latitude":66.5519,"longitude":-152.6222},{"latitude":12.699042,"longitude":-61.342431},{"latitude":12.887947,"longitude":-61.180161},{"latitude":13.144306,"longitude":-61.210861},{"latitude":43.352072,"longitude":77.040508},{"latitude":46.893333,"longitude":75.005},{"latitude":51.022222,"longitude":71.466944},{"latitude":42.853611,"longitude":71.303611},{"latitude":43.061306,"longitude":74.477556},{"latitude":40.608989,"longitude":72.793269},{"latitude":42.364167,"longitude":69.478889},{"latitude":59.3012,"longitude":-139.3937},{"latitude":51.150833,"longitude":51.543056},{"latitude":52.195,"longitude":77.073889},{"latitude":50.3513,"longitude":80.2344},{"latitude":43.86005,"longitude":51.091978},{"latitude":50.245833,"longitude":57.206667},{"latitude":40.4675,"longitude":50.046667},{"latitude":62.09325,"longitude":129.770672},{"latitude":62.534689,"longitude":114.038928},{"latitude":50.425394,"longitude":127.412478},{"latitude":48.528044,"longitude":135.188361},{"latitude":46.353611,"longitude":-87.395278},{"latitude":64.378139,"longitude":-173.243306},{"latitude":59.910989,"longitude":150.720439},{"latitude":69.783283,"longitude":170.597006},{"latitude":53.167889,"longitude":158.453669},{"latitude":46.888672,"longitude":142.717531},{"latitude":43.398953,"longitude":132.148017},{"latitude":52.026317,"longitude":113.305556},{"latitude":56.370556,"longitude":101.698331},{"latitude":52.268028,"longitude":104.388975},{"latitude":51.807764,"longitude":107.437644},{"latitude":50.345,"longitude":30.894722},{"latitude":48.073611,"longitude":37.739722},{"latitude":48.357222,"longitude":35.100556},{"latitude":45.052222,"longitude":33.975139},{"latitude":50.401694,"longitude":30.449697},{"latitude":49.8125,"longitude":23.956111},{"latitude":45.8183611,"longitude":-88.1145556},{"latitude":46.426767,"longitude":30.676464},{"latitude":59.800292,"longitude":30.262503},{"latitude":68.781672,"longitude":32.750822},{"latitude":52.527022,"longitude":31.016692},{"latitude":55.1265,"longitude":30.349639},{"latitude":54.89005,"longitude":20.592633},{"latitude":53.864472,"longitude":27.539683},{"latitude":53.882469,"longitude":28.030731},{"latitude":53.74,"longitude":91.385},{"latitude":53.363775,"longitude":83.538533},{"latitude":55.270094,"longitude":86.107208},{"latitude":54.967042,"longitude":73.310514},{"latitude":45.034689,"longitude":39.170539},{"latitude":42.816822,"longitude":47.652294},{"latitude":44.225072,"longitude":43.081889},{"latitude":45.109165,"longitude":42.112778},{"latitude":47.258208,"longitude":39.818089},{"latitude":43.449928,"longitude":39.956589},{"latitude":46.283333,"longitude":48.006278},{"latitude":48.782528,"longitude":44.345544},{"latitude":55.305836,"longitude":61.503333},{"latitude":53.393131,"longitude":58.755661},{"latitude":-36.1429,"longitude":175.2819},{"latitude":60.949272,"longitude":76.483617},{"latitude":57.914517,"longitude":56.021214},{"latitude":61.343694,"longitude":73.401842},{"latitude":56.743108,"longitude":60.802728},{"latitude":37.986814,"longitude":58.360967},{"latitude":40.063333,"longitude":53.007222},{"latitude":39.083333,"longitude":63.613333},{"latitude":38.543333,"longitude":68.825},{"latitude":39.775,"longitude":64.483333},{"latitude":39.700547,"longitude":66.983829},{"latitude":25.1174,"longitude":51.3228},{"latitude":41.257861,"longitude":69.281186},{"latitude":53.214194,"longitude":34.176447},{"latitude":55.972642,"longitude":37.414589},{"latitude":56.824736,"longitude":35.757678},{"latitude":51.814211,"longitude":39.229589},{"latitude":55.591531,"longitude":37.261486},{"latitude":61.64705,"longitude":50.84505},{"latitude":55.606186,"longitude":49.278728},{"latitude":51.795786,"longitude":55.456744},{"latitude":54.557511,"longitude":55.874417},{"latitude":53.504858,"longitude":50.164336},{"latitude":23.077242,"longitude":72.63465},{"latitude":20.699006,"longitude":77.058628},{"latitude":19.862728,"longitude":75.398114},{"latitude":19.088686,"longitude":72.867919},{"latitude":21.9884,"longitude":82.110983},{"latitude":23.287828,"longitude":69.670147},{"latitude":15.859286,"longitude":74.618292},{"latitude":22.336164,"longitude":73.226289},{"latitude":23.287467,"longitude":77.337375},{"latitude":21.752206,"longitude":72.185181},{"latitude":20.434364,"longitude":72.843206},{"latitude":24.267936,"longitude":72.204433},{"latitude":24.654681,"longitude":77.347347},{"latitude":15.380833,"longitude":73.831422},{"latitude":22.721786,"longitude":75.801086},{"latitude":23.177817,"longitude":80.052047},{"latitude":22.465522,"longitude":70.012556},{"latitude":23.112719,"longitude":70.100289},{"latitude":24.817197,"longitude":79.918597},{"latitude":16.664658,"longitude":74.289353},{"latitude":21.317069,"longitude":70.270403},{"latitude":21.092192,"longitude":79.047183},{"latitude":19.963739,"longitude":73.807644},{"latitude":18.582111,"longitude":73.919697},{"latitude":21.648675,"longitude":69.657219},{"latitude":22.309183,"longitude":70.779525},{"latitude":21.180406,"longitude":81.738753},{"latitude":17.627958,"longitude":75.934842},{"latitude":21.114061,"longitude":72.741792},{"latitude":24.617697,"longitude":73.8961},{"latitude":7.180756,"longitude":79.884117},{"latitude":8.301486,"longitude":80.4279},{"latitude":7.705756,"longitude":81.678783},{"latitude":6.821994,"longitude":79.886208},{"latitude":7.337081,"longitude":81.625881},{"latitude":9.792331,"longitude":80.070089},{"latitude":8.538514,"longitude":81.181853},{"latitude":35.17,"longitude":44.3483},{"latitude":12.255236,"longitude":104.563875},{"latitude":11.546556,"longitude":104.844139},{"latitude":13.410666,"longitude":103.81284},{"latitude":13.531897,"longitude":106.014531},{"latitude":28.175317,"longitude":94.802036},{"latitude":23.886978,"longitude":91.24045},{"latitude":23.746603,"longitude":92.802767},{"latitude":26.681206,"longitude":88.328567},{"latitude":23.643489,"longitude":86.148886},{"latitude":20.244364,"longitude":85.817781},{"latitude":22.654739,"longitude":88.446722},{"latitude":26.330508,"longitude":89.467203},{"latitude":23.834044,"longitude":86.425261},{"latitude":45.722778,"longitude":-87.093611},{"latitude":49.6543,"longitude":11.6539},{"latitude":24.744308,"longitude":84.951175},{"latitude":21.580231,"longitude":84.005728},{"latitude":24.75995,"longitude":93.896697},{"latitude":21.913536,"longitude":84.050383},{"latitude":22.813211,"longitude":86.168844},{"latitude":26.731528,"longitude":94.175536},{"latitude":24.308192,"longitude":92.007156},{"latitude":24.912928,"longitude":92.978742},{"latitude":27.295494,"longitude":94.09765},{"latitude":27.483853,"longitude":95.016922},{"latitude":26.119089,"longitude":85.313664},{"latitude":20.870036,"longitude":82.519553},{"latitude":23.474336,"longitude":87.427508},{"latitude":25.591317,"longitude":85.087992},{"latitude":25.759594,"longitude":87.410011},{"latitude":23.31425,"longitude":85.321675},{"latitude":22.25665,"longitude":84.814567},{"latitude":20.097411,"longitude":83.183797},{"latitude":17.721167,"longitude":83.224483},{"latitude":27.588283,"longitude":93.828061},{"latitude":21.452194,"longitude":91.963889},{"latitude":22.249611,"longitude":91.813286},{"latitude":24.1525,"longitude":89.049446},{"latitude":23.1838,"longitude":89.160833},{"latitude":24.437219,"longitude":88.616511},{"latitude":25.759228,"longitude":88.908869},{"latitude":24.963242,"longitude":91.866783},{"latitude":23.778783,"longitude":90.382689},{"latitude":23.843333,"longitude":90.397781},{"latitude":22.308919,"longitude":113.914603},{"latitude":22.436592,"longitude":114.080397},{"latitude":27.155831,"longitude":77.960892},{"latitude":25.440064,"longitude":81.733872},{"latitude":31.709594,"longitude":74.797264},{"latitude":28.070606,"longitude":73.207161},{"latitude":26.988339,"longitude":80.893117},{"latitude":25.452358,"longitude":82.859342},{"latitude":31.876706,"longitude":77.154367},{"latitude":30.270139,"longitude":74.755772},{"latitude":28.837039,"longitude":76.179094},{"latitude":28.422061,"longitude":79.450842},{"latitude":30.673469,"longitude":76.788542},{"latitude":26.4043,"longitude":80.410119},{"latitude":28.584511,"longitude":77.205783},{"latitude":30.189689,"longitude":78.180256},{"latitude":28.5665,"longitude":77.103088},{"latitude":26.293336,"longitude":78.227753},{"latitude":29.179444,"longitude":75.755336},{"latitude":25.491172,"longitude":78.558422},{"latitude":26.251092,"longitude":73.048869},{"latitude":26.824192,"longitude":75.812161},{"latitude":26.888653,"longitude":70.864967},{"latitude":32.689142,"longitude":74.837389},{"latitude":26.441444,"longitude":80.364864},{"latitude":25.160219,"longitude":75.845631},{"latitude":30.854681,"longitude":75.952592},{"latitude":34.135872,"longitude":77.546514},{"latitude":26.760594,"longitude":80.889339},{"latitude":32.233778,"longitude":75.634628},{"latitude":30.314847,"longitude":76.364469},{"latitude":29.033408,"longitude":79.473744},{"latitude":26.248489,"longitude":81.380506},{"latitude":29.993919,"longitude":77.425311},{"latitude":33.987139,"longitude":74.77425},{"latitude":24.562319,"longitude":80.854933},{"latitude":46.8933,"longitude":75.005},{"latitude":19.897914,"longitude":102.160764},{"latitude":15.132053,"longitude":105.781417},{"latitude":19.454864,"longitude":103.218208},{"latitude":16.556594,"longitude":104.759531},{"latitude":20.418358,"longitude":104.066583},{"latitude":17.988322,"longitude":102.563256},{"latitude":22.149556,"longitude":113.591558},{"latitude":27.505703,"longitude":83.41625},{"latitude":50.1972,"longitude":7.8916},{"latitude":26.708806,"longitude":85.922394},{"latitude":27.696583,"longitude":85.3591},{"latitude":28.200881,"longitude":83.982056},{"latitude":27.159456,"longitude":84.980122},{"latitude":26.481453,"longitude":87.264036},{"latitude":10.823656,"longitude":72.176042},{"latitude":12.949986,"longitude":77.668206},{"latitude":15.162783,"longitude":76.882775},{"latitude":17.908081,"longitude":77.487142},{"latitude":16.530433,"longitude":80.796847},{"latitude":11.030031,"longitude":77.043383},{"latitude":10.155556,"longitude":76.391389},{"latitude":11.136839,"longitude":75.9553},{"latitude":14.509961,"longitude":78.772833},{"latitude":9.152508,"longitude":92.819628},{"latitude":17.627178,"longitude":78.403361},{"latitude":17.453117,"longitude":78.467586},{"latitude":9.834508,"longitude":78.093378},{"latitude":12.961267,"longitude":74.890069},{"latitude":12.994414,"longitude":80.180517},{"latitude":16.542653,"longitude":79.318714},{"latitude":11.641161,"longitude":92.729744},{"latitude":11.968722,"longitude":79.810058},{"latitude":17.110361,"longitude":81.818208},{"latitude":11.783314,"longitude":78.065606},{"latitude":10.722428,"longitude":79.101567},{"latitude":13.632492,"longitude":79.543256},{"latitude":10.765364,"longitude":78.709722},{"latitude":8.482122,"longitude":76.920114},{"latitude":12.907214,"longitude":80.121861},{"latitude":27.403192,"longitude":89.424606},{"latitude":4.191833,"longitude":73.529128},{"latitude":13.912583,"longitude":100.60675},{"latitude":14.101975,"longitude":99.917219},{"latitude":14.874561,"longitude":100.663367},{"latitude":3.683214,"longitude":125.528019},{"latitude":12.679944,"longitude":101.005028},{"latitude":13.7688,"longitude":102.315492},{"latitude":18.270933,"longitude":99.504167},{"latitude":18.132169,"longitude":100.164664},{"latitude":12.636225,"longitude":99.951533},{"latitude":15.277306,"longitude":100.295861},{"latitude":16.824322,"longitude":101.251389},{"latitude":15.672997,"longitude":100.136794},{"latitude":16.782939,"longitude":100.279122},{"latitude":17.234211,"longitude":99.057911},{"latitude":6.661403,"longitude":100.080317},{"latitude":6.519922,"longitude":101.7434},{"latitude":8.095969,"longitude":98.988764},{"latitude":7.186564,"longitude":100.608031},{"latitude":6.785458,"longitude":101.153569},{"latitude":9.547794,"longitude":100.062272},{"latitude":8.471147,"longitude":99.955625},{"latitude":8.1132,"longitude":98.316872},{"latitude":9.777622,"longitude":98.585483},{"latitude":6.933206,"longitude":100.392975},{"latitude":7.508744,"longitude":99.616578},{"latitude":17.386436,"longitude":102.788247},{"latitude":17.195142,"longitude":104.118625},{"latitude":14.868264,"longitude":103.498256},{"latitude":17.439133,"longitude":101.722064},{"latitude":14.934514,"longitude":102.078639},{"latitude":16.07035,"longitude":103.6459},{"latitude":51.6377,"longitude":13.2419},{"latitude":-24.95841,"longitude":153.3145},{"latitude":-1.183581,"longitude":35.099931},{"latitude":16.043917,"longitude":108.19937},{"latitude":21.040975,"longitude":105.886011},{"latitude":21.394639,"longitude":106.261083},{"latitude":21.221192,"longitude":105.807178},{"latitude":12.227467,"longitude":109.192322},{"latitude":16.4015,"longitude":107.702614},{"latitude":-2.55,"longitude":36.7833333},{"latitude":10.227025,"longitude":103.967169},{"latitude":10.818797,"longitude":106.651856},{"latitude":19.769156,"longitude":94.026133},{"latitude":21.955433,"longitude":96.40605},{"latitude":21.178756,"longitude":94.930169},{"latitude":-3.982688889,"longitude":39.73089722},{"latitude":14.141517,"longitude":93.368531},{"latitude":20.747036,"longitude":96.792044},{"latitude":24.899597,"longitude":94.914033},{"latitude":21.301611,"longitude":99.635997},{"latitude":37.7549569,"longitude":-89.0110936},{"latitude":19.426447,"longitude":93.534836},{"latitude":47.5244,"longitude":9.00306},{"latitude":22.977881,"longitude":97.752183},{"latitude":20.940361,"longitude":94.822617},{"latitude":21.702156,"longitude":95.977928},{"latitude":12.439797,"longitude":98.621478},{"latitude":25.383636,"longitude":97.351919},{"latitude":23.092525,"longitude":96.645272},{"latitude":20.516758,"longitude":99.256825},{"latitude":25.354375,"longitude":97.29515},{"latitude":20.890492,"longitude":97.735922},{"latitude":16.893714,"longitude":97.674581},{"latitude":47.5742,"longitude":9.0475},{"latitude":27.329922,"longitude":97.426269},{"latitude":18.824478,"longitude":95.266003},{"latitude":20.941668,"longitude":95.914497},{"latitude":20.132708,"longitude":92.872628},{"latitude":18.460731,"longitude":94.300119},{"latitude":20.483831,"longitude":99.935353},{"latitude":19.031275,"longitude":96.401239},{"latitude":16.907305,"longitude":96.133222},{"latitude":-5.061631,"longitude":119.554042},{"latitude":-1.190017,"longitude":136.107997},{"latitude":-3.368183,"longitude":135.496406},{"latitude":-4.528275,"longitude":136.887375},{"latitude":-2.576953,"longitude":140.516372},{"latitude":-4.102511,"longitude":138.957372},{"latitude":-8.520294,"longitude":140.418453},{"latitude":0.637119,"longitude":122.849858},{"latitude":37.469075,"longitude":126.450517},{"latitude":-0.918542,"longitude":119.909642},{"latitude":1.549447,"longitude":124.925878},{"latitude":-1.416753,"longitude":120.657669},{"latitude":2.045992,"longitude":128.324708},{"latitude":0.831414,"longitude":127.381486},{"latitude":-1.038919,"longitude":122.771906},{"latitude":48.4,"longitude":22.6833},{"latitude":-3.710264,"longitude":128.089136},{"latitude":-2.920192,"longitude":132.267031},{"latitude":-3.644517,"longitude":133.695553},{"latitude":-2.532242,"longitude":133.438894},{"latitude":-0.891833,"longitude":134.049183},{"latitude":-0.926358,"longitude":131.121194},{"latitude":3.12385,"longitude":113.020472},{"latitude":1.484697,"longitude":110.346933},{"latitude":4.808303,"longitude":115.010439},{"latitude":4.1775,"longitude":114.321944},{"latitude":4.322014,"longitude":113.986806},{"latitude":2.261603,"longitude":111.985322},{"latitude":5.032247,"longitude":118.324036},{"latitude":5.937208,"longitude":116.051181},{"latitude":5.300683,"longitude":115.250181},{"latitude":4.313369,"longitude":118.121953},{"latitude":4.9442,"longitude":114.928353},{"latitude":0.460786,"longitude":101.444539},{"latitude":1.609194,"longitude":101.433558},{"latitude":-6.125567,"longitude":106.655897},{"latitude":1.166381,"longitude":97.704681},{"latitude":1.400103,"longitude":99.430453},{"latitude":-0.874989,"longitude":100.351881},{"latitude":3.558056,"longitude":98.671722},{"latitude":1.555944,"longitude":98.888908},{"latitude":-0.348869,"longitude":111.747606},{"latitude":-1.816639,"longitude":109.963483},{"latitude":48.4,"longitude":22.683},{"latitude":-0.150711,"longitude":109.403892},{"latitude":53.57,"longitude":27.39},{"latitude":53.054,"longitude":9.208667},{"latitude":-1.638017,"longitude":103.644378},{"latitude":-3.8637,"longitude":102.339036},{"latitude":-2.89825,"longitude":104.699903},{"latitude":-0.352808,"longitude":102.334917},{"latitude":5.069506,"longitude":97.259192},{"latitude":47.8381,"longitude":27.7815},{"latitude":5.523522,"longitude":95.420372},{"latitude":2.041394,"longitude":103.307394},{"latitude":6.189667,"longitude":100.398183},{"latitude":5.465917,"longitude":100.391167},{"latitude":6.16685,"longitude":102.293014},{"latitude":3.775389,"longitude":103.209056},{"latitude":4.537222,"longitude":103.426756},{"latitude":3.11225,"longitude":101.70275},{"latitude":4.567972,"longitude":101.092194},{"latitude":1.641308,"longitude":103.669619},{"latitude":2.745578,"longitude":101.709917},{"latitude":6.329728,"longitude":99.728667},{"latitude":2.263361,"longitude":102.251553},{"latitude":5.382639,"longitude":103.10336},{"latitude":5.297139,"longitude":100.276864},{"latitude":-9.303306,"longitude":125.286753},{"latitude":-8.546553,"longitude":125.524719},{"latitude":-8.485547,"longitude":126.399389},{"latitude":1.425264,"longitude":103.812806},{"latitude":1.360417,"longitude":103.90953},{"latitude":1.387258,"longitude":103.708719},{"latitude":1.41695,"longitude":103.867653},{"latitude":1.350189,"longitude":103.994433},{"latitude":-27.570278,"longitude":153.008056},{"latitude":-10.950833,"longitude":142.459444},{"latitude":-23.806667,"longitude":133.902222},{"latitude":-27.384167,"longitude":153.1175},{"latitude":-28.164444,"longitude":153.504722},{"latitude":-16.885833,"longitude":145.755278},{"latitude":-26.413334,"longitude":146.2625},{"latitude":-20.663889,"longitude":139.488611},{"latitude":-26.603333,"longitude":153.091111},{"latitude":-21.171667,"longitude":149.179722},{"latitude":-20.495,"longitude":148.552222},{"latitude":-23.381944,"longitude":150.475278},{"latitude":-19.2525,"longitude":146.765278},{"latitude":-12.678611,"longitude":141.925278},{"latitude":-38.039444,"longitude":144.469444},{"latitude":-36.067778,"longitude":146.958056},{"latitude":-37.728056,"longitude":144.901944},{"latitude":-38.098889,"longitude":147.149444},{"latitude":-42.836111,"longitude":147.510278},{"latitude":-41.545278,"longitude":147.214167},{"latitude":-37.975833,"longitude":145.102222},{"latitude":-37.673333,"longitude":144.843333},{"latitude":-37.932222,"longitude":144.753333},{"latitude":-34.945,"longitude":138.530556},{"latitude":-34.7025,"longitude":138.620833},{"latitude":-32.0975,"longitude":115.881111},{"latitude":-20.712222,"longitude":116.773333},{"latitude":-30.789444,"longitude":121.461667},{"latitude":-15.778056,"longitude":128.7075},{"latitude":-22.235556,"longitude":114.088611},{"latitude":-20.377778,"longitude":118.626389},{"latitude":-34.793333,"longitude":138.633056},{"latitude":-31.940278,"longitude":115.966944},{"latitude":-31.144167,"longitude":136.816944},{"latitude":-10.450556,"longitude":105.690278},{"latitude":-33.924444,"longitude":150.988333},{"latitude":-35.306944,"longitude":149.195},{"latitude":-30.320556,"longitude":153.116389},{"latitude":-34.040278,"longitude":150.687222},{"latitude":-32.216667,"longitude":148.574722},{"latitude":-29.041625,"longitude":167.938742},{"latitude":-33.600556,"longitude":150.780833},{"latitude":-33.946111,"longitude":151.177222},{"latitude":-31.083889,"longitude":150.846667},{"latitude":-35.165278,"longitude":147.466389},{"latitude":40.080111,"longitude":116.584556},{"latitude":32.800428,"longitude":102.534785},{"latitude":49.204997,"longitude":119.825},{"latitude":39.124353,"longitude":117.346183},{"latitude":37.746897,"longitude":112.628428},{"latitude":23.392436,"longitude":113.298786},{"latitude":28.189158,"longitude":113.219633},{"latitude":25.218106,"longitude":110.039197},{"latitude":22.608267,"longitude":108.172442},{"latitude":22.639258,"longitude":113.810664},{"latitude":34.519672,"longitude":113.840889},{"latitude":30.783758,"longitude":114.2081},{"latitude":39.224061,"longitude":125.67015},{"latitude":36.515242,"longitude":103.620775},{"latitude":34.447119,"longitude":108.751592},{"latitude":47.843056,"longitude":106.766639},{"latitude":21.973914,"longitude":100.759611},{"latitude":24.992364,"longitude":102.743536},{"latitude":24.544036,"longitude":118.127739},{"latitude":28.865,"longitude":115.9},{"latitude":25.935064,"longitude":119.663272},{"latitude":30.229503,"longitude":120.434453},{"latitude":29.826683,"longitude":121.461906},{"latitude":31.742042,"longitude":118.862025},{"latitude":31.780019,"longitude":117.298436},{"latitude":36.266108,"longitude":120.374436},{"latitude":31.197875,"longitude":121.336319},{"latitude":37.401667,"longitude":121.371667},{"latitude":29.719217,"longitude":106.641678},{"latitude":26.538522,"longitude":106.800703},{"latitude":30.578528,"longitude":103.947086},{"latitude":27.989083,"longitude":102.184361},{"latitude":39.542922,"longitude":76.019956},{"latitude":37.038522,"longitude":79.864933},{"latitude":43.907106,"longitude":87.474244},{"latitude":45.623403,"longitude":126.250328},{"latitude":47.385,"longitude":9.7},{"latitude":44.524072,"longitude":129.568972},{"latitude":38.965667,"longitude":121.5386},{"latitude":31.143378,"longitude":121.805214},{"latitude":2.818183,"longitude":104.160019},{"latitude":3.130583,"longitude":101.549333},{"latitude":37.293097,"longitude":136.961853},{"latitude":30.917669,"longitude":29.696408},{"latitude":70.133989,"longitude":-143.581867},{"latitude":70.613378,"longitude":-159.86035},{"latitude":68.875133,"longitude":-166.110022},{"latitude":69.732875,"longitude":-163.005342},{"latitude":19.721375,"longitude":-155.048469},{"latitude":28.545464,"longitude":-81.332936},{"latitude":66.913944,"longitude":-151.529056},{"latitude":64.301203,"longitude":-149.120144},{"latitude":65.992794,"longitude":-153.704289},{"latitude":66.571492,"longitude":-145.250417},{"latitude":61.097369,"longitude":-155.574228},{"latitude":61.266381,"longitude":-149.653119},{"latitude":62.894369,"longitude":-155.976525},{"latitude":61.780297,"longitude":-166.038747},{"latitude":42.469953,"longitude":-71.289031},{"latitude":57.167333,"longitude":-170.220444},{"latitude":58.646428,"longitude":-162.062778},{"latitude":56.578344,"longitude":-169.661611},{"latitude":59.754356,"longitude":-154.910961},{"latitude":59.011356,"longitude":-161.819664},{"latitude":59.361247,"longitude":-155.258822},{"latitude":44.451558,"longitude":-83.394053},{"latitude":36.681878,"longitude":-121.762347},{"latitude":38.553897,"longitude":-121.297592},{"latitude":35.280531,"longitude":-116.630031},{"latitude":34.296161,"longitude":-116.162203},{"latitude":35.336583,"longitude":-94.367444},{"latitude":61.213544,"longitude":-149.844447},{"latitude":35.167286,"longitude":-107.901989},{"latitude":36.731958,"longitude":-97.099781},{"latitude":32.01,"longitude":-81.145683},{"latitude":47.949256,"longitude":-97.176111},{"latitude":34.173142,"longitude":-91.935597},{"latitude":30.724167,"longitude":-87.021944},{"latitude":20.795636,"longitude":-156.014439},{"latitude":34.654472,"longitude":-112.419583},{"latitude":40.276692,"longitude":-74.813469},{"latitude":42.364347,"longitude":-71.005181},{"latitude":38.262692,"longitude":-121.927464},{"latitude":43.2338,"longitude":-75.407033},{"latitude":40.718694,"longitude":-114.030889},{"latitude":30.626783,"longitude":-88.068092},{"latitude":37.721278,"longitude":-122.220722},{"latitude":41.303167,"longitude":-95.894069},{"latitude":48.141481,"longitude":-123.414075},{"latitude":20.89865,"longitude":-156.430458},{"latitude":37.649944,"longitude":-97.433056},{"latitude":39.297606,"longitude":-94.713905},{"latitude":43.139858,"longitude":-89.337514},{"latitude":59.044667,"longitude":-158.5055},{"latitude":36.261519,"longitude":-93.154728},{"latitude":33.434278,"longitude":-112.011583},{"latitude":44.807444,"longitude":-68.828139},{"latitude":26.197281,"longitude":-80.170706},{"latitude":32.384014,"longitude":-94.711486},{"latitude":34.494583,"longitude":-82.709389},{"latitude":47.619861,"longitude":-117.533833},{"latitude":26.001222,"longitude":-80.240722},{"latitude":37.618972,"longitude":-122.374889},{"latitude":48.608353,"longitude":-112.376144},{"latitude":30.037758,"longitude":-91.883896},{"latitude":29.690056,"longitude":-82.271778},{"latitude":35.042417,"longitude":-89.976667},{"latitude":31.469028,"longitude":-109.603667},{"latitude":63.994547,"longitude":-145.721642},{"latitude":31.637831,"longitude":-97.074139},{"latitude":55.042436,"longitude":-131.572233},{"latitude":46.8715,"longitude":-68.017917},{"latitude":34.916944,"longitude":-92.149722},{"latitude":34.678653,"longitude":-86.684781},{"latitude":35.170883,"longitude":-79.014472},{"latitude":36.022586,"longitude":-102.547278},{"latitude":29.359486,"longitude":-100.777975},{"latitude":33.942536,"longitude":-118.408075},{"latitude":33.588167,"longitude":-85.858111},{"latitude":41.411689,"longitude":-81.849794},{"latitude":39.129539,"longitude":-75.465958},{"latitude":39.048836,"longitude":-84.667822},{"latitude":39.085386,"longitude":-76.759414},{"latitude":35.685422,"longitude":-117.692039},{"latitude":44.3852,"longitude":-98.228542},{"latitude":58.354972,"longitude":-134.576278},{"latitude":30.205278,"longitude":-91.987611},{"latitude":40.6925,"longitude":-74.168667},{"latitude":43.564361,"longitude":-116.222861},{"latitude":36.587183,"longitude":-115.673353},{"latitude":37.927528,"longitude":-100.724417},{"latitude":48.259378,"longitude":-101.280333},{"latitude":21.4835,"longitude":-158.039667},{"latitude":32.382944,"longitude":-86.365778},{"latitude":34.850089,"longitude":-92.300153},{"latitude":32.847111,"longitude":-96.851778},{"latitude":38.678394,"longitude":-104.756581},{"latitude":46.606806,"longitude":-111.98275},{"latitude":32.867694,"longitude":-117.14175},{"latitude":33.535,"longitude":-112.38306},{"latitude":30.427803,"longitude":-86.689278},{"latitude":33.922839,"longitude":-118.335186},{"latitude":46.123083,"longitude":-67.792056},{"latitude":36.339167,"longitude":-97.9165},{"latitude":34.120285,"longitude":-119.12094},{"latitude":34.905417,"longitude":-117.883739},{"latitude":30.126112,"longitude":-93.223335},{"latitude":19.738767,"longitude":-156.045631},{"latitude":33.67975,"longitude":-78.928333},{"latitude":36.333012,"longitude":-119.95208},{"latitude":41.253053,"longitude":-70.060181},{"latitude":37.1325,"longitude":-76.608841},{"latitude":36.668567,"longitude":-87.496183},{"latitude":38.852083,"longitude":-77.037722},{"latitude":38.285981,"longitude":-76.411781},{"latitude":28.727508,"longitude":-96.250958},{"latitude":35.964347,"longitude":-89.943956},{"latitude":39.457583,"longitude":-74.577167},{"latitude":35.414739,"longitude":-97.386633},{"latitude":36.260581,"longitude":-76.174572},{"latitude":38.289085,"longitude":-104.496572},{"latitude":46.688958,"longitude":-68.044797},{"latitude":35.040222,"longitude":-106.609194},{"latitude":47.079217,"longitude":-122.580783},{"latitude":57.749967,"longitude":-152.493856},{"latitude":20.265256,"longitude":-155.859989},{"latitude":26.072583,"longitude":-80.15275},{"latitude":35.656489,"longitude":-95.366656},{"latitude":48.566186,"longitude":-93.403067},{"latitude":40.788389,"longitude":-111.977772},{"latitude":34.433781,"longitude":-100.287992},{"latitude":30.410425,"longitude":-88.924433},{"latitude":32.337322,"longitude":-84.991283},{"latitude":27.507223,"longitude":-97.809723},{"latitude":39.055275,"longitude":-96.764453},{"latitude":40.193494,"longitude":-76.763403},{"latitude":40.850971,"longitude":-96.75925},{"latitude":42.7787,"longitude":-84.587357},{"latitude":20.001328,"longitude":-155.668108},{"latitude":44.935833,"longitude":-74.845547},{"latitude":35.741147,"longitude":-81.38955},{"latitude":27.765111,"longitude":-82.626972},{"latitude":26.586611,"longitude":-81.86325},{"latitude":29.984433,"longitude":-95.341442},{"latitude":45.647836,"longitude":-68.685561},{"latitude":38.810806,"longitude":-76.867028},{"latitude":36.133722,"longitude":-80.222},{"latitude":34.597453,"longitude":-117.382997},{"latitude":30.778833,"longitude":-86.522111},{"latitude":44.055619,"longitude":-75.719458},{"latitude":42.910957,"longitude":-82.528862},{"latitude":35.433598,"longitude":-119.05677},{"latitude":31.80725,"longitude":-106.377583},{"latitude":26.2285,"longitude":-97.654389},{"latitude":33.938833,"longitude":-81.119528},{"latitude":32.166467,"longitude":-110.883144},{"latitude":30.352656,"longitude":-87.318647},{"latitude":30.473425,"longitude":-87.186611},{"latitude":47.961098,"longitude":-97.401194},{"latitude":29.645419,"longitude":-95.278889},{"latitude":39.701668,"longitude":-104.75166},{"latitude":62.961334,"longitude":-141.929136},{"latitude":61.594914,"longitude":-149.088711},{"latitude":40.491467,"longitude":-80.232872},{"latitude":71.285446,"longitude":-156.766003},{"latitude":29.607333,"longitude":-95.15875},{"latitude":48.351803,"longitude":-122.655906},{"latitude":27.740889,"longitude":-98.026944},{"latitude":30.967833,"longitude":-83.193},{"latitude":25.79325,"longitude":-80.290556},{"latitude":47.449,"longitude":-122.309306},{"latitude":35.035278,"longitude":-85.203808},{"latitude":41.163472,"longitude":-73.126167},{"latitude":32.311167,"longitude":-90.075889},{"latitude":29.265322,"longitude":-94.860406},{"latitude":33.817722,"longitude":-118.151611},{"latitude":21.579475,"longitude":-158.197281},{"latitude":41.241836,"longitude":-76.921094},{"latitude":39.717331,"longitude":-86.294383},{"latitude":38.730306,"longitude":-93.547864},{"latitude":41.0375,"longitude":-81.466917},{"latitude":33.494328,"longitude":-90.084706},{"latitude":41.066959,"longitude":-73.707575},{"latitude":40.843656,"longitude":-72.631789},{"latitude":35.831708,"longitude":-90.646417},{"latitude":37.798836,"longitude":-116.78075},{"latitude":26.593,"longitude":-80.085056},{"latitude":32.699219,"longitude":-117.21531},{"latitude":31.849528,"longitude":-106.380039},{"latitude":32.656578,"longitude":-114.60598},{"latitude":32.337472,"longitude":-104.263278},{"latitude":46.842091,"longitude":-92.193649},{"latitude":60.779778,"longitude":-161.838},{"latitude":38.228,"longitude":-85.663722},{"latitude":31.588472,"longitude":-110.344389},{"latitude":21.975983,"longitude":-159.338958},{"latitude":39.451464,"longitude":-87.307561},{"latitude":48.542983,"longitude":-109.762342},{"latitude":47.207708,"longitude":-119.32019},{"latitude":44.203503,"longitude":-72.562328},{"latitude":33.239765,"longitude":-119.45816},{"latitude":37.505167,"longitude":-77.319667},{"latitude":32.446629,"longitude":-93.8256},{"latitude":60.491778,"longitude":-145.477556},{"latitude":36.894611,"longitude":-76.201222},{"latitude":29.950833,"longitude":-94.020694},{"latitude":32.127583,"longitude":-81.202139},{"latitude":41.123939,"longitude":-111.973039},{"latitude":64.512203,"longitude":-165.445247},{"latitude":45.771028,"longitude":-122.861833},{"latitude":27.910167,"longitude":-82.687389},{"latitude":45.12665,"longitude":-87.638443},{"latitude":30.351833,"longitude":-95.414467},{"latitude":70.19475,"longitude":-148.465167},{"latitude":29.533694,"longitude":-98.469778},{"latitude":43.118866,"longitude":-77.672389},{"latitude":28.234922,"longitude":-80.610125},{"latitude":40.850103,"longitude":-74.060837},{"latitude":44.145042,"longitude":-103.103567},{"latitude":35.877639,"longitude":-78.787472},{"latitude":39.902375,"longitude":-84.219375},{"latitude":60.573111,"longitude":-151.245},{"latitude":34.882403,"longitude":-95.783463},{"latitude":43.107333,"longitude":-78.946194},{"latitude":30.715694,"longitude":-96.331361},{"latitude":31.889097,"longitude":-81.562333},{"latitude":37.131894,"longitude":-76.492989},{"latitude":31.394903,"longitude":-92.295772},{"latitude":34.667067,"longitude":-99.266681},{"latitude":32.116083,"longitude":-110.941028},{"latitude":48.415572,"longitude":-101.357661},{"latitude":39.136089,"longitude":-121.436567},{"latitude":41.071389,"longitude":-87.846278},{"latitude":35.339383,"longitude":-77.960589},{"latitude":41.732581,"longitude":-71.420383},{"latitude":38.340525,"longitude":-75.510289},{"latitude":38.486778,"longitude":-121.102778},{"latitude":34.200667,"longitude":-118.358667},{"latitude":42.212444,"longitude":-83.353389},{"latitude":27.975472,"longitude":-82.53325},{"latitude":48.942501,"longitude":-97.240833},{"latitude":31.044833,"longitude":-93.191667},{"latitude":64.665667,"longitude":-147.1015},{"latitude":47.3866,"longitude":-92.838994},{"latitude":31.234014,"longitude":-94.75},{"latitude":31.942528,"longitude":-102.201914},{"latitude":44.485072,"longitude":-88.129589},{"latitude":34.300833,"longitude":-97.008889},{"latitude":40.015556,"longitude":-74.591667},{"latitude":34.900872,"longitude":-76.880733},{"latitude":32.609139,"longitude":-82.369944},{"latitude":33.369944,"longitude":-81.9645},{"latitude":48.177939,"longitude":-103.642347},{"latitude":34.729444,"longitude":-92.224306},{"latitude":41.504094,"longitude":-74.104839},{"latitude":48.728444,"longitude":-94.612222},{"latitude":38.512524,"longitude":-121.49347},{"latitude":59.645556,"longitude":-151.476583},{"latitude":37.741631,"longitude":-92.140736},{"latitude":33.915382,"longitude":-84.516319},{"latitude":47.615058,"longitude":-117.655772},{"latitude":44.359806,"longitude":-84.671112},{"latitude":30.069567,"longitude":-85.575417},{"latitude":32.896828,"longitude":-97.037997},{"latitude":28.102753,"longitude":-80.645258},{"latitude":47.137678,"longitude":-122.476475},{"latitude":30.194528,"longitude":-97.669889},{"latitude":39.813786,"longitude":-82.927822},{"latitude":46.353625,"longitude":-87.395353},{"latitude":35.810972,"longitude":-83.994028},{"latitude":31.138731,"longitude":-97.714469},{"latitude":38.748697,"longitude":-90.370028},{"latitude":39.367806,"longitude":-75.072222},{"latitude":33.988797,"longitude":-98.491894},{"latitude":39.103333,"longitude":-84.418611},{"latitude":33.636719,"longitude":-84.428067},{"latitude":37.380481,"longitude":-120.568189},{"latitude":38.667639,"longitude":-121.400611},{"latitude":42.880833,"longitude":-85.522806},{"latitude":31.779628,"longitude":-103.201361},{"latitude":36.776194,"longitude":-119.71814},{"latitude":27.655556,"longitude":-80.417944},{"latitude":32.834219,"longitude":-115.578744},{"latitude":36.124472,"longitude":-86.678194},{"latitude":27.54375,"longitude":-99.461556},{"latitude":61.250986,"longitude":-149.806503},{"latitude":66.884678,"longitude":-162.59855},{"latitude":40.296372,"longitude":-78.320022},{"latitude":32.420756,"longitude":-99.8546},{"latitude":33.220972,"longitude":-92.813278},{"latitude":40.777245,"longitude":-73.872608},{"latitude":30.396528,"longitude":-84.350333},{"latitude":41.907778,"longitude":-88.248611},{"latitude":31.611289,"longitude":-97.230519},{"latitude":44.320647,"longitude":-69.797317},{"latitude":32.083486,"longitude":-97.097228},{"latitude":30.235834,"longitude":-81.680556},{"latitude":35.599889,"longitude":-88.915611},{"latitude":21.152886,"longitude":-157.096256},{"latitude":37.907058,"longitude":-85.972106},{"latitude":34.708417,"longitude":-77.439667},{"latitude":31.35775,"longitude":-100.496306},{"latitude":32.669502,"longitude":-115.51333},{"latitude":39.795383,"longitude":-121.858422},{"latitude":44.471861,"longitude":-73.153278},{"latitude":30.494056,"longitude":-81.687861},{"latitude":37.151516,"longitude":-107.75377},{"latitude":38.944533,"longitude":-77.455811},{"latitude":30.588583,"longitude":-96.363833},{"latitude":47.682819,"longitude":-117.322558},{"latitude":42.947222,"longitude":-87.896583},{"latitude":32.411319,"longitude":-99.681897},{"latitude":38.818094,"longitude":-92.219631},{"latitude":45.588722,"longitude":-122.5975},{"latitude":25.861806,"longitude":-80.897},{"latitude":26.683161,"longitude":-80.095589},{"latitude":32.819778,"longitude":-97.362444},{"latitude":44.681854,"longitude":-75.4655},{"latitude":41.658439,"longitude":-70.521417},{"latitude":47.53,"longitude":-122.301947},{"latitude":29.384228,"longitude":-98.581108},{"latitude":21.318681,"longitude":-157.922428},{"latitude":41.533972,"longitude":-93.663083},{"latitude":35.072972,"longitude":-77.042944},{"latitude":32.733556,"longitude":-117.189667},{"latitude":32.510864,"longitude":-92.037689},{"latitude":33.972719,"longitude":-80.470564},{"latitude":34.056,"longitude":-117.601194},{"latitude":33.067839,"longitude":-96.065333},{"latitude":33.301556,"longitude":-104.530556},{"latitude":42.409195,"longitude":-83.009861},{"latitude":25.906833,"longitude":-97.425861},{"latitude":31.321339,"longitude":-85.449628},{"latitude":39.008507,"longitude":-74.908275},{"latitude":39.416584,"longitude":-118.70098},{"latitude":42.608333,"longitude":-82.8355},{"latitude":36.74125,"longitude":-108.229944},{"latitude":27.770361,"longitude":-97.501222},{"latitude":43.111187,"longitude":-76.106311},{"latitude":24.575834,"longitude":-81.688889},{"latitude":41.785972,"longitude":-87.752417},{"latitude":37.3626,"longitude":-121.929022},{"latitude":32.687528,"longitude":-103.217028},{"latitude":40.081944,"longitude":-75.010586},{"latitude":39.861656,"longitude":-104.673178},{"latitude":39.871944,"longitude":-75.241139},{"latitude":42.402603,"longitude":-96.384367},{"latitude":32.69285,"longitude":-83.649211},{"latitude":33.236944,"longitude":-107.27175},{"latitude":34.629391,"longitude":-118.08456},{"latitude":29.529675,"longitude":-98.2789},{"latitude":32.829222,"longitude":-115.671667},{"latitude":39.997972,"longitude":-82.891889},{"latitude":36.005094,"longitude":-94.170059},{"latitude":34.649833,"longitude":-98.402167},{"latitude":45.559868,"longitude":-93.608217},{"latitude":39.826111,"longitude":-84.048332},{"latitude":64.736178,"longitude":-156.937417},{"latitude":33.269111,"longitude":-111.811111},{"latitude":32.781606,"longitude":-98.060175},{"latitude":37.621853,"longitude":-97.268192},{"latitude":29.825333,"longitude":-90.035},{"latitude":32.477411,"longitude":-80.723161},{"latitude":33.453722,"longitude":-93.991028},{"latitude":44.650944,"longitude":-73.468139},{"latitude":39.466219,"longitude":-76.168808},{"latitude":35.182777,"longitude":-103.603186},{"latitude":61.174361,"longitude":-149.996361},{"latitude":31.06725,"longitude":-97.828917},{"latitude":35.083228,"longitude":-108.791778},{"latitude":48.792694,"longitude":-122.537528},{"latitude":35.356667,"longitude":-89.870278},{"latitude":38.889444,"longitude":-79.857139},{"latitude":41.736722,"longitude":-72.649444},{"latitude":41.920764,"longitude":-71.491381},{"latitude":30.691231,"longitude":-88.242814},{"latitude":37.416142,"longitude":-122.049139},{"latitude":35.617108,"longitude":-106.089422},{"latitude":22.022833,"longitude":-159.785},{"latitude":30.831722,"longitude":-93.339917},{"latitude":19.760056,"longitude":-155.553717},{"latitude":31.417722,"longitude":-110.84789},{"latitude":27.849339,"longitude":-82.521214},{"latitude":38.545178,"longitude":-89.835183},{"latitude":25.907,"longitude":-80.278389},{"latitude":29.374208,"longitude":-100.927158},{"latitude":26.536167,"longitude":-81.755167},{"latitude":58.676778,"longitude":-156.649278},{"latitude":40.434811,"longitude":-76.569411},{"latitude":20.962936,"longitude":-156.673031},{"latitude":40.639751,"longitude":-73.778925},{"latitude":25.48855,"longitude":-80.383567},{"latitude":33.951875,"longitude":-117.445103},{"latitude":39.368332,"longitude":-94.914686},{"latitude":37.940194,"longitude":-75.466389},{"latitude":32.852519,"longitude":-106.106525},{"latitude":40.199833,"longitude":-75.148167},{"latitude":41.155722,"longitude":-104.811839},{"latitude":37.894167,"longitude":-121.238306},{"latitude":32.898647,"longitude":-80.040528},{"latitude":39.499108,"longitude":-119.768108},{"latitude":55.355556,"longitude":-131.71375},{"latitude":42.237928,"longitude":-83.530408},{"latitude":34.737333,"longitude":-120.584306},{"latitude":33.562942,"longitude":-86.75355},{"latitude":40.033333,"longitude":-74.353333},{"latitude":52.712275,"longitude":174.11362},{"latitude":36.236197,"longitude":-115.034253},{"latitude":33.880711,"longitude":-117.259453},{"latitude":37.625817,"longitude":-120.954422},{"latitude":38.695417,"longitude":-121.590778},{"latitude":42.422161,"longitude":-87.867908},{"latitude":38.805805,"longitude":-104.700778},{"latitude":42.940525,"longitude":-78.732167},{"latitude":41.433361,"longitude":-82.652333},{"latitude":47.906342,"longitude":-122.281564},{"latitude":43.043603,"longitude":-115.872431},{"latitude":37.700967,"longitude":-113.098847},{"latitude":41.938889,"longitude":-72.683222},{"latitude":26.175833,"longitude":-98.238611},{"latitude":36.937644,"longitude":-76.289289},{"latitude":42.194014,"longitude":-72.534783},{"latitude":33.663639,"longitude":-101.822778},{"latitude":41.978603,"longitude":-87.904842},{"latitude":26.3785,"longitude":-80.107694},{"latitude":64.815114,"longitude":-147.856267},{"latitude":38.501683,"longitude":-77.305333},{"latitude":34.382775,"longitude":-103.322147},{"latitude":21.450453,"longitude":-157.768},{"latitude":41.118332,"longitude":-95.912511},{"latitude":62.154888,"longitude":-145.456639},{"latitude":43.991922,"longitude":-76.021739},{"latitude":33.829667,"longitude":-116.506694},{"latitude":35.219369,"longitude":-101.705931},{"latitude":42.5512,"longitude":-94.191842},{"latitude":32.50182,"longitude":-93.662674},{"latitude":38.950944,"longitude":-95.663611},{"latitude":28.456694,"longitude":-99.220294},{"latitude":34.270615,"longitude":-77.902569},{"latitude":30.533167,"longitude":-91.149639},{"latitude":32.552083,"longitude":-88.555557},{"latitude":32.354139,"longitude":-95.402386},{"latitude":39.175361,"longitude":-76.668333},{"latitude":34.991308,"longitude":-99.051353},{"latitude":20.785611,"longitude":-156.951419},{"latitude":31.3274,"longitude":-92.549833},{"latitude":32.341484,"longitude":-106.40277},{"latitude":55.206061,"longitude":-162.725436},{"latitude":36.198389,"longitude":-95.888111},{"latitude":57.047138,"longitude":-135.361611},{"latitude":40.79525,"longitude":-73.100222},{"latitude":44.881956,"longitude":-93.221767},{"latitude":39.678722,"longitude":-75.606528},{"latitude":53.900139,"longitude":-166.5435},{"latitude":29.993389,"longitude":-90.258028},{"latitude":43.646161,"longitude":-70.309281},{"latitude":35.393089,"longitude":-97.600733},{"latitude":42.748267,"longitude":-73.801692},{"latitude":61.133949,"longitude":-146.248342},{"latitude":37.082881,"longitude":-76.360547},{"latitude":33.675667,"longitude":-117.868222},{"latitude":33.643833,"longitude":-88.443833},{"latitude":25.647889,"longitude":-80.432777},{"latitude":36.820703,"longitude":-76.033542},{"latitude":40.648094,"longitude":-86.152119},{"latitude":42.908,"longitude":-106.464417},{"latitude":30.48325,"longitude":-86.5254},{"latitude":32.343947,"longitude":-86.987803},{"latitude":24.556111,"longitude":-81.759556},{"latitude":35.214,"longitude":-80.943139},{"latitude":36.080056,"longitude":-115.15225},{"latitude":28.429394,"longitude":-81.308994},{"latitude":34.185361,"longitude":-79.723889},{"latitude":47.482,"longitude":-111.370689},{"latitude":41.260736,"longitude":-80.679097},{"latitude":64.8375,"longitude":-147.614444},{"latitude":45.194444,"longitude":-123.135944},{"latitude":32.640144,"longitude":-83.59185},{"latitude":13.681108,"longitude":100.747283},{"latitude":-2.558044,"longitude":120.324383},{"latitude":-2.531203,"longitude":121.357639},{"latitude":-3.044736,"longitude":119.821536},{"latitude":-4.081608,"longitude":122.418231},{"latitude":5.874131,"longitude":95.339672},{"latitude":-7.346603,"longitude":108.246092},{"latitude":-7.615767,"longitude":111.434117},{"latitude":-7.926556,"longitude":112.714514},{"latitude":-6.293169,"longitude":106.5699},{"latitude":-6.900625,"longitude":107.576294},{"latitude":-6.756144,"longitude":108.539672},{"latitude":-7.788181,"longitude":110.431758},{"latitude":-7.645056,"longitude":109.033911},{"latitude":-6.336964,"longitude":106.764561},{"latitude":-6.971447,"longitude":110.374122},{"latitude":1.121028,"longitude":104.118753},{"latitude":-2.745722,"longitude":107.754917},{"latitude":-2.1622,"longitude":106.139064},{"latitude":0.922683,"longitude":104.532311},{"latitude":-0.479189,"longitude":104.579283},{"latitude":-3.442356,"longitude":114.762553},{"latitude":-3.412408,"longitude":115.995136},{"latitude":-2.705197,"longitude":111.673208},{"latitude":-2.225128,"longitude":113.942661},{"latitude":46.6166,"longitude":9.9833},{"latitude":-8.640647,"longitude":122.236889},{"latitude":-8.849294,"longitude":121.660644},{"latitude":-8.597011,"longitude":120.477061},{"latitude":-10.171583,"longitude":123.671136},{"latitude":-8.486656,"longitude":119.88905},{"latitude":-1.268272,"longitude":116.894478},{"latitude":3.326694,"longitude":117.565569},{"latitude":-0.484531,"longitude":117.157111},{"latitude":-0.093215,"longitude":117.439292},{"latitude":-8.560708,"longitude":116.094656},{"latitude":-8.539647,"longitude":118.687322},{"latitude":48.446075,"longitude":15.631243},{"latitude":-9.669217,"longitude":120.302006},{"latitude":-7.379831,"longitude":112.786858},{"latitude":-7.516089,"longitude":110.756892},{"latitude":18.766847,"longitude":98.962644},{"latitude":19.952342,"longitude":99.882928},{"latitude":8.539617,"longitude":99.944725},{"latitude":-8.748169,"longitude":115.167172},{"latitude":14.949497,"longitude":102.312736},{"latitude":17.383794,"longitude":104.643022},{"latitude":15.251278,"longitude":104.870231},{"latitude":16.466628,"longitude":102.783661},{"latitude":17.237992,"longitude":99.818183},{"latitude":37.936358,"longitude":23.944467},{"latitude":34.858414,"longitude":136.805408},{"latitude":34.632778,"longitude":135.223889},{"latitude":46.743861,"longitude":-117.109583},{"latitude":46.3745,"longitude":-117.015389},{"latitude":42.159889,"longitude":-76.891611},{"latitude":42.491028,"longitude":-76.458444},{"latitude":36.587,"longitude":-121.842944},{"latitude":34.426211,"longitude":-119.840372},{"latitude":29.179917,"longitude":-81.058056},{"latitude":52.31,"longitude":13.24},{"latitude":56.5175,"longitude":21.096944},{"latitude":56.923611,"longitude":23.971111},{"latitude":55.893886,"longitude":23.394975},{"latitude":56.070556,"longitude":23.558056},{"latitude":54.963919,"longitude":24.084778},{"latitude":54.879792,"longitude":23.881511},{"latitude":55.973228,"longitude":21.093856},{"latitude":54.634133,"longitude":25.285767},{"latitude":55.729444,"longitude":24.460833},{"latitude":40.122114,"longitude":44.464992},{"latitude":41.04845,"longitude":44.337172},{"latitude":40.147275,"longitude":44.395881},{"latitude":40.750369,"longitude":43.859342},{"latitude":13.071783,"longitude":42.645006},{"latitude":15.291853,"longitude":38.910667},{"latitude":15.669989,"longitude":39.370103},{"latitude":31.246389,"longitude":34.276111},{"latitude":14.662639,"longitude":49.375028},{"latitude":41.610278,"longitude":41.599694},{"latitude":42.176653,"longitude":42.482583},{"latitude":41.669167,"longitude":44.954722},{"latitude":13.685964,"longitude":44.139056},{"latitude":14.753,"longitude":42.976336},{"latitude":12.829542,"longitude":45.028792},{"latitude":14.551322,"longitude":46.826183},{"latitude":16.191667,"longitude":52.175},{"latitude":15.476258,"longitude":44.219739},{"latitude":47.988758,"longitude":10.2395},{"latitude":14.781972,"longitude":45.720083},{"latitude":50.2735,"longitude":-116.14},{"latitude":12.630672,"longitude":53.905778},{"latitude":18.719311,"longitude":50.836911},{"latitude":38.771867,"longitude":34.53455},{"latitude":-34.822222,"longitude":-58.535833},{"latitude":36.237611,"longitude":43.963158},{"latitude":-23.5675,"longitude":148.179167},{"latitude":37.5354,"longitude":23.4346},{"latitude":34.4347222,"longitude":135.244167},{"latitude":40.701214,"longitude":-74.009028},{"latitude":9.66408056,"longitude":123.853247},{"latitude":69.23444,"longitude":-51.05111},{"latitude":68.833336,"longitude":-51},{"latitude":68.7,"longitude":-52.75},{"latitude":39.55361,"longitude":2.727778},{"latitude":-12.4083333,"longitude":130.87266},{"latitude":9.1325,"longitude":99.135556},{"latitude":21.17383327,"longitude":94.9246666},{"latitude":11.9214999,"longitude":121.953},{"latitude":25.767,"longitude":-79.25},{"latitude":62.3205,"longitude":-150.093694},{"latitude":36.027222,"longitude":14.272778},{"latitude":41.26375,"longitude":-72.886806},{"latitude":35.436194,"longitude":-82.541806},{"latitude":36.09775,"longitude":-79.937306},{"latitude":43.582014,"longitude":-96.741914},{"latitude":-25.186111,"longitude":130.975556},{"latitude":42.932556,"longitude":-71.435667},{"latitude":26.152619,"longitude":-81.775294},{"latitude":5.76528,"longitude":103.007},{"latitude":38.1740858,"longitude":-85.7364989},{"latitude":38.138639,"longitude":-78.452861},{"latitude":37.325472,"longitude":-79.975417},{"latitude":38.0365,"longitude":-84.605889},{"latitude":38.036997,"longitude":-87.532364},{"latitude":35.0402222,"longitude":-106.6091944},{"latitude":45.777643,"longitude":-111.160151},{"latitude":45.80921,"longitude":-108.537654},{"latitude":45.954806,"longitude":-112.497472},{"latitude":44.741445,"longitude":-85.582235},{"latitude":16.913819,"longitude":-89.866383},{"latitude":44.4497689,"longitude":-68.3615653},{"latitude":44.0601111,"longitude":-69.0992303},{"latitude":43.60733333,"longitude":-110.73775},{"latitude":42.1953611,"longitude":-89.0972222},{"latitude":55.408611,"longitude":37.906111},{"latitude":18.302897,"longitude":109.412272},{"latitude":-44.67333,"longitude":167.92333},{"latitude":40.7425,"longitude":-73.971944},{"latitude":26.883333,"longitude":100.23333},{"latitude":34.895556,"longitude":-82.218889},{"latitude":50.9,"longitude":7.183},{"latitude":48.783611,"longitude":9.181667},{"latitude":40.477111,"longitude":-88.915917},{"latitude":30.407278,"longitude":-89.070111},{"latitude":42.234875,"longitude":-85.552058},{"latitude":41.586806,"longitude":-83.807833},{"latitude":40.978472,"longitude":-85.195139},{"latitude":39.834564,"longitude":-88.865689},{"latitude":41.884694,"longitude":-91.710806},{"latitude":43.878986,"longitude":-91.256711},{"latitude":44.772726,"longitude":-89.646635},{"latitude":40.664203,"longitude":-89.693258},{"latitude":44.257526,"longitude":-88.507576},{"latitude":43.908283,"longitude":-92.500014},{"latitude":40.03925,"longitude":-88.278056},{"latitude":39.140972,"longitude":-96.670833},{"latitude":-35.713889,"longitude":137.521389},{"latitude":-25.318889,"longitude":152.880278},{"latitude":47.59,"longitude":7.529167},{"latitude":25.649444,"longitude":100.319444},{"latitude":21.973914,"longitude":100.759611},{"latitude":4.048333,"longitude":114.805},{"latitude":27.977286,"longitude":34.39495},{"latitude":41.377874,"longitude":-79.860362},{"latitude":-1.319167,"longitude":36.9275},{"latitude":-2.458056,"longitude":34.8225},{"latitude":-50.280322,"longitude":-72.053103},{"latitude":-30.528056,"longitude":151.617222},{"latitude":39.122413,"longitude":-108.526735},{"latitude":37.090583,"longitude":-113.593056},{"latitude":30.063746,"longitude":-95.554276},{"latitude":28.429977,"longitude":-96.442859},{"latitude":27.395444,"longitude":-82.554389},{"latitude":34.209811,"longitude":-118.489972},{"latitude":32.364042,"longitude":-64.678703},{"latitude":28.622552,"longitude":-80.83541},{"latitude":41.448528,"longitude":-90.507539},{"latitude":30.212083,"longitude":-85.682806},{"latitude":-9.428,"longitude":160.054789},{"latitude":-17.556667,"longitude":-149.611389},{"latitude":-0.547458,"longitude":166.9191},{"latitude":-8.525,"longitude":179.196389},{"latitude":55.012622,"longitude":82.650656},{"latitude":28,"longitude":82},{"latitude":55.89,"longitude":10.62},{"latitude":19.449997,"longitude":103.158333},{"latitude":16.401499,"longitude":107.702614},{"latitude":46.775842,"longitude":-100.757931},{"latitude":37.953759,"longitude":-107.90848},{"latitude":38.481944,"longitude":106.009167},{"latitude":19.301667,"longitude":97.975},{"latitude":44.045278,"longitude":-103.057222},{"latitude":33.0742,"longitude":-117.1648},{"latitude":42.965424,"longitude":-83.743629},{"latitude":7.125522,"longitude":125.645778},{"latitude":32.697889,"longitude":-16.774453},{"latitude":-2.422431,"longitude":-54.792789},{"latitude":10.579686,"longitude":103.636828},{"latitude":64.698889,"longitude":-110.614722},{"latitude":-39.465833,"longitude":176.87},{"latitude":-17.68333,"longitude":178.83333},{"latitude":29.297778,"longitude":90.911944},{"latitude":40.509,"longitude":-122.293389},{"latitude":44.124583,"longitude":-123.211972},{"latitude":43.514556,"longitude":-112.07075},{"latitude":42.374228,"longitude":-122.8735},{"latitude":-42.416668,"longitude":173.68333},{"latitude":44.254066,"longitude":-121.149964},{"latitude":-41.348333,"longitude":173.955278},{"latitude":-22.486667,"longitude":17.4625},{"latitude":48.422778,"longitude":-123.3875},{"latitude":49.289722,"longitude":-123.115833},{"latitude":36.857214,"longitude":117.215992},{"latitude":31.941667,"longitude":119.711667},{"latitude":28.800278,"longitude":104.544444},{"latitude":57.189567,"longitude":65.3243},{"latitude":40.9160833,"longitude":-81.4421944},{"latitude":34.6371944,"longitude":-86.7750556},{"latitude":39.3451039,"longitude":-81.4392031},{"latitude":32.3006389,"longitude":-86.3939722},{"latitude":36.4752222,"longitude":-82.4074167},{"latitude":37.0602875,"longitude":-88.7729583},{"latitude":53.5,"longitude":50.15},{"latitude":11.5472,"longitude":43.1594},{"latitude":19.934856,"longitude":110.458961},{"latitude":-7.913889,"longitude":39.665},{"latitude":48.310472,"longitude":-114.256},{"latitude":-7.750933647,"longitude":38.2032814},{"latitude":36.9261,"longitude":-111.4483},{"latitude":16.091667,"longitude":-86.8875},{"latitude":4.55,"longitude":-61.11667},{"latitude":43.532913,"longitude":-84.079647},{"latitude":42.208689,"longitude":-75.979839},{"latitude":33.262539,"longitude":44.234578},{"latitude":18.807914,"longitude":100.783419},{"latitude":16.116761,"longitude":103.773797},{"latitude":15.229539,"longitude":103.253231},{"latitude":9.777622,"longitude":98.585483},{"latitude":12.274572,"longitude":102.318958},{"latitude":33.619167,"longitude":-114.716889},{"latitude":33.785608,"longitude":42.4412},{"latitude":33.338053,"longitude":43.597072},{"latitude":33.940194,"longitude":44.361583},{"latitude":15.185833,"longitude":120.560278},{"latitude":5.900897,"longitude":118.059486},{"latitude":20.960556,"longitude":101.4025},{"latitude":20.6827,"longitude":101.994},{"latitude":41.3824,"longitude":123.2901},{"latitude":37.2716,"longitude":118.2819},{"latitude":16.791389,"longitude":-62.193333},{"latitude":56.801667,"longitude":-132.945278},{"latitude":34.41,"longitude":112.28},{"latitude":34.16,"longitude":117.11},{"latitude":32.750836,"longitude":51.861267},{"latitude":20.165453,"longitude":94.941185},{"latitude":25.988333,"longitude":95.674444},{"latitude":11.75,"longitude":108.367},{"latitude":17.515,"longitude":106.590556},{"latitude":9.949676,"longitude":105.133659},{"latitude":9.188049,"longitude":105.174721},{"latitude":15.405944,"longitude":108.705889},{"latitude":13.04955,"longitude":109.333706},{"latitude":19.372,"longitude":98.437},{"latitude":43.285719,"longitude":16.679719},{"latitude":3.722556,"longitude":11.553269},{"latitude":9.576889,"longitude":-13.611961},{"latitude":46.992094,"longitude":8.390315},{"latitude":47.36029,"longitude":8.47805},{"latitude":50.823194,"longitude":6.186389},{"latitude":48.7793,"longitude":8.08048},{"latitude":28.777639,"longitude":-81.237489},{"latitude":10.227025,"longitude":103.967169},{"latitude":40.316111,"longitude":-78.833889},{"latitude":27.687778,"longitude":86.731389},{"latitude":27.14743,"longitude":87.050819},{"latitude":27.253117,"longitude":86.670044},{"latitude":28.782222,"longitude":83.7225},{"latitude":28.633,"longitude":84},{"latitude":27.517,"longitude":86.6},{"latitude":27.052222,"longitude":86.861944},{"latitude":27.303509,"longitude":86.55043},{"latitude":28.111111,"longitude":82.294167},{"latitude":28.627,"longitude":82.195},{"latitude":29.274167,"longitude":82.193333},{"latitude":28,"longitude":83.833},{"latitude":27.35,"longitude":84.667},{"latitude":27.315,"longitude":87.193333},{"latitude":28.586,"longitude":81.636},{"latitude":29.971064,"longitude":81.818932},{"latitude":28.985718,"longitude":82.819145},{"latitude":29.53896,"longitude":81.185364},{"latitude":28.753333,"longitude":80.581944},{"latitude":34.991389,"longitude":126.382778},{"latitude":36.579886,"longitude":26.375822},{"latitude":37.682717,"longitude":26.347061},{"latitude":36.963333,"longitude":26.940556},{"latitude":36.696111,"longitude":24.4775},{"latitude":37.080556,"longitude":25.368056},{"latitude":37.010278,"longitude":25.127778},{"latitude":36.127777,"longitude":29.566656},{"latitude":25.557111,"longitude":34.583711},{"latitude":51.602222,"longitude":6.141944},{"latitude":12.121458,"longitude":120.100031},{"latitude":8.951322,"longitude":125.477972},{"latitude":8.601261,"longitude":123.334481},{"latitude":18.178092,"longitude":120.531522},{"latitude":13.157064,"longitude":123.746247},{"latitude":8.178508,"longitude":123.841731},{"latitude":49.209445,"longitude":7.401323},{"latitude":10.307542,"longitude":123.979439},{"latitude":53.632221,"longitude":7.191389},{"latitude":53.681572,"longitude":7.055731},{"latitude":-16.438611,"longitude":-39.080833},{"latitude":9.272222,"longitude":21.197222},{"latitude":-25.684,"longitude":-54.44024},{"latitude":-6.346639,"longitude":-39.293777},{"latitude":-10.241667,"longitude":-48.35278},{"latitude":-17.7267,"longitude":-48.6114},{"latitude":46.916306,"longitude":-114.090556},{"latitude":-24.427778,"longitude":145.428611},{"latitude":-24.903889,"longitude":152.318611},{"latitude":35.9523611,"longitude":-112.1469722},{"latitude":29.62225,"longitude":-95.6565278},{"latitude":-20.066668,"longitude":148.86667},{"latitude":39.570129,"longitude":-104.849294},{"latitude":34.425139,"longitude":-103.079278},{"latitude":30.915667,"longitude":-102.916139},{"latitude":35.654222,"longitude":-105.142389},{"latitude":29.818194,"longitude":-95.672611},{"latitude":38.049719,"longitude":-103.509431},{"latitude":32.289417,"longitude":-106.921972},{"latitude":32.719047,"longitude":-98.891},{"latitude":31.1525,"longitude":-97.407778},{"latitude":30.735281,"longitude":-101.202972},{"latitude":22.315365,"longitude":114.195349},{"latitude":37.8933,"longitude":23.7261},{"latitude":19.9136,"longitude":-155.864},{"latitude":0.4880555,"longitude":72.995556},{"latitude":68.223333,"longitude":-135.005833},{"latitude":65.1833333,"longitude":-125.4166667},{"latitude":64.0833333,"longitude":-125.5833333},{"latitude":66.26666667,"longitude":-128.65},{"latitude":66.3676,"longitude":-133.7594},{"latitude":68.3676,"longitude":-133.7594},{"latitude":-19.455198,"longitude":169.22394},{"latitude":3.485962897,"longitude":72.80607462},{"latitude":62.35,"longitude":-124.3333},{"latitude":69.917,"longitude":-128.95},{"latitude":-17.8,"longitude":-63.166667},{"latitude":65.566667,"longitude":-37.1166667},{"latitude":17.645278,"longitude":-63.220556},{"latitude":39.642556,"longitude":-106.917694},{"latitude":39.779255,"longitude":-104.88184},{"latitude":68.580833,"longitude":15.026111},{"latitude":41.565124,"longitude":-81.4863555},{"latitude":40.8214167,"longitude":-82.5166389},{"latitude":32.5163333,"longitude":-84.9388611},{"latitude":34.5677144,"longitude":-98.4166367},{"latitude":40.451828,"longitude":-105.011336},{"latitude":39.648682,"longitude":19.855771},{"latitude":39.202676,"longitude":20.187968},{"latitude":35.140318,"longitude":-111.6692392},{"latitude":38.893889,"longitude":-119.995278},{"latitude":42.481803,"longitude":-114.487733},{"latitude":43.73333333,"longitude":7.41666666},{"latitude":41.391667,"longitude":-70.615278},{"latitude":41.533056,"longitude":-71.282222},{"latitude":43.343333,"longitude":-72.517222},{"latitude":43.20267,"longitude":-71.50233},{"latitude":43.39383,"longitude":-70.708},{"latitude":41.330056,"longitude":-72.045139},{"latitude":45.546556,"longitude":-94.059889},{"latitude":24,"longitude":96},{"latitude":33.450333,"longitude":-88.591361},{"latitude":56.230119,"longitude":43.784042},{"latitude":46.9711944,"longitude":-123.9365556},{"latitude":42.082022,"longitude":-80.176217},{"latitude":3.5833,"longitude":72.7167},{"latitude":41.669336,"longitude":-70.280356},{"latitude":17.913936,"longitude":-87.971075},{"latitude":34.848628,"longitude":-111.788472},{"latitude":24.62,"longitude":-82.87},{"latitude":24.62,"longitude":24.62},{"latitude":24.628,"longitude":82.873},{"latitude":39.642908,"longitude":-79.916314},{"latitude":38.373147,"longitude":-81.593189},{"latitude":41.338478,"longitude":-75.723403},{"latitude":47.510722,"longitude":-94.934722},{"latitude":40.4675,"longitude":50.046667},{"latitude":-24.493889,"longitude":150.576111},{"latitude":-13.84861111,"longitude":-171.7408333},{"latitude":-28.833889,"longitude":153.5625},{"latitude":46.92065,"longitude":-96.8157639},{"latitude":39.1275,"longitude":-94.598889},{"latitude":33.307833,"longitude":-111.655},{"latitude":13.73,"longitude":106.987},{"latitude":44.3489167,"longitude":-105.5393611},{"latitude":56.380278,"longitude":85.208333},{"latitude":33.676132,"longitude":-117.731164},{"latitude":16.676028,"longitude":101.195108},{"latitude":10.7112,"longitude":99.361706},{"latitude":32.857,"longitude":103.683},{"latitude":23.4,"longitude":116.683},{"latitude":0,"longitude":0},{"latitude":6.498553,"longitude":-58.254119},{"latitude":-25.4555,"longitude":-54.843592},{"latitude":6.806944,"longitude":-58.104444},{"latitude":5.167,"longitude":-59.483},{"latitude":40.094,"longitude":94.4818},{"latitude":43.616389,"longitude":13.362222},{"latitude":41.542301,"longitude":128.243571},{"latitude":11,"longitude":11},{"latitude":-27,"longitude":-70},{"latitude":29.587778,"longitude":34.778056},{"latitude":19.65916667,"longitude":-80.09083333},{"latitude":37.82,"longitude":28.204},{"latitude":36.978333,"longitude":8.876389},{"latitude":40.898553,"longitude":29.309219},{"latitude":40.849278,"longitude":-77.848694},{"latitude":-17.8,"longitude":122.2},{"latitude":-32.78,"longitude":151.83},{"latitude":63.55805,"longitude":-20.14833},{"latitude":46.642514,"longitude":14.337739},{"latitude":8.288527,"longitude":-62.760361},{"latitude":53.1167,"longitude":9.8},{"latitude":70.679722,"longitude":23.668889},{"latitude":70.99,"longitude":25.83},{"latitude":71.029722,"longitude":27.826667},{"latitude":70.065,"longitude":29.844},{"latitude":48.137778,"longitude":11.690278},{"latitude":35,"longitude":51},{"latitude":36,"longitude":59},{"latitude":49.9608,"longitude":8.64361},{"latitude":58.08,"longitude":108.08},{"latitude":44.523889,"longitude":129.568889},{"latitude":32.332624,"longitude":-88.751868},{"latitude":39.8441,"longitude":-89.677889},{"latitude":41.976375,"longitude":25.589817},{"latitude":37.303,"longitude":-108.628056},{"latitude":40.481181,"longitude":-107.21766},{"latitude":35.511058,"longitude":-108.789308},{"latitude":37.044222,"longitude":-100.95986},{"latitude":38.069694,"longitude":-102.6885},{"latitude":39.370621,"longitude":-101.698992},{"latitude":44.520194,"longitude":-109.023806},{"latitude":62.18,"longitude":6.0742},{"latitude":52.33,"longitude":0.51},{"latitude":49.919,"longitude":-6.3075},{"latitude":37.245667,"longitude":-93.388639},{"latitude":68.435833,"longitude":17.388056},{"latitude":70.866667,"longitude":29},{"latitude":59.883333,"longitude":10.616667},{"latitude":69.311053,"longitude":87.332183},{"latitude":45.002097,"longitude":37.347272},{"latitude":37.151814,"longitude":-94.498269},{"latitude":40.652083,"longitude":-75.440806},{"latitude":36.2818694,"longitude":-94.3068111},{"latitude":47.121944,"longitude":51.821389},{"latitude":44.709,"longitude":65.591},{"latitude":41.708661,"longitude":-86.31725},{"latitude":55.617222,"longitude":38.059999},{"latitude":-11.8333,"longitude":34.1667},{"latitude":64.360281,"longitude":40.430167},{"latitude":51.334366,"longitude":46.022952},{"latitude":66.041811,"longitude":76.313938},{"latitude":63.110079,"longitude":75.162243},{"latitude":38.89746,"longitude":-77.00643},{"latitude":43.513557,"longitude":51.052817},{"latitude":63.340297,"longitude":53.482592},{"latitude":66.00077,"longitude":57.221113},{"latitude":65.070387,"longitude":57.082045},{"latitude":67.380537,"longitude":53.051016},{"latitude":57.783917,"longitude":28.395614},{"latitude":62.18,"longitude":74.53},{"latitude":56.18,"longitude":92.475},{"latitude":49.670833,"longitude":73.334444},{"latitude":55.1,"longitude":82.9},{"latitude":60.1,"longitude":64.83},{"latitude":39.083333,"longitude":63.602222},{"latitude":56.939444,"longitude":40.940833},{"latitude":43.5412,"longitude":125.1201},{"latitude":37.5711,"longitude":139.0646},{"latitude":16.7286,"longitude":-169.534},{"latitude":41.143353,"longitude":-85.152778},{"latitude":40.978111,"longitude":-124.108611},{"latitude":30.31666,"longitude":-97.7666},{"latitude":34.829164,"longitude":-77.612139},{"latitude":33.220627,"longitude":-87.611403},{"latitude":42.402,"longitude":-90.709472},{"latitude":61.25,"longitude":5.45},{"latitude":22.289372,"longitude":114.152153},{"latitude":66.400431,"longitude":112.030325},{"latitude":39.1888,"longitude":45.4584},{"latitude":40.7377,"longitude":46.3176},{"latitude":59.186703,"longitude":10.258628},{"latitude":50.0366,"longitude":82.4942},{"latitude":54.7747,"longitude":69.1839},{"latitude":15.86875,"longitude":-61.270022},{"latitude":16.2578,"longitude":-61.2625},{"latitude":17.6358,"longitude":-61.8286},{"latitude":-10.8708,"longitude":-61.8465},{"latitude":10.249978,"longitude":-67.649419},{"latitude":-14.854192,"longitude":-74.961811},{"latitude":-7.139183,"longitude":-78.4894},{"latitude":-8.75,"longitude":158.2},{"latitude":9.933,"longitude":43.15},{"latitude":-18.0489,"longitude":-39.8642},{"latitude":5.81108,"longitude":-55.1907},{"latitude":-14.3044,"longitude":-67.3534},{"latitude":-11.1077,"longitude":-67.5512},{"latitude":5.319114,"longitude":-72.383975},{"latitude":0.978519,"longitude":-79.6266},{"latitude":-39.2928,"longitude":-71.9159},{"latitude":-24.6863,"longitude":-53.6975},{"latitude":-29.711358,"longitude":-53.688153},{"latitude":-12.4823,"longitude":-41.277},{"latitude":-34.8103,"longitude":149.726},{"latitude":-7.218958,"longitude":-39.2701},{"latitude":-36.542317,"longitude":-56.721756},{"latitude":-48.7831,"longitude":-70.15},{"latitude":-40.7512,"longitude":-65.0343},{"latitude":-46.533056,"longitude":-68.951111},{"latitude":-22.619167,"longitude":-63.793189},{"latitude":12.3694,"longitude":123.629},{"latitude":12.502417,"longitude":124.635778},{"latitude":6.05367,"longitude":121.011},{"latitude":9.25352,"longitude":124.707},{"latitude":10.8581,"longitude":121.069},{"latitude":36.7166,"longitude":127.499119},{"latitude":35.088543,"longitude":128.07037},{"latitude":37.438081,"longitude":127.960383},{"latitude":34.758906,"longitude":126.379872},{"latitude":35.903756,"longitude":126.615906},{"latitude":34.0736,"longitude":139.56},{"latitude":38.812222,"longitude":139.787222},{"latitude":40.1919,"longitude":140.371},{"latitude":37.2274,"longitude":140.431},{"latitude":34.6764,"longitude":131.79},{"latitude":35.255,"longitude":136.924},{"latitude":33.1497,"longitude":130.302},{"latitude":43.1161,"longitude":141.38},{"latitude":43.041,"longitude":144.193},{"latitude":26.224153,"longitude":120.00275},{"latitude":22.041075,"longitude":120.730208},{"latitude":26.1598,"longitude":119.958},{"latitude":11.34075,"longitude":162.327861},{"latitude":21.211,"longitude":-156.974},{"latitude":11.202,"longitude":119.417},{"latitude":-8.78822,"longitude":142.882},{"latitude":-7.49686,"longitude":144.82},{"latitude":-3.667,"longitude":142.483},{"latitude":-9.07595,"longitude":149.32},{"latitude":-8.033,"longitude":141.717},{"latitude":-8.05,"longitude":142.933},{"latitude":-7.583,"longitude":141.317},{"latitude":-8.50582,"longitude":151.081},{"latitude":-3.04361,"longitude":152.629},{"latitude":-7.00992,"longitude":141.494},{"latitude":-7.42035,"longitude":143.122},{"latitude":-8.88468,"longitude":147.731},{"latitude":-6.183,"longitude":149.533},{"latitude":-5.6525,"longitude":151.507},{"latitude":-4.49972,"longitude":154.226},{"latitude":-7.89756,"longitude":145.396},{"latitude":-6.27111,"longitude":150.331},{"latitude":-3.18985,"longitude":142.43},{"latitude":56.4843,"longitude":-132.37},{"latitude":61.5338,"longitude":-165.584},{"latitude":61.5816,"longitude":-159.543},{"latitude":62.0954,"longitude":-163.682},{"latitude":62.9529,"longitude":-155.606},{"latitude":61.5363,"longitude":-160.341},{"latitude":59.2438,"longitude":-135.524},{"latitude":62.1883,"longitude":-159.775},{"latitude":59.4601,"longitude":-135.316},{"latitude":58.4253,"longitude":-135.707},{"latitude":51.878,"longitude":-176.646},{"latitude":8.017,"longitude":-78.2},{"latitude":8.62876,"longitude":-79.0347},{"latitude":8.133,"longitude":-77.7},{"latitude":7.583,"longitude":-78.2},{"latitude":15.966111,"longitude":48.7883},{"latitude":37.020625,"longitude":41.191394},{"latitude":35.5608,"longitude":45.3147},{"latitude":25.986369,"longitude":63.030167},{"latitude":26.4731,"longitude":67.7172},{"latitude":35.335508,"longitude":75.536047},{"latitude":33.9021,"longitude":70.0716},{"latitude":25.2747,"longitude":64.586},{"latitude":27.7906,"longitude":66.6473},{"latitude":25.3181,"longitude":68.3661},{"latitude":25.0678,"longitude":61.8054},{"latitude":31.909422,"longitude":70.896639},{"latitude":29.961011,"longitude":70.485925},{"latitude":28.8783,"longitude":64.3998},{"latitude":35.886592,"longitude":71.800578},{"latitude":29.3481,"longitude":71.717981},{"latitude":32.9729,"longitude":70.5279},{"latitude":24.261667,"longitude":55.609167},{"latitude":37.6681,"longitude":45.0687},{"latitude":38.325678,"longitude":48.424356},{"latitude":27.674725,"longitude":54.383278},{"latitude":36.635833,"longitude":53.193611},{"latitude":36.663333,"longitude":51.464722},{"latitude":36.168083,"longitude":57.595183},{"latitude":37.492958,"longitude":57.308219},{"latitude":30.297714,"longitude":56.051139},{"latitude":29.084169,"longitude":58.450042},{"latitude":33.435378,"longitude":48.282889},{"latitude":20.504275,"longitude":45.199556},{"latitude":29.785133,"longitude":40.100006},{"latitude":24.5,"longitude":44.4},{"latitude":3.61361,"longitude":-53.2042},{"latitude":37.1211,"longitude":70.5181},{"latitude":-22.5889,"longitude":167.456},{"latitude":-19.7206,"longitude":163.661},{"latitude":-21.0961,"longitude":167.804},{"latitude":-18.8783,"longitude":169.308},{"latitude":-19.5164,"longitude":170.232},{"latitude":-18.7694,"longitude":169.001},{"latitude":-19.24,"longitude":169.605},{"latitude":-20.2492,"longitude":169.771},{"latitude":-14.8817,"longitude":166.558},{"latitude":-16.495,"longitude":167.438},{"latitude":-16.7961,"longitude":168.177},{"latitude":-16.333,"longitude":168.283},{"latitude":-16.8911,"longitude":168.551},{"latitude":-15.505033,"longitude":167.219742},{"latitude":-15.472,"longitude":167.835},{"latitude":-14.2181,"longitude":167.587},{"latitude":-16.0797,"longitude":167.401},{"latitude":-15.8656,"longitude":168.172},{"latitude":-15,"longitude":168.083},{"latitude":-16.5842,"longitude":168.159},{"latitude":-16.454,"longitude":167.823},{"latitude":-16.439,"longitude":168.257},{"latitude":-15.4708,"longitude":168.152},{"latitude":-15.3067,"longitude":167.967},{"latitude":-16.265,"longitude":167.924},{"latitude":-17.0903,"longitude":168.343},{"latitude":-13.328,"longitude":166.638},{"latitude":-13.8517,"longitude":167.537},{"latitude":-13.666,"longitude":167.712},{"latitude":-8.93611,"longitude":-139.552},{"latitude":-9.35167,"longitude":-140.078},{"latitude":-9.768794,"longitude":-139.011256},{"latitude":-14.4281,"longitude":-146.257},{"latitude":-15.5736,"longitude":-146.415},{"latitude":-13.733,"longitude":-172.3},{"latitude":28,"longitude":85.333},{"latitude":-14.3114,"longitude":-178.066},{"latitude":-19.080028,"longitude":-169.925639},{"latitude":-17.269,"longitude":-178.976},{"latitude":-15.9767,"longitude":-173.755},{"latitude":-15.5708,"longitude":-175.633},{"latitude":-19.777,"longitude":-174.341},{"latitude":-21.3783,"longitude":-174.958},{"latitude":-16.8028,"longitude":179.341},{"latitude":-12.4825,"longitude":177.071},{"latitude":-17.3458,"longitude":179.422},{"latitude":-16.6906,"longitude":-179.877},{"latitude":-16.466749,"longitude":179.33986},{"latitude":-18.1992,"longitude":-178.817},{"latitude":-18.1156,"longitude":179.34},{"latitude":-18.5667,"longitude":179.951},{"latitude":-17.6731,"longitude":177.098},{"latitude":-19.0581,"longitude":178.157},{"latitude":-17.7779,"longitude":177.197},{"latitude":-17.7433,"longitude":-179.342},{"latitude":-9.00667,"longitude":-158.037},{"latitude":-19.8425,"longitude":-157.703},{"latitude":-20.1361,"longitude":-157.345},{"latitude":-10.3767,"longitude":-161.002},{"latitude":-21.8956,"longitude":-157.905},{"latitude":-19.9678,"longitude":-158.119},{"latitude":25.083,"longitude":-77.3},{"latitude":22.745561,"longitude":-74.182353},{"latitude":24.315292,"longitude":-75.452331},{"latitude":24.629417,"longitude":-75.673775},{"latitude":24.158933,"longitude":-77.589758},{"latitude":3.18495,"longitude":115.454},{"latitude":16.2126,"longitude":-95.2016},{"latitude":21.788461,"longitude":-79.997203},{"latitude":22.5132,"longitude":-78.511},{"latitude":19.9336,"longitude":-72.8486},{"latitude":18.6631,"longitude":-74.1703},{"latitude":10.25,"longitude":-85.417},{"latitude":9.957053,"longitude":-84.139797},{"latitude":8.53333,"longitude":-83.3},{"latitude":9.85611,"longitude":-85.3708},{"latitude":10.3557,"longitude":-85.852892},{"latitude":10.768736,"longitude":-83.585614},{"latitude":10.569,"longitude":-83.5148},{"latitude":8.40667,"longitude":-78.1417},{"latitude":7.51778,"longitude":-78.1572},{"latitude":9.35664,"longitude":-79.8674},{"latitude":7.98784,"longitude":-80.4097},{"latitude":19.475083,"longitude":-96.797506},{"latitude":28.0261,"longitude":-114.024},{"latitude":25.0538,"longitude":-111.615},{"latitude":20.545994,"longitude":-100.88655},{"latitude":6.08333,"longitude":171.733},{"latitude":15.2622,"longitude":-83.7812},{"latitude":15.4722,"longitude":-84.3522},{"latitude":10.1733,"longitude":166.003},{"latitude":9.46667,"longitude":170.233},{"latitude":7.083,"longitude":171.133},{"latitude":5.90924,"longitude":169.637},{"latitude":11.1572,"longitude":166.887},{"latitude":5.63167,"longitude":168.125},{"latitude":7.833,"longitude":168.167},{"latitude":10.2833,"longitude":170.883},{"latitude":8.70444,"longitude":171.23},{"latitude":9.82316,"longitude":169.308},{"latitude":8.90056,"longitude":170.844},{"latitude":7.56535,"longitude":168.962},{"latitude":7.45235,"longitude":168.552},{"latitude":11.5225,"longitude":165.565},{"latitude":8.14528,"longitude":171.173},{"latitude":10.2168,"longitude":169.983},{"latitude":11.222,"longitude":169.852},{"latitude":14.8656,"longitude":-91.502},{"latitude":15.730878,"longitude":-88.583767},{"latitude":18.5725,"longitude":-69.9856},{"latitude":19.267,"longitude":-69.742},{"latitude":21.333,"longitude":-71.2},{"latitude":21.833,"longitude":-71.817},{"latitude":21.4445,"longitude":-71.1423},{"latitude":49.231528,"longitude":18.6135},{"latitude":26.5675,"longitude":12.8231},{"latitude":32.325,"longitude":15.061},{"latitude":41.2545,"longitude":36.5671},{"latitude":39.5546,"longitude":27.0138},{"latitude":37.8554,"longitude":30.3684},{"latitude":37.7314,"longitude":38.4689},{"latitude":39.6546,"longitude":43.0271},{"latitude":37.539,"longitude":36.9534},{"latitude":37.094261,"longitude":38.847103},{"latitude":40.562222,"longitude":43.115002},{"latitude":38.681478,"longitude":29.471675},{"latitude":44.941444,"longitude":17.297501},{"latitude":39.6715,"longitude":-31.1136},{"latitude":40.6204,"longitude":14.911294},{"latitude":45.738456,"longitude":7.368719},{"latitude":46.686389,"longitude":17.159056},{"latitude":47.627097,"longitude":17.808347},{"latitude":45.990928,"longitude":18.240983},{"latitude":37.422792,"longitude":24.950936},{"latitude":43.2054,"longitude":6.482},{"latitude":47.589583,"longitude":7.529914},{"latitude":-44,"longitude":170.28},{"latitude":59.2736,"longitude":38.0158},{"latitude":69.7633,"longitude":61.5564},{"latitude":61.2358,"longitude":46.6975},{"latitude":61.8852,"longitude":34.1547},{"latitude":53.602,"longitude":24.0538},{"latitude":53.9549,"longitude":30.0951},{"latitude":58.4742,"longitude":92.1125},{"latitude":51.6694,"longitude":94.4006},{"latitude":53.8114,"longitude":86.8772},{"latitude":71.978058,"longitude":102.490514},{"latitude":67.4372,"longitude":86.6219},{"latitude":43.2981,"longitude":45.7841},{"latitude":43.5129,"longitude":43.6366},{"latitude":43.2051,"longitude":44.6066},{"latitude":46.3739,"longitude":44.3309},{"latitude":59.2826,"longitude":-158.618},{"latitude":44.3048,"longitude":-96.8169},{"latitude":37.2958,"longitude":-81.2077},{"latitude":40.727,"longitude":-99.0068},{"latitude":33.4829,"longitude":-90.9856},{"latitude":35.1574,"longitude":-114.56},{"latitude":35.2595,"longitude":-113.938},{"latitude":46.2647,"longitude":-119.119},{"latitude":54.1325,"longitude":-165.785},{"latitude":32.6365,"longitude":-108.156},{"latitude":48.4839,"longitude":-122.938},{"latitude":66.590753,"longitude":66.611042},{"latitude":61.028479,"longitude":69.086067},{"latitude":62.11,"longitude":65.615},{"latitude":61.32,"longitude":63.6044},{"latitude":56.8281,"longitude":53.4575},{"latitude":58.5033,"longitude":49.3483},{"latitude":65.4809,"longitude":72.6989},{"latitude":62.1586,"longitude":77.3289},{"latitude":61.1083,"longitude":72.65},{"latitude":55.4753,"longitude":65.4156},{"latitude":40.2154,"longitude":69.6947},{"latitude":40.7277,"longitude":72.294},{"latitude":40.3588,"longitude":71.745},{"latitude":40.9846,"longitude":71.5567},{"latitude":42.4884,"longitude":59.6233},{"latitude":41.5843,"longitude":60.6417},{"latitude":38.8336,"longitude":65.9215},{"latitude":37.286667,"longitude":67.31},{"latitude":58.1042,"longitude":38.9294},{"latitude":50.6438,"longitude":36.5901},{"latitude":51.7506,"longitude":36.2956},{"latitude":52.7028,"longitude":39.5378},{"latitude":67.4886,"longitude":63.9931},{"latitude":54.64,"longitude":52.8017},{"latitude":56.7006,"longitude":47.9047},{"latitude":56.0903,"longitude":47.3473},{"latitude":54.401,"longitude":48.8027},{"latitude":51.0725,"longitude":58.5956},{"latitude":53.1106,"longitude":45.0211},{"latitude":54.1251,"longitude":45.2123},{"latitude":51.8583,"longitude":47.7456},{"latitude":15.3617,"longitude":75.0849},{"latitude":5.99368,"longitude":80.3203},{"latitude":6.254494,"longitude":81.235189},{"latitude":13.0956,"longitude":103.224},{"latitude":25.7036,"longitude":91.9787},{"latitude":26.106092,"longitude":91.585939},{"latitude":25.8839,"longitude":93.7711},{"latitude":26.7091,"longitude":92.7847},{"latitude":22.801,"longitude":90.3012},{"latitude":20.2573,"longitude":100.437},{"latitude":14.35,"longitude":108.017},{"latitude":27.6781,"longitude":84.4294},{"latitude":26.570822,"longitude":88.079578},{"latitude":27.583,"longitude":84.233},{"latitude":28.103633,"longitude":81.667006},{"latitude":-0.693342,"longitude":73.1556},{"latitude":6.74423,"longitude":73.1705},{"latitude":1.85917,"longitude":73.5219},{"latitude":16.699856,"longitude":98.545056},{"latitude":12.668311,"longitude":108.120272},{"latitude":20.819386,"longitude":106.724989},{"latitude":11.998153,"longitude":109.219372},{"latitude":8.731831,"longitude":106.632589},{"latitude":10.085119,"longitude":105.711922},{"latitude":21.397481,"longitude":103.007831},{"latitude":13.954986,"longitude":109.042267},{"latitude":14.004522,"longitude":108.017158},{"latitude":18.737569,"longitude":105.670764},{"latitude":24.269033,"longitude":97.246153},{"latitude":14.103886,"longitude":98.203636},{"latitude":10.049258,"longitude":98.538006},{"latitude":19.691494,"longitude":97.214825},{"latitude":16.444747,"longitude":97.660669},{"latitude":16.815233,"longitude":94.779911},{"latitude":21.3333,"longitude":95.1},{"latitude":-8.489039,"longitude":117.412119},{"latitude":-9.409717,"longitude":119.244494},{"latitude":-3.58365,"longitude":138.533},{"latitude":-3.43333,"longitude":140.817},{"latitude":2.83641,"longitude":117.374},{"latitude":0.717,"longitude":116.483},{"latitude":2.155497,"longitude":117.432256},{"latitude":-2.21656,"longitude":115.436},{"latitude":-2.499194,"longitude":112.974992},{"latitude":-5.661619,"longitude":132.731431},{"latitude":-8.13234,"longitude":124.597},{"latitude":2.65,"longitude":113.767},{"latitude":3.421,"longitude":115.154},{"latitude":3.967,"longitude":115.05},{"latitude":2.90639,"longitude":112.08},{"latitude":3.974,"longitude":115.618},{"latitude":4.84917,"longitude":115.408},{"latitude":3.73389,"longitude":115.479},{"latitude":5.4,"longitude":118.65},{"latitude":6.9225,"longitude":116.836},{"latitude":-5.242339,"longitude":105.178939},{"latitude":-6.26661,"longitude":106.891},{"latitude":3.908714,"longitude":108.387897},{"latitude":0.835578,"longitude":112.937144},{"latitude":0.063619,"longitude":111.473428},{"latitude":-3.286069,"longitude":103.8796},{"latitude":5.226681,"longitude":96.950342},{"latitude":4.24472,"longitude":100.553},{"latitude":-3.29472,"longitude":116.165},{"latitude":3.867,"longitude":115.683},{"latitude":4.13653,"longitude":117.667},{"latitude":0.583,"longitude":115.6},{"latitude":-34.9433,"longitude":117.809},{"latitude":-16.6369,"longitude":128.451},{"latitude":-13.3539,"longitude":141.721},{"latitude":-23.5653,"longitude":145.307},{"latitude":-10.15,"longitude":141.175},{"latitude":-25.8975,"longitude":139.348},{"latitude":-32.0014,"longitude":141.472},{"latitude":-20.3581,"longitude":148.952},{"latitude":-24.3461,"longitude":139.46},{"latitude":-30.0392,"longitude":145.952},{"latitude":-17.7486,"longitude":139.534},{"latitude":-9.23278,"longitude":142.218},{"latitude":-27.411389,"longitude":151.735278},{"latitude":-22.9133,"longitude":139.9},{"latitude":-33.4094,"longitude":149.652},{"latitude":-23.6031,"longitude":148.807},{"latitude":-24.8806,"longitude":113.672},{"latitude":-31.5383,"longitude":145.794},{"latitude":39.7825,"longitude":116.387778},{"latitude":42.235,"longitude":118.908},{"latitude":36.2475,"longitude":113.126},{"latitude":40.0603,"longitude":113.482},{"latitude":40.851422,"longitude":111.824103},{"latitude":40.56,"longitude":109.997},{"latitude":38.280686,"longitude":114.6973},{"latitude":43.5567,"longitude":122.2},{"latitude":46.083,"longitude":122.017},{"latitude":43.9156,"longitude":115.964},{"latitude":21.5394,"longitude":109.294},{"latitude":28.9189,"longitude":111.64},{"latitude":29.1028,"longitude":110.443},{"latitude":24.35,"longitude":116.133},{"latitude":22.0064,"longitude":113.376},{"latitude":24.2075,"longitude":109.391},{"latitude":21.2144,"longitude":110.358},{"latitude":30.3203,"longitude":109.485},{"latitude":32.9808,"longitude":112.615},{"latitude":32.1506,"longitude":112.291},{"latitude":30.671,"longitude":111.441},{"latitude":32.7081,"longitude":108.931},{"latitude":34.633,"longitude":98.867},{"latitude":33.0636,"longitude":107.008},{"latitude":35.7997,"longitude":107.603},{"latitude":36.5275,"longitude":102.043},{"latitude":36.6369,"longitude":109.554},{"latitude":38.2692,"longitude":109.731},{"latitude":46.2503,"longitude":102.802},{"latitude":46.3764,"longitude":96.2211},{"latitude":46.1633,"longitude":100.704},{"latitude":43.5917,"longitude":104.43},{"latitude":47.9541,"longitude":91.6282},{"latitude":49.6633,"longitude":100.099},{"latitude":27.7936,"longitude":99.6772},{"latitude":24.4011,"longitude":98.5317},{"latitude":22.7933,"longitude":100.959},{"latitude":27.3256,"longitude":103.755},{"latitude":25.8258,"longitude":114.912},{"latitude":29.3386,"longitude":117.176},{"latitude":29.733,"longitude":115.983},{"latitude":28.9658,"longitude":118.899},{"latitude":34.55,"longitude":119.25},{"latitude":28.5622,"longitude":121.429},{"latitude":35.0461,"longitude":118.412},{"latitude":24.7964,"longitude":118.59},{"latitude":29.7333,"longitude":118.256},{"latitude":36.6467,"longitude":119.119},{"latitude":37.1871,"longitude":122.229},{"latitude":31.4944,"longitude":120.429},{"latitude":27.7019,"longitude":118.001},{"latitude":27.9122,"longitude":120.852},{"latitude":33.3856,"longitude":120.125},{"latitude":29.3447,"longitude":120.032},{"latitude":29.9342,"longitude":122.362},{"latitude":30.5536,"longitude":97.1083},{"latitude":31.3,"longitude":107.5},{"latitude":32.3911,"longitude":105.702},{"latitude":28.8522,"longitude":105.393},{"latitude":31.4281,"longitude":104.741},{"latitude":30.754,"longitude":106.062},{"latitude":29.3033,"longitude":94.3353},{"latitude":30.8361,"longitude":108.406},{"latitude":41.2625,"longitude":80.2917},{"latitude":38.1494,"longitude":85.5328},{"latitude":41.7181,"longitude":82.9869},{"latitude":41.6978,"longitude":86.1289},{"latitude":45.617,"longitude":84.883},{"latitude":43.9558,"longitude":81.3303},{"latitude":50.25,"longitude":127.3},{"latitude":46.843394,"longitude":130.465389},{"latitude":41.1014,"longitude":121.062},{"latitude":47.239628,"longitude":123.918131},{"latitude":42.8828,"longitude":129.451258},{"latitude":35.888863,"longitude":14.508417},{"latitude":36.026389,"longitude":14.298333},{"latitude":-27.286389,"longitude":120.554722},{"latitude":11.95,"longitude":-66.67},{"latitude":53.1067,"longitude":-9.65361},{"latitude":53.2303,"longitude":-9.46778},{"latitude":54.383333,"longitude":13.325278},{"latitude":63.9241,"longitude":65.0487},{"latitude":53.471138,"longitude":14.63775},{"latitude":42.2673,"longitude":-71.8757},{"latitude":30.5822,"longitude":117.0502},{"latitude":26.8997,"longitude":114.7375},{"latitude":39.9681,"longitude":119.731},{"latitude":35.018,"longitude":110.993},{"latitude":36.117,"longitude":103.617},{"latitude":39.8569,"longitude":98.3414},{"latitude":40.0255,"longitude":124.2866},{"latitude":39.85,"longitude":110.033},{"latitude":26.54,"longitude":101.799},{"latitude":-54.16534,"longitude":-36.30288},{"latitude":-68,"longitude":-58},{"latitude":-63.37,"longitude":-62.83},{"latitude":40.913923,"longitude":-73.782008},{"latitude":40.75058,"longitude":-73.99358},{"latitude":41.298669,"longitude":-72.925992},{"latitude":41.8791966,"longitude":-87.6388507},{"latitude":27.4839,"longitude":95.0169},{"latitude":24.8333,"longitude":50.9166},{"latitude":47.490244,"longitude":-122.764814},{"latitude":43.165527,"longitude":-95.202805},{"latitude":38.5912,"longitude":-92.1561},{"latitude":35.5925,"longitude":-113.4859},{"latitude":35.5651,"longitude":-114.514},{"latitude":48.011736,"longitude":10.100903},{"latitude":42.074197,"longitude":-87.805346},{"latitude":39.307408,"longitude":-76.615552},{"latitude":72.579187,"longitude":-38.4572},{"latitude":60.7472,"longitude":-0.85385},{"latitude":-6.956608,"longitude":115.931239},{"latitude":42.071945,"longitude":-70.22139},{"latitude":47.629,"longitude":-122.339},{"latitude":4.6333,"longitude":114.3833},{"latitude":43.323815,"longitude":45.017761},{"latitude":17.9023,"longitude":-62.8324},{"latitude":-13.2314,"longitude":-38.5432},{"latitude":-13.386571,"longitude":-38.909122},{"latitude":17.5344,"longitude":-88.298},{"latitude":57.47,"longitude":41.01},{"latitude":42.87,"longitude":41.12},{"latitude":52.81,"longitude":41.48},{"latitude":56.464,"longitude":-5.4},{"latitude":73.01910987,"longitude":3.609654755},{"latitude":3.609654755,"longitude":73.01910987},{"latitude":3.484,"longitude":73.802},{"latitude":73.801,"longitude":3.801},{"latitude":73.9,"longitude":3.222},{"latitude":0,"longitude":0},{"latitude":3.8,"longitude":73.8},{"latitude":58.2321,"longitude":45.3314},{"latitude":34.796111,"longitude":138.189444},{"latitude":-27.6619,"longitude":-52.2683},{"latitude":46.413056,"longitude":6.258611},{"latitude":45.3967,"longitude":6.63472},{"latitude":33.521925,"longitude":-117.584722},{"latitude":35.387775,"longitude":-80.709136},{"latitude":50.677776,"longitude":-1.317803},{"latitude":56.816666,"longitude":-5.116667},{"latitude":40.1172,"longitude":65.1708},{"latitude":48.86667,"longitude":2.333333},{"latitude":44.81111,"longitude":-1.186023},{"latitude":36.75,"longitude":-5.166667},{"latitude":52.6617,"longitude":12.7458},{"latitude":-18.9538,"longitude":22.3668},{"latitude":5.21,"longitude":114.7419},{"latitude":36.1781,"longitude":5.32449},{"latitude":46.1792,"longitude":-1.19528},{"latitude":43.504444,"longitude":-114.296194},{"latitude":46.86667,"longitude":6.7},{"latitude":50.8,"longitude":-1.083333},{"latitude":49.84997,"longitude":19.020193},{"latitude":43.2247,"longitude":-93.4067},{"latitude":-20.330706,"longitude":-67.046881},{"latitude":-20.240932,"longitude":-67.62538},{"latitude":-18.133114,"longitude":-65.768781},{"latitude":-44.8898,"longitude":168.6762},{"latitude":-44.9486,"longitude":168.7068},{"latitude":-44.9486,"longitude":168.7068},{"latitude":-44.8898,"longitude":168.6762},{"latitude":-1.319242,"longitude":36.927775},{"latitude":51.025,"longitude":7.1837},{"latitude":47.478,"longitude":14.008},{"latitude":47.965,"longitude":16.259},{"latitude":6.290501,"longitude":-62.534499},{"latitude":53.646667,"longitude":9.704167},{"latitude":52.8333,"longitude":11.2027},{"latitude":51.4888,"longitude":10.7833},{"latitude":52.2361,"longitude":13.6667},{"latitude":35.417,"longitude":116.533},{"latitude":53,"longitude":122.5},{"latitude":46.583333,"longitude":125},{"latitude":37.8284,"longitude":-121.626},{"latitude":57.56066668,"longitude":40.15736945},{"latitude":52.91500001,"longitude":103.575},{"latitude":55.86067,"longitude":49.10099},{"latitude":50.605,"longitude":137.08167},{"latitude":48.528,"longitude":135.179},{"latitude":52.3678,"longitude":104.183},{"latitude":55.589,"longitude":38.154},{"latitude":44.55,"longitude":38.083},{"latitude":47.117,"longitude":38.513},{"latitude":46.9575,"longitude":6.86472},{"latitude":46.1608,"longitude":8.87861},{"latitude":47.3764,"longitude":8.7575},{"latitude":46.5453,"longitude":6.61667},{"latitude":47.2267,"longitude":8.07806},{"latitude":-22.637253,"longitude":-152.805192},{"latitude":58.116667,"longitude":102.4666667},{"latitude":56.85,"longitude":105.7167},{"latitude":44.270556,"longitude":135.054722},{"latitude":57.7667,"longitude":108.05},{"latitude":40.5553253,"longitude":-84.3866186},{"latitude":15.98166667,"longitude":-11.3},{"latitude":-11.3111,"longitude":15.98166667},{"latitude":-8.12639,"longitude":157.143},{"latitude":18.451111,"longitude":-66.675556},{"latitude":47.398,"longitude":-120.206},{"latitude":-36.7394,"longitude":144.33},{"latitude":-21.0864,"longitude":-44.2258},{"latitude":-31.66778,"longitude":116.015},{"latitude":53.7828,"longitude":7.91389},{"latitude":53.7067,"longitude":7.82028},{"latitude":44.024983,"longitude":-88.551336},{"latitude":52.06,"longitude":23.53},{"latitude":49.31,"longitude":25.42},{"latitude":51.24,"longitude":31.09},{"latitude":50.6833,"longitude":25.4833},{"latitude":42.1285833,"longitude":-86.4285},{"latitude":43.0410278,"longitude":-88.2370556},{"latitude":36.73333,"longitude":-5.166667},{"latitude":52.67888,"longitude":-7.814369},{"latitude":52.659,"longitude":-8.624},{"latitude":-34.9489,"longitude":150.537},{"latitude":-37.8636,"longitude":144.746},{"latitude":-14.5211,"longitude":132.378},{"latitude":-27.64,"longitude":152.712},{"latitude":62.1,"longitude":7.2},{"latitude":47.1734,"longitude":12.4719},{"latitude":42.4028889,"longitude":-88.3751111},{"latitude":25.8488611,"longitude":-81.3902778},{"latitude":48.1357,"longitude":114.646},{"latitude":-31.8886,"longitude":152.514},{"latitude":-33.3817,"longitude":149.133},{"latitude":-29.7594,"longitude":153.03},{"latitude":13.360967,"longitude":121.825583},{"latitude":34.869167,"longitude":48.5525},{"latitude":51.2117,"longitude":-58.6583},{"latitude":18.1158,"longitude":-65.4227},{"latitude":23.188811,"longitude":94.051094},{"latitude":15.8644,"longitude":-61.5806},{"latitude":40.255208,"longitude":29.562569},{"latitude":41.13825,"longitude":27.919094},{"latitude":42.0158,"longitude":35.0664},{"latitude":38.747769,"longitude":41.661236},{"latitude":40.137722,"longitude":26.426777},{"latitude":39.809858,"longitude":30.519378},{"latitude":-17.6344,"longitude":24.1767},{"latitude":-22.9799,"longitude":14.6453},{"latitude":-34.855139,"longitude":-55.094278},{"latitude":32.5356,"longitude":74.3639},{"latitude":48.0711,"longitude":-65.4603},{"latitude":15.7631,"longitude":-84.5436},{"latitude":0.530583,"longitude":37.5342},{"latitude":41.5381,"longitude":120.435},{"latitude":-15.412,"longitude":167.691},{"latitude":2.17784,"longitude":111.202},{"latitude":3.3,"longitude":114.783},{"latitude":13.4817,"longitude":22.4672},{"latitude":59.0528,"longitude":-160.397},{"latitude":56.9591,"longitude":-158.633},{"latitude":55.1163,"longitude":-162.266},{"latitude":59.4499,"longitude":-157.328},{"latitude":59.324,"longitude":-155.902},{"latitude":31.081803,"longitude":77.067967},{"latitude":19.1833,"longitude":77.3167},{"latitude":32.1651,"longitude":76.2634},{"latitude":32.2972,"longitude":50.8422},{"latitude":-8.57889,"longitude":157.876},{"latitude":42.357628,"longitude":-3.620764},{"latitude":42.589,"longitude":-5.655556},{"latitude":66.0696,"longitude":-162.766},{"latitude":41.6139,"longitude":64.2332},{"latitude":37.2233,"longitude":40.6317},{"latitude":46.6725,"longitude":83.3408},{"latitude":-8.183,"longitude":-76.517},{"latitude":0.093056,"longitude":-76.8675},{"latitude":39.603606,"longitude":47.8815},{"latitude":33.586606,"longitude":46.404842},{"latitude":36.909381,"longitude":54.401339},{"latitude":37.348017,"longitude":46.127903},{"latitude":12.311,"longitude":122.085},{"latitude":23.4567,"longitude":111.248},{"latitude":42.8414,"longitude":93.6692},{"latitude":55.315,"longitude":-160.523},{"latitude":26.739708,"longitude":83.449708},{"latitude":-0.58,"longitude":-72.41},{"latitude":39.7079,"longitude":-77.7295},{"latitude":52.3875,"longitude":-126.596},{"latitude":67.2456,"longitude":23.0689},{"latitude":65.2537,"longitude":-166.859},{"latitude":-18.8952,"longitude":-41.9822},{"latitude":67.4633,"longitude":33.5883},{"latitude":16.929861,"longitude":121.753036},{"latitude":9.73852,"longitude":-85.0138},{"latitude":10.478,"longitude":-84.6345},{"latitude":5.42706,"longitude":7.20603},{"latitude":68.1147,"longitude":-145.579},{"latitude":58.6678,"longitude":-69.9558},{"latitude":60.0506,"longitude":-77.2869},{"latitude":11.057997,"longitude":124.565322},{"latitude":67.5661,"longitude":-162.975},{"latitude":63.6864,"longitude":-170.493},{"latitude":66.2496,"longitude":-166.089},{"latitude":64.7272,"longitude":-155.47},{"latitude":68.3488,"longitude":-166.799},{"latitude":60.3714,"longitude":-166.271},{"latitude":67.7362,"longitude":-164.563},{"latitude":62.0605,"longitude":-163.302},{"latitude":64.3191,"longitude":-158.741},{"latitude":61.5239,"longitude":-166.147},{"latitude":63.7668,"longitude":-171.733},{"latitude":70.4673,"longitude":-157.436},{"latitude":62.6467,"longitude":-160.191},{"latitude":68.1336,"longitude":-151.743},{"latitude":47.866667,"longitude":88.116667},{"latitude":44.458656,"longitude":18.724783},{"latitude":32.769167,"longitude":-97.441528},{"latitude":19.6235,"longitude":96.201028},{"latitude":21.406667,"longitude":94.130278},{"latitude":70.961111,"longitude":-8.575833},{"latitude":11.267,"longitude":98.767},{"latitude":28.189158,"longitude":113.219633},{"latitude":49.566667,"longitude":117.329444},{"latitude":39.794444,"longitude":106.799444},{"latitude":41.6163,"longitude":-87.4128},{"latitude":46.398308,"longitude":-94.138078},{"latitude":37.858333,"longitude":-80.399444},{"latitude":35.635278,"longitude":-77.385278},{"latitude":60.149167,"longitude":-164.285556},{"latitude":34.200833,"longitude":-119.207222},{"latitude":36.531994,"longitude":-93.200556},{"latitude":27.884,"longitude":109.31},{"latitude":26.8575,"longitude":114.737222},{"latitude":39.307222,"longitude":-76.615556},{"latitude":40.7505,"longitude":-73.9935},{"latitude":-16.119037,"longitude":-146.368406},{"latitude":42.85245555,"longitude":-73.92886667},{"latitude":55.34,"longitude":52.06},{"latitude":58.8535,"longitude":47.0114},{"latitude":72.57958419,"longitude":-38.45918503},{"latitude":5.31,"longitude":5.45},{"latitude":51.656389,"longitude":5.708611},{"latitude":9.859097,"longitude":126.014017},{"latitude":53.7425,"longitude":7.49778},{"latitude":-8.55,"longitude":147.083},{"latitude":-9.2,"longitude":148.25},{"latitude":-8.583,"longitude":147.2},{"latitude":-8.35,"longitude":146.983},{"latitude":-9.333,"longitude":149.15},{"latitude":-8.533,"longitude":147.25},{"latitude":-8,"longitude":142.75},{"latitude":-5.117,"longitude":141.633},{"latitude":47.089167,"longitude":7.29},{"latitude":-25.5,"longitude":30.9138},{"latitude":49.416666,"longitude":32.1333},{"latitude":58.392393,"longitude":19.193142},{"latitude":57.9521,"longitude":19.0812},{"latitude":29.959167,"longitude":-81.339722},{"latitude":47.0579,"longitude":31.9198},{"latitude":27.394005,"longitude":86.06144},{"latitude":38.508978,"longitude":-122.81288},{"latitude":28.289806,"longitude":-81.437083},{"latitude":30.181944,"longitude":-82.576944},{"latitude":29.066944,"longitude":-81.283889},{"latitude":29.903021,"longitude":-81.685923},{"latitude":-8.337041,"longitude":-76.385733},{"latitude":41.791,"longitude":-111.852},{"latitude":41.552,"longitude":-112.062},{"latitude":42.17,"longitude":-112.289},{"latitude":39.2232,"longitude":-106.869},{"latitude":32.216,"longitude":-80.752},{"latitude":54.268299,"longitude":48.2267},{"latitude":37.5,"longitude":71.5},{"latitude":-24.9415,"longitude":31.4446},{"latitude":39.9557,"longitude":-75.182},{"latitude":31.7936111,"longitude":-98.9565},{"latitude":31.6411783,"longitude":-96.5144594},{"latitude":29.9766667,"longitude":-99.0854722},{"latitude":47.4436,"longitude":8.23361},{"latitude":38.689194,"longitude":-75.358889},{"latitude":54.3333,"longitude":-130.283},{"latitude":38.344167,"longitude":-98.859167},{"latitude":38.8422,"longitude":-99.2732},{"latitude":38.662119,"longitude":-90.652044},{"latitude":47.824444,"longitude":-91.830833},{"latitude":47.211111,"longitude":-93.509722},{"latitude":48.065556,"longitude":-96.185},{"latitude":45.932333,"longitude":-89.268283},{"latitude":45.927778,"longitude":-89.730833},{"latitude":41.691389,"longitude":-93.566389},{"latitude":52.358889,"longitude":-97.018333},{"latitude":27.692701,"longitude":-97.290376},{"latitude":54.566667,"longitude":-130.433333},{"latitude":33.405,"longitude":-118.415833},{"latitude":35.059364,"longitude":-118.151856},{"latitude":46.6766,"longitude":7.87908},{"latitude":47.7548,"longitude":-122.259},{"latitude":18.3822,"longitude":-88.4119},{"latitude":53.0647,"longitude":-9.5109},{"latitude":46.610833,"longitude":7.9425},{"latitude":46.963,"longitude":7.482},{"latitude":60.716667,"longitude":77.65},{"latitude":52.5158333,"longitude":-7.8855556},{"latitude":38.0655,"longitude":-97.8606},{"latitude":34.5646,"longitude":69.1554},{"latitude":24.0346,"longitude":47.345},{"latitude":39.6427611,"longitude":-106.9159347},{"latitude":41.7198243,"longitude":-87.7488327},{"latitude":41.94895807,"longitude":-87.6587534},{"latitude":44.56666667,"longitude":38.01666667},{"latitude":39.771944,"longitude":-94.909706},{"latitude":41.76888,"longitude":-72.6815},{"latitude":41.046937,"longitude":-73.541493},{"latitude":40.734722,"longitude":-74.164167},{"latitude":47.3636,"longitude":17.5008},{"latitude":53.768612,"longitude":8.644722},{"latitude":43.938956,"longitude":-90.253433},{"latitude":32.41083,"longitude":-80.635},{"latitude":37.00028,"longitude":35.41833},{"latitude":38.533889,"longitude":-106.933056},{"latitude":34.3767,"longitude":109.12},{"latitude":33.803392,"longitude":-118.339611},{"latitude":44.2725,"longitude":-86.246944},{"latitude":21.318681,"longitude":-157.922427},{"latitude":26.919722,"longitude":-81.990556},{"latitude":35.96666666,"longitude":-112.1333333},{"latitude":47.285556,"longitude":-68.312778},{"latitude":42.153333,"longitude":-79.258056},{"latitude":46.409444,"longitude":-74.78},{"latitude":37.053611,"longitude":-84.615556},{"latitude":38.263889,"longitude":-78.896389},{"latitude":48.114444,"longitude":-98.908611},{"latitude":46.7975,"longitude":-102.801944},{"latitude":47.706944,"longitude":-104.1925},{"latitude":42.8375,"longitude":-103.095556},{"latitude":42.053333,"longitude":-102.803889},{"latitude":40.206389,"longitude":-100.592222},{"latitude":24.726111,"longitude":-81.051389},{"latitude":47.138611,"longitude":-104.807222},{"latitude":48.094444,"longitude":-105.575},{"latitude":44.688333,"longitude":-111.1175},{"latitude":37.435,"longitude":-105.866667},{"latitude":38.755,"longitude":-109.754722},{"latitude":39.299722,"longitude":-114.841944},{"latitude":40.440833,"longitude":-109.51},{"latitude":33.46285,"longitude":-105.534751},{"latitude":34.265556,"longitude":-110.005556},{"latitude":44.889722,"longitude":-116.101389},{"latitude":45.123889,"longitude":-113.881389},{"latitude":37.624049,"longitude":-118.837772},{"latitude":48.521944,"longitude":-123.024444},{"latitude":48.708056,"longitude":-122.910556},{"latitude":48.498889,"longitude":-122.6625},{"latitude":46.157972,"longitude":-123.878694},{"latitude":44.580361,"longitude":-124.057917},{"latitude":62.786111,"longitude":-164.490833},{"latitude":63.888333,"longitude":-160.798889},{"latitude":70.330833,"longitude":-149.5975},{"latitude":62.692222,"longitude":-159.569167},{"latitude":61.579167,"longitude":-159.215556},{"latitude":70.21,"longitude":-151.005556},{"latitude":60.213611,"longitude":-162.043889},{"latitude":60.873333,"longitude":-162.524444},{"latitude":60.790278,"longitude":-161.443611},{"latitude":59.876389,"longitude":-163.168611},{"latitude":61.8646418,"longitude":-162.026111},{"latitude":61.775,"longitude":-161.319444},{"latitude":60.335278,"longitude":-162.666944},{"latitude":59.356944,"longitude":-157.471111},{"latitude":59.726667,"longitude":-157.259444},{"latitude":59.128056,"longitude":-156.858611},{"latitude":58.990278,"longitude":-159.05},{"latitude":59.074444,"longitude":-160.275},{"latitude":66.645,"longitude":-143.74},{"latitude":64.778056,"longitude":-141.149722},{"latitude":66.039167,"longitude":-154.264722},{"latitude":65.697778,"longitude":-156.351389},{"latitude":65.531111,"longitude":-148.541111},{"latitude":65.143611,"longitude":-149.37},{"latitude":64.729444,"longitude":-158.074167},{"latitude":65.507778,"longitude":-150.140833},{"latitude":65.179556,"longitude":-152.075833},{"latitude":67.008611,"longitude":-146.366389},{"latitude":66.362222,"longitude":-147.406667},{"latitude":65.573889,"longitude":-144.780833},{"latitude":66.888056,"longitude":-157.1625},{"latitude":66.256708,"longitude":-145.815319},{"latitude":67.251389,"longitude":-150.176111},{"latitude":35.658889,"longitude":-117.829444},{"latitude":36.318611,"longitude":-119.392778},{"latitude":37.284722,"longitude":-120.513889},{"latitude":-34.4564,"longitude":-57.7706},{"latitude":-33.963882,"longitude":-58.288612},{"latitude":-22.8592,"longitude":-47.1082},{"latitude":33.423725,"longitude":-112.374456},{"latitude":40.659444,"longitude":-111.4997222},{"latitude":-27.542778,"longitude":151.916389},{"latitude":-27.408333,"longitude":141.808333},{"latitude":-27.55830002,"longitude":152.3419952},{"latitude":50.2395,"longitude":66.941},{"latitude":53.542369,"longitude":9.981592},{"latitude":54.455802,"longitude":11.109273},{"latitude":48.3676,"longitude":9.2863},{"latitude":57.503611,"longitude":-134.585},{"latitude":58.195278,"longitude":-136.3475},{"latitude":57.779722,"longitude":-135.218333},{"latitude":57.955278,"longitude":-136.236389},{"latitude":57.515,"longitude":-134.946111},{"latitude":58.254444,"longitude":-134.897778},{"latitude":58.420556,"longitude":-135.449167},{"latitude":58.096111,"longitude":-135.409722},{"latitude":56.961389,"longitude":-133.910278},{"latitude":55.478889,"longitude":-133.147778},{"latitude":55.481667,"longitude":-132.646111},{"latitude":55.131111,"longitude":-131.578056},{"latitude":55.688056,"longitude":-132.536667},{"latitude":55.206389,"longitude":-132.828333},{"latitude":55.903333,"longitude":-130.006667},{"latitude":56.351944,"longitude":-133.6225},{"latitude":56.328889,"longitude":-133.61},{"latitude":56.116389,"longitude":-133.121667},{"latitude":56.255,"longitude":-158.775278},{"latitude":58.185556,"longitude":-157.375556},{"latitude":56.311111,"longitude":-158.534167},{"latitude":56.295556,"longitude":-158.401398},{"latitude":55.906667,"longitude":-159.160833},{"latitude":57.585393,"longitude":-157.571944},{"latitude":58.702222,"longitude":-157.0025},{"latitude":56.938611,"longitude":-154.1825},{"latitude":57.566944,"longitude":-154.450278},{"latitude":57.535,"longitude":-153.976667},{"latitude":57.218056,"longitude":-153.269722},{"latitude":57.922876,"longitude":-152.500511},{"latitude":57.885278,"longitude":-152.846111},{"latitude":56.899444,"longitude":-154.247778},{"latitude":57.471389,"longitude":-153.815278},{"latitude":58.190833,"longitude":-152.370556},{"latitude":57.025556,"longitude":-154.145833},{"latitude":57.161389,"longitude":-154.229722},{"latitude":57.93,"longitude":-153.040556},{"latitude":58.49,"longitude":-152.582222},{"latitude":58.166667,"longitude":-152.5},{"latitude":57.730278,"longitude":-153.320556},{"latitude":57.77,"longitude":-153.548889},{"latitude":57.55,"longitude":-153.75},{"latitude":67.106389,"longitude":-157.8575},{"latitude":65.981667,"longitude":-161.149167},{"latitude":66.975833,"longitude":-160.436667},{"latitude":66.912222,"longitude":-156.897222},{"latitude":66.8175,"longitude":-161.022222},{"latitude":66.6,"longitude":-159.985833},{"latitude":65.331389,"longitude":-166.465833},{"latitude":64.615,"longitude":-162.270556},{"latitude":64.550556,"longitude":-163.007222},{"latitude":65.240278,"longitude":-166.339444},{"latitude":65.6225,"longitude":-168.095},{"latitude":64.689167,"longitude":-163.412778},{"latitude":64.897778,"longitude":-163.703333},{"latitude":64.939444,"longitude":-161.154167},{"latitude":63.49,"longitude":-162.110278},{"latitude":64.371111,"longitude":-161.223889},{"latitude":63.515833,"longitude":-162.278056},{"latitude":65.563056,"longitude":-167.921667},{"latitude":52.220278,"longitude":-174.206389},{"latitude":52.941667,"longitude":-168.848889},{"latitude":59.968889,"longitude":-141.661667},{"latitude":60.081901,"longitude":-142.493611},{"latitude":62.68,"longitude":-164.66},{"latitude":62.520556,"longitude":-164.847778},{"latitude":59.933056,"longitude":-164.030556},{"latitude":54.8475,"longitude":-163.410278},{"latitude":56.0075,"longitude":-161.160278},{"latitude":56.006111,"longitude":-160.560833},{"latitude":55.579167,"longitude":-133.076111},{"latitude":59.755,"longitude":-161.845278},{"latitude":63.030556,"longitude":-163.532778},{"latitude":64.875833,"longitude":-157.730556},{"latitude":61.845278,"longitude":-165.571389},{"latitude":59.966944,"longitude":-154.851667},{"latitude":59.782222,"longitude":-154.1325},{"latitude":60.905833,"longitude":-162.439167},{"latitude":59.960833,"longitude":-162.881111},{"latitude":63.010833,"longitude":-154.383889},{"latitude":62.971944,"longitude":-156.082778},{"latitude":61.934444,"longitude":-162.899444},{"latitude":60.902778,"longitude":-161.230556},{"latitude":61.096944,"longitude":-160.969444},{"latitude":62.894444,"longitude":-160.065},{"latitude":70.638056,"longitude":-159.994722},{"latitude":-38.9755,"longitude":-70.113581},{"latitude":-37.390617,"longitude":-68.904211},{"latitude":-45.6,"longitude":-69.083333},{"latitude":-54.276667,"longitude":-36.511667},{"latitude":-51.533333,"longitude":-72.3},{"latitude":-51.733333,"longitude":-72.516667},{"latitude":-46.4333,"longitude":-67.5333},{"latitude":-47.033333,"longitude":-67.25},{"latitude":-41.6,"longitude":-65.366667},{"latitude":-41.3,"longitude":-69.5833},{"latitude":-47.533333,"longitude":-71.75},{"latitude":-49.328889,"longitude":-72.93},{"latitude":60.077222,"longitude":-147.991944},{"latitude":62.071111,"longitude":-142.048333},{"latitude":63.329444,"longitude":-142.953611},{"latitude":65.827778,"longitude":-144.076111},{"latitude":56.014722,"longitude":-132.833889},{"latitude":61.867778,"longitude":-158.135},{"latitude":61.788056,"longitude":-157.350278},{"latitude":61.700566,"longitude":-157.165833},{"latitude":61.7875,"longitude":-156.591111},{"latitude":63.8675,"longitude":-148.968889},{"latitude":56.973056,"longitude":-133.945556},{"latitude":55.554658,"longitude":-133.101693},{"latitude":63.886111,"longitude":-152.301944},{"latitude":64.9975,"longitude":-150.644167},{"latitude":56.577222,"longitude":-169.663611},{"latitude":60.8725,"longitude":-146.691111},{"latitude":55.344444,"longitude":-131.663333},{"latitude":45.87,"longitude":-63.461111},{"latitude":55.913889,"longitude":-61.184444},{"latitude":54.910278,"longitude":-59.785278},{"latitude":61.588611,"longitude":-71.929444},{"latitude":48.508611,"longitude":-71.641389},{"latitude":50.281944,"longitude":-63.611389},{"latitude":48.478056,"longitude":-68.496944},{"latitude":3.578742,"longitude":72.902075},{"latitude":3.578742,"longitude":72.902075},{"latitude":58.706111,"longitude":-98.512222},{"latitude":58.614167,"longitude":-101.468889},{"latitude":56.792778,"longitude":-98.907222},{"latitude":57.889444,"longitude":-101.679167},{"latitude":52.045,"longitude":-95.466111},{"latitude":54.610833,"longitude":-97.760278},{"latitude":54.167222,"longitude":-93.557222},{"latitude":58.491389,"longitude":-119.407778},{"latitude":54.304722,"longitude":-110.741111},{"latitude":49.183333,"longitude":-123.95},{"latitude":48.85,"longitude":-123.5},{"latitude":48.75,"longitude":-123.233333},{"latitude":49.337222,"longitude":-124.393889},{"latitude":54.397222,"longitude":-124.262778},{"latitude":49.073889,"longitude":-123.0075},{"latitude":49.101111,"longitude":-122.630556},{"latitude":52.139722,"longitude":-128.063611},{"latitude":49.460556,"longitude":-123.718611},{"latitude":64.190833,"longitude":-114.076667},{"latitude":25.651944,"longitude":-108.538056},{"latitude":28.0375,"longitude":-115.189444},{"latitude":22.9475,"longitude":-109.937081},{"latitude":27.705278,"longitude":-114.911111},{"latitude":27.093056,"longitude":-112.098889},{"latitude":4.531313889,"longitude":73.373325},{"latitude":50.8,"longitude":4.4},{"latitude":17.683611,"longitude":-88.045},{"latitude":16.516667,"longitude":-88.416667},{"latitude":16.966667,"longitude":-88.216667},{"latitude":16.536944,"longitude":-88.361667},{"latitude":18.355556,"longitude":-88.130833},{"latitude":15.314722,"longitude":-91.476111},{"latitude":12.168611,"longitude":-83.0675},{"latitude":14.041667,"longitude":-84.630556},{"latitude":13.897222,"longitude":-84.404722},{"latitude":13.716667,"longitude":-84.776944},{"latitude":14.737778,"longitude":-83.975833},{"latitude":11.133333,"longitude":-84.783333},{"latitude":9.866667,"longitude":-85.483333},{"latitude":47.585,"longitude":10.6866},{"latitude":16.791389,"longitude":-62.193333},{"latitude":18.81,"longitude":-69.79},{"latitude":18.907626,"longitude":-70.719852},{"latitude":18.34,"longitude":-78.335556},{"latitude":51.478506,"longitude":7.222781},{"latitude":47.874,"longitude":10.6294},{"latitude":48.1408,"longitude":11.555},{"latitude":49.446389,"longitude":11.081944},{"latitude":18.245278,"longitude":-65.643333},{"latitude":-32.349803,"longitude":-65.179932},{"latitude":18.338611,"longitude":-64.940833},{"latitude":17.747222,"longitude":-64.705},{"latitude":-45.016667,"longitude":-70.816667},{"latitude":-44.016667,"longitude":-70.466667},{"latitude":-20.466667,"longitude":-66.833333},{"latitude":48.3655,"longitude":10.8863},{"latitude":49.479633,"longitude":8.469858},{"latitude":51.451389,"longitude":7.013889},{"latitude":-14.4275,"longitude":-67.498056},{"latitude":40.05,"longitude":-76.31},{"latitude":40.01,"longitude":-75.29},{"latitude":1.8,"longitude":173.04},{"latitude":40.568,"longitude":-74.3275},{"latitude":38.5707244,"longitude":-90.1562211},{"latitude":4.9982,"longitude":-54.9919},{"latitude":2.5232,"longitude":-56.3241},{"latitude":5.516667,"longitude":-54.05},{"latitude":3.416667,"longitude":-54.033333},{"latitude":3.5017,"longitude":-55.0614},{"latitude":4.233333,"longitude":-55.45},{"latitude":4.016667,"longitude":-55.483333},{"latitude":4.11667,"longitude":-54.66667},{"latitude":4.406,"longitude":-57.223},{"latitude":3.1,"longitude":-56.483},{"latitude":2.33333,"longitude":-56.783333},{"latitude":5.616667,"longitude":-54.4},{"latitude":5.955556,"longitude":-57.039444},{"latitude":5.811111,"longitude":-55.190833},{"latitude":4.9,"longitude":-55.083333},{"latitude":1.96605,"longitude":-56.0035},{"latitude":4.35,"longitude":-54.41667},{"latitude":5.865833,"longitude":-56.3275},{"latitude":5.76667,"longitude":-56.63333},{"latitude":5.163333,"longitude":-59.483333},{"latitude":10.414,"longitude":-85.0917},{"latitude":37.0228,"longitude":-76.4519},{"latitude":45.529,"longitude":-122.6768},{"latitude":4.7,"longitude":-60.016667},{"latitude":3.95,"longitude":-59.133333},{"latitude":4.033333,"longitude":-58.583333},{"latitude":5.69252,"longitude":-60.28198},{"latitude":5.865278,"longitude":-60.614167},{"latitude":8.2,"longitude":-59.783333},{"latitude":5.266667,"longitude":-59.15},{"latitude":-22.641389,"longitude":-55.829722},{"latitude":8.516667,"longitude":-77.3},{"latitude":6.916667,"longitude":-71.9},{"latitude":-0.733333,"longitude":-73.016667},{"latitude":67.648,"longitude":134.695},{"latitude":2.179167,"longitude":-73.7875},{"latitude":0.978889,"longitude":-76.605556},{"latitude":7.596389,"longitude":-74.808889},{"latitude":7.968333,"longitude":-75.198333},{"latitude":5.071667,"longitude":-76.676389},{"latitude":9.511944,"longitude":-75.586389},{"latitude":-22.921667,"longitude":-42.074167},{"latitude":44.1871,"longitude":-73.4519},{"latitude":40.21889,"longitude":-74.75417},{"latitude":-11.85,"longitude":-55.46},{"latitude":-11.728889,"longitude":-49.068889},{"latitude":-9.505,"longitude":-50.625},{"latitude":-1.681944,"longitude":-50.48},{"latitude":-0.716944,"longitude":-48.522778},{"latitude":-2.627778,"longitude":-56.735833},{"latitude":-12.083333,"longitude":-45},{"latitude":-10.47,"longitude":-50.502778},{"latitude":-13.526944,"longitude":-48.220556},{"latitude":-7.228333,"longitude":-48.240833},{"latitude":-5.121389,"longitude":-60.380556},{"latitude":-13.05,"longitude":-55.910833},{"latitude":-20.538611,"longitude":-47.400833},{"latitude":-22.220833,"longitude":-54.805833},{"latitude":-7.258889,"longitude":-64.797778},{"latitude":-16.466667,"longitude":-54.633333},{"latitude":-25.383333,"longitude":-51.45},{"latitude":-27.172778,"longitude":-51.500833},{"latitude":39.9969556,"longitude":-75.1487722},{"latitude":57.1436,"longitude":-2.0985},{"latitude":55.8622,"longitude":-4.2512},{"latitude":55.952,"longitude":-3.189},{"latitude":54.9686,"longitude":-1.6171},{"latitude":53.794,"longitude":-1.547},{"latitude":53.477,"longitude":-2.23},{"latitude":53.405,"longitude":-2.979},{"latitude":51.5284,"longitude":-0.1331},{"latitude":-17.790278,"longitude":-50.918333},{"latitude":-19.563056,"longitude":-46.960278},{"latitude":-3.383611,"longitude":-57.718611},{"latitude":-4.387778,"longitude":-59.593889},{"latitude":-4.085,"longitude":-63.140833},{"latitude":-0.975,"longitude":-62.923889},{"latitude":58.571385,"longitude":-134.607754},{"latitude":47.615884,"longitude":-122.330017},{"latitude":58.335451,"longitude":-134.414978},{"latitude":59.470896,"longitude":-135.31723},{"latitude":55.346327,"longitude":-131.644707},{"latitude":48.429144,"longitude":-123.367023},{"latitude":-14.408889,"longitude":-56.445833},{"latitude":-14.216667,"longitude":-42.783333},{"latitude":34.6657,"longitude":3.351},{"latitude":-7.716944,"longitude":21.358056},{"latitude":-9.433017,"longitude":20.311189},{"latitude":-8.443056,"longitude":20.732222},{"latitude":-9.771944,"longitude":15.456111},{"latitude":11.034,"longitude":20.274},{"latitude":22.5806,"longitude":28.7207},{"latitude":39.2407,"longitude":-77.591},{"latitude":7.067,"longitude":38.5},{"latitude":9.359722,"longitude":42.7875},{"latitude":10.633333,"longitude":38.783333},{"latitude":10.316667,"longitude":37.733333},{"latitude":11.966667,"longitude":38},{"latitude":8.7163,"longitude":39.0059},{"latitude":6.733333,"longitude":44.266667},{"latitude":-3.416667,"longitude":10.65},{"latitude":-1.406111,"longitude":35.008056},{"latitude":0.1955,"longitude":37.4699},{"latitude":0.230278,"longitude":38.170556},{"latitude":6.825,"longitude":29.669},{"latitude":4.083,"longitude":30.65},{"latitude":4.37902,"longitude":-7.69695},{"latitude":-17.1667,"longitude":47.1833},{"latitude":35.016667,"longitude":135.766667},{"latitude":46.754997,"longitude":7.076111},{"latitude":46.63889,"longitude":8.58889},{"latitude":46.96694,"longitude":7.35806},{"latitude":-21.542778,"longitude":35.473056},{"latitude":-21.849167,"longitude":35.436944},{"latitude":-26,"longitude":32.916667},{"latitude":-21.707222,"longitude":35.452222},{"latitude":9.2575,"longitude":12.430278},{"latitude":5.05,"longitude":7.933333},{"latitude":13.007778,"longitude":7.660278},{"latitude":15.593611,"longitude":-13.322778},{"latitude":-3.721389,"longitude":55.208611},{"latitude":1.999167,"longitude":44.974167},{"latitude":14,"longitude":32.316667},{"latitude":21.800278,"longitude":31.516389},{"latitude":36.075833,"longitude":10.438611},{"latitude":3.719167,"longitude":33.754167},{"latitude":3.278611,"longitude":32.89},{"latitude":2.3275,"longitude":31.5},{"latitude":77.9,"longitude":16.683333},{"latitude":78.9275,"longitude":11.874167},{"latitude":36.362778,"longitude":36.282222},{"latitude":58.148,"longitude":24.003},{"latitude":57.784,"longitude":23.266},{"latitude":-23.87,"longitude":-147.67},{"latitude":23.133333,"longitude":113.28333},{"latitude":23.083332,"longitude":114.36667},{"latitude":41.727778,"longitude":0.535833},{"latitude":-53.2537,"longitude":-70.319228},{"latitude":48.458056,"longitude":-5.095556},{"latitude":45.499722,"longitude":-73.566111},{"latitude":43.645278,"longitude":-79.380556},{"latitude":65.641389,"longitude":-23.546111},{"latitude":65.995278,"longitude":-21.326944},{"latitude":65.731667,"longitude":-19.572778},{"latitude":63.929167,"longitude":-21.037778},{"latitude":53.091944,"longitude":-9.57},{"latitude":45.016667,"longitude":78.366667},{"latitude":48.991667,"longitude":89.919722},{"latitude":50.563333,"longitude":3.08805},{"latitude":37.862222,"longitude":68.862778},{"latitude":59.281667,"longitude":39.946667},{"latitude":61.921667,"longitude":159.23},{"latitude":68.514722,"longitude":112.48},{"latitude":71.927778,"longitude":114.08},{"latitude":60.719444,"longitude":114.931944},{"latitude":44.92,"longitude":147.621667},{"latitude":53.583333,"longitude":142.933333},{"latitude":64.895833,"longitude":45.722778},{"latitude":55.801667,"longitude":109.586667},{"latitude":56.361667,"longitude":114.93},{"latitude":60.355,"longitude":102.31},{"latitude":65.959167,"longitude":111.546389},{"latitude":56.701667,"longitude":60.79},{"latitude":61.676667,"longitude":96.355},{"latitude":52.466667,"longitude":85.35},{"latitude":42.080833,"longitude":-0.323333},{"latitude":38.856389,"longitude":-3.97},{"latitude":31.991667,"longitude":44.404167},{"latitude":52.226389,"longitude":5.181667},{"latitude":56.0575,"longitude":-6.243056},{"latitude":56.633333,"longitude":-6.557222},{"latitude":34.9878,"longitude":-81.0572},{"latitude":40.3544,"longitude":-79.9302},{"latitude":30.2187,"longitude":-81.8767},{"latitude":33.7791,"longitude":-84.5214},{"latitude":49.945556,"longitude":-6.331389},{"latitude":32.605278,"longitude":65.864167},{"latitude":30.969167,"longitude":61.866944},{"latitude":34.526667,"longitude":65.271667},{"latitude":36.998976,"longitude":-109.045172},{"latitude":32.9,"longitude":115.816667},{"latitude":25.674167,"longitude":116.746389},{"latitude":25.053333,"longitude":99.168333},{"latitude":25.0882,"longitude":104.9587},{"latitude":22.197075,"longitude":113.558911},{"latitude":26.206,"longitude":109.039},{"latitude":33.9085056,"longitude":-78.4366722},{"latitude":39.901439,"longitude":46.787031},{"latitude":40.0798,"longitude":-83.073},{"latitude":8.966667,"longitude":-80.333336},{"latitude":32.9685594,"longitude":-96.8364478},{"latitude":30.4000611,"longitude":-86.4714772},{"latitude":24.61667,"longitude":-82.86667},{"latitude":46.6758,"longitude":32.5064},{"latitude":-46.899693,"longitude":168.101592},{"latitude":-9.7422,"longitude":46.5067},{"latitude":27.441389,"longitude":109.699722},{"latitude":-9.74,"longitude":46.51},{"latitude":43.8269,"longitude":-66.0881},{"latitude":35.331389,"longitude":-77.608889},{"latitude":36.02,"longitude":-75.67},{"latitude":-51.31,"longitude":-59.61},{"latitude":-52.4282,"longitude":-59.0777},{"latitude":-52.03,"longitude":-58.47},{"latitude":23.738333,"longitude":100.025},{"latitude":23.375833,"longitude":104.243056},{"latitude":-3.14604,"longitude":-59.9863},{"latitude":-0.148056,"longitude":-66.9858},{"latitude":0.628269,"longitude":-66.115128},{"latitude":-6.11781,"longitude":-50.0035},{"latitude":-2.373,"longitude":-44.396389},{"latitude":-4.2446,"longitude":-56.00384},{"latitude":18.411944,"longitude":76.465},{"latitude":3.348119,"longitude":106.25805},{"latitude":0,"longitude":0},{"latitude":51.93749,"longitude":8.38257},{"latitude":50.00829,"longitude":8.27356},{"latitude":52.31,"longitude":13.24},{"latitude":52.27656,"longitude":7.43843},{"latitude":40.72222,"longitude":-8.816667},{"latitude":-3.416667,"longitude":119.916664},{"latitude":52.3387,"longitude":7.54133},{"latitude":18.2453,"longitude":-65.6434},{"latitude":27.379444,"longitude":52.7375},{"latitude":30.700556,"longitude":51.545},{"latitude":36.305833,"longitude":43.1475},{"latitude":35.512778,"longitude":134.786944},{"latitude":32.482222,"longitude":130.158889},{"latitude":28.321389,"longitude":129.928056},{"latitude":26.592778,"longitude":127.240278},{"latitude":41.801389,"longitude":129.855},{"latitude":38.00543,"longitude":125.77863},{"latitude":7.372222,"longitude":113.841667},{"latitude":47.712778,"longitude":96.524167},{"latitude":48.854167,"longitude":103.484167},{"latitude":49.973333,"longitude":92.079722},{"latitude":11.674167,"longitude":125.478611},{"latitude":13.855833,"longitude":121.105833},{"latitude":6.416667,"longitude":79.983333},{"latitude":5.966667,"longitude":80.683333},{"latitude":37.981667,"longitude":69.799444},{"latitude":23.266667,"longitude":119.666667},{"latitude":41.764722,"longitude":59.833056},{"latitude":-20.798,"longitude":115.406},{"latitude":-29.211,"longitude":116.009},{"latitude":-21.933,"longitude":114.128},{"latitude":-17.39,"longitude":123.68},{"latitude":-30.0318,"longitude":148.1222},{"latitude":-11.769167,"longitude":130.619722},{"latitude":-17.939722,"longitude":146.141944},{"latitude":-14.673056,"longitude":145.454444},{"latitude":-37.648889,"longitude":142.065278},{"latitude":-18.233889,"longitude":127.669722},{"latitude":-18.178,"longitude":125.591},{"latitude":-33.797222,"longitude":120.208056},{"latitude":-66.689444,"longitude":111.485833},{"latitude":40.21805555,"longitude":-111.7222222},{"latitude":40.51625,"longitude":-106.8663056},{"latitude":39.3806386,"longitude":-112.5077147},{"latitude":38.7364361,"longitude":-112.0989444},{"latitude":39.609722,"longitude":-110.75278},{"latitude":35.8798019,"longitude":-106.2694153},{"latitude":33.2590278,"longitude":-116.3209722},{"latitude":34.5711111,"longitude":-114.3582778},{"latitude":35.0219167,"longitude":-110.7225278},{"latitude":31.3426028,"longitude":-109.5064544},{"latitude":2.050278,"longitude":173.266667},{"latitude":0.490833,"longitude":173.828611},{"latitude":0.185278,"longitude":173.636389},{"latitude":0.228611,"longitude":173.410556},{"latitude":-2.633333,"longitude":179.816667},{"latitude":-2.5,"longitude":175.983333},{"latitude":-1.254722,"longitude":176.007222},{"latitude":-1.35,"longitude":176.45},{"latitude":3.086521,"longitude":172.811465},{"latitude":3.383333,"longitude":173},{"latitude":0.933333,"longitude":173},{"latitude":-0.616667,"longitude":174.366667},{"latitude":-1.35,"longitude":174.8},{"latitude":-7.240833,"longitude":141.092333},{"latitude":7.016667,"longitude":171.483333},{"latitude":7.133333,"longitude":171.916667},{"latitude":4.598889,"longitude":168.753056},{"latitude":9.083333,"longitude":167.333333},{"latitude":8.921667,"longitude":166.265556},{"latitude":7.1,"longitude":171.233333},{"latitude":6.040278,"longitude":171.984444},{"latitude":-36.835833,"longitude":175.700278},{"latitude":-40.85,"longitude":172.8},{"latitude":6.998333,"longitude":134.232778},{"latitude":6.906389,"longitude":134.145},{"latitude":-13.505,"longitude":-172.627778},{"latitude":-9.183056,"longitude":160.949722},{"latitude":-9.854722,"longitude":161.979167},{"latitude":-6.711944,"longitude":156.396111},{"latitude":-10.848056,"longitude":162.454167},{"latitude":-9.086111,"longitude":159.218889},{"latitude":-8.63,"longitude":158},{"latitude":27.9434,"longitude":-81.7834},{"latitude":57.7961,"longitude":41.0204},{"latitude":57.316667,"longitude":43.1},{"latitude":52.752919,"longitude":111.849},{"latitude":52.500967,"longitude":107.018852},{"latitude":55.365,"longitude":109.812},{"latitude":-14.216111,"longitude":-169.423611},{"latitude":-14.184444,"longitude":-169.67},{"latitude":37.41362,"longitude":-121.49133},{"latitude":37.3039,"longitude":-120.0222},{"latitude":1,"longitude":-1},{"latitude":-19.602167,"longitude":18.122667},{"latitude":-17.956461,"longitude":19.719439},{"latitude":33.3,"longitude":131.5333},{"latitude":-23.441667,"longitude":151.911389},{"latitude":-24.113333,"longitude":152.715278},{"latitude":-18.634,"longitude":146.5},{"latitude":51.515833,"longitude":-0.176111},{"latitude":50.44708,"longitude":-4.46753},{"latitude":48.721816,"longitude":-3.96395},{"latitude":65.612222,"longitude":-37.618333},{"latitude":55.778889,"longitude":-131.601389},{"latitude":59.715517,"longitude":-135.046692},{"latitude":60.17463,"longitude":-134.698088},{"latitude":33.626666,"longitude":-116.1596667},{"latitude":34.0158333,"longitude":-118.4513056},{"latitude":33.7484375,"longitude":-116.2748133},{"latitude":33.6228889,"longitude":-111.9105278},{"latitude":46.9694044,"longitude":-122.9025447},{"latitude":38.5793889,"longitude":-121.8569444},{"latitude":39.5263056,"longitude":-107.7269444},{"latitude":41.4448594,"longitude":-106.8235264},{"latitude":33.8756111,"longitude":-84.3019722},{"latitude":39.1460208,"longitude":-86.6166805},{"latitude":27.1816996,"longitude":-80.221294},{"latitude":40.79935,"longitude":-74.4148747},{"latitude":38.2131944,"longitude":-122.2806944},{"latitude":32.5722722,"longitude":-116.9801611},{"latitude":47.204805,"longitude":8.866834},{"latitude":47.06139,"longitude":-41.36079},{"latitude":27.42439,"longitude":-82.262364},{"latitude":26.471041,"longitude":-80.413591},{"latitude":57.45000001,"longitude":42.15000001},{"latitude":57.47944445,"longitude":43.29750001},{"latitude":55.8652,"longitude":-4.25033},{"latitude":51.494999,"longitude":-0.144643},{"latitude":-13.1167,"longitude":-72.5667},{"latitude":30.3417,"longitude":-85.7973},{"latitude":34.0953521,"longitude":-117.2348722},{"latitude":-13.2965,"longitude":-38.9924},{"latitude":-5.20192,"longitude":-37.3643},{"latitude":-8.28239,"longitude":-36.0135},{"latitude":19.282067,"longitude":166.636444},{"latitude":-22.7453,"longitude":-43.4603},{"latitude":48.880931,"longitude":2.355323},{"latitude":48.84,"longitude":2.318611},{"latitude":47.385626,"longitude":0.723347},{"latitude":-34.5978,"longitude":-58.367841},{"latitude":-34.90278,"longitude":-56.213781},{"latitude":-34.4741,"longitude":-57.843427},{"latitude":-34.893891,"longitude":-56.166589},{"latitude":37.511944,"longitude":-122.249444},{"latitude":47.18611,"longitude":7.15833},{"latitude":54.2,"longitude":16.15},{"latitude":-19.531109,"longitude":23.09092},{"latitude":30.998584,"longitude":103.619673},{"latitude":33.058044,"longitude":102.908775},{"latitude":52.4603,"longitude":5.52722},{"latitude":35.8563,"longitude":-77.8919},{"latitude":60.7772125,"longitude":-148.7215775},{"latitude":60.4749583,"longitude":-151.0382389},{"latitude":32.8262222,"longitude":-116.9724444},{"latitude":33.022744,"longitude":-118.588489},{"latitude":-0.5425,"longitude":-78.3657},{"latitude":51.53,"longitude":-0.125},{"latitude":52.378,"longitude":4.9},{"latitude":8.490278,"longitude":-13.289722},{"latitude":-17.911443,"longitude":25.828167},{"latitude":11.6335,"longitude":108.952},{"latitude":21.217,"longitude":104.033},{"latitude":39.3200422,"longitude":-120.1395628},{"latitude":43.416667,"longitude":6.733333},{"latitude":-38.225,"longitude":144.333},{"latitude":42.368097,"longitude":-83.072397},{"latitude":34.27833,"longitude":-119.29222},{"latitude":52.52493,"longitude":13.36963},{"latitude":52.7873,"longitude":4.90074},{"latitude":31.0849167,"longitude":-83.80325},{"latitude":65.878333,"longitude":44.215},{"latitude":64.441667,"longitude":40.421667},{"latitude":34.0131569,"longitude":-84.5970556},{"latitude":42.524722,"longitude":-75.064444},{"latitude":48.318961,"longitude":16.114275},{"latitude":-7.969597,"longitude":-14.393664},{"latitude":44.7357483,"longitude":-112.7200133},{"latitude":45.6993889,"longitude":-110.4483056},{"latitude":11.1111,"longitude":11.1111},{"latitude":35.889867,"longitude":14.508584},{"latitude":45.8063889,"longitude":-109.9811111},{"latitude":42.7427778,"longitude":-86.1078333},{"latitude":51.47,"longitude":-0.177833},{"latitude":45.4283,"longitude":12.3881},{"latitude":59.4486,"longitude":24.7532},{"latitude":60.1478,"longitude":24.9244},{"latitude":49.1417,"longitude":8.39472},{"latitude":37.0167,"longitude":-110.201},{"latitude":52.1919,"longitude":5.14694},{"latitude":40.7545,"longitude":-74.0071},{"latitude":53.1153,"longitude":4.83361},{"latitude":42.3864,"longitude":1.8667},{"latitude":27.9889167,"longitude":-82.0185556},{"latitude":14.507392,"longitude":35.888695},{"latitude":36.0245,"longitude":14.298359},{"latitude":13.9126,"longitude":100.607},{"latitude":24.988951,"longitude":55.023624},{"latitude":5.113033,"longitude":73.080288},{"latitude":51.33,"longitude":37.76833},{"latitude":44.309654,"longitude":8.486305},{"latitude":41.358901,"longitude":2.178447},{"latitude":33.604737,"longitude":-7.611337},{"latitude":28.967298,"longitude":-13.527528},{"latitude":28.470068,"longitude":-16.242471},{"latitude":32.641868,"longitude":-16.911478},{"latitude":36.702989,"longitude":-4.41395},{"latitude":37.738409,"longitude":-25.662539},{"latitude":42.241537,"longitude":-8.728799},{"latitude":26.0882,"longitude":-80.115373},{"latitude":50.900976,"longitude":-1.413975},{"latitude":25.779701,"longitude":-80.177279},{"latitude":25.081158,"longitude":-77.341207},{"latitude":38.712606,"longitude":-9.122483},{"latitude":36.534821,"longitude":-6.290649},{"latitude":43.343969,"longitude":5.333025},{"latitude":33.747198,"longitude":-118.276856},{"latitude":19.635393,"longitude":-155.998328},{"latitude":21.954549,"longitude":-159.355981},{"latitude":19.730967,"longitude":-155.054094},{"latitude":21.301185,"longitude":-157.865671},{"latitude":20.876456,"longitude":-156.683235},{"latitude":31.855945,"longitude":-116.624186},{"latitude":49.163978,"longitude":-123.942502},{"latitude":48.428339,"longitude":-123.370618},{"latitude":49.289012,"longitude":-123.111463},{"latitude":47.611241,"longitude":-122.350026},{"latitude":27.811187,"longitude":86.712661},{"latitude":40.639751,"longitude":-73.778925},{"latitude":56.179,"longitude":92.54265},{"latitude":33.5741791,"longitude":-117.1284732},{"latitude":61.221749,"longitude":-149.890852},{"latitude":60.121586,"longitude":-149.439983},{"latitude":39.895,"longitude":8.6383},{"latitude":51.501,"longitude":-0.774},{"latitude":12.3072,"longitude":76.6497},{"latitude":41.5162703,"longitude":-82.8694868},{"latitude":39.5889722,"longitude":-84.2248611},{"latitude":39.7561006,"longitude":-84.8427175},{"latitude":41.0120278,"longitude":-83.6686111},{"latitude":43.108802,"longitude":-79.06361},{"latitude":69.293,"longitude":139.5357},{"latitude":43.4425,"longitude":-79.850833},{"latitude":6.343791,"longitude":-58.591204},{"latitude":-34.75,"longitude":137.933},{"latitude":-17.638056,"longitude":177.066944},{"latitude":47.885,"longitude":10.6294},{"latitude":48.1408,"longitude":11.555},{"latitude":49.446,"longitude":11.081944},{"latitude":47.824,"longitude":10.623},{"latitude":48.3655,"longitude":10.886},{"latitude":47.851,"longitude":10.634},{"latitude":48.0411,"longitude":10.715},{"latitude":47.585,"longitude":10.6866},{"latitude":47.724,"longitude":10.311},{"latitude":-5.8,"longitude":144.44},{"latitude":-4,"longitude":144},{"latitude":-4.15,"longitude":142.51},{"latitude":-19.52666,"longitude":23.14944},{"latitude":-24.489444,"longitude":15.815278},{"latitude":47.78,"longitude":10.627},{"latitude":47.777,"longitude":10.623},{"latitude":51.451389,"longitude":7.0138},{"latitude":51.478506,"longitude":7.2222},{"latitude":50.954,"longitude":7.183},{"latitude":49.471,"longitude":8.469858},{"latitude":51.611667,"longitude":-0.808056},{"latitude":50.677778,"longitude":-1.109444},{"latitude":45.0519,"longitude":-64.6517},{"latitude":52.9394,"longitude":14.4217},{"latitude":47.75,"longitude":10.601},{"latitude":44.4811407,"longitude":-103.7860053},{"latitude":51.3222,"longitude":3.29306},{"latitude":-27.206944,"longitude":153.072778},{"latitude":54.5797,"longitude":18.5172},{"latitude":54.026944,"longitude":19.134167},{"latitude":51.551667,"longitude":19.179058},{"latitude":53.395072,"longitude":16.082814},{"latitude":52.331719,"longitude":16.966428},{"latitude":34.876944,"longitude":-89.783333},{"latitude":-32.949611,"longitude":-71.478583},{"latitude":13.91111,"longitude":100.60611},{"latitude":43.7603,"longitude":-79.875},{"latitude":41.506111,"longitude":32.088611},{"latitude":39.90888888,"longitude":-105.1172222},{"latitude":48.2361,"longitude":-101.2987},{"latitude":48.55457,"longitude":-109.67836},{"latitude":45.6576,"longitude":-120.9664},{"latitude":44.9095,"longitude":-123.003},{"latitude":34.681,"longitude":-90.3467},{"latitude":40.0427,"longitude":70.8381},{"latitude":4.2868,"longitude":73.554894},{"latitude":-8.525,"longitude":30.663},{"latitude":47.5489,"longitude":9.688},{"latitude":-54.9311,"longitude":-67.6263},{"latitude":51.656389,"longitude":5.708611},{"latitude":52.7308,"longitude":6.51611},{"latitude":52.2447,"longitude":6.04667},{"latitude":51.5122,"longitude":3.73111},{"latitude":53.4517,"longitude":5.67722},{"latitude":48.810278,"longitude":2.073332},{"latitude":43.1103889,"longitude":-88.0344167},{"latitude":42.62025,"longitude":-89.0415556},{"latitude":-29.5461,"longitude":28.271},{"latitude":51.765,"longitude":-0.24833},{"latitude":-31.952,"longitude":115.859},{"latitude":43.655996,"longitude":-79.38416},{"latitude":45.51527887,"longitude":-73.56142759},{"latitude":32.6638611,"longitude":-97.0942778},{"latitude":33.9780761,"longitude":-83.9623772},{"latitude":36.9645278,"longitude":-86.4196667},{"latitude":36.0396111,"longitude":-95.9846389},{"latitude":37.8405149,"longitude":-122.29134},{"latitude":35.372159,"longitude":-119.008393},{"latitude":44.4016,"longitude":37.7779},{"latitude":25.02694,"longitude":55.36611},{"latitude":48.54,"longitude":32.29},{"latitude":51.5778,"longitude":12.4944},{"latitude":30.15,"longitude":28.0833},{"latitude":37.706444,"longitude":-112.145806},{"latitude":49.393333,"longitude":8.6525},{"latitude":36.0485433,"longitude":-79.4748892},{"latitude":55.878333,"longitude":38.061667},{"latitude":24.938651,"longitude":98.483591},{"latitude":44.691431,"longitude":33.57567},{"latitude":-0.786917,"longitude":100.281},{"latitude":25.0872,"longitude":-77.3239},{"latitude":-7.70515,"longitude":38.158644},{"latitude":51.5173,"longitude":5.85572},{"latitude":31.865556,"longitude":64.195278},{"latitude":38.8309167,"longitude":-94.8903056},{"latitude":38.8041667,"longitude":-76.069},{"latitude":60.8181,"longitude":11.068},{"latitude":61.5472,"longitude":10.0611},{"latitude":60.88,"longitude":11.6731},{"latitude":48.7182058,"longitude":-118.6564714},{"latitude":39.0553,"longitude":-121.3411},{"latitude":47.547531,"longitude":7.58977},{"latitude":59.3233,"longitude":18.081},{"latitude":56.0419,"longitude":12.6912},{"latitude":-38.4468,"longitude":145.2378},{"latitude":34.4713056,"longitude":-97.9598611},{"latitude":40.75616,"longitude":-73.9906},{"latitude":3.207801,"longitude":73.037308},{"latitude":60.0912,"longitude":24.5628},{"latitude":36.1108806,"longitude":-109.5754222},{"latitude":29.215429,"longitude":-99.748962},{"latitude":41.606326,"longitude":-88.083003},{"latitude":40.144979,"longitude":-88.200197},{"latitude":37.9896667,"longitude":-122.0568889},{"latitude":25.325393,"longitude":-80.274775},{"latitude":39.753187,"longitude":-105.000093},{"latitude":-1.1111,"longitude":-1.1111},{"latitude":48.5548,"longitude":7.7778},{"latitude":50,"longitude":7.591667},{"latitude":32.825,"longitude":97.125},{"latitude":9.303333,"longitude":-78.236111},{"latitude":9.137778,"longitude":-77.933611},{"latitude":9.186667,"longitude":-77.984167},{"latitude":33.7772,"longitude":119.1478},{"latitude":46.70778,"longitude":15.76941},{"latitude":47.05932,"longitude":16.32449},{"latitude":9.559167,"longitude":-78.971111},{"latitude":43.9228,"longitude":-78.895},{"latitude":51.6472,"longitude":7.16333},{"latitude":62.03,"longitude":15.752},{"latitude":48.3693,"longitude":7.82772},{"latitude":22.233,"longitude":95.117},{"latitude":39.2118928,"longitude":-82.2292554},{"latitude":39.8402778,"longitude":-83.8401667},{"latitude":3.48489,"longitude":72.80408},{"latitude":34.0081,"longitude":-4.96556},{"latitude":18.475,"longitude":-69.975},{"latitude":-12.9033,"longitude":132.532},{"latitude":-12.6571,"longitude":132.893},{"latitude":-44.300278,"longitude":-176.220556},{"latitude":48.780147,"longitude":12.863573},{"latitude":48.7,"longitude":13.016667},{"latitude":48.574167,"longitude":13.450833},{"latitude":49.1419,"longitude":12.0819},{"latitude":49.022,"longitude":12.1111},{"latitude":49.04,"longitude":11.081944},{"latitude":-31.1127,"longitude":55.4611},{"latitude":25.7783,"longitude":-80.1703},{"latitude":8.39713,"longitude":-13.1291},{"latitude":39.068657,"longitude":-95.622482},{"latitude":-2.157488,"longitude":34.221232},{"latitude":38.3321,"longitude":-96.1912},{"latitude":29.229405,"longitude":-99.823947},{"latitude":37.609778,"longitude":-86.506925},{"latitude":36.009,"longitude":-86.5201},{"latitude":35.2051,"longitude":-85.8981},{"latitude":32.10027,"longitude":80.052778},{"latitude":51.855833,"longitude":11.418333},{"latitude":49.7999,"longitude":9.95555},{"latitude":33.1779444,"longitude":-96.5905278},{"latitude":42.1142897,"longitude":-87.9015376},{"latitude":-1.409595,"longitude":35.110803},{"latitude":46.118,"longitude":-122.898389},{"latitude":49.4427,"longitude":14.3841},{"latitude":41.3521,"longitude":-82.497},{"latitude":11.45,"longitude":-7.517},{"latitude":39.548,"longitude":-107.3233},{"latitude":39.0646,"longitude":-108.5705},{"latitude":39.5287,"longitude":-119.8116},{"latitude":38.584791,"longitude":-121.500517},{"latitude":-20.7897,"longitude":-138.57},{"latitude":-77.8477778,"longitude":166.6683333},{"latitude":-1.586418,"longitude":35.259036},{"latitude":-1.409569,"longitude":35.110788},{"latitude":-1.409569,"longitude":35.110788},{"latitude":-1.264132,"longitude":35.022719},{"latitude":35.179444,"longitude":129.075556},{"latitude":35.179444,"longitude":129.075556},{"latitude":48.869722,"longitude":2.782778},{"latitude":48.0314,"longitude":-122.4838},{"latitude":48.9558961,"longitude":-122.4581183},{"latitude":48.0538086,"longitude":-122.8106436},{"latitude":1,"longitude":1},{"latitude":1,"longitude":1},{"latitude":1,"longitude":1},{"latitude":1,"longitude":1},{"latitude":8.68333,"longitude":-77.5333},{"latitude":45.372869,"longitude":36.402761},{"latitude":8.936667,"longitude":98.530278},{"latitude":8.936667,"longitude":98.530278},{"latitude":42.35,"longitude":-71.0558},{"latitude":36.070781,"longitude":-5.602764},{"latitude":45.4164,"longitude":-75.6517},{"latitude":44.1793,"longitude":-77.3747},{"latitude":53.5789,"longitude":-113.5307},{"latitude":37.5343,"longitude":-77.42945},{"latitude":3.134,"longitude":101.686},{"latitude":58.76775,"longitude":-94.17425},{"latitude":49.8889,"longitude":-97.1342},{"latitude":44.2572,"longitude":-76.53715},{"latitude":-4.29694,"longitude":39.5714},{"latitude":-20.28866,"longitude":149.044966},{"latitude":39.42792,"longitude":-83.792118},{"latitude":32.409556,"longitude":-111.218388},{"latitude":32.954889,"longitude":-111.766832},{"latitude":33.111944,"longitude":-112.269166},{"latitude":33.420417,"longitude":-112.68618},{"latitude":32.960169,"longitude":-112.673636},{"latitude":35.39919,"longitude":-84.56177},{"latitude":40.6153136,"longitude":-103.2648454},{"latitude":41.8055975,"longitude":-107.19994},{"latitude":55.29944,"longitude":-123.08333},{"latitude":29.142222,"longitude":21.380556},{"latitude":29.142222,"longitude":21.380556},{"latitude":40.8752222,"longitude":-74.2813611},{"latitude":38.096035,"longitude":-92.5494875},{"latitude":57.3106,"longitude":43.1003},{"latitude":34.2637778,"longitude":-116.8560278},{"latitude":50.1403,"longitude":30.1808},{"latitude":34.056111,"longitude":-118.234167},{"latitude":49.911,"longitude":10.9},{"latitude":48.7777,"longitude":11.422},{"latitude":30.9017921,"longitude":-83.8811285},{"latitude":35.972778,"longitude":-115.134444},{"latitude":50.603611,"longitude":30.191944},{"latitude":22.687389,"longitude":120.307481},{"latitude":25.047778,"longitude":121.517222},{"latitude":37.489,"longitude":129.124},{"latitude":35.539,"longitude":133.264},{"latitude":31.4289814,"longitude":-83.488545},{"latitude":48.51333333,"longitude":12.035},{"latitude":53.9944,"longitude":9.57861},{"latitude":32.08558,"longitude":-81.097559},{"latitude":32.781081,"longitude":-79.92364},{"latitude":40.767681,"longitude":-73.999107},{"latitude":32.327037,"longitude":-64.830626},{"latitude":35.672498,"longitude":139.753218},{"latitude":34.738932,"longitude":135.500093},{"latitude":34.39738532,"longitude":132.4759782},{"latitude":50.1070258,"longitude":8.662760505},{"latitude":52.34663659,"longitude":4.917814017},{"latitude":50.09096366,"longitude":14.43949296},{"latitude":48.18664805,"longitude":16.38150085},{"latitude":50.08268921,"longitude":14.43502976},{"latitude":48.19657543,"longitude":16.33749116},{"latitude":45.44177387,"longitude":12.31999781},{"latitude":43.77666512,"longitude":11.24801752},{"latitude":41.90048111,"longitude":12.50200069},{"latitude":51.53251949,"longitude":-0.126300373},{"latitude":-19.4687,"longitude":23.38271},{"latitude":-27.659288,"longitude":17.837624},{"latitude":-24.802812,"longitude":15.891713},{"latitude":-24.782766,"longitude":31.353929},{"latitude":51.231978,"longitude":21.124183},{"latitude":33.4117,"longitude":112.457},{"latitude":51.1031,"longitude":-114.374},{"latitude":51.2992,"longitude":-116.982},{"latitude":50.9667,"longitude":-118.183},{"latitude":40.7288,"longitude":-73.4134},{"latitude":51.3806,"longitude":11.4467},{"latitude":49.43,"longitude":11.8},{"latitude":52.3237,"longitude":10.182},{"latitude":-34.9667,"longitude":-71.2164},{"latitude":52.4025,"longitude":10.2289},{"latitude":47.5985,"longitude":-122.3299},{"latitude":54.142208,"longitude":37.355619},{"latitude":29.3591,"longitude":-99.1775},{"latitude":37.5728,"longitude":105.1544},{"latitude":42.940556,"longitude":-87.924722},{"latitude":39.8023,"longitude":-89.6515},{"latitude":38.6241,"longitude":-90.2056},{"latitude":34.2164,"longitude":-119.0335},{"latitude":47.6005,"longitude":-122.3388},{"latitude":47.5619,"longitude":-122.625},{"latitude":63.732757,"longitude":-148.91129},{"latitude":61.1866382,"longitude":-149.9653918},{"latitude":66.814167,"longitude":-150.643611},{"latitude":-19.149166,"longitude":23.7875},{"latitude":51.5756,"longitude":14.1369},{"latitude":24.1863,"longitude":120.654},{"latitude":42.2913,"longitude":-73.7103},{"latitude":54.3539,"longitude":41.9739},{"latitude":22.289372,"longitude":114.152153},{"latitude":22.289372,"longitude":114.152153},{"latitude":22.1633,"longitude":113.57404},{"latitude":22.1633,"longitude":113.57404},{"latitude":40.175,"longitude":-80.6463},{"latitude":31.6839046,"longitude":-83.2709036},{"latitude":30.0692778,"longitude":-83.5805833},{"latitude":30.8879767,"longitude":-84.1547353},{"latitude":49.2739,"longitude":-123.0986},{"latitude":43.06848,"longitude":42.75424},{"latitude":41.1641,"longitude":36.1814},{"latitude":15.25,"longitude":97.85},{"latitude":-26.293864,"longitude":-80.096214},{"latitude":44.256944,"longitude":-76.536943},{"latitude":45.448611,"longitude":-73.74111},{"latitude":44.6003,"longitude":-75.7039},{"latitude":44.5919,"longitude":-75.693343},{"latitude":22.5147,"longitude":53.9597},{"latitude":24.55056,"longitude":55.103174},{"latitude":28.0862222,"longitude":-97.0436944},{"latitude":-4.53333,"longitude":129.9},{"latitude":45.8208,"longitude":6.65222},{"latitude":45.4069,"longitude":6.58056},{"latitude":52.55,"longitude":-2.0166},{"latitude":23.72,"longitude":106.96},{"latitude":-19.1492,"longitude":15.9119},{"latitude":-18.8128,"longitude":17.0594},{"latitude":53.1283,"longitude":9.34861},{"latitude":51.1242,"longitude":7.37361},{"latitude":52.2864,"longitude":7.96972},{"latitude":51.7458,"longitude":11.2297},{"latitude":53.915,"longitude":10.0356},{"latitude":53.0361,"longitude":8.50556},{"latitude":52.7097,"longitude":9.1625},{"latitude":52.4875,"longitude":8.18556},{"latitude":51.78,"longitude":7.288},{"latitude":51.2678,"longitude":10.6347},{"latitude":52.7611,"longitude":9.60556},{"latitude":54.2444,"longitude":11.0247},{"latitude":54.9297,"longitude":8.84057},{"latitude":52.6872,"longitude":10.1114},{"latitude":52.9839,"longitude":10.465},{"latitude":51.6897,"longitude":7.81611},{"latitude":52.1411,"longitude":12.6647},{"latitude":52.2208,"longitude":8.85917},{"latitude":51.4025,"longitude":8.64167},{"latitude":51.9667,"longitude":9.29167},{"latitude":53.7672,"longitude":8.64361},{"latitude":51.7211,"longitude":11.9528},{"latitude":53.9781,"longitude":9.14472},{"latitude":52.1544,"longitude":10.4267},{"latitude":53.3328,"longitude":9.02833},{"latitude":53.0689,"longitude":8.31361},{"latitude":52.1753,"longitude":9.05333},{"latitude":51.9444,"longitude":7.77389},{"latitude":54.3089,"longitude":8.68694},{"latitude":53.0161,"longitude":11.1444},{"latitude":52.7094,"longitude":12.0733},{"latitude":52.2417,"longitude":11.8561},{"latitude":31.9888333,"longitude":-83.7739167},{"latitude":29.1804,"longitude":-81.06497},{"latitude":50.5578,"longitude":7.13639},{"latitude":49.4731,"longitude":8.19639},{"latitude":45.54937,"longitude":-122.401253},{"latitude":45.540394,"longitude":-122.949825},{"latitude":40.7126,"longitude":-73.9996},{"latitude":51.0153,"longitude":7.00556},{"latitude":30.300125,"longitude":-83.0246944},{"latitude":50.451667,"longitude":6.784444},{"latitude":33.3334,"longitude":69.952},{"latitude":46.303056,"longitude":53.4275},{"latitude":46.303056,"longitude":53.4275},{"latitude":19.374,"longitude":96.121},{"latitude":-17.8846,"longitude":25.8468},{"latitude":44.0945556,"longitude":-121.2002222},{"latitude":43.2365314,"longitude":-120.6660967},{"latitude":43.5919167,"longitude":-118.9555444},{"latitude":44.2869939,"longitude":-120.9038328},{"latitude":40.1506944,"longitude":-122.2523056},{"latitude":38.1436111,"longitude":-122.5561},{"latitude":42.1611111,"longitude":-120.3990833},{"latitude":45.4182419,"longitude":-123.8143839},{"latitude":44.0193611,"longitude":-117.0130278},{"latitude":45.6185556,"longitude":-121.1673333},{"latitude":39.1006,"longitude":-77.09576},{"latitude":39.109961,"longitude":-84.537074},{"latitude":33.12777215,"longitude":68.8369847},{"latitude":33.1277215,"longitude":68.8369847},{"latitude":45.864399,"longitude":-77.251701},{"latitude":-19.1542,"longitude":17.4357},{"latitude":50.2666701,"longitude":-111.182999},{"latitude":52.830601,"longitude":-111.100998},{"latitude":52.830601,"longitude":-111.100998},{"latitude":-26.834239,"longitude":-49.091696},{"latitude":46.3201,"longitude":24.3157},{"latitude":45.4649,"longitude":24.053},{"latitude":45.4649,"longitude":24.053},{"latitude":54.786667,"longitude":37.649167},{"latitude":46.436,"longitude":24.4445},{"latitude":45.4715,"longitude":21.1136},{"latitude":-3.0764,"longitude":39.2428},{"latitude":-3.0764,"longitude":39.2428},{"latitude":41.50225,"longitude":-81.62233},{"latitude":45.3047778,"longitude":-85.2753333},{"latitude":30.5978708,"longitude":-84.557425},{"latitude":49.857778,"longitude":7.604167},{"latitude":62.1021,"longitude":-7.6459},{"latitude":-33.901161,"longitude":18.425896},{"latitude":-34.070582,"longitude":18.424067},{"latitude":-34.070582,"longitude":18.424067},{"latitude":48.608056,"longitude":-123.159722},{"latitude":48.56025,"longitude":-122.80243},{"latitude":48.645556,"longitude":-122.868056},{"latitude":48.617778,"longitude":-122.952778},{"latitude":48.537222,"longitude":-123.009722},{"latitude":50.4,"longitude":-125.133333},{"latitude":36.273,"longitude":-116.515},{"latitude":45.092778,"longitude":-74.567778},{"latitude":4.339,"longitude":51.3317},{"latitude":46.497442,"longitude":7.412572},{"latitude":-21.5130558,"longitude":-43.17305756},{"latitude":45.4153,"longitude":25.3137},{"latitude":29.2821,"longitude":-81.1212},{"latitude":45.5153,"longitude":22.5813},{"latitude":46.4643,"longitude":23.4258},{"latitude":-66,"longitude":90},{"latitude":-66,"longitude":90},{"latitude":44.535,"longitude":-72.614},{"latitude":32.680833,"longitude":-96.868333},{"latitude":45.4853,"longitude":9.0411},{"latitude":45.283855,"longitude":9.111979},{"latitude":45.721111,"longitude":-85.520278},{"latitude":45.6183,"longitude":63.2144},{"latitude":55.7557,"longitude":37.6176},{"latitude":41.349722,"longitude":-71.803333},{"latitude":41.168056,"longitude":-71.577778},{"latitude":60.866667,"longitude":-162.273056},{"latitude":60.866667,"longitude":-162.273056},{"latitude":60.866667,"longitude":-162.273056},{"latitude":60.471111,"longitude":-164.700833},{"latitude":60.541389,"longitude":-165.087222},{"latitude":60.575556,"longitude":-165.271667},{"latitude":59.1175,"longitude":-161.5775},{"latitude":60.939167,"longitude":-164.641111},{"latitude":9.2,"longitude":-77.98},{"latitude":9.52,"longitude":-79.03},{"latitude":8.06,"longitude":-78.36},{"latitude":8.95,"longitude":-77.75},{"latitude":70.485278,"longitude":-21.966667},{"latitude":49.2433,"longitude":28.6063},{"latitude":51.0352,"longitude":3.7097},{"latitude":51.1972,"longitude":3.2172},{"latitude":51.1972,"longitude":3.2172},{"latitude":35.5075,"longitude":139.6175},{"latitude":47.464714,"longitude":-0.556405},{"latitude":30.9715981,"longitude":-84.6369278},{"latitude":50.257222,"longitude":-60.669167},{"latitude":50.195833,"longitude":-61.265833},{"latitude":53.47,"longitude":-55.7875},{"latitude":39.4030278,"longitude":-119.2511944},{"latitude":34.2593253,"longitude":-118.4134331},{"latitude":36.9886111,"longitude":-120.1124444},{"latitude":43.1316111,"longitude":-115.7305671},{"latitude":49.055556,"longitude":-117.609167},{"latitude":48.65,"longitude":-123.45},{"latitude":73.006389,"longitude":-85.047222},{"latitude":68.163889,"longitude":-106.614444},{"latitude":17.269444,"longitude":-88.776111},{"latitude":4.283333,"longitude":-54.381111},{"latitude":3.6575,"longitude":-54.037222},{"latitude":5.483056,"longitude":-54.034444},{"latitude":3.898611,"longitude":-55.577778},{"latitude":4.3754,"longitude":-55.4075},{"latitude":48.221111,"longitude":86.998056},{"latitude":8.616667,"longitude":-77.333333},{"latitude":26.341189,"longitude":31.742983},{"latitude":-30.974444,"longitude":-55.476111},{"latitude":-18.672778,"longitude":-46.491111},{"latitude":-22.157778,"longitude":-49.068333},{"latitude":-6.763056,"longitude":-51.05},{"latitude":-8.033333,"longitude":-49.98},{"latitude":-6.641389,"longitude":-51.952222},{"latitude":-21.247222,"longitude":-56.4525},{"latitude":-11.6325,"longitude":-50.689444},{"latitude":-26.788333,"longitude":-50.939722},{"latitude":-4.871389,"longitude":-66.8975},{"latitude":-4.884167,"longitude":-65.355556},{"latitude":-6.639444,"longitude":-69.879722},{"latitude":-27.180556,"longitude":-52.052778},{"latitude":-26.059167,"longitude":-53.063333},{"latitude":-10.633611,"longitude":-51.567222},{"latitude":34.1758638,"longitude":-83.5615972},{"latitude":29.7276066,"longitude":-85.0274416},{"latitude":-23.798611,"longitude":-53.313611},{"latitude":-18.231944,"longitude":-43.650278},{"latitude":-2.5325,"longitude":-66.083333},{"latitude":-3.465556,"longitude":-68.918889},{"latitude":-7.532222,"longitude":-63.072222},{"latitude":-0.416944,"longitude":-65.033889},{"latitude":-1.714167,"longitude":-55.836111},{"latitude":-15.355278,"longitude":-38.998889},{"latitude":36.128889,"longitude":-5.441111},{"latitude":36.128889,"longitude":-5.441111},{"latitude":22.3177,"longitude":114.202},{"latitude":22.3177,"longitude":114.202},{"latitude":-21.713057,"longitude":122.21222},{"latitude":36.2993,"longitude":32.3014},{"latitude":33.921369,"longitude":69.07813},{"latitude":29.95925,"longitude":-81.3397222},{"latitude":-24.8333,"longitude":31.5},{"latitude":-24.84,"longitude":31.41},{"latitude":-24.84,"longitude":31.41},{"latitude":-24.815,"longitude":31.42},{"latitude":31.4767385,"longitude":-82.8605664},{"latitude":27.497472,"longitude":-80.372638},{"latitude":38.806346,"longitude":-77.0621},{"latitude":41.8744017,"longitude":-71.0166453},{"latitude":41.9090278,"longitude":-70.7287778},{"latitude":41.5971389,"longitude":-71.4121389},{"latitude":42.0001331,"longitude":-71.1967714},{"latitude":42.1905278,"longitude":-71.1729444},{"latitude":42.1579472,"longitude":-72.715875},{"latitude":41.7440278,"longitude":-72.1802222},{"latitude":41.5099884,"longitude":-74.2646444},{"latitude":40.2171389,"longitude":-76.8513611},{"latitude":42.09825,"longitude":-70.6721389},{"latitude":41.3715353,"longitude":-73.4821906},{"latitude":42.78175,"longitude":-71.5147778},{"latitude":42.7171944,"longitude":-71.1234167},{"latitude":41.4785556,"longitude":-73.13525},{"latitude":42.5541111,"longitude":-71.7589722},{"latitude":33.7565556,"longitude":-84.8850625},{"latitude":34.1231475,"longitude":-84.8487067},{"latitude":34.0899167,"longitude":-85.6100833},{"latitude":34.3507778,"longitude":-85.1586667},{"latitude":33.9726489,"longitude":-86.0890834},{"latitude":35.9638333,"longitude":-83.8736667},{"latitude":33.9828611,"longitude":-83.6674167},{"latitude":32.6452778,"longitude":-81.5971111},{"latitude":34.7229444,"longitude":-84.87025},{"latitude":33.6316964,"longitude":-85.1522641},{"latitude":34.4736944,"longitude":-85.7213889},{"latitude":33.0088611,"longitude":-85.0726111},{"latitude":33.154225,"longitude":-83.2414139},{"latitude":34.0186944,"longitude":-85.1464722},{"latitude":32.8406944,"longitude":-84.8824444},{"latitude":33.35725,"longitude":-84.5718333},{"latitude":33.6323083,"longitude":-83.8474472},{"latitude":34.272627,"longitude":-83.8302233},{"latitude":34.3122175,"longitude":-84.4221556},{"latitude":30.7311111,"longitude":-86.1537778},{"latitude":34.6884792,"longitude":-85.2903319},{"latitude":40.4701667,"longitude":-81.4199444},{"latitude":34.4493845,"longitude":-79.8900608},{"latitude":32.2243611,"longitude":-80.6974722},{"latitude":34.6282222,"longitude":-84.5265833},{"latitude":36.3712222,"longitude":-82.1734167},{"latitude":32.4605722,"longitude":-85.6800278},{"latitude":33.4665028,"longitude":-82.0393808},{"latitude":35.8202336,"longitude":-81.6115119},{"latitude":37.5617639,"longitude":-82.5663889},{"latitude":33.3656703,"longitude":-84.1651964},{"latitude":34.5928117,"longitude":-83.2963717},{"latitude":50.9672,"longitude":-2.1536},{"latitude":30.524819,"longitude":34.584025},{"latitude":30.524819,"longitude":34.584025},{"latitude":30.524819,"longitude":34.584025},{"latitude":30.524819,"longitude":34.584025},{"latitude":49.34261,"longitude":34.23551},{"latitude":50.967536,"longitude":1.849308},{"latitude":51.126876,"longitude":1.339747},{"latitude":8.77,"longitude":27.3975},{"latitude":7.725,"longitude":27.98},{"latitude":14.3,"longitude":36.616667},{"latitude":3.465,"longitude":39.105},{"latitude":30.330556,"longitude":-5.838056},{"latitude":8.615308,"longitude":-11.047192},{"latitude":7.767,"longitude":-12.383},{"latitude":22.299204,"longitude":114.166164},{"latitude":28.0139772,"longitude":-82.3452778},{"latitude":65.46,"longitude":87.53},{"latitude":61.34,"longitude":89.56},{"latitude":32.987778,"longitude":-97.318889},{"latitude":42.7971667,"longitude":-88.3726111},{"latitude":58.3333,"longitude":82.9333},{"latitude":32.4759,"longitude":117.759},{"latitude":37.558311,"longitude":126.790586},{"latitude":29.346742,"longitude":47.520753},{"latitude":-34.118,"longitude":140.404},{"latitude":-30.598333,"longitude":138.425833},{"latitude":-26.128333,"longitude":126.583333},{"latitude":-31.622223,"longitude":117.216667},{"latitude":-32.006667,"longitude":115.539722},{"latitude":-30.838056,"longitude":128.115},{"latitude":-37.511667,"longitude":143.791111},{"latitude":52.991111,"longitude":-92.836389},{"latitude":48.755278,"longitude":-86.344444},{"latitude":49.713889,"longitude":-83.686944},{"latitude":-37.8181602,"longitude":144.9533883},{"latitude":-26.617353,"longitude":152.973785},{"latitude":-24.867837,"longitude":152.349416},{"latitude":22.308813,"longitude":114.169624},{"latitude":22.28462911,"longitude":114.1582274},{"latitude":33.1777778,"longitude":-86.7832222},{"latitude":-22.254167,"longitude":131.781944},{"latitude":48.585068,"longitude":7.734547},{"latitude":33.8180947,"longitude":-111.8979242},{"latitude":59.951443,"longitude":30.313831},{"latitude":22.990081,"longitude":113.270631},{"latitude":-19.531281,"longitude":23.091847},{"latitude":-8.7573222,"longitude":116.276675},{"latitude":18.133333,"longitude":55.266666},{"latitude":51.3833,"longitude":-121.1825},{"latitude":51.4412,"longitude":-121.1958},{"latitude":55.5141,"longitude":-4.1749}] diff --git a/marker-clustering/index.html b/marker-clustering/index.html new file mode 100644 index 0000000..17caaea --- /dev/null +++ b/marker-clustering/index.html @@ -0,0 +1,21 @@ + + + + + + + Marker Clustering + + + + + + + + +

    Marker Clustering

    +

    This example displays a map showing the distribution of airports across the world. The locations were obtained by using the OpenFlights Airport Database. Instead of adding a marker for each location, the data has been clustered, and individual airports are only shown at higher zoom levels.

    +
    + + + diff --git a/marker-clustering/js/app.js b/marker-clustering/js/app.js new file mode 100644 index 0000000..c12c917 --- /dev/null +++ b/marker-clustering/js/app.js @@ -0,0 +1,67 @@ +/** + * Display clustered markers on a map + * + * Note that the maps clustering module http://js.api.here.com/v3/3.0/mapsjs-clustering.js + * must be loaded to use the Clustering + + * @param {H.Map} map A HERE Map instance within the application + * @param {Array.} data Raw data that contains airports' coordinates + */ +function startClustering(map, data) { + // First we need to create an array of DataPoint objects, + // for the ClusterProvider + var dataPoints = data.map(function (item) { + return new H.clustering.DataPoint(item.latitude, item.longitude); + }); + + // Create a clustering provider with custom options for clusterizing the input + var clusteredDataProvider = new H.clustering.Provider(dataPoints, { + clusteringOptions: { + // Maximum radius of the neighbourhood + eps: 32, + // minimum weight of points required to form a cluster + minWeight: 2 + } + }); + + // Create a layer tha will consume objects from our clustering provider + var clusteringLayer = new H.map.layer.ObjectLayer(clusteredDataProvider); + + // To make objects from clustering provder visible, + // we need to add our layer to the map + map.addLayer(clusteringLayer); +} + + +/** + * Boilerplate map initialization code starts below: + */ + +// Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useHTTPS: true, + useCIT: true +}); +var defaultLayers = platform.createDefaultLayers(); + +// Step 2: initialize a map +var map = new H.Map(document.getElementById('map'), defaultLayers.normal.map, { + center: new H.geo.Point(30.789, 33.790), + zoom: 2 +}); + +// Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + + +// Step 4: create the default UI component, for displaying bubbles +var ui = H.ui.UI.createDefault(map, defaultLayers); + +// Step 5: request a data about airports's coordinates +jQuery.getJSON('data/airports.json', function (data) { + startClustering(map, data); +}); diff --git a/markers-on-the-map/index.html b/markers-on-the-map/index.html new file mode 100644 index 0000000..c02e246 --- /dev/null +++ b/markers-on-the-map/index.html @@ -0,0 +1,20 @@ + + + + + + + Marker on the Map + + + + + + + +

    Marker on the Map

    +

    This example displays a moveable map of Europe, including markers highlighting the locations of the captials of France, Italy, Germany, Spain and the United Kingdom.

    +
    + + + diff --git a/markers-on-the-map/js/app.js b/markers-on-the-map/js/app.js new file mode 100644 index 0000000..9c816b1 --- /dev/null +++ b/markers-on-the-map/js/app.js @@ -0,0 +1,59 @@ + + +/** + * Adds markers to the map highlighting the locations of the captials of + * France, Italy, Germany, Spain and the United Kingdom. + * + * @param {H.Map} map A HERE Map instance within the application + */ +function addMarkersToMap(map) { + var parisMarker = new H.map.Marker({lat:48.8567, lng:2.3508}); + map.addObject(parisMarker); + + var romeMarker = new H.map.Marker({lat:41.9, lng: 12.5}); + map.addObject(romeMarker); + + var berlinMarker = new H.map.Marker({lat:52.5166, lng:13.3833}); + map.addObject(berlinMarker); + + var madridMarker = new H.map.Marker({lat:40.4, lng: -3.6833}); + map.addObject(madridMarker); + + var londonMarker = new H.map.Marker({lat:51.5008, lng:-0.1224}); + map.addObject(londonMarker); +} + + + + + +/** + * Boilerplate map initialization code starts below: + */ + +//Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +//Step 2: initialize a map - this map is centered over Europe +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map,{ + center: {lat:50, lng:5}, + zoom: 4 +}); + +//Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Create the default UI components +var ui = H.ui.UI.createDefault(map, defaultLayers); + +// Now use the map as required... +addMarkersToMap(map); \ No newline at end of file diff --git a/markers-on-the-map/markers-on-the-map.png b/markers-on-the-map/markers-on-the-map.png new file mode 100644 index 0000000..2706515 Binary files /dev/null and b/markers-on-the-map/markers-on-the-map.png differ diff --git a/meta-info-layer/index.html b/meta-info-layer/index.html new file mode 100644 index 0000000..3f92fb6 --- /dev/null +++ b/meta-info-layer/index.html @@ -0,0 +1,21 @@ + + + + + + + Adding Meta Information layer to the Map + + + + + + + +

    Adding Meta Information layer to the Map

    +

    This example shows how to retrieve meta information of the certain geographic objects like city labels, transit stations, country names, historical places, etc.

    Hover over the map to see the interactive objects.

    +
    +
    + + + diff --git a/meta-info-layer/js/app.js b/meta-info-layer/js/app.js new file mode 100644 index 0000000..745316a --- /dev/null +++ b/meta-info-layer/js/app.js @@ -0,0 +1,82 @@ +/** + * Adds meta information layer to the map and makes supported geographic objects + * (street names, city labels, parks, transit stations etc) "interactive". + * + * @param {H.Map} map Reference to initialized map object + */ +function addMetaInfoLayer(map) { + // Subscribe to the metaInfo objects' pointermove event. The event bubbles up to + // the TileProvider of the metaInfo layer. + var tileProvider = defaultLayers.normal.metaInfo.getProvider(); + tileProvider.addEventListener('pointermove', updateMapCursor); + + // Change cursor back when not needed + map.addEventListener('pointermove', updateMapCursor); + + // Add a metaInfo layer to the map + map.addLayer(defaultLayers.normal.metaInfo); +} + + +/** + * Sets cursor to pointer, when hovering over meta objects + * @this {H.Map} + * @param {H.mapevents.Event} e + */ +function updateMapCursor(e) { + // Change cursor appearance when hovering over geographic objects + map.getElement().style.cursor = (e.target === map) ? '' : 'pointer'; + if (e.target !== map){ + showMetaInfo(e); + } +} + + +/** + * Handler for metaInfo tap event + * + * @param {H.mapevents.Event} e Fired event + */ +function showMetaInfo(e) { + var currentPointer = e.currentPointer, + metaInfoData = e.target.getData(), + // Format object's data for display + content = '' + metaInfoData.name + '
    '; + content += '
    metaInfo:
    '; + content += '
    ' +
    +        JSON.stringify(metaInfoData, null, ' ') + '
    '; + + locationsContainer.innerHTML = content; +} + +/** + * Boilerplate map initialization code starts below: + */ + + +// Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +// Step 2: initialize a map +var map = new H.Map(document.getElementById('map'), defaultLayers.normal.map, { + // initial center and zoom level of the map + zoom: 16, + // Champs-Élysées + center: {lat: 48.869145, lng: 2.314298} +}); + +var locationsContainer = document.getElementById('panel'); + +// Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Step 4: main logic goes here +addMetaInfoLayer(map); \ No newline at end of file diff --git a/meta-info-layer/thumb.jpg b/meta-info-layer/thumb.jpg new file mode 100644 index 0000000..ed332a1 Binary files /dev/null and b/meta-info-layer/thumb.jpg differ diff --git a/moved-map-components/index.html b/moved-map-components/index.html new file mode 100644 index 0000000..fd34371 --- /dev/null +++ b/moved-map-components/index.html @@ -0,0 +1,20 @@ + + + + + + + Map UI Components + + + + + + + +

    Map UI Components

    +

    This example displays a movable map including a scale bar, map selector and zoom control, with all the map controls moved to the top-left corner

    +
    + + + diff --git a/moved-map-components/js/app.js b/moved-map-components/js/app.js new file mode 100644 index 0000000..3865337 --- /dev/null +++ b/moved-map-components/js/app.js @@ -0,0 +1,54 @@ + +/** + * Moves all the map controls moved to the top-left corner + * + * @param {H.Map} map A HERE Map instance within the application + * @param {Object.} defaultLayers + * an object holding the three default HERE Map types + */ +function moveUiComponents(map, defaultLayers){ + // Create the default UI components + var ui = H.ui.UI.createDefault(map, defaultLayers); + + // Obtain references to the standard controls. + var mapSettings = ui.getControl('mapsettings'); + var zoom = ui.getControl('zoom'); + var scalebar = ui.getControl('scalebar'); + + // Move the controls to the top-left of the map. + mapSettings.setAlignment('top-left'); + zoom.setAlignment('top-left'); + scalebar.setAlignment('top-left'); +} + + + + + +/** + * Boilerplate map initialization code starts below: + */ + +//Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +//Step 2: initialize a map - this map is centered over berlin. +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map,{ + center: {lat:52.5160, lng:13.3779}, + zoom: 12 +}); + +//Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Now use the map as required... +moveUiComponents(map, defaultLayers); \ No newline at end of file diff --git a/moved-map-components/moved-map-components.png b/moved-map-components/moved-map-components.png new file mode 100644 index 0000000..8f7e091 Binary files /dev/null and b/moved-map-components/moved-map-components.png differ diff --git a/offline-map/index.html b/offline-map/index.html new file mode 100644 index 0000000..03c3f43 --- /dev/null +++ b/offline-map/index.html @@ -0,0 +1,20 @@ + + + + + + + Store map tiles for offline usage + + + + + + + +

    Store map tiles for offline usage

    +

    This example shows how to store map tiles of the desired area in the browser cache and show them when no Internet connection is available.

    We store satellite map tiles and attempt to show them after Internet connection is disabled. Pan the map and change the zoom level to see which areas of the map where cached.

    +
    + + + diff --git a/offline-map/js/app.js b/offline-map/js/app.js new file mode 100644 index 0000000..20c07ad --- /dev/null +++ b/offline-map/js/app.js @@ -0,0 +1,93 @@ +/** + * Stores the map tiles for offline usage + * @param {H.Map} map Reference to the map instance + * @param {Object} defaultLayers Default layers provided by + * the H.service.Platform + */ +function storeTiles(map, defaultLayers) { + // Zoom level to cache + var currentZoomLevel = map.getZoom(), + // View bounds to store. By default visible area of the map. + viewBounds; + + // Cache the layer area within current view bounds for the current and next zoom level. + map.storeContent(function(req) { + // If all tiles are stored switch on the layer + if (req.getState() === H.util.Request.State.COMPLETE) { + alert('Disable Internet connection and click the button below to see the cached satellite layer.'); + map.setBaseLayer(defaultLayers.satellite.map); + } + }, viewBounds, currentZoomLevel, currentZoomLevel + 1, defaultLayers.satellite.map); +} + + +/** + * Clears the stored tiles + * @param {H.Map} map Reference to the map instance + */ +function clearTiles(map) { + map.clearContent(); +} + + +/** + * Boilerplate map initialization code starts below: + */ + +// Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useHTTPS: true, + useCIT: true +}); +var defaultLayers = platform.createDefaultLayers(); + +// Step 2: initialize a map +var map = new H.Map(document.getElementById('map'), defaultLayers.normal.map, { + // initial center and zoom level of the map + center: {lat: 19.969202, lng: -156.007712}, + zoom: 7 +}); + +// Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Step 4: Create the default UI: +H.ui.UI.createDefault(map, defaultLayers, 'en-US'); + + +/** + * Template function for our controls + * @param {Object} buttons Configuration of labels and click handlers of the buttons + */ +function renderControls(buttons) { + var containerNode = document.createElement('div'); + containerNode.setAttribute('style', 'position:absolute;top:0;left:0;background-color:#fff; padding:10px;'); + containerNode.className = 'btn-group'; + + Object.keys(buttons).forEach(function(label) { + var input = document.createElement('input'); + input.value = label; + input.type = 'button'; + input.onclick = buttons[label]; + input.className = 'btn btn-sm btn-default'; + containerNode.appendChild(input); + }); + + map.getElement().appendChild(containerNode); +} + +// Step 5: Render buttons for storing and retrieving tiles from the cache. +// Function is not a part of API. Scroll to the bottom to see the source. +renderControls({ + // Key is a button label and value is an click/tap callback + 'Store satellite layer': function() { + storeTiles(map, defaultLayers); + }, + 'Clear': function() { + clearTiles(map); + } +}); diff --git a/offline-map/thumb.jpg b/offline-map/thumb.jpg new file mode 100644 index 0000000..817ea2e Binary files /dev/null and b/offline-map/thumb.jpg differ diff --git a/open-infobubble/index.html b/open-infobubble/index.html new file mode 100644 index 0000000..48196a8 --- /dev/null +++ b/open-infobubble/index.html @@ -0,0 +1,20 @@ + + + + + + + Opening an Infobubble on a Mouse Click + + + + + + + +

    Opening an Infobubble on a Mouse Click

    +

    This example displays a map with two markers showing the position of Liverpool and Manchester City football clubs. Clicking on a marker opens an infobubble which holds HTML content related to the marker.

    +
    + + + diff --git a/open-infobubble/js/app.js b/open-infobubble/js/app.js new file mode 100644 index 0000000..9e1222c --- /dev/null +++ b/open-infobubble/js/app.js @@ -0,0 +1,77 @@ + +/** + * Creates a new marker and adds it to a group + * @param {H.map.Group} group The group holding the new marker + * @param {H.geo.Point} coordinate The location of the marker + * @param {String} html Data associated with the marker + */ +function addMarkerToGroup(group, coordinate, html) { + var marker = new H.map.Marker(coordinate); + // add custom data to the marker + marker.setData(html); + group.addObject(marker); +} + +/** + * Add two markers showing the position of Liverpool and Manchester City football clubs. + * Clicking on a marker opens an infobubble which holds HTML content related to the marker. + * @param {H.Map} map A HERE Map instance within the application + */ +function addInfoBubble(map) { + var group = new H.map.Group(); + + map.addObject(group); + + // add 'tap' event listener, that opens info bubble, to the group + group.addEventListener('tap', function (evt) { + // event target is the marker itself, group is a parent event target + // for all objects that it contains + var bubble = new H.ui.InfoBubble(evt.target.getPosition(), { + // read custom data + content: evt.target.getData() + }); + // show info bubble + ui.addBubble(bubble); + }, false); + + addMarkerToGroup(group, {lat:53.439, lng:-2.221}, + '
    City of Manchester Stadium
    Capacity: 48,000
    '); + + addMarkerToGroup(group, {lat:53.430, lng:-2.961}, + '
    Liverpool' + + '
    Anfield
    Capacity: 45,362
    '); + +} + + + +/** + * Boilerplate map initialization code starts below: + */ + +// initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +// initialize a map - this map is centered over Europe +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map,{ + center: {lat: 53.430, lng: -2.961}, + zoom: 7 +}); + +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// create default UI with layers provided by the platform +var ui = H.ui.UI.createDefault(map, defaultLayers); + +// Now use the map as required... +addInfoBubble(map); \ No newline at end of file diff --git a/open-infobubble/open-an-infobubble.png b/open-infobubble/open-an-infobubble.png new file mode 100644 index 0000000..1590318 Binary files /dev/null and b/open-infobubble/open-an-infobubble.png differ diff --git a/ordering-overlapping-markers/index.html b/ordering-overlapping-markers/index.html new file mode 100644 index 0000000..738202c --- /dev/null +++ b/ordering-overlapping-markers/index.html @@ -0,0 +1,20 @@ + + + + + + + Ordering Overlapping Markers + + + + + + + +

    Ordering Overlapping Markers

    +

    This example shows how to arrange the visibility order of markers by clicking them. Zoom in and out to overlap markers and try re-arranging them.

    +
    + + + diff --git a/ordering-overlapping-markers/js/app.js b/ordering-overlapping-markers/js/app.js new file mode 100644 index 0000000..2662b37 --- /dev/null +++ b/ordering-overlapping-markers/js/app.js @@ -0,0 +1,55 @@ + +function orderMarkers() { + var zIndex = 1, + // create a set of markers + marker = new mapsjs.map.Marker( + {lat: 52.508249, lng: 13.338931} + ), + marker2 = new mapsjs.map.Marker( + {lat: 52.506682, lng: 13.332107} + ), + marker3 = new mapsjs.map.Marker( + {lat: 52.503730, lng: 13.331678} + ), + marker4 = new mapsjs.map.Marker( + {lat: 52.531, lng: 13.380} + ); + + // add markers to the map + map.addObjects([marker, marker2, marker3, marker4]); + + map.addEventListener('tap', function (evt) { + if (evt.target instanceof mapsjs.map.Marker) { + // increase z-index of the marker that was tapped + evt.target.setZIndex(zIndex++); + } + }); +} + +/** + * Boilerplate map initialization code starts below: + */ + +// initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map,{ + center: {lat: 52.5, lng: 13.4}, + zoom: 10 +}); + + +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + + +// Now use the map as required... +orderMarkers(); \ No newline at end of file diff --git a/ordering-overlapping-markers/ordering-overlapping-markers.png b/ordering-overlapping-markers/ordering-overlapping-markers.png new file mode 100644 index 0000000..d7b887c Binary files /dev/null and b/ordering-overlapping-markers/ordering-overlapping-markers.png differ diff --git a/panning-the-map/index.html b/panning-the-map/index.html new file mode 100644 index 0000000..f4e6927 --- /dev/null +++ b/panning-the-map/index.html @@ -0,0 +1,20 @@ + + + + + + + Panning the Map + + + + + + + +

    Panning the Map

    +

    This example displays a map of the Indian Ocean which continuously pans using screen space X/Y coordinates.

    +
    + + + diff --git a/panning-the-map/js/app.js b/panning-the-map/js/app.js new file mode 100644 index 0000000..fb88494 --- /dev/null +++ b/panning-the-map/js/app.js @@ -0,0 +1,59 @@ + +/** + * Pan the map so that it is continually in motion + * + * @param {H.Map} map A HERE Map instance within the application + */ +function panTheMap(map) { + var viewPort, + incX = 1, + incY = 2, + x = 100, + y = 100; + + // Obtain the view port object of the map to manipulate its screen coordinates + var viewPort = map.getViewPort(), + // function calculates new screen coordinates and calls + // viewport's interaction method with them + pan = function() { + x = x + incX; + if (Math.abs(x) > 100) { + incX = -incX; + } + + y = y + incY; + if (Math.abs(y) > 100) { + incY = -incY; + } + + viewPort.interaction(x, y); + }; + + // set interaction modifier that provides information which map properties + // change with each "interact" call + viewPort.startInteraction(H.map.render.RenderEngine.InteractionModifiers.COORD); + // set up simple animation loop + setInterval(pan, 15); +} + +/** + * Boilerplate map initialization code starts below: + */ + +//Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +//Step 2: initialize a map - this map is centered over New Delhi +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map,{ + center: {lat: 19.11, lng: 72.89}, + zoom: 4 +}); + +panTheMap(map); \ No newline at end of file diff --git a/panning-the-map/programmatically-panning.png b/panning-the-map/programmatically-panning.png new file mode 100644 index 0000000..4118ecc Binary files /dev/null and b/panning-the-map/programmatically-panning.png differ diff --git a/polygon-on-the-map/index.html b/polygon-on-the-map/index.html new file mode 100644 index 0000000..5ea1e6a --- /dev/null +++ b/polygon-on-the-map/index.html @@ -0,0 +1,20 @@ + + + + + + + Polygon on the Map + + + + + + + +

    Polygon on the Map

    +

    This example displays a polygon covering part of Western Europe displayed on a moveable map.

    +
    + + + diff --git a/polygon-on-the-map/js/app.js b/polygon-on-the-map/js/app.js new file mode 100644 index 0000000..48e43c2 --- /dev/null +++ b/polygon-on-the-map/js/app.js @@ -0,0 +1,56 @@ + + +/** + * Adds a polygon to the map + * + * @param {H.Map} map A HERE Map instance within the application + */ +function addPolygonToMap(map) { + var geoStrip = new H.geo.Strip( + [52, 13, 100, 48, 2, 100, 48, 16, 100, 52, 13, 100], + 'values lat lng alt' + ); + map.addObject( + new H.map.Polygon(geoStrip, { + style: { + fillColor: '#FFFFCC', + strokeColor: '#829', + lineWidth: 8 + } + }) + ); +} + + + +/** + * Boilerplate map initialization code starts below: + */ + +//Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +//Step 2: initialize a map - this map is centered over Europe +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map,{ + center: {lat:52, lng:5}, + zoom: 5 +}); + +//Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Create the default UI components +var ui = H.ui.UI.createDefault(map, defaultLayers); + + +// Now use the map as required... +addPolygonToMap(map); \ No newline at end of file diff --git a/polygon-on-the-map/polygon-on-the-map.png b/polygon-on-the-map/polygon-on-the-map.png new file mode 100644 index 0000000..fdc4e00 Binary files /dev/null and b/polygon-on-the-map/polygon-on-the-map.png differ diff --git a/polyline-on-the-map/index.html b/polyline-on-the-map/index.html new file mode 100644 index 0000000..f618c5a --- /dev/null +++ b/polyline-on-the-map/index.html @@ -0,0 +1,20 @@ + + + + + + + Polyline on the Map + + + + + + + +

    Polyline on the Map

    +

    This example displays a line connecting the cities of Dublin (53.3477°N, 6.2597°W)London (51.5008°N, 0.1224°W) , Paris (48.8567°N, 2.3508°E) and Berlin (52.5166°N, 13.3833°E) and displays it on the map.

    +
    + + + diff --git a/polyline-on-the-map/js/app.js b/polyline-on-the-map/js/app.js new file mode 100644 index 0000000..61a1085 --- /dev/null +++ b/polyline-on-the-map/js/app.js @@ -0,0 +1,55 @@ + + +/** + * Adds a polyline between Dublin, London, Paris and Berlin to the map + * + * @param {H.Map} map A HERE Map instance within the application + */ +function addPolylineToMap(map) { + var strip = new H.geo.Strip(); + + strip.pushPoint({lat:53.3477, lng:-6.2597}); + strip.pushPoint({lat:51.5008, lng:-0.1224}); + strip.pushPoint({lat:48.8567, lng:2.3508}); + strip.pushPoint({lat:52.5166, lng:13.3833}); + + map.addObject(new H.map.Polyline( + strip, { style: { lineWidth: 4 }} + )); +} + + + + + +/** + * Boilerplate map initialization code starts below: + */ + +//Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +//Step 2: initialize a map - this map is centered over Europe +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map,{ + center: {lat:52, lng:5}, + zoom: 5 +}); + +//Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Create the default UI components +var ui = H.ui.UI.createDefault(map, defaultLayers); + + +// Now use the map as required... +addPolylineToMap(map); \ No newline at end of file diff --git a/polyline-on-the-map/polyline-on-map.png b/polyline-on-the-map/polyline-on-map.png new file mode 100644 index 0000000..8f6fe7b Binary files /dev/null and b/polyline-on-the-map/polyline-on-map.png differ diff --git a/position-on-mouse-click/index.html b/position-on-mouse-click/index.html new file mode 100644 index 0000000..76b2afe --- /dev/null +++ b/position-on-mouse-click/index.html @@ -0,0 +1,20 @@ + + + + + + + Calculating a Location from a Mouse Click + + + + + + + +

    Calculating a Location from a Mouse Click

    +

    This example displays a map of the world. Clicking on the map displays an alert box containing the latitude and longitude of the location pressed.

    +
    + + + diff --git a/position-on-mouse-click/js/app.js b/position-on-mouse-click/js/app.js new file mode 100644 index 0000000..b426162 --- /dev/null +++ b/position-on-mouse-click/js/app.js @@ -0,0 +1,48 @@ + +/** + * An event listener is added to listen to tap events on the map. + * Clicking on the map displays an alert box containing the latitude and longitude + * of the location pressed. + * @param {H.Map} map A HERE Map instance within the application + */ +function setUpClickListener(map) { + // Attach an event listener to map display + // obtain the coordinates and display in an alert box. + map.addEventListener('tap', function (evt) { + var coord = map.screenToGeo(evt.currentPointer.viewportX, + evt.currentPointer.viewportY); + alert('Clicked at ' + Math.abs(coord.lat.toFixed(4)) + + ((coord.lat > 0) ? 'N' : 'S') + + ' ' + Math.abs(coord.lng.toFixed(4)) + + ((coord.lng > 0) ? 'E' : 'W')); + }); +} + + + +/** + * Boilerplate map initialization code starts below: + */ + +//Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +//Step 2: initialize a map +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map,{ + center: {lat: 30.94625288456589, lng: -54.10861860580418}, + zoom: 1 +}); + +//Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +setUpClickListener(map); \ No newline at end of file diff --git a/position-on-mouse-click/location.png b/position-on-mouse-click/location.png new file mode 100644 index 0000000..9e943fe Binary files /dev/null and b/position-on-mouse-click/location.png differ diff --git a/rectangle-on-the-map/add-a-rectangle.png b/rectangle-on-the-map/add-a-rectangle.png new file mode 100644 index 0000000..bf91075 Binary files /dev/null and b/rectangle-on-the-map/add-a-rectangle.png differ diff --git a/rectangle-on-the-map/index.html b/rectangle-on-the-map/index.html new file mode 100644 index 0000000..91ca185 --- /dev/null +++ b/rectangle-on-the-map/index.html @@ -0,0 +1,20 @@ + + + + + + + Rectangle on the map + + + + + + + +

    Rectangle on the map

    +

    This example shows a rectangle covering part of Western Europe displayed on a moveable map.

    +
    + + + diff --git a/rectangle-on-the-map/js/app.js b/rectangle-on-the-map/js/app.js new file mode 100644 index 0000000..00d8c1d --- /dev/null +++ b/rectangle-on-the-map/js/app.js @@ -0,0 +1,48 @@ + +/** + * Adds a rectangle to the map + * + * @param {H.Map} map A HERE Map instance within the application + */ +function addRectangleToMap(map) { + var boundingBox = new H.geo.Rect(53.1, 13.1, 43.1, 40.1); + map.addObject( + new H.map.Rect(boundingBox, { + style: { + fillColor: '#FFFFCC', + strokeColor: '#E8FA75', + lineWidth: 8 + }, + }) + ); +} + + + +/** + * Boilerplate map initialization code starts below: + */ + +//Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +//Step 2: initialize a map - this map is centered over Europe +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map,{ + center: {lat: 53.1, lng: 13.1}, + zoom: 3 +}); + +//Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Now use the map as required... +addRectangleToMap(map); \ No newline at end of file diff --git a/restrict-map/alcatraz.png b/restrict-map/alcatraz.png new file mode 100644 index 0000000..32cc592 Binary files /dev/null and b/restrict-map/alcatraz.png differ diff --git a/restrict-map/index.html b/restrict-map/index.html new file mode 100644 index 0000000..fa95ae3 --- /dev/null +++ b/restrict-map/index.html @@ -0,0 +1,20 @@ + + + + + + + Restrict Map Movement + + + + + + + +

    Restrict Map Movement

    +

    This example displays a moveable map of Alcatraz Island. Even though the map can still be panned and zoomed, the center of the map cannot be moved outside of the marked area

    +
    + + + diff --git a/restrict-map/js/app.js b/restrict-map/js/app.js new file mode 100644 index 0000000..526ef92 --- /dev/null +++ b/restrict-map/js/app.js @@ -0,0 +1,71 @@ + +/** + * Restricts a moveable map to a given rectangle. + * + * @param {H.Map} map A HERE Map instance within the application + * + */ +function restrictMap(map){ + + var bounds = new H.geo.Rect(37.829, -122.426, 37.824, -122.42); + + map.getViewModel().addEventListener('sync', function() { + var center = map.getCenter(); + + if (!bounds.containsPoint(center)) { + if (center.lat > bounds.getTop()) { + center.lat = bounds.getTop(); + } else if (center.lat < bounds.getBottom()) { + center.lat = bounds.getBottom(); + } + if (center.lng < bounds.getLeft()) { + center.lng = bounds.getLeft(); + } else if (center.lng > bounds.getRight()) { + center.lng = bounds.getRight(); + } + map.setCenter(center); + } + }); + + //Debug code to visualize where your restriction is + map.addObject(new H.map.Rect(bounds, { + style: { + fillColor: 'rgba(55, 85, 170, 0.1)', + strokeColor: 'rgba(55, 85, 170, 0.6)', + lineWidth: 8 + } + } + )); +} + +/** + * Boilerplate map initialization code starts below: + */ + +//Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +//Step 2: initialize a map - this map is centered over Alcatraz Island +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map,{ + center: {lat:37.82667, lng:-122.423333}, + zoom: 16 +}); + +map.setBaseLayer(defaultLayers.satellite.map); + +//Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Step 4: Create the default UI: +var ui = H.ui.UI.createDefault(map, defaultLayers, 'en-US'); + +restrictMap(map); \ No newline at end of file diff --git a/reverse-geocode-an-address-from-location/geocoder.jpg b/reverse-geocode-an-address-from-location/geocoder.jpg new file mode 100644 index 0000000..c63d44d Binary files /dev/null and b/reverse-geocode-an-address-from-location/geocoder.jpg differ diff --git a/reverse-geocode-an-address-from-location/index.html b/reverse-geocode-an-address-from-location/index.html new file mode 100644 index 0000000..d4cfe5f --- /dev/null +++ b/reverse-geocode-an-address-from-location/index.html @@ -0,0 +1,21 @@ + + + + + + + Search for the Address of a Known Location + + + + + + + +

    Search for the Address of a Known Location

    +

    This example makes a reverse geocode request and retrieves the first address found around a specified location in Berlin (52.5309°N 13.3847°E) using a 150 meter radius to retrieve the address of Nokia House. The expected address is: Invalidenstraße 116, 10115 Berlin. A clickable marker is placed on the address found.

    +
    +
    + + + diff --git a/reverse-geocode-an-address-from-location/js/app.js b/reverse-geocode-an-address-from-location/js/app.js new file mode 100644 index 0000000..38807c1 --- /dev/null +++ b/reverse-geocode-an-address-from-location/js/app.js @@ -0,0 +1,189 @@ + +/** + * Calculates and displays the address details of the location found at + * a specified location in Berlin (52.5309°N 13.3847°E) using a 150 meter + * radius to retrieve the address of Nokia House. The expected address is: + * Invalidenstraße 116, 10115 Berlin. + * + * + * A full list of available request parameters can be found in the Geocoder API documentation. + * see: http://developer.here.com/rest-apis/documentation/geocoder/topics/resource-reverse-geocode.html + * + * @param {H.service.Platform} platform A stub class to access HERE services + */ +function reverseGeocode(platform) { + var geocoder = platform.getGeocodingService(), + reverseGeocodingParameters = { + prox: '52.5309,13.3847,150', // Berlin + mode: 'retrieveAddresses', + maxresults: '1', + jsonattributes : 1 + }; + + geocoder.reverseGeocode( + reverseGeocodingParameters, + onSuccess, + onError + ); +} + +/** + * This function will be called once the Geocoder REST API provides a response + * @param {Object} result A JSONP object representing the location(s) found. + * + * see: http://developer.here.com/rest-apis/documentation/geocoder/topics/resource-type-response-geocode.html + */ +function onSuccess(result) { + var locations = result.response.view[0].result; + /* + * The styling of the geocoding response on the map is entirely under the developer's control. + * A representitive styling can be found the full JS + HTML code of this example + * in the functions below: + */ + addLocationsToMap(locations); + addLocationsToPanel(locations); + // ... etc. +} + +/** + * This function will be called if a communication error occurs during the JSON-P request + * @param {Object} error The error message received. + */ +function onError(error) { + alert('Ooops!'); +} + + + + +/** + * Boilerplate map initialization code starts below: + */ + +//Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +//Step 2: initialize a map - this map is centered over California +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map,{ + center: {lat:37.376, lng:-122.034}, + zoom: 15 +}); + +var locationsContainer = document.getElementById('panel'); + +//Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Create the default UI components +var ui = H.ui.UI.createDefault(map, defaultLayers); + +// Hold a reference to any infobubble opened +var bubble; + +/** + * Opens/Closes a infobubble + * @param {H.geo.Point} position The location on the map. + * @param {String} text The contents of the infobubble. + */ +function openBubble(position, text){ + if(!bubble){ + bubble = new H.ui.InfoBubble( + position, + {content: text}); + ui.addBubble(bubble); + } else { + bubble.setPosition(position); + bubble.setContent(text); + bubble.open(); + } +} + +/** + * Creates a series of list items for each location found, and adds it to the panel. + * @param {Object[]} locations An array of locations as received from the + * H.service.GeocodingService + */ +function addLocationsToPanel(locations){ + + var nodeOL = document.createElement('ul'), + i; + + nodeOL.style.fontSize = 'small'; + nodeOL.style.marginLeft ='5%'; + nodeOL.style.marginRight ='5%'; + + + for (i = 0; i < locations.length; i += 1) { + var li = document.createElement('li'), + divLabel = document.createElement('div'), + address = locations[i].location.address, + content = '' + address.label + '
    '; + position = { + lat: locations[i].location.displayPosition.latitude, + lng: locations[i].location.displayPosition.longitude + }; + + content += 'houseNumber: ' + address.houseNumber + '
    '; + content += 'street: ' + address.street + '
    '; + content += 'district: ' + address.district + '
    '; + content += 'city: ' + address.city + '
    '; + content += 'postalCode: ' + address.postalCode + '
    '; + content += 'county: ' + address.county + '
    '; + content += 'country: ' + address.country + '
    '; + content += '
    position: ' + + Math.abs(position.lat.toFixed(4)) + ((position.lat > 0) ? 'N' : 'S') + + ' ' + Math.abs(position.lng.toFixed(4)) + ((position.lng > 0) ? 'E' : 'W'); + + divLabel.innerHTML = content; + li.appendChild(divLabel); + + nodeOL.appendChild(li); + } + + locationsContainer.appendChild(nodeOL); +} + + +/** + * Creates a series of H.map.Markers for each location found, and adds it to the map. + * @param {Object[]} locations An array of locations as received from the + * H.service.GeocodingService + */ +function addLocationsToMap(locations){ + var group = new H.map.Group(), + position, + i; + + // Add a marker for each location found + for (i = 0; i < locations.length; i += 1) { + position = { + lat: locations[i].location.displayPosition.latitude, + lng: locations[i].location.displayPosition.longitude + }; + marker = new H.map.Marker(position); + marker.label = locations[i].location.address.label; + group.addObject(marker); + } + + group.addEventListener('tap', function (evt) { + map.setCenter(evt.target.getPosition()); + openBubble( + evt.target.getPosition(), evt.target.label); + }, false); + + // Add the locations group to the map + map.addObject(group); + map.setViewBounds(group.getBounds()); +} + +// Now use the map as required... +reverseGeocode(platform); diff --git a/search-for-landmark/geocoder.jpg b/search-for-landmark/geocoder.jpg new file mode 100644 index 0000000..c63d44d Binary files /dev/null and b/search-for-landmark/geocoder.jpg differ diff --git a/search-for-landmark/index.html b/search-for-landmark/index.html new file mode 100644 index 0000000..e93d302 --- /dev/null +++ b/search-for-landmark/index.html @@ -0,0 +1,21 @@ + + + + + + + Search for a Landmark + + + + + + + +

    Search for a Landmark

    +

    This example makes a landmark search and retrieves the name and location of the Eiffel Tower based on the input text. A clickable marker is placed on the location found.

    +
    +
    + + + diff --git a/search-for-landmark/js/app.js b/search-for-landmark/js/app.js new file mode 100644 index 0000000..a980543 --- /dev/null +++ b/search-for-landmark/js/app.js @@ -0,0 +1,186 @@ + +/** + * Calculates and displays the location of the 'Eiffel Tower' + * using a landmark geocoding search + * + * + * A full list of available request parameters can be found in the Geocoder API documentation. + * see: http://developer.here.com/rest-apis/documentation/geocoder/topics/resource-search.html + * + * @param {H.service.Platform} platform A stub class to access HERE services + */ +function landmarkGeocode(platform) { + var geocoder = platform.getGeocodingService(), + landmarkGeocodingParameters = { + searchtext: 'Eiffel Tower', + jsonattributes : 1 + }; + + geocoder.search( + landmarkGeocodingParameters, + onSuccess, + onError + ); +} + +/** + * This function will be called once the Geocoder REST API provides a response + * @param {Object} result A JSONP object representing the location(s) found. + * + * see: http://developer.here.com/rest-apis/documentation/geocoder/topics/resource-type-response-geocode.html + */ +function onSuccess(result) { + var locations = result.response.view[0].result; + /* + * The styling of the geocoding response on the map is entirely under the developer's control. + * A representitive styling can be found the full JS + HTML code of this example + * in the functions below: + */ + addLocationsToMap(locations); + addLocationsToPanel(locations); + // ... etc. +} + +/** + * This function will be called if a communication error occurs during the JSON-P request + * @param {Object} error The error message received. + */ +function onError(error) { + alert('Ooops!'); +} + + + + +/** + * Boilerplate map initialization code starts below: + */ + +//Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +//Step 2: initialize a map - this map is centered over California +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map,{ + center: {lat:37.376, lng:-122.034}, + zoom: 15 +}); + +var locationsContainer = document.getElementById('panel'); + +//Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Create the default UI components +var ui = H.ui.UI.createDefault(map, defaultLayers); + +// Hold a reference to any infobubble opened +var bubble; + +/** + * Opens/Closes a infobubble + * @param {H.geo.Point} position The location on the map. + * @param {String} text The contents of the infobubble. + */ +function openBubble(position, text){ + if(!bubble){ + bubble = new H.ui.InfoBubble( + position, + {content: text}); + ui.addBubble(bubble); + } else { + bubble.setPosition(position); + bubble.setContent(text); + bubble.open(); + } +} + +/** + * Creates a series of list items for each location found, and adds it to the panel. + * @param {Object[]} locations An array of locations as received from the + * H.service.GeocodingService + */ +function addLocationsToPanel(locations){ + + var nodeOL = document.createElement('ul'), + i; + + nodeOL.style.fontSize = 'small'; + nodeOL.style.marginLeft ='5%'; + nodeOL.style.marginRight ='5%'; + + + for (i = 0; i < locations.length; i += 1) { + var li = document.createElement('li'), + divLabel = document.createElement('div'), + landmark = locations[i].place.locations[0], + content = '' + landmark.name + '
    '; + position = { + lat: locations[i].place.locations[0].displayPosition.latitude, + lng: locations[i].place.locations[0].displayPosition.longitude + }; + + content += 'houseNumber: ' + landmark.address.houseNumber + '
    '; + content += 'street: ' + landmark.address.street + '
    '; + content += 'district: ' + landmark.address.district + '
    '; + content += 'city: ' + landmark.address.city + '
    '; + content += 'postalCode: ' + landmark.address.postalCode + '
    '; + content += 'county: ' + landmark.address.county + '
    '; + content += 'country: ' + landmark.address.country + '
    '; + content += '
    position: ' + + Math.abs(position.lat.toFixed(4)) + ((position.lat > 0) ? 'N' : 'S') + + ' ' + Math.abs(position.lng.toFixed(4)) + ((position.lng > 0) ? 'E' : 'W'); + + divLabel.innerHTML = content; + li.appendChild(divLabel); + + nodeOL.appendChild(li); + } + + locationsContainer.appendChild(nodeOL); +} + + +/** + * Creates a series of H.map.Markers for each location found, and adds it to the map. + * @param {Object[]} locations An array of locations as received from the + * H.service.GeocodingService + */ +function addLocationsToMap(locations){ + var group = new H.map.Group(), + position, + i; + + // Add a marker for each location found + for (i = 0; i < locations.length; i += 1) { + position = { + lat: locations[i].place.locations[0].displayPosition.latitude, + lng: locations[i].place.locations[0].displayPosition.longitude + }; + marker = new H.map.Marker(position); + marker.label = locations[i].place.locations[0].name; + group.addObject(marker); + } + + group.addEventListener('tap', function (evt) { + map.setCenter(evt.target.getPosition()); + openBubble( + evt.target.getPosition(), evt.target.label); + }, false); + + // Add the locations group to the map + map.addObject(group); + map.setViewBounds(group.getBounds()); + map.setZoom(Math.min(map.getZoom(), 16)); +} + +// Now use the map as required... +landmarkGeocode(platform); diff --git a/search-for-places/index.html b/search-for-places/index.html new file mode 100644 index 0000000..b568e3a --- /dev/null +++ b/search-for-places/index.html @@ -0,0 +1,22 @@ + + + + + + + One-Box Search + + + + + + + + +

    One-Box Search

    +

    This example searches for a "hotel" in the Chinatown district of San Francisco(37.7942°N,-122.4070°W) using the search Places API entrypoint. The Search Entrypoint returns POIs and addresses matching the user's query, taking into account the user's location context. For more information on possible parameters and options regarding this entrypoint visit Search Entrypoint Places API documentation.

    +
    +
    + + + diff --git a/search-for-places/js/app.js b/search-for-places/js/app.js new file mode 100644 index 0000000..fe015dc --- /dev/null +++ b/search-for-places/js/app.js @@ -0,0 +1,172 @@ + +/** + * This example uses the Search Places API entypoint to find hotels in the + * Chinatown District of San Francisco + * + * A full list of available request parameters can be found in the Places API documentation. + * see: http://developer.here.com/rest-apis/documentation/places/topics_api/resource-search.html + * + * Note that the places module https://js.api.here.com/v3/3.0/mapsjs-places.js + * must be loaded to use the Places API endpoints + * + * @param {H.service.Platform} platform A stub class to access HERE services + */ +function searchPlaces(platform) { + // creates a Search entypoint + var search = new H.places.Search(platform.getPlacesService()); + // creates parameters for search request + var params = { + 'q': 'hotel', + 'at': '37.7942,-122.4070' + }; + // creates a request with callbacks + search.request(params, {}, onResult, onError); +} + + +/** + * This function will be called once the Places REST API provides a response + * @param {Object} result A JSONP object representing the location(s) found. + * + * see: http://developer.here.com/rest-apis/documentation/places/topics_api/media-type-search.html + * + */ +function onResult(result) { + var places = result.results.items; + /* + * The styling of the places response on the map is entirely under the developer's control. + * A representative styling can be found the full JS + HTML code of this example + * in the functions below: + */ + addPlacesToMap(places); + addPlacesToPanel(places); +} + + +/** + * This function will be called if a communication error occurs during the JSON-P request + * @param {Object} error The error message received. + * + * see: see: http://developer.here.com/rest-apis/documentation/places/topics_api/object-error.html + */ +function onError(error) { + error = data; +} + + +/** + * Boilerplate map initialization code starts below: + */ + + +// Hold a reference to any infobubble opened +var bubble; + +/** + * Opens/Closes a infobubble + * @param {H.geo.Point} position The location on the map. + * @param {String} text The contents of the infobubble. + */ +function openBubble(position, text){ + if(!bubble){ + bubble = new H.ui.InfoBubble( + position, + // The FO property holds the province name. + {content: text}); + ui.addBubble(bubble); + } else { + bubble.setPosition(position); + bubble.setContent(text); + bubble.open(); + } +} + + + +/** + * Creates a series of clickable markers for each place found and adds it to the map. + * @param {Object[]} places An array of places as received from the H.service.getPlacesService + */ +function addPlacesToMap(places) { + var group = new H.map.Group(); + // add 'tap' event listener, that opens info bubble, to the group + group.addEventListener('tap', function (evt) { + map.setCenter(evt.target.getPosition()); + openBubble( + evt.target.getPosition(), evt.target.content); + }, false); + + group.addObjects(places.map(function (place) { + var marker = new H.map.Marker({lat: place.position[0], lng: place.position[1]}) + marker.content = '

    ' + place.title + + '

    ' + place.category.title + '

    ' + place.vicinity + '
    '; + return marker; + })); + + map.addObject(group); + + // get geo bounding box for the group and set it to the map + map.setViewBounds(group.getBounds()); +} + +/** + * Creates a series of list items for each location found, and adds it to the panel. + * @param {Object[]} locations An array of locations as received from the + * H.service.GeocodingService + */ +function addPlacesToPanel(places){ + + var nodeOL = document.createElement('ul'), + i; + + nodeOL.style.fontSize = 'small'; + nodeOL.style.marginLeft ='5%'; + nodeOL.style.marginRight ='5%'; + + + for (i = 0; i < places.length; i += 1) { + var li = document.createElement('li'), + divLabel = document.createElement('div'), + content = '' + places[i].title + ''; + content += ' (' + places[i].category.title + ')
    '; + content += places[i].vicinity + '
    '; + content += 'distance:' + places[i].distance + 'm
    '; + + divLabel.innerHTML = content; + li.appendChild(divLabel); + nodeOL.appendChild(li); + } + + placesContainer.appendChild(nodeOL); +} + + +// 1. initialize platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useHTTPS: true, + useCIT: true +}); + +var defaultLayers = platform.createDefaultLayers(); + +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map, { + center: {lat: -37.7942, lng: -122.4070}, + zoom: 15 + }); + +var placesContainer = document.getElementById('panel'); + +// add map behavior + +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Create the default UI components + +var ui = H.ui.UI.createDefault(map, defaultLayers); + +searchPlaces(platform); + + diff --git a/search-for-places/places.jpg b/search-for-places/places.jpg new file mode 100644 index 0000000..1d4d59e Binary files /dev/null and b/search-for-places/places.jpg differ diff --git a/showing-traffic-information/index.html b/showing-traffic-information/index.html new file mode 100644 index 0000000..634083f --- /dev/null +++ b/showing-traffic-information/index.html @@ -0,0 +1,20 @@ + + + + + + + Traffic Information + + + + + + + +

    Traffic Information

    +

    This example displays current traffic information in New York. Traffic incidents such as construction work are also included. Freely flowing traffic routes are shown in green, moderate congestion is shown in yellow and high congestion routes in red. Black routes indicate road closures.

    Traffic incident information is shown on top of the map as collection of markers with different icons per incident category (see User Guide for more information).

    +
    + + + diff --git a/showing-traffic-information/js/app.js b/showing-traffic-information/js/app.js new file mode 100644 index 0000000..5da33a5 --- /dev/null +++ b/showing-traffic-information/js/app.js @@ -0,0 +1,40 @@ +function enableTrafficInfo (map) { + // Center map on New York + map.setCenter({lat: 40.74007175329128, lng: -73.8701876028157}); + map.setZoom(11); + + // Show traffic tiles + map.setBaseLayer(defaultLayers.normal.traffic); + + // Enable traffic incidents layer + map.addLayer(defaultLayers.incidents); +} + +/** + * Boilerplate map initialization code starts below: + */ +// Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +// Step 2: initialize a map - not specificing a location will give a whole world view. +var map = new H.Map(document.getElementById('map'), defaultLayers.normal.map); + + + + +// Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Create the default UI components +var ui = H.ui.UI.createDefault(map, defaultLayers); + +// Now enable traffic tiles and traffic incidents +enableTrafficInfo(map); \ No newline at end of file diff --git a/showing-traffic-information/traffic-info-jam.jpg b/showing-traffic-information/traffic-info-jam.jpg new file mode 100644 index 0000000..938321a Binary files /dev/null and b/showing-traffic-information/traffic-info-jam.jpg differ diff --git a/synchronising-two-maps/index.html b/synchronising-two-maps/index.html new file mode 100644 index 0000000..6ac692a --- /dev/null +++ b/synchronising-two-maps/index.html @@ -0,0 +1,21 @@ + + + + + + + Synchronising Two Maps + + + + + + + +

    Synchronising Two Maps

    +

    This example shows two maps. The left map allows for moving and zooming. The right map observes the left map's zoom level and position and adopts these values every time the left map changes.

    +
    +
    + + + diff --git a/synchronising-two-maps/js/app.js b/synchronising-two-maps/js/app.js new file mode 100644 index 0000000..63d7607 --- /dev/null +++ b/synchronising-two-maps/js/app.js @@ -0,0 +1,75 @@ + + +/** + * Observes master map events to control the second one + * + * @param {H.Map} firstMap A HERE Map instance within the application + * @param {H.Map} secondMap A HERE Map instance within the application + */ + +function synchronizeMaps(firstMap, secondMap) { + // get view model objects for both maps, view model contains all data and + // utility functions that're related to map's geo state + var viewModel1 = firstMap.getViewModel(), + viewModel2 = secondMap.getViewModel(); + + // set up view change listener on interactive map + firstMap.addEventListener('mapviewchange', function() { + // on every view change take a "snapshot" of a current geo data for + // interactive map and set this values to the second, non-interactive, map + viewModel2.setCameraData(viewModel1.getCameraData()); + }); +} + +/** + * Boilerplate map initialization code starts below: + */ + +// initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +// set up containers for the map + +var mapContainer = document.createElement('div'); +var staticMapContainer = document.createElement('div'); + +mapContainer.style.position = 'absolute'; +mapContainer.style.width = '87%'; +mapContainer.style.height = '360px'; +mapContainer.style.margin = '19px'; + +staticMapContainer.style.position = 'absolute'; +staticMapContainer.style.width = '87%'; +staticMapContainer.style.height = '360px'; + +document.getElementById('map').appendChild(mapContainer); +document.getElementById('panel').appendChild(staticMapContainer); + +// initialize a map, this map is interactive +var map = new H.Map(mapContainer, + defaultLayers.normal.map,{ + center: {lat: 53.430, lng: -2.961}, + zoom: 7 +}); + +// initialize a map that will be synchronised +var staticMap = new H.Map(staticMapContainer, + defaultLayers.normal.map,{ + center: {lat: 53.430, lng: -2.961}, + zoom: 7 +}); + +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +// create beahvior only for the first map +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + + +// Now use the map as required... +synchronizeMaps(map, staticMap); \ No newline at end of file diff --git a/synchronising-two-maps/synchronise-maps.png b/synchronising-two-maps/synchronise-maps.png new file mode 100644 index 0000000..66ae230 Binary files /dev/null and b/synchronising-two-maps/synchronise-maps.png differ diff --git a/terrain-map/index.html b/terrain-map/index.html new file mode 100644 index 0000000..1bfe6cc --- /dev/null +++ b/terrain-map/index.html @@ -0,0 +1,20 @@ + + + + + + + Terrain Map + + + + + + + +

    Terrain Map

    +

    This example displays a moveable topographical map centred over Mount Everest (27.988056°N, 86.925°E).

    +
    + + + diff --git a/terrain-map/js/app.js b/terrain-map/js/app.js new file mode 100644 index 0000000..30c0b6e --- /dev/null +++ b/terrain-map/js/app.js @@ -0,0 +1,57 @@ + + +/** + * Switches the map type to a topographical map + * + * @param {H.Map} map A HERE Map instance within the application + * @param {H.service.Platform} platform A stub class to access HERE services + */ +function switchMapType(map, platform){ + var aerialMapTileService = platform.getMapTileService({ + type: 'aerial' + }); + terrainMap = aerialMapTileService.createTileLayer( + 'maptile', + 'terrain.day', + 256, + 'png8' + ); + map.setBaseLayer(terrainMap); +} + + + + + +/** + * Boilerplate map initialization code starts below: + */ + +//Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +//Step 2: initialize a map - this map is centered over Mount Everest +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map,{ + center: {lat:27.98805, lng:86.9250}, + zoom: 10 +}); + +//Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Create the default UI components +var ui = H.ui.UI.createDefault(map, defaultLayers); +// Remove map settings as unnecessary +ui.removeControl('mapsettings'); + +// Now use the map as required... +switchMapType(map, platform); \ No newline at end of file diff --git a/terrain-map/terrain-map.png b/terrain-map/terrain-map.png new file mode 100644 index 0000000..99a04d6 Binary files /dev/null and b/terrain-map/terrain-map.png differ diff --git a/venues-layer/index.html b/venues-layer/index.html new file mode 100644 index 0000000..e8c074d --- /dev/null +++ b/venues-layer/index.html @@ -0,0 +1,20 @@ + + + + + + + Adding Venues layer to the Map + + + + + + + +

    Adding Venues layer to the Map

    +

    This example shows how to display different venue objects on the map like shops, restaurants, parkings, taxi stands etc and how to customize default styling for them.

    Use the controls to change the floor level of the venues.

    +
    + + + diff --git a/venues-layer/js/app.js b/venues-layer/js/app.js new file mode 100644 index 0000000..8476b18 --- /dev/null +++ b/venues-layer/js/app.js @@ -0,0 +1,100 @@ +/** + * Shows how to add venue objects to the map, change default styling + * and change a floor level for all venues. + * @see http://developer.here.com/rest-apis/documentation/venue-maps + * + * @param {H.Map} map A HERE Map instance within the application + * @param {H.service.Platform} platform Platform instance within the application + * @param {Function} renderControls Custom helper function for adding buttons + */ +function addVenueLayer(map, platform, renderControls) { + // Create a tile layer, which will display venues + var customVenueLayer = platform.getVenueService().createTileLayer({ + // Provide a callback that will be called for each newly created space + onSpaceCreated: onSpaceCreated + }); + + // Get TileProvider from Venue Layer + var venueProvider = customVenueLayer.getProvider(); + // Add venues layer to the map + map.addLayer(customVenueLayer); + + // Use the custom function (i.e. not a part of the API) + // to render buttons with corresponding click callbacks + renderControls('Change floor', { + '+1 Level': function () { + // Increase global floor level on the venue provider + venueProvider.setCurrentLevel(venueProvider.getCurrentLevel() + 1); + }, + '-1 Level': function () { + // Decrease global floor level on the venue provider + venueProvider.setCurrentLevel(venueProvider.getCurrentLevel() - 1); + } + }); +} + +/** + * Changes the default style for H&M shops + * + * @param {H.service.venues.Space} + */ +function onSpaceCreated(space) { + // getData for spaces contains data from the Venue Interaction Tile API, + // see https://developer.here.com/rest-apis/documentation/venue-maps/topics/resource-type-venue-interaction-tile.html + if (space.getData().preview === 'H&M') { + space.setStyle({ + fillColor: 'rgba(0,255,0,0.3)' + }); + } +} + +/** + * Boilerplate map initialization code starts below: + */ + +// Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: "{YOUR_APP_ID}", + app_code: "{YOUR_APP_CODE}", + useCIT: true, + useHTTPS: true +}); +var defaultLayers = platform.createDefaultLayers(); + +// Step 2: initialize a map +var map = new H.Map(document.getElementById('map'), defaultLayers.normal.map, { + // initial center and zoom level of the map + center: new H.geo.Point(52.5189, 13.4158), + zoom: 17 +}); + +// Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Step 4: Create the default UI: +var ui = H.ui.UI.createDefault(map, defaultLayers, 'en-US'); + +// Template function for displaying controls with a heading and buttons +function renderControls(title, buttons) { + var containerNode = document.createElement('div'); + + containerNode.innerHTML = '

    ' + title + '

    '; + containerNode.setAttribute('style', + 'position:absolute;top:0;left:0;background-color:#fff; padding:10px;text-align:center'); + + Object.keys(buttons).forEach(function (label) { + var input = document.createElement('input'); + input.value = label; + input.type = 'button'; + input.onclick = buttons[label]; + input.className="btn btn-sm btn-default" + containerNode.lastChild.appendChild(input); + }); + + map.getElement().appendChild(containerNode); +} + +// Step 5: main logic goes here +addVenueLayer(map, platform, renderControls); \ No newline at end of file diff --git a/venues-layer/venues-layer.png b/venues-layer/venues-layer.png new file mode 100644 index 0000000..3e46bfd Binary files /dev/null and b/venues-layer/venues-layer.png differ diff --git a/zoom-to-set-of-markers/index.html b/zoom-to-set-of-markers/index.html new file mode 100644 index 0000000..c5fb3a5 --- /dev/null +++ b/zoom-to-set-of-markers/index.html @@ -0,0 +1,20 @@ + + + + + + + Zooming to a Set of Markers + + + + + + + +

    Zooming to a Set of Markers

    +

    This examples adds three markers showing the locations of Boston, Washington and Toronto to the map and alters the map display to ensure that all of the markers are visible.

    +
    + + + diff --git a/zoom-to-set-of-markers/js/app.js b/zoom-to-set-of-markers/js/app.js new file mode 100644 index 0000000..c186f7b --- /dev/null +++ b/zoom-to-set-of-markers/js/app.js @@ -0,0 +1,52 @@ +/** + * Adds three markers and alters the view bounds of the map to ensure that all + * markers are visible + * + * @param {H.Map} map A HERE Map instance within the application + */ +function addMarkersAndSetViewBounds() { + // create map objects + var toronto = new H.map.Marker({lat:43.7, lng:-79.4}), + boston = new H.map.Marker({lat:42.35805, lng:-71.0636}), + washington = new H.map.Marker({lat:38.8951, lng:-77.0366}), + group = new H.map.Group(); + + // add markers to the group + group.addObjects([toronto, boston, washington]); + map.addObject(group); + + // get geo bounding box for the group and set it to the map + map.setViewBounds(group.getBounds()); +} + + + +/** + * Boilerplate map initialization code starts below: + */ + +//Step 1: initialize communication with the platform +var platform = new H.service.Platform({ + app_id: '{YOUR_APP_ID}', + app_code: '{YOUR_APP_CODE}', + useCIT: true, + useHTTPS: true +}); + +var defaultLayers = platform.createDefaultLayers(); + +//Step 2: initialize a map - this map is centered over Europe +// note that all the markers are in North America... +var map = new H.Map(document.getElementById('map'), + defaultLayers.normal.map,{ + center: {lat:52, lng:5}, + zoom: 5 +}); + +//Step 3: make the map interactive +// MapEvents enables the event system +// Behavior implements default interactions for pan/zoom (also on mobile touch environments) +var behavior = new H.mapevents.Behavior(new H.mapevents.MapEvents(map)); + +// Now use the map as required... +addMarkersAndSetViewBounds(map); \ No newline at end of file diff --git a/zoom-to-set-of-markers/zoom-to-markers.png b/zoom-to-set-of-markers/zoom-to-markers.png new file mode 100644 index 0000000..a5bc04f Binary files /dev/null and b/zoom-to-set-of-markers/zoom-to-markers.png differ