diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..6503b5e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,43 @@
+# Miscellaneous
+*.class
+*.log
+*.pyc
+*.swp
+.DS_Store
+.atom/
+.buildlog/
+.history
+.svn/
+migrate_working_dir/
+
+# IntelliJ related
+*.iml
+*.ipr
+*.iws
+.idea/
+
+# The .vscode folder contains launch configuration and tasks you configure in
+# VS Code which you may wish to be included in version control, so this line
+# is commented out by default.
+#.vscode/
+
+# Flutter/Dart/Pub related
+**/doc/api/
+**/ios/Flutter/.last_build_id
+.dart_tool/
+.flutter-plugins
+.flutter-plugins-dependencies
+.pub-cache/
+.pub/
+/build/
+
+# Symbolication related
+app.*.symbols
+
+# Obfuscation related
+app.*.map.json
+
+# Android Studio will place build artifacts here
+/android/app/debug
+/android/app/profile
+/android/app/release
diff --git a/.metadata b/.metadata
new file mode 100644
index 0000000..9d32c61
--- /dev/null
+++ b/.metadata
@@ -0,0 +1,45 @@
+# This file tracks properties of this Flutter project.
+# Used by Flutter tool to assess capabilities and perform upgrades etc.
+#
+# This file should be version controlled and should not be manually edited.
+
+version:
+ revision: "b0850beeb25f6d5b10426284f506557f66181b36"
+ channel: "stable"
+
+project_type: app
+
+# Tracks metadata for the flutter migrate command
+migration:
+ platforms:
+ - platform: root
+ create_revision: b0850beeb25f6d5b10426284f506557f66181b36
+ base_revision: b0850beeb25f6d5b10426284f506557f66181b36
+ - platform: android
+ create_revision: b0850beeb25f6d5b10426284f506557f66181b36
+ base_revision: b0850beeb25f6d5b10426284f506557f66181b36
+ - platform: ios
+ create_revision: b0850beeb25f6d5b10426284f506557f66181b36
+ base_revision: b0850beeb25f6d5b10426284f506557f66181b36
+ - platform: linux
+ create_revision: b0850beeb25f6d5b10426284f506557f66181b36
+ base_revision: b0850beeb25f6d5b10426284f506557f66181b36
+ - platform: macos
+ create_revision: b0850beeb25f6d5b10426284f506557f66181b36
+ base_revision: b0850beeb25f6d5b10426284f506557f66181b36
+ - platform: web
+ create_revision: b0850beeb25f6d5b10426284f506557f66181b36
+ base_revision: b0850beeb25f6d5b10426284f506557f66181b36
+ - platform: windows
+ create_revision: b0850beeb25f6d5b10426284f506557f66181b36
+ base_revision: b0850beeb25f6d5b10426284f506557f66181b36
+
+ # User provided section
+
+ # List of Local paths (relative to this file) that should be
+ # ignored by the migrate tool.
+ #
+ # Files that are not part of the templates will be ignored by default.
+ unmanaged_files:
+ - 'lib/main.dart'
+ - 'ios/Runner.xcodeproj/project.pbxproj'
diff --git a/analysis_options.yaml b/analysis_options.yaml
new file mode 100644
index 0000000..d4e0f0c
--- /dev/null
+++ b/analysis_options.yaml
@@ -0,0 +1,28 @@
+# This file configures the analyzer, which statically analyzes Dart code to
+# check for errors, warnings, and lints.
+#
+# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
+# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
+# invoked from the command line by running `flutter analyze`.
+
+# The following line activates a set of recommended lints for Flutter apps,
+# packages, and plugins designed to encourage good coding practices.
+include: package:flutter_lints/flutter.yaml
+
+linter:
+ # The lint rules applied to this project can be customized in the
+ # section below to disable rules from the `package:flutter_lints/flutter.yaml`
+ # included above or to enable additional rules. A list of all available lints
+ # and their documentation is published at https://dart.dev/lints.
+ #
+ # Instead of disabling a lint rule for the entire project in the
+ # section below, it can also be suppressed for a single line of code
+ # or a specific dart file by using the `// ignore: name_of_lint` and
+ # `// ignore_for_file: name_of_lint` syntax on the line or in the file
+ # producing the lint.
+ rules:
+ # avoid_print: false # Uncomment to disable the `avoid_print` rule
+ # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
+
+# Additional information about this file can be found at
+# https://dart.dev/guides/language/analysis-options
diff --git a/android/.gitignore b/android/.gitignore
new file mode 100644
index 0000000..5d99765
--- /dev/null
+++ b/android/.gitignore
@@ -0,0 +1,13 @@
+gradle-wrapper.jar
+/.gradle
+/captures/
+/gradlew
+/gradlew.bat
+/local.properties
+GeneratedPluginRegistrant.java
+
+# Remember to never publicly share your keystore.
+# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
+key.properties
+**/*.keystore
+**/*.jks
diff --git a/android/app/build.gradle b/android/app/build.gradle
new file mode 100644
index 0000000..ec18cf8
--- /dev/null
+++ b/android/app/build.gradle
@@ -0,0 +1,58 @@
+plugins {
+ id "com.android.application"
+ id "kotlin-android"
+ // The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
+ id "dev.flutter.flutter-gradle-plugin"
+}
+
+def localProperties = new Properties()
+def localPropertiesFile = rootProject.file("local.properties")
+if (localPropertiesFile.exists()) {
+ localPropertiesFile.withReader("UTF-8") { reader ->
+ localProperties.load(reader)
+ }
+}
+
+def flutterVersionCode = localProperties.getProperty("flutter.versionCode")
+if (flutterVersionCode == null) {
+ flutterVersionCode = "1"
+}
+
+def flutterVersionName = localProperties.getProperty("flutter.versionName")
+if (flutterVersionName == null) {
+ flutterVersionName = "1.0"
+}
+
+android {
+ namespace = "com.example.sampleindiamap"
+ compileSdk = flutter.compileSdkVersion
+ ndkVersion = flutter.ndkVersion
+
+ compileOptions {
+ sourceCompatibility = JavaVersion.VERSION_1_8
+ targetCompatibility = JavaVersion.VERSION_1_8
+ }
+
+ defaultConfig {
+ // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
+ applicationId = "com.example.sampleindiamap"
+ // You can update the following values to match your application needs.
+ // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
+ minSdk = flutter.minSdkVersion
+ targetSdk = flutter.targetSdkVersion
+ versionCode = flutterVersionCode.toInteger()
+ versionName = flutterVersionName
+ }
+
+ buildTypes {
+ release {
+ // TODO: Add your own signing config for the release build.
+ // Signing with the debug keys for now, so `flutter run --release` works.
+ signingConfig = signingConfigs.debug
+ }
+ }
+}
+
+flutter {
+ source = "../.."
+}
diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml
new file mode 100644
index 0000000..8ffe024
--- /dev/null
+++ b/android/app/src/debug/AndroidManifest.xml
@@ -0,0 +1,7 @@
+
+
+
+
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..d904ce1
--- /dev/null
+++ b/android/app/src/main/AndroidManifest.xml
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/app/src/main/kotlin/com/example/sampleindiamap/MainActivity.kt b/android/app/src/main/kotlin/com/example/sampleindiamap/MainActivity.kt
new file mode 100644
index 0000000..4846679
--- /dev/null
+++ b/android/app/src/main/kotlin/com/example/sampleindiamap/MainActivity.kt
@@ -0,0 +1,5 @@
+package com.example.sampleindiamap
+
+import io.flutter.embedding.android.FlutterActivity
+
+class MainActivity: FlutterActivity()
diff --git a/android/app/src/main/res/drawable-v21/launch_background.xml b/android/app/src/main/res/drawable-v21/launch_background.xml
new file mode 100644
index 0000000..1cb7aa2
--- /dev/null
+++ b/android/app/src/main/res/drawable-v21/launch_background.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
diff --git a/android/app/src/main/res/drawable/launch_background.xml b/android/app/src/main/res/drawable/launch_background.xml
new file mode 100644
index 0000000..8403758
--- /dev/null
+++ b/android/app/src/main/res/drawable/launch_background.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 0000000..db77bb4
Binary files /dev/null and b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 0000000..17987b7
Binary files /dev/null and b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 0000000..09d4391
Binary files /dev/null and b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 0000000..d5f1c8d
Binary files /dev/null and b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100644
index 0000000..4d6372e
Binary files /dev/null and b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ
diff --git a/android/app/src/main/res/values-night/styles.xml b/android/app/src/main/res/values-night/styles.xml
new file mode 100644
index 0000000..360a160
--- /dev/null
+++ b/android/app/src/main/res/values-night/styles.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
diff --git a/android/app/src/main/res/values/styles.xml b/android/app/src/main/res/values/styles.xml
new file mode 100644
index 0000000..5fac679
--- /dev/null
+++ b/android/app/src/main/res/values/styles.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
diff --git a/android/app/src/profile/AndroidManifest.xml b/android/app/src/profile/AndroidManifest.xml
new file mode 100644
index 0000000..8ffe024
--- /dev/null
+++ b/android/app/src/profile/AndroidManifest.xml
@@ -0,0 +1,7 @@
+
+
+
+
diff --git a/android/build.gradle b/android/build.gradle
new file mode 100644
index 0000000..0066644
--- /dev/null
+++ b/android/build.gradle
@@ -0,0 +1,18 @@
+allprojects {
+ repositories {
+ google()
+ mavenCentral()
+ }
+}
+
+rootProject.buildDir = "../build"
+subprojects {
+ project.buildDir = "${rootProject.buildDir}/${project.name}"
+}
+subprojects {
+ project.evaluationDependsOn(":app")
+}
+
+tasks.register("clean", Delete) {
+ delete rootProject.buildDir
+}
diff --git a/android/gradle.properties b/android/gradle.properties
new file mode 100644
index 0000000..0d7fbd5
--- /dev/null
+++ b/android/gradle.properties
@@ -0,0 +1,3 @@
+org.gradle.jvmargs=-Xmx4G -XX:+HeapDumpOnOutOfMemoryError
+android.useAndroidX=true
+android.enableJetifier=true
diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..8854897
--- /dev/null
+++ b/android/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,5 @@
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.3-all.zip
diff --git a/android/settings.gradle b/android/settings.gradle
new file mode 100644
index 0000000..0f10e04
--- /dev/null
+++ b/android/settings.gradle
@@ -0,0 +1,25 @@
+pluginManagement {
+ def flutterSdkPath = {
+ def properties = new Properties()
+ file("local.properties").withInputStream { properties.load(it) }
+ def flutterSdkPath = properties.getProperty("flutter.sdk")
+ assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
+ return flutterSdkPath
+ }()
+
+ includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
+
+ repositories {
+ google()
+ mavenCentral()
+ gradlePluginPortal()
+ }
+}
+
+plugins {
+ id "dev.flutter.flutter-plugin-loader" version "1.0.0"
+ id "com.android.application" version "7.3.0" apply false
+ id "org.jetbrains.kotlin.android" version "1.7.10" apply false
+}
+
+include ":app"
diff --git a/assets/india.json b/assets/india.json
new file mode 100644
index 0000000..a1df21e
--- /dev/null
+++ b/assets/india.json
@@ -0,0 +1,43 @@
+{
+ "type": "FeatureCollection",
+ "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
+
+ "features": [
+ { "type": "Feature", "properties": { "name": "Chandigarh", "admin": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 76.814567498591117, 30.789128730406549 ], [ 76.811673617843141, 30.777656562000736 ], [ 76.813327264241806, 30.770266831848794 ], [ 76.819425083200983, 30.756779282737671 ], [ 76.824075962235824, 30.749751287791693 ], [ 76.826246371672639, 30.742955837741697 ], [ 76.82655643093446, 30.735281886749636 ], [ 76.822008904687138, 30.72210439690036 ], [ 76.818804965576632, 30.703190823297856 ], [ 76.82727990134633, 30.680711575378886 ], [ 76.811673617843141, 30.683217882499253 ], [ 76.806816034132609, 30.683295395965725 ], [ 76.800304803124078, 30.682675279240687 ], [ 76.794723749001761, 30.679729723447959 ], [ 76.785215285357069, 30.672288316452629 ], [ 76.780564406322227, 30.673451036436166 ], [ 76.775603468924928, 30.677404283480875 ], [ 76.769609002753199, 30.684664822423592 ], [ 76.760100539108564, 30.692002874832774 ], [ 76.730748325874501, 30.723163764096391 ], [ 76.701809522891139, 30.744557807296918 ], [ 76.698088819843093, 30.749260362275884 ], [ 76.695401645569447, 30.755874946071849 ], [ 76.693748000070087, 30.763523057742869 ], [ 76.694368116795133, 30.771507066198115 ], [ 76.696951939180607, 30.77633881328557 ], [ 76.703773227652263, 30.781403103470435 ], [ 76.741497022969199, 30.796492621237455 ], [ 76.757930128772372, 30.798559678786141 ], [ 76.773949823425582, 30.799024766779546 ], [ 76.814567498591117, 30.789128730406549 ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Delhi", "admin": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.155218539803727, 28.861649482337718 ], [ 77.200797154165272, 28.876790676048806 ], [ 77.216713495131657, 28.843511054191755 ], [ 77.206274854600835, 28.821858629472153 ], [ 77.220020786130348, 28.805089626884744 ], [ 77.227152133863825, 28.783592230896705 ], [ 77.306940546069299, 28.720598659700379 ], [ 77.313141716916647, 28.707266140220153 ], [ 77.317069126438966, 28.696000678288666 ], [ 77.317689243163997, 28.687319036943954 ], [ 77.318929478412642, 28.681040350831491 ], [ 77.333812289705335, 28.644427599554028 ], [ 77.336912876028322, 28.633911445556741 ], [ 77.337532992753367, 28.6261858177213 ], [ 77.335672641679011, 28.619519557981214 ], [ 77.331331821906005, 28.613525091809485 ], [ 77.326164178034318, 28.608486640046401 ], [ 77.31097130658047, 28.596497707703001 ], [ 77.305080194095623, 28.590451564687946 ], [ 77.301049431785813, 28.583552760951129 ], [ 77.297845492675307, 28.569393419170918 ], [ 77.303219842121933, 28.562908027483438 ], [ 77.32740441328302, 28.519706529033037 ], [ 77.26973351379057, 28.510275579754186 ], [ 77.257641228659708, 28.50593475998118 ], [ 77.241311477442679, 28.497459825110806 ], [ 77.226221957877016, 28.48435985052668 ], [ 77.222707961303328, 28.477383531524758 ], [ 77.225808546727009, 28.470768947728736 ], [ 77.232629836097985, 28.465342922337975 ], [ 77.237900831857857, 28.458547472287986 ], [ 77.240484654243332, 28.452630520482096 ], [ 77.239864535719718, 28.44754039187557 ], [ 77.234800246434176, 28.442837835997288 ], [ 77.225188430001978, 28.437618517080857 ], [ 77.193562452744956, 28.43260590284012 ], [ 77.152428012742561, 28.44599009916373 ], [ 77.137028435713702, 28.455421047543261 ], [ 77.113567335863806, 28.467177435889933 ], [ 77.100544874746149, 28.475600693916867 ], [ 77.093413527012601, 28.482887071281308 ], [ 77.08938276560211, 28.48970835975296 ], [ 77.079150832444924, 28.517716986749512 ], [ 77.075740186860102, 28.523918158496198 ], [ 77.070882603149556, 28.528569037531035 ], [ 77.003393181649969, 28.558903102696028 ], [ 76.997502069165108, 28.559600734686111 ], [ 76.991197543731616, 28.557972926709162 ], [ 76.985306431246769, 28.549575507103945 ], [ 76.98499637198492, 28.537689928447428 ], [ 76.977554965888928, 28.534589342124427 ], [ 76.962672153696914, 28.532005519738895 ], [ 76.90727501822748, 28.528103949537631 ], [ 76.872651809233545, 28.519422309092242 ], [ 76.870274693322401, 28.528569037531035 ], [ 76.869551222910545, 28.533323269353382 ], [ 76.867484165361901, 28.538826809109928 ], [ 76.863350051163863, 28.544898790546707 ], [ 76.857768996142212, 28.55060903587826 ], [ 76.842782831162694, 28.562804673796613 ], [ 76.835031365804852, 28.571176255879486 ], [ 76.833687778668008, 28.578927721237328 ], [ 76.836891716879208, 28.587221788055039 ], [ 76.857768996142212, 28.605541083354289 ], [ 76.867380811675091, 28.622852688300888 ], [ 76.87234174997171, 28.628149522482428 ], [ 76.883297154440058, 28.632206122314692 ], [ 76.901487257630762, 28.634712429435062 ], [ 76.910375603651161, 28.636779486983691 ], [ 76.915956658672812, 28.642153836430388 ], [ 76.918540480158953, 28.662488512434884 ], [ 76.922261184106318, 28.670860094517703 ], [ 76.939624464997038, 28.684838569144624 ], [ 76.947272576668055, 28.696155707020235 ], [ 76.944482048707513, 28.707757065735958 ], [ 76.938074172285198, 28.718815822991807 ], [ 76.936420525886533, 28.725094509104274 ], [ 76.937764113023363, 28.740313218979843 ], [ 76.934043409975331, 28.79188629771442 ], [ 76.934973585962183, 28.804547024525554 ], [ 76.936523878674038, 28.814649767372821 ], [ 76.943551873620009, 28.826276964510264 ], [ 76.954403924401547, 28.835475368893125 ], [ 76.978588494663242, 28.847154241974685 ], [ 77.003599888124299, 28.854440619339069 ], [ 77.036156039569548, 28.853277900254842 ], [ 77.054449497346397, 28.866610418835755 ], [ 77.059720493106212, 28.873767604990967 ], [ 77.0679887233009, 28.882087511129722 ], [ 77.076980422108747, 28.882009995864617 ], [ 77.122869093933488, 28.870744533933074 ], [ 77.135788202263683, 28.865602729382424 ], [ 77.149017368057045, 28.861933702278517 ], [ 77.155218539803727, 28.861649482337718 ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Himachal Pradesh", "admin": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 76.625948521107304, 33.189292304196435 ], [ 76.739843378369173, 33.197405503860914 ], [ 76.754519484086856, 33.194563299956307 ], [ 76.76867882676639, 33.186811835497785 ], [ 76.829450310783145, 33.125549425065905 ], [ 76.848363885285011, 33.114800727071888 ], [ 76.903037551241923, 33.073769639856941 ], [ 76.927532179866134, 33.045864366547271 ], [ 76.940141228934507, 33.034288845353892 ], [ 76.956057569900892, 33.025090440071715 ], [ 76.999879185076267, 33.007236232765919 ], [ 77.088452589615244, 32.95021129021886 ], [ 77.135788202263683, 32.926750190368971 ], [ 77.219917434242163, 32.901997179326365 ], [ 77.348695102796725, 32.867244778223885 ], [ 77.371329380346566, 32.867038071749612 ], [ 77.377737257668272, 32.872205714721922 ], [ 77.384971958189254, 32.884039618333695 ], [ 77.389002719599759, 32.887682807015885 ], [ 77.393963657896435, 32.889930731717861 ], [ 77.443986443919229, 32.894478257965197 ], [ 77.477679477825617, 32.901247870492789 ], [ 77.497833285777446, 32.909257717369705 ], [ 77.538967726679218, 32.918352768965114 ], [ 77.553540479609396, 32.923417060049239 ], [ 77.566872999988888, 32.929876614214372 ], [ 77.581032341769102, 32.939049181074829 ], [ 77.6074906760538, 32.96240692813722 ], [ 77.615758905349168, 32.968298041521386 ], [ 77.624853956944534, 32.971476142210172 ], [ 77.643354120296394, 32.976049505979901 ], [ 77.652035759842406, 32.980467841018019 ], [ 77.659993930775258, 32.986488144712091 ], [ 77.673429803042922, 32.999407253941563 ], [ 77.675186802229106, 33.000414944294214 ], [ 77.694410435093445, 33.008088894386951 ], [ 77.703298781113787, 33.013256537359261 ], [ 77.712290479921634, 33.014522610130307 ], [ 77.721075474053848, 33.012636419734967 ], [ 77.732547641560345, 33.001577664277754 ], [ 77.742159457992543, 32.986953232705496 ], [ 77.765207146692418, 32.96256195686879 ], [ 77.823808221272358, 32.910342922088141 ], [ 77.857914667228073, 32.873006700398882 ], [ 77.893468052208775, 32.802959295834789 ], [ 77.910521274736979, 32.790737820394092 ], [ 77.922716912655332, 32.775183213734287 ], [ 77.928918085301333, 32.762444973456745 ], [ 77.93232872908753, 32.710871893822791 ], [ 77.938529900834212, 32.695343126484083 ], [ 77.94938195161572, 32.682708238094669 ], [ 77.973876581139265, 32.660358181384929 ], [ 77.983178339208948, 32.648059189779751 ], [ 77.988345982181244, 32.633770656790368 ], [ 77.994650506715445, 32.620360622944354 ], [ 78.008913202182484, 32.610309556940472 ], [ 78.043226352813903, 32.611394762558227 ], [ 78.059039340992726, 32.618345242239108 ], [ 78.069891391774249, 32.630360012104852 ], [ 78.077022740407116, 32.640462754952175 ], [ 78.084050733554463, 32.64513947240868 ], [ 78.093042434160949, 32.648989365766617 ], [ 78.098830193858277, 32.653769436010627 ], [ 78.104101189618163, 32.661856798152705 ], [ 78.11464318203717, 32.667722073115151 ], [ 78.131696404565361, 32.671494452107247 ], [ 78.154537387690226, 32.674052436071058 ], [ 78.178515253276245, 32.688754381109781 ], [ 78.191537714393959, 32.692009996164352 ], [ 78.208074172085318, 32.692165024895978 ], [ 78.227917921674674, 32.690175483511716 ], [ 78.243730909853554, 32.692940172151218 ], [ 78.253859491122554, 32.697901109548518 ], [ 78.268742303314625, 32.715703640010915 ], [ 78.279387647621817, 32.72149140150696 ], [ 78.305122512393993, 32.729475409062836 ], [ 78.31432091677685, 32.735444036812844 ], [ 78.317628207775542, 32.743608914219969 ], [ 78.31545779833867, 32.760507107117284 ], [ 78.317731560563047, 32.764667059737 ], [ 78.325172966659053, 32.76673411728563 ], [ 78.333854608003705, 32.767845160425786 ], [ 78.353284947342374, 32.768620306781706 ], [ 78.360416294176602, 32.767612617328375 ], [ 78.366617465923284, 32.76520966209619 ], [ 78.370338168971259, 32.761127223842259 ], [ 78.373438755294259, 32.753970037687047 ], [ 78.380880161390266, 32.729294541909546 ], [ 78.383360630088973, 32.714437568139253 ], [ 78.384290806075782, 32.699373887894573 ], [ 78.380570103027807, 32.669194851461206 ], [ 78.377779575966585, 32.657335110327033 ], [ 78.374678989643584, 32.648782660191607 ], [ 78.368374465109454, 32.639816798906104 ], [ 78.358555943102232, 32.631677760819962 ], [ 78.332924432016895, 32.617905991768104 ], [ 78.313390740789984, 32.605038561180599 ], [ 78.304088982720288, 32.596150214260938 ], [ 78.299438103685461, 32.588657131321547 ], [ 78.29292687357632, 32.575402127106479 ], [ 78.286518996254628, 32.545093899463886 ], [ 78.281868117219773, 32.532381496708688 ], [ 78.27401329907444, 32.518868110075168 ], [ 78.270395948813913, 32.504166165036445 ], [ 78.27401329907444, 32.491143703918787 ], [ 78.282178175582303, 32.480653388343164 ], [ 78.293650343988105, 32.473289495713622 ], [ 78.302952102057787, 32.470653998283346 ], [ 78.313390740789984, 32.471739203001782 ], [ 78.358866000565442, 32.515586655699558 ], [ 78.380982707485927, 32.528041484526845 ], [ 78.409198039158113, 32.476623434523837 ], [ 78.448782186448724, 32.42678151565439 ], [ 78.452192830234864, 32.416782125594573 ], [ 78.448162068824374, 32.410658468213732 ], [ 78.441444132240846, 32.404948221982856 ], [ 78.436379842056027, 32.396163229649282 ], [ 78.434519490981685, 32.383760885256599 ], [ 78.435966430906021, 32.377973125559258 ], [ 78.438860310754691, 32.373296407203377 ], [ 78.462734822653871, 32.281803284394009 ], [ 78.461391236416361, 32.260150859674404 ], [ 78.456326945332236, 32.242115784315949 ], [ 78.457980590831511, 32.229661763979202 ], [ 78.468540769341004, 32.226667747318679 ], [ 78.469017392038921, 32.226532615188027 ], [ 78.47648075418337, 32.22441660664105 ], [ 78.513067667938486, 32.207570089687856 ], [ 78.5349784750765, 32.181344299399875 ], [ 78.551824992029694, 32.150390117509907 ], [ 78.649286743488389, 32.036443583404598 ], [ 78.678328898359936, 32.016754863446174 ], [ 78.722150513535311, 31.994585672990404 ], [ 78.733829387516195, 31.98466379819569 ], [ 78.744578085510213, 31.964199930982026 ], [ 78.741994263124681, 31.945338033323527 ], [ 78.720186808774116, 31.902911682128426 ], [ 78.714192343501765, 31.883016256594935 ], [ 78.706647582819627, 31.840796610974785 ], [ 78.700343058285441, 31.821676330897951 ], [ 78.674091430475116, 31.786949768217191 ], [ 78.670887492263915, 31.770516663313334 ], [ 78.695588826463094, 31.746693827358222 ], [ 78.69517541531313, 31.737960510968769 ], [ 78.692591593826918, 31.728400370480692 ], [ 78.693211711451269, 31.718530172529416 ], [ 78.698069295161787, 31.711037090489288 ], [ 78.710471640453804, 31.698169658103204 ], [ 78.718429810487336, 31.68059967163753 ], [ 78.724010865508987, 31.673313293373774 ], [ 78.731348917918169, 31.668042298513218 ], [ 78.739823852788547, 31.666026916908656 ], [ 78.758117309666076, 31.666595358588886 ], [ 78.795324341045415, 31.633780822926603 ], [ 78.818888793682817, 31.607374166384652 ], [ 78.814031209072979, 31.595023498835353 ], [ 78.79697798744408, 31.57884877545057 ], [ 78.699516235086136, 31.510015768612782 ], [ 78.695382120888127, 31.488104961474779 ], [ 78.733002563417514, 31.467744446149247 ], [ 78.762561483125907, 31.445110169498708 ], [ 78.7600810144272, 31.412037252317294 ], [ 78.745508261497022, 31.373538310644498 ], [ 78.738480265651702, 31.334987691228939 ], [ 78.740857382462181, 31.317727763125724 ], [ 78.745094849447682, 31.308115947592903 ], [ 78.75315637226872, 31.301966450890966 ], [ 78.784472290263963, 31.288272197104213 ], [ 78.796047811457271, 31.288117167473267 ], [ 78.821989380005832, 31.293698222494918 ], [ 78.848654418966234, 31.290907695433749 ], [ 78.861986938446407, 31.291476135315339 ], [ 78.877386515475266, 31.298245747842937 ], [ 78.878876265826975, 31.299550770251802 ], [ 78.897747836593325, 31.275119737186106 ], [ 78.905189242689332, 31.267678331090103 ], [ 78.936298456008885, 31.240367336983009 ], [ 78.963583611694261, 31.203134467181872 ], [ 78.993349236977664, 31.163395291159752 ], [ 78.997069940025639, 31.147272243719037 ], [ 78.993245884190159, 31.130787461971742 ], [ 78.961516555044952, 31.12184743910802 ], [ 78.946955204618945, 31.120133557018043 ], [ 78.93319786968587, 31.118514308788285 ], [ 78.869532504921139, 31.121976630317185 ], [ 78.846278110646239, 31.135154120166472 ], [ 78.833565707891054, 31.146832994147349 ], [ 78.819716423574036, 31.164325466247242 ], [ 78.800596145295842, 31.199878852127309 ], [ 78.792741327150495, 31.207010199860797 ], [ 78.778478631683456, 31.209697374134457 ], [ 78.753467238222399, 31.209180610196992 ], [ 78.722564732276552, 31.213805649910789 ], [ 78.687218051971499, 31.215846869037755 ], [ 78.666547479182753, 31.214296576325918 ], [ 78.651561314203249, 31.21538178194367 ], [ 78.633371210113225, 31.220807807334431 ], [ 78.621899041707337, 31.22625967114686 ], [ 78.605155878440982, 31.230032050138952 ], [ 78.581694776792446, 31.231065578913327 ], [ 78.539940220065063, 31.226518053565304 ], [ 78.518856236126325, 31.221557115268627 ], [ 78.500976190398816, 31.21956757298511 ], [ 78.490950961917321, 31.222177231993665 ], [ 78.47369103381412, 31.231918240534348 ], [ 78.442685174181392, 31.261968084859223 ], [ 78.433693475373531, 31.268065903818403 ], [ 78.425011834928199, 31.270236314154534 ], [ 78.411162550611195, 31.267678331090103 ], [ 78.401654086966488, 31.268143419083508 ], [ 78.391112095446815, 31.274344590830189 ], [ 78.386047805261953, 31.2826128201255 ], [ 78.378709751054117, 31.287702948732079 ], [ 78.368684522572593, 31.290028387799843 ], [ 78.348427361833259, 31.289873359068217 ], [ 78.312977328740686, 31.294498398782071 ], [ 78.297371047036151, 31.294265854785341 ], [ 78.284245233130932, 31.290338447061679 ], [ 78.234532504571376, 31.261192939402626 ], [ 78.186163364947262, 31.248092963019811 ], [ 78.117227004422645, 31.214193224437729 ], [ 78.070821567761115, 31.185202745510246 ], [ 78.039712355340868, 31.172180284392585 ], [ 78.027723422997525, 31.169854845324828 ], [ 78.008913202182484, 31.169079698069588 ], [ 77.963747999870222, 31.176133531437294 ], [ 77.952792596301251, 31.176288561068183 ], [ 77.941113723219686, 31.172903753905064 ], [ 77.928918085301333, 31.165255642234047 ], [ 77.89780887198178, 31.137996324071079 ], [ 77.865872837261563, 31.10277883587457 ], [ 77.806031529231603, 31.050508124250531 ], [ 77.798486770348092, 31.041361395811744 ], [ 77.796006300750136, 31.031362005751923 ], [ 77.806961704319164, 31.013068548874394 ], [ 77.808201938668489, 31.003999334801442 ], [ 77.802104119709313, 30.992165432088985 ], [ 77.793215772789637, 30.984052232424563 ], [ 77.784120721194299, 30.980150662223245 ], [ 77.775542434435721, 30.980150662223245 ], [ 77.765207146692418, 30.983897202793617 ], [ 77.756525507146407, 30.985421657983117 ], [ 77.749704216876054, 30.979918118226571 ], [ 77.750117628925381, 30.969040229023328 ], [ 77.762209914056243, 30.949971624890559 ], [ 77.771511672125925, 30.94165172055045 ], [ 77.781433546920582, 30.937130031825454 ], [ 77.789081658591599, 30.930644640137974 ], [ 77.792905715326455, 30.919792589356511 ], [ 77.793422479263981, 30.895737210303988 ], [ 77.787221306617965, 30.873774726322548 ], [ 77.773992140824561, 30.874007270319222 ], [ 77.769341261789734, 30.876875311746222 ], [ 77.760349562082567, 30.883903306692211 ], [ 77.751874628111565, 30.883050645071187 ], [ 77.741746046842522, 30.869743964012677 ], [ 77.729136996874885, 30.836386826890529 ], [ 77.705779249812494, 30.791454169474314 ], [ 77.703402133901292, 30.773599962168472 ], [ 77.707019484161819, 30.759414781067271 ], [ 77.734924758370852, 30.73590200527331 ], [ 77.739265578143858, 30.71946889947008 ], [ 77.740195754130667, 30.697687283541253 ], [ 77.744329868328734, 30.685388291936071 ], [ 77.760349562082567, 30.668567613404594 ], [ 77.764690382754878, 30.660841987367792 ], [ 77.770788201714069, 30.635055447550819 ], [ 77.769031203427275, 30.625572822327843 ], [ 77.763346795618062, 30.616451931411454 ], [ 77.745260044315529, 30.605858263048386 ], [ 77.743296339554362, 30.600561427967527 ], [ 77.765827264316769, 30.566170762970327 ], [ 77.773578728775291, 30.557644151256561 ], [ 77.784740838818593, 30.554672756142729 ], [ 77.798486770348092, 30.553690904211855 ], [ 77.808925409080288, 30.551959744346725 ], [ 77.813782992790806, 30.546662909265816 ], [ 77.815023228039507, 30.540229194421777 ], [ 77.815333286401966, 30.5314183618679 ], [ 77.812956171390155, 30.521057237501505 ], [ 77.801794061346783, 30.508370673168027 ], [ 77.79166548007781, 30.507285468449584 ], [ 77.768514438590429, 30.498190415954916 ], [ 77.68862267359745, 30.455195623978845 ], [ 77.664954868172558, 30.445971381174267 ], [ 77.644491000958894, 30.442173162861128 ], [ 77.623303664232694, 30.441113797463739 ], [ 77.597775506834111, 30.437031358310488 ], [ 77.575864698796721, 30.428737291492773 ], [ 77.565322707277048, 30.414862168754034 ], [ 77.567493116713919, 30.406361396361312 ], [ 77.581445753818429, 30.388920600205484 ], [ 77.585063104078969, 30.38292613403382 ], [ 77.583822869729588, 30.382176825200297 ], [ 77.538450961842358, 30.403803412397554 ], [ 77.513336215593796, 30.424939073179637 ], [ 77.497006464376767, 30.424629014817178 ], [ 77.487911410982775, 30.420934150190867 ], [ 77.474682245189442, 30.418376166227052 ], [ 77.461349724809892, 30.41731679903102 ], [ 77.441816033583038, 30.418117783808661 ], [ 77.434374628386351, 30.421218370131658 ], [ 77.433444452399485, 30.425481676438203 ], [ 77.449670851728385, 30.441475531770372 ], [ 77.453908318713886, 30.448710232291369 ], [ 77.45204796674021, 30.454782212828825 ], [ 77.444709914331028, 30.45431712483542 ], [ 77.41215376198646, 30.43561025590855 ], [ 77.396960891431931, 30.430029201786216 ], [ 77.380527784729438, 30.429254055430295 ], [ 77.370605909934724, 30.435713608696052 ], [ 77.365334914174895, 30.442948310116368 ], [ 77.359133742428227, 30.449847113853188 ], [ 77.35055545387101, 30.45315440485188 ], [ 77.303426547696958, 30.460311591007091 ], [ 77.292057732977966, 30.464394029261022 ], [ 77.276244744799087, 30.473980007271496 ], [ 77.241001418180858, 30.489327908356234 ], [ 77.214439732007961, 30.475607815248448 ], [ 77.208135206574454, 30.476951402385279 ], [ 77.204104445163964, 30.482971706978667 ], [ 77.202657505239614, 30.487829290689202 ], [ 77.201313918102798, 30.500154119816777 ], [ 77.147777133707706, 30.538678900810616 ], [ 77.134134555865018, 30.554362697780274 ], [ 77.130103793555165, 30.568677070090693 ], [ 77.139198846049837, 30.583456529495201 ], [ 77.145296665009013, 30.595858872988565 ], [ 77.14819054575706, 30.609759833249704 ], [ 77.14622684099588, 30.637535916249522 ], [ 77.15025760330569, 30.663994248735545 ], [ 77.148397251332014, 30.678954576192719 ], [ 77.140955845236007, 30.693036404506412 ], [ 77.125969680256489, 30.711381537328059 ], [ 77.115117628575646, 30.72210439690036 ], [ 77.086902296903403, 30.738227444341071 ], [ 77.043287388202359, 30.760499985785707 ], [ 77.012694939719637, 30.770499375845468 ], [ 77.001532830575613, 30.777346502738901 ], [ 76.998328892364427, 30.784038600900708 ], [ 76.998742302615128, 30.790188096703268 ], [ 76.994608189316452, 30.802047837837438 ], [ 76.986650018383585, 30.808326523949908 ], [ 76.977244908425718, 30.812899889518281 ], [ 76.964015740833744, 30.815948798098525 ], [ 76.956574334737738, 30.820754705864935 ], [ 76.948926223066721, 30.829462184731991 ], [ 76.943965284770044, 30.840882677193797 ], [ 76.939314405735189, 30.859512030855505 ], [ 76.933940057187826, 30.870364080737708 ], [ 76.923708124030654, 30.882275498715266 ], [ 76.90572472461632, 30.899302882821754 ], [ 76.889705030862416, 30.901705838053935 ], [ 76.876475865069082, 30.900465602805291 ], [ 76.862109815915218, 30.896744899757316 ], [ 76.847020298148195, 30.898682766096773 ], [ 76.837718540078512, 30.903307806709901 ], [ 76.829036899633181, 30.911937771211164 ], [ 76.820458611975283, 30.929404404889329 ], [ 76.816427849665487, 30.932815050474169 ], [ 76.81012332603062, 30.934261990398507 ], [ 76.803095331084634, 30.933047594470899 ], [ 76.796274041713602, 30.930334580876195 ], [ 76.78149458230908, 30.920438544503206 ], [ 76.772399529814422, 30.912867947197974 ], [ 76.768162061929544, 30.907596951438158 ], [ 76.721756626167334, 30.941160794135321 ], [ 76.700259230179299, 30.961883042868116 ], [ 76.6451721539717, 30.999270942300136 ], [ 76.625638461845455, 31.016608384769135 ], [ 76.615303175900792, 31.030147609824319 ], [ 76.610859003340281, 31.041206366180855 ], [ 76.607551711442269, 31.052058416962318 ], [ 76.605691358569274, 31.062264513496466 ], [ 76.605898065043604, 31.072599799441143 ], [ 76.607861769804785, 31.081229763043087 ], [ 76.611582472852817, 31.088929552456865 ], [ 76.623054641258634, 31.107274685278465 ], [ 76.621711053222484, 31.11652476740408 ], [ 76.60248742125745, 31.127247626077057 ], [ 76.599800246084428, 31.134895737748074 ], [ 76.601350538796268, 31.177528795417562 ], [ 76.602797478720603, 31.185667833503707 ], [ 76.606518181768635, 31.192799181237202 ], [ 76.621814406009989, 31.208276271732522 ], [ 76.628428989806011, 31.220084336922575 ], [ 76.623571405196159, 31.226492214244267 ], [ 76.614269647126477, 31.228998521364637 ], [ 76.590085076864781, 31.226595567031776 ], [ 76.582333612406245, 31.227422390231077 ], [ 76.581403436419393, 31.231091417334984 ], [ 76.5869844914411, 31.249798285362537 ], [ 76.584193964379864, 31.259926865732258 ], [ 76.576752557384538, 31.272303371703224 ], [ 76.5718949727747, 31.277574368362359 ], [ 76.567244093739859, 31.280519924155151 ], [ 76.564246861103683, 31.280028997740025 ], [ 76.561146274780683, 31.276721706741334 ], [ 76.554841750246553, 31.265430406388123 ], [ 76.550604283260995, 31.259823512944759 ], [ 76.54647016816368, 31.25667125157695 ], [ 76.542232701178179, 31.255689398746703 ], [ 76.536651646156471, 31.25987518978814 ], [ 76.533757766307801, 31.266799831946678 ], [ 76.531587355072347, 31.278737088345899 ], [ 76.526316359312474, 31.285765082392622 ], [ 76.520528598715813, 31.289175727078138 ], [ 76.506886020873125, 31.291113593417599 ], [ 76.503268670612584, 31.290881049420868 ], [ 76.500994908388279, 31.288865667816303 ], [ 76.499237909202108, 31.286281847229407 ], [ 76.496344029353438, 31.283077908118962 ], [ 76.491693150318596, 31.284524848043297 ], [ 76.483424921023229, 31.290674342946538 ], [ 76.475363397302871, 31.303360908179339 ], [ 76.4693689311312, 31.307985947893137 ], [ 76.463787876109549, 31.307133287171432 ], [ 76.459757114699059, 31.302895820185928 ], [ 76.452832473439841, 31.29821910183005 ], [ 76.447458123993201, 31.297056382745829 ], [ 76.439396600272843, 31.299691881075425 ], [ 76.433505486888677, 31.317804469900342 ], [ 76.412834914099946, 31.355114854067264 ], [ 76.373560826071227, 31.41924530682541 ], [ 76.359918247329219, 31.430304063181943 ], [ 76.356094190594362, 31.42629914019312 ], [ 76.352993605170681, 31.42211334915174 ], [ 76.349582961384485, 31.41986542444976 ], [ 76.345035435137149, 31.418185940528698 ], [ 76.322091099224778, 31.412811591082054 ], [ 76.316923456252468, 31.40170115788208 ], [ 76.322814568737314, 31.364158229718491 ], [ 76.319610629626808, 31.35379710535209 ], [ 76.314339633866922, 31.349921373572489 ], [ 76.301110467174269, 31.351781725546171 ], [ 76.294495884277566, 31.347518419239627 ], [ 76.290878534017097, 31.339250189944259 ], [ 76.287777947694096, 31.324470730539755 ], [ 76.281990187097421, 31.315659897985878 ], [ 76.275375604200732, 31.310440579069443 ], [ 76.26834760925469, 31.309226183141838 ], [ 76.261112908733679, 31.310931505484564 ], [ 76.242819451856164, 31.318140367583844 ], [ 76.231140577875337, 31.317494412437149 ], [ 76.223079055054299, 31.315634060463474 ], [ 76.201064895128738, 31.307004095962203 ], [ 76.179464146353197, 31.318476264368083 ], [ 76.158483514302688, 31.338552557954181 ], [ 76.147011345896857, 31.354417222976441 ], [ 76.141016879725143, 31.369584255109253 ], [ 76.125927361958119, 31.430536607178674 ], [ 76.070530227388062, 31.56417186124235 ], [ 75.94309614507101, 31.771756090071499 ], [ 75.923252394582306, 31.806275947177188 ], [ 75.92159874908296, 31.814285794054108 ], [ 75.922632276957955, 31.824698595263943 ], [ 75.927593215254632, 31.829943753501418 ], [ 75.934931267663828, 31.832889309294156 ], [ 75.942476027446659, 31.833121853290887 ], [ 75.955395134877534, 31.831313178160595 ], [ 75.961906365886009, 31.831571560579039 ], [ 75.968314243207686, 31.835214749261233 ], [ 75.96810753763269, 31.841054185802015 ], [ 75.96428348179721, 31.848753974316416 ], [ 75.927489861567821, 31.907923488777946 ], [ 75.891419711750231, 31.95394135181191 ], [ 75.879740838668724, 31.972389838320332 ], [ 75.861240676216184, 31.98257009553344 ], [ 75.801812779336245, 32.005643621755716 ], [ 75.752926873976008, 32.032360338458822 ], [ 75.706521437314436, 32.049826972137048 ], [ 75.699803500730908, 32.056105658249514 ], [ 75.684300571813864, 32.053082587191618 ], [ 75.662389763776545, 32.06044647892184 ], [ 75.601618279759734, 32.068947252213881 ], [ 75.591799757752568, 32.072099514481003 ], [ 75.580947706971045, 32.076698717571723 ], [ 75.577847120648059, 32.083700873196726 ], [ 75.582187941320385, 32.092253323332152 ], [ 75.639445427864175, 32.146849474024002 ], [ 75.649263950770646, 32.161473903797621 ], [ 75.656188592029864, 32.174651394546167 ], [ 75.661046176639715, 32.188784897904661 ], [ 75.659805943189653, 32.195347804857299 ], [ 75.654018181693672, 32.198009142507878 ], [ 75.647713658058791, 32.197621567980939 ], [ 75.642132603037155, 32.195580348853973 ], [ 75.637895135152334, 32.193358263473037 ], [ 75.632314081029946, 32.191032823505957 ], [ 75.625182733296455, 32.190903632296788 ], [ 75.614640740877434, 32.196768907259234 ], [ 75.608542921918271, 32.209998073951901 ], [ 75.606269158794575, 32.225862738974222 ], [ 75.608439569130766, 32.239918727966874 ], [ 75.613400505628803, 32.250925808379343 ], [ 75.618878207862949, 32.256041775407589 ], [ 75.622908970172801, 32.258522244106238 ], [ 75.692672153896737, 32.272268174736432 ], [ 75.711792433973628, 32.279089464107464 ], [ 75.72760542215245, 32.287926134183742 ], [ 75.742694939919474, 32.299346624846855 ], [ 75.779281853674533, 32.336579495547248 ], [ 75.857519973168152, 32.389961249412117 ], [ 75.905785760004761, 32.413318997373828 ], [ 75.912607049375808, 32.419055081127048 ], [ 75.913847283725133, 32.425411282504676 ], [ 75.911676874288247, 32.431354071832907 ], [ 75.870645786174052, 32.499721991576614 ], [ 75.866304966401046, 32.50486379702658 ], [ 75.856589797181343, 32.514578966246283 ], [ 75.847391391899166, 32.516749376582418 ], [ 75.855039503570183, 32.526283677749511 ], [ 75.867131788701016, 32.547471015375031 ], [ 75.865891555251025, 32.56057099085853 ], [ 75.895553826847589, 32.596847846251073 ], [ 75.912917107738267, 32.610542100937202 ], [ 75.920461866621778, 32.614469509560188 ], [ 75.922632276957955, 32.617337550987138 ], [ 75.92573286328097, 32.630566718579182 ], [ 75.926042921643486, 32.641186225363974 ], [ 75.924699335405975, 32.651960760880392 ], [ 75.904855584917286, 32.691312364174216 ], [ 75.901444940231755, 32.702862046945874 ], [ 75.90340864499295, 32.736374212799653 ], [ 75.913227167000102, 32.755675360929153 ], [ 75.912400343800783, 32.761902371097499 ], [ 75.909299758377117, 32.772702745035637 ], [ 75.903305292205445, 32.78161693037702 ], [ 75.886665479927871, 32.799729519201939 ], [ 75.880877720230544, 32.808850409218955 ], [ 75.876536899558218, 32.817609564929448 ], [ 75.869612258299057, 32.827402249414256 ], [ 75.858553501043204, 32.839546210489168 ], [ 75.824240350411785, 32.870448717334391 ], [ 75.811734654130916, 32.884298000752089 ], [ 75.80491336475994, 32.898612372163193 ], [ 75.8033630720481, 32.911996568486806 ], [ 75.806877068621745, 32.92367544246769 ], [ 75.814628533979587, 32.931788642132112 ], [ 75.826410759848642, 32.938067328244578 ], [ 75.846047804762335, 32.942227280864294 ], [ 75.858553501043204, 32.942149767397829 ], [ 75.869612258299057, 32.940005195483359 ], [ 75.893796827661433, 32.930806790201181 ], [ 75.903098585731101, 32.928920599805785 ], [ 75.911676874288247, 32.925897528747946 ], [ 75.919841749896804, 32.920264796882854 ], [ 75.935964797337462, 32.90323741277637 ], [ 75.943612909008479, 32.898121445748068 ], [ 75.954671665364998, 32.901377060802695 ], [ 75.972448358305016, 32.911040554078276 ], [ 76.051409947311171, 32.969460761504926 ], [ 76.075491163886028, 32.993283596560723 ], [ 76.081692335632724, 33.000802517022514 ], [ 76.100812615709614, 33.013049831784308 ], [ 76.152799107392838, 33.032299303070367 ], [ 76.194657016907783, 33.043280545061059 ], [ 76.215947707320808, 33.051083686363022 ], [ 76.237031691259503, 33.063486029856385 ], [ 76.26173302635803, 33.086456204190419 ], [ 76.270828077953396, 33.103535265140344 ], [ 76.274238722638913, 33.116609402202123 ], [ 76.274755486576382, 33.12678965941523 ], [ 76.281060012009888, 33.136453151791493 ], [ 76.294289177803293, 33.147899481775646 ], [ 76.353303664432516, 33.180093898914258 ], [ 76.396711866659274, 33.197715562223372 ], [ 76.512157016632941, 33.217223415927883 ], [ 76.54243940585387, 33.232855536054096 ], [ 76.558562453294527, 33.231460272973202 ], [ 76.611892531215275, 33.193917344809613 ], [ 76.625948521107304, 33.189292304196435 ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Haryana", "admin": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 76.862109815915218, 30.896744899757316 ], [ 76.876475865069082, 30.900465602805291 ], [ 76.889705030862416, 30.901705838053935 ], [ 76.90572472461632, 30.899302882821754 ], [ 76.923708124030654, 30.882275498715266 ], [ 76.933940057187826, 30.870364080737708 ], [ 76.939314405735189, 30.859512030855505 ], [ 76.943965284770044, 30.840882677193797 ], [ 76.948926223066721, 30.829462184731991 ], [ 76.956574334737738, 30.820754705864935 ], [ 76.964015740833744, 30.815948798098525 ], [ 76.977244908425718, 30.812899889518281 ], [ 76.986650018383585, 30.808326523949908 ], [ 76.994608189316452, 30.802047837837438 ], [ 76.998742302615128, 30.790188096703268 ], [ 76.998328892364427, 30.784038600900708 ], [ 77.001532830575613, 30.777346502738901 ], [ 77.012694939719637, 30.770499375845468 ], [ 77.043287388202359, 30.760499985785707 ], [ 77.086902296903403, 30.738227444341071 ], [ 77.115117628575646, 30.72210439690036 ], [ 77.125969680256489, 30.711381537328059 ], [ 77.140955845236007, 30.693036404506412 ], [ 77.148397251332014, 30.678954576192719 ], [ 77.15025760330569, 30.663994248735545 ], [ 77.14622684099588, 30.637535916249522 ], [ 77.14819054575706, 30.609759833249704 ], [ 77.145296665009013, 30.595858872988565 ], [ 77.139198846049837, 30.583456529495201 ], [ 77.130103793555165, 30.568677070090693 ], [ 77.134134555865018, 30.554362697780274 ], [ 77.147777133707706, 30.538678900810616 ], [ 77.201313918102798, 30.500154119816777 ], [ 77.202657505239614, 30.487829290689202 ], [ 77.204104445163964, 30.482971706978667 ], [ 77.208135206574454, 30.476951402385279 ], [ 77.214439732007961, 30.475607815248448 ], [ 77.241001418180858, 30.489327908356234 ], [ 77.276244744799087, 30.473980007271496 ], [ 77.292057732977966, 30.464394029261022 ], [ 77.303426547696958, 30.460311591007091 ], [ 77.35055545387101, 30.45315440485188 ], [ 77.359133742428227, 30.449847113853188 ], [ 77.365334914174895, 30.442948310116368 ], [ 77.370605909934724, 30.435713608696052 ], [ 77.380527784729438, 30.429254055430295 ], [ 77.396960891431931, 30.430029201786216 ], [ 77.41215376198646, 30.43561025590855 ], [ 77.444709914331028, 30.45431712483542 ], [ 77.45204796674021, 30.454782212828825 ], [ 77.453908318713886, 30.448710232291369 ], [ 77.449670851728385, 30.441475531770372 ], [ 77.433444452399485, 30.425481676438203 ], [ 77.434374628386351, 30.421218370131658 ], [ 77.441816033583038, 30.418117783808661 ], [ 77.461349724809892, 30.41731679903102 ], [ 77.474682245189442, 30.418376166227052 ], [ 77.487911410982775, 30.420934150190867 ], [ 77.497006464376767, 30.424629014817178 ], [ 77.513336215593796, 30.424939073179637 ], [ 77.538450961842358, 30.403803412397554 ], [ 77.583822869729588, 30.382176825200297 ], [ 77.585063104078969, 30.38292613403382 ], [ 77.586406691215785, 30.380704046854241 ], [ 77.58795698392764, 30.370446275275349 ], [ 77.585063104078969, 30.325203559496618 ], [ 77.570076939099394, 30.278229682054182 ], [ 77.55137007017251, 30.261383165100987 ], [ 77.509408806970825, 30.232366847751788 ], [ 77.444296503181008, 30.1737140981271 ], [ 77.414324172322637, 30.152449246135795 ], [ 77.405745883765448, 30.141597195354272 ], [ 77.403265415066798, 30.11283926042352 ], [ 77.370089145997255, 30.096431993042014 ], [ 77.338979933577022, 30.069663601294156 ], [ 77.323270298185648, 30.06436676711257 ], [ 77.320273064650152, 30.060103460806026 ], [ 77.319136183987638, 30.054470729840308 ], [ 77.317895948739007, 30.040414740847602 ], [ 77.315208775364667, 30.039458727338392 ], [ 77.31086795379295, 30.040414740847602 ], [ 77.305286899670634, 30.038089300880518 ], [ 77.301049431785813, 30.037004096162086 ], [ 77.289267205916744, 30.038761095348256 ], [ 77.284719679669394, 30.038089300880518 ], [ 77.280068800634567, 30.032895820385754 ], [ 77.279138624647757, 30.027082221367372 ], [ 77.279138624647757, 30.021656195976611 ], [ 77.277278272674081, 30.017599596144404 ], [ 77.240071242194048, 29.983467311767008 ], [ 77.229942660925005, 29.976646023295299 ], [ 77.220950962117158, 29.960729682328971 ], [ 77.209685500185614, 29.928845323552817 ], [ 77.180436638839737, 29.804253445140372 ], [ 77.161833123599749, 29.771206366380671 ], [ 77.156148715790536, 29.76906179536552 ], [ 77.148500604119519, 29.76996613203135 ], [ 77.140542434086043, 29.769733588034619 ], [ 77.133927850290021, 29.764359239487298 ], [ 77.132274203891356, 29.75583262777354 ], [ 77.135064731851841, 29.747564399377485 ], [ 77.139302198837342, 29.739942125228868 ], [ 77.141369257285348, 29.733327542332169 ], [ 77.137545200550491, 29.722785549013839 ], [ 77.128140089693346, 29.71423309977768 ], [ 77.106642693705325, 29.702295844277774 ], [ 77.113877395125627, 29.682219549792354 ], [ 77.087832472890256, 29.658500068423383 ], [ 77.093620232587611, 29.640852565793235 ], [ 77.085868768129089, 29.624006048840041 ], [ 77.08896935355277, 29.611526190980889 ], [ 77.095893995711307, 29.600777492986875 ], [ 77.099821405233612, 29.58902110374094 ], [ 77.093310174225095, 29.581140448972512 ], [ 77.079047478758113, 29.576334540306782 ], [ 77.064681431402889, 29.569513250935753 ], [ 77.058170201293692, 29.555483100364764 ], [ 77.060443964417388, 29.548532619784559 ], [ 77.070262486424525, 29.536388657810271 ], [ 77.072432895861411, 29.527887885417549 ], [ 77.070882603149556, 29.511118882830139 ], [ 77.068712192813365, 29.502979844743994 ], [ 77.065611607389698, 29.503677476734136 ], [ 77.077497186046273, 29.49223114674998 ], [ 77.10519575378099, 29.495409247438769 ], [ 77.120285272447333, 29.483782050301379 ], [ 77.10736616411711, 29.469235133994225 ], [ 77.072742954223926, 29.440089627234492 ], [ 77.065611607389698, 29.424845078937206 ], [ 77.076980422108747, 29.42391490295039 ], [ 77.102715285082283, 29.426937974907609 ], [ 77.13062055929133, 29.426395372548363 ], [ 77.14819054575706, 29.41492320414255 ], [ 77.149844191256349, 29.403373521370888 ], [ 77.145400017796504, 29.395518704124861 ], [ 77.138785434899873, 29.388671576332165 ], [ 77.133927850290021, 29.380170803040123 ], [ 77.132894322415027, 29.37221263300659 ], [ 77.133927850290021, 29.342602037354133 ], [ 77.137958611700512, 29.333532823281125 ], [ 77.145606724270849, 29.323843492483142 ], [ 77.15005089683136, 29.313327338485859 ], [ 77.144779901071544, 29.301648464505028 ], [ 77.134031203077527, 29.289271959433329 ], [ 77.130723911179516, 29.280590318088674 ], [ 77.141369257285348, 29.130341091068477 ], [ 77.140232374824208, 29.124165757743523 ], [ 77.137648553337996, 29.120987657054677 ], [ 77.135064731851841, 29.118998114771152 ], [ 77.133927850290021, 29.116362616441556 ], [ 77.135788202263683, 29.108456122352145 ], [ 77.140129022036689, 29.104735419304109 ], [ 77.144986606646555, 29.102642524233083 ], [ 77.14819054575706, 29.099619452275864 ], [ 77.16937788338258, 29.036470852347911 ], [ 77.195732863081091, 28.997584337047492 ], [ 77.189841749696924, 28.988205063712705 ], [ 77.177646111778571, 28.980608628885076 ], [ 77.175475702341743, 28.963064479941739 ], [ 77.202244094089608, 28.942471422418176 ], [ 77.209685500185614, 28.935133368210352 ], [ 77.216920200706667, 28.923635362282134 ], [ 77.220744257441467, 28.914385281055839 ], [ 77.219917434242163, 28.90603953739468 ], [ 77.21309614487113, 28.89728038258357 ], [ 77.200797154165272, 28.876790676048806 ], [ 77.155218539803727, 28.861649482337718 ], [ 77.149017368057045, 28.861933702278517 ], [ 77.135788202263683, 28.865602729382424 ], [ 77.122869093933488, 28.870744533933074 ], [ 77.076980422108747, 28.882009995864617 ], [ 77.0679887233009, 28.882087511129722 ], [ 77.059720493106212, 28.873767604990967 ], [ 77.054449497346397, 28.866610418835755 ], [ 77.036156039569548, 28.853277900254842 ], [ 77.003599888124299, 28.854440619339069 ], [ 76.978588494663242, 28.847154241974685 ], [ 76.954403924401547, 28.835475368893125 ], [ 76.943551873620009, 28.826276964510264 ], [ 76.936523878674038, 28.814649767372821 ], [ 76.934973585962183, 28.804547024525554 ], [ 76.934043409975331, 28.79188629771442 ], [ 76.937764113023363, 28.740313218979843 ], [ 76.936420525886533, 28.725094509104274 ], [ 76.938074172285198, 28.718815822991807 ], [ 76.944482048707513, 28.707757065735958 ], [ 76.947272576668055, 28.696155707020235 ], [ 76.939624464997038, 28.684838569144624 ], [ 76.922261184106318, 28.670860094517703 ], [ 76.918540480158953, 28.662488512434884 ], [ 76.915956658672812, 28.642153836430388 ], [ 76.910375603651161, 28.636779486983691 ], [ 76.901487257630762, 28.634712429435062 ], [ 76.883297154440058, 28.632206122314692 ], [ 76.87234174997171, 28.628149522482428 ], [ 76.867380811675091, 28.622852688300888 ], [ 76.857768996142212, 28.605541083354289 ], [ 76.836891716879208, 28.587221788055039 ], [ 76.833687778668008, 28.578927721237328 ], [ 76.835031365804852, 28.571176255879486 ], [ 76.842782831162694, 28.562804673796613 ], [ 76.857768996142212, 28.55060903587826 ], [ 76.863350051163863, 28.544898790546707 ], [ 76.867484165361901, 28.538826809109928 ], [ 76.869551222910545, 28.533323269353382 ], [ 76.870274693322401, 28.528569037531035 ], [ 76.872651809233545, 28.519422309092242 ], [ 76.90727501822748, 28.528103949537631 ], [ 76.962672153696914, 28.532005519738895 ], [ 76.977554965888928, 28.534589342124427 ], [ 76.98499637198492, 28.537689928447428 ], [ 76.985306431246769, 28.549575507103945 ], [ 76.991197543731616, 28.557972926709162 ], [ 76.997502069165108, 28.559600734686111 ], [ 77.003393181649969, 28.558903102696028 ], [ 77.070882603149556, 28.528569037531035 ], [ 77.075740186860102, 28.523918158496198 ], [ 77.079150832444924, 28.517716986749512 ], [ 77.08938276560211, 28.48970835975296 ], [ 77.093413527012601, 28.482887071281308 ], [ 77.100544874746149, 28.475600693916867 ], [ 77.113567335863806, 28.467177435889933 ], [ 77.137028435713702, 28.455421047543261 ], [ 77.152428012742561, 28.44599009916373 ], [ 77.193562452744956, 28.43260590284012 ], [ 77.225188430001978, 28.437618517080857 ], [ 77.234800246434176, 28.442837835997288 ], [ 77.239864535719718, 28.44754039187557 ], [ 77.240484654243332, 28.452630520482096 ], [ 77.237900831857857, 28.458547472287986 ], [ 77.232629836097985, 28.465342922337975 ], [ 77.225808546727009, 28.470768947728736 ], [ 77.222707961303328, 28.477383531524758 ], [ 77.226221957877016, 28.48435985052668 ], [ 77.241311477442679, 28.497459825110806 ], [ 77.257641228659708, 28.50593475998118 ], [ 77.26973351379057, 28.510275579754186 ], [ 77.32740441328302, 28.519706529033037 ], [ 77.335155877741542, 28.507872626320641 ], [ 77.343527459824344, 28.498286648310163 ], [ 77.352829216994706, 28.491852932566751 ], [ 77.363267856626223, 28.48947581575629 ], [ 77.376910435368231, 28.484127306529949 ], [ 77.378564080867577, 28.472396754806361 ], [ 77.375980259381421, 28.460692044202453 ], [ 77.377220492831427, 28.455343533177476 ], [ 77.385075310976774, 28.457617296301173 ], [ 77.402335239979308, 28.467332465520823 ], [ 77.407606235739124, 28.468986111020165 ], [ 77.415461052985137, 28.464955348710355 ], [ 77.417114699383816, 28.459761868215644 ], [ 77.417424757746332, 28.453948269197266 ], [ 77.424556104580503, 28.441907660010482 ], [ 77.425176223104174, 28.435628973898012 ], [ 77.42817345574035, 28.430668036500656 ], [ 77.438715448159357, 28.42865265579541 ], [ 77.456698845775037, 28.434595445123641 ], [ 77.465793898269723, 28.434285386761182 ], [ 77.469721306892765, 28.424931951848059 ], [ 77.468171014180925, 28.396690781754153 ], [ 77.475715773064437, 28.391316433206775 ], [ 77.497006464376767, 28.393254299546236 ], [ 77.47209842280391, 28.340440986462333 ], [ 77.466517367782259, 28.315222887426266 ], [ 77.487911410982775, 28.298996487198103 ], [ 77.489461703694616, 28.286361598808689 ], [ 77.488841586969585, 28.272538153812711 ], [ 77.49080529173078, 28.263546454105544 ], [ 77.503621047273469, 28.256725164734512 ], [ 77.528942499096999, 28.253469550579261 ], [ 77.538657668316702, 28.24305674936948 ], [ 77.532559849357526, 28.241170558974087 ], [ 77.528322382372025, 28.237837429553728 ], [ 77.525841912773984, 28.232773139368867 ], [ 77.525015089574694, 28.225693468478759 ], [ 77.520674269801688, 28.217218532709119 ], [ 77.511165806156995, 28.213471991239366 ], [ 77.501657341612983, 28.21161164016501 ], [ 77.497006464376767, 28.208924464992034 ], [ 77.501553989724798, 28.196677151129613 ], [ 77.528632439835164, 28.192930610559181 ], [ 77.538657668316702, 28.180993354159959 ], [ 77.507238396634634, 28.170244656165945 ], [ 77.494939405928775, 28.15184784650091 ], [ 77.495766229128137, 28.125983792318145 ], [ 77.503827752848494, 28.092859199192667 ], [ 77.469721306892765, 28.112728787203757 ], [ 77.470651482879575, 28.099370429301864 ], [ 77.476439242576916, 28.071490994413857 ], [ 77.46806766139342, 28.046815496837663 ], [ 77.479746535374247, 28.036454373370582 ], [ 77.495766229128137, 28.028315335284496 ], [ 77.503827752848494, 28.020227973142418 ], [ 77.512302686819481, 27.999609076297808 ], [ 77.526462030398335, 27.974468492526903 ], [ 77.529252556560181, 27.952506008545406 ], [ 77.5081685726215, 27.943281764841565 ], [ 77.493802525266261, 27.92581513116334 ], [ 77.488841586969585, 27.920027371465999 ], [ 77.479849888161752, 27.898039049062842 ], [ 77.469928013367081, 27.888065497424741 ], [ 77.459179315373078, 27.88499075042278 ], [ 77.446776970980395, 27.889434922983291 ], [ 77.435614861836342, 27.892251288466177 ], [ 77.424452752692318, 27.890752671698401 ], [ 77.397581008156962, 27.86452688230974 ], [ 77.390242953949141, 27.860676988052539 ], [ 77.353035922569731, 27.853778185215045 ], [ 77.341667107850682, 27.845742499017085 ], [ 77.333502232242196, 27.841711738505914 ], [ 77.326370883609329, 27.839773871267134 ], [ 77.320893182274503, 27.839386298538834 ], [ 77.313348423390991, 27.836079005741507 ], [ 77.306837193281794, 27.832099921174397 ], [ 77.280688918258917, 27.809439806102144 ], [ 77.25278364494919, 27.814116523558702 ], [ 77.238004184645348, 27.796520697771932 ], [ 77.233663364872342, 27.793290921139082 ], [ 77.229942660925005, 27.792722480358172 ], [ 77.223431430815808, 27.796003932935143 ], [ 77.218057082268487, 27.80287689914956 ], [ 77.211649204047475, 27.812617905891607 ], [ 77.205654737875804, 27.817501328923179 ], [ 77.199246860554112, 27.816183580208016 ], [ 77.193355747169932, 27.802773546362054 ], [ 77.188084751410074, 27.798251858536439 ], [ 77.177542758991052, 27.799182034523248 ], [ 77.172891879956225, 27.805254015060704 ], [ 77.16917117690825, 27.813005479519227 ], [ 77.1646236506609, 27.817423814557394 ], [ 77.158009067764198, 27.816958727463255 ], [ 77.142919549097869, 27.799879666513384 ], [ 77.133824496603197, 27.794195257804851 ], [ 77.117184686124332, 27.793135891508136 ], [ 77.098994582034308, 27.797450872859482 ], [ 77.065921664852894, 27.810137437192957 ], [ 77.052485792585202, 27.811325994698898 ], [ 77.040806918604389, 27.80729523418767 ], [ 77.031815219796485, 27.79181814189371 ], [ 77.032021926270815, 27.781353664739804 ], [ 77.037913038755661, 27.773576361859565 ], [ 77.068298780764081, 27.760708930372793 ], [ 77.076050246121937, 27.754042669733387 ], [ 77.077807245308051, 27.746162014065696 ], [ 77.071709426348875, 27.741123562302555 ], [ 77.020032993028153, 27.736188463326918 ], [ 77.005873651247938, 27.730064805946025 ], [ 76.993678013329585, 27.716861476775698 ], [ 76.981275668936902, 27.689137071518637 ], [ 76.973007439641577, 27.679292711089708 ], [ 76.940554640983848, 27.68032623986408 ], [ 76.910478957337972, 27.67040436506937 ], [ 76.899730259343968, 27.675520331198292 ], [ 76.895699497034087, 27.678595079099573 ], [ 76.891358677261081, 27.683814398915324 ], [ 76.890118442911771, 27.689679673877826 ], [ 76.893735793172297, 27.696320095196192 ], [ 76.898076612945303, 27.699498195885035 ], [ 76.917196893022137, 27.705079250906685 ], [ 76.919367303358328, 27.707559718706019 ], [ 76.918850539420802, 27.711745509747452 ], [ 76.913889602023445, 27.718075872703359 ], [ 76.908928663726812, 27.722571723006574 ], [ 76.904587843953763, 27.727971909975615 ], [ 76.900867140905788, 27.734379788196627 ], [ 76.900867140905788, 27.74409495741633 ], [ 76.915439894735286, 27.815253404221203 ], [ 76.919160597783304, 27.822824002425758 ], [ 76.937350701873342, 27.846569322216446 ], [ 76.940554640983848, 27.852098700394659 ], [ 76.942311639270699, 27.857757269782148 ], [ 76.943551873620009, 27.865224514299875 ], [ 76.939831170571992, 27.900545356183208 ], [ 76.942931756894978, 27.915350654009437 ], [ 76.942725051320039, 27.923489692095579 ], [ 76.940554640983848, 27.933308214102787 ], [ 76.934560173912857, 27.949095363859946 ], [ 76.933733351612801, 27.959611517857233 ], [ 76.934353469237152, 27.967931423096665 ], [ 76.936213820311522, 27.974416816582782 ], [ 76.937350701873342, 27.980669664273584 ], [ 76.936110466624697, 27.988860379203111 ], [ 76.933113233988522, 27.998498033157652 ], [ 76.92505171116747, 28.01611969736609 ], [ 76.920917596070169, 28.033534654200931 ], [ 76.920400832132643, 28.051569729559326 ], [ 76.923501417556309, 28.067899482575051 ], [ 76.940554640983848, 28.12298655878265 ], [ 76.941484816071338, 28.135337226331892 ], [ 76.939624464997038, 28.14631846832264 ], [ 76.934560173912857, 28.156989651051553 ], [ 76.925258416742494, 28.16636892348702 ], [ 76.886914503801265, 28.194015815277616 ], [ 76.878026157780923, 28.202878322876295 ], [ 76.868000930198704, 28.217993679065039 ], [ 76.863970167888894, 28.222722073364984 ], [ 76.856632114580378, 28.22897492105573 ], [ 76.849707473321175, 28.232282212953741 ], [ 76.842679478375189, 28.233935859352407 ], [ 76.833377720305506, 28.233393256093841 ], [ 76.825109491010139, 28.23088694897347 ], [ 76.803922154283939, 28.219053046261074 ], [ 76.796274041713602, 28.21161164016501 ], [ 76.789556105130075, 28.202568264513779 ], [ 76.783044875020934, 28.186651923547394 ], [ 76.758136835246702, 28.159728502168598 ], [ 76.736536085571842, 28.14781708419104 ], [ 76.729508090625856, 28.141900133284473 ], [ 76.710801222598306, 28.12892934811088 ], [ 76.700052524604288, 28.124304308397079 ], [ 76.693541293595771, 28.120351060453054 ], [ 76.683206007651094, 28.110144964818225 ], [ 76.674937779255046, 28.103866278705759 ], [ 76.659744907801198, 28.096347358243968 ], [ 76.651993443342676, 28.090301215228855 ], [ 76.646825798571726, 28.085521144984845 ], [ 76.644241977984819, 28.079888414019074 ], [ 76.642795038060498, 28.073816433481618 ], [ 76.642381626011158, 28.067796128888226 ], [ 76.644035272409823, 28.059734605167868 ], [ 76.64765262177103, 28.050381171154122 ], [ 76.657987908615027, 28.02911631916276 ], [ 76.659434849438668, 28.021287340338453 ], [ 76.657987908615027, 28.016972358087848 ], [ 76.649512973744706, 28.013561713402332 ], [ 76.636490512626992, 28.011081243804306 ], [ 76.614683059175817, 28.0090917024201 ], [ 76.603520949132445, 28.006042792041221 ], [ 76.590498488014745, 28.001004340278079 ], [ 76.587294548904239, 27.998937282729393 ], [ 76.583263788393054, 27.99513906531558 ], [ 76.567244093739859, 27.97643219728803 ], [ 76.55949262928138, 27.97129039183806 ], [ 76.553084751060382, 27.971238714994676 ], [ 76.543679641102514, 27.978835150721629 ], [ 76.539028762067673, 27.985320543308426 ], [ 76.535411410907813, 27.993149522132732 ], [ 76.525799595375005, 28.029788112731175 ], [ 76.521768833065124, 28.038314724444938 ], [ 76.516497837305309, 28.042112941858754 ], [ 76.510089959983631, 28.043120632211405 ], [ 76.496757439604082, 28.042474677064657 ], [ 76.486835564809425, 28.043559881783089 ], [ 76.449938591792531, 28.059269518073783 ], [ 76.445597772019525, 28.064695543464545 ], [ 76.44683800726817, 28.070328274430317 ], [ 76.452729119753016, 28.074281521475026 ], [ 76.471849399829892, 28.079655870022343 ], [ 76.475983514027902, 28.082058824355208 ], [ 76.476500278864748, 28.084745999528248 ], [ 76.473399693441053, 28.088208320157825 ], [ 76.469678990393035, 28.091412258369012 ], [ 76.446527948006334, 28.10409882270249 ], [ 76.441670363396469, 28.110455024080061 ], [ 76.440016716997818, 28.117069606976763 ], [ 76.441567009709658, 28.122108058739904 ], [ 76.445597772019525, 28.123425808354334 ], [ 76.451902296553712, 28.122573146733313 ], [ 76.463477817747034, 28.118542385322819 ], [ 76.471952752617412, 28.116371974986627 ], [ 76.479704217075934, 28.115829373526758 ], [ 76.483011508973888, 28.117379666238598 ], [ 76.482494745036419, 28.122108058739904 ], [ 76.478774041988373, 28.128851833745095 ], [ 76.453452590164872, 28.162829088491598 ], [ 76.444770948820164, 28.167738349045571 ], [ 76.432368605326801, 28.168151760195535 ], [ 76.414385206811787, 28.163294176485003 ], [ 76.367979771049519, 28.156369534326522 ], [ 76.362708775289704, 28.157764797407477 ], [ 76.357437778630512, 28.161278794880438 ], [ 76.353303664432516, 28.165826321127774 ], [ 76.349996371635186, 28.171381536828441 ], [ 76.34720584457402, 28.178047797467848 ], [ 76.343485142425308, 28.184145616427028 ], [ 76.338627556916194, 28.18905487698094 ], [ 76.332323033281327, 28.192594712875682 ], [ 76.320230747251159, 28.196134547871047 ], [ 76.308758578845286, 28.200966294958498 ], [ 76.302557407997924, 28.199235134194051 ], [ 76.297286411338789, 28.192413844823072 ], [ 76.299456821674923, 28.176445827912623 ], [ 76.305761346209096, 28.16691152584621 ], [ 76.314029576403797, 28.159883530900224 ], [ 76.33139285729446, 28.151382758507449 ], [ 76.337594029041142, 28.146499335475934 ], [ 76.340694615364143, 28.139729722948339 ], [ 76.338627556916194, 28.132650051158915 ], [ 76.333976677881353, 28.12877431937931 ], [ 76.315683221003809, 28.12528616032801 ], [ 76.309171990894626, 28.122728176364198 ], [ 76.30441775907228, 28.117638047757673 ], [ 76.306691522195905, 28.108413804953095 ], [ 76.312789341155096, 28.103246161081465 ], [ 76.327982211709681, 28.097794298168303 ], [ 76.336663853054333, 28.093479315917698 ], [ 76.34379520078781, 28.085882880190745 ], [ 76.34648237506147, 28.075831814186863 ], [ 76.34317508316353, 28.063532823481008 ], [ 76.332943150006301, 28.051802273556056 ], [ 76.318060336914968, 28.04877920249816 ], [ 76.304727818334101, 28.04877920249816 ], [ 76.266693963755387, 28.077485459686208 ], [ 76.253774855425192, 28.080198473280909 ], [ 76.24716027162917, 28.079810898753973 ], [ 76.241889275869354, 28.077485459686208 ], [ 76.231967401074641, 28.071103420786237 ], [ 76.224939406128655, 28.069036363237551 ], [ 76.216051060108299, 28.06820954003819 ], [ 76.208196241962966, 28.069088040080938 ], [ 76.186802198762436, 28.074462389527632 ], [ 76.181014439065024, 28.074126491844076 ], [ 76.175226677569057, 28.072834581550687 ], [ 76.169852329021722, 28.070018215168481 ], [ 76.166545038023045, 28.065083116192845 ], [ 76.163341098912539, 28.057900092515236 ], [ 76.159620395864508, 28.044283352194949 ], [ 76.157553339215198, 28.033431301413422 ], [ 76.157760043890889, 28.019659532361509 ], [ 76.165821567611175, 27.991521715055107 ], [ 76.1790507343039, 27.957621975573709 ], [ 76.181014439065024, 27.943462632894175 ], [ 76.179670851928208, 27.922869574471285 ], [ 76.180084263078214, 27.909562893412776 ], [ 76.18587202277557, 27.898349107425354 ], [ 76.198274367168253, 27.89015839339509 ], [ 76.201374952591934, 27.885610867147754 ], [ 76.203958774977409, 27.878091945786643 ], [ 76.205405714901801, 27.864371853578174 ], [ 76.207989536387956, 27.854475816305857 ], [ 76.211296828285967, 27.84721527826246 ], [ 76.215017531333942, 27.841505032031584 ], [ 76.213157180259586, 27.834606228294767 ], [ 76.209126417949776, 27.827397366195495 ], [ 76.1790507343039, 27.80765696939357 ], [ 76.143187290061334, 27.831014716455961 ], [ 76.120346306936469, 27.851866157297302 ], [ 76.092234328051731, 27.854269110730847 ], [ 75.99994021956546, 27.842745266380909 ], [ 75.987537876072082, 27.847887070931559 ], [ 75.980199822763524, 27.856051948338738 ], [ 75.975445590941248, 27.870573025324852 ], [ 75.973895298229394, 27.880184840857673 ], [ 75.973275180605043, 27.88858226226159 ], [ 75.969037713619556, 27.894628404377322 ], [ 75.96335330581033, 27.900622870548993 ], [ 75.931520623877631, 27.918089505126538 ], [ 75.926352980006001, 27.937597357931672 ], [ 75.931934035027638, 27.953462022054673 ], [ 75.935654738075627, 27.955709946756592 ], [ 75.958702426775503, 27.952376817336237 ], [ 75.968004184845185, 27.954598904515812 ], [ 75.973068475030047, 27.957854519570382 ], [ 75.976479119715563, 27.962892971333524 ], [ 75.986090936147761, 27.970618598269645 ], [ 75.987331171396406, 27.977724107581473 ], [ 75.981956821949709, 27.988033556003806 ], [ 75.975755650203027, 27.993459581394568 ], [ 75.966143832871566, 27.999764105928698 ], [ 75.966247185659071, 28.001314399539861 ], [ 75.967487420907716, 28.00387238170503 ], [ 75.971828240680722, 28.010383612713547 ], [ 75.976685826189893, 28.014155991705643 ], [ 75.982886997037255, 28.020150457877314 ], [ 75.986090936147761, 28.027307644032526 ], [ 75.988881464108246, 28.042423001120589 ], [ 75.992808871831897, 28.0506912304159 ], [ 76.011619094445606, 28.065780748182984 ], [ 76.026605259425125, 28.083014837864475 ], [ 76.030842727309945, 28.092239081568316 ], [ 76.030015904110641, 28.102135117941309 ], [ 76.022574497115315, 28.108568834584041 ], [ 76.015029738231803, 28.110377508814956 ], [ 76.007898391397561, 28.108362128109711 ], [ 76.002213982689099, 28.105158188999205 ], [ 75.998803338902903, 28.101928412366298 ], [ 75.990121697558237, 28.091024684741392 ], [ 75.98547081942273, 28.08691640896506 ], [ 75.979269646776714, 28.084952704203936 ], [ 75.973585239866892, 28.086528836236763 ], [ 75.948573846405836, 28.103091132349839 ], [ 75.942992792283505, 28.110144964818225 ], [ 75.941442498672345, 28.117715562123458 ], [ 75.946093377707172, 28.128050848967455 ], [ 75.952501255028821, 28.133786932720731 ], [ 75.961906365886009, 28.139497178951608 ], [ 75.973068475030047, 28.144148057986449 ], [ 75.994669223805587, 28.150969347357481 ], [ 76.00097374923908, 28.154612535140352 ], [ 76.008621860910097, 28.161046250883764 ], [ 76.019473910792314, 28.178047797467848 ], [ 76.025881789013326, 28.185101629936234 ], [ 76.032496371909957, 28.187814643530935 ], [ 76.039317661281004, 28.185411689198069 ], [ 76.054407179947347, 28.169133613025785 ], [ 76.06370893711771, 28.162053941236358 ], [ 76.073940871174202, 28.158565782185057 ], [ 76.080658806858409, 28.163604233948199 ], [ 76.081382277270208, 28.174585475938951 ], [ 76.070840284851201, 28.195669460776962 ], [ 76.063605585229524, 28.205643012415063 ], [ 76.052856887235507, 28.215642402474877 ], [ 76.04789594893883, 28.221404323750498 ], [ 76.039317661281004, 28.241894029385939 ], [ 76.026191848275104, 28.262228705390438 ], [ 75.957772250788693, 28.343464057520229 ], [ 75.911780227075766, 28.38470185031013 ], [ 75.887078891977225, 28.403847967909364 ], [ 75.873643019709533, 28.4080079214284 ], [ 75.858863560305039, 28.410927638799471 ], [ 75.834058872418993, 28.419402574569112 ], [ 75.818245884240113, 28.430823066131545 ], [ 75.806463658371101, 28.432915961202632 ], [ 75.799642368100734, 28.432915961202632 ], [ 75.791374138805438, 28.429143582210536 ], [ 75.781865676060065, 28.42826508216779 ], [ 75.772873977252218, 28.432528388474331 ], [ 75.768739862154845, 28.445395819961099 ], [ 75.771013625278542, 28.455498561909103 ], [ 75.774424269964058, 28.463094998535318 ], [ 75.773080681927894, 28.469761257376085 ], [ 75.7632621599207, 28.478623765874083 ], [ 75.743625115906326, 28.48761546558125 ], [ 75.698563267280903, 28.520559189754799 ], [ 75.672518345045532, 28.555182400547316 ], [ 75.661356235901494, 28.564277452142672 ], [ 75.656498651291699, 28.567300523200565 ], [ 75.649263950770646, 28.575129502924192 ], [ 75.624149203622821, 28.607608140902975 ], [ 75.610299921104428, 28.621224880323943 ], [ 75.593556756039433, 28.642670600367914 ], [ 75.580017530984193, 28.668302110553945 ], [ 75.550045201025156, 28.754110826453481 ], [ 75.530098097748962, 28.79245473939471 ], [ 75.52637739470093, 28.804443670838733 ], [ 75.528031040200261, 28.820230821495208 ], [ 75.525240513139096, 28.834467678540527 ], [ 75.507153761836591, 28.860874335082478 ], [ 75.50136600123993, 28.877953396032403 ], [ 75.492787713582047, 28.907124742113123 ], [ 75.485966424211071, 28.92683930139264 ], [ 75.487206658560396, 28.932962957874164 ], [ 75.489377068896587, 28.939448351360276 ], [ 75.494854771130719, 28.943815009555006 ], [ 75.507773878561622, 28.951256414751686 ], [ 75.516248814331263, 28.957509264241132 ], [ 75.52089969336609, 28.966475125526578 ], [ 75.521519810091135, 28.977792263402183 ], [ 75.518729283029913, 28.988825182236319 ], [ 75.515008579082604, 28.996473293907336 ], [ 75.510357700947097, 29.000452379373765 ], [ 75.503226353213606, 29.003837184738241 ], [ 75.460748326074324, 29.017763984320421 ], [ 75.452066684729672, 29.023861803279594 ], [ 75.423954705844935, 29.063652656145159 ], [ 75.406591424054952, 29.083057156162791 ], [ 75.398219841972079, 29.095046088506127 ], [ 75.392948846212263, 29.105975654552811 ], [ 75.392018671124717, 29.115096544569834 ], [ 75.392432082274738, 29.123674832227714 ], [ 75.394602491711538, 29.130806179061882 ], [ 75.393568963836543, 29.136309718818435 ], [ 75.390261671938532, 29.142975979457837 ], [ 75.381373325918204, 29.153569647820966 ], [ 75.377859328445183, 29.162664700315641 ], [ 75.376309034834023, 29.170131943934045 ], [ 75.377652621970853, 29.17630727815833 ], [ 75.380753208293854, 29.180467230778046 ], [ 75.386954380040535, 29.183490301835935 ], [ 75.401630486657595, 29.185893256168804 ], [ 75.405661248967405, 29.18759857851159 ], [ 75.408245069554226, 29.19049245925958 ], [ 75.409692010377952, 29.195505073500325 ], [ 75.410002068740411, 29.201292833197662 ], [ 75.409175246440427, 29.207494004944348 ], [ 75.407004836104235, 29.213514309537736 ], [ 75.394499138924047, 29.233874823963948 ], [ 75.391501906287871, 29.252685044778953 ], [ 75.388091261602412, 29.25764598217631 ], [ 75.381063266656355, 29.258472805375668 ], [ 75.36432010339, 29.252039088732936 ], [ 75.355535109257829, 29.245657049832964 ], [ 75.349023879148646, 29.239197496567208 ], [ 75.343442824126996, 29.234960029581654 ], [ 75.338171828367123, 29.234546617532366 ], [ 75.329283482346781, 29.239843450814583 ], [ 75.32463260331194, 29.246483873032265 ], [ 75.32308230970078, 29.25384776476249 ], [ 75.323805780112636, 29.260643214812482 ], [ 75.330627068584292, 29.282915758055758 ], [ 75.331143833421123, 29.289814560893252 ], [ 75.328353306359972, 29.296222439114267 ], [ 75.322565545763254, 29.299167995806318 ], [ 75.313780551631098, 29.298935451809644 ], [ 75.276986932301028, 29.282166449222235 ], [ 75.273059522778723, 29.278497423017647 ], [ 75.270889113341852, 29.273975735191971 ], [ 75.269855584567537, 29.268911445007173 ], [ 75.267788527018851, 29.264415594703898 ], [ 75.26179406084718, 29.260591538868418 ], [ 75.249701775716332, 29.256405747826985 ], [ 75.228307733415122, 29.253046779984906 ], [ 75.214148390735588, 29.253692735131601 ], [ 75.197508579357404, 29.264157213184824 ], [ 75.189963819574572, 29.27022919372228 ], [ 75.181592238391019, 29.273252264780179 ], [ 75.174150832295012, 29.272244574427521 ], [ 75.159371371991185, 29.258576158163116 ], [ 75.150172966709007, 29.252607530413169 ], [ 75.130019158757122, 29.249481106567764 ], [ 75.12133751831179, 29.246483873032265 ], [ 75.106558058907225, 29.238215643736954 ], [ 75.09839318239942, 29.236432807028386 ], [ 75.088884718754713, 29.235476793519176 ], [ 75.079582960685045, 29.236329454240877 ], [ 75.071521436964687, 29.240127672554017 ], [ 75.064906854067985, 29.246716417028995 ], [ 75.055295037635844, 29.268446357013762 ], [ 75.049197218676653, 29.278264879020917 ], [ 75.042065870943119, 29.28570628511692 ], [ 75.029353469087297, 29.290589708148492 ], [ 75.017674595106413, 29.290098781733374 ], [ 74.997624139042713, 29.280151069416316 ], [ 74.993283319269707, 29.279608466157747 ], [ 74.985738560386196, 29.279918525419586 ], [ 74.975609979117209, 29.282011420490612 ], [ 74.969615512945538, 29.284336860457696 ], [ 74.962794223574505, 29.290822252145166 ], [ 74.956076287890355, 29.300149847737252 ], [ 74.944500766696976, 29.321931464565402 ], [ 74.935612420676634, 29.344462389327752 ], [ 74.933752068702944, 29.35288564735469 ], [ 74.930961541641793, 29.359112657523092 ], [ 74.925483840306896, 29.366011461259912 ], [ 74.907190383429381, 29.37846548069734 ], [ 74.897785271672859, 29.382728787003874 ], [ 74.884659457767711, 29.386914578045314 ], [ 74.865332473015187, 29.39107453156435 ], [ 74.856754185357303, 29.394020087357141 ], [ 74.84125125464162, 29.402520859749863 ], [ 74.831226027059458, 29.403761094998508 ], [ 74.82140750505225, 29.402934271799204 ], [ 74.808798455983933, 29.39812836403274 ], [ 74.798463169139879, 29.391565457080155 ], [ 74.786164178434007, 29.381566067020337 ], [ 74.776759067576833, 29.372160956163153 ], [ 74.767250603932197, 29.366192328413195 ], [ 74.758568964386129, 29.364254462073738 ], [ 74.743169387357256, 29.364771226910584 ], [ 74.709372999764057, 29.371075751444771 ], [ 74.704102004004227, 29.370998237078929 ], [ 74.675369908394515, 29.366734930772392 ], [ 74.66224409358999, 29.366786606716509 ], [ 74.655939569055803, 29.365959784416464 ], [ 74.649118279684828, 29.363530992561259 ], [ 74.644984164587456, 29.358673407951411 ], [ 74.642607048676311, 29.351697088949482 ], [ 74.63971316882764, 29.338933010250226 ], [ 74.636302525041444, 29.333920396009425 ], [ 74.631444940431592, 29.331414088889055 ], [ 74.622453240724411, 29.331207384213368 ], [ 74.612841424292228, 29.332809352869326 ], [ 74.605193311721891, 29.338390407890973 ], [ 74.598888788087081, 29.346813665917917 ], [ 74.589587030017398, 29.366812446037546 ], [ 74.581628859084546, 29.378103746390757 ], [ 74.566435987630697, 29.395131130497241 ], [ 74.561785108595856, 29.403089301430096 ], [ 74.555583936849175, 29.416292629701097 ], [ 74.54411177024194, 29.431072089105609 ], [ 74.539254184732769, 29.435722968140443 ], [ 74.53708377529594, 29.441381537527885 ], [ 74.53739383275915, 29.449107164464056 ], [ 74.54256147663078, 29.460269272708722 ], [ 74.550519646664313, 29.465385239737024 ], [ 74.557650995297124, 29.467452297285657 ], [ 74.586796502956176, 29.466289578201433 ], [ 74.594858025777214, 29.467607326916603 ], [ 74.60209272719753, 29.470423692399486 ], [ 74.606846958120556, 29.47752920171126 ], [ 74.610050897231062, 29.487786974189468 ], [ 74.613771600279094, 29.520213935324808 ], [ 74.611911249204738, 29.530730089322155 ], [ 74.602712843922561, 29.543726712018092 ], [ 74.585349562132521, 29.5611675072746 ], [ 74.578528272761531, 29.573001409987047 ], [ 74.574807569713514, 29.589692898208675 ], [ 74.583385858270702, 29.674338894124606 ], [ 74.588140090093063, 29.691211249499524 ], [ 74.602712843922561, 29.726351223330248 ], [ 74.606226841395568, 29.742267564296633 ], [ 74.604779900571927, 29.755031642995895 ], [ 74.597751905625884, 29.765263577052387 ], [ 74.591860793141038, 29.769035956044483 ], [ 74.584316034257526, 29.770121160762915 ], [ 74.57935509596085, 29.768338324054405 ], [ 74.575427687337864, 29.764979356212276 ], [ 74.568813104441162, 29.757899685322162 ], [ 74.565092401393187, 29.756297715766944 ], [ 74.560234815884016, 29.755600083776809 ], [ 74.547832473289972, 29.755677599041913 ], [ 74.540701124657105, 29.754282335061696 ], [ 74.533879836185449, 29.75050995517028 ], [ 74.523027785403926, 29.742629299502532 ], [ 74.51527632004607, 29.739089464507167 ], [ 74.506284621238237, 29.736789862961803 ], [ 74.49832645120469, 29.736247259703237 ], [ 74.488507928298233, 29.737048245380201 ], [ 74.477965935879169, 29.739864609963764 ], [ 74.468044061084512, 29.744386297789383 ], [ 74.461739535651006, 29.751801866362989 ], [ 74.459362420639167, 29.763093166716249 ], [ 74.46142947818781, 29.782265122737208 ], [ 74.466493768372672, 29.798930772537112 ], [ 74.476002232017365, 29.816629950212015 ], [ 74.481893345401531, 29.823502916426428 ], [ 74.485717401237011, 29.826681017115213 ], [ 74.494295688894894, 29.828799749708644 ], [ 74.524681430903271, 29.840788682951306 ], [ 74.534499952910423, 29.846498928282859 ], [ 74.541734654330796, 29.853010159291383 ], [ 74.547005650090611, 29.860813299694026 ], [ 74.549692824364314, 29.869494941038674 ], [ 74.548866001164967, 29.878925890317579 ], [ 74.544835239754477, 29.887969265069493 ], [ 74.535120069635454, 29.896495876783252 ], [ 74.526231723615098, 29.901766873442444 ], [ 74.518376906369085, 29.909776720319368 ], [ 74.514346144958594, 29.915383612863419 ], [ 74.516516555294729, 29.947190457273788 ], [ 74.577804803248995, 29.933832099371834 ], [ 74.632685173881598, 29.914815172082506 ], [ 74.650668573295988, 29.914065864148306 ], [ 74.654389276343963, 29.917088935206145 ], [ 74.65935021374132, 29.923858546834417 ], [ 74.667205030987347, 29.937656155207375 ], [ 74.672165969284023, 29.943443914904709 ], [ 74.678057081768856, 29.948379014779672 ], [ 74.710716586900944, 29.968377793999988 ], [ 74.71929487455877, 29.971452541901268 ], [ 74.726012811142283, 29.972692776250589 ], [ 74.745236444006636, 29.972382716988754 ], [ 74.767250603932197, 29.974708156955835 ], [ 74.806214633598401, 29.985250149374838 ], [ 74.816239862079939, 29.986309516570934 ], [ 74.82337120981343, 29.984991766956451 ], [ 74.826781853599627, 29.98129690233014 ], [ 74.832776319771298, 29.97292532024732 ], [ 74.836910434868614, 29.968584500474314 ], [ 74.84145796111595, 29.965587266938819 ], [ 74.852413364684978, 29.962693386190772 ], [ 74.903469680381406, 29.954838568944798 ], [ 74.913391555176062, 29.951272895527662 ], [ 74.918662550935935, 29.948379014779672 ], [ 74.927550896956276, 29.941351019833682 ], [ 74.931271600004308, 29.936622626433056 ], [ 74.932821892716134, 29.932850247440964 ], [ 74.935302362314118, 29.921481431822592 ], [ 74.93747277175099, 29.915383612863419 ], [ 74.94129682758647, 29.90972504347592 ], [ 74.945741001046287, 29.905642605222049 ], [ 74.969098749007998, 29.892542629738553 ], [ 74.974576451242157, 29.888124294700443 ], [ 74.97984744700203, 29.882775784574779 ], [ 74.984601677925056, 29.878745022264916 ], [ 74.995660435180909, 29.872983100089975 ], [ 75.004548781201237, 29.872750556093244 ], [ 75.019534947080089, 29.875618598419567 ], [ 75.047440220389817, 29.883886826815566 ], [ 75.059739211095675, 29.885876369998464 ], [ 75.067800733916698, 29.888356837797794 ], [ 75.072761672213332, 29.891147365758275 ], [ 75.076379021574525, 29.896082464733915 ], [ 75.078239374447534, 29.900991726187204 ], [ 75.079789667159375, 29.907606309983173 ], [ 75.07989301994688, 29.913109849739715 ], [ 75.081753371021236, 29.919931139110751 ], [ 75.085784133331046, 29.924323634827878 ], [ 75.095292596076419, 29.927760117935055 ], [ 75.102113885447395, 29.923806870890356 ], [ 75.105627882920416, 29.918070787137072 ], [ 75.106558058907225, 29.910422675466062 ], [ 75.106764763582916, 29.90207693090559 ], [ 75.106144646857942, 29.892930203366173 ], [ 75.104387647671771, 29.885282090795833 ], [ 75.101803827084865, 29.879597682986677 ], [ 75.098806594448703, 29.876600450350502 ], [ 75.095395948863924, 29.874145820073515 ], [ 75.093225539427038, 29.87210460094655 ], [ 75.092605421802688, 29.869314072986068 ], [ 75.093432245002063, 29.867221177914978 ], [ 75.099013299124394, 29.859418035713748 ], [ 75.10066694462374, 29.855619819199251 ], [ 75.101183710359905, 29.850658880902582 ], [ 75.098186476824395, 29.83396739447965 ], [ 75.100253534373039, 29.826913560212624 ], [ 75.105214470871061, 29.821384182034357 ], [ 75.128675571620278, 29.810687160883724 ], [ 75.134049921066932, 29.805829576273876 ], [ 75.140251091914294, 29.798078110916087 ], [ 75.14479861816163, 29.793866482352254 ], [ 75.147692498909677, 29.792832953577939 ], [ 75.149862909245812, 29.793866482352254 ], [ 75.151309849170147, 29.796372789472624 ], [ 75.155133905005684, 29.817120877526456 ], [ 75.156994256079983, 29.820686550044222 ], [ 75.16009484240297, 29.824278061883032 ], [ 75.165262486274671, 29.827404487527073 ], [ 75.17973188731672, 29.83319224722441 ], [ 75.187896762925192, 29.834742539936254 ], [ 75.193167758685078, 29.832675483286888 ], [ 75.196268345008079, 29.827637031523746 ], [ 75.197818637719905, 29.814407863931756 ], [ 75.200195753631064, 29.807018133779817 ], [ 75.20360639831658, 29.800300198095663 ], [ 75.212598098023747, 29.787406928187178 ], [ 75.230891554901262, 29.765806179411634 ], [ 75.236162550661149, 29.756995347757076 ], [ 75.238332960997283, 29.75187938072883 ], [ 75.238229608209778, 29.748778795305149 ], [ 75.236059197873644, 29.747486884112387 ], [ 75.232441847613117, 29.746479193759729 ], [ 75.227170851853288, 29.745962428922944 ], [ 75.221693149619099, 29.745962428922944 ], [ 75.218282504933569, 29.746298325707123 ], [ 75.214251742623773, 29.747073472962363 ], [ 75.210531039575741, 29.747383531324878 ], [ 75.207947218988906, 29.746840928965693 ], [ 75.20608686701523, 29.744618841786114 ], [ 75.205156691028421, 29.740949815581526 ], [ 75.204846632665905, 29.734076850266426 ], [ 75.207120395789602, 29.718212185244102 ], [ 75.207327102263932, 29.710925807879725 ], [ 75.207120395789602, 29.707644355302751 ], [ 75.205570103077761, 29.705318915335674 ], [ 75.19957563690609, 29.701339829869251 ], [ 75.184072707089726, 29.693717555720578 ], [ 75.179835240104211, 29.69247732227057 ], [ 75.174254185082503, 29.690126043881769 ], [ 75.172083774746383, 29.688214015964025 ], [ 75.172290480321337, 29.684932563387058 ], [ 75.174460890657528, 29.679868272302876 ], [ 75.192547641960047, 29.663254299346413 ], [ 75.193994581884382, 29.659507757876717 ], [ 75.193994581884382, 29.655993761303016 ], [ 75.192857701221882, 29.653306586130039 ], [ 75.189343702849541, 29.648345648732683 ], [ 75.190273878836408, 29.644469916053758 ], [ 75.194304641146218, 29.638630479512976 ], [ 75.206810337427086, 29.628372707934084 ], [ 75.213631625898742, 29.621344712988094 ], [ 75.217869093783619, 29.614678453248011 ], [ 75.219109328132944, 29.609924221425661 ], [ 75.219522740182271, 29.605040798394089 ], [ 75.22076297363229, 29.60124258098028 ], [ 75.226447381441446, 29.590700588561273 ], [ 75.228617791777637, 29.584680283967877 ], [ 75.234612257949308, 29.561787624898951 ], [ 75.248564895053832, 29.55982392013777 ], [ 75.267995232593847, 29.569642442144975 ], [ 75.295280389178558, 29.574861761960729 ], [ 75.301791620187075, 29.580494492926498 ], [ 75.303548617574606, 29.589176134271153 ], [ 75.299517857063378, 29.597676907563191 ], [ 75.293626742779892, 29.605169990502642 ], [ 75.289906039731918, 29.611526190980889 ], [ 75.290629510143717, 29.621525580141387 ], [ 75.296727329102879, 29.633953762056471 ], [ 75.311610142194269, 29.656174628456306 ], [ 75.32153201698894, 29.662582505778001 ], [ 75.329903599071812, 29.662763372931291 ], [ 75.335794711556659, 29.660903021856932 ], [ 75.342822707401965, 29.662840888196389 ], [ 75.344786411263826, 29.67095408786081 ], [ 75.344166293639475, 29.679248155577902 ], [ 75.345303176100657, 29.686973782514023 ], [ 75.353674758183487, 29.695448717384402 ], [ 75.376722446883349, 29.71294118948429 ], [ 75.384783969704401, 29.722268785076317 ], [ 75.408761835290392, 29.76141368279519 ], [ 75.431499464728446, 29.785830797053617 ], [ 75.445762160195486, 29.806191311479829 ], [ 75.452480095879693, 29.809214382537728 ], [ 75.46116173722433, 29.807896632923242 ], [ 75.477904901390033, 29.800532742092336 ], [ 75.511184523247081, 29.787846177758858 ], [ 75.530201451435772, 29.786373399412803 ], [ 75.539503207706829, 29.787484443452282 ], [ 75.548081496263961, 29.784538885860847 ], [ 75.575366651949352, 29.769526882459612 ], [ 75.604408806820942, 29.76466929784981 ], [ 75.623632439685295, 29.767123928126743 ], [ 75.641925896562825, 29.773066718354354 ], [ 75.66321658697585, 29.775314643056326 ], [ 75.698563267280903, 29.768984280100423 ], [ 75.710862257986747, 29.771232204802395 ], [ 75.717683547357794, 29.778027655751711 ], [ 75.718923780807799, 29.786063341050347 ], [ 75.71747684088345, 29.794331570345658 ], [ 75.72016401605643, 29.80262563716342 ], [ 75.727502069364945, 29.810351264099545 ], [ 75.75923139761089, 29.823735460423158 ], [ 75.785999790258046, 29.830970160044838 ], [ 75.796955193827074, 29.830195013688911 ], [ 75.806256951896771, 29.828644720977074 ], [ 75.821036411301279, 29.824768989197473 ], [ 75.829821405433492, 29.821074124571162 ], [ 75.851938918146502, 29.805028591496288 ], [ 75.858140089893183, 29.796501979782526 ], [ 75.873126254872702, 29.764100857068851 ], [ 75.875503370783903, 29.760561021174166 ], [ 75.886665479927871, 29.749243883298554 ], [ 75.908059523128415, 29.748158678580118 ], [ 75.939892205960504, 29.738546861248601 ], [ 75.956945427589389, 29.738624376513762 ], [ 75.970588006331383, 29.742965196286768 ], [ 75.991568638381906, 29.752732042349855 ], [ 76.00397098187527, 29.756530259763675 ], [ 76.031772902397492, 29.754824937420882 ], [ 76.04386518662902, 29.758158066841297 ], [ 76.052030064036202, 29.764410916330686 ], [ 76.084379509906384, 29.802108873225897 ], [ 76.125824009170614, 29.818490302185687 ], [ 76.147321405158635, 29.823270372429697 ], [ 76.161274042263173, 29.830091660901413 ], [ 76.184115025388039, 29.845413723564484 ], [ 76.213880649772122, 29.85874624304466 ], [ 76.225559522853629, 29.869081528989337 ], [ 76.226282993265485, 29.87820241990573 ], [ 76.219048292744489, 29.885488797270163 ], [ 76.200134719141914, 29.89541067206482 ], [ 76.193313429770896, 29.901069241452312 ], [ 76.188145785899266, 29.909466661057532 ], [ 76.185355258838101, 29.918380846398907 ], [ 76.181014439065024, 29.92807017719689 ], [ 76.178430616679549, 29.935873318498796 ], [ 76.176983676755228, 29.945536810875122 ], [ 76.178120559216367, 29.954683539313859 ], [ 76.183701613338755, 29.973571275394018 ], [ 76.203338658252434, 30.021682034398335 ], [ 76.210470005086592, 30.033490098689064 ], [ 76.219048292744489, 30.042507635918628 ], [ 76.22194217259316, 30.046409207019277 ], [ 76.223079055054299, 30.050672512426498 ], [ 76.221322055868129, 30.054780789102086 ], [ 76.218738234381959, 30.059586696868553 ], [ 76.216981236095123, 30.063694973544152 ], [ 76.216257765683267, 30.068707586885573 ], [ 76.216567824045782, 30.075192979472426 ], [ 76.219668410368769, 30.079223740882917 ], [ 76.224629347766125, 30.08170421048089 ], [ 76.246333449329185, 30.084882311169672 ], [ 76.252741326650877, 30.08857717489666 ], [ 76.251294386726542, 30.092478745997305 ], [ 76.244783155718025, 30.096354477776909 ], [ 76.217187940770813, 30.105216987174167 ], [ 76.211606886648426, 30.108317573497171 ], [ 76.205819126051765, 30.113045965998534 ], [ 76.202408482265568, 30.11816193302678 ], [ 76.201374952591934, 30.125603339122783 ], [ 76.205819126051765, 30.130977688569423 ], [ 76.213880649772122, 30.13748891957794 ], [ 76.220701939143154, 30.139814357746381 ], [ 76.228763461964135, 30.138651637762845 ], [ 76.257702264048177, 30.11860118349778 ], [ 76.266693963755387, 30.113691922044541 ], [ 76.274238722638913, 30.11172821728336 ], [ 76.286537714244091, 30.110513821355763 ], [ 76.299560173563108, 30.106922309516953 ], [ 76.308138462120255, 30.105914618264983 ], [ 76.317233513715664, 30.106560574311054 ], [ 76.32684533104711, 30.111883246014987 ], [ 76.329945917370125, 30.116844184311606 ], [ 76.329635858108276, 30.123355414420811 ], [ 76.327775506134671, 30.130357570945129 ], [ 76.328085565396449, 30.138832505815451 ], [ 76.333356561156322, 30.141623032876616 ], [ 76.338937616177972, 30.141235460148319 ], [ 76.345965611124015, 30.136584581113478 ], [ 76.357747836993028, 30.123717148727387 ], [ 76.363638951276513, 30.118446152967572 ], [ 76.368289829412021, 30.116534125049828 ], [ 76.373457473283722, 30.116973375520839 ], [ 76.379348585768568, 30.119944769735291 ], [ 76.383172641604091, 30.125680854387888 ], [ 76.392474399673731, 30.144697780777957 ], [ 76.394024693284891, 30.149426174178583 ], [ 76.393921339598123, 30.154542141206829 ], [ 76.392060987624447, 30.159528917025842 ], [ 76.388443638263226, 30.165755927194247 ], [ 76.386169875139601, 30.171698717421858 ], [ 76.387823520638946, 30.180044461083011 ], [ 76.394541457222417, 30.184566148009306 ], [ 76.401982863318409, 30.186452338404639 ], [ 76.409320916626925, 30.185883896724413 ], [ 76.415315382798653, 30.182602444147438 ], [ 76.419346145108463, 30.177124741913296 ], [ 76.429578078265635, 30.140356961004951 ], [ 76.437536249198487, 30.124259751985953 ], [ 76.448698358342526, 30.108110867022894 ], [ 76.454589470827372, 30.101625475335414 ], [ 76.462030877822698, 30.097026272244641 ], [ 76.486525507346229, 30.090773424553895 ], [ 76.497067498865917, 30.085218207054588 ], [ 76.531380650396656, 30.083977972705263 ], [ 76.589775017602946, 30.124027207989222 ], [ 76.624811638646165, 30.142837428804274 ], [ 76.629359164893501, 30.147565823104223 ], [ 76.62853234169414, 30.15867625630414 ], [ 76.6300826353053, 30.166892808756067 ], [ 76.638660922963183, 30.182059840888929 ], [ 76.640831333299303, 30.190560615080294 ], [ 76.641451450923654, 30.19797618275458 ], [ 76.639694451737498, 30.202187812217741 ], [ 76.637420688613858, 30.205443427272304 ], [ 76.633389927203311, 30.208440659908479 ], [ 76.628222284231001, 30.210714423032176 ], [ 76.615199823113286, 30.214228421404524 ], [ 76.60930870972912, 30.217639065190657 ], [ 76.60527794831863, 30.221514796970258 ], [ 76.60248742125745, 30.226165676005099 ], [ 76.600420362809459, 30.23135915829851 ], [ 76.599180129359439, 30.236475125326756 ], [ 76.597629835748293, 30.240195828374731 ], [ 76.594735955899623, 30.243864854579318 ], [ 76.59080854727658, 30.246681220062211 ], [ 76.58636437381675, 30.248128159986539 ], [ 76.582436965193764, 30.247275499264838 ], [ 76.577476026897088, 30.243658149004368 ], [ 76.561146274780683, 30.224770412924208 ], [ 76.556081983696558, 30.220894680245287 ], [ 76.549880811949876, 30.218336697180799 ], [ 76.545333285702526, 30.21779409392229 ], [ 76.539338820430174, 30.219886989892636 ], [ 76.535411410907813, 30.225028795342606 ], [ 76.533137647784187, 30.23461477335308 ], [ 76.539132114855178, 30.245130927350363 ], [ 76.550190871211697, 30.254510198886567 ], [ 76.564556918566879, 30.26189992903846 ], [ 76.605588006681089, 30.274431463741042 ], [ 76.616750115825127, 30.279469916403503 ], [ 76.636903923777012, 30.291019599175112 ], [ 76.649926384894727, 30.296807358872506 ], [ 76.714315220071327, 30.33711497747418 ], [ 76.729714797100129, 30.349594835333384 ], [ 76.736846144833663, 30.357087918272779 ], [ 76.740153435832354, 30.362901516391837 ], [ 76.739016555169812, 30.366596381018148 ], [ 76.734055616873192, 30.369206040926024 ], [ 76.722273391004123, 30.37163483278129 ], [ 76.718966099106154, 30.37341767038912 ], [ 76.717105747132493, 30.376750799809535 ], [ 76.716382276720637, 30.381246650112807 ], [ 76.721446567804819, 30.410598863346813 ], [ 76.72423709486597, 30.416489976731032 ], [ 76.7276477395515, 30.420055650148122 ], [ 76.75286583858751, 30.430520128201344 ], [ 76.76712853405455, 30.430597643466449 ], [ 76.786455519706394, 30.422923692474395 ], [ 76.798444452049793, 30.42284617810861 ], [ 76.829450310783145, 30.427083645094108 ], [ 76.838752068852827, 30.424241441189558 ], [ 76.845263298962024, 30.417523505505351 ], [ 76.851051059558671, 30.404733588384371 ], [ 76.860042759265852, 30.37682831507464 ], [ 76.869241163648709, 30.362358914032651 ], [ 76.880506625580239, 30.358302314200436 ], [ 76.89104861799926, 30.361247869993171 ], [ 76.900350376068943, 30.372022407308229 ], [ 76.904897902316264, 30.384088853118037 ], [ 76.906964959864965, 30.395767727098924 ], [ 76.906344842240614, 30.405612088427109 ], [ 76.897146436958437, 30.442095649394666 ], [ 76.895699497034087, 30.455634874449849 ], [ 76.896009556295937, 30.486614894761537 ], [ 76.898076612945303, 30.494056300857547 ], [ 76.900040317706427, 30.49821625437664 ], [ 76.906034783878098, 30.506277778096937 ], [ 76.910375603651161, 30.514158433764685 ], [ 76.90975548692613, 30.520437119877155 ], [ 76.905518019940615, 30.526844998098163 ], [ 76.897869908269598, 30.535190740859996 ], [ 76.893115676447266, 30.543794866939542 ], [ 76.894459262684776, 30.561132311207185 ], [ 76.901487257630762, 30.592629096355662 ], [ 76.901487257630762, 30.598804430579996 ], [ 76.899420200981453, 30.604824734274068 ], [ 76.896216261870933, 30.610534980504944 ], [ 76.89104861799926, 30.627329819715378 ], [ 76.886604445438749, 30.633789373880454 ], [ 76.879266392130248, 30.637535916249522 ], [ 76.871721633246722, 30.6385436057028 ], [ 76.865933871750741, 30.6408690465692 ], [ 76.860662875990883, 30.645235703864607 ], [ 76.854358352356016, 30.675337225932193 ], [ 76.852808058744856, 30.679032091457817 ], [ 76.851257766033015, 30.681564236100588 ], [ 76.848880650121856, 30.68228770651239 ], [ 76.846400181423164, 30.682029324093993 ], [ 76.841852655175828, 30.679678045705199 ], [ 76.838131952127853, 30.678799547461143 ], [ 76.82727990134633, 30.680711575378886 ], [ 76.818804965576632, 30.703190823297856 ], [ 76.822008904687138, 30.72210439690036 ], [ 76.82655643093446, 30.735281886749636 ], [ 76.826246371672639, 30.742955837741697 ], [ 76.824075962235824, 30.749751287791693 ], [ 76.819425083200983, 30.756779282737671 ], [ 76.813327264241806, 30.770266831848794 ], [ 76.811673617843141, 30.777656562000736 ], [ 76.814567498591117, 30.789128730406549 ], [ 76.829657017257475, 30.808765774420912 ], [ 76.834721307442322, 30.822460029107042 ], [ 76.835858189004156, 30.82922964073531 ], [ 76.835238072279182, 30.835870062952999 ], [ 76.832757602681156, 30.842277940274695 ], [ 76.828726841270651, 30.846205348897733 ], [ 76.822318963948973, 30.849073391224 ], [ 76.808573033318766, 30.852432359066079 ], [ 76.801855095835933, 30.856153062114114 ], [ 76.796894159337953, 30.861992499554212 ], [ 76.785525343719584, 30.885169379463257 ], [ 76.777773879261062, 30.897287503015825 ], [ 76.768162061929544, 30.907596951438158 ], [ 76.772399529814422, 30.912867947197974 ], [ 76.78149458230908, 30.920438544503206 ], [ 76.796274041713602, 30.930334580876195 ], [ 76.803095331084634, 30.933047594470899 ], [ 76.81012332603062, 30.934261990398507 ], [ 76.816427849665487, 30.932815050474169 ], [ 76.820458611975283, 30.929404404889329 ], [ 76.829036899633181, 30.911937771211164 ], [ 76.837718540078512, 30.903307806709901 ], [ 76.847020298148195, 30.898682766096773 ], [ 76.862109815915218, 30.896744899757316 ] ] ] } },
+ {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[74.734507,37.020683],[74.736469,37.019368],[74.737027,37.01938],[74.737596,37.019388],[74.739905,37.016301],[74.744954,37.014577],[74.745805,37.014584],[74.746641,37.013714],[74.748884,37.012178],[74.750033,37.011729],[74.752545,37.01154],[74.75749,37.013196],[74.758595,37.014756],[74.759153,37.014759],[74.759713,37.015452],[74.763396,37.02511],[74.764479,37.02512],[74.766128,37.026933],[74.767227,37.027382],[74.770814,37.028769],[74.773844,37.028926],[74.778862,37.029787],[74.783617,37.029848],[74.78445,37.029398],[74.785833,37.029421],[74.78641,37.028968],[74.791269,37.028145],[74.791874,37.027904],[74.793173,37.027714],[74.798468,37.025127],[74.799331,37.024687],[74.799912,37.024015],[74.80465,37.023618],[74.805471,37.023194],[74.816627,37.023112],[74.818876,37.022704],[74.820027,37.023226],[74.821983,37.023243],[74.828317,37.024827],[74.833866,37.024891],[74.835275,37.023805],[74.839216,37.022282],[74.840064,37.022298],[74.842124,37.016933],[74.842,37.015184],[74.841658,37.009838],[74.841947,37.005818],[74.841399,36.999498],[74.842668,36.996218],[74.846046,36.989938],[74.848134,36.987855],[74.848904,36.987663],[74.856006,36.979772],[74.856574,36.97978],[74.860253,36.976695],[74.861931,36.976485],[74.867421,36.967167],[74.869138,36.964943],[74.87229,36.962066],[74.872555,36.961389],[74.873403,36.961199],[74.874546,36.96078],[74.87511,36.959673],[74.875377,36.958771],[74.87624,36.958555],[74.87939,36.954111],[74.879948,36.954118],[74.880974,36.952536],[74.881744,36.952344],[74.882017,36.951237],[74.882675,36.951064],[74.884437,36.949127],[74.884975,36.948202],[74.88541,36.947709],[74.887104,36.946164],[74.887931,36.945947],[74.89259,36.937046],[74.896836,36.932875],[74.898523,36.930533],[74.900369,36.92764],[74.902491,36.924805],[74.90487,36.920651],[74.908858,36.91688],[74.910901,36.912447],[74.913707,36.911807],[74.914029,36.91024],[74.914057,36.909122],[74.91489,36.908447],[74.916845,36.908249],[74.922171,36.906087],[74.924686,36.906344],[74.925213,36.907026],[74.927409,36.908854],[74.927966,36.908862],[74.931526,36.921405],[74.932632,36.925467],[74.939237,36.93268],[74.940496,36.933401],[74.94134,36.934724],[74.943266,36.935205],[74.9471,36.938163],[74.957372,36.942242],[74.957585,36.942764],[74.958154,36.942766],[74.961142,36.945691],[74.966259,36.947616],[74.967366,36.948512],[74.969169,36.948926],[74.972177,36.951206],[74.977126,36.952767],[74.978856,36.954017],[74.980051,36.954754],[74.981941,36.956299],[74.98321,36.956729],[74.98461,36.957177],[74.988137,36.960447],[74.991151,36.962817],[74.99505,36.964226],[74.997821,36.964713],[75.008663,36.964381],[75.011971,36.965966],[75.012819,36.965981],[75.014724,36.967822],[75.018741,36.976371],[75.020984,36.976385],[75.023481,36.975744],[75.026294,36.973769],[75.030771,36.973596],[75.036528,36.971162],[75.038629,36.970783],[75.039455,36.970788],[75.039717,36.97033],[75.040565,36.970345],[75.04254,36.969456],[75.042836,36.968806],[75.043697,36.967702],[75.045047,36.96719],[75.047914,36.965063],[75.048482,36.96507],[75.049028,36.964392],[75.054962,36.963194],[75.0564,36.962321],[75.058014,36.962044],[75.05831,36.961587],[75.059145,36.960921],[75.063071,36.959876],[75.06365,36.959203],[75.067272,36.957464],[75.068177,36.957293],[75.069597,36.955967],[75.070301,36.955799],[75.072227,36.954434],[75.074066,36.951727],[75.078605,36.948188],[75.079994,36.947743],[75.080563,36.947754],[75.085335,36.94367],[75.087077,36.942913],[75.095961,36.94279],[75.096803,36.943252],[75.100376,36.943948],[75.100649,36.944408],[75.105645,36.94671],[75.115083,36.948817],[75.118269,36.950598],[75.119759,36.950864],[75.120012,36.951323],[75.121094,36.952244],[75.125011,36.953383],[75.127178,36.955198],[75.127875,36.955481],[75.131821,36.956482],[75.135844,36.957364],[75.139607,36.960494],[75.144039,36.962314],[75.146514,36.96459],[75.147618,36.964804],[75.151085,36.967098],[75.163793,36.978864],[75.164898,36.978881],[75.166752,36.980924],[75.167565,36.981153],[75.173382,36.986125],[75.175467,36.989719],[75.180936,37.000519],[75.187448,37.007886],[75.187685,37.008595],[75.18844,37.008831],[75.193377,37.014199],[75.194032,37.014293],[75.19816,37.017695],[75.198973,37.017932],[75.202288,37.021107],[75.202994,37.022764],[75.207989,37.035339],[75.208963,37.036806],[75.214937,37.038366],[75.215886,37.038902],[75.217552,37.038911],[75.221742,37.037392],[75.225651,37.037435],[75.227304,37.038357],[75.227837,37.038819],[75.230065,37.039269],[75.238862,37.042565],[75.239136,37.043024],[75.24089,37.043403],[75.241404,37.044321],[75.243596,37.045226],[75.245013,37.04547],[75.248896,37.046846],[75.249137,37.047305],[75.250795,37.047779],[75.251638,37.048446],[75.251915,37.048879],[75.256846,37.04993],[75.258648,37.050829],[75.264962,37.051925],[75.271409,37.049306],[75.271704,37.048849],[75.274111,37.048376],[75.275853,37.048052],[75.276394,37.047605],[75.279239,37.046926],[75.282315,37.047411],[75.284503,37.048759],[75.285887,37.048764],[75.288345,37.049336],[75.288901,37.049794],[75.29366,37.051094],[75.294474,37.051532],[75.302312,37.051616],[75.305918,37.052782],[75.307593,37.0528],[75.308405,37.05326],[75.311174,37.053285],[75.312142,37.053369],[75.315493,37.053942],[75.33289,37.055277],[75.334,37.054832],[75.337944,37.054436],[75.339057,37.05379],[75.339595,37.053343],[75.342672,37.052914],[75.343804,37.052475],[75.34493,37.051372],[75.345913,37.043795],[75.345344,37.040584],[75.343894,37.032571],[75.344041,37.024192],[75.344121,37.019629],[75.345626,37.011147],[75.345197,37.003069],[75.345521,37.000621],[75.346696,36.994707],[75.347586,36.99269],[75.347514,36.991461],[75.348021,36.989859],[75.351992,36.981007],[75.35466,36.977809],[75.355491,36.977133],[75.357388,36.975245],[75.358495,36.975252],[75.359625,36.973697],[75.362753,36.970816],[75.363857,36.970832],[75.367001,36.967293],[75.36841,36.965737],[75.374318,36.961317],[75.375448,36.961101],[75.376278,36.960451],[75.377951,36.960468],[75.378803,36.960016],[75.384666,36.95962],[75.386622,36.959407],[75.389928,36.961441],[75.3905,36.961443],[75.391858,36.962821],[75.394304,36.965097],[75.394873,36.965103],[75.395957,36.966228],[75.400119,36.96781],[75.401222,36.968045],[75.413502,36.967507],[75.416299,36.966421],[75.417475,36.965422],[75.418267,36.965227],[75.42011,36.963113],[75.420905,36.962892],[75.423066,36.960661],[75.42592,36.955753],[75.42623,36.954418],[75.427937,36.951955],[75.428239,36.950615],[75.427198,36.946635],[75.426498,36.939878],[75.426793,36.938995],[75.425567,36.936277],[75.422448,36.931566],[75.419714,36.92909],[75.418594,36.928394],[75.418041,36.927931],[75.416389,36.926581],[75.413475,36.923138],[75.411558,36.921579],[75.408773,36.916688],[75.409083,36.915581],[75.411667,36.912783],[75.413586,36.909546],[75.41511,36.903317],[75.41419,36.891892],[75.41593,36.888095],[75.417039,36.88721],[75.422341,36.886605],[75.424275,36.887305],[75.430344,36.891153],[75.437837,36.891452],[75.439513,36.891012],[75.443471,36.887227],[75.444039,36.887238],[75.448051,36.880365],[75.449203,36.877233],[75.451121,36.870708],[75.452015,36.867802],[75.452457,36.86651],[75.452937,36.863034],[75.453002,36.861352],[75.453394,36.85936],[75.452618,36.854874],[75.456669,36.845748],[75.459989,36.830564],[75.46285,36.825227],[75.469924,36.817647],[75.474211,36.810752],[75.478991,36.806772],[75.483338,36.805625],[75.483632,36.805172],[75.488215,36.804165],[75.490165,36.80241],[75.491843,36.801969],[75.49244,36.801456],[75.497149,36.800224],[75.497443,36.799766],[75.49884,36.798897],[75.500536,36.798914],[75.500818,36.798459],[75.501108,36.798028],[75.50332,36.797386],[75.503614,36.796941],[75.505033,36.796265],[75.507536,36.795397],[75.50868,36.794499],[75.512856,36.793195],[75.513139,36.792745],[75.513971,36.792068],[75.51592,36.792086],[75.516179,36.791659],[75.522602,36.78926],[75.52481,36.788842],[75.527941,36.787502],[75.529324,36.787519],[75.532443,36.786953],[75.533583,36.786306],[75.536889,36.785808],[75.542176,36.783806],[75.54359,36.783824],[75.544693,36.783829],[75.548594,36.781863],[75.5553,36.780577],[75.557794,36.780394],[75.558648,36.779717],[75.566469,36.776416],[75.570941,36.776001],[75.57254,36.77493],[75.573167,36.774475],[75.578783,36.772933],[75.579893,36.772051],[75.58101,36.771179],[75.586335,36.769651],[75.593349,36.76545],[75.597506,36.765031],[75.598926,36.764385],[75.599185,36.763953],[75.600321,36.763735],[75.603371,36.763991],[75.609468,36.763808],[75.614805,36.761809],[75.616479,36.7616],[75.620158,36.757395],[75.623557,36.750257],[75.624974,36.748469],[75.629155,36.744666],[75.629968,36.744444],[75.631989,36.741999],[75.6388,36.735595],[75.639272,36.733944],[75.64086,36.731811],[75.641653,36.729814],[75.645316,36.726477],[75.646427,36.725738],[75.647295,36.725545],[75.651501,36.72228],[75.652057,36.722284],[75.660534,36.712501],[75.663903,36.709847],[75.666465,36.706244],[75.67519,36.696031],[75.690538,36.671759],[75.694563,36.66665],[75.701864,36.657287],[75.707979,36.647795],[75.712169,36.642321],[75.714249,36.63849],[75.719719,36.630999],[75.729573,36.613397],[75.733382,36.60712],[75.738262,36.601352],[75.742379,36.597148],[75.743812,36.595542],[75.748333,36.588406],[75.753951,36.583961],[75.754507,36.583965],[75.76066,36.579321],[75.764004,36.57821],[75.769365,36.573331],[75.771294,36.572665],[75.776322,36.570038],[75.776325,36.569581],[75.777992,36.569164],[75.778681,36.568579],[75.781906,36.567599],[75.783025,36.566263],[75.788038,36.564272],[75.79393,36.559853],[75.79571,36.559457],[75.796002,36.559002],[75.797124,36.559015],[75.801993,36.557456],[75.802285,36.556996],[75.803422,36.556777],[75.806213,36.554337],[75.809556,36.552996],[75.810401,36.553007],[75.811503,36.552352],[75.814587,36.551708],[75.815551,36.551566],[75.816087,36.551108],[75.818771,36.550836],[75.824329,36.548646],[75.827235,36.548361],[75.833478,36.546905],[75.839592,36.546745],[75.849065,36.544321],[75.849357,36.543875],[75.852708,36.541963],[75.856621,36.540352],[75.85878,36.538681],[75.859811,36.53771],[75.860259,36.537232],[75.86332,36.536345],[75.865854,36.534126],[75.866954,36.534139],[75.877827,36.525718],[75.879241,36.525272],[75.882331,36.523264],[75.883431,36.523043],[75.885393,36.521488],[75.886818,36.521042],[75.889349,36.519056],[75.890744,36.51795],[75.895744,36.516381],[75.901604,36.512415],[75.90522,36.51176],[75.906613,36.510654],[75.906893,36.510194],[75.908306,36.509778],[75.908852,36.509096],[75.913583,36.507556],[75.913864,36.507101],[75.914998,36.506222],[75.917803,36.505561],[75.918083,36.505101],[75.919184,36.504907],[75.923362,36.502448],[75.931713,36.500956],[75.932537,36.500276],[75.940712,36.497712],[75.944774,36.496981],[75.951743,36.494111],[75.952033,36.493683],[75.955645,36.493278],[75.955925,36.492818],[75.956494,36.492373],[75.957338,36.492375],[75.959007,36.492153],[75.95955,36.491708],[75.960398,36.49171],[75.964804,36.48996],[75.971654,36.489862],[75.972789,36.489418],[75.973938,36.489377],[75.976764,36.489348],[75.978622,36.488633],[75.980203,36.488391],[75.982893,36.487157],[75.984282,36.487166],[75.989551,36.486516],[75.990942,36.485844],[75.9926,36.485846],[75.993731,36.485419],[75.993988,36.48499],[75.997047,36.484333],[75.998169,36.484565],[75.998976,36.485458],[75.999256,36.485886],[76.00203,36.486596],[76.021166,36.486244],[76.023389,36.485801],[76.025866,36.486046],[76.030594,36.484521],[76.040042,36.483444],[76.04257,36.481909],[76.04818,36.48087],[76.053117,36.480165],[76.053673,36.480402],[76.054219,36.479953],[76.054221,36.479495],[76.056144,36.479068],[76.060589,36.479092],[76.064493,36.477754],[76.069227,36.477546],[76.072576,36.475796],[76.072833,36.475335],[76.077288,36.474274],[76.077856,36.473596],[76.08093,36.471579],[76.08399,36.469576],[76.084557,36.469579],[76.088732,36.465573],[76.089865,36.465576],[76.093499,36.46236],[76.095254,36.461574],[76.097241,36.459641],[76.100336,36.457175],[76.106859,36.451005],[76.110252,36.448546],[76.11366,36.44558],[76.119225,36.442384],[76.122007,36.440172],[76.125104,36.437459],[76.130386,36.431529],[76.135028,36.426589],[76.138135,36.42363],[76.143716,36.417948],[76.147757,36.413263],[76.150853,36.410043],[76.15457,36.405598],[76.159523,36.401907],[76.167266,36.394741],[76.173135,36.390302],[76.177757,36.388097],[76.180526,36.387364],[76.1836,36.387628],[76.186661,36.388135],[76.191869,36.388406],[76.194629,36.388677],[76.198636,36.387446],[76.202336,36.384991],[76.207368,36.38147],[76.210161,36.378323],[76.212117,36.376759],[76.21325,36.376303],[76.214914,36.375653],[76.217125,36.373659],[76.219384,36.370293],[76.220205,36.370069],[76.220771,36.369641],[76.224912,36.366177],[76.225467,36.366176],[76.22831,36.363073],[76.229133,36.362853],[76.230841,36.361149],[76.231661,36.360494],[76.234171,36.359597],[76.235844,36.35791],[76.238626,36.355578],[76.240858,36.354935],[76.241425,36.354252],[76.243656,36.352693],[76.246956,36.351813],[76.247243,36.351366],[76.248354,36.350456],[76.251129,36.350691],[76.252528,36.349132],[76.254761,36.347794],[76.268892,36.347195],[76.280076,36.348386],[76.284464,36.348336],[76.287843,36.348919],[76.292142,36.349096],[76.293043,36.349721],[76.295448,36.35023],[76.29739,36.350465],[76.299577,36.351821],[76.301795,36.352286],[76.302638,36.352286],[76.303727,36.353184],[76.311184,36.35634],[76.315196,36.357601],[76.324135,36.361788],[76.32824,36.362507],[76.340763,36.36252],[76.343804,36.362754],[76.352408,36.359874],[76.360787,36.353416],[76.36547,36.351405],[76.369133,36.347618],[76.374662,36.345606],[76.374949,36.344952],[76.376046,36.344723],[76.378242,36.341861],[76.379976,36.33959],[76.382609,36.337455],[76.383398,36.337256],[76.385918,36.334763],[76.386703,36.334564],[76.388809,36.33218],[76.389376,36.331721],[76.393112,36.328634],[76.397262,36.326417],[76.401153,36.321511],[76.402287,36.321513],[76.404239,36.319493],[76.405821,36.319112],[76.408133,36.318164],[76.411473,36.315917],[76.412313,36.315036],[76.413134,36.315035],[76.414234,36.314362],[76.420347,36.313281],[76.420913,36.312835],[76.421733,36.312834],[76.425062,36.311044],[76.425347,36.310614],[76.428134,36.310173],[76.428423,36.309717],[76.430339,36.308378],[76.432004,36.308161],[76.434072,36.301713],[76.436561,36.288437],[76.440208,36.283049],[76.445529,36.278143],[76.449451,36.271643],[76.450037,36.269405],[76.448371,36.266278],[76.447803,36.26628],[76.446438,36.264699],[76.445631,36.264467],[76.445075,36.263787],[76.443134,36.263096],[76.442325,36.263098],[76.441514,36.26243],[76.438463,36.259495],[76.438196,36.258816],[76.43763,36.258813],[76.436798,36.257692],[76.435722,36.257692],[76.432425,36.252071],[76.433246,36.251163],[76.437135,36.248944],[76.438265,36.248945],[76.43911,36.248953],[76.440997,36.248],[76.444096,36.247192],[76.44494,36.246509],[76.44576,36.246517],[76.44962,36.244948],[76.451286,36.243954],[76.454084,36.241842],[76.456024,36.241397],[76.456036,36.240481],[76.457133,36.24049],[76.457987,36.239143],[76.464666,36.232674],[76.47394,36.221117],[76.474877,36.219416],[76.479193,36.213864],[76.481707,36.211409],[76.488518,36.21064],[76.489084,36.21018],[76.489721,36.210076],[76.493324,36.209875],[76.49831,36.208548],[76.498587,36.208091],[76.50467,36.207225],[76.505789,36.206772],[76.506619,36.205881],[76.509206,36.204187],[76.510338,36.203504],[76.51119,36.203279],[76.511753,36.202612],[76.512732,36.202322],[76.513297,36.202329],[76.515226,36.20028],[76.518826,36.198973],[76.519114,36.198516],[76.521053,36.198524],[76.525947,36.197733],[76.527884,36.197084],[76.535595,36.196008],[76.536127,36.195556],[76.536832,36.195417],[76.537962,36.195426],[76.540718,36.193887],[76.542104,36.193659],[76.542381,36.193202],[76.544863,36.192757],[76.549294,36.188664],[76.549859,36.188662],[76.550402,36.187757],[76.552574,36.185909],[76.553761,36.185372],[76.55612,36.181],[76.558247,36.176879],[76.562973,36.173065],[76.58098,36.168189],[76.587043,36.167976],[76.587896,36.167516],[76.595083,36.166193],[76.595626,36.165732],[76.601165,36.165549],[76.602561,36.166003],[76.603928,36.16779],[76.608888,36.16958],[76.609974,36.170495],[76.614967,36.173201],[76.616055,36.173434],[76.617143,36.174542],[76.619074,36.176124],[76.620172,36.176352],[76.62045,36.176811],[76.621825,36.177044],[76.622666,36.177052],[76.625432,36.179059],[76.630675,36.180642],[76.632053,36.181536],[76.633066,36.181659],[76.633591,36.182545],[76.636448,36.184468],[76.63728,36.184924],[76.642258,36.184711],[76.644449,36.18403],[76.648105,36.174621],[76.664796,36.158061],[76.667581,36.156268],[76.668009,36.155922],[76.681467,36.145531],[76.68479,36.14417],[76.685975,36.143236],[76.688785,36.140941],[76.691719,36.138576],[76.693382,36.138347],[76.696177,36.13589],[76.697273,36.135897],[76.697558,36.135233],[76.698112,36.135239],[76.700599,36.133005],[76.701139,36.132323],[76.701985,36.130067],[76.703736,36.12886],[76.706445,36.125148],[76.707087,36.122573],[76.707067,36.114824],[76.706789,36.113907],[76.708731,36.107417],[76.712923,36.099348],[76.713219,36.097548],[76.71294,36.096855],[76.716861,36.087244],[76.719628,36.083208],[76.72132,36.082302],[76.721574,36.081624],[76.722424,36.080957],[76.724082,36.080736],[76.726003,36.078477],[76.729452,36.077666],[76.730667,36.077011],[76.732072,36.07701],[76.738733,36.074485],[76.739574,36.074496],[76.745119,36.070211],[76.751023,36.068008],[76.754235,36.067241],[76.758252,36.065398],[76.759208,36.065057],[76.760326,36.065064],[76.76697,36.06238],[76.772003,36.060308],[76.774509,36.058787],[76.774982,36.058378],[76.779703,36.056587],[76.780549,36.055696],[76.781931,36.054576],[76.782495,36.054577],[76.784154,36.054123],[76.784716,36.053437],[76.785532,36.052553],[76.788563,36.052097],[76.789968,36.051422],[76.797697,36.049647],[76.800728,36.048993],[76.801853,36.047859],[76.802401,36.046058],[76.801195,36.044567],[76.800915,36.04391],[76.800473,36.043385],[76.799106,36.041805],[76.798839,36.038426],[76.801076,36.032819],[76.808598,36.020471],[76.807763,36.018663],[76.806106,36.017113],[76.804986,36.016881],[76.783193,36.015706],[76.778523,36.013785],[76.777704,36.013788],[76.777015,36.013146],[76.773284,36.011675],[76.77273,36.010995],[76.770266,36.009435],[76.769702,36.009438],[76.769146,36.008753],[76.768229,36.008017],[76.765634,36.004729],[76.754344,35.990079],[76.753531,35.988509],[76.75298,35.986481],[76.754621,35.983325],[76.754341,35.982673],[76.742,35.970967],[76.74119,35.970763],[76.73566,35.967122],[76.734009,35.966452],[76.730158,35.962865],[76.729085,35.962867],[76.728252,35.961953],[76.723566,35.955891],[76.722771,35.953431],[76.726916,35.948708],[76.72942,35.946688],[76.730515,35.946686],[76.733867,35.943333],[76.73496,35.942882],[76.740496,35.934814],[76.740967,35.934405],[76.741819,35.934178],[76.746687,35.929074],[76.752724,35.921118],[76.756045,35.918429],[76.757701,35.918208],[76.76572,35.909682],[76.771687,35.904421],[76.773353,35.903077],[76.779027,35.898678],[76.785682,35.889944],[76.790113,35.876116],[76.79129,35.87019],[76.794069,35.862768],[76.798807,35.855815],[76.80156,35.853559],[76.802675,35.853566],[76.803779,35.850412],[76.804319,35.849977],[76.805975,35.849526],[76.806814,35.849532],[76.807637,35.847749],[76.811792,35.844804],[76.813447,35.844376],[76.815102,35.843943],[76.815377,35.843489],[76.816025,35.84333],[76.817149,35.84242],[76.820291,35.841354],[76.823237,35.839965],[76.824608,35.839738],[76.825061,35.839211],[76.826716,35.83809],[76.829472,35.836976],[76.830843,35.836754],[76.831405,35.836297],[76.83667,35.835408],[76.838047,35.83475],[76.838587,35.834297],[76.842983,35.834094],[76.844127,35.833957],[76.845219,35.833505],[76.853462,35.83276],[76.854024,35.832303],[76.857888,35.831163],[76.862052,35.828023],[76.863704,35.826902],[76.864797,35.826909],[76.865358,35.826473],[76.869712,35.822231],[76.875869,35.81525],[76.876351,35.814859],[76.877199,35.814154],[76.884726,35.807378],[76.885533,35.80715],[76.891344,35.802662],[76.893005,35.801082],[76.894943,35.799736],[76.900466,35.797506],[76.902774,35.795564],[76.903666,35.795341],[76.909584,35.79144],[76.917852,35.789757],[76.919081,35.78919],[76.928858,35.787416],[76.931325,35.786093],[76.935224,35.784057],[76.943179,35.783739],[76.956981,35.783848],[76.958913,35.784075],[76.96197,35.783166],[76.967733,35.783159],[76.972134,35.782049],[76.973534,35.781386],[76.977674,35.78139],[76.983452,35.779332],[76.989249,35.77888],[76.995575,35.776643],[77.000958,35.776277],[77.001655,35.776208],[77.003585,35.775545],[77.004433,35.775092],[77.020664,35.774643],[77.024802,35.775983],[77.033321,35.776417],[77.033872,35.77667],[77.03497,35.777107],[77.038289,35.778225],[77.039415,35.778222],[77.039947,35.778681],[77.04272,35.778679],[77.043807,35.77935],[77.044085,35.779795],[77.047113,35.780027],[77.048762,35.780923],[77.04901,35.781377],[77.05122,35.78181],[77.052625,35.782041],[77.053435,35.78273],[77.054521,35.783643],[77.057965,35.784179],[77.058658,35.784298],[77.060871,35.785191],[77.06207,35.786331],[77.063829,35.787795],[77.064732,35.788108],[77.065849,35.788338],[77.067186,35.790142],[77.067749,35.790147],[77.068867,35.790368],[77.069144,35.791061],[77.070233,35.792181],[77.074075,35.793272],[77.075384,35.794459],[77.076222,35.794689],[77.07877,35.796877],[77.079865,35.797107],[77.080143,35.797566],[77.081515,35.797791],[77.085848,35.797149],[77.093355,35.795985],[77.099972,35.795983],[77.105788,35.79868],[77.11334,35.798469],[77.113878,35.798033],[77.115668,35.79778],[77.116789,35.796867],[77.118167,35.796634],[77.119536,35.796414],[77.122574,35.786773],[77.126998,35.782704],[77.1281,35.78225],[77.136103,35.781807],[77.136387,35.781376],[77.141632,35.77146],[77.143542,35.769679],[77.145753,35.768537],[77.150626,35.767439],[77.153756,35.766294],[77.155412,35.766294],[77.158428,35.768071],[77.16036,35.768071],[77.164226,35.76674],[77.165325,35.764253],[77.165043,35.763587],[77.165607,35.760209],[77.165883,35.758635],[77.163157,35.744426],[77.163135,35.740521],[77.167282,35.734579],[77.169216,35.733464],[77.175316,35.731728],[77.180237,35.730963],[77.186036,35.731413],[77.18822,35.732789],[77.19373,35.732987],[77.198654,35.730606],[77.202833,35.72757],[77.207227,35.726467],[77.210529,35.726462],[77.211447,35.72671],[77.213097,35.727605],[77.217125,35.728696],[77.221018,35.728237],[77.222112,35.727116],[77.224582,35.714978],[77.225975,35.713376],[77.228187,35.712485],[77.239214,35.712707],[77.255714,35.709996],[77.25874,35.709986],[77.265622,35.709519],[77.266435,35.709082],[77.267836,35.709086],[77.270857,35.70997],[77.272226,35.711319],[77.274154,35.717846],[77.276112,35.719375],[77.277546,35.720405],[77.280173,35.718296],[77.282717,35.716262],[77.285457,35.711069],[77.286546,35.710614],[77.290412,35.709487],[77.292629,35.709278],[77.293189,35.708824],[77.298669,35.708127],[77.302752,35.704879],[77.307204,35.702056],[77.309693,35.701398],[77.310806,35.700025],[77.314112,35.699131],[77.315204,35.699126],[77.316567,35.700015],[77.321529,35.707201],[77.324999,35.71658],[77.326757,35.718663],[77.327599,35.71909],[77.338321,35.719535],[77.350846,35.718234],[77.355726,35.718223],[77.358438,35.71772],[77.369171,35.704424],[77.370251,35.699033],[77.369724,35.696771],[77.370814,35.69519],[77.374921,35.694065],[77.376293,35.693402],[77.380182,35.69383],[77.38209,35.693593],[77.383201,35.693133],[77.383764,35.692017],[77.385405,35.69044],[77.386501,35.689768],[77.388143,35.685722],[77.392167,35.68032],[77.393284,35.678857],[77.396948,35.669738],[77.401605,35.662533],[77.40326,35.661406],[77.404098,35.66118],[77.413265,35.661754],[77.422107,35.661621],[77.423082,35.660906],[77.425853,35.659782],[77.426416,35.659782],[77.426941,35.659326],[77.429346,35.656806],[77.429681,35.656393],[77.43021,35.654812],[77.431045,35.654582],[77.436577,35.645826],[77.437912,35.64109],[77.437342,35.639057],[77.435979,35.637277],[77.433782,35.632348],[77.433508,35.630315],[77.436797,35.622218],[77.436262,35.620392],[77.434861,35.619048],[77.431563,35.617937],[77.428169,35.613418],[77.427699,35.612781],[77.427137,35.610545],[77.428526,35.609193],[77.431907,35.60733],[77.437326,35.603293],[77.438971,35.602179],[77.443923,35.601037],[77.44504,35.600608],[77.44529,35.600148],[77.446403,35.599917],[77.446686,35.599453],[77.44777,35.598547],[77.453666,35.595812],[77.454976,35.594756],[77.45601,35.594505],[77.45685,35.593608],[77.464539,35.580062],[77.465599,35.573317],[77.4643,35.569616],[77.463382,35.568045],[77.460662,35.563225],[77.459809,35.555803],[77.461172,35.549714],[77.460893,35.548139],[77.460613,35.547708],[77.461976,35.546121],[77.462812,35.545894],[77.463378,35.545205],[77.465861,35.544287],[77.466665,35.544281],[77.46778,35.543158],[77.468871,35.542045],[77.471247,35.541575],[77.474958,35.539969],[77.478395,35.538862],[77.478644,35.538429],[77.479764,35.538198],[77.480036,35.537733],[77.482605,35.536614],[77.483692,35.536382],[77.486147,35.533681],[77.486597,35.532009],[77.486036,35.530587],[77.483686,35.527833],[77.482317,35.527372],[77.481223,35.527172],[77.480665,35.526493],[77.478458,35.524921],[77.475406,35.523805],[77.474871,35.523351],[77.474592,35.522892],[77.472414,35.521114],[77.469312,35.521599],[77.467719,35.522044],[77.463593,35.524063],[77.461941,35.525192],[77.451783,35.526581],[77.446556,35.524991],[77.445748,35.524313],[77.44132,35.518953],[77.440231,35.518059],[77.43529,35.517387],[77.432268,35.518283],[77.43116,35.518721],[77.430602,35.519181],[77.428696,35.521673],[77.427583,35.521679],[77.42541,35.523943],[77.424014,35.524152],[77.420721,35.525511],[77.419351,35.526432],[77.416613,35.527098],[77.413313,35.526665],[77.412758,35.527103],[77.408899,35.528233],[77.406699,35.529816],[77.405917,35.530912],[77.402629,35.534599],[77.400983,35.536884],[77.397489,35.540486],[77.396959,35.541635],[77.396126,35.541834],[77.395842,35.542568],[77.395096,35.542773],[77.391877,35.545822],[77.385541,35.548535],[77.384726,35.54854],[77.383893,35.549216],[77.381436,35.549224],[77.380591,35.549688],[77.378394,35.550348],[77.367295,35.550332],[77.359475,35.549654],[77.348687,35.547715],[77.345395,35.546823],[77.342657,35.544777],[77.337897,35.543385],[77.337543,35.542884],[77.331925,35.541199],[77.326693,35.537625],[77.324592,35.537236],[77.322228,35.536804],[77.320438,35.533971],[77.320804,35.532586],[77.325746,35.529187],[77.326975,35.527932],[77.328066,35.527927],[77.328961,35.527103],[77.329799,35.525982],[77.330663,35.525563],[77.332247,35.524579],[77.340787,35.513897],[77.342464,35.512221],[77.343253,35.510738],[77.343726,35.510138],[77.345923,35.50001],[77.347014,35.497217],[77.348689,35.493695],[77.351421,35.492571],[77.354441,35.492788],[77.357731,35.49505],[77.359104,35.49548],[77.36103,35.495271],[77.36628,35.493668],[77.367092,35.493203],[77.373696,35.481282],[77.374506,35.480619],[77.375596,35.480613],[77.3778,35.478363],[77.378889,35.478141],[77.379173,35.477677],[77.381926,35.47653],[77.384392,35.476325],[77.394275,35.474038],[77.406395,35.474469],[77.411019,35.473107],[77.413783,35.473099],[77.415177,35.472669],[77.417079,35.470838],[77.418201,35.470607],[77.418448,35.47017],[77.421656,35.468966],[77.423054,35.468744],[77.424507,35.467667],[77.425868,35.467223],[77.429438,35.464976],[77.430276,35.464061],[77.4372,35.462191],[77.439091,35.461711],[77.439628,35.461543],[77.444846,35.461332],[77.450596,35.462895],[77.451164,35.463579],[77.451717,35.463852],[77.451996,35.464284],[77.454007,35.464967],[77.454851,35.465876],[77.457476,35.467153],[77.458558,35.467358],[77.460238,35.469179],[77.463511,35.470272],[77.464345,35.47118],[77.464913,35.471869],[77.469849,35.47318],[77.473714,35.475182],[77.477346,35.476365],[77.480889,35.477932],[77.486895,35.480588],[77.487732,35.480587],[77.488569,35.48059],[77.492401,35.482817],[77.498461,35.483922],[77.50008,35.485035],[77.501735,35.485266],[77.502847,35.48526],[77.503412,35.485714],[77.50782,35.487057],[77.508913,35.48705],[77.51148,35.488141],[77.512464,35.488619],[77.516871,35.488606],[77.520728,35.48768],[77.525108,35.486108],[77.525662,35.485423],[77.526217,35.484742],[77.529233,35.484272],[77.529514,35.483839],[77.530321,35.483175],[77.534477,35.482199],[77.539953,35.481341],[77.550391,35.481972],[77.554227,35.483332],[77.555617,35.483559],[77.55534,35.484451],[77.55562,35.484882],[77.556155,35.484426],[77.560567,35.486245],[77.568831,35.485069],[77.572118,35.483486],[77.572679,35.483485],[77.572928,35.482795],[77.574295,35.481013],[77.575109,35.480781],[77.577058,35.479309],[77.577616,35.478844],[77.581988,35.475128],[77.584443,35.475122],[77.585816,35.475785],[77.591321,35.476448],[77.593798,35.476442],[77.595169,35.475754],[77.597649,35.475082],[77.603153,35.474627],[77.603706,35.473946],[77.604788,35.473029],[77.605602,35.473022],[77.614114,35.469637],[77.617685,35.469826],[77.622098,35.471639],[77.624029,35.472093],[77.62537,35.473643],[77.626773,35.474094],[77.627889,35.474317],[77.631752,35.477301],[77.633396,35.478323],[77.63449,35.47855],[77.635581,35.479686],[77.638076,35.48126],[77.63891,35.48192],[77.642758,35.488218],[77.644962,35.489103],[77.646052,35.489091],[77.646891,35.488432],[77.649343,35.487961],[77.650714,35.487273],[77.653737,35.483009],[77.658222,35.478897],[77.659033,35.478692],[77.664681,35.4735],[77.665792,35.47261],[77.670203,35.471017],[77.672357,35.470551],[77.678723,35.470529],[77.680093,35.47098],[77.683961,35.476813],[77.686138,35.477473],[77.68667,35.477701],[77.695217,35.477671],[77.696049,35.477205],[77.697143,35.477431],[77.701994,35.476681],[77.703649,35.476901],[77.708973,35.476477],[77.71526,35.475327],[77.722962,35.475528],[77.725458,35.477092],[77.72649,35.484881],[77.726057,35.488567],[77.724951,35.49107],[77.722797,35.498916],[77.722669,35.501228],[77.723929,35.51114],[77.724475,35.515145],[77.727051,35.521486],[77.727271,35.522075],[77.728934,35.523884],[77.733591,35.524548],[77.737442,35.523185],[77.740694,35.518663],[77.744817,35.515953],[77.745379,35.515947],[77.74537,35.51528],[77.748732,35.511043],[77.758333,35.502227],[77.759144,35.501967],[77.761067,35.50034],[77.761536,35.499901],[77.765354,35.497627],[77.766477,35.497619],[77.772806,35.495351],[77.778361,35.494639],[77.783781,35.494646],[77.785701,35.494837],[77.787072,35.495292],[77.787352,35.49575],[77.788167,35.495742],[77.791746,35.49731],[77.792026,35.497755],[77.793419,35.498187],[77.795074,35.499298],[77.797855,35.501323],[77.802251,35.505805],[77.803341,35.505805],[77.808312,35.511203],[77.812175,35.512504],[77.812169,35.512963],[77.815999,35.513381],[77.816555,35.512947],[77.818482,35.51294],[77.819043,35.512708],[77.819294,35.511815],[77.820411,35.511145],[77.823974,35.510677],[77.825658,35.510437],[77.827553,35.509511],[77.828105,35.508847],[77.831384,35.5068],[77.833334,35.505577],[77.839065,35.500908],[77.83987,35.499991],[77.84292,35.499111],[77.847282,35.495478],[77.849739,35.494806],[77.854672,35.492747],[77.855914,35.490939],[77.861244,35.483933],[77.862081,35.483015],[77.863138,35.483015],[77.863415,35.482343],[77.864525,35.481218],[77.867258,35.480527],[77.867538,35.480084],[77.868903,35.480079],[77.869187,35.48051],[77.87002,35.481196],[77.87251,35.482095],[77.873325,35.482097],[77.875547,35.484321],[77.879931,35.485856],[77.881857,35.485849],[77.885708,35.485392],[77.887079,35.484958],[77.88844,35.482917],[77.888568,35.482388],[77.889779,35.477742],[77.890996,35.476042],[77.894444,35.473216],[77.895533,35.472977],[77.89636,35.472289],[77.898066,35.471437],[77.89789,35.470196],[77.897887,35.469629],[77.901281,35.468054],[77.904491,35.468174],[77.905959,35.469317],[77.911113,35.478295],[77.912886,35.481446],[77.913389,35.482123],[77.914042,35.483013],[77.915366,35.48479],[77.918968,35.489732],[77.91929,35.492198],[77.920671,35.494232],[77.92204,35.494451],[77.92231,35.493991],[77.925321,35.493541],[77.925602,35.493085],[77.925883,35.492625],[77.929869,35.491412],[77.930529,35.490798],[77.932734,35.489438],[77.937396,35.484681],[77.939336,35.482746],[77.940194,35.481847],[77.940952,35.481621],[77.942837,35.479938],[77.945852,35.478803],[77.947498,35.478336],[77.953025,35.473026],[77.954297,35.471326],[77.956266,35.469517],[77.962002,35.467009],[77.963357,35.465404],[77.96445,35.465403],[77.969366,35.461121],[77.970747,35.459079],[77.971858,35.458178],[77.975436,35.457243],[77.976514,35.457243],[77.97707,35.456781],[77.978996,35.45588],[77.982543,35.455863],[77.986142,35.459683],[77.985871,35.46149],[77.984275,35.464633],[77.980997,35.468259],[77.979878,35.468476],[77.976682,35.470113],[77.975768,35.470755],[77.972488,35.473247],[77.970033,35.474173],[77.969196,35.474181],[77.96864,35.474634],[77.968922,35.475074],[77.967816,35.477082],[77.967539,35.477777],[77.965927,35.478235],[77.96509,35.479135],[77.96401,35.484543],[77.963768,35.487921],[77.964602,35.491511],[77.965454,35.493312],[77.964908,35.496012],[77.963545,35.497139],[77.962185,35.497605],[77.960021,35.500546],[77.957685,35.501284],[77.957404,35.501744],[77.953414,35.503048],[77.951493,35.504407],[77.951224,35.504858],[77.949383,35.505557],[77.944915,35.506017],[77.943798,35.506476],[77.941191,35.508894],[77.938765,35.510162],[77.937233,35.510557],[77.936954,35.511243],[77.935228,35.511821],[77.933665,35.512383],[77.931232,35.515753],[77.930955,35.517334],[77.932465,35.521737],[77.937639,35.532162],[77.941432,35.536708],[77.941878,35.537186],[77.942719,35.537417],[77.949636,35.545008],[77.95842,35.555658],[77.961177,35.559697],[77.962169,35.561815],[77.963983,35.566099],[77.965707,35.570022],[77.96656,35.571139],[77.966753,35.571596],[77.967308,35.574973],[77.966005,35.587578],[77.965183,35.589386],[77.961656,35.594363],[77.958636,35.598427],[77.957545,35.598427],[77.955913,35.600676],[77.95429,35.601323],[77.952481,35.606976],[77.955671,35.606551],[77.965125,35.603872],[77.969379,35.600147],[77.970506,35.600142],[77.977059,35.594283],[77.97826,35.593357],[77.979229,35.592441],[77.980887,35.58886],[77.982799,35.586816],[77.983613,35.586583],[77.985245,35.584334],[77.986363,35.583874],[77.987454,35.583873],[77.988538,35.582495],[77.991018,35.58184],[77.994851,35.581975],[77.997146,35.582542],[78.003685,35.583099],[78.009139,35.584386],[78.02434,35.587914],[78.04195,35.587386],[78.044143,35.585786],[78.045232,35.58556],[78.046319,35.585324],[78.048702,35.582408],[78.049535,35.582192],[78.05451,35.577253],[78.064886,35.565532],[78.066751,35.563902],[78.067907,35.562938],[78.072832,35.555494],[78.077711,35.549157],[78.081257,35.548913],[78.082376,35.549362],[78.084039,35.550699],[78.088206,35.555818],[78.089292,35.556267],[78.092875,35.556248],[78.097532,35.554436],[78.099745,35.552179],[78.101114,35.551492],[78.107713,35.552136],[78.111006,35.551884],[78.111813,35.55119],[78.113455,35.550497],[78.115101,35.550052],[78.118127,35.547569],[78.123848,35.54326],[78.125234,35.541668],[78.130159,35.539377],[78.130975,35.539367],[78.13209,35.5387],[78.137316,35.538869],[78.138684,35.539784],[78.139499,35.540459],[78.142831,35.541328],[78.144215,35.542436],[78.14728,35.549622],[78.148932,35.550279],[78.15391,35.550697],[78.154999,35.550465],[78.156665,35.552027],[78.156522,35.553043],[78.155651,35.559263],[78.15394,35.564988],[78.151585,35.571191],[78.151627,35.578164],[78.155275,35.587375],[78.159178,35.593636],[78.166484,35.613173],[78.165472,35.619444],[78.16512,35.620084],[78.164704,35.620975],[78.16161,35.626458],[78.162197,35.62938],[78.163043,35.630721],[78.163858,35.631171],[78.164971,35.63116],[78.165505,35.630707],[78.168243,35.630228],[78.171259,35.627078],[78.172623,35.626184],[78.173748,35.626173],[78.175909,35.623897],[78.176989,35.623229],[78.179191,35.622294],[78.182801,35.622503],[78.185264,35.623374],[78.186081,35.624031],[78.190879,35.636613],[78.19759,35.646465],[78.198499,35.648585],[78.199801,35.653624],[78.199207,35.65724],[78.197718,35.666254],[78.197996,35.667161],[78.199663,35.669158],[78.200843,35.669157],[78.203075,35.669027],[78.206915,35.666926],[78.20978,35.663703],[78.210887,35.663242],[78.214447,35.660309],[78.217652,35.65915],[78.219012,35.658017],[78.220719,35.65709],[78.222414,35.656194],[78.224605,35.654601],[78.228989,35.653449],[78.229825,35.652531],[78.230342,35.651866],[78.23118,35.651856],[78.231996,35.651856],[78.232276,35.651395],[78.236121,35.649797],[78.23639,35.649332],[78.240768,35.647981],[78.24215,35.647964],[78.249285,35.646543],[78.24984,35.646107],[78.251491,35.645206],[78.255073,35.645634],[78.25647,35.64878],[78.256465,35.651272],[78.257073,35.654608],[78.25932,35.658428],[78.259993,35.659155],[78.261289,35.659622],[78.263477,35.661525],[78.26761,35.663307],[78.268983,35.663497],[78.270643,35.665061],[78.272074,35.66889],[78.269062,35.676342],[78.268299,35.678143],[78.2714,35.688247],[78.270467,35.692889],[78.26899,35.697238],[78.270976,35.703078],[78.270572,35.705319],[78.268552,35.708029],[78.267454,35.710956],[78.269196,35.717455],[78.273342,35.721954],[78.274242,35.72208],[78.276715,35.723432],[78.281091,35.724586],[78.283272,35.725372],[78.289356,35.725653],[78.292925,35.724506],[78.293452,35.723593],[78.294257,35.723583],[78.296185,35.722653],[78.303335,35.721275],[78.317662,35.721177],[78.318493,35.720708],[78.319611,35.720247],[78.338858,35.720554],[78.341377,35.722571],[78.343023,35.722785],[78.344959,35.722979],[78.34608,35.723885],[78.350201,35.724081],[78.357396,35.727182],[78.359553,35.727391],[78.360388,35.727822],[78.360948,35.727611],[78.361485,35.728044],[78.367312,35.729111],[78.368695,35.730023],[78.368978,35.730467],[78.371202,35.731342],[78.371782,35.731483],[78.378623,35.732631],[78.378918,35.733088],[78.381133,35.734197],[78.384731,35.735288],[78.386102,35.735508],[78.386667,35.736156],[78.388045,35.73661],[78.39055,35.738387],[78.392794,35.742411],[78.396128,35.744857],[78.39751,35.746192],[78.399819,35.756297],[78.404535,35.761211],[78.405633,35.761433],[78.40675,35.76165],[78.41259,35.765859],[78.416311,35.779322],[78.417961,35.781981],[78.419081,35.782202],[78.42045,35.782188],[78.421009,35.782638],[78.421027,35.783529],[78.423221,35.785321],[78.424875,35.785444],[78.42734,35.784994],[78.435895,35.784352],[78.43784,35.783196],[78.442232,35.782242],[78.443318,35.781348],[78.443586,35.780909],[78.445239,35.780668],[78.446078,35.780657],[78.447719,35.779737],[78.447998,35.779276],[78.452917,35.778367],[78.456227,35.776971],[78.456485,35.776505],[78.456753,35.776054],[78.458071,35.775944],[78.45835,35.77551],[78.459994,35.775498],[78.463628,35.774676],[78.46475,35.7742],[78.472522,35.773819],[78.477506,35.77394],[78.481387,35.773407],[78.488528,35.773461],[78.506321,35.772509],[78.509075,35.77269],[78.512917,35.77088],[78.513673,35.770688],[78.517564,35.766162],[78.521269,35.763769],[78.524715,35.766618],[78.535299,35.775415],[78.543323,35.779157],[78.543579,35.779842],[78.543868,35.780524],[78.551209,35.783522],[78.552671,35.784425],[78.554374,35.786143],[78.555281,35.786888],[78.556669,35.788429],[78.558876,35.790691],[78.560258,35.792051],[78.560545,35.792481],[78.562207,35.792693],[78.566891,35.791104],[78.56961,35.788819],[78.573446,35.789013],[78.574851,35.789659],[78.57766,35.792793],[78.577922,35.793677],[78.578231,35.795932],[78.57796,35.796829],[78.578552,35.802554],[78.579112,35.805243],[78.579149,35.80581],[78.580573,35.808061],[78.58881,35.810704],[78.589961,35.811357],[78.606483,35.813195],[78.607043,35.813644],[78.607693,35.813731],[78.610946,35.813865],[78.619518,35.817148],[78.620662,35.818484],[78.624159,35.821259],[78.625818,35.821928],[78.628175,35.824024],[78.630928,35.824689],[78.634551,35.828009],[78.635292,35.829076],[78.64152,35.837442],[78.6422,35.837645],[78.644883,35.840287],[78.647686,35.842274],[78.658193,35.853954],[78.658862,35.854094],[78.65997,35.855195],[78.664954,35.857387],[78.670483,35.857933],[78.671289,35.858011],[78.673236,35.858678],[78.673797,35.859128],[78.680969,35.859061],[78.686184,35.856759],[78.69141,35.856277],[78.692262,35.856697],[78.69895,35.858091],[78.703305,35.85954],[78.70359,35.859969],[78.707198,35.861277],[78.707732,35.861938],[78.710255,35.863719],[78.710807,35.863714],[78.711374,35.864388],[78.71357,35.8648],[78.714419,35.865687],[78.714704,35.866143],[78.715521,35.866131],[78.71661,35.866351],[78.718852,35.868336],[78.722727,35.868761],[78.723288,35.868517],[78.73043,35.868678],[78.731515,35.868214],[78.741202,35.867911],[78.743954,35.868322],[78.748622,35.866954],[78.751107,35.866931],[78.753615,35.867722],[78.756907,35.868883],[78.759683,35.868854],[78.766301,35.869247],[78.768773,35.86967],[78.774549,35.86825],[78.775098,35.867557],[78.776199,35.867335],[78.776748,35.866651],[78.779219,35.864848],[78.780304,35.86437],[78.781695,35.863931],[78.7833,35.862315],[78.784386,35.86141],[78.786301,35.860502],[78.790154,35.859324],[78.79242,35.858975],[78.794678,35.858748],[78.799519,35.857905],[78.800073,35.857446],[78.802284,35.856967],[78.803366,35.856264],[78.804172,35.856261],[78.80445,35.8558],[78.810748,35.855367],[78.823759,35.855833],[78.82792,35.857156],[78.833689,35.857101],[78.840915,35.859033],[78.850847,35.859845],[78.85914,35.86199],[78.863288,35.862175],[78.870506,35.865342],[78.873826,35.866339],[78.88016,35.866929],[78.881536,35.867144],[78.88377,35.868265],[78.890954,35.869057],[78.894556,35.870613],[78.895683,35.870598],[78.897589,35.870812],[78.897875,35.871241],[78.898994,35.871226],[78.913658,35.875571],[78.918362,35.875744],[78.918625,35.876195],[78.921663,35.87705],[78.928308,35.877644],[78.930498,35.877622],[78.931347,35.878068],[78.939914,35.879577],[78.941874,35.881103],[78.943806,35.881542],[78.945183,35.881757],[78.945751,35.882404],[78.946295,35.883063],[78.947137,35.883059],[78.948793,35.883492],[78.953006,35.887531],[78.954099,35.887956],[78.956629,35.890079],[78.958299,35.891699],[78.960506,35.892593],[78.963813,35.89255],[78.965454,35.891854],[78.966004,35.891178],[78.967917,35.88981],[78.969035,35.889803],[78.970397,35.888872],[78.973723,35.884244],[78.973674,35.883147],[78.97548,35.880069],[78.977389,35.878476],[78.978223,35.878238],[78.978751,35.877545],[78.980144,35.877076],[78.980707,35.877066],[78.985186,35.873132],[78.985749,35.873136],[78.986416,35.872987],[78.989852,35.868835],[78.990118,35.867466],[78.991312,35.867091],[78.991589,35.866629],[78.993464,35.865031],[78.994858,35.864122],[78.99673,35.862276],[78.997294,35.862266],[78.998127,35.862055],[79.003559,35.857501],[79.003822,35.856815],[79.004639,35.856802],[79.005203,35.856791],[79.008545,35.854019],[79.010468,35.853553],[79.010974,35.85317],[79.012054,35.85247],[79.016154,35.851504],[79.017509,35.850375],[79.021639,35.848748],[79.027142,35.847799],[79.027971,35.847327],[79.041193,35.847383],[79.053837,35.846145],[79.06376,35.846482],[79.073393,35.844749],[79.080558,35.844005],[79.08168,35.844222],[79.085028,35.843219],[79.09183,35.841174],[79.099161,35.840425],[79.103376,35.839714],[79.104209,35.839476],[79.104486,35.839023],[79.105039,35.838554],[79.115502,35.83756],[79.117668,35.836623],[79.130882,35.836006],[79.132534,35.836217],[79.139498,35.838598],[79.142807,35.840566],[79.145238,35.841882],[79.150351,35.846349],[79.150903,35.846338],[79.151929,35.847219],[79.152495,35.847209],[79.154201,35.848768],[79.155737,35.850088],[79.157022,35.850306],[79.169374,35.861838],[79.17049,35.86183],[79.171769,35.862928],[79.173166,35.86449],[79.173987,35.864755],[79.175413,35.866083],[79.178873,35.869143],[79.179425,35.870031],[79.180271,35.870246],[79.183952,35.876022],[79.185568,35.877212],[79.192877,35.885575],[79.19405,35.886924],[79.197829,35.898565],[79.196631,35.902394],[79.194697,35.909149],[79.192769,35.910771],[79.18838,35.926579],[79.188115,35.927428],[79.187889,35.930806],[79.189064,35.942797],[79.189643,35.945397],[79.189809,35.947195],[79.194383,35.955395],[79.198308,35.96081],[79.198038,35.961469],[79.202646,35.96655],[79.208403,35.972117],[79.212736,35.976275],[79.213019,35.976937],[79.213583,35.97693],[79.21461,35.977878],[79.215463,35.978781],[79.216565,35.97897],[79.219048,35.980055],[79.22048,35.981639],[79.221575,35.982052],[79.222418,35.982047],[79.22408,35.98223],[79.224625,35.982677],[79.225465,35.982672],[79.230118,35.984526],[79.232937,35.985042],[79.233501,35.985489],[79.237385,35.985901],[79.237934,35.985657],[79.241821,35.986752],[79.2902,35.98972],[79.300103,35.989522],[79.344827,35.988569],[79.35425,35.989997],[79.362241,35.990112],[79.363377,35.990768],[79.366439,35.992298],[79.367815,35.992505],[79.368641,35.993182],[79.374213,35.994222],[79.375585,35.994204],[79.378072,35.995287],[79.380262,35.995255],[79.384674,35.994286],[79.386817,35.990466],[79.388521,35.977847],[79.391705,35.971073],[79.391753,35.970417],[79.391549,35.969729],[79.392104,35.966235],[79.392537,35.954904],[79.396719,35.94271],[79.39961,35.934132],[79.403141,35.918792],[79.406095,35.913382],[79.409091,35.910287],[79.412866,35.904736],[79.416874,35.900408],[79.417698,35.899709],[79.418825,35.8997],[79.422067,35.896528],[79.425634,35.895124],[79.427173,35.895013],[79.430223,35.894978],[79.436349,35.894297],[79.437465,35.893824],[79.441294,35.893566],[79.442133,35.89312],[79.444589,35.892952],[79.449298,35.891421],[79.453754,35.891224],[79.456596,35.890613],[79.470227,35.889805],[79.472974,35.889971],[79.474377,35.889495],[79.483463,35.88843],[79.486161,35.887759],[79.495246,35.887633],[79.496637,35.887174],[79.497752,35.886723],[79.503245,35.886649],[79.504073,35.886175],[79.504901,35.88571],[79.507928,35.885665],[79.508734,35.8852],[79.512584,35.884455],[79.516582,35.88399],[79.517244,35.883524],[79.518374,35.883514],[79.521626,35.881177],[79.525468,35.879803],[79.528751,35.877214],[79.529314,35.877215],[79.530646,35.876342],[79.530888,35.875889],[79.53473,35.874506],[79.535277,35.873811],[79.535821,35.873129],[79.540467,35.871276],[79.541864,35.869976],[79.545646,35.868278],[79.546998,35.867135],[79.553028,35.864584],[79.554949,35.864144],[79.5555,35.863642],[79.556865,35.863407],[79.557137,35.862954],[79.559859,35.86177],[79.560698,35.861754],[79.561617,35.861217],[79.564513,35.860586],[79.57057,35.859374],[79.571122,35.858916],[79.573032,35.85889],[79.576332,35.857468],[79.584871,35.856932],[79.586511,35.856198],[79.590106,35.855321],[79.597193,35.852456],[79.605141,35.851018],[79.605692,35.850547],[79.607875,35.850292],[79.615003,35.847943],[79.619703,35.847648],[79.623335,35.845651],[79.629073,35.844306],[79.632289,35.843741],[79.634196,35.842792],[79.635311,35.842233],[79.639441,35.841284],[79.640523,35.841264],[79.643252,35.840078],[79.644328,35.839379],[79.650684,35.839082],[79.655337,35.836744],[79.657237,35.836712],[79.657787,35.836273],[79.665506,35.835272],[79.669855,35.833145],[79.676434,35.831723],[79.677264,35.831023],[79.678888,35.829884],[79.683518,35.828697],[79.686813,35.826859],[79.696151,35.824889],[79.702945,35.821412],[79.712006,35.81949],[79.715271,35.817427],[79.716357,35.817181],[79.718474,35.811299],[79.719831,35.810825],[79.721487,35.810801],[79.722827,35.807858],[79.72497,35.806045],[79.726884,35.805324],[79.727506,35.805177],[79.735389,35.80339],[79.737537,35.802009],[79.745245,35.80077],[79.746049,35.800322],[79.754055,35.800199],[79.758426,35.799216],[79.761511,35.799458],[79.76342,35.799591],[79.764505,35.799345],[79.776631,35.798017],[79.786,35.798326],[79.787886,35.797838],[79.793958,35.797288],[79.796442,35.797246],[79.803008,35.795126],[79.815406,35.793809],[79.826311,35.790511],[79.831597,35.790008],[79.837602,35.789411],[79.841161,35.787989],[79.847188,35.787455],[79.855994,35.785277],[79.863964,35.784695],[79.868877,35.782828],[79.871093,35.783027],[79.875561,35.78496],[79.876104,35.78541],[79.876656,35.785397],[79.882567,35.790464],[79.888428,35.796578],[79.890273,35.797735],[79.899496,35.807066],[79.90524,35.812968],[79.906054,35.813189],[79.910174,35.817229],[79.911303,35.817216],[79.913813,35.819407],[79.914914,35.819614],[79.915466,35.819614],[79.918553,35.82225],[79.923984,35.82424],[79.924524,35.824919],[79.926042,35.825162],[79.929699,35.826998],[79.929988,35.827448],[79.935544,35.829145],[79.936405,35.829811],[79.936672,35.830265],[79.939449,35.830675],[79.939739,35.831102],[79.941116,35.831305],[79.942234,35.832434],[79.946779,35.833865],[79.948968,35.834284],[79.949457,35.83476],[79.950285,35.835426],[79.953078,35.836061],[79.953652,35.836713],[79.95392,35.837167],[79.955319,35.837356],[79.955863,35.837801],[79.960285,35.838863],[79.972202,35.840673],[79.986257,35.840207],[79.986829,35.840423],[79.988474,35.840396],[79.999177,35.837753],[80.002672,35.834309],[80.003235,35.8343],[80.008662,35.831513],[80.010059,35.831256],[80.01352,35.827178],[80.014083,35.827178],[80.017583,35.823963],[80.027564,35.812457],[80.032175,35.806332],[80.0325,35.805941],[80.033659,35.80479],[80.038239,35.799762],[80.039523,35.796151],[80.043971,35.786645],[80.045063,35.785278],[80.047621,35.777808],[80.048401,35.775325],[80.049738,35.772614],[80.05132,35.768611],[80.052786,35.765409],[80.057489,35.752878],[80.058235,35.749937],[80.062274,35.745393],[80.065015,35.744425],[80.066091,35.743521],[80.066352,35.743053],[80.069085,35.741231],[80.070439,35.740771],[80.073622,35.737109],[80.074734,35.736628],[80.075254,35.73593],[80.075806,35.735925],[80.07607,35.735255],[80.078524,35.733635],[80.079889,35.733158],[80.081752,35.730661],[80.082314,35.730647],[80.083938,35.72927],[80.084194,35.728582],[80.08528,35.728127],[80.085796,35.727663],[80.088177,35.725179],[80.088493,35.724689],[80.089804,35.722201],[80.092309,35.71226],[80.096492,35.702726],[80.099951,35.697736],[80.102565,35.691014],[80.103281,35.687091],[80.105642,35.683005],[80.106194,35.683005],[80.108102,35.680925],[80.111073,35.680006],[80.111894,35.679079],[80.112434,35.678386],[80.113553,35.678133],[80.11463,35.67766],[80.115423,35.676985],[80.119602,35.67641],[80.12063,35.676234],[80.124446,35.674149],[80.13294,35.672631],[80.133202,35.672167],[80.139769,35.670493],[80.140838,35.669795],[80.141942,35.669083],[80.146349,35.668549],[80.14739,35.667657],[80.152351,35.667117],[80.152623,35.666654],[80.155331,35.665459],[80.159719,35.664947],[80.160264,35.664483],[80.168214,35.662537],[80.169868,35.662499],[80.174479,35.660407],[80.183255,35.6589],[80.186238,35.657272],[80.187881,35.657235],[80.189534,35.65721],[80.191231,35.656678],[80.192975,35.655888],[80.193902,35.655123],[80.196768,35.654449],[80.197859,35.654434],[80.198407,35.653961],[80.202101,35.653138],[80.208338,35.6499],[80.215478,35.648875],[80.216546,35.648167],[80.217649,35.647459],[80.22397,35.64648],[80.225327,35.645767],[80.226395,35.645064],[80.230795,35.644293],[80.234046,35.642228],[80.237336,35.641936],[80.240987,35.640311],[80.241259,35.639856],[80.242674,35.639553],[80.243571,35.638661],[80.247091,35.636361],[80.247607,35.635663],[80.250909,35.634479],[80.252518,35.6331],[80.253059,35.632407],[80.259599,35.630053],[80.260424,35.629367],[80.262647,35.628847],[80.26394,35.627954],[80.267206,35.626977],[80.271283,35.624212],[80.271821,35.623514],[80.274258,35.622799],[80.275322,35.621668],[80.275884,35.621654],[80.282224,35.614935],[80.282998,35.614691],[80.285505,35.611348],[80.286333,35.610644],[80.289595,35.608349],[80.290942,35.607424],[80.291504,35.607418],[80.294676,35.602396],[80.295322,35.600554],[80.297782,35.594268],[80.298406,35.592476],[80.300617,35.588116],[80.302053,35.581116],[80.30597,35.572721],[80.305649,35.571142],[80.306824,35.562575],[80.311299,35.554169],[80.312547,35.549409],[80.312246,35.548964],[80.315966,35.529617],[80.31682,35.526141],[80.317602,35.522997],[80.320139,35.504703],[80.321451,35.498484],[80.327118,35.476874],[80.328156,35.475049],[80.328644,35.472576],[80.328014,35.469651],[80.326316,35.466782],[80.32351,35.465261],[80.3213,35.465076],[80.320189,35.4642],[80.319429,35.464174],[80.318021,35.463515],[80.31,35.463255],[80.309434,35.462806],[80.305845,35.462213],[80.304999,35.462017],[80.304709,35.461572],[80.30334,35.461822],[80.301434,35.462523],[80.300326,35.461656],[80.29975,35.461207],[80.297564,35.460792],[80.296132,35.459326],[80.295556,35.458882],[80.291078,35.454252],[80.289647,35.452813],[80.281077,35.44086],[80.280755,35.439487],[80.28129,35.427883],[80.28243,35.417979],[80.283186,35.414492],[80.283864,35.409492],[80.284045,35.395973],[80.28355,35.387877],[80.281525,35.382012],[80.274985,35.363264],[80.270924,35.344231],[80.266542,35.334387],[80.256272,35.31774],[80.254533,35.314287],[80.252794,35.310659],[80.248112,35.30116],[80.241262,35.290493],[80.239714,35.287566],[80.23567,35.276628],[80.231672,35.26004],[80.229843,35.251747],[80.230072,35.249705],[80.228867,35.237275],[80.228689,35.228096],[80.226028,35.221146],[80.226002,35.220019],[80.222368,35.214071],[80.220722,35.211896],[80.214917,35.203787],[80.194633,35.182525],[80.19096,35.177288],[80.183537,35.166731],[80.178411,35.14789],[80.1789,35.146091],[80.17845,35.139118],[80.177859,35.136856],[80.179857,35.124407],[80.179598,35.124006],[80.180249,35.117604],[80.183837,35.091023],[80.185874,35.063219],[80.185402,35.057642],[80.183916,35.040508],[80.181223,35.029702],[80.177637,35.018521],[80.176638,35.010982],[80.176281,35.008623],[80.174756,35.002329],[80.170891,34.988861],[80.170048,34.987436],[80.167174,34.982626],[80.160299,34.971023],[80.150959,34.947751],[80.149797,34.9456],[80.148021,34.942376],[80.141527,34.930323],[80.136581,34.919134],[80.130052,34.908876],[80.123674,34.893427],[80.122804,34.892318],[80.120257,34.889202],[80.119447,34.889221],[80.110555,34.872942],[80.106846,34.868035],[80.106066,34.867566],[80.105244,34.866917],[80.093943,34.856807],[80.09316,34.856591],[80.09015,34.853867],[80.088499,34.853669],[80.084023,34.848798],[80.073522,34.829113],[80.07315,34.828432],[80.071861,34.821022],[80.06966,34.809117],[80.069028,34.805051],[80.068016,34.7962],[80.067025,34.790644],[80.067602,34.784785],[80.068202,34.77829],[80.068866,34.775978],[80.070683,34.760124],[80.070388,34.759443],[80.070086,34.758554],[80.071402,34.754319],[80.072786,34.746098],[80.07269,34.737394],[80.072336,34.735566],[80.072554,34.733083],[80.071183,34.723318],[80.070848,34.721074],[80.071069,34.719711],[80.070199,34.718149],[80.06904,34.714777],[80.065703,34.712128],[80.063502,34.711705],[80.062649,34.711055],[80.061851,34.711073],[80.05939,34.710451],[80.059102,34.709995],[80.057967,34.709097],[80.051394,34.706512],[80.050563,34.706521],[80.047537,34.705664],[80.045899,34.705484],[80.044485,34.704383],[80.039286,34.704014],[80.037921,34.70335],[80.036543,34.70271],[80.032333,34.702029],[80.031182,34.701474],[80.026404,34.700851],[80.024211,34.699921],[80.02282,34.699344],[80.019504,34.698947],[80.018145,34.698974],[80.015939,34.698184],[80.013353,34.697891],[80.011976,34.697241],[80.005647,34.695796],[79.998122,34.694595],[79.996419,34.693774],[79.994815,34.693051],[79.991592,34.692757],[79.991032,34.692337],[79.986861,34.69208],[79.985797,34.69157],[79.979749,34.690368],[79.978666,34.690395],[79.974517,34.688674],[79.965181,34.687462],[79.960775,34.685511],[79.953672,34.684055],[79.950043,34.682076],[79.946241,34.681903],[79.945397,34.681488],[79.944561,34.681063],[79.936394,34.681643],[79.934776,34.682333],[79.933136,34.682359],[79.932067,34.682833],[79.932359,34.683497],[79.931038,34.685334],[79.930772,34.686025],[79.927778,34.687216],[79.917465,34.688493],[79.915302,34.689675],[79.903556,34.690337],[79.900303,34.691261],[79.877916,34.691409],[79.860666,34.688754],[79.86038,34.688325],[79.857366,34.687478],[79.856241,34.686814],[79.851834,34.683279],[79.851274,34.682858],[79.849877,34.68265],[79.843737,34.675961],[79.842896,34.675283],[79.840665,34.673511],[79.838716,34.671987],[79.834073,34.670023],[79.8335,34.66911],[79.832111,34.668012],[79.831549,34.667578],[79.824838,34.661132],[79.822323,34.656378],[79.821687,34.65421],[79.820422,34.646979],[79.816542,34.643439],[79.812148,34.642391],[79.804256,34.642978],[79.80314,34.642539],[79.795694,34.637905],[79.79405,34.637705],[79.788431,34.634198],[79.787697,34.633745],[79.785774,34.633088],[79.784008,34.632354],[79.780498,34.630679],[79.778021,34.628706],[79.775911,34.627593],[79.773776,34.625616],[79.771977,34.622475],[79.772628,34.620452],[79.774662,34.61812],[79.777066,34.616931],[79.778771,34.615185],[79.779412,34.61258],[79.780418,34.610843],[79.781094,34.610252],[79.782784,34.607639],[79.784442,34.606042],[79.78732,34.600621],[79.792521,34.592588],[79.793015,34.589639],[79.792448,34.588979],[79.788308,34.587212],[79.782049,34.586007],[79.781511,34.585559],[79.777651,34.585139],[79.777365,34.584682],[79.775739,34.583993],[79.771013,34.582076],[79.764027,34.573837],[79.758976,34.566028],[79.758026,34.560367],[79.758461,34.554716],[79.759515,34.553349],[79.761923,34.551979],[79.766854,34.551674],[79.76958,34.552523],[79.775028,34.551997],[79.776305,34.550946],[79.776839,34.549817],[79.782489,34.544421],[79.783307,34.543944],[79.785205,34.543481],[79.785476,34.543016],[79.787088,34.542078],[79.788169,34.542057],[79.790075,34.541802],[79.79248,34.538823],[79.793548,34.538368],[79.79899,34.537588],[79.802744,34.535948],[79.803576,34.535931],[79.804091,34.535241],[79.805735,34.534339],[79.809236,34.532215],[79.810291,34.531308],[79.814572,34.521893],[79.815227,34.520168],[79.815225,34.516174],[79.814978,34.508416],[79.812914,34.503814],[79.814544,34.500066],[79.812399,34.496914],[79.805997,34.496586],[79.80435,34.495943],[79.803577,34.494695],[79.803292,34.494238],[79.802618,34.494066],[79.800575,34.490588],[79.79923,34.488427],[79.797332,34.486559],[79.796257,34.486368],[79.795417,34.48638],[79.794319,34.485498],[79.794033,34.485055],[79.791832,34.484166],[79.79022,34.483983],[79.789934,34.483554],[79.788581,34.483579],[79.782726,34.482067],[79.781139,34.481704],[79.779868,34.481472],[79.768849,34.480494],[79.767483,34.480063],[79.759215,34.48035],[79.755383,34.480941],[79.743533,34.481335],[79.738901,34.480948],[79.733681,34.478785],[79.733395,34.478328],[79.724931,34.478694],[79.722988,34.478632],[79.71679,34.478595],[79.707011,34.479636],[79.698237,34.478441],[79.697156,34.478466],[79.695783,34.477795],[79.69389,34.47851],[79.693073,34.47896],[79.684622,34.478656],[79.681707,34.479708],[79.680455,34.480722],[79.678264,34.481667],[79.673007,34.483568],[79.668935,34.483628],[79.668377,34.48318],[79.666452,34.482747],[79.665336,34.481872],[79.664528,34.48188],[79.663132,34.479654],[79.662016,34.479674],[79.660948,34.480147],[79.660424,34.48128],[79.659072,34.48176],[79.654762,34.484987],[79.6524,34.488398],[79.651327,34.488649],[79.647504,34.488686],[79.64371,34.490124],[79.629244,34.489651],[79.624088,34.490882],[79.620817,34.490699],[79.608858,34.491977],[79.607131,34.492696],[79.602893,34.494363],[79.597311,34.500318],[79.596246,34.500777],[79.593252,34.500824],[79.591037,34.499725],[79.589105,34.498171],[79.587983,34.497522],[79.587134,34.496851],[79.584954,34.494514],[79.583853,34.493405],[79.58307,34.493195],[79.582814,34.492462],[79.580214,34.48993],[79.575009,34.488679],[79.573923,34.488003],[79.572802,34.487327],[79.571972,34.487343],[79.570883,34.486694],[79.567506,34.485782],[79.565872,34.485574],[79.565303,34.485125],[79.564641,34.484925],[79.563084,34.484749],[79.562548,34.484292],[79.561907,34.4841],[79.55632,34.482545],[79.554139,34.481938],[79.552506,34.481758],[79.545656,34.479833],[79.543483,34.478955],[79.537432,34.478125],[79.533907,34.477993],[79.528429,34.476469],[79.516988,34.475967],[79.513116,34.474898],[79.50851,34.47428],[79.50767,34.472266],[79.509465,34.467929],[79.520419,34.455804],[79.525485,34.448945],[79.527305,34.445538],[79.528141,34.43699],[79.528305,34.428123],[79.526927,34.421629],[79.527099,34.420247],[79.528139,34.417985],[79.530829,34.415674],[79.531636,34.415658],[79.531897,34.415194],[79.534594,34.414491],[79.538527,34.411637],[79.539423,34.411024],[79.541876,34.410091],[79.543496,34.409838],[79.550623,34.410164],[79.559601,34.411182],[79.561209,34.410011],[79.56192,34.405271],[79.560731,34.399415],[79.554874,34.391603],[79.55398,34.387962],[79.560466,34.371385],[79.561963,34.364522],[79.562191,34.36346],[79.562366,34.358244],[79.561257,34.342902],[79.559842,34.335023],[79.559819,34.334011],[79.559568,34.332432],[79.562811,34.324348],[79.570299,34.31702],[79.575731,34.303804],[79.590098,34.286183],[79.590635,34.285944],[79.59191,34.282782],[79.592162,34.281652],[79.590893,34.277675],[79.590029,34.273182],[79.590276,34.272771],[79.587997,34.263849],[79.587215,34.257977],[79.587433,34.256386],[79.58574,34.244447],[79.584232,34.238356],[79.579192,34.229159],[79.572384,34.222873],[79.571606,34.222672],[79.569211,34.220482],[79.567024,34.219847],[79.564824,34.217834],[79.562631,34.217412],[79.561803,34.217419],[79.560717,34.216769],[79.559631,34.21612],[79.552018,34.215616],[79.550079,34.215113],[79.54896,34.214463],[79.546416,34.208622],[79.544483,34.207292],[79.543655,34.207303],[79.543368,34.20685],[79.540088,34.205543],[79.537109,34.205815],[79.535804,34.206685],[79.534213,34.207748],[79.531189,34.209739],[79.530116,34.209984],[79.529042,34.21023],[79.528773,34.2107],[79.528234,34.211386],[79.526148,34.211792],[79.525637,34.212256],[79.519591,34.212854],[79.518197,34.212208],[79.514094,34.211133],[79.512181,34.210933],[79.511919,34.21048],[79.511091,34.210496],[79.507226,34.205795],[79.494778,34.179971],[79.491818,34.166681],[79.492056,34.165764],[79.491068,34.161966],[79.489712,34.157203],[79.489965,34.156529],[79.489037,34.151121],[79.489272,34.148846],[79.49404,34.141106],[79.49474,34.135878],[79.493272,34.133829],[79.487252,34.126265],[79.477684,34.116725],[79.472564,34.111538],[79.468135,34.107534],[79.467439,34.107405],[79.466884,34.107417],[79.466114,34.106274],[79.461236,34.101983],[79.459851,34.101608],[79.456835,34.099761],[79.450269,34.096939],[79.446208,34.096546],[79.441812,34.094577],[79.434204,34.093312],[79.432564,34.092664],[79.430351,34.090901],[79.42973,34.089966],[79.429173,34.089978],[79.424757,34.082597],[79.42035,34.078129],[79.419568,34.076135],[79.416351,34.067545],[79.414426,34.063203],[79.414229,34.055826],[79.414489,34.054904],[79.415275,34.053766],[79.417949,34.052368],[79.420327,34.048041],[79.421421,34.047796],[79.422491,34.047551],[79.424642,34.045725],[79.430033,34.043399],[79.432114,34.039741],[79.435044,34.036985],[79.436378,34.034691],[79.437892,34.028554],[79.437612,34.027893],[79.433741,34.022978],[79.427117,34.018091],[79.426577,34.017433],[79.425863,34.017367],[79.420542,34.01457],[79.419708,34.014354],[79.414317,34.014861],[79.412147,34.015564],[79.407045,34.020185],[79.405738,34.022226],[79.405757,34.023349],[79.404409,34.023828],[79.403905,34.02451],[79.400638,34.025698],[79.399856,34.026609],[79.398758,34.02708],[79.392961,34.028123],[79.391653,34.029227],[79.382293,34.031144],[79.38095,34.031859],[79.375652,34.033396],[79.372492,34.033746],[79.366637,34.034879],[79.365393,34.0351],[79.356315,34.036491],[79.355533,34.036941],[79.353073,34.036972],[79.344922,34.037778],[79.341686,34.038508],[79.332872,34.039682],[79.325106,34.040244],[79.324094,34.040312],[79.321097,34.041042],[79.305956,34.04304],[79.296993,34.043157],[79.294535,34.042748],[79.284454,34.039941],[79.274394,34.039409],[79.272237,34.040097],[79.269007,34.043342],[79.268796,34.043992],[79.264468,34.045856],[79.264196,34.046326],[79.263659,34.046993],[79.262832,34.047008],[79.262593,34.047464],[79.260178,34.048422],[79.258279,34.048653],[79.253501,34.049818],[79.252957,34.050286],[79.251051,34.050309],[79.247734,34.051299],[79.237937,34.051192],[79.236871,34.051662],[79.231183,34.052614],[79.219792,34.052761],[79.21379,34.05219],[79.211041,34.05115],[79.210265,34.050857],[79.207003,34.050439],[79.200726,34.050907],[79.198854,34.051464],[79.198054,34.051243],[79.19373,34.054703],[79.188708,34.06177],[79.18791,34.06201],[79.183207,34.066305],[79.179881,34.070248],[79.178835,34.07208],[79.177214,34.072561],[79.171236,34.072867],[79.168236,34.071757],[79.167074,34.068136],[79.164891,34.066604],[79.161088,34.066423],[79.153505,34.068308],[79.151628,34.068104],[79.149643,34.06518],[79.149094,34.063173],[79.147302,34.046085],[79.14718,34.045306],[79.146038,34.043069],[79.143761,34.035192],[79.138826,34.03013],[79.135809,34.027245],[79.135244,34.02679],[79.134411,34.026577],[79.132464,34.024924],[79.131381,34.024706],[79.131099,34.024266],[79.122391,34.022768],[79.121827,34.022317],[79.12019,34.021675],[79.116661,34.021503],[79.112584,34.019716],[79.102351,34.019821],[79.100176,34.02028],[79.095498,34.020382],[79.089252,34.021842],[79.084095,34.021895],[79.082757,34.022354],[79.082485,34.022819],[79.078449,34.024227],[79.077079,34.024238],[79.071655,34.02543],[79.065746,34.028235],[79.061951,34.028694],[79.059247,34.03034],[79.057318,34.030913],[79.056524,34.030918],[79.056251,34.031355],[79.054932,34.031488],[79.054415,34.032182],[79.054143,34.032651],[79.051437,34.033835],[79.046846,34.03476],[79.044431,34.035701],[79.04254,34.038216],[79.040919,34.038691],[79.040114,34.038695],[79.037451,34.04121],[79.03608,34.041687],[79.034709,34.042168],[79.033683,34.043972],[79.031796,34.044681],[79.030172,34.04516],[79.028036,34.048352],[79.025877,34.04905],[79.025072,34.049059],[79.023461,34.049973],[79.022371,34.050903],[79.014772,34.050303],[79.008467,34.047202],[79.004931,34.046815],[79.003512,34.046182],[78.999823,34.044594],[78.998997,34.044598],[78.998187,34.043924],[78.996727,34.043644],[78.993191,34.041962],[78.992115,34.041969],[78.987226,34.040903],[78.986944,34.040467],[78.986117,34.040476],[78.985855,34.040022],[78.98095,34.038033],[78.979551,34.03692],[78.978434,34.036013],[78.974703,34.035592],[78.973272,34.035407],[78.97006,34.034387],[78.968696,34.033713],[78.967831,34.033423],[78.965375,34.032992],[78.964277,34.032999],[78.963185,34.032345],[78.96183,34.032133],[78.959113,34.030804],[78.958832,34.030349],[78.957472,34.030368],[78.953939,34.029509],[78.952825,34.028855],[78.95202,34.028868],[78.948983,34.026858],[78.943282,34.024872],[78.942206,34.024888],[78.941647,34.024201],[78.940564,34.024008],[78.93784,34.020515],[78.932516,34.0121],[78.92717,33.999058],[78.923429,33.993675],[78.919699,33.989161],[78.911351,33.981317],[78.910904,33.980912],[78.908987,33.980243],[78.908193,33.980256],[78.906254,33.977559],[78.905683,33.976206],[78.905098,33.971916],[78.906688,33.968939],[78.908008,33.967132],[78.911217,33.964147],[78.911771,33.964141],[78.912038,33.963473],[78.9139,33.96253],[78.914435,33.961637],[78.917949,33.960234],[78.918768,33.959306],[78.919277,33.958843],[78.919834,33.958838],[78.921158,33.957257],[78.922735,33.953836],[78.934309,33.933497],[78.936992,33.927189],[78.940208,33.924674],[78.94566,33.92392],[78.948309,33.920718],[78.949358,33.916636],[78.948796,33.915745],[78.947711,33.915299],[78.94688,33.915077],[78.943791,33.908556],[78.949695,33.9033],[78.952684,33.902367],[78.954501,33.898938],[78.95525,33.893509],[78.953537,33.889219],[78.961707,33.871008],[78.967767,33.85963],[78.972816,33.852093],[78.973364,33.851861],[78.973955,33.851253],[78.97523,33.849808],[78.979478,33.84252],[78.980247,33.840486],[78.994956,33.814665],[79.000826,33.803327],[79.00455,33.798549],[79.006462,33.797613],[79.007808,33.797589],[79.008339,33.798045],[79.015668,33.798419],[79.017301,33.799072],[79.019194,33.798815],[79.019723,33.796785],[79.019436,33.796104],[79.013103,33.788236],[79.012531,33.786883],[79.01355,33.783496],[79.016752,33.778695],[79.020203,33.77573],[79.021299,33.775261],[79.024546,33.775216],[79.028617,33.777201],[79.030897,33.781952],[79.031963,33.783512],[79.03414,33.783715],[79.034927,33.783013],[79.03603,33.782765],[79.036563,33.781871],[79.037857,33.776629],[79.038956,33.773823],[79.040761,33.770698],[79.043231,33.767437],[79.044904,33.766432],[79.047255,33.766119],[79.049619,33.766658],[79.05082,33.76763],[79.05186,33.76986],[79.052953,33.775197],[79.053839,33.778423],[79.055376,33.779817],[79.057247,33.780919],[79.058934,33.781173],[79.060268,33.78032],[79.061248,33.778478],[79.061549,33.776364],[79.061144,33.771728],[79.06129,33.769754],[79.062277,33.768056],[79.065436,33.765487],[79.067592,33.763347],[79.06856,33.760667],[79.069022,33.757847],[79.06849,33.75644],[79.066461,33.755201],[79.064261,33.754663],[79.062066,33.754407],[79.061215,33.753713],[79.059688,33.752745],[79.056475,33.752364],[79.052434,33.752129],[79.050243,33.751736],[79.047704,33.750924],[79.044838,33.750537],[79.042971,33.749706],[79.04227,33.748171],[79.041417,33.746771],[79.041725,33.744947],[79.042536,33.742822],[79.043334,33.740417],[79.043144,33.738454],[79.04194,33.736776],[79.039053,33.73512],[79.036332,33.733324],[79.033943,33.731724],[79.032784,33.731251],[79.026221,33.722651],[79.0231,33.716136],[79.020522,33.705737],[79.02421,33.697984],[79.028985,33.691814],[79.038081,33.684449],[79.041592,33.683309],[79.0424,33.682607],[79.04401,33.681555],[79.044549,33.681201],[79.045352,33.681187],[79.053961,33.678141],[79.060866,33.677808],[79.064762,33.677576],[79.071826,33.679087],[79.076232,33.682895],[79.080597,33.684405],[79.080845,33.68486],[79.081408,33.685316],[79.083458,33.686555],[79.084017,33.687219],[79.086297,33.688437],[79.089561,33.688391],[79.089832,33.687926],[79.091168,33.687],[79.092122,33.679529],[79.091551,33.675901],[79.090485,33.658491],[79.090463,33.657113],[79.091469,33.652796],[79.096383,33.637769],[79.105319,33.622494],[79.107073,33.616884],[79.106847,33.616357],[79.107103,33.614763],[79.106566,33.614085],[79.105462,33.613658],[79.0995,33.613726],[79.098326,33.61425],[79.093331,33.616521],[79.092507,33.616525],[79.091719,33.617228],[79.08766,33.617483],[79.083918,33.61937],[79.074199,33.621511],[79.07235,33.623105],[79.069363,33.623831],[79.067502,33.625901],[79.065376,33.626823],[79.060102,33.627143],[79.047797,33.627721],[79.0448,33.627528],[79.042878,33.626407],[79.040983,33.625992],[79.035084,33.626521],[79.030152,33.626116],[79.029622,33.625683],[79.027731,33.625477],[79.024459,33.624157],[79.023381,33.623476],[79.020108,33.62352],[79.019301,33.622863],[79.019021,33.622404],[79.014146,33.621075],[79.013862,33.620642],[79.010339,33.618986],[79.0057,33.616901],[78.999697,33.612206],[78.996995,33.611542],[78.989918,33.611187],[78.984517,33.612143],[78.983977,33.612588],[78.982902,33.612604],[78.979688,33.613786],[78.978346,33.614498],[78.977241,33.614505],[78.971885,33.615905],[78.971342,33.616377],[78.960695,33.618224],[78.95383,33.620203],[78.949774,33.620708],[78.948988,33.621392],[78.946556,33.622773],[78.945765,33.622786],[78.941441,33.624422],[78.936014,33.62766],[78.932571,33.62883],[78.928019,33.631366],[78.924233,33.631867],[78.922354,33.633247],[78.919246,33.63358],[78.916712,33.632336],[78.914474,33.627871],[78.9153,33.626164],[78.917068,33.622418],[78.917065,33.616295],[78.915962,33.602515],[78.91717,33.59659],[78.917554,33.594286],[78.917788,33.593589],[78.918197,33.58707],[78.917036,33.580522],[78.917299,33.579599],[78.916476,33.579612],[78.915326,33.575983],[78.915162,33.574346],[78.915825,33.572592],[78.917841,33.571258],[78.920957,33.569819],[78.921463,33.568689],[78.924927,33.565017],[78.926926,33.561009],[78.927192,33.560331],[78.927045,33.559759],[78.927847,33.559755],[78.928795,33.557023],[78.931409,33.549375],[78.94059,33.526554],[78.941592,33.521311],[78.942791,33.5093],[78.941568,33.500479],[78.941831,33.499579],[78.939813,33.494298],[78.939251,33.49341],[78.938198,33.491005],[78.937117,33.490559],[78.936033,33.488979],[78.932505,33.478134],[78.931478,33.473861],[78.93081,33.465459],[78.932217,33.448356],[78.932909,33.44427],[78.932787,33.439762],[78.933348,33.432796],[78.93695,33.421079],[78.940015,33.413049],[78.940335,33.412339],[78.942205,33.410732],[78.943544,33.410019],[78.950023,33.408359],[78.951455,33.403579],[78.951663,33.390882],[78.953668,33.381121],[78.954753,33.380175],[78.956087,33.379957],[78.959059,33.378333],[78.960116,33.377632],[78.9663,33.376432],[78.968725,33.375504],[78.969721,33.374131],[78.971863,33.368656],[78.972282,33.364953],[78.972352,33.364337],[78.972061,33.362979],[78.972569,33.360492],[78.973864,33.358913],[78.974416,33.358902],[78.980287,33.355886],[78.983144,33.346083],[78.985907,33.339972],[78.989183,33.333528],[78.989967,33.332852],[78.992398,33.331696],[78.993449,33.330782],[78.996404,33.330518],[78.996957,33.330953],[79.000475,33.331604],[79.001062,33.331871],[79.006957,33.332219],[79.012398,33.334641],[79.013468,33.334634],[79.015906,33.33483],[79.016462,33.335491],[79.017803,33.33548],[79.021059,33.332859],[79.022336,33.332268],[79.023951,33.331788],[79.025806,33.329281],[79.030904,33.327373],[79.032311,33.326438],[79.035437,33.324143],[79.036773,33.323919],[79.037595,33.323905],[79.041885,33.320909],[79.042949,33.320688],[79.043487,33.319993],[79.045098,33.319512],[79.046356,33.319306],[79.046616,33.318849],[79.04804,33.318576],[79.053953,33.315992],[79.061942,33.309772],[79.067316,33.307906],[79.069987,33.306955],[79.071054,33.306276],[79.072697,33.306257],[79.07354,33.305827],[79.074626,33.305175],[79.076476,33.30421],[79.07751,33.303916],[79.078331,33.303907],[79.07857,33.303464],[79.078808,33.302998],[79.086598,33.299955],[79.089249,33.29767],[79.091411,33.297183],[79.096266,33.295303],[79.097322,33.294597],[79.102715,33.294118],[79.110764,33.291942],[79.112921,33.29169],[79.118855,33.292076],[79.123683,33.290885],[79.125038,33.290203],[79.126904,33.289945],[79.134225,33.290087],[79.140221,33.291996],[79.144235,33.292679],[79.148398,33.292577],[79.150213,33.292555],[79.158285,33.291738],[79.163876,33.290174],[79.166318,33.290141],[79.167203,33.290639],[79.16901,33.290984],[79.170631,33.290969],[79.176881,33.29453],[79.186328,33.293945],[79.189819,33.29256],[79.194137,33.292277],[79.203843,33.292151],[79.208582,33.292364],[79.213539,33.293454],[79.216687,33.293718],[79.222364,33.295001],[79.23088,33.296319],[79.234657,33.297879],[79.238431,33.29737],[79.240624,33.297806],[79.250299,33.295831],[79.255633,33.293278],[79.255893,33.292812],[79.261544,33.291408],[79.264466,33.289311],[79.267448,33.288834],[79.275343,33.285325],[79.277864,33.284157],[79.279427,33.283855],[79.296961,33.280699],[79.30663,33.27697],[79.310065,33.27462],[79.313302,33.274375],[79.314905,33.273683],[79.315715,33.273214],[79.327572,33.272586],[79.329754,33.273484],[79.332987,33.273438],[79.337862,33.275163],[79.338964,33.275154],[79.340307,33.275132],[79.341413,33.275812],[79.344398,33.277131],[79.349763,33.278394],[79.351707,33.278824],[79.35748,33.281164],[79.35842,33.28159],[79.360555,33.281766],[79.365787,33.282711],[79.370055,33.28265],[79.375772,33.281696],[79.379487,33.279805],[79.38168,33.279332],[79.382739,33.279322],[79.388989,33.277639],[79.389777,33.27717],[79.390868,33.277151],[79.397377,33.274993],[79.406331,33.272652],[79.411198,33.272356],[79.413736,33.271489],[79.417599,33.270187],[79.423265,33.269467],[79.426472,33.268035],[79.430277,33.267985],[79.434553,33.266579],[79.435561,33.266451],[79.447459,33.264789],[79.449327,33.263856],[79.453431,33.26039],[79.454113,33.258791],[79.454906,33.258548],[79.455633,33.255357],[79.456096,33.250399],[79.453244,33.242491],[79.453469,33.240459],[79.452372,33.230768],[79.451204,33.225324],[79.450641,33.217336],[79.446657,33.20582],[79.439358,33.191819],[79.438277,33.189832],[79.435066,33.184621],[79.43405,33.183161],[79.430643,33.177908],[79.430746,33.177173],[79.430454,33.176713],[79.429638,33.176493],[79.427458,33.17251],[79.418599,33.159967],[79.411575,33.151442],[79.405391,33.144009],[79.399351,33.133539],[79.393441,33.12445],[79.389017,33.114184],[79.387875,33.111271],[79.387584,33.110648],[79.381394,33.097829],[79.377391,33.084736],[79.377074,33.082493],[79.377261,33.081858],[79.378108,33.079056],[79.381813,33.074929],[79.381798,33.074239],[79.383493,33.071168],[79.385168,33.069594],[79.385513,33.069064],[79.385497,33.068374],[79.391973,33.057307],[79.393531,33.054108],[79.394763,33.046136],[79.395538,33.043859],[79.395362,33.043028],[79.393763,33.036185],[79.39038,33.033253],[79.388033,33.032046],[79.383123,33.028382],[79.382318,33.027721],[79.380155,33.027518],[79.374477,33.024877],[79.37314,33.024899],[79.367556,33.02343],[79.365493,33.022582],[79.362824,33.021859],[79.35428,33.021122],[79.350409,33.020227],[79.346655,33.019821],[79.346105,33.01937],[79.345024,33.018462],[79.340971,33.018514],[79.340691,33.018055],[79.337727,33.016967],[79.335553,33.016332],[79.334712,33.01542],[79.332277,33.01388],[79.331972,33.012067],[79.333314,33.010456],[79.339231,33.007651],[79.340766,33.006477],[79.344764,33.005525],[79.346931,33.005493],[79.347739,33.005042],[79.350425,33.005007],[79.350932,33.004541],[79.352009,33.003606],[79.355246,33.002892],[79.356285,33.001284],[79.357351,33.000829],[79.357599,32.999904],[79.359703,32.996461],[79.360752,32.995321],[79.363262,32.993437],[79.364972,32.993044],[79.366354,32.992059],[79.367173,32.992044],[79.367442,32.991587],[79.368222,32.990899],[79.372503,32.990384],[79.373304,32.989697],[79.377791,32.989478],[79.379647,32.989453],[79.380186,32.988978],[79.380757,32.988953],[79.381361,32.988896],[79.384073,32.989088],[79.385808,32.982265],[79.385509,32.980697],[79.383473,32.972307],[79.384244,32.969576],[79.385551,32.967964],[79.390661,32.967434],[79.396925,32.969305],[79.402291,32.970223],[79.409266,32.970121],[79.414054,32.967563],[79.41539,32.967545],[79.41539,32.967081],[79.419359,32.962949],[79.420709,32.962232],[79.42231,32.961538],[79.422299,32.961075],[79.423597,32.9588],[79.424147,32.958797],[79.425585,32.957022],[79.426227,32.955812],[79.428359,32.95442],[79.429149,32.954178],[79.433117,32.950041],[79.434182,32.948659],[79.43787,32.945547],[79.439055,32.944511],[79.439734,32.944504],[79.445013,32.938495],[79.459042,32.925821],[79.462477,32.921912],[79.464044,32.920073],[79.469531,32.912288],[79.471089,32.908959],[79.481519,32.890983],[79.484135,32.887989],[79.48521,32.88707],[79.488853,32.881345],[79.492544,32.877441],[79.496293,32.876248],[79.49807,32.874632],[79.500675,32.872219],[79.501508,32.871976],[79.501747,32.871309],[79.506173,32.867248],[79.507881,32.864913],[79.508834,32.863563],[79.51607,32.855748],[79.530761,32.835757],[79.542052,32.8222],[79.546709,32.813018],[79.552716,32.804556],[79.555119,32.802927],[79.564093,32.793928],[79.567995,32.786814],[79.57326,32.782434],[79.574318,32.782187],[79.577818,32.782555],[79.578367,32.782592],[79.58156,32.781619],[79.582344,32.781139],[79.584675,32.776102],[79.586275,32.775183],[79.586263,32.77472],[79.587074,32.774495],[79.587342,32.774032],[79.590284,32.773776],[79.591505,32.77461],[79.592476,32.775544],[79.596236,32.776853],[79.597054,32.776836],[79.598127,32.777489],[79.601892,32.777434],[79.603225,32.776969],[79.613913,32.765035],[79.61455,32.764292],[79.619654,32.753294],[79.619936,32.752645],[79.621264,32.750362],[79.622263,32.747161],[79.622759,32.746003],[79.624373,32.744844],[79.626218,32.743016],[79.627205,32.739347],[79.626896,32.737538],[79.617524,32.724266],[79.613427,32.721148],[79.6009,32.707694],[79.59717,32.702841],[79.593487,32.698323],[79.584884,32.686681],[79.578425,32.678725],[79.577307,32.678236],[79.575967,32.676497],[79.57417,32.675415],[79.56713,32.673261],[79.566785,32.672782],[79.565057,32.670574],[79.558951,32.662213],[79.547543,32.648324],[79.539165,32.637647],[79.515741,32.60812],[79.502419,32.596352],[79.501617,32.59614],[79.499956,32.594481],[79.498337,32.593826],[79.497789,32.593838],[79.493964,32.590271],[79.493417,32.590279],[79.490551,32.588611],[79.489891,32.587836],[79.484293,32.585768],[79.483218,32.584887],[79.481242,32.584313],[79.474125,32.578021],[79.471843,32.577223],[79.471041,32.576566],[79.46981,32.576307],[79.467195,32.571475],[79.466774,32.569587],[79.465835,32.562715],[79.461651,32.552985],[79.455797,32.542427],[79.448129,32.532517],[79.446504,32.531634],[79.439764,32.529447],[79.429018,32.528492],[79.424967,32.527628],[79.424172,32.52718],[79.413206,32.527792],[79.40682,32.529683],[79.400694,32.534345],[79.399432,32.537064],[79.396289,32.556212],[79.397449,32.562108],[79.395374,32.570603],[79.39453,32.572309],[79.389083,32.573908],[79.388456,32.574078],[79.387952,32.574544],[79.385883,32.574832],[79.384824,32.575515],[79.379477,32.57645],[79.376828,32.578745],[79.376012,32.57876],[79.374409,32.57924],[79.374176,32.579703],[79.372312,32.580883],[79.369101,32.581393],[79.367752,32.582084],[79.366707,32.582766],[79.360041,32.583555],[79.349629,32.587988],[79.348024,32.588245],[79.343664,32.589637],[79.343407,32.590109],[79.342343,32.590118],[79.340854,32.590858],[79.340318,32.59177],[79.339508,32.592012],[79.333892,32.591858],[79.333361,32.592556],[79.330161,32.593498],[79.322912,32.593373],[79.320746,32.592728],[79.320466,32.592267],[79.31804,32.590248],[79.316172,32.586372],[79.31113,32.571775],[79.308847,32.568784],[79.307762,32.568802],[79.304714,32.562488],[79.295102,32.550108],[79.283965,32.540258],[79.281783,32.538484],[79.28072,32.538493],[79.277161,32.533999],[79.27606,32.533781],[79.273642,32.532447],[79.26772,32.53138],[79.265022,32.531404],[79.261318,32.532847],[79.258108,32.532883],[79.257049,32.533574],[79.255971,32.53426],[79.250883,32.534119],[79.246191,32.525309],[79.243353,32.516716],[79.243883,32.516013],[79.242771,32.514458],[79.24163,32.509919],[79.241076,32.509235],[79.237805,32.505859],[79.233482,32.504343],[79.233235,32.503883],[79.232152,32.502973],[79.230103,32.502404],[79.229388,32.501764],[79.228751,32.501498],[79.227965,32.501503],[79.226613,32.500601],[79.223241,32.499235],[79.22215,32.499043],[79.221872,32.498583],[79.220805,32.498364],[79.219698,32.497017],[79.21756,32.496143],[79.216493,32.495929],[79.213209,32.493135],[79.211801,32.491837],[79.207003,32.489909],[79.202125,32.486088],[79.195936,32.483685],[79.195135,32.482999],[79.18302,32.48112],[79.147933,32.481113],[79.1418,32.478621],[79.140326,32.478359],[79.139794,32.477696],[79.139051,32.477383],[79.13742,32.476947],[79.1355,32.474686],[79.131963,32.470866],[79.131337,32.466097],[79.134164,32.458785],[79.136486,32.455914],[79.13709,32.45579],[79.137615,32.45486],[79.140535,32.453483],[79.141341,32.452551],[79.146551,32.44294],[79.14725,32.437022],[79.146949,32.435197],[79.145282,32.431368],[79.144153,32.423821],[79.144327,32.422735],[79.143234,32.420487],[79.142156,32.419367],[79.141609,32.419373],[79.138648,32.417562],[79.134884,32.417178],[79.134335,32.416739],[79.13381,32.416286],[79.132774,32.416048],[79.128441,32.414252],[79.125721,32.413632],[79.123233,32.409603],[79.12151,32.400056],[79.12096,32.399393],[79.121211,32.398699],[79.120866,32.393921],[79.12024,32.392248],[79.118948,32.38893],[79.115094,32.384224],[79.113473,32.383319],[79.108925,32.382931],[79.108422,32.383843],[79.108153,32.38431],[79.106824,32.384325],[79.105738,32.384342],[79.105222,32.384808],[79.103094,32.385506],[79.102383,32.385584],[79.098637,32.385764],[79.097575,32.386236],[79.091305,32.386547],[79.089431,32.387269],[79.088659,32.387738],[79.079551,32.388316],[79.078467,32.388787],[79.074474,32.38927],[79.073972,32.389718],[79.071019,32.390674],[79.060576,32.390575],[79.054403,32.38908],[79.051733,32.389114],[79.049024,32.387994],[79.044214,32.387816],[79.040171,32.386501],[79.03374,32.385908],[79.033484,32.385452],[79.028339,32.383248],[79.028091,32.382787],[79.023492,32.381022],[79.022422,32.380129],[79.022141,32.379668],[79.021327,32.379681],[79.0146,32.377267],[79.008636,32.370499],[78.993797,32.345216],[78.989185,32.339815],[78.985414,32.338027],[78.981922,32.337838],[78.981144,32.338524],[78.980092,32.338996],[78.979002,32.339239],[78.977444,32.341986],[78.970619,32.35163],[78.967785,32.358941],[78.961739,32.366054],[78.960149,32.366972],[78.952614,32.366834],[78.949954,32.367322],[78.947883,32.369074],[78.946803,32.369322],[78.944421,32.371941],[78.944155,32.37264],[78.940685,32.373787],[78.940426,32.374244],[78.940157,32.374711],[78.939342,32.374724],[78.939072,32.375182],[78.937746,32.375433],[78.932699,32.37787],[78.929756,32.379316],[78.920995,32.383022],[78.91967,32.38405],[78.915412,32.386592],[78.915174,32.387055],[78.913302,32.387748],[78.91195,32.388203],[78.911712,32.388665],[78.911475,32.389132],[78.908144,32.390188],[78.907874,32.390646],[78.905337,32.391721],[78.904826,32.392391],[78.903474,32.392869],[78.898342,32.39757],[78.897795,32.397575],[78.894634,32.400802],[78.892607,32.402076],[78.888117,32.406003],[78.887305,32.406216],[78.875295,32.417233],[78.87243,32.420566],[78.870136,32.424126],[78.865156,32.430346],[78.862551,32.437214],[78.858866,32.440645],[78.852969,32.440941],[78.851358,32.440521],[78.850266,32.440072],[78.846779,32.440107],[78.846252,32.439653],[78.84197,32.43855],[78.84115,32.437889],[78.839778,32.436997],[78.834425,32.436132],[78.832554,32.436387],[78.827224,32.438706],[78.823086,32.448982],[78.820315,32.462429],[78.816878,32.468149],[78.81637,32.469059],[78.813868,32.472761],[78.809517,32.477324],[78.807148,32.481672],[78.805103,32.49033],[78.805127,32.491458],[78.803782,32.493099],[78.800852,32.497998],[78.798552,32.501992],[78.797791,32.504038],[78.793172,32.519328],[78.79147,32.529438],[78.790799,32.532025],[78.790404,32.533209],[78.789074,32.53595],[78.781964,32.546719],[78.776775,32.558362],[78.775545,32.568833],[78.776416,32.57314],[78.781386,32.57815],[78.783257,32.580023],[78.783759,32.58055],[78.785089,32.580996],[78.786167,32.581681],[78.786968,32.582569],[78.787506,32.582559],[78.789674,32.583439],[78.790792,32.585479],[78.791579,32.585703],[78.794324,32.589096],[78.797106,32.598368],[78.795654,32.609973],[78.795921,32.610416],[78.795436,32.612471],[78.792515,32.618433],[78.788831,32.622329],[78.786417,32.623025],[78.784588,32.625103],[78.78404,32.625099],[78.782958,32.625341],[78.780042,32.62787],[78.779229,32.628109],[78.773977,32.635207],[78.77271,32.64113],[78.771023,32.643454],[78.765562,32.649391],[78.763196,32.653482],[78.762669,32.655083],[78.763743,32.658259],[78.765211,32.662788],[78.76586,32.673238],[78.769129,32.686361],[78.76967,32.690187],[78.769834,32.692056],[78.769359,32.696147],[78.769129,32.69705],[78.767525,32.697529],[78.762679,32.697807],[78.761335,32.697365],[78.753703,32.689032],[78.749573,32.681579],[78.74226,32.673716],[78.73386,32.667198],[78.727919,32.664744],[78.727388,32.664076],[78.7263,32.663859],[78.723855,32.662081],[78.723575,32.66162],[78.72305,32.661193],[78.714701,32.65832],[78.706721,32.656894],[78.706091,32.656785],[78.703689,32.65658],[78.690802,32.656933],[78.689198,32.657412],[78.680356,32.658428],[78.672687,32.657786],[78.671894,32.657329],[78.669738,32.657171],[78.66866,32.656513],[78.667715,32.656491],[78.666363,32.655585],[78.662861,32.654021],[78.662313,32.65403],[78.662065,32.653569],[78.655418,32.64267],[78.651538,32.636547],[78.649871,32.634302],[78.647854,32.631453],[78.641541,32.615955],[78.640642,32.612848],[78.63902,32.60972],[78.633778,32.603631],[78.63323,32.60364],[78.632241,32.602518],[78.631151,32.602323],[78.628462,32.601214],[78.627935,32.600528],[78.623764,32.598253],[78.622544,32.598083],[78.621196,32.597172],[78.620919,32.596715],[78.620103,32.596722],[78.619036,32.596068],[78.616058,32.596088],[78.614192,32.597468],[78.60865,32.60616],[78.605994,32.607333],[78.60193,32.608968],[78.600077,32.608757],[78.599805,32.609213],[78.595054,32.610374],[78.593722,32.611512],[78.592922,32.612447],[78.592129,32.612685],[78.590004,32.614527],[78.588919,32.615204],[78.588138,32.615907],[78.581244,32.616521],[78.577984,32.617388],[78.573388,32.617613],[78.572585,32.61716],[78.571253,32.617167],[78.56586,32.615184],[78.558876,32.614097],[78.554821,32.611638],[78.553755,32.611652],[78.552146,32.611229],[78.546735,32.610277],[78.541665,32.610192],[78.535736,32.608648],[78.534667,32.607762],[78.533867,32.606845],[78.531977,32.606397],[78.53198,32.605933],[78.530136,32.604312],[78.5294,32.604087],[78.529143,32.603371],[78.518987,32.593121],[78.514913,32.589506],[78.513305,32.589065],[78.512536,32.588912],[78.512018,32.588244],[78.509789,32.586596],[78.508178,32.586155],[78.506288,32.58506],[78.501692,32.583482],[78.500624,32.582595],[78.499553,32.581699],[78.495978,32.580907],[78.487994,32.580644],[78.486385,32.580893],[78.48319,32.582537],[78.480009,32.582931],[78.479222,32.583378],[78.472462,32.583512],[78.459844,32.580013],[78.457156,32.577956],[78.456071,32.577969],[78.453641,32.575496],[78.449325,32.573941],[78.4477,32.572585],[78.446911,32.571696],[78.446363,32.571704],[78.44386,32.569921],[78.436621,32.561574],[78.431398,32.550926],[78.43059,32.548882],[78.43047,32.548189],[78.429175,32.540493],[78.429928,32.533648],[78.429371,32.53321],[78.428554,32.533221],[78.42801,32.532761],[78.428006,32.531833],[78.427152,32.531316],[78.42511,32.531051],[78.416482,32.529369],[78.405451,32.528772],[78.399984,32.525973],[78.399984,32.525973],[78.39423,32.522371],[78.37388,32.508986],[78.327823,32.472248],[78.323656,32.474075],[78.295982,32.504318],[78.295982,32.504318],[78.295982,32.504318],[78.31255,32.518843],[78.316697,32.525656],[78.31423,32.573951],[78.319983,32.575141],[78.33561,32.576639],[78.3494,32.5813],[78.358293,32.58949],[78.394795,32.611313],[78.406567,32.619659],[78.406567,32.619659],[78.393661,32.62605],[78.388705,32.634607],[78.388705,32.634607],[78.380982,32.668496],[78.381536,32.682046],[78.381536,32.682046],[78.385466,32.696052],[78.395751,32.715857],[78.392884,32.719206],[78.389733,32.728627],[78.389183,32.730273],[78.389183,32.730273],[78.388764,32.741213],[78.388717,32.742434],[78.388717,32.742434],[78.390801,32.756746],[78.389361,32.75844],[78.3823,32.759594],[78.362747,32.760053],[78.331914,32.745615],[78.305581,32.73447],[78.312551,32.728242],[78.316011,32.721442],[78.316011,32.721442],[78.316459,32.716352],[78.316459,32.716352],[78.313609,32.709415],[78.302738,32.703392],[78.290577,32.699541],[78.276932,32.699546],[78.254392,32.691303],[78.251049,32.680323],[78.242725,32.672181],[78.230693,32.665809],[78.219368,32.66182],[78.21272,32.663962],[78.201673,32.660502],[78.197248,32.667064],[78.188226,32.673879],[78.176163,32.675802],[78.170264,32.675706],[78.162172,32.673289],[78.153719,32.667009],[78.148332,32.656741],[78.144312,32.645768],[78.139143,32.63901],[78.133799,32.639087],[78.124649,32.64643],[78.116932,32.656684],[78.111043,32.658863],[78.106174,32.656548],[78.096622,32.649503],[78.090566,32.641115],[78.085025,32.622313],[78.082898,32.620979],[78.076589,32.621288],[78.061671,32.625548],[78.051471,32.632352],[78.050309,32.630488],[78.050012,32.625116],[78.050012,32.625116],[78.051972,32.612364],[78.05429,32.607573],[78.059,32.601999],[78.059,32.601999],[78.059,32.601999],[78.059126,32.595927],[78.059126,32.595927],[78.053283,32.588639],[78.044917,32.585331],[78.034914,32.583726],[78.0045,32.584919],[78.000011,32.583247],[77.994158,32.588682],[77.992429,32.593112],[77.985342,32.604743],[77.979729,32.610571],[77.977073,32.617298],[77.976979,32.617534],[77.971763,32.622758],[77.971763,32.622758],[77.972624,32.631629],[77.97019,32.637218],[77.964017,32.639552],[77.956471,32.644869],[77.949852,32.653056],[77.94472,32.65948],[77.94472,32.65948],[77.943793,32.663687],[77.93782,32.676408],[77.928578,32.685094],[77.920859,32.690024],[77.920859,32.690025],[77.920859,32.690025],[77.920022,32.69535],[77.923318,32.700532],[77.92392,32.709302],[77.92392,32.709302],[77.926137,32.713352],[77.927117,32.718354],[77.929733,32.722723],[77.936164,32.727761],[77.933334,32.730666],[77.929548,32.733482],[77.929548,32.733482],[77.929548,32.733482],[77.932035,32.738762],[77.932124,32.741526],[77.932124,32.741526],[77.934909,32.748859],[77.935692,32.753913],[77.935411,32.755491],[77.934655,32.759736],[77.932906,32.763076],[77.930058,32.764177],[77.926704,32.769134],[77.921274,32.76993],[77.917286,32.772357],[77.90865,32.771553],[77.905257,32.772306],[77.898665,32.772464],[77.894073,32.777077],[77.890035,32.783324],[77.884772,32.787375],[77.884772,32.787375],[77.886812,32.797465],[77.882369,32.803625],[77.882369,32.803625],[77.881659,32.808573],[77.879108,32.813289],[77.872816,32.818334],[77.870396,32.822328],[77.86546,32.825568],[77.849252,32.832221],[77.842956,32.837064],[77.836692,32.835725],[77.832179,32.833376],[77.826057,32.833233],[77.81687,32.843072],[77.809751,32.846514],[77.805608,32.847009],[77.798756,32.851362],[77.793664,32.851963],[77.785592,32.855749],[77.779304,32.862117],[77.779304,32.862117],[77.779304,32.862117],[77.783893,32.877601],[77.790689,32.888221],[77.804924,32.88899],[77.810473,32.895382],[77.808144,32.902737],[77.799728,32.907364],[77.796024,32.91312],[77.777573,32.924786],[77.777573,32.924786],[77.765657,32.936818],[77.76547,32.937969],[77.765203,32.939623],[77.762839,32.943289],[77.75447,32.945302],[77.745403,32.954995],[77.741214,32.961828],[77.730565,32.969291],[77.726381,32.96481],[77.721746,32.963612],[77.717946,32.966539],[77.71477,32.970847],[77.713089,32.975329],[77.708947,32.976939],[77.697555,32.97532],[77.69607,32.978256],[77.688946,32.98383],[77.683284,32.983593],[77.68113,32.973472],[77.67802,32.966503],[77.674399,32.9635],[77.671308,32.956935],[77.667887,32.955829],[77.66135,32.955393],[77.656497,32.953699],[77.641339,32.94209],[77.635206,32.941558],[77.630902,32.938972],[77.62866,32.939867],[77.624108,32.939984],[77.611359,32.939125],[77.604306,32.937484],[77.601854,32.941392],[77.599461,32.93682],[77.598891,32.932088],[77.597585,32.929271],[77.587536,32.919229],[77.571701,32.910705],[77.56735,32.910959],[77.562574,32.909336],[77.553142,32.899886],[77.544803,32.889874],[77.537361,32.884986],[77.529064,32.883037],[77.524014,32.880677],[77.512105,32.879128],[77.502315,32.884174],[77.490921,32.876431],[77.472914,32.859381],[77.466043,32.859332],[77.453873,32.863558],[77.449929,32.868132],[77.449512,32.870368],[77.448928,32.873509],[77.443434,32.88138],[77.435462,32.876924],[77.42784,32.875943],[77.42083,32.879188],[77.416878,32.881671],[77.415048,32.884736],[77.41315,32.885084],[77.405183,32.883284],[77.39708,32.878597],[77.388887,32.865171],[77.380712,32.861286],[77.37731,32.857343],[77.376347,32.854162],[77.377427,32.849358],[77.380272,32.844337],[77.380272,32.844337],[77.379459,32.840344],[77.377132,32.835886],[77.374048,32.822984],[77.36595,32.818921],[77.357994,32.818273],[77.353505,32.816648],[77.345414,32.817623],[77.339155,32.82015],[77.339155,32.82015],[77.339155,32.82015],[77.338551,32.823803],[77.338209,32.825869],[77.334063,32.827525],[77.328422,32.835459],[77.328422,32.835459],[77.328422,32.835459],[77.330063,32.844114],[77.322738,32.85187],[77.315523,32.85184],[77.306325,32.850465],[77.298849,32.853507],[77.291921,32.857638],[77.287694,32.864284],[77.275934,32.874283],[77.265154,32.862845],[77.256441,32.863088],[77.256441,32.863088],[77.256013,32.865098],[77.25562,32.866945],[77.253851,32.870242],[77.245413,32.874927],[77.242413,32.877985],[77.241673,32.880667],[77.241673,32.880667],[77.245069,32.881891],[77.246916,32.88477],[77.245897,32.893548],[77.238261,32.894854],[77.235601,32.895309],[77.22219,32.904394],[77.206587,32.908118],[77.199428,32.913531],[77.19152,32.929238],[77.18424,32.926172],[77.181374,32.923217],[77.179199,32.919219],[77.178056,32.91418],[77.175056,32.91134],[77.163808,32.91214],[77.163808,32.91214],[77.163808,32.91214],[77.168361,32.918345],[77.166885,32.923923],[77.164605,32.932531],[77.164605,32.932531],[77.164605,32.932531],[77.166229,32.936056],[77.166442,32.939535],[77.163778,32.94092],[77.163778,32.94092],[77.163826,32.954575],[77.154079,32.955954],[77.152979,32.959142],[77.152979,32.959142],[77.153255,32.962894],[77.152014,32.9677],[77.152014,32.967701],[77.153589,32.972669],[77.154132,32.978682],[77.145248,32.982087],[77.137811,32.98097],[77.130108,32.982391],[77.120891,32.985484],[77.11483,32.975856],[77.101879,32.971962],[77.092589,32.971646],[77.089374,32.974547],[77.083619,32.983866],[77.076176,32.984427],[77.070088,32.989257],[77.053041,32.998077],[77.042132,32.995373],[77.037616,32.990165],[77.028937,32.991673],[77.01614,32.988012],[77.0117,32.990739],[77.009142,32.991307],[77.004605,32.994373],[76.998514,32.999941],[76.984208,33.005719],[76.9814,33.00857],[76.97988,33.01232],[76.979824,33.012457],[76.974475,33.015266],[76.966039,33.017048],[76.950384,33.027045],[76.941852,33.02758],[76.93522,33.032313],[76.93522,33.032313],[76.932335,33.037455],[76.932335,33.037455],[76.932335,33.037455],[76.931049,33.042858],[76.927985,33.048873],[76.917873,33.062832],[76.917873,33.062832],[76.914717,33.069703],[76.914717,33.069703],[76.914283,33.073427],[76.914155,33.074528],[76.908546,33.079501],[76.908546,33.079501],[76.908546,33.079501],[76.908737,33.083346],[76.912815,33.090168],[76.912127,33.093897],[76.902594,33.096213],[76.895252,33.106021],[76.895252,33.106021],[76.895252,33.106021],[76.895058,33.113009],[76.895057,33.113045],[76.88655,33.119052],[76.878264,33.115212],[76.870388,33.110393],[76.86227,33.111153],[76.856999,33.114178],[76.851937,33.119445],[76.851937,33.119445],[76.851936,33.119445],[76.855235,33.125282],[76.845934,33.130591],[76.845934,33.130591],[76.847052,33.136636],[76.84084,33.140233],[76.835119,33.140947],[76.832852,33.145135],[76.82738,33.147519],[76.821346,33.154682],[76.81933,33.16054],[76.81933,33.16054],[76.81933,33.16054],[76.819911,33.165036],[76.817168,33.168475],[76.817168,33.168475],[76.817168,33.168475],[76.816047,33.172321],[76.816047,33.172321],[76.818336,33.176822],[76.823129,33.181285],[76.824544,33.183763],[76.821709,33.19168],[76.821274,33.192897],[76.821273,33.192897],[76.836587,33.204616],[76.835173,33.211284],[76.829079,33.214527],[76.829079,33.214527],[76.829079,33.214527],[76.831071,33.2218],[76.835922,33.230219],[76.841258,33.23647],[76.846946,33.241628],[76.846763,33.243004],[76.846433,33.24548],[76.840012,33.247456],[76.835371,33.247605],[76.832034,33.246548],[76.827233,33.243412],[76.824355,33.235333],[76.820811,33.235774],[76.814993,33.240343],[76.80351,33.252755],[76.796338,33.254896],[76.795977,33.254863],[76.795977,33.254863],[76.781623,33.253539],[76.77803,33.25219],[76.774918,33.249752],[76.773396,33.248697],[76.773396,33.248697],[76.773239,33.24662],[76.773239,33.24662],[76.775601,33.242327],[76.780395,33.238734],[76.777875,33.223835],[76.774028,33.218987],[76.768525,33.209286],[76.76354,33.203511],[76.760053,33.196644],[76.752263,33.192286],[76.748516,33.184438],[76.747751,33.178576],[76.732067,33.17661],[76.726343,33.180483],[76.714593,33.180685],[76.711516,33.176807],[76.703121,33.173246],[76.687308,33.172553],[76.677286,33.170357],[76.668925,33.171099],[76.658544,33.163956],[76.644785,33.161783],[76.63036,33.165289],[76.617379,33.173121],[76.616269,33.175872],[76.616678,33.183289],[76.616678,33.183289],[76.615141,33.187416],[76.610366,33.190025],[76.605814,33.189415],[76.601849,33.192485],[76.602537,33.198981],[76.604042,33.20365],[76.604042,33.20365],[76.604042,33.20365],[76.599738,33.206318],[76.59458,33.205247],[76.585459,33.206495],[76.580785,33.205656],[76.573711,33.206342],[76.565312,33.209029],[76.559776,33.206279],[76.551982,33.19886],[76.538028,33.199953],[76.523536,33.195345],[76.516601,33.196263],[76.513748,33.195604],[76.506543,33.189739],[76.486775,33.179507],[76.48385,33.179482],[76.473274,33.182951],[76.467914,33.182556],[76.459516,33.180123],[76.447479,33.182487],[76.439468,33.181496],[76.425393,33.188146],[76.418349,33.186297],[76.409377,33.186441],[76.402231,33.182643],[76.3975,33.176218],[76.391161,33.173226],[76.383783,33.16781],[76.378417,33.162523],[76.376461,33.157273],[76.373382,33.154369],[76.36972,33.154621],[76.353159,33.146067],[76.333064,33.130001],[76.324427,33.127037],[76.309419,33.120046],[76.305462,33.112989],[76.29244,33.103833],[76.29244,33.103833],[76.294307,33.100465],[76.293266,33.097867],[76.288652,33.096189],[76.284903,33.085939],[76.272562,33.052078],[76.254553,33.032396],[76.247044,33.030647],[76.246738,33.030073],[76.233408,33.028406],[76.205522,33.027467],[76.169432,33.022852],[76.161072,33.016442],[76.145355,33.010067],[76.137637,33.010415],[76.133109,33.008594],[76.124449,33.007916],[76.110793,33.004874],[76.111087,33.003347],[76.111196,33.00278],[76.111663,33.000356],[76.108308,32.992779],[76.102708,32.975019],[76.099232,32.968805],[76.095387,32.966081],[76.087006,32.962246],[76.082881,32.958011],[76.071446,32.951005],[76.067359,32.944308],[76.059551,32.940285],[76.045003,32.93751],[76.040565,32.931653],[76.038078,32.924498],[76.034075,32.917701],[76.030388,32.916005],[76.021494,32.914085],[76.014377,32.909458],[76.004246,32.900679],[76.000029,32.900496],[75.962539,32.885298],[75.956315,32.884398],[75.950554,32.88449],[75.940011,32.898311],[75.930367,32.906473],[75.916912,32.916],[75.897708,32.925121],[75.883927,32.930607],[75.866876,32.93159],[75.850674,32.935077],[75.838223,32.933963],[75.824712,32.930309],[75.820088,32.924064],[75.815039,32.919949],[75.815989,32.917416],[75.818482,32.910766],[75.816701,32.904419],[75.810513,32.897807],[75.806547,32.894495],[75.804091,32.893828],[75.805839,32.885111],[75.80613,32.883633],[75.806473,32.881887],[75.811282,32.870647],[75.811282,32.870647],[75.822144,32.856546],[75.824732,32.853808],[75.824873,32.853659],[75.824927,32.853602],[75.83239,32.84744],[75.837646,32.843113],[75.844147,32.840707],[75.853978,32.837084],[75.87183,32.826392],[75.890362,32.813897],[75.895885,32.805404],[75.902244,32.795622],[75.902244,32.795622],[75.916577,32.769933],[75.916577,32.769933],[75.928954,32.75714],[75.928954,32.75714],[75.930523,32.742022],[75.930523,32.742022],[75.92625,32.720928],[75.921245,32.709327],[75.915416,32.700227],[75.912917,32.691018],[75.912917,32.691018],[75.914165,32.68529],[75.915195,32.680567],[75.915195,32.680567],[75.921722,32.672169],[75.931073,32.665814],[75.940362,32.658075],[75.941725,32.65412],[75.941725,32.65412],[75.939885,32.643535],[75.923974,32.618977],[75.920777,32.615056],[75.902429,32.591761],[75.888638,32.57603],[75.887854,32.575138],[75.8726,32.558268],[75.853842,32.537469],[75.846522,32.524363],[75.844876,32.519823],[75.840964,32.509058],[75.839497,32.507488],[75.831606,32.499061],[75.820227,32.486911],[75.805994,32.478663],[75.794706,32.474934],[75.788311,32.474995],[75.768764,32.475186],[75.761744,32.476312],[75.760865,32.474225],[75.759546,32.469059],[75.751088,32.454629],[75.74545,32.445012],[75.740864,32.438265],[75.735453,32.430273],[75.731047,32.42378],[75.727202,32.418107],[75.713871,32.409491],[75.700578,32.400601],[75.678324,32.393525],[75.663622,32.38885],[75.652522,32.387449],[75.608161,32.381858],[75.58248,32.372025],[75.572781,32.367169],[75.560577,32.361059],[75.54461,32.349134],[75.539647,32.340289],[75.531111,32.298192],[75.520849,32.281541],[75.519735,32.279731],[75.516471,32.276251],[75.514193,32.275538],[75.509946,32.277131],[75.505258,32.288225],[75.505258,32.288225],[75.507402,32.303059],[75.506405,32.306983],[75.505846,32.309167],[75.505507,32.310491],[75.500031,32.310575],[75.495222,32.310649],[75.486705,32.314979],[75.483049,32.317897],[75.483049,32.317897],[75.488863,32.339558],[75.488863,32.339558],[75.487584,32.340411],[75.481951,32.339224],[75.471651,32.333909],[75.46708,32.332164],[75.463896,32.331718],[75.447861,32.327123],[75.446349,32.326926],[75.43025,32.32474],[75.412702,32.326778],[75.401219,32.328235],[75.393774,32.329367],[75.38872,32.331142],[75.37443,32.335538],[75.360515,32.339815],[75.359243,32.340867],[75.347016,32.345395],[75.34053,32.343552],[75.33963,32.342379],[75.339629,32.342379],[75.324713,32.341286],[75.318043,32.334484],[75.315899,32.334464],[75.312126,32.335532],[75.311874,32.335994],[75.309426,32.337791],[75.308377,32.337547],[75.305403,32.337755],[75.304607,32.338178],[75.30405,32.339105],[75.303164,32.34364],[75.300451,32.346108],[75.29883,32.347227],[75.297153,32.347662],[75.29239,32.349007],[75.290068,32.35078],[75.289108,32.351672],[75.289638,32.354272],[75.291666,32.359209],[75.290269,32.363289],[75.287014,32.366205],[75.285398,32.36686],[75.277342,32.367008],[75.276562,32.36654],[75.27468,32.36721],[75.273069,32.367192],[75.26516,32.363753],[75.260538,32.363867],[75.25892,32.364776],[75.258101,32.366364],[75.256414,32.371359],[75.257207,32.372729],[75.258254,32.373182],[75.257137,32.376591],[75.257068,32.377654],[75.257326,32.381644],[75.256639,32.383326],[75.255009,32.385018],[75.252856,32.385339],[75.248953,32.384672],[75.24869,32.384205],[75.247365,32.383735],[75.243908,32.380504],[75.242847,32.38026],[75.239656,32.379795],[75.238858,32.380228],[75.238843,32.380682],[75.237772,32.381366],[75.235322,32.383162],[75.234224,32.38359],[75.232329,32.386526],[75.230711,32.387208],[75.226411,32.387161],[75.226158,32.386713],[75.223731,32.386893],[75.222928,32.387808],[75.220415,32.392769],[75.218277,32.394114],[75.216644,32.395232],[75.213166,32.395418],[75.211579,32.394267],[75.210236,32.393359],[75.2073,32.392864],[75.20651,32.391494],[75.206524,32.39103],[75.205466,32.390577],[75.200457,32.391096],[75.199582,32.39118],[75.199299,32.391613],[75.198762,32.391612],[75.197128,32.392975],[75.196581,32.392969],[75.192486,32.397219],[75.191945,32.398582],[75.192932,32.40293],[75.193992,32.404312],[75.195322,32.404324],[75.195585,32.404786],[75.199053,32.405733],[75.201435,32.408014],[75.2014,32.409476],[75.201363,32.410997],[75.199452,32.414373],[75.199166,32.415271],[75.195119,32.416383],[75.189696,32.419948],[75.181668,32.420089],[75.174187,32.417942],[75.169644,32.418356],[75.168566,32.419016],[75.167233,32.418996],[75.164852,32.416715],[75.16459,32.416038],[75.162739,32.414632],[75.161924,32.414627],[75.157412,32.412761],[75.15232,32.413173],[75.151509,32.41293],[75.147279,32.411059],[75.14677,32.410384],[75.146505,32.409917],[75.145711,32.409912],[75.14385,32.409425],[75.140323,32.405781],[75.138796,32.404144],[75.137769,32.403672],[75.136177,32.403189],[75.132436,32.402706],[75.131041,32.405864],[75.130493,32.406085],[75.128699,32.416532],[75.129169,32.420851],[75.134485,32.421607],[75.135496,32.42287],[75.137039,32.424981],[75.130466,32.42858],[75.128467,32.429718],[75.127115,32.43083],[75.126568,32.430823],[75.123279,32.435341],[75.121593,32.439633],[75.122012,32.445006],[75.122025,32.445552],[75.121213,32.448268],[75.119528,32.451413],[75.118424,32.452095],[75.115229,32.453138],[75.113028,32.453856],[75.112219,32.455207],[75.111648,32.456569],[75.111911,32.457009],[75.111041,32.460187],[75.110481,32.46265],[75.11015,32.463919],[75.109785,32.469278],[75.110046,32.470182],[75.108059,32.473159],[75.106021,32.474036],[75.10302,32.47366],[75.101892,32.473519],[75.095654,32.466614],[75.095106,32.466611],[75.09087,32.46462],[75.089815,32.464284],[75.087382,32.464922],[75.086828,32.465584],[75.086544,32.466044],[75.08548,32.466263],[75.084144,32.46671],[75.080049,32.470079],[75.078693,32.471199],[75.076526,32.472073],[75.075426,32.472518],[75.075173,32.472984],[75.073557,32.473627],[75.068936,32.474773],[75.064678,32.475785],[75.057712,32.475268],[75.054765,32.475918],[75.053966,32.476349],[75.053392,32.477501],[75.048735,32.482413],[75.041756,32.484153],[75.039851,32.485493],[75.039203,32.485592],[75.036037,32.488655],[75.035499,32.489781],[75.033297,32.492687],[75.031136,32.492895],[75.030599,32.492883],[75.028434,32.491681],[75.027941,32.490774],[75.027393,32.490772],[75.021931,32.48437],[75.020798,32.482443],[75.019787,32.479933],[75.018093,32.474326],[75.017859,32.470993],[75.017956,32.46751],[75.018241,32.467045],[75.017719,32.465678],[75.011705,32.45833],[75.006393,32.45418],[75.004557,32.452327],[75.003768,32.452067],[74.998708,32.450436],[74.998178,32.449755],[74.996603,32.448606],[74.992603,32.448327],[74.99179,32.447856],[74.991528,32.447389],[74.983511,32.447288],[74.978691,32.447229],[74.975455,32.448578],[74.970902,32.448731],[74.969813,32.449176],[74.968465,32.449622],[74.962562,32.449544],[74.960969,32.449067],[74.960181,32.448598],[74.95967,32.447226],[74.955528,32.442067],[74.954186,32.440802],[74.950443,32.440524],[74.946631,32.443412],[74.942971,32.452466],[74.936075,32.462636],[74.934697,32.463049],[74.929638,32.463218],[74.92379,32.460191],[74.918192,32.459678],[74.916869,32.458964],[74.915502,32.459182],[74.914431,32.460073],[74.911111,32.465477],[74.909764,32.465923],[74.906802,32.465887],[74.906257,32.465643],[74.904222,32.461758],[74.902901,32.460821],[74.895648,32.461422],[74.892925,32.462962],[74.891852,32.463635],[74.891304,32.463627],[74.890504,32.464076],[74.887217,32.467688],[74.885594,32.468794],[74.882365,32.469432],[74.878262,32.472095],[74.877169,32.473677],[74.877933,32.476207],[74.87895,32.479638],[74.878871,32.481183],[74.876501,32.482539],[74.870543,32.480635],[74.863889,32.481239],[74.859805,32.484143],[74.856046,32.484091],[74.854185,32.48361],[74.850758,32.48197],[74.849288,32.481952],[74.84727,32.481921],[74.839438,32.485678],[74.837522,32.486115],[74.830067,32.485995],[74.829361,32.485984],[74.828705,32.486],[74.826821,32.486428],[74.824895,32.488438],[74.823826,32.488887],[74.817373,32.488796],[74.81686,32.488566],[74.816081,32.488323],[74.814601,32.483631],[74.813565,32.478515],[74.812292,32.476674],[74.810963,32.476427],[74.810147,32.47642],[74.807251,32.474573],[74.804552,32.474775],[74.802368,32.475872],[74.801037,32.475853],[74.799463,32.474698],[74.79557,32.469429],[74.793696,32.468938],[74.789663,32.469586],[74.788317,32.469998],[74.784292,32.469713],[74.783762,32.470165],[74.779998,32.470556],[74.778895,32.471236],[74.778112,32.471221],[74.774899,32.47243],[74.773797,32.473083],[74.768366,32.474741],[74.763774,32.474678],[74.759019,32.474378],[74.758511,32.473912],[74.756111,32.472748],[74.754749,32.472728],[74.752901,32.471109],[74.751879,32.469734],[74.749183,32.469699],[74.744342,32.470524],[74.74382,32.470986],[74.740036,32.472067],[74.739481,32.472723],[74.739194,32.473187],[74.738411,32.473172],[74.736267,32.473832],[74.735173,32.474284],[74.728754,32.474194],[74.728213,32.473727],[74.726888,32.473475],[74.726624,32.473007],[74.725287,32.471859],[74.723697,32.47114],[74.721572,32.471113],[74.720488,32.47112],[74.715953,32.470593],[74.711915,32.472126],[74.710558,32.473243],[74.708745,32.481622],[74.707897,32.483206],[74.707363,32.483867],[74.7063,32.483856],[74.705743,32.484544],[74.704388,32.485447],[74.699014,32.485804],[74.695591,32.483269],[74.692132,32.481848],[74.690803,32.481601],[74.690274,32.481129],[74.686512,32.481313],[74.685709,32.481997],[74.685162,32.481989],[74.682159,32.484673],[74.681039,32.486481],[74.682753,32.495145],[74.679627,32.503709],[74.679645,32.506554],[74.68112,32.511051],[74.681306,32.511699],[74.682608,32.513087],[74.683145,32.513091],[74.683693,32.513099],[74.687606,32.517479],[74.689158,32.520914],[74.688531,32.524994],[74.688243,32.52568],[74.68581,32.526085],[74.684195,32.526297],[74.683639,32.526953],[74.683101,32.527641],[74.677718,32.528697],[74.675316,32.529976],[74.673651,32.530464],[74.671758,32.532242],[74.670141,32.532677],[74.668523,32.533117],[74.667407,32.534482],[74.663069,32.53599],[74.661806,32.53782],[74.660279,32.541315],[74.664679,32.546825],[74.665509,32.547853],[74.669243,32.549037],[74.67028,32.550185],[74.670491,32.552681],[74.668223,32.559483],[74.666833,32.560598],[74.661662,32.560405],[74.65988,32.559825],[74.658214,32.558761],[74.657203,32.557405],[74.656103,32.557965],[74.65376,32.558117],[74.653473,32.558577],[74.652099,32.559256],[74.649646,32.566584],[74.648069,32.571251],[74.647276,32.578023],[74.647402,32.579642],[74.650693,32.586963],[74.649548,32.591034],[74.648975,32.591948],[74.647905,32.592374],[74.644414,32.59232],[74.64087,32.59363],[74.639795,32.594292],[74.638437,32.595399],[74.634785,32.602619],[74.635866,32.608113],[74.636018,32.608782],[74.637035,32.610621],[74.64225,32.610097],[74.646146,32.610059],[74.646961,32.610294],[74.649333,32.612832],[74.651016,32.626705],[74.65113,32.627632],[74.652175,32.629699],[74.653224,32.630156],[74.654835,32.630181],[74.655938,32.629757],[74.659436,32.629364],[74.66366,32.630305],[74.665853,32.635046],[74.666967,32.636333],[74.669238,32.639845],[74.66992,32.64064],[74.669912,32.641103],[74.673883,32.642845],[74.678143,32.643941],[74.678405,32.644391],[74.683216,32.644895],[74.691106,32.651842],[74.692677,32.654821],[74.689901,32.659759],[74.68718,32.660413],[74.686363,32.660405],[74.683634,32.662097],[74.67926,32.667574],[74.678977,32.668011],[74.676619,32.668718],[74.667135,32.669465],[74.66496,32.670532],[74.664113,32.671679],[74.663835,32.672366],[74.663035,32.672586],[74.662238,32.672778],[74.656611,32.684264],[74.650386,32.698281],[74.651427,32.701803],[74.653243,32.705022],[74.655471,32.711101],[74.655684,32.712904],[74.658553,32.717717],[74.658769,32.718883],[74.658426,32.722033],[74.657878,32.723393],[74.658138,32.724088],[74.658863,32.726822],[74.659276,32.727794],[74.663595,32.737733],[74.664706,32.73911],[74.66541,32.74076],[74.667789,32.743078],[74.670551,32.746286],[74.67104,32.747443],[74.673988,32.761106],[74.679617,32.773453],[74.682103,32.781889],[74.685766,32.788867],[74.690117,32.79608],[74.692987,32.799309],[74.693539,32.799317],[74.695386,32.801163],[74.696067,32.802512],[74.700035,32.810526],[74.70303,32.82126],[74.703655,32.828972],[74.702769,32.832839],[74.701361,32.835077],[74.689038,32.83308],[74.688528,32.832614],[74.686935,32.83169],[74.686117,32.831682],[74.685448,32.831161],[74.679707,32.830223],[74.679165,32.829756],[74.67675,32.829288],[74.675897,32.828438],[74.674627,32.827684],[74.673543,32.827435],[74.671185,32.825492],[74.670323,32.824973],[74.669238,32.824725],[74.668595,32.823995],[74.664303,32.821607],[74.661898,32.821799],[74.660789,32.822459],[74.656921,32.827177],[74.653181,32.827357],[74.652366,32.827112],[74.651589,32.826415],[74.651328,32.825947],[74.649999,32.825486],[74.648913,32.82527],[74.638158,32.813986],[74.637073,32.813746],[74.635988,32.813498],[74.634955,32.812114],[74.63317,32.807524],[74.632374,32.801602],[74.632829,32.799811],[74.635861,32.79554],[74.64107,32.791301],[74.647699,32.788782],[74.649582,32.787428],[74.650299,32.787351],[74.653327,32.783515],[74.653897,32.78126],[74.653417,32.779426],[74.652619,32.778727],[74.649986,32.776892],[74.645941,32.776831],[74.641606,32.778133],[74.636257,32.778052],[74.634115,32.777328],[74.63151,32.774339],[74.630219,32.77206],[74.629265,32.7659],[74.632467,32.7582],[74.633855,32.755958],[74.635253,32.750778],[74.633946,32.749627],[74.632642,32.748252],[74.632115,32.747344],[74.631057,32.746869],[74.627556,32.747252],[74.625352,32.749277],[74.624282,32.749492],[74.621829,32.751032],[74.621281,32.751014],[74.620188,32.752161],[74.619648,32.752144],[74.616632,32.755289],[74.613916,32.755483],[74.613131,32.755467],[74.612601,32.754999],[74.610989,32.754747],[74.605973,32.751256],[74.602714,32.751346],[74.600623,32.751411],[74.598169,32.752063],[74.597612,32.752523],[74.594943,32.752477],[74.59413,32.752241],[74.592841,32.749935],[74.588908,32.746483],[74.587829,32.746007],[74.58162,32.746815],[74.579587,32.74503],[74.57558,32.745036],[74.571807,32.746486],[74.571094,32.750306],[74.570778,32.752101],[74.568849,32.754352],[74.5683,32.754348],[74.56746,32.755239],[74.56286,32.75699],[74.556968,32.757139],[74.555093,32.756646],[74.554209,32.755985],[74.548716,32.749252],[74.546393,32.747162],[74.543854,32.743318],[74.540918,32.743276],[74.540101,32.743259],[74.537391,32.744557],[74.534971,32.744523],[74.534699,32.744055],[74.533618,32.743578],[74.532565,32.743357],[74.531289,32.741747],[74.530751,32.741738],[74.529703,32.740589],[74.526709,32.740409],[74.518618,32.743586],[74.514582,32.743526],[74.513789,32.743281],[74.512997,32.742369],[74.512768,32.741724],[74.50935,32.73871],[74.507288,32.743927],[74.508826,32.748216],[74.507997,32.750949],[74.502405,32.759013],[74.501292,32.759918],[74.501287,32.760381],[74.496413,32.76213],[74.494397,32.762027],[74.48677,32.761521],[74.482981,32.76215],[74.473947,32.770627],[74.472398,32.772285],[74.470105,32.772618],[74.464999,32.772767],[74.462874,32.772501],[74.460978,32.77317],[74.459036,32.775402],[74.458488,32.776752],[74.458943,32.779246],[74.458651,32.780145],[74.457521,32.78285],[74.45669,32.783531],[74.454511,32.784423],[74.451227,32.783575],[74.449742,32.783191],[74.44866,32.782741],[74.445749,32.781098],[74.445222,32.780399],[74.443627,32.779909],[74.439909,32.779758],[74.433694,32.77955],[74.43019,32.779938],[74.428808,32.780838],[74.42692,32.781034],[74.425855,32.781021],[74.423689,32.782554],[74.421302,32.783165],[74.41587,32.784043],[74.413159,32.783665],[74.410241,32.783267],[74.40942,32.783485],[74.406494,32.782746],[74.40542,32.781832],[74.403062,32.779966],[74.397254,32.766352],[74.391049,32.767872],[74.388027,32.768607],[74.387215,32.768361],[74.386702,32.768116],[74.386239,32.764931],[74.386894,32.760392],[74.385565,32.758783],[74.385035,32.758329],[74.383706,32.75787],[74.370795,32.759008],[74.365105,32.760739],[74.364027,32.76139],[74.362414,32.761362],[74.360257,32.761558],[74.355712,32.763241],[74.354565,32.763316],[74.35239,32.765307],[74.350211,32.766201],[74.349145,32.766388],[74.344744,32.769963],[74.339812,32.773965],[74.331714,32.776096],[74.330608,32.77654],[74.330158,32.776998],[74.32852,32.778334],[74.327609,32.778757],[74.32542,32.780979],[74.322254,32.788429],[74.319222,32.792004],[74.316516,32.792189],[74.316007,32.791744],[74.311974,32.791471],[74.309242,32.792537],[74.307871,32.795255],[74.307732,32.799574],[74.306898,32.801146],[74.306042,32.802708],[74.305483,32.803362],[74.302229,32.804697],[74.301905,32.806509],[74.301582,32.808535],[74.304938,32.815425],[74.303144,32.821511],[74.301754,32.823309],[74.300686,32.823527],[74.300151,32.823281],[74.299346,32.823727],[74.299874,32.824409],[74.295271,32.825261],[74.294983,32.82571],[74.293621,32.826596],[74.288767,32.827643],[74.284406,32.829599],[74.284138,32.830058],[74.276067,32.829695],[74.275542,32.830141],[74.274737,32.830595],[74.273136,32.830331],[74.264513,32.830194],[74.264224,32.830648],[74.263157,32.830843],[74.256294,32.836403],[74.255189,32.83797],[74.244318,32.84236],[74.237839,32.842687],[74.236214,32.843331],[74.235677,32.843785],[74.232897,32.843921],[74.226023,32.843392],[74.224394,32.844054],[74.222035,32.844545],[74.217373,32.84527],[74.216257,32.846177],[74.214707,32.85007],[74.214273,32.851132],[74.21401,32.853987],[74.214243,32.855355],[74.214148,32.856134],[74.212985,32.858626],[74.209472,32.859236],[74.206466,32.861677],[74.205046,32.865879],[74.204747,32.867],[74.202457,32.870699],[74.201668,32.870689],[74.201114,32.871116],[74.191428,32.871647],[74.190316,32.872313],[74.187347,32.873196],[74.181295,32.879782],[74.181011,32.880513],[74.180262,32.880732],[74.179979,32.881463],[74.179253,32.881656],[74.178217,32.883002],[74.174145,32.883919],[74.172236,32.884721],[74.163677,32.88434],[74.159424,32.886069],[74.159135,32.886527],[74.1566,32.887174],[74.155785,32.888082],[74.154149,32.889184],[74.152257,32.889591],[74.143609,32.889901],[74.141688,32.89123],[74.132796,32.893104],[74.131171,32.893538],[74.130882,32.893996],[74.128694,32.895083],[74.122744,32.895878],[74.122185,32.896331],[74.113354,32.895488],[74.112282,32.8957],[74.110116,32.896355],[74.108709,32.897715],[74.106817,32.898117],[74.105355,32.898365],[74.103614,32.89924],[74.098385,32.901824],[74.096247,32.902012],[74.094076,32.902208],[74.093819,32.902662],[74.093541,32.903121],[74.085957,32.90478],[74.085398,32.905237],[74.081765,32.905999],[74.070031,32.906301],[74.068384,32.907888],[74.066769,32.907853],[74.061072,32.909319],[74.059984,32.909308],[74.055354,32.911743],[74.052804,32.916007],[74.052593,32.924632],[74.053067,32.926417],[74.052327,32.930695],[74.048559,32.932352],[74.043103,32.932167],[74.041358,32.932136],[74.040584,32.931454],[74.039529,32.930766],[74.033367,32.929501],[74.027487,32.929645],[74.025298,32.929812],[74.017498,32.930133],[74.014282,32.929841],[74.004957,32.931961],[74.004129,32.932404],[74.001803,32.932338],[73.997123,32.933434],[73.99264,32.933509],[73.98826,32.935738],[73.987968,32.936405],[73.987675,32.937067],[73.988159,32.939334],[73.989958,32.942549],[73.992369,32.943286],[73.994972,32.946284],[73.996251,32.94813],[73.997874,32.951902],[73.997843,32.953955],[73.998256,32.954856],[73.998805,32.954876],[73.999027,32.955429],[73.998715,32.957018],[73.997284,32.960167],[73.996724,32.960624],[73.994823,32.961278],[73.993194,32.961919],[73.992905,32.96235],[73.988016,32.963179],[73.983683,32.963891],[73.982908,32.964017],[73.98072,32.965107],[73.979355,32.965976],[73.972316,32.967467],[73.968529,32.969194],[73.965742,32.972098],[73.962894,32.977031],[73.96131,32.983845],[73.960805,32.985404],[73.959956,32.986292],[73.958326,32.986951],[73.941602,32.988436],[73.937214,32.986909],[73.935714,32.986763],[73.93363,32.985342],[73.929065,32.985022],[73.925514,32.986116],[73.915852,32.993913],[73.912129,32.994991],[73.907549,32.996478],[73.90692,32.996646],[73.904697,32.99887],[73.896814,33.001909],[73.896524,33.002357],[73.892802,33.002794],[73.885255,33.00249],[73.882025,33.002681],[73.878269,33.002198],[73.875584,33.002168],[73.873416,33.002589],[73.868806,33.002292],[73.866006,33.002658],[73.863778,33.001949],[73.862048,33.003062],[73.861212,33.00395],[73.859883,33.003469],[73.852399,33.005075],[73.845831,33.00592],[73.842811,33.007472],[73.841468,33.007682],[73.831252,33.007255],[73.829629,33.007449],[73.824017,33.005729],[73.822677,33.005706],[73.822191,33.004793],[73.821673,33.003865],[73.820952,33.00113],[73.819353,33.00087],[73.818271,33.000408],[73.816289,32.993167],[73.815685,32.986745],[73.816004,32.985393],[73.815765,32.98403],[73.813779,32.979193],[73.812173,32.978029],[73.811169,32.976651],[73.808345,32.972538],[73.806484,32.971346],[73.800032,32.970529],[73.799503,32.970073],[73.797764,32.969609],[73.797239,32.968908],[73.79669,32.968892],[73.793928,32.967016],[73.793701,32.966553],[73.792361,32.965631],[73.79157,32.965383],[73.788077,32.965313],[73.78645,32.965738],[73.781756,32.969968],[73.780068,32.972651],[73.779731,32.974697],[73.781717,32.979717],[73.787433,32.987092],[73.789129,32.990801],[73.789704,32.992654],[73.790228,32.993519],[73.789924,32.994639],[73.788706,32.998475],[73.78786,32.999653],[73.782298,33.006509],[73.781737,33.006965],[73.780912,33.007843],[73.779816,33.008052],[73.777345,33.009156],[73.776927,33.009563],[73.773214,33.013138],[73.772388,33.013352],[73.7713,33.013789],[73.762162,33.022238],[73.761368,33.022454],[73.757592,33.026921],[73.755978,33.028715],[73.755239,33.028924],[73.754675,33.029589],[73.75251,33.030448],[73.751428,33.031112],[73.748671,33.032859],[73.743359,33.039354],[73.740275,33.043602],[73.73965,33.046082],[73.740469,33.055411],[73.739894,33.056539],[73.738593,33.063075],[73.738019,33.064194],[73.735266,33.066658],[73.7309,33.067935],[73.729276,33.068129],[73.728193,33.068801],[73.725219,33.069617],[73.724643,33.0703],[73.724363,33.070757],[73.721391,33.071382],[73.720288,33.072494],[73.720012,33.073161],[73.717014,33.074021],[73.716185,33.074899],[73.71479,33.076005],[73.713992,33.075993],[73.709902,33.077498],[73.708803,33.078379],[73.707983,33.078357],[73.702743,33.082363],[73.698656,33.083645],[73.698092,33.084297],[73.697801,33.084754],[73.696183,33.085183],[73.692647,33.086909],[73.691569,33.087345],[73.688552,33.088444],[73.687211,33.088639],[73.682815,33.088923],[73.681763,33.08867],[73.680405,33.089082],[73.675007,33.089178],[73.671839,33.089212],[73.67103,33.088737],[73.67025,33.08828],[73.665141,33.087968],[73.6641,33.087252],[73.65822,33.085311],[73.652588,33.085207],[73.649428,33.086341],[73.643587,33.088414],[73.636668,33.087737],[73.635345,33.087046],[73.633379,33.086862],[73.63284,33.086392],[73.631765,33.086601],[73.629011,33.089036],[73.627892,33.089911],[73.625441,33.100101],[73.625625,33.111885],[73.629363,33.122914],[73.630396,33.127547],[73.630488,33.1281],[73.630163,33.129919],[73.62877,33.132378],[73.628228,33.132367],[73.627677,33.132359],[73.625177,33.134563],[73.626097,33.140046],[73.628161,33.14235],[73.636285,33.141819],[73.637611,33.142315],[73.639171,33.143937],[73.639437,33.144469],[73.645454,33.158591],[73.646425,33.161994],[73.646955,33.162627],[73.647981,33.163706],[73.653612,33.165115],[73.656445,33.169252],[73.655778,33.172879],[73.655895,33.178098],[73.659203,33.184733],[73.65648,33.194656],[73.658164,33.20513],[73.657687,33.208079],[73.657129,33.209216],[73.653221,33.213419],[73.649154,33.214037],[73.645281,33.217133],[73.641762,33.226357],[73.640921,33.22677],[73.637457,33.226497],[73.636377,33.226034],[73.635196,33.222528],[73.634274,33.216611],[73.631401,33.213949],[73.628745,33.215715],[73.626175,33.220686],[73.625423,33.223069],[73.627293,33.231498],[73.626319,33.234867],[73.626105,33.235577],[73.625263,33.236926],[73.62402,33.237214],[73.622638,33.23763],[73.621266,33.238522],[73.615066,33.243278],[73.61084,33.249766],[73.609502,33.249733],[73.608152,33.249704],[73.607319,33.250154],[73.60563,33.251706],[73.605343,33.26076],[73.604777,33.262342],[73.60406,33.26345],[73.603076,33.264793],[73.600783,33.268153],[73.599099,33.272048],[73.598375,33.278583],[73.597983,33.282728],[73.599193,33.285803],[73.600647,33.289115],[73.602642,33.291766],[73.603637,33.293316],[73.604092,33.295295],[73.603266,33.297026],[73.599555,33.299136],[73.594231,33.303388],[73.591866,33.304215],[73.589756,33.305265],[73.588892,33.307648],[73.5883,33.310036],[73.587423,33.313081],[73.587805,33.317455],[73.587203,33.320275],[73.586078,33.322875],[73.585514,33.324392],[73.583422,33.324567],[73.582063,33.326499],[73.583016,33.329364],[73.585862,33.329854],[73.587912,33.330555],[73.590456,33.332355],[73.591438,33.334558],[73.590835,33.336946],[73.590008,33.338676],[73.588133,33.340389],[73.586808,33.341015],[73.584225,33.340521],[73.580117,33.338907],[73.57786,33.33625],[73.576347,33.33468],[73.57506,33.334218],[73.574012,33.334636],[73.572918,33.336147],[73.571324,33.337421],[73.569485,33.340397],[73.565826,33.342514],[73.565648,33.345785],[73.567433,33.351856],[73.569246,33.354382],[73.570327,33.354845],[73.571355,33.356242],[73.570733,33.358266],[73.568771,33.360711],[73.56715,33.360676],[73.56554,33.360637],[73.562233,33.362644],[73.558537,33.368445],[73.558924,33.373663],[73.560486,33.378894],[73.563137,33.385315],[73.562818,33.386897],[73.563469,33.391448],[73.564132,33.392935],[73.564908,33.394336],[73.566335,33.396661],[73.567526,33.398331],[73.568911,33.399247],[73.570503,33.399435],[73.572082,33.400204],[73.573458,33.401428],[73.573774,33.40277],[73.573345,33.404992],[73.57311,33.406771],[73.573953,33.408283],[73.575535,33.408761],[73.576746,33.409679],[73.578469,33.411202],[73.580029,33.412424],[73.582259,33.414707],[73.583445,33.416654],[73.584442,33.418767],[73.585798,33.420725],[73.587366,33.421652],[73.589499,33.421547],[73.591424,33.422179],[73.591557,33.423823],[73.591149,33.4256],[73.59076,33.426334],[73.588273,33.426584],[73.586326,33.426696],[73.584366,33.426798],[73.583266,33.427968],[73.582693,33.42944],[73.583326,33.431688],[73.584335,33.433493],[73.585903,33.43427],[73.587658,33.434904],[73.58834,33.435806],[73.587586,33.437434],[73.587167,33.439356],[73.587106,33.441442],[73.58792,33.443538],[73.589673,33.444168],[73.594641,33.444417],[73.598007,33.444486],[73.599738,33.445718],[73.601667,33.44665],[73.604483,33.447447],[73.606986,33.448668],[73.608878,33.450574],[73.609992,33.450893],[73.610782,33.450914],[73.611041,33.451382],[73.61184,33.452311],[73.618053,33.451976],[73.61828,33.452443],[73.620882,33.454434],[73.622246,33.454899],[73.622754,33.455372],[73.624907,33.45756],[73.625148,33.458463],[73.625349,33.46005],[73.624373,33.4657],[73.62241,33.468145],[73.620231,33.468334],[73.618887,33.468306],[73.617804,33.468741],[73.614988,33.472097],[73.614263,33.478637],[73.613108,33.480209],[73.610139,33.480377],[73.608314,33.478288],[73.607283,33.47691],[73.605952,33.476442],[73.602945,33.476818],[73.601554,33.478385],[73.600722,33.485801],[73.600469,33.48767],[73.598531,33.48899],[73.597423,33.489188],[73.596026,33.490982],[73.595979,33.49255],[73.597718,33.497377],[73.596553,33.500482],[73.597031,33.503509],[73.597625,33.50493],[73.600173,33.505049],[73.60229,33.504127],[73.604038,33.50271],[73.609525,33.500867],[73.609339,33.505008],[73.605562,33.514512],[73.606522,33.518837],[73.607286,33.519982],[73.609452,33.520019],[73.614017,33.52081],[73.615066,33.52129],[73.615336,33.521754],[73.616394,33.52198],[73.617222,33.522711],[73.61832,33.523882],[73.620104,33.524572],[73.623771,33.528491],[73.625099,33.529181],[73.632127,33.529325],[73.632897,33.530125],[73.633123,33.533514],[73.630975,33.537912],[73.62585,33.540299],[73.625027,33.540286],[73.624745,33.540734],[73.624453,33.54119],[73.622547,33.541613],[73.621475,33.54159],[73.61898,33.544027],[73.618677,33.544919],[73.61837,33.546037],[73.618719,33.552403],[73.621586,33.569939],[73.62167,33.570587],[73.62101,33.574214],[73.619553,33.577593],[73.6176,33.579575],[73.616485,33.580009],[73.615401,33.580453],[73.613707,33.582902],[73.613462,33.583474],[73.613114,33.584245],[73.611478,33.584673],[73.610399,33.584882],[73.607903,33.587318],[73.606802,33.587526],[73.605012,33.588297],[73.600925,33.593278],[73.605432,33.604927],[73.604885,33.60561],[73.603754,33.607631],[73.601566,33.608019],[73.596232,33.604759],[73.590298,33.604406],[73.58947,33.604619],[73.587824,33.605491],[73.582923,33.611946],[73.579452,33.614799],[73.5783,33.616184],[73.577225,33.616365],[73.573373,33.618332],[73.571204,33.61829],[73.569854,33.617431],[73.56719,33.616617],[73.564487,33.616772],[73.563634,33.617447],[73.561372,33.621471],[73.562902,33.626016],[73.567156,33.634965],[73.568201,33.636579],[73.569136,33.64111],[73.568355,33.648361],[73.561882,33.664325],[73.562685,33.673845],[73.563169,33.6759],[73.565207,33.679126],[73.56576,33.679133],[73.570833,33.682157],[73.574611,33.687141],[73.577111,33.688946],[73.583233,33.692154],[73.591135,33.698895],[73.591889,33.70004],[73.59763,33.716249],[73.598218,33.723051],[73.597497,33.728262],[73.593988,33.73679],[73.592829,33.748296],[73.593082,33.748985],[73.591291,33.754155],[73.587912,33.758384],[73.579464,33.760289],[73.578628,33.761173],[73.57722,33.762498],[73.576271,33.762824],[73.574764,33.763392],[73.573352,33.764436],[73.571151,33.766216],[73.570606,33.766208],[73.566438,33.769038],[73.564755,33.770823],[73.560518,33.776855],[73.558382,33.783598],[73.55917,33.791853],[73.561313,33.802249],[73.56769,33.823664],[73.570526,33.827789],[73.570678,33.828371],[73.570901,33.829961],[73.570544,33.832672],[73.571251,33.836321],[73.572406,33.838256],[73.572769,33.839707],[73.572453,33.841064],[73.572852,33.84583],[73.574117,33.848339],[73.574613,33.849156],[73.57501,33.849838],[73.578762,33.851522],[73.580161,33.857644],[73.582475,33.86222],[73.583539,33.862247],[73.585678,33.864567],[73.585552,33.869354],[73.586068,33.877478],[73.589905,33.884346],[73.58617,33.899446],[73.57903,33.910818],[73.574658,33.912343],[73.569926,33.916409],[73.568691,33.917069],[73.566548,33.918732],[73.566251,33.919387],[73.565419,33.919627],[73.560758,33.923143],[73.557724,33.924188],[73.549612,33.93151],[73.543559,33.943161],[73.53704,33.95207],[73.535691,33.956274],[73.528178,33.974071],[73.527843,33.975862],[73.522128,33.985485],[73.516488,34.000529],[73.514949,34.006609],[73.515118,34.013285],[73.515653,34.017936],[73.514956,34.02335],[73.514302,34.02651],[73.509624,34.036366],[73.508343,34.041998],[73.509137,34.051501],[73.508303,34.060311],[73.5063,34.064343],[73.506548,34.065263],[73.505899,34.069111],[73.505564,34.070897],[73.50399,34.076059],[73.500012,34.079657],[73.498705,34.080708],[73.498121,34.081849],[73.497488,34.08443],[73.497057,34.087344],[73.497278,34.088217],[73.496382,34.092885],[73.49673,34.099221],[73.498666,34.107648],[73.495627,34.116182],[73.492782,34.120398],[73.493377,34.125262],[73.495322,34.134032],[73.494094,34.139664],[73.493501,34.140778],[73.492104,34.141413],[73.491269,34.141626],[73.489014,34.144768],[73.491993,34.155837],[73.492167,34.156582],[73.491302,34.166072],[73.488822,34.176179],[73.489001,34.179125],[73.488502,34.186124],[73.48815,34.188393],[73.489345,34.193402],[73.489009,34.195186],[73.489227,34.205373],[73.492464,34.213801],[73.493083,34.220159],[73.49245,34.222856],[73.489535,34.226606],[73.487941,34.227242],[73.487181,34.227475],[73.486643,34.228134],[73.484991,34.228786],[73.484375,34.229029],[73.477911,34.234775],[73.474571,34.245543],[73.470036,34.251766],[73.470368,34.262621],[73.470421,34.264452],[73.476822,34.276626],[73.478459,34.280659],[73.47934,34.283395],[73.47881,34.288594],[73.478584,34.290631],[73.47594,34.295309],[73.474843,34.295951],[73.472651,34.296826],[73.471027,34.296791],[73.467786,34.296032],[73.466229,34.29375],[73.464118,34.288282],[73.461684,34.282123],[73.458122,34.280396],[73.453822,34.278302],[73.453868,34.281269],[73.454416,34.28808],[73.454679,34.289434],[73.453901,34.296312],[73.453587,34.297345],[73.453284,34.298026],[73.449884,34.304961],[73.4495,34.305593],[73.448098,34.30715],[73.446987,34.307121],[73.444454,34.30934],[73.442837,34.318127],[73.439236,34.327515],[73.438093,34.329557],[73.437008,34.329737],[73.435921,34.329944],[73.433917,34.331975],[73.433118,34.332157],[73.432273,34.332351],[73.424157,34.339667],[73.423536,34.34144],[73.423742,34.343697],[73.42627,34.349425],[73.425968,34.350087],[73.426197,34.35145],[73.425055,34.353464],[73.42314,34.353648],[73.42288,34.35319],[73.418563,34.352177],[73.413592,34.354599],[73.408418,34.354697],[73.405033,34.357336],[73.401463,34.358378],[73.400342,34.359479],[73.398321,34.366171],[73.397296,34.36938],[73.390843,34.374668],[73.391317,34.377153],[73.391892,34.37808],[73.393902,34.381046],[73.394435,34.381514],[73.396315,34.382244],[73.400394,34.382787],[73.403599,34.384654],[73.404704,34.384669],[73.405783,34.384698],[73.408727,34.386115],[73.409252,34.386814],[73.410721,34.390908],[73.411811,34.399986],[73.420184,34.417767],[73.420359,34.420918],[73.42272,34.431579],[73.424584,34.43775],[73.425376,34.442291],[73.423677,34.452762],[73.42338,34.459921],[73.422495,34.46346],[73.422248,34.470693],[73.425309,34.477095],[73.426131,34.477335],[73.426688,34.477343],[73.427218,34.478024],[73.434397,34.491053],[73.437499,34.504453],[73.436493,34.508358],[73.435354,34.511643],[73.430481,34.519],[73.429933,34.521398],[73.430807,34.526005],[73.434941,34.532406],[73.436055,34.532426],[73.441281,34.538417],[73.442859,34.565345],[73.447752,34.574234],[73.449353,34.574494],[73.450956,34.576369],[73.4546,34.577387],[73.456091,34.577815],[73.456625,34.578283],[73.46045,34.578358],[73.46277,34.577742],[73.469294,34.574022],[73.475827,34.574159],[73.477947,34.574783],[73.483186,34.57544],[73.486961,34.576901],[73.488027,34.577584],[73.49114,34.578132],[73.492608,34.579011],[73.497184,34.580489],[73.500734,34.580556],[73.501583,34.579883],[73.503772,34.57927],[73.509313,34.576674],[73.509886,34.575999],[73.510719,34.576013],[73.510982,34.575566],[73.517542,34.575034],[73.518383,34.574614],[73.523013,34.574709],[73.526824,34.575893],[73.528178,34.575913],[73.528691,34.576385],[73.529203,34.576852],[73.534127,34.577188],[73.534672,34.577657],[73.535502,34.577675],[73.537562,34.580652],[73.539463,34.581126],[73.539949,34.581389],[73.541266,34.581787],[73.544742,34.585762],[73.545299,34.58577],[73.546873,34.587615],[73.547419,34.588057],[73.547965,34.588077],[73.553539,34.593167],[73.557359,34.593448],[73.558456,34.592806],[73.559566,34.592161],[73.563127,34.59178],[73.563412,34.591321],[73.568371,34.589641],[73.571015,34.589392],[73.577968,34.588732],[73.579339,34.588255],[73.580158,34.587834],[73.586417,34.587961],[73.588325,34.588209],[73.592898,34.589905],[73.597554,34.589999],[73.598921,34.589567],[73.602482,34.589181],[73.608021,34.586585],[73.615943,34.586751],[73.618408,34.586111],[73.618935,34.585914],[73.620655,34.583473],[73.628604,34.574588],[73.630821,34.572821],[73.631903,34.572839],[73.638214,34.567093],[73.639479,34.566199],[73.640371,34.566124],[73.644111,34.566318],[73.64898,34.56754],[73.650865,34.56827],[73.657654,34.578105],[73.660866,34.589004],[73.660176,34.593296],[73.65755,34.599094],[73.658738,34.606644],[73.659236,34.608245],[73.660194,34.610437],[73.664838,34.615438],[73.67396,34.62519],[73.681597,34.634728],[73.688325,34.642133],[73.688882,34.64214],[73.690304,34.643567],[73.694644,34.650237],[73.695255,34.651327],[73.696242,34.654053],[73.694223,34.65764],[73.690301,34.65905],[73.688712,34.65909],[73.688144,34.659539],[73.683222,34.660058],[73.682398,34.660569],[73.676557,34.662911],[73.675731,34.663604],[73.671637,34.664189],[73.666943,34.666139],[73.664393,34.669027],[73.663526,34.67102],[73.663775,34.671829],[73.667454,34.684658],[73.670326,34.689692],[73.675745,34.69001],[73.678074,34.691914],[73.681318,34.695555],[73.683054,34.699465],[73.686347,34.709625],[73.688035,34.712504],[73.69157,34.716715],[73.693265,34.717352],[73.694014,34.717615],[73.694543,34.718308],[73.70157,34.720542],[73.706583,34.725364],[73.706957,34.725988],[73.707803,34.728252],[73.70904,34.729472],[73.711809,34.735811],[73.711979,34.736978],[73.715646,34.742256],[73.72039,34.751324],[73.723355,34.757994],[73.726481,34.762578],[73.731406,34.771457],[73.731964,34.771464],[73.733559,34.772616],[73.737886,34.77385],[73.742553,34.779123],[73.743326,34.779368],[73.745422,34.781627],[73.750083,34.787152],[73.754157,34.789049],[73.757367,34.790464],[73.76197,34.790776],[73.764663,34.792388],[73.765195,34.793095],[73.76924,34.794308],[73.770327,34.795229],[73.773804,34.796879],[73.777385,34.796946],[73.783175,34.794582],[73.785097,34.794385],[73.78594,34.793946],[73.792727,34.794536],[73.795729,34.795486],[73.799492,34.797592],[73.802241,34.797651],[73.804167,34.797229],[73.809921,34.795987],[73.811032,34.795336],[73.821147,34.795965],[73.822767,34.796656],[73.82303,34.797122],[73.823293,34.797588],[73.824912,34.79808],[73.826535,34.798563],[73.830501,34.80247],[73.832388,34.803401],[73.833497,34.803654],[73.843772,34.815811],[73.849711,34.81771],[73.851663,34.817563],[73.854113,34.817335],[73.854397,34.816876],[73.855774,34.816474],[73.856354,34.815559],[73.858328,34.81381],[73.858875,34.813829],[73.859691,34.813633],[73.860263,34.812953],[73.861653,34.812064],[73.867415,34.811485],[73.873029,34.816339],[73.873255,34.817025],[73.875406,34.818421],[73.880568,34.818742],[73.88361,34.81788],[73.884742,34.817238],[73.887741,34.817291],[73.89127,34.818253],[73.891803,34.81895],[73.892852,34.820094],[73.895842,34.820585],[73.897438,34.821758],[73.901249,34.821831],[73.902362,34.821618],[73.908827,34.816328],[73.913227,34.814832],[73.91351,34.814399],[73.918153,34.814483],[73.922732,34.81658],[73.923262,34.817285],[73.924342,34.817536],[73.927826,34.820736],[73.929614,34.82529],[73.935655,34.833513],[73.938886,34.834947],[73.949467,34.835115],[73.955014,34.835447],[73.956635,34.836136],[73.961391,34.840763],[73.96249,34.841014],[73.963325,34.841025],[73.964385,34.841709],[73.966217,34.844682],[73.972583,34.86315],[73.972783,34.863731],[73.974374,34.865341],[73.976553,34.865842],[73.984087,34.866022],[73.985585,34.865767],[73.990986,34.867466],[73.99428,34.867071],[73.99942,34.86872],[73.999681,34.869411],[74.000239,34.869417],[74.002902,34.871489],[74.010532,34.873003],[74.013353,34.874244],[74.017007,34.875817],[74.018362,34.876068],[74.024117,34.87594],[74.025769,34.875514],[74.029564,34.876957],[74.030352,34.877635],[74.032134,34.883301],[74.038704,34.892893],[74.039503,34.892902],[74.040062,34.892908],[74.042212,34.894528],[74.041878,34.896336],[74.038135,34.903259],[74.039696,34.915018],[74.04389,34.921857],[74.045251,34.921872],[74.048475,34.923949],[74.051754,34.924009],[74.055302,34.925216],[74.059011,34.928903],[74.064744,34.929648],[74.065841,34.930125],[74.070611,34.934674],[74.0725,34.936559],[74.074022,34.939981],[74.074263,34.941104],[74.072758,34.946258],[74.067617,34.954514],[74.064318,34.964851],[74.063639,34.969338],[74.063817,34.971055],[74.06431,34.974431],[74.066536,34.983135],[74.065545,34.988771],[74.064973,34.989451],[74.063361,34.989422],[74.0603,34.991618],[74.060523,34.993635],[74.06106,34.994127],[74.062379,34.995753],[74.06477,34.998012],[74.065274,34.99867],[74.070489,34.998982],[74.071595,34.998546],[74.074316,34.998591],[74.076779,34.99887],[74.077603,34.999341],[74.081557,35.00415],[74.090881,35.006188],[74.092227,35.007543],[74.094333,35.009981],[74.09481,35.010905],[74.103194,35.01467],[74.103994,35.014684],[74.105582,35.016526],[74.108235,35.019502],[74.108435,35.022203],[74.108137,35.022884],[74.106445,35.02464],[74.103697,35.025489],[74.097734,35.034184],[74.092984,35.035681],[74.092724,35.036114],[74.091431,35.036548],[74.091059,35.037005],[74.08997,35.037216],[74.089395,35.037891],[74.085217,35.040066],[74.079992,35.040662],[74.079166,35.041311],[74.077509,35.041948],[74.076395,35.042158],[74.075812,35.042828],[74.073609,35.044373],[74.072506,35.044583],[74.071137,35.045014],[74.06636,35.048531],[74.067674,35.050364],[74.07232,35.058364],[74.072568,35.059722],[74.074193,35.063096],[74.077909,35.066762],[74.079266,35.068136],[74.084131,35.079054],[74.090021,35.087719],[74.092113,35.090566],[74.09249,35.095182],[74.093255,35.096544],[74.094357,35.096794],[74.095156,35.097489],[74.101658,35.099627],[74.103539,35.100107],[74.111453,35.101845],[74.111719,35.102292],[74.112799,35.10274],[74.11447,35.103682],[74.115784,35.104729],[74.11894,35.105026],[74.12266,35.105091],[74.126964,35.105162],[74.129969,35.105563],[74.132245,35.106552],[74.134354,35.108],[74.13473,35.109899],[74.134228,35.112603],[74.131853,35.115509],[74.129049,35.118296],[74.126256,35.120723],[74.122765,35.122435],[74.118849,35.12378],[74.116811,35.124816],[74.114906,35.126307],[74.11308,35.127774],[74.111677,35.129337],[74.110671,35.130213],[74.109808,35.132214],[74.110784,35.136304],[74.113126,35.1403],[74.114162,35.141099],[74.115307,35.143312],[74.116944,35.1464],[74.117015,35.148889],[74.116111,35.150401],[74.114206,35.151901],[74.111613,35.152331],[74.11003,35.152186],[74.108338,35.151217],[74.106948,35.149653],[74.105267,35.14821],[74.103967,35.14725],[74.102031,35.145843],[74.095733,35.145956],[74.094613,35.147063],[74.093198,35.14816],[74.092357,35.148375],[74.091007,35.149813],[74.090741,35.150494],[74.090181,35.150488],[74.088254,35.151807],[74.087589,35.152361],[74.080401,35.154712],[74.073829,35.154372],[74.070571,35.153628],[74.070303,35.15319],[74.06896,35.152277],[74.068159,35.152258],[74.067324,35.152248],[74.067057,35.151783],[74.064336,35.150592],[74.063249,35.150568],[74.062698,35.150129],[74.055333,35.14977],[74.050992,35.147653],[74.047187,35.147358],[74.04501,35.146425],[74.039076,35.147469],[74.037351,35.148266],[74.036168,35.148997],[74.032547,35.150039],[74.032285,35.150486],[74.032011,35.150945],[74.031171,35.151155],[74.021917,35.158439],[74.020791,35.159767],[74.019659,35.160409],[74.015197,35.162595],[74.013557,35.16344],[74.01272,35.163429],[74.009085,35.166085],[74.005666,35.170531],[74.004627,35.174871],[74.004757,35.176193],[74.003199,35.181069],[73.99979,35.184396],[73.992091,35.184713],[73.988328,35.18284],[73.982296,35.182295],[73.980667,35.181814],[73.97881,35.179741],[73.977732,35.179284],[73.970642,35.177785],[73.969838,35.176881],[73.968785,35.175739],[73.96552,35.174767],[73.964981,35.174297],[73.963623,35.174046],[73.960049,35.174209],[73.959208,35.174423],[73.955843,35.177291],[73.95009,35.18644],[73.944775,35.191697],[73.939028,35.196817],[73.933179,35.20275],[73.932364,35.202938],[73.930643,35.204582],[73.926222,35.206289],[73.925638,35.20694],[73.919331,35.211083],[73.917273,35.212215],[73.911242,35.21256],[73.910411,35.212314],[73.907913,35.213145],[73.900788,35.212599],[73.896388,35.213385],[73.888181,35.213242],[73.881405,35.210411],[73.870635,35.210875],[73.86708,35.210581],[73.865205,35.210798],[73.859252,35.21428],[73.858488,35.215412],[73.857924,35.215635],[73.853902,35.22071],[73.847396,35.228713],[73.847375,35.229173],[73.846805,35.229599],[73.842412,35.230429],[73.84056,35.231558],[73.831568,35.235173],[73.830755,35.235152],[73.829614,35.236045],[73.828812,35.236034],[73.827977,35.236022],[73.827137,35.236669],[73.824905,35.237747],[73.822701,35.237939],[73.819637,35.239705],[73.815494,35.240277],[73.815209,35.240723],[73.814913,35.241176],[73.811881,35.242037],[73.811586,35.242464],[73.798343,35.245143],[73.796948,35.245115],[73.796411,35.245538],[73.789143,35.245171],[73.788256,35.245112],[73.78743,35.244658],[73.777538,35.243858],[73.777015,35.242707],[73.776481,35.242002],[73.772938,35.241066],[73.761996,35.231404],[73.761447,35.231397],[73.760386,35.230227],[73.758763,35.229532],[73.758214,35.229525],[73.756878,35.228349],[73.756076,35.227427],[73.752846,35.226263],[73.752312,35.225567],[73.751495,35.22486],[73.747679,35.223918],[73.744737,35.221799],[73.740941,35.221796],[73.737883,35.221468],[73.736858,35.220763],[73.735503,35.219387],[73.732491,35.218429],[73.731956,35.217751],[73.731724,35.217301],[73.730044,35.217262],[73.729211,35.218133],[73.72755,35.218767],[73.726455,35.218976],[73.7239,35.221634],[73.722516,35.222066],[73.721957,35.222045],[73.721083,35.22315],[73.720504,35.224036],[73.71638,35.225991],[73.715179,35.228446],[73.71585,35.233857],[73.718347,35.241372],[73.719342,35.252649],[73.721903,35.259905],[73.7221,35.261946],[73.722632,35.262624],[73.727082,35.278256],[73.726427,35.281398],[73.725289,35.283161],[73.720296,35.288607],[73.71846,35.29024],[73.717024,35.292473],[73.710823,35.305378],[73.709397,35.30837],[73.707375,35.312314],[73.699873,35.323217],[73.699624,35.326671],[73.700363,35.336154],[73.700012,35.354321],[73.700448,35.358376],[73.700708,35.359067],[73.709574,35.382645],[73.711638,35.387197],[73.714082,35.391083],[73.715753,35.393105],[73.719265,35.39775],[73.719827,35.397757],[73.724871,35.404099],[73.725345,35.405919],[73.72809,35.411284],[73.734784,35.422297],[73.735688,35.423799],[73.738908,35.427932],[73.739707,35.428182],[73.741373,35.430316],[73.74244,35.430332],[73.745105,35.433291],[73.745666,35.433303],[73.747015,35.434014],[73.754721,35.442024],[73.756111,35.442282],[73.756925,35.442302],[73.757192,35.442767],[73.75855,35.443019],[73.758816,35.443484],[73.761841,35.444937],[73.762678,35.444949],[73.763181,35.445625],[73.76466,35.445931],[73.769108,35.448166],[73.772956,35.448463],[73.773744,35.449163],[73.77458,35.449184],[73.783257,35.453189],[73.784896,35.453221],[73.785162,35.453659],[73.785409,35.454091],[73.791389,35.45647],[73.79514,35.460161],[73.79564,35.461978],[73.794562,35.469821],[73.791329,35.47696],[73.791445,35.477653],[73.791557,35.478541],[73.790896,35.482126],[73.791149,35.483041],[73.787301,35.498358],[73.787076,35.499161],[73.787327,35.500283],[73.786539,35.507929],[73.787668,35.515611],[73.786042,35.524334],[73.78491,35.525663],[73.781023,35.526505],[73.778256,35.526454],[73.77609,35.526187],[73.773558,35.52751],[73.771917,35.527478],[73.770784,35.527892],[73.763647,35.528188],[73.761125,35.529511],[73.760002,35.529628],[73.758908,35.529692],[73.755598,35.530293],[73.753914,35.53116],[73.752776,35.531817],[73.750306,35.532232],[73.74865,35.532429],[73.748111,35.532856],[73.746152,35.533708],[73.741722,35.534083],[73.741461,35.534529],[73.735869,35.53666],[73.735054,35.536648],[73.731101,35.540645],[73.730395,35.54557],[73.727742,35.549794],[73.726069,35.551562],[73.72079,35.553474],[73.713654,35.552655],[73.708459,35.550772],[73.697795,35.549643],[73.676873,35.550701],[73.672699,35.551219],[73.670167,35.552496],[73.669363,35.552475],[73.669066,35.552928],[73.668768,35.553381],[73.66296,35.555276],[73.661534,35.556846],[73.656262,35.558305],[73.652575,35.561841],[73.651197,35.562272],[73.648351,35.564686],[73.647789,35.564674],[73.643566,35.567519],[73.643263,35.56817],[73.642704,35.569055],[73.641584,35.569261],[73.640486,35.569468],[73.639897,35.570145],[73.639353,35.570819],[73.638532,35.571005],[73.635458,35.571842],[73.629694,35.571291],[73.628864,35.571936],[73.628027,35.571918],[73.624752,35.570959],[73.624763,35.570509],[73.619469,35.565002],[73.618907,35.564995],[73.616455,35.563827],[73.615645,35.563121],[73.613468,35.562856],[73.612102,35.562823],[73.611549,35.562352],[73.608817,35.561409],[73.607727,35.561382],[73.606601,35.560907],[73.595426,35.559794],[73.593097,35.559054],[73.587649,35.558266],[73.581014,35.556627],[73.579097,35.556587],[73.571105,35.554825],[73.564815,35.554815],[73.557855,35.555672],[73.553333,35.558941],[73.55018,35.562954],[73.549619,35.562942],[73.54908,35.563359],[73.545701,35.565791],[73.542658,35.566362],[73.54125,35.567481],[73.540103,35.568375],[73.535086,35.569822],[73.534368,35.570426],[73.532054,35.571132],[73.524337,35.570977],[73.523798,35.570511],[73.52244,35.570253],[73.517968,35.567557],[73.517459,35.566853],[73.51542,35.566042],[73.506661,35.565419],[73.50218,35.566453],[73.497963,35.56975],[73.495175,35.570577],[73.494191,35.571504],[73.492059,35.573465],[73.491222,35.573451],[73.489265,35.574075],[73.48563,35.576673],[73.481754,35.577283],[73.477463,35.576801],[73.476161,35.576337],[73.469159,35.575234],[73.468364,35.574762],[73.463181,35.573534],[73.462376,35.573057],[73.4572,35.572631],[73.454424,35.571936],[73.4486,35.571313],[73.43924,35.571164],[73.425028,35.569789],[73.422018,35.569728],[73.415771,35.567354],[73.414658,35.567334],[73.411978,35.565691],[73.410939,35.564102],[73.409841,35.564298],[73.406828,35.564012],[73.40488,35.564654],[73.402868,35.566185],[73.390315,35.582013],[73.387459,35.585364],[73.384633,35.588026],[73.379113,35.594053],[73.378803,35.594938],[73.378252,35.59493],[73.369687,35.604192],[73.369122,35.604175],[73.36856,35.604162],[73.368014,35.604839],[73.367436,35.605488],[73.360234,35.606684],[73.356065,35.608379],[73.349153,35.60914],[73.343301,35.611031],[73.335297,35.611312],[73.332862,35.611398],[73.329338,35.612284],[73.327794,35.612982],[73.325333,35.613139],[73.31893,35.614571],[73.317251,35.615452],[73.313972,35.615586],[73.31172,35.616886],[73.310073,35.617083],[73.305897,35.61811],[73.304209,35.618959],[73.3031,35.619628],[73.302263,35.619609],[73.300032,35.620022],[73.29892,35.620885],[73.298079,35.62087],[73.291935,35.62387],[73.286958,35.624672],[73.286383,35.625113],[73.285263,35.625777],[73.282798,35.625947],[73.281082,35.627033],[73.280503,35.627682],[73.2772,35.627837],[73.273834,35.629552],[73.272735,35.629757],[73.263123,35.636765],[73.259394,35.640938],[73.256048,35.642236],[73.254633,35.643554],[73.250659,35.646849],[73.24897,35.647702],[73.248398,35.648143],[73.245111,35.650086],[73.244273,35.650963],[73.243135,35.651392],[73.242868,35.651998],[73.241931,35.652259],[73.241052,35.653359],[73.231082,35.661526],[73.230601,35.661904],[73.229139,35.66367],[73.223206,35.669329],[73.22231,35.670059],[73.220353,35.67068],[73.215531,35.675076],[73.213566,35.675922],[73.212472,35.675901],[73.20802,35.676919],[73.20734,35.677136],[73.205479,35.678216],[73.203363,35.678844],[73.202773,35.679501],[73.200563,35.680359],[73.196794,35.682539],[73.196219,35.682962],[73.195919,35.683414],[73.187837,35.686365],[73.186436,35.68722],[73.179044,35.693822],[73.174002,35.696177],[73.171758,35.697043],[73.170984,35.697615],[73.165226,35.702062],[73.163305,35.702472],[73.158485,35.706641],[73.155933,35.708386],[73.154245,35.709472],[73.152286,35.710092],[73.150335,35.710731],[73.144659,35.715107],[73.143523,35.715508],[73.139297,35.718574],[73.137916,35.718996],[73.136254,35.719182],[73.134987,35.723432],[73.135225,35.724347],[73.134356,35.725447],[73.133798,35.726096],[73.134029,35.735111],[73.132817,35.738467],[73.134272,35.74784],[73.137242,35.767783],[73.136208,35.775418],[73.136474,35.775856],[73.135647,35.77938],[73.134979,35.78548],[73.135477,35.787301],[73.135737,35.793812],[73.137997,35.801064],[73.144815,35.810882],[73.145661,35.819279],[73.146617,35.829373],[73.148133,35.833227],[73.149218,35.833243],[73.153014,35.836783],[73.153881,35.837033],[73.154416,35.837698],[73.154187,35.841672],[73.153034,35.842558],[73.15137,35.842753],[73.14634,35.84399],[73.143552,35.84527],[73.140054,35.846585],[73.138218,35.847845],[73.133757,35.849301],[73.130608,35.851949],[73.129227,35.852344],[73.127665,35.852952],[73.126178,35.854424],[73.123232,35.856894],[73.122708,35.857382],[73.122145,35.857369],[73.119609,35.858663],[73.108392,35.868725],[73.100426,35.878232],[73.092602,35.8812],[73.090869,35.882711],[73.08919,35.883364],[73.0856,35.883279],[73.084765,35.88392],[73.082256,35.88499],[73.081418,35.884961],[73.080301,35.884944],[73.079157,35.886261],[73.077755,35.886223],[73.075889,35.885298],[73.07411,35.883125],[73.072781,35.882735],[73.068017,35.87456],[73.067182,35.87432],[73.06662,35.874302],[73.066055,35.873721],[73.065552,35.872796],[73.064234,35.872104],[73.06372,35.871593],[73.063466,35.870894],[73.062352,35.869846],[73.060112,35.867623],[73.055991,35.863731],[73.055435,35.863722],[73.054905,35.86303],[73.052722,35.86206],[73.05248,35.861623],[73.049785,35.860439],[73.048674,35.860192],[73.048412,35.859727],[73.048136,35.859266],[73.038918,35.855461],[73.038109,35.854762],[73.028742,35.854106],[73.026541,35.854512],[73.02547,35.854631],[73.024637,35.854377],[73.017168,35.854953],[73.016592,35.855375],[73.014094,35.855315],[73.010157,35.857267],[73.009281,35.858132],[73.006799,35.858756],[73.005935,35.859855],[73.00591,35.860772],[73.004674,35.863666],[73.001102,35.863355],[72.999715,35.863524],[72.99833,35.863288],[72.99753,35.863039],[72.997014,35.862573],[72.995625,35.862769],[72.994548,35.861847],[72.98792,35.861241],[72.988221,35.86079],[72.987705,35.860323],[72.987193,35.859645],[72.986334,35.860313],[72.985276,35.859392],[72.981462,35.857941],[72.9812,35.857476],[72.974879,35.856229],[72.97222,35.853884],[72.965702,35.85149],[72.964054,35.85122],[72.963244,35.850539],[72.962427,35.850524],[72.960536,35.849362],[72.960274,35.848897],[72.95891,35.848639],[72.957823,35.847717],[72.951231,35.847111],[72.950416,35.847321],[72.946602,35.845878],[72.939052,35.846065],[72.92941,35.84554],[72.927878,35.846031],[72.925916,35.846068],[72.920604,35.847178],[72.919505,35.847246],[72.91621,35.847597],[72.915665,35.848048],[72.914018,35.847777],[72.91286,35.847996],[72.910061,35.848822],[72.909178,35.84992],[72.908076,35.850122],[72.905511,35.852753],[72.904666,35.853628],[72.904364,35.854075],[72.904043,35.855209],[72.90493,35.864806],[72.902722,35.878816],[72.902541,35.879682],[72.90163,35.881669],[72.899967,35.881858],[72.898017,35.882268],[72.897462,35.882709],[72.896059,35.882678],[72.890237,35.881004],[72.88899,35.880678],[72.885146,35.880151],[72.874631,35.879425],[72.870222,35.878924],[72.869397,35.878445],[72.868386,35.877944],[72.857623,35.877689],[72.851542,35.87845],[72.847631,35.880143],[72.846516,35.88011],[72.845677,35.880093],[72.845112,35.880763],[72.842866,35.882286],[72.841751,35.882253],[72.839227,35.883085],[72.838925,35.883536],[72.834973,35.886586],[72.831628,35.887402],[72.830226,35.887361],[72.829207,35.885564],[72.828595,35.879674],[72.825276,35.87482],[72.824713,35.87481],[72.824367,35.874413],[72.822762,35.873023],[72.815456,35.870127],[72.814075,35.870093],[72.812429,35.87006],[72.811604,35.869598],[72.809415,35.868882],[72.803371,35.868738],[72.79902,35.86749],[72.798255,35.865456],[72.797998,35.864797],[72.799251,35.861437],[72.79807,35.855771],[72.795704,35.85325],[72.794617,35.852994],[72.794356,35.852528],[72.792185,35.851582],[72.783708,35.849797],[72.781033,35.847268],[72.78047,35.847254],[72.779908,35.847235],[72.77729,35.844024],[72.776484,35.844009],[72.775933,35.843535],[72.775364,35.84375],[72.771508,35.843652],[72.770953,35.844088],[72.770407,35.844538],[72.766762,35.845137],[72.76618,35.845779],[72.765341,35.846446],[72.763081,35.8484],[72.762518,35.84839],[72.76164,35.849249],[72.760222,35.84968],[72.758542,35.850321],[72.755402,35.85316],[72.754341,35.853138],[72.749752,35.85638],[72.7459,35.856948],[72.742517,35.858687],[72.737549,35.858798],[72.732873,35.857333],[72.730167,35.857016],[72.728835,35.856092],[72.723399,35.853923],[72.719005,35.85011],[72.715541,35.847106],[72.714966,35.846676],[72.713262,35.845857],[72.710981,35.844771],[72.707613,35.841397],[72.70705,35.841386],[72.705999,35.840446],[72.703616,35.838144],[72.702397,35.837359],[72.700831,35.836474],[72.696575,35.835065],[72.695796,35.834141],[72.694712,35.833199],[72.691142,35.832877],[72.689174,35.833514],[72.687757,35.833931],[72.686664,35.833908],[72.686079,35.834581],[72.685811,35.835024],[72.683294,35.835602],[72.677849,35.840652],[72.673963,35.841901],[72.671204,35.844228],[72.669467,35.844758],[72.666322,35.846434],[72.665739,35.84708],[72.663225,35.847477],[72.660409,35.84919],[72.652326,35.858574],[72.645648,35.866348],[72.639562,35.867111],[72.638471,35.866403],[72.637921,35.865929],[72.634073,35.865621],[72.631247,35.867558],[72.630398,35.868449],[72.628982,35.868852],[72.628712,35.869295],[72.626762,35.869478],[72.620046,35.871311],[72.603269,35.870428],[72.60159,35.871077],[72.598802,35.873356],[72.598239,35.873337],[72.595038,35.87563],[72.593313,35.877366],[72.592891,35.877911],[72.590899,35.880873],[72.586696,35.885392],[72.579534,35.894645],[72.57008,35.905779],[72.569454,35.907327],[72.568889,35.90746],[72.561964,35.908711],[72.561666,35.909139],[72.553683,35.908953],[72.552272,35.909815],[72.550482,35.912457],[72.549085,35.912883],[72.544116,35.912979],[72.543537,35.913418],[72.542422,35.914049],[72.541328,35.914025],[72.538278,35.914609],[72.537707,35.914953],[72.533725,35.917441],[72.533061,35.920113],[72.53122,35.924534],[72.530035,35.926544],[72.530522,35.927901],[72.530622,35.932177],[72.530035,35.933506],[72.529465,35.940915],[72.531134,35.952872],[72.531659,35.953781],[72.53349,35.956294],[72.534053,35.95631],[72.538562,35.960464],[72.545645,35.960832],[72.547791,35.962463],[72.548407,35.962526],[72.548928,35.963453],[72.548583,35.965228],[72.549257,35.96928],[72.554601,35.979535],[72.555307,35.982931],[72.55361,35.990079],[72.555852,35.996209],[72.556113,35.996674],[72.559142,35.99675],[72.560825,35.996112],[72.561128,35.995661],[72.563387,35.994602],[72.566701,35.994461],[72.567829,35.994487],[72.568597,35.995402],[72.569146,35.995862],[72.573245,35.996429],[72.573678,35.996803],[72.575313,36.00009],[72.577899,36.003966],[72.578463,36.003981],[72.582168,36.008117],[72.582191,36.010106],[72.581415,36.012804],[72.583595,36.019703],[72.584147,36.019858],[72.584959,36.020792],[72.587676,36.021727],[72.587936,36.022188],[72.588743,36.022213],[72.589829,36.023155],[72.590361,36.023826],[72.593916,36.02481],[72.595788,36.026433],[72.596025,36.027347],[72.594659,36.034756],[72.594869,36.035201],[72.593266,36.04054],[72.589757,36.046772],[72.588262,36.047581],[72.586206,36.050448],[72.585096,36.050873],[72.580096,36.051658],[72.579264,36.051415],[72.578119,36.052495],[72.57563,36.053117],[72.57479,36.053095],[72.574248,36.052402],[72.571857,36.052497],[72.568058,36.05537],[72.5653,36.055751],[72.559913,36.055457],[72.557546,36.055778],[72.55646,36.05552],[72.553674,36.055684],[72.550039,36.056729],[72.547143,36.059551],[72.545062,36.063559],[72.543584,36.065326],[72.538069,36.06561],[72.534944,36.067994],[72.53173,36.072412],[72.531066,36.074655],[72.531512,36.0769],[72.53542,36.088906],[72.534141,36.094032],[72.534353,36.09562],[72.533781,36.103312],[72.534005,36.10544],[72.534372,36.107961],[72.536094,36.113161],[72.536601,36.114519],[72.544807,36.122611],[72.546835,36.126655],[72.548069,36.130773],[72.552535,36.136747],[72.557206,36.13728],[72.559595,36.140058],[72.560962,36.140296],[72.561804,36.140314],[72.563127,36.141491],[72.564183,36.142431],[72.564747,36.142446],[72.565541,36.142903],[72.566106,36.142913],[72.571727,36.147556],[72.573809,36.150963],[72.571139,36.155183],[72.570018,36.155585],[72.568216,36.158484],[72.565867,36.165132],[72.564149,36.169806],[72.562671,36.172229],[72.562201,36.172681],[72.558675,36.175735],[72.556143,36.176553],[72.555301,36.176535],[72.553886,36.177391],[72.551541,36.181161],[72.553477,36.185272],[72.557988,36.191665],[72.560284,36.196646],[72.560761,36.198689],[72.558797,36.205366],[72.56048,36.212387],[72.563626,36.216509],[72.571834,36.218501],[72.577476,36.222927],[72.578041,36.222942],[72.585431,36.230521],[72.586219,36.233894],[72.587197,36.24154],[72.586928,36.241965],[72.588484,36.251245],[72.595233,36.262197],[72.597097,36.264249],[72.601465,36.265963],[72.603822,36.26743],[72.604919,36.267463],[72.611216,36.27045],[72.612058,36.270476],[72.613155,36.2705],[72.613416,36.270961],[72.614757,36.271683],[72.617519,36.271751],[72.619141,36.272683],[72.619404,36.273121],[72.620249,36.273139],[72.624333,36.274386],[72.626798,36.275362],[72.634757,36.276657],[72.636705,36.276483],[72.639809,36.275464],[72.641474,36.274007],[72.642703,36.273623],[72.645125,36.272],[72.647036,36.27093],[72.656994,36.26803],[72.658155,36.267149],[72.661556,36.265225],[72.662943,36.264835],[72.66353,36.264163],[72.664393,36.263957],[72.670012,36.263982],[72.670568,36.264226],[72.672644,36.264394],[72.674328,36.263746],[72.67987,36.263656],[72.681314,36.262805],[72.681868,36.262819],[72.68522,36.255262],[72.686047,36.255081],[72.6886,36.252906],[72.689213,36.25179],[72.69061,36.251161],[72.690919,36.250486],[72.691797,36.249822],[72.693971,36.250098],[72.695828,36.25307],[72.696059,36.25419],[72.695293,36.259348],[72.694063,36.261782],[72.693215,36.262762],[72.68945,36.266823],[72.688562,36.268601],[72.689104,36.270529],[72.692386,36.275651],[72.692951,36.275666],[72.693481,36.276358],[72.694849,36.276622],[72.69789,36.277361],[72.698154,36.277794],[72.701617,36.279049],[72.702949,36.279995],[72.713239,36.281092],[72.714065,36.281571],[72.714859,36.282045],[72.717656,36.281663],[72.719818,36.282401],[72.72008,36.282861],[72.722796,36.28404],[72.723638,36.28407],[72.730309,36.290299],[72.73112,36.290548],[72.735614,36.296236],[72.736711,36.296268],[72.740745,36.299514],[72.746216,36.301248],[72.750479,36.305132],[72.751584,36.305228],[72.753205,36.306185],[72.7606,36.308308],[72.767835,36.308978],[72.778551,36.309881],[72.78298,36.315142],[72.78321,36.315902],[72.783955,36.316148],[72.787054,36.319071],[72.787863,36.319096],[72.790871,36.320514],[72.791971,36.321202],[72.798881,36.329616],[72.799076,36.330356],[72.801014,36.331016],[72.801856,36.331041],[72.806732,36.333],[72.806972,36.333463],[72.808364,36.333723],[72.808626,36.334188],[72.809138,36.334865],[72.812719,36.336068],[72.814832,36.338123],[72.815666,36.338373],[72.822565,36.353581],[72.829727,36.361144],[72.8335,36.363285],[72.834615,36.363515],[72.836991,36.366056],[72.840034,36.366765],[72.840274,36.367229],[72.84054,36.367693],[72.84518,36.369815],[72.846004,36.369831],[72.846535,36.370527],[72.848223,36.370569],[72.849841,36.37175],[72.8509,36.37266],[72.852269,36.372923],[72.865303,36.373004],[72.866379,36.373466],[72.867424,36.374834],[72.870047,36.379158],[72.870612,36.379173],[72.874891,36.382649],[72.876549,36.382919],[72.878933,36.385208],[72.881409,36.385952],[72.882733,36.387331],[72.883299,36.387345],[72.886763,36.391021],[72.890099,36.397831],[72.886708,36.412261],[72.886661,36.414792],[72.89019,36.424739],[72.888911,36.42876],[72.888022,36.429855],[72.884086,36.431091],[72.88008,36.434133],[72.877451,36.438103],[72.87766,36.439912],[72.879466,36.443331],[72.881961,36.443155],[72.882495,36.443859],[72.883872,36.443884],[72.887985,36.445305],[72.889063,36.446018],[72.892381,36.446095],[72.892916,36.446795],[72.893723,36.447699],[72.900064,36.448518],[72.902535,36.449481],[72.906555,36.452496],[72.911194,36.454175],[72.911458,36.454613],[72.913652,36.455582],[72.918581,36.460726],[72.919425,36.460751],[72.919842,36.461105],[72.921165,36.462478],[72.922275,36.462959],[72.928659,36.462428],[72.932103,36.458706],[72.932667,36.458487],[72.939,36.458043],[72.94349,36.458517],[72.945648,36.459475],[72.948891,36.462475],[72.951921,36.463406],[72.952187,36.463866],[72.953258,36.464802],[72.954345,36.464833],[72.956005,36.465098],[72.958967,36.467166],[72.962847,36.467493],[72.966546,36.46489],[72.969333,36.464271],[72.976526,36.464898],[72.977384,36.464456],[72.982683,36.463713],[72.982974,36.463272],[72.984662,36.462621],[72.986342,36.462204],[72.988732,36.457999],[72.991224,36.458288],[72.992052,36.458106],[72.993891,36.460151],[72.997948,36.467515],[73.001187,36.471304],[73.003347,36.474497],[73.003855,36.47608],[73.00289,36.479175],[73.001776,36.479602],[72.992358,36.478936],[72.990934,36.479355],[72.990358,36.480458],[72.991064,36.483611],[72.990982,36.484227],[72.990697,36.485868],[72.990552,36.48966],[72.992335,36.496223],[72.992528,36.496886],[72.993532,36.499364],[72.994097,36.499386],[72.999353,36.507359],[72.998693,36.509801],[72.995487,36.513331],[72.995996,36.514909],[72.998744,36.515203],[72.999613,36.514776],[73.001841,36.514591],[73.007334,36.516091],[73.013026,36.519115],[73.014115,36.520259],[73.01521,36.5205],[73.019537,36.52307],[73.020654,36.523317],[73.021974,36.524918],[73.025952,36.526428],[73.027996,36.526748],[73.028537,36.527218],[73.033764,36.528536],[73.036743,36.530432],[73.040078,36.53092],[73.044947,36.533973],[73.050736,36.534531],[73.051569,36.535004],[73.051833,36.535468],[73.054582,36.535761],[73.055684,36.536474],[73.056222,36.537137],[73.057049,36.536928],[73.058157,36.536734],[73.061505,36.537742],[73.062578,36.539109],[73.067032,36.544331],[73.07025,36.554951],[73.073896,36.561522],[73.074451,36.561993],[73.079363,36.564104],[73.080152,36.564809],[73.084572,36.565814],[73.088237,36.56893],[73.088889,36.570105],[73.090624,36.571578],[73.091501,36.573582],[73.091554,36.574635],[73.091251,36.575076],[73.091449,36.582757],[73.09294,36.586599],[73.09577,36.590843],[73.10098,36.597138],[73.110513,36.607394],[73.110489,36.607842],[73.111055,36.60786],[73.112472,36.610096],[73.11206,36.611256],[73.109074,36.615647],[73.098509,36.624373],[73.097656,36.624582],[73.092009,36.634767],[73.092164,36.63593],[73.09086,36.64303],[73.092443,36.651239],[73.09412,36.660133],[73.093818,36.660556],[73.094427,36.667107],[73.091749,36.672411],[73.087971,36.676787],[73.087639,36.677487],[73.084975,36.682316],[73.08445,36.688816],[73.084467,36.690593],[73.084401,36.692416],[73.08452,36.694609],[73.084748,36.696955],[73.085246,36.699101],[73.08542,36.699727],[73.086659,36.699444],[73.087914,36.698646],[73.089499,36.697901],[73.091461,36.697055],[73.092665,36.696093],[73.09459,36.693016],[73.096132,36.691377],[73.097084,36.690468],[73.102835,36.687663],[73.105349,36.687036],[73.112186,36.687525],[73.114804,36.687705],[73.117014,36.687532],[73.120377,36.686713],[73.121236,36.68628],[73.126481,36.686621],[73.131132,36.688302],[73.13167,36.688992],[73.132508,36.689217],[73.133882,36.690361],[73.136276,36.693492],[73.138516,36.694817],[73.139851,36.69626],[73.140937,36.6965],[73.145465,36.700041],[73.149576,36.701041],[73.153536,36.703452],[73.158634,36.704571],[73.16327,36.706717],[73.172138,36.708234],[73.175429,36.709214],[73.175694,36.709678],[73.17705,36.7106],[73.181142,36.712025],[73.181692,36.712701],[73.181667,36.713157],[73.182765,36.713384],[73.185236,36.714575],[73.185779,36.715044],[73.18748,36.721133],[73.189398,36.72184],[73.193872,36.720817],[73.195919,36.718865],[73.199553,36.717576],[73.201567,36.715623],[73.202135,36.715636],[73.202702,36.715644],[73.206758,36.711228],[73.208954,36.703474],[73.209855,36.701921],[73.210697,36.701255],[73.211834,36.701285],[73.214375,36.700424],[73.214956,36.699989],[73.225754,36.699444],[73.234398,36.699545],[73.242626,36.702406],[73.248445,36.702985],[73.249778,36.704364],[73.252693,36.708907],[73.253224,36.709125],[73.255465,36.708947],[73.267948,36.709446],[73.270209,36.708609],[73.2762,36.708548],[73.277315,36.70812],[73.277996,36.708093],[73.294087,36.708894],[73.297542,36.708641],[73.301053,36.708359],[73.303323,36.707091],[73.307781,36.70654],[73.314736,36.70642],[73.318028,36.707398],[73.318757,36.708502],[73.319867,36.708989],[73.320905,36.710575],[73.323403,36.712882],[73.32434,36.713343],[73.330251,36.715493],[73.341365,36.715952],[73.349455,36.714534],[73.355123,36.714767],[73.360836,36.715455],[73.365151,36.719825],[73.366781,36.723904],[73.369135,36.732648],[73.369917,36.733798],[73.370484,36.73382],[73.371308,36.734263],[73.372104,36.734939],[73.378181,36.735524],[73.382906,36.733801],[73.384011,36.733821],[73.385906,36.732794],[73.389737,36.731535],[73.399461,36.731961],[73.400034,36.731745],[73.405802,36.733186],[73.406357,36.733656],[73.414649,36.734708],[73.415196,36.735177],[73.416041,36.7352],[73.421923,36.738205],[73.423057,36.738234],[73.425343,36.738984],[73.429201,36.740178],[73.429719,36.740852],[73.429985,36.74131],[73.430553,36.741323],[73.43195,36.741577],[73.436285,36.744555],[73.44155,36.745121],[73.44377,36.744509],[73.445197,36.743195],[73.450408,36.736795],[73.452669,36.735951],[73.453236,36.735963],[73.455231,36.734661],[73.455532,36.734215],[73.461409,36.733014],[73.46225,36.732346],[73.463382,36.731693],[73.472323,36.73096],[73.4767,36.732648],[73.477548,36.732661],[73.477814,36.733124],[73.479171,36.734031],[73.482506,36.733882],[73.486537,36.729934],[73.494478,36.728001],[73.495833,36.726572],[73.499536,36.723006],[73.503765,36.72132],[73.504042,36.720868],[73.504911,36.719995],[73.505478,36.720011],[73.506615,36.719125],[73.50891,36.716937],[73.511475,36.715423],[73.515372,36.715504],[73.519209,36.718149],[73.520617,36.718403],[73.521846,36.719569],[73.524064,36.720611],[73.528233,36.720918],[73.529906,36.720728],[73.531064,36.719861],[73.532201,36.718975],[73.537989,36.711925],[73.541663,36.7102],[73.541964,36.709753],[73.543922,36.709355],[73.548067,36.709674],[73.551363,36.71062],[73.553004,36.71134],[73.553544,36.712028],[73.554085,36.712703],[73.554942,36.712716],[73.556029,36.712949],[73.560357,36.716171],[73.564826,36.71604],[73.569353,36.713215],[73.570733,36.713235],[73.571845,36.712832],[73.579102,36.712973],[73.582493,36.714429],[73.582739,36.714891],[73.584028,36.715095],[73.585633,36.716907],[73.586201,36.716915],[73.588109,36.718083],[73.591071,36.719922],[73.591912,36.720168],[73.600227,36.720329],[73.60277,36.718808],[73.603326,36.718824],[73.605611,36.715675],[73.605941,36.714822],[73.606286,36.713942],[73.606632,36.711058],[73.605381,36.705093],[73.605217,36.704298],[73.606158,36.701198],[73.605891,36.70074],[73.607462,36.698515],[73.609606,36.696782],[73.610459,36.696571],[73.611304,36.695705],[73.612989,36.695049],[73.614124,36.695077],[73.617484,36.694249],[73.618603,36.693612],[73.625566,36.693956],[73.628983,36.69113],[73.633174,36.690072],[73.638728,36.69018],[73.641034,36.690658],[73.645609,36.692085],[73.646744,36.692113],[73.647822,36.692587],[73.651614,36.696025],[73.654943,36.696096],[73.657765,36.694374],[73.662798,36.693103],[73.663098,36.692661],[73.66368,36.69201],[73.673036,36.691797],[73.673962,36.691772],[73.677317,36.691158],[73.678141,36.690713],[73.67872,36.690276],[73.682352,36.689685],[73.684021,36.689719],[73.688105,36.686629],[73.690843,36.685593],[73.70058,36.684868],[73.706922,36.687585],[73.707442,36.688254],[73.708803,36.68885],[73.71041,36.690648],[73.714289,36.69767],[73.714846,36.698569],[73.715555,36.698783],[73.716319,36.700371],[73.718577,36.703797],[73.720056,36.705357],[73.720842,36.705591],[73.724255,36.709077],[73.724243,36.709534],[73.725078,36.710003],[73.734521,36.710593],[73.738691,36.709805],[73.748433,36.709983],[73.748971,36.709769],[73.750395,36.708435],[73.753519,36.707784],[73.75572,36.707871],[73.76943,36.703877],[73.776466,36.703374],[73.777589,36.702961],[73.778391,36.702496],[73.783104,36.702359],[73.790827,36.704508],[73.800009,36.712725],[73.800576,36.712736],[73.801378,36.713204],[73.801945,36.713219],[73.804922,36.715504],[73.809061,36.716713],[73.815183,36.716831],[73.821638,36.714495],[73.826941,36.713906],[73.828548,36.712977],[73.829729,36.712207],[73.832574,36.711549],[73.833697,36.710661],[73.834829,36.709773],[73.838658,36.709248],[73.840086,36.708599],[73.846866,36.707309],[73.847714,36.706666],[73.848002,36.706241],[73.8494,36.706035],[73.850786,36.705833],[73.852239,36.704498],[73.853055,36.704509],[73.854156,36.704534],[73.856726,36.702571],[73.857828,36.702596],[73.858977,36.701933],[73.864544,36.700783],[73.865678,36.700513],[73.866256,36.700063],[73.884068,36.699265],[73.894559,36.70169],[73.895072,36.702156],[73.896207,36.702173],[73.896478,36.702613],[73.897562,36.702862],[73.900809,36.706719],[73.901626,36.706963],[73.900529,36.710646],[73.89717,36.716295],[73.898695,36.721015],[73.899755,36.722375],[73.900315,36.722381],[73.901717,36.722869],[73.905242,36.725614],[73.905506,36.726301],[73.905347,36.730559],[73.906025,36.730748],[73.906453,36.731485],[73.906165,36.731914],[73.9053,36.733238],[73.905319,36.734395],[73.905272,36.73599],[73.902174,36.744399],[73.900067,36.749701],[73.895075,36.754162],[73.887454,36.762467],[73.886581,36.764247],[73.886092,36.764674],[73.885227,36.764913],[73.877725,36.771257],[73.87627,36.773681],[73.872198,36.779433],[73.869769,36.782207],[73.869061,36.782407],[73.868176,36.783729],[73.863602,36.788244],[73.862199,36.788674],[73.854824,36.789648],[73.848549,36.789741],[73.842449,36.787855],[73.839564,36.788121],[73.833854,36.787929],[73.829441,36.789302],[73.828679,36.789948],[73.820909,36.792829],[73.815061,36.798431],[73.814466,36.799418],[73.811962,36.803624],[73.812192,36.804318],[73.809633,36.812227],[73.80945,36.812776],[73.808005,36.814518],[73.807448,36.814512],[73.806613,36.814948],[73.806313,36.815399],[73.802928,36.816243],[73.798236,36.816162],[73.796313,36.815444],[73.795756,36.814976],[73.794382,36.814721],[73.786325,36.814113],[73.778203,36.815326],[73.777938,36.815783],[73.771475,36.818117],[73.766875,36.822287],[73.765469,36.822918],[73.764044,36.824234],[73.763459,36.8251],[73.755073,36.826536],[73.752248,36.828286],[73.744152,36.833388],[73.741182,36.834331],[73.740368,36.833863],[73.732346,36.832957],[73.730943,36.832773],[73.726506,36.83269],[73.725916,36.833583],[73.724514,36.833994],[73.723935,36.834431],[73.723318,36.835991],[73.724177,36.840265],[73.724213,36.843426],[73.723909,36.844083],[73.723097,36.844063],[73.721345,36.846491],[73.721854,36.847607],[73.720204,36.853378],[73.720376,36.854249],[73.719066,36.8572],[73.71848,36.857869],[73.717653,36.858054],[73.717084,36.858048],[73.71678,36.858704],[73.716212,36.858688],[73.714774,36.860483],[73.71228,36.860868],[73.711433,36.860856],[73.710843,36.861274],[73.709599,36.864088],[73.707361,36.865979],[73.705733,36.867471],[73.705722,36.867932],[73.702797,36.870077],[73.701642,36.870743],[73.700238,36.871168],[73.698344,36.872332],[73.697775,36.872325],[73.696268,36.873543],[73.694314,36.873737],[73.690861,36.877242],[73.689458,36.877644],[73.687771,36.8783],[73.68143,36.885568],[73.682584,36.889476],[73.685269,36.895935],[73.68463,36.898837],[73.684857,36.900615],[73.685697,36.903764],[73.686339,36.905803],[73.690318,36.912128],[73.693608,36.913555],[73.700833,36.914151],[73.706508,36.913691],[73.711199,36.912757],[73.712038,36.912116],[73.715968,36.910617],[73.717633,36.910426],[73.71823,36.909771],[73.718524,36.909096],[73.720206,36.908699],[73.721053,36.908711],[73.724192,36.906091],[73.727264,36.905462],[73.727828,36.904801],[73.728709,36.903901],[73.732364,36.903543],[73.737405,36.901613],[73.742266,36.897902],[73.743969,36.897054],[73.744783,36.897065],[73.745367,36.8964],[73.748985,36.896695],[73.749527,36.897386],[73.750901,36.897861],[73.751693,36.898772],[73.75254,36.898784],[73.755795,36.901301],[73.756863,36.902428],[73.757984,36.902678],[73.758498,36.903575],[73.759615,36.904058],[73.76157,36.903859],[73.762647,36.904565],[73.767654,36.904658],[73.7682,36.904216],[73.768746,36.90393],[73.770711,36.903763],[73.776125,36.900564],[73.784219,36.900259],[73.79025,36.894555],[73.793336,36.893723],[73.798626,36.893592],[73.799983,36.894277],[73.802754,36.895463],[73.803846,36.895488],[73.804128,36.895946],[73.809671,36.896478],[73.811074,36.896075],[73.812798,36.89429],[73.81336,36.893638],[73.814651,36.888299],[73.818067,36.88565],[73.830043,36.885234],[73.831157,36.885869],[73.835839,36.886894],[73.837225,36.887826],[73.838536,36.889619],[73.838189,36.892546],[73.838689,36.89367],[73.842165,36.898415],[73.849079,36.899908],[73.851846,36.899956],[73.852424,36.899519],[73.855779,36.899117],[73.857161,36.899148],[73.858026,36.898479],[73.863383,36.897255],[73.864765,36.897286],[73.868972,36.895767],[73.878771,36.894402],[73.879061,36.893951],[73.88019,36.893282],[73.881003,36.893306],[73.881304,36.892851],[73.882693,36.892648],[73.884666,36.89205],[73.888925,36.888533],[73.890625,36.887428],[73.892606,36.886579],[73.893175,36.886585],[73.899262,36.880448],[73.902961,36.87603],[73.910845,36.872374],[73.911974,36.872391],[73.913091,36.871736],[73.913391,36.87128],[73.916188,36.871332],[73.917031,36.871577],[73.918403,36.87205],[73.922955,36.877732],[73.923795,36.877976],[73.929047,36.878064],[73.931042,36.876686],[73.932184,36.876506],[73.934436,36.874801],[73.9378,36.873949],[73.938951,36.872399],[73.943131,36.868377],[73.943712,36.867899],[73.947829,36.86495],[73.950625,36.862667],[73.951467,36.861997],[73.952034,36.862013],[73.953149,36.860622],[73.957813,36.856862],[73.962055,36.85104],[73.962679,36.8509],[73.963236,36.850906],[73.964805,36.848612],[73.967334,36.844268],[73.971356,36.840086],[73.971927,36.840093],[73.976175,36.836811],[73.97692,36.836523],[73.97843,36.836024],[73.980492,36.835243],[73.98327,36.832901],[73.984639,36.832473],[73.985236,36.832256],[73.98721,36.831629],[73.98748,36.830953],[73.988902,36.829635],[73.99199,36.828576],[73.994284,36.826588],[73.99513,36.826608],[73.996236,36.8264],[73.999916,36.824236],[74.00462,36.824774],[74.005994,36.825206],[74.010971,36.82711],[74.011485,36.827572],[74.020699,36.827734],[74.021817,36.827091],[74.025177,36.826269],[74.026002,36.826279],[74.026584,36.825605],[74.026872,36.825153],[74.029728,36.824385],[74.031658,36.822762],[74.031964,36.8221],[74.033648,36.821454],[74.034756,36.821267],[74.036792,36.81928],[74.037898,36.819071],[74.039874,36.818444],[74.041594,36.815563],[74.042173,36.815112],[74.052163,36.806578],[74.055789,36.806414],[74.05716,36.806887],[74.057979,36.807793],[74.059052,36.808694],[74.060708,36.808952],[74.062342,36.810325],[74.06556,36.813405],[74.066283,36.813761],[74.070213,36.817847],[74.081545,36.82855],[74.082108,36.828986],[74.083606,36.830829],[74.084449,36.831073],[74.087744,36.834217],[74.088005,36.83493],[74.088825,36.835172],[74.089092,36.83584],[74.09018,36.836087],[74.090449,36.83654],[74.092683,36.838587],[74.094355,36.838608],[74.100786,36.838053],[74.102178,36.837607],[74.109434,36.837063],[74.114326,36.835713],[74.114626,36.835261],[74.116013,36.835062],[74.118666,36.834107],[74.119716,36.83317],[74.120954,36.832346],[74.128183,36.832696],[74.130381,36.833621],[74.130653,36.834083],[74.13425,36.834799],[74.135411,36.835909],[74.136499,36.836156],[74.137055,36.836825],[74.139153,36.838248],[74.139721,36.838253],[74.142728,36.840102],[74.146428,36.847094],[74.146996,36.847108],[74.147788,36.848228],[74.147739,36.851824],[74.149751,36.859974],[74.149637,36.86213],[74.150441,36.863716],[74.151845,36.871948],[74.154393,36.882194],[74.155595,36.885764],[74.156841,36.888744],[74.158543,36.892497],[74.162632,36.897932],[74.163201,36.897938],[74.164206,36.898415],[74.16554,36.900439],[74.166935,36.900911],[74.168308,36.901387],[74.16858,36.901848],[74.169099,36.902542],[74.169946,36.902552],[74.173526,36.90393],[74.179066,36.90402],[74.180451,36.904043],[74.183804,36.903648],[74.185505,36.903445],[74.187486,36.902386],[74.193508,36.902321],[74.194654,36.901889],[74.195873,36.901835],[74.19756,36.901183],[74.20441,36.900908],[74.205062,36.900854],[74.206746,36.90022],[74.212061,36.899418],[74.212917,36.898981],[74.217776,36.898899],[74.219313,36.898627],[74.221571,36.897779],[74.222154,36.897122],[74.223825,36.89715],[74.225464,36.897182],[74.227723,36.895962],[74.230131,36.895226],[74.233208,36.894279],[74.234772,36.892825],[74.238413,36.891793],[74.238718,36.891113],[74.241549,36.888908],[74.243226,36.888507],[74.244103,36.887613],[74.245524,36.887408],[74.246906,36.887427],[74.248004,36.886576],[74.2511,36.886176],[74.251947,36.886186],[74.252498,36.886634],[74.255282,36.886246],[74.25583,36.886707],[74.261375,36.886566],[74.264134,36.888179],[74.271444,36.895205],[74.272268,36.895904],[74.273209,36.896486],[74.274479,36.896845],[74.278017,36.899792],[74.281882,36.901217],[74.283479,36.903016],[74.289312,36.904903],[74.289549,36.905363],[74.290741,36.906222],[74.293931,36.907544],[74.297405,36.909005],[74.297784,36.909506],[74.298215,36.91004],[74.304672,36.912301],[74.305213,36.913196],[74.311562,36.915543],[74.312942,36.915794],[74.315656,36.918063],[74.318403,36.919017],[74.321101,36.92172],[74.32275,36.922427],[74.323884,36.922674],[74.324959,36.9236],[74.327125,36.926062],[74.328538,36.926309],[74.332646,36.929286],[74.334287,36.930423],[74.340239,36.936357],[74.341343,36.93637],[74.346321,36.940521],[74.347994,36.941708],[74.348752,36.941902],[74.349552,36.942752],[74.350639,36.943204],[74.35863,36.950523],[74.359441,36.950764],[74.359967,36.951229],[74.365309,36.956783],[74.366687,36.95724],[74.36757,36.958047],[74.368339,36.958923],[74.375512,36.961495],[74.377112,36.963284],[74.377959,36.963302],[74.378229,36.963754],[74.388702,36.967962],[74.391222,36.968003],[74.392031,36.968467],[74.392837,36.968914],[74.406487,36.969551],[74.410892,36.970976],[74.41203,36.970999],[74.415601,36.973047],[74.416158,36.973061],[74.418601,36.975117],[74.41917,36.975127],[74.427049,36.982402],[74.427317,36.983069],[74.427216,36.986881],[74.428061,36.987122],[74.429377,36.989797],[74.42991,36.990033],[74.435741,36.991029],[74.443943,36.991149],[74.44717,36.991198],[74.449641,36.992149],[74.451232,36.991922],[74.458528,36.99191],[74.468848,36.992428],[74.473595,36.991593],[74.477483,36.9921],[74.491761,36.989397],[74.494567,36.989212],[74.495119,36.988768],[74.500954,36.988552],[74.50983,36.988633],[74.520464,36.989135],[74.522703,36.988708],[74.522724,36.988055],[74.524924,36.988267],[74.532209,36.986847],[74.533722,36.986097],[74.541671,36.977868],[74.543039,36.976482],[74.54535,36.971213],[74.545402,36.969083],[74.546349,36.966229],[74.5487,36.962607],[74.552171,36.957225],[74.552765,36.955668],[74.553032,36.955165],[74.554462,36.953625],[74.55502,36.953628],[74.556465,36.952697],[74.557562,36.951639],[74.560103,36.950566],[74.575403,36.950015],[74.576592,36.949604],[74.57787,36.949016],[74.578691,36.948594],[74.578744,36.949643],[74.579181,36.963041],[74.58072,36.970034],[74.583144,36.977501],[74.582846,36.977953],[74.582837,36.978449],[74.582653,36.985993],[74.584611,36.996319],[74.585087,37.000135],[74.586293,37.007993],[74.586647,37.011796],[74.589443,37.02858],[74.588796,37.032132],[74.584486,37.037004],[74.581413,37.037854],[74.580541,37.038745],[74.581595,37.042098],[74.58184,37.04344],[74.586533,37.045308],[74.59128,37.045373],[74.591808,37.045833],[74.592946,37.045845],[74.595979,37.047004],[74.59625,37.047465],[74.597898,37.048393],[74.603172,37.049105],[74.606478,37.050509],[74.611828,37.050906],[74.612635,37.051369],[74.61351,37.051477],[74.619559,37.051801],[74.634319,37.05492],[74.639327,37.055417],[74.641717,37.056135],[74.649831,37.056673],[74.659261,37.05773],[74.666996,37.061151],[74.671331,37.064801],[74.671581,37.065941],[74.67272,37.065962],[74.678452,37.07049],[74.679851,37.070958],[74.685055,37.074848],[74.688188,37.07564],[74.689828,37.076572],[74.693915,37.07785],[74.69594,37.078148],[74.699621,37.078268],[74.708695,37.077615],[74.712932,37.074314],[74.714598,37.072082],[74.718498,37.062756],[74.718621,37.061023],[74.718961,37.054714],[74.718139,37.053597],[74.71874,37.052263],[74.718508,37.049584],[74.719811,37.044646],[74.72199,37.038584],[74.728243,37.025988],[74.730249,37.023993],[74.734507,37.020683]]]]},"properties":{"cartodb_id":15,"state_code":1,"name":"Jammu & Kashmir"}},
+ {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[81.393748,16.333805],[81.392236,16.331021],[81.389744,16.329549],[81.386787,16.328677],[81.379895,16.327415],[81.377827,16.326427],[81.370293,16.324586],[81.357215,16.318994],[81.349469,16.314792],[81.331883,16.308345],[81.326924,16.306513],[81.324654,16.304823],[81.31726,16.300402],[81.309207,16.295267],[81.28878,16.284588],[81.275362,16.278302],[81.271339,16.279251],[81.270935,16.280243],[81.270459,16.286026],[81.272199,16.287787],[81.278527,16.289765],[81.280112,16.290987],[81.280406,16.292149],[81.279578,16.295059],[81.279423,16.295716],[81.276271,16.297829],[81.276228,16.298725],[81.270419,16.30256],[81.270128,16.303581],[81.267928,16.31014],[81.267752,16.311263],[81.270117,16.312955],[81.277044,16.316389],[81.278838,16.316762],[81.280024,16.316359],[81.281065,16.314591],[81.281343,16.313704],[81.286338,16.311902],[81.288881,16.312482],[81.293228,16.314943],[81.293661,16.315884],[81.298063,16.316939],[81.299661,16.317256],[81.314376,16.318717],[81.316731,16.319065],[81.324858,16.320529],[81.327653,16.321627],[81.330454,16.320151],[81.326759,16.317211],[81.318882,16.314279],[81.311755,16.307658],[81.322175,16.31022],[81.326753,16.312305],[81.330444,16.314258],[81.335043,16.316071],[81.35186,16.323292],[81.360749,16.328438],[81.363268,16.331957],[81.364305,16.332701],[81.368907,16.334038],[81.371551,16.333008],[81.38024,16.332505],[81.388043,16.335597],[81.391757,16.336437],[81.393911,16.335404],[81.393748,16.333805]]],[[[84.68042,19.165632],[84.685144,19.162224],[84.68849,19.158517],[84.699203,19.160463],[84.704631,19.159068],[84.709142,19.159931],[84.712291,19.157789],[84.713545,19.152357],[84.704415,19.133956],[84.700998,19.130381],[84.700903,19.128363],[84.704841,19.124481],[84.705413,19.119171],[84.704635,19.117671],[84.718921,19.108923],[84.768582,19.080023],[84.766248,19.075137],[84.76214,19.069381],[84.761599,19.068014],[84.760389,19.066741],[84.755448,19.054768],[84.753563,19.053795],[84.749522,19.054384],[84.743451,19.058517],[84.740373,19.058207],[84.739103,19.057809],[84.732851,19.055299],[84.727973,19.051337],[84.723095,19.038068],[84.723188,19.034558],[84.724524,19.031356],[84.725018,19.030018],[84.727982,19.028621],[84.730806,19.029397],[84.73253,19.031045],[84.733727,19.037735],[84.734004,19.039015],[84.734913,19.039999],[84.736021,19.04265],[84.737307,19.045123],[84.738411,19.047107],[84.740748,19.049569],[84.742696,19.049863],[84.744786,19.049146],[84.745612,19.046963],[84.746101,19.044952],[84.745701,19.042949],[84.745295,19.040624],[84.744902,19.038795],[84.744533,19.037635],[84.743396,19.035003],[84.736446,19.028438],[84.734462,19.025996],[84.733811,19.025199],[84.732865,19.022756],[84.731689,19.021584],[84.717547,19.010138],[84.713684,19.004387],[84.710881,19.001831],[84.707718,18.996333],[84.705977,18.991298],[84.703463,18.988324],[84.703133,18.987163],[84.698358,18.979593],[84.696199,18.976805],[84.69564,18.975438],[84.692124,18.96946],[84.691397,18.968822],[84.689563,18.966917],[84.687263,18.965472],[84.686403,18.962971],[84.683532,18.960371],[84.672819,18.951998],[84.671585,18.949697],[84.670066,18.94834],[84.66917,18.947565],[84.6686,18.946419],[84.661615,18.940834],[84.66084,18.939646],[84.654961,18.933655],[84.652937,18.93235],[84.651688,18.931547],[84.637467,18.920389],[84.63267,18.916336],[84.631008,18.914014],[84.624724,18.907965],[84.623003,18.906334],[84.622412,18.906116],[84.620031,18.902423],[84.619126,18.9015],[84.618299,18.901021],[84.616142,18.898184],[84.61334,18.893168],[84.612123,18.892033],[84.611479,18.891116],[84.609002,18.88825],[84.608901,18.887562],[84.607636,18.886401],[84.605697,18.883451],[84.597833,18.874694],[84.591761,18.871359],[84.586289,18.872134],[84.579882,18.874073],[84.573697,18.8753],[84.571875,18.875505],[84.569317,18.875734],[84.558056,18.874524],[84.55749,18.874057],[84.557704,18.871117],[84.557603,18.870429],[84.558807,18.869793],[84.571163,18.869469],[84.572064,18.869287],[84.580242,18.867668],[84.581204,18.867028],[84.582142,18.862302],[84.583055,18.857108],[84.579786,18.84301],[84.573023,18.838144],[84.571311,18.836466],[84.569314,18.828947],[84.565674,18.823429],[84.560709,18.807442],[84.556603,18.801676],[84.555072,18.786272],[84.553593,18.783315],[84.550377,18.780444],[84.54351,18.77566],[84.534354,18.770007],[84.531061,18.76799],[84.52719,18.764686],[84.526425,18.764434],[84.526201,18.763786],[84.516633,18.756038],[84.515584,18.754652],[84.509835,18.749068],[84.508549,18.748364],[84.507539,18.747417],[84.507285,18.747183],[84.505892,18.745445],[84.500659,18.740706],[84.500254,18.739979],[84.493329,18.733928],[84.492342,18.731631],[84.489297,18.728903],[84.488905,18.728155],[84.482218,18.721376],[84.477932,18.714501],[84.474261,18.710175],[84.473559,18.709949],[84.473349,18.709273],[84.468541,18.704066],[84.466942,18.701312],[84.46625,18.700369],[84.455384,18.689364],[84.454052,18.688009],[84.448275,18.677029],[84.445545,18.673576],[84.44292,18.673272],[84.439105,18.674289],[84.437791,18.678092],[84.437071,18.678754],[84.434928,18.678469],[84.433879,18.678212],[84.432364,18.677245],[84.429961,18.670861],[84.428575,18.6697],[84.421696,18.66849],[84.419467,18.668665],[84.418129,18.668686],[84.415984,18.668346],[84.413442,18.667635],[84.411694,18.666903],[84.411139,18.666148],[84.411658,18.66538],[84.41351,18.664579],[84.416558,18.663253],[84.419596,18.662056],[84.421864,18.661761],[84.424305,18.661447],[84.428862,18.662217],[84.437036,18.664283],[84.438471,18.663865],[84.441881,18.661248],[84.442164,18.659903],[84.443347,18.65971],[84.443382,18.658582],[84.441921,18.656037],[84.441363,18.654897],[84.437551,18.651179],[84.436858,18.650174],[84.424952,18.641771],[84.422573,18.640718],[84.419397,18.639181],[84.412301,18.636435],[84.409788,18.633648],[84.403908,18.62466],[84.40298,18.624429],[84.400087,18.622089],[84.399867,18.621396],[84.391502,18.613365],[84.389226,18.611326],[84.388048,18.61065],[84.387294,18.609963],[84.386062,18.607909],[84.385495,18.606744],[84.381634,18.603366],[84.381208,18.602234],[84.379284,18.600677],[84.377817,18.597609],[84.377518,18.596999],[84.376253,18.595836],[84.375457,18.595355],[84.374426,18.593536],[84.369438,18.586824],[84.365267,18.579488],[84.362517,18.576466],[84.361583,18.574078],[84.358609,18.565492],[84.357238,18.563862],[84.353993,18.562188],[84.350211,18.563082],[84.348457,18.56524],[84.348149,18.570309],[84.349101,18.571929],[84.350341,18.573937],[84.351075,18.575218],[84.351015,18.578412],[84.348144,18.583081],[84.344071,18.579615],[84.340326,18.574681],[84.339136,18.574186],[84.334403,18.573822],[84.333598,18.573357],[84.333157,18.572198],[84.333125,18.569282],[84.334413,18.56594],[84.334437,18.55847],[84.333032,18.557282],[84.330181,18.557657],[84.323696,18.559951],[84.323663,18.56087],[84.322459,18.561733],[84.321517,18.561931],[84.314916,18.560612],[84.31388,18.559667],[84.313379,18.557398],[84.310033,18.554368],[84.309809,18.553664],[84.309982,18.552314],[84.311537,18.551004],[84.312197,18.549214],[84.311406,18.544666],[84.310737,18.543749],[84.308656,18.541892],[84.297459,18.535846],[84.289326,18.531386],[84.284505,18.526258],[84.283462,18.525531],[84.279205,18.522835],[84.276539,18.520372],[84.274298,18.518737],[84.27291,18.514573],[84.274168,18.511628],[84.27634,18.510337],[84.279891,18.512357],[84.284816,18.517298],[84.288388,18.521006],[84.290632,18.523467],[84.292875,18.525934],[84.296423,18.527972],[84.29771,18.528953],[84.298889,18.529841],[84.299092,18.530033],[84.303767,18.532244],[84.321059,18.536605],[84.325253,18.538082],[84.335792,18.545595],[84.336468,18.546419],[84.33885,18.547914],[84.34008,18.548454],[84.344395,18.551404],[84.347761,18.555204],[84.349066,18.548376],[84.343107,18.542661],[84.34241,18.541956],[84.334889,18.536985],[84.327108,18.530988],[84.324459,18.528936],[84.323209,18.527929],[84.319241,18.524229],[84.30739,18.5147],[84.298381,18.50752],[84.287101,18.498592],[84.282561,18.494994],[84.281312,18.493371],[84.274232,18.486865],[84.27054,18.484051],[84.26493,18.478834],[84.260551,18.475259],[84.255998,18.470889],[84.2552,18.469515],[84.253836,18.467912],[84.252205,18.466965],[84.251712,18.464449],[84.251241,18.463999],[84.250312,18.463049],[84.241721,18.457033],[84.23899,18.454581],[84.233599,18.452405],[84.22749,18.44636],[84.222912,18.442805],[84.221521,18.441844],[84.215199,18.434941],[84.213731,18.433815],[84.212042,18.431613],[84.210652,18.43067],[84.209154,18.4295],[84.208709,18.428358],[84.207887,18.427877],[84.206018,18.425317],[84.200462,18.419502],[84.199167,18.417899],[84.192531,18.412712],[84.191286,18.41086],[84.190848,18.410388],[84.185457,18.40457],[84.181961,18.40176],[84.174771,18.395089],[84.171541,18.391201],[84.161578,18.381705],[84.158293,18.377747],[84.157287,18.376128],[84.149214,18.368669],[84.147853,18.367047],[84.143446,18.360021],[84.142819,18.358527],[84.141935,18.356806],[84.141607,18.355985],[84.137966,18.351809],[84.13659,18.350646],[84.134949,18.349928],[84.12979,18.348854],[84.116703,18.350273],[84.104196,18.348975],[84.096318,18.347125],[84.092474,18.345674],[84.085332,18.340512],[84.078527,18.337571],[84.070193,18.335845],[84.067577,18.335761],[84.061077,18.33589],[84.046258,18.340215],[84.039474,18.344509],[84.028064,18.347399],[84.026581,18.347749],[84.019671,18.34866],[84.014382,18.35077],[84.010213,18.353239],[84.001775,18.357067],[83.99631,18.359554],[83.992668,18.358265],[83.990833,18.352289],[83.992995,18.349703],[83.999681,18.347373],[84.01049,18.344953],[84.011992,18.344584],[84.012508,18.343678],[84.013218,18.343475],[84.019941,18.341632],[84.020974,18.34148],[84.024943,18.340867],[84.026432,18.340202],[84.02878,18.339858],[84.040772,18.334622],[84.041969,18.33388],[84.04221,18.333245],[84.050231,18.328108],[84.058597,18.325194],[84.064397,18.325094],[84.072772,18.326315],[84.079278,18.32969],[84.082572,18.330452],[84.086476,18.333743],[84.091133,18.336163],[84.095214,18.337205],[84.108781,18.340058],[84.111834,18.34061],[84.119443,18.339042],[84.120151,18.338612],[84.121139,18.337947],[84.121417,18.336831],[84.1217,18.335708],[84.122876,18.335517],[84.123144,18.334863],[84.125562,18.332892],[84.127263,18.331814],[84.127387,18.328648],[84.126758,18.320998],[84.126114,18.312999],[84.123853,18.306595],[84.118365,18.301005],[84.111912,18.297128],[84.10186,18.291905],[84.10119,18.291199],[84.093467,18.288476],[84.075214,18.278636],[84.074335,18.277529],[84.071039,18.27476],[84.058498,18.263967],[84.057862,18.263418],[84.053892,18.2615],[84.039877,18.256541],[84.030103,18.251917],[84.006245,18.243733],[83.992054,18.236259],[83.97687,18.230365],[83.976141,18.229908],[83.973817,18.228407],[83.964836,18.222539],[83.959586,18.217179],[83.954274,18.213618],[83.948984,18.214533],[83.94281,18.21643],[83.939208,18.21834],[83.938681,18.219675],[83.938662,18.220345],[83.93769,18.221228],[83.93551,18.222523],[83.93211,18.224916],[83.929728,18.225516],[83.927033,18.224964],[83.925785,18.224282],[83.925448,18.219491],[83.927223,18.216149],[83.933271,18.212263],[83.933763,18.211826],[83.933598,18.209794],[83.933616,18.209106],[83.932691,18.208153],[83.927156,18.206145],[83.897602,18.19712],[83.886456,18.19134],[83.881135,18.187548],[83.880238,18.186386],[83.878916,18.182963],[83.876151,18.179587],[83.874459,18.175813],[83.869443,18.170898],[83.855656,18.165241],[83.839268,18.160881],[83.835295,18.159159],[83.820403,18.154367],[83.809063,18.150159],[83.805428,18.148481],[83.788088,18.142705],[83.777375,18.139213],[83.776663,18.138956],[83.776451,18.13826],[83.77113,18.13528],[83.75926,18.129794],[83.751625,18.124997],[83.740437,18.120013],[83.738636,18.118046],[83.728329,18.114517],[83.715378,18.107978],[83.703049,18.101711],[83.692061,18.091826],[83.679799,18.084212],[83.678405,18.083703],[83.674641,18.082656],[83.669952,18.083359],[83.669475,18.083431],[83.664162,18.084819],[83.660758,18.084115],[83.657334,18.081605],[83.660868,18.079677],[83.666287,18.07746],[83.668117,18.075826],[83.669016,18.075029],[83.669065,18.07367],[83.667931,18.072511],[83.661689,18.068437],[83.647683,18.061242],[83.634336,18.053718],[83.630161,18.051756],[83.627537,18.050089],[83.618813,18.044346],[83.616275,18.0421],[83.60988,18.037753],[83.604539,18.033411],[83.603178,18.031776],[83.602443,18.031528],[83.602228,18.03085],[83.600859,18.029489],[83.594232,18.023595],[83.592617,18.021239],[83.590515,18.018437],[83.587309,18.014833],[83.582686,18.011968],[83.581514,18.011696],[83.577949,18.012239],[83.576748,18.012864],[83.576231,18.013769],[83.57546,18.015793],[83.574049,18.015516],[83.573061,18.01493],[83.571584,18.013985],[83.57058,18.013353],[83.566765,18.014603],[83.566354,18.015352],[83.559683,18.020233],[83.557541,18.019881],[83.556043,18.019392],[83.555365,18.017511],[83.556629,18.014014],[83.557379,18.012449],[83.563653,18.009072],[83.56375,18.008412],[83.564742,18.007338],[83.565429,18.006652],[83.566047,18.002117],[83.563208,17.991167],[83.562529,17.981623],[83.560984,17.972978],[83.558913,17.97111],[83.554256,17.962563],[83.53658,17.948634],[83.524097,17.940503],[83.519507,17.937867],[83.516333,17.93481],[83.500758,17.925897],[83.497342,17.923411],[83.490597,17.919446],[83.483464,17.915256],[83.482222,17.914619],[83.474719,17.910542],[83.472578,17.910701],[83.460138,17.914784],[83.458699,17.915421],[83.457518,17.916047],[83.45629,17.916701],[83.453389,17.919334],[83.452176,17.920417],[83.450928,17.921044],[83.448309,17.921619],[83.446793,17.92113],[83.445999,17.920415],[83.445559,17.919501],[83.446565,17.911839],[83.447533,17.91095],[83.448494,17.910318],[83.449017,17.902878],[83.450731,17.898573],[83.45181,17.897528],[83.452336,17.896184],[83.453798,17.895107],[83.454847,17.89197],[83.454642,17.884724],[83.453424,17.880153],[83.452381,17.87922],[83.450573,17.87667],[83.450045,17.875503],[83.441098,17.866665],[83.438437,17.864025],[83.423374,17.853111],[83.420152,17.850035],[83.415809,17.844451],[83.415484,17.843546],[83.414264,17.84146],[83.410685,17.842253],[83.409485,17.842879],[83.408954,17.844213],[83.407228,17.845972],[83.405147,17.84544],[83.403893,17.844271],[83.403675,17.843595],[83.404444,17.83863],[83.404944,17.837966],[83.412152,17.834597],[83.416088,17.830895],[83.417058,17.830464],[83.419376,17.825099],[83.419349,17.816284],[83.418629,17.815439],[83.416262,17.807351],[83.41214,17.804037],[83.411815,17.803123],[83.411051,17.802215],[83.408096,17.798698],[83.400956,17.7927],[83.39928,17.790754],[83.398735,17.789999],[83.395735,17.788286],[83.388479,17.781043],[83.386067,17.776429],[83.381143,17.770833],[83.380045,17.770146],[83.379855,17.769433],[83.378105,17.767553],[83.373227,17.763914],[83.372307,17.763676],[83.37209,17.763047],[83.37078,17.762078],[83.358426,17.755366],[83.355789,17.752981],[83.353089,17.748809],[83.349254,17.738236],[83.348489,17.734368],[83.347917,17.733684],[83.347114,17.73274],[83.346369,17.721394],[83.343677,17.71792],[83.340276,17.714167],[83.333491,17.709281],[83.332701,17.708682],[83.329921,17.707224],[83.318567,17.70335],[83.314574,17.70172],[83.30443,17.695708],[83.300791,17.691948],[83.299593,17.689851],[83.29882,17.6858],[83.29861,17.685031],[83.298044,17.684349],[83.294536,17.670676],[83.293147,17.667014],[83.292425,17.665821],[83.289916,17.661912],[83.283523,17.656262],[83.277547,17.652641],[83.273932,17.651342],[83.269004,17.648728],[83.261868,17.643715],[83.260283,17.642621],[83.260067,17.641973],[83.259373,17.641741],[83.259161,17.641063],[83.255062,17.636923],[83.253175,17.635544],[83.250439,17.634249],[83.244076,17.627928],[83.243644,17.627456],[83.241347,17.625322],[83.235803,17.625634],[83.232567,17.626166],[83.227754,17.628706],[83.223351,17.639406],[83.222372,17.640055],[83.220101,17.642373],[83.219858,17.643026],[83.218879,17.643456],[83.218618,17.644135],[83.216479,17.646195],[83.215528,17.646598],[83.214407,17.646469],[83.207989,17.645661],[83.199854,17.63992],[83.198157,17.638065],[83.19796,17.637416],[83.19655,17.630538],[83.197204,17.626697],[83.200322,17.624783],[83.2013,17.623895],[83.201574,17.622776],[83.213819,17.617353],[83.215564,17.616818],[83.225002,17.614485],[83.227089,17.615456],[83.231057,17.615782],[83.231493,17.613241],[83.232338,17.608231],[83.23043,17.603539],[83.229603,17.602732],[83.226241,17.598766],[83.225457,17.597361],[83.220003,17.592196],[83.219538,17.591723],[83.218877,17.591032],[83.217267,17.589828],[83.216634,17.589503],[83.207344,17.584505],[83.204078,17.583323],[83.197804,17.580984],[83.188604,17.575463],[83.182317,17.572746],[83.173925,17.567456],[83.173546,17.566754],[83.172077,17.563778],[83.168436,17.560245],[83.155529,17.552736],[83.146963,17.549047],[83.139738,17.546971],[83.131451,17.545863],[83.123773,17.544831],[83.111797,17.540645],[83.109946,17.539679],[83.105917,17.538894],[83.10662,17.541838],[83.108476,17.545928],[83.110197,17.548287],[83.110886,17.551057],[83.107334,17.550654],[83.103109,17.549046],[83.099398,17.547123],[83.096578,17.544075],[83.092126,17.537119],[83.091172,17.535479],[83.087993,17.532186],[83.087098,17.531451],[83.085726,17.530335],[83.07369,17.524654],[83.066884,17.523505],[83.060172,17.52075],[83.058707,17.520366],[83.044529,17.516566],[83.039222,17.513866],[83.035085,17.510773],[83.03368,17.510718],[83.031798,17.51042],[83.026277,17.507758],[83.016132,17.501491],[83.014063,17.500523],[83.007005,17.494602],[83.005866,17.49297],[83.005343,17.490675],[83.005163,17.484321],[83.004669,17.482273],[83.002192,17.480322],[82.999927,17.478697],[82.995983,17.475601],[82.993244,17.471297],[82.992874,17.470751],[82.991029,17.469765],[82.979907,17.465279],[82.968696,17.462607],[82.951479,17.455595],[82.949517,17.454462],[82.94505,17.452871],[82.942986,17.451236],[82.937923,17.449226],[82.931933,17.445163],[82.919275,17.439858],[82.917888,17.439071],[82.91438,17.436986],[82.910175,17.434484],[82.908846,17.433668],[82.865538,17.415049],[82.856615,17.409277],[82.855021,17.407859],[82.848995,17.404826],[82.840023,17.399585],[82.825198,17.39404],[82.8228,17.393438],[82.819551,17.39223],[82.810382,17.390048],[82.809572,17.389832],[82.807281,17.388616],[82.788886,17.381401],[82.771266,17.373997],[82.764678,17.370863],[82.753096,17.366161],[82.73672,17.357832],[82.734406,17.357056],[82.724923,17.350456],[82.723193,17.349559],[82.719163,17.34685],[82.718627,17.346047],[82.717797,17.345786],[82.714702,17.345296],[82.707909,17.342482],[82.705864,17.341045],[82.698988,17.336683],[82.6976,17.336168],[82.697387,17.335492],[82.686778,17.330113],[82.680386,17.325082],[82.670674,17.321116],[82.662422,17.316017],[82.661259,17.315738],[82.656625,17.313764],[82.648136,17.30863],[82.643902,17.306369],[82.638628,17.303287],[82.637795,17.302604],[82.629926,17.299151],[82.623045,17.295015],[82.620539,17.293103],[82.606323,17.284402],[82.604046,17.282261],[82.59001,17.274143],[82.58545,17.270674],[82.579238,17.267714],[82.573465,17.263553],[82.571368,17.262043],[82.560198,17.256107],[82.551762,17.249861],[82.549517,17.248046],[82.548568,17.247777],[82.54695,17.245832],[82.538698,17.239427],[82.524747,17.229328],[82.523297,17.227684],[82.51913,17.223856],[82.517982,17.223356],[82.517493,17.222415],[82.516308,17.221193],[82.512071,17.21718],[82.507923,17.212573],[82.486959,17.196352],[82.462488,17.175188],[82.445542,17.164112],[82.44115,17.160007],[82.437928,17.156145],[82.43261,17.150799],[82.429449,17.147613],[82.425601,17.143826],[82.425284,17.142838],[82.424409,17.141038],[82.422639,17.140001],[82.419993,17.137134],[82.418366,17.135337],[82.41002,17.126674],[82.399037,17.118981],[82.395142,17.115139],[82.389577,17.110452],[82.387756,17.109459],[82.38693,17.108756],[82.384128,17.105029],[82.381659,17.102657],[82.379706,17.101444],[82.377363,17.098641],[82.376907,17.098159],[82.371108,17.093624],[82.370781,17.09292],[82.36706,17.089388],[82.36606,17.088221],[82.364989,17.085459],[82.361697,17.08254],[82.360994,17.082285],[82.360569,17.081132],[82.360065,17.080035],[82.356656,17.07718],[82.355645,17.075691],[82.354244,17.07391],[82.349159,17.069329],[82.347279,17.067595],[82.336519,17.059147],[82.331137,17.053266],[82.32704,17.050156],[82.323235,17.045469],[82.314247,17.037254],[82.30586,17.029596],[82.302282,17.025606],[82.301145,17.02418],[82.296208,17.013778],[82.292099,17.008407],[82.290464,17.005399],[82.288835,17.003537],[82.283618,16.995605],[82.283232,16.993566],[82.281079,16.986552],[82.280648,16.98552],[82.279646,16.983893],[82.278781,16.970939],[82.272392,16.95141],[82.270317,16.935882],[82.269686,16.933422],[82.269028,16.932471],[82.266261,16.930995],[82.259365,16.932991],[82.253176,16.932053],[82.252851,16.931349],[82.251638,16.924737],[82.250989,16.923127],[82.251132,16.91203],[82.250386,16.908876],[82.249809,16.906152],[82.24874,16.896969],[82.249489,16.890877],[82.251284,16.887114],[82.25439,16.885882],[82.260561,16.885002],[82.26228,16.883482],[82.264834,16.877677],[82.266637,16.871874],[82.267376,16.871444],[82.269044,16.868359],[82.269716,16.867058],[82.272439,16.865991],[82.273638,16.865808],[82.277957,16.868707],[82.279591,16.868997],[82.281773,16.867063],[82.282075,16.863001],[82.282737,16.861436],[82.286296,16.86034],[82.29982,16.857834],[82.303637,16.856857],[82.304225,16.856518],[82.309675,16.853013],[82.311127,16.851527],[82.311658,16.850375],[82.315859,16.83991],[82.318506,16.838889],[82.319477,16.838696],[82.320843,16.839424],[82.322473,16.842001],[82.322317,16.847306],[82.322764,16.849033],[82.325268,16.850701],[82.326902,16.850991],[82.335323,16.849306],[82.33621,16.849486],[82.33732,16.849165],[82.340549,16.850464],[82.343822,16.851016],[82.352109,16.849305],[82.353339,16.84845],[82.357142,16.841791],[82.357135,16.83977],[82.354415,16.831069],[82.35495,16.828517],[82.357923,16.821687],[82.358234,16.820205],[82.358427,16.81521],[82.362986,16.8185],[82.36486,16.82627],[82.364942,16.831501],[82.365223,16.847918],[82.365579,16.850624],[82.365827,16.854209],[82.365419,16.861856],[82.366857,16.866683],[82.367047,16.873248],[82.36687,16.891955],[82.366785,16.903115],[82.366027,16.928035],[82.364737,16.93339],[82.362482,16.938984],[82.361572,16.939683],[82.358749,16.944063],[82.356068,16.945998],[82.355509,16.950492],[82.354274,16.955206],[82.350869,16.957832],[82.34986,16.957788],[82.342373,16.963561],[82.341901,16.964],[82.340006,16.965769],[82.335481,16.973246],[82.333756,16.977485],[82.333341,16.98154],[82.334587,16.982945],[82.336817,16.983479],[82.34353,16.98016],[82.347609,16.976547],[82.349996,16.973833],[82.351165,16.972734],[82.354994,16.964902],[82.355669,16.964351],[82.357294,16.960432],[82.361259,16.953899],[82.367874,16.939666],[82.372134,16.922623],[82.372759,16.90835],[82.372795,16.907684],[82.372516,16.905872],[82.372487,16.903668],[82.373495,16.902604],[82.375461,16.879475],[82.375177,16.869496],[82.374747,16.868566],[82.375645,16.842542],[82.372791,16.830338],[82.371716,16.825621],[82.369907,16.821018],[82.369155,16.819857],[82.36789,16.815964],[82.367125,16.814804],[82.362905,16.801261],[82.361006,16.791215],[82.357657,16.781786],[82.355858,16.772225],[82.353597,16.767803],[82.351164,16.757256],[82.350735,16.755237],[82.349945,16.754287],[82.348891,16.751528],[82.34869,16.750624],[82.348844,16.737026],[82.35108,16.728298],[82.351173,16.723531],[82.350459,16.721458],[82.348644,16.720483],[82.344847,16.721024],[82.332167,16.727626],[82.3303,16.728601],[82.32425,16.727298],[82.320223,16.7246],[82.320234,16.722505],[82.321404,16.719844],[82.328917,16.714944],[82.339123,16.712414],[82.341302,16.71112],[82.341566,16.710443],[82.342523,16.709809],[82.342932,16.703243],[82.34271,16.700309],[82.340934,16.697754],[82.339272,16.692691],[82.33952,16.689756],[82.339928,16.688639],[82.345418,16.687044],[82.347749,16.687139],[82.352596,16.689222],[82.356444,16.692258],[82.35711,16.693189],[82.357689,16.695921],[82.357663,16.697466],[82.357595,16.703382],[82.358567,16.705236],[82.360893,16.70556],[82.361709,16.705821],[82.363151,16.705535],[82.363976,16.705798],[82.364836,16.704772],[82.367873,16.701766],[82.367532,16.698576],[82.364066,16.69349],[82.363228,16.692532],[82.358309,16.687132],[82.357879,16.686659],[82.356976,16.685489],[82.354734,16.683419],[82.354275,16.682935],[82.352937,16.68153],[82.35183,16.680053],[82.345126,16.674555],[82.343443,16.672676],[82.334663,16.666909],[82.333428,16.665724],[82.33195,16.66249],[82.33115,16.661769],[82.328059,16.657708],[82.327639,16.656494],[82.324477,16.651874],[82.323767,16.650806],[82.323815,16.646965],[82.32472,16.64498],[82.328402,16.641488],[82.329973,16.63771],[82.329975,16.634765],[82.334542,16.624315],[82.336066,16.616667],[82.336199,16.611739],[82.336368,16.604436],[82.336197,16.603065],[82.334553,16.597637],[82.333468,16.595703],[82.333236,16.591325],[82.332867,16.583893],[82.332317,16.579799],[82.329816,16.577419],[82.328357,16.573309],[82.327221,16.572571],[82.324687,16.573272],[82.320797,16.575025],[82.319997,16.577038],[82.315375,16.582304],[82.313175,16.585875],[82.318383,16.584958],[82.3244,16.582531],[82.327032,16.582297],[82.328003,16.583923],[82.328022,16.586409],[82.325954,16.59102],[82.325904,16.596982],[82.325568,16.599221],[82.326556,16.603799],[82.32758,16.604299],[82.327322,16.611385],[82.322461,16.623819],[82.321237,16.62492],[82.32017,16.625984],[82.317981,16.627486],[82.317061,16.627215],[82.314669,16.62574],[82.312828,16.617304],[82.311659,16.616018],[82.311647,16.615067],[82.311034,16.611641],[82.31063,16.609931],[82.31082,16.60879],[82.310406,16.606504],[82.309415,16.605372],[82.308419,16.604231],[82.30566,16.604823],[82.302906,16.606556],[82.299574,16.609424],[82.297067,16.612565],[82.29473,16.617928],[82.293997,16.61833],[82.292767,16.619641],[82.292296,16.620126],[82.289783,16.620387],[82.287666,16.618599],[82.288211,16.613214],[82.288976,16.611037],[82.289497,16.610158],[82.290689,16.608016],[82.294623,16.604316],[82.29586,16.597805],[82.302253,16.596017],[82.30322,16.595156],[82.304588,16.591368],[82.304486,16.588188],[82.303553,16.587686],[82.303233,16.586983],[82.303415,16.585412],[82.302486,16.580622],[82.300662,16.578779],[82.299239,16.577567],[82.298194,16.576354],[82.298218,16.570484],[82.29776,16.570002],[82.297067,16.569974],[82.296393,16.569052],[82.289032,16.566263],[82.288094,16.565999],[82.282653,16.565771],[82.277705,16.56495],[82.270127,16.563875],[82.264746,16.560941],[82.263971,16.560213],[82.263472,16.558166],[82.263649,16.556821],[82.264842,16.556197],[82.28064,16.554569],[82.283144,16.554628],[82.286101,16.554614],[82.296289,16.555901],[82.299749,16.55676],[82.309737,16.559931],[82.316182,16.559296],[82.314326,16.556338],[82.313233,16.554776],[82.30445,16.551935],[82.299988,16.551569],[82.29462,16.551068],[82.288427,16.548329],[82.283451,16.547826],[82.281998,16.547673],[82.281305,16.547601],[82.280588,16.547805],[82.271864,16.546725],[82.257615,16.544576],[82.250299,16.542595],[82.248837,16.542167],[82.230427,16.533925],[82.221424,16.52789],[82.219089,16.525306],[82.212877,16.522427],[82.210384,16.520621],[82.201433,16.516199],[82.198299,16.512887],[82.190876,16.508282],[82.190581,16.507578],[82.189236,16.506163],[82.18523,16.503965],[82.18305,16.502725],[82.16834,16.496225],[82.165886,16.495617],[82.159289,16.49396],[82.15778,16.492627],[82.155829,16.491477],[82.153857,16.489314],[82.150689,16.487014],[82.149789,16.487306],[82.149337,16.487171],[82.149798,16.488467],[82.152815,16.490191],[82.15312,16.491498],[82.154334,16.492795],[82.155091,16.493645],[82.15797,16.498349],[82.164875,16.50441],[82.165584,16.504948],[82.16714,16.506828],[82.168413,16.510292],[82.168071,16.517969],[82.169091,16.520746],[82.171367,16.523212],[82.173674,16.526437],[82.175143,16.527631],[82.178031,16.53132],[82.182821,16.536534],[82.184183,16.539055],[82.187568,16.543246],[82.192304,16.547746],[82.198699,16.556623],[82.199012,16.557537],[82.200018,16.558495],[82.199806,16.563257],[82.198141,16.56431],[82.197636,16.56475],[82.194916,16.564827],[82.188753,16.56415],[82.180191,16.56108],[82.170145,16.555004],[82.164285,16.549764],[82.154559,16.531238],[82.148961,16.524837],[82.143229,16.517394],[82.141535,16.504032],[82.140783,16.498046],[82.140726,16.487837],[82.14071,16.484391],[82.138202,16.484558],[82.131717,16.481566],[82.129008,16.479202],[82.127177,16.478737],[82.119122,16.474924],[82.117766,16.473938],[82.107792,16.47063],[82.103897,16.469306],[82.089922,16.46237],[82.078978,16.455322],[82.071389,16.451824],[82.069381,16.449942],[82.05717,16.445122],[82.047311,16.440401],[82.04641,16.43968],[82.036715,16.436777],[82.033749,16.434401],[82.03052,16.433507],[82.02549,16.432165],[82.021734,16.430485],[82.018171,16.427157],[82.007289,16.422936],[82.005746,16.421658],[81.998201,16.417006],[81.994005,16.413351],[81.988356,16.409384],[81.978878,16.404194],[81.970276,16.397694],[81.967528,16.396223],[81.9666,16.396186],[81.964444,16.397008],[81.964045,16.397895],[81.962545,16.407801],[81.964503,16.416491],[81.96633,16.419754],[81.969374,16.432793],[81.969349,16.435974],[81.968939,16.437081],[81.967954,16.437729],[81.965627,16.437628],[81.964942,16.437372],[81.964365,16.437115],[81.960694,16.433093],[81.956783,16.4259],[81.955292,16.41541],[81.952376,16.407853],[81.951403,16.404653],[81.950338,16.39844],[81.945139,16.394344],[81.938232,16.391333],[81.928216,16.390031],[81.926559,16.390398],[81.909598,16.386952],[81.902824,16.384589],[81.894392,16.381075],[81.875654,16.375981],[81.873602,16.375109],[81.867487,16.373378],[81.864544,16.372123],[81.860949,16.371573],[81.854569,16.370514],[81.851411,16.368356],[81.840342,16.36424],[81.834666,16.360817],[81.832719,16.359208],[81.826695,16.355729],[81.808091,16.347691],[81.799516,16.342783],[81.79476,16.340064],[81.793019,16.339064],[81.783867,16.33485],[81.77706,16.329759],[81.771369,16.327256],[81.770159,16.326651],[81.765509,16.324305],[81.762323,16.322692],[81.753946,16.319015],[81.75027,16.316807],[81.745522,16.314961],[81.735143,16.310932],[81.733187,16.309996],[81.730396,16.30875],[81.725793,16.307443],[81.723167,16.309996],[81.722868,16.312882],[81.725817,16.319531],[81.72755,16.322649],[81.728058,16.324285],[81.731438,16.333153],[81.734673,16.342716],[81.734994,16.348921],[81.734731,16.356531],[81.724806,16.355719],[81.723329,16.351503],[81.723006,16.343041],[81.724088,16.340815],[81.725609,16.337684],[81.724428,16.332044],[81.720233,16.328455],[81.718865,16.327274],[81.71621,16.3208],[81.715839,16.31222],[81.708754,16.30276],[81.70639,16.302884],[81.701626,16.304956],[81.700116,16.311659],[81.700027,16.318703],[81.697056,16.321976],[81.695769,16.322539],[81.692661,16.323923],[81.683199,16.328133],[81.66462,16.334367],[81.660783,16.336012],[81.650379,16.338042],[81.646384,16.338309],[81.639118,16.338446],[81.631119,16.33901],[81.619848,16.339638],[81.617716,16.340007],[81.616062,16.34016],[81.610183,16.340572],[81.609513,16.340306],[81.599536,16.341338],[81.595001,16.341573],[81.592768,16.341823],[81.581639,16.344505],[81.57282,16.348034],[81.570741,16.349763],[81.568957,16.351212],[81.567171,16.353088],[81.565091,16.355968],[81.572698,16.356531],[81.576774,16.357309],[81.579355,16.358478],[81.580485,16.360181],[81.572167,16.365868],[81.566454,16.367869],[81.564382,16.37023],[81.561271,16.37499],[81.55682,16.38479],[81.549532,16.390287],[81.548185,16.38798],[81.547933,16.387021],[81.547577,16.385686],[81.547718,16.383089],[81.548313,16.380926],[81.549804,16.379487],[81.551247,16.377994],[81.553925,16.375233],[81.55441,16.374568],[81.555466,16.367589],[81.554468,16.360148],[81.553366,16.358748],[81.548291,16.355736],[81.53128,16.351452],[81.528634,16.350758],[81.514756,16.351515],[81.503529,16.34997],[81.497449,16.348571],[81.484767,16.346535],[81.476602,16.34593],[81.474748,16.345394],[81.473574,16.345561],[81.471723,16.345025],[81.468892,16.345352],[81.459821,16.343822],[81.442308,16.343098],[81.434127,16.341989],[81.433427,16.342187],[81.415991,16.339075],[81.411821,16.338099],[81.410072,16.337746],[81.404625,16.336782],[81.403215,16.336948],[81.402514,16.337147],[81.402001,16.337821],[81.40205,16.339182],[81.403863,16.342644],[81.403242,16.34603],[81.402747,16.346467],[81.401521,16.347541],[81.398884,16.348982],[81.39239,16.351825],[81.39074,16.352484],[81.390821,16.35318],[81.391064,16.354039],[81.391717,16.356189],[81.393604,16.357613],[81.399024,16.360113],[81.40137,16.360451],[81.402092,16.359795],[81.403177,16.356667],[81.404398,16.35605],[81.407923,16.355515],[81.409301,16.356044],[81.407844,16.37116],[81.412001,16.372958],[81.413751,16.375523],[81.413144,16.378206],[81.410454,16.38058],[81.408558,16.381387],[81.404593,16.380658],[81.400093,16.37734],[81.399323,16.376021],[81.397647,16.374351],[81.397327,16.373447],[81.39456,16.370118],[81.393272,16.368257],[81.387913,16.364351],[81.38652,16.36282],[81.385182,16.361279],[81.383816,16.36005],[81.381973,16.359338],[81.375095,16.360614],[81.372995,16.360296],[81.372316,16.360056],[81.371895,16.358883],[81.369673,16.356736],[81.369003,16.356267],[81.368085,16.355988],[81.363578,16.356709],[81.356455,16.359539],[81.353817,16.361418],[81.351307,16.36361],[81.347416,16.365692],[81.343429,16.366433],[81.340837,16.366313],[81.330859,16.364476],[81.325342,16.362422],[81.322585,16.361376],[81.321977,16.361603],[81.31596,16.361374],[81.312756,16.360215],[81.311975,16.35919],[81.312521,16.356405],[81.313367,16.35554],[81.313164,16.35247],[81.311209,16.351601],[81.303965,16.348735],[81.302537,16.346845],[81.302343,16.34594],[81.302416,16.344379],[81.302819,16.343476],[81.30424,16.343109],[81.308254,16.342826],[81.31124,16.344008],[81.312968,16.344383],[81.317099,16.34517],[81.320405,16.344764],[81.321649,16.343967],[81.321231,16.342364],[81.319164,16.341177],[81.31709,16.339588],[81.315439,16.338392],[81.311351,16.336471],[81.305919,16.333413],[81.300836,16.331597],[81.30012,16.331147],[81.298506,16.330124],[81.291311,16.325494],[81.287145,16.323966],[81.258343,16.318998],[81.254754,16.316121],[81.253244,16.308567],[81.252831,16.307879],[81.251231,16.306419],[81.246077,16.304392],[81.245549,16.302452],[81.245629,16.301419],[81.25343,16.298628],[81.260601,16.297138],[81.265621,16.294212],[81.266447,16.290032],[81.265967,16.285893],[81.263168,16.278872],[81.260703,16.276273],[81.252593,16.269983],[81.251925,16.269513],[81.248842,16.267781],[81.24511,16.265433],[81.242624,16.263447],[81.240977,16.26225],[81.241381,16.260653],[81.243036,16.260653],[81.246752,16.260644],[81.250066,16.262241],[81.252951,16.263829],[81.25314,16.263811],[81.253777,16.264765],[81.256776,16.266123],[81.263206,16.269982],[81.267119,16.270716],[81.266049,16.267493],[81.261941,16.262815],[81.257613,16.258445],[81.248436,16.252122],[81.247649,16.251094],[81.24546,16.248352],[81.243858,16.247402],[81.243325,16.246248],[81.237981,16.243024],[81.237558,16.242545],[81.23742,16.241971],[81.230073,16.2352],[81.229641,16.234722],[81.229406,16.234137],[81.228709,16.233867],[81.227857,16.232246],[81.22418,16.228709],[81.223797,16.227913],[81.22263,16.226911],[81.221823,16.224386],[81.218962,16.220388],[81.216289,16.21324],[81.211546,16.204867],[81.210507,16.19325],[81.207598,16.182896],[81.207177,16.182347],[81.2059,16.177398],[81.202423,16.172245],[81.20125,16.16938],[81.200826,16.166064],[81.199904,16.163601],[81.197624,16.14641],[81.194354,16.132181],[81.193313,16.129207],[81.18903,16.102708],[81.186283,16.089663],[81.184898,16.084368],[81.181029,16.075807],[81.180391,16.07513],[81.179014,16.073266],[81.17757,16.071708],[81.177214,16.071201],[81.175088,16.068068],[81.170836,16.06377],[81.161005,16.050181],[81.155765,16.039414],[81.154874,16.036814],[81.152306,16.032089],[81.148332,16.021282],[81.147583,16.019179],[81.145995,16.008669],[81.14647,15.999177],[81.147085,15.995958],[81.147708,15.992886],[81.151409,15.983521],[81.153077,15.979313],[81.152852,15.974766],[81.151387,15.973616],[81.148116,15.973003],[81.144618,15.973968],[81.143019,15.974533],[81.133945,15.979712],[81.131738,15.981033],[81.129425,15.982397],[81.127704,15.98433],[81.124848,15.988495],[81.122555,15.992644],[81.119699,15.996534],[81.117404,15.999305],[81.113679,16.003181],[81.108824,16.005124],[81.102524,16.007067],[81.098761,16.00802],[81.094369,16.007153],[81.091939,16.006352],[81.087249,16.004561],[81.086573,16.003836],[81.083754,16.001892],[81.083686,16.000758],[81.085365,15.999939],[81.088266,15.999454],[81.092297,15.999251],[81.094418,15.999511],[81.103616,15.999083],[81.109203,15.996288],[81.110665,15.994992],[81.111037,15.994346],[81.111867,15.991411],[81.112593,15.988959],[81.114736,15.987265],[81.115013,15.987048],[81.115569,15.98548],[81.119007,15.982352],[81.122165,15.980125],[81.123366,15.977904],[81.125042,15.975696],[81.126662,15.973332],[81.138777,15.966394],[81.140915,15.965366],[81.141104,15.964015],[81.140605,15.962168],[81.139724,15.961205],[81.129658,15.954791],[81.126221,15.952197],[81.124579,15.951009],[81.11089,15.943321],[81.102622,15.936343],[81.097612,15.933389],[81.090466,15.929994],[81.079376,15.923719],[81.07454,15.920083],[81.074348,15.919379],[81.072553,15.918163],[81.067148,15.912796],[81.064423,15.909658],[81.063103,15.908207],[81.051298,15.900627],[81.045296,15.897166],[81.042932,15.89399],[81.041199,15.89209],[81.040439,15.891728],[81.038613,15.888257],[81.037821,15.885716],[81.036808,15.88497],[81.035602,15.883555],[81.034375,15.87965],[81.031255,15.876553],[81.02807,15.870974],[81.023888,15.867596],[81.023698,15.866683],[81.022479,15.865496],[81.021633,15.863875],[81.017993,15.859825],[81.012855,15.853301],[81.011207,15.85018],[81.009979,15.849202],[81.009386,15.847749],[81.008841,15.846429],[81.007837,15.845482],[80.99937,15.832665],[80.996038,15.824328],[80.996357,15.818016],[80.997792,15.812806],[81.000081,15.800037],[81.000976,15.798719],[81.002068,15.796309],[81.003376,15.79022],[81.004597,15.789591],[81.004632,15.788898],[81.005178,15.787568],[81.007112,15.785858],[81.007625,15.785213],[81.011626,15.77564],[81.011967,15.768863],[81.010708,15.765643],[81.008715,15.763732],[81.007142,15.762525],[81.005715,15.762897],[81.004942,15.764216],[81.001304,15.76702],[81.000358,15.767414],[80.999811,15.768953],[80.997485,15.771173],[80.993456,15.77434],[80.990931,15.778272],[80.976941,15.78625],[80.976339,15.788709],[80.974556,15.790095],[80.974288,15.790795],[80.966778,15.797787],[80.964073,15.80015],[80.9637,15.801031],[80.963097,15.802105],[80.962352,15.802299],[80.96185,15.802688],[80.961582,15.803345],[80.960361,15.803955],[80.960092,15.804639],[80.956792,15.806924],[80.949162,15.811322],[80.948144,15.810266],[80.939994,15.807177],[80.93955,15.804645],[80.941936,15.803402],[80.949516,15.801943],[80.954585,15.798565],[80.955093,15.797467],[80.959494,15.79403],[80.960601,15.790908],[80.961312,15.790502],[80.963072,15.788097],[80.965298,15.785466],[80.966298,15.783922],[80.971162,15.780305],[80.971207,15.779386],[80.972425,15.778782],[80.9734,15.77836],[80.98091,15.772226],[80.98115,15.771588],[80.982096,15.771175],[80.982865,15.770543],[80.986466,15.767537],[80.989027,15.765284],[80.989413,15.764172],[80.989356,15.760559],[80.988813,15.760072],[80.987151,15.755435],[80.980629,15.750579],[80.979538,15.749176],[80.975086,15.747165],[80.974763,15.74646],[80.974334,15.745534],[80.969397,15.741915],[80.96469,15.740083],[80.964193,15.73872],[80.963016,15.738438],[80.961003,15.736982],[80.960135,15.735808],[80.948668,15.729759],[80.945496,15.728158],[80.94414,15.728228],[80.939905,15.728947],[80.937913,15.729297],[80.936856,15.729699],[80.936353,15.730142],[80.936051,15.731483],[80.933006,15.733941],[80.932717,15.734826],[80.930916,15.736217],[80.930356,15.737781],[80.92865,15.739284],[80.928146,15.739727],[80.925948,15.741436],[80.924475,15.742931],[80.923797,15.744075],[80.922938,15.745602],[80.920298,15.747043],[80.909834,15.754693],[80.908325,15.757347],[80.907595,15.757769],[80.905686,15.759726],[80.904988,15.759922],[80.904494,15.760338],[80.902924,15.762314],[80.899831,15.765968],[80.896393,15.771509],[80.894926,15.772365],[80.889591,15.78416],[80.888944,15.78472],[80.887299,15.788997],[80.886323,15.789618],[80.883859,15.792246],[80.882836,15.794008],[80.882108,15.794442],[80.879065,15.800077],[80.876951,15.803683],[80.875466,15.805433],[80.874342,15.806966],[80.872971,15.811875],[80.871534,15.820441],[80.870375,15.822641],[80.869217,15.822586],[80.868484,15.823247],[80.862924,15.822053],[80.861946,15.820651],[80.861045,15.820168],[80.859877,15.817604],[80.860865,15.812218],[80.863049,15.810273],[80.865167,15.806065],[80.866875,15.804791],[80.867576,15.804586],[80.868577,15.803051],[80.869557,15.801964],[80.870295,15.801569],[80.871232,15.800042],[80.872064,15.798588],[80.874331,15.795632],[80.874612,15.794722],[80.875321,15.794316],[80.876052,15.793919],[80.883865,15.777818],[80.888966,15.765932],[80.891552,15.76087],[80.894508,15.757834],[80.896038,15.754799],[80.896789,15.754001],[80.897086,15.75342],[80.897785,15.753224],[80.905313,15.747476],[80.907075,15.745054],[80.911224,15.741034],[80.912739,15.738919],[80.91363,15.73721],[80.914685,15.736106],[80.915524,15.734561],[80.916762,15.730819],[80.916298,15.728719],[80.915019,15.727258],[80.905216,15.725451],[80.890477,15.72387],[80.880616,15.722333],[80.878338,15.722317],[80.869543,15.720589],[80.861219,15.716756],[80.859907,15.715934],[80.859827,15.715238],[80.857895,15.713142],[80.855957,15.711988],[80.854948,15.710813],[80.850575,15.707675],[80.846227,15.70608],[80.838745,15.706642],[80.833254,15.708632],[80.827704,15.712236],[80.823889,15.713391],[80.812241,15.712832],[80.810696,15.712847],[80.804677,15.714888],[80.804016,15.716215],[80.803918,15.719917],[80.805729,15.723938],[80.806563,15.727548],[80.807394,15.733924],[80.806407,15.740138],[80.805564,15.742686],[80.804601,15.74307],[80.804199,15.744847],[80.804831,15.750109],[80.810348,15.750582],[80.810748,15.74899],[80.812801,15.746853],[80.813541,15.746456],[80.815625,15.742012],[80.817051,15.74142],[80.818464,15.741688],[80.819341,15.742653],[80.819732,15.744263],[80.819035,15.746281],[80.818114,15.750226],[80.817661,15.751627],[80.814809,15.757617],[80.812307,15.770208],[80.812367,15.773182],[80.813672,15.780229],[80.814214,15.780718],[80.813885,15.787131],[80.812896,15.794706],[80.813118,15.797244],[80.814603,15.805223],[80.815886,15.809358],[80.814152,15.820406],[80.807741,15.835502],[80.806072,15.836547],[80.804749,15.839229],[80.799381,15.843876],[80.798584,15.845494],[80.796875,15.846776],[80.792642,15.851769],[80.792362,15.852663],[80.788955,15.855234],[80.787161,15.858532],[80.785697,15.859827],[80.782896,15.862149],[80.781669,15.863223],[80.777133,15.866435],[80.761952,15.876566],[80.755873,15.880165],[80.743959,15.884545],[80.737582,15.885612],[80.730542,15.88619],[80.72565,15.885726],[80.706748,15.885041],[80.705345,15.884571],[80.702177,15.883429],[80.69139,15.883369],[80.684486,15.881435],[80.672858,15.880198],[80.67214,15.880402],[80.669611,15.879585],[80.66871,15.879074],[80.661677,15.879658],[80.654893,15.87902],[80.640696,15.878396],[80.63207,15.876061],[80.621657,15.872603],[80.617037,15.870652],[80.6096,15.869357],[80.605487,15.867595],[80.603576,15.868187],[80.594976,15.869016],[80.594409,15.869075],[80.582831,15.866936],[80.579102,15.866527],[80.56326,15.860976],[80.559243,15.859257],[80.545839,15.853355],[80.540843,15.851416],[80.536855,15.850436],[80.5342,15.850108],[80.532859,15.852039],[80.53419,15.853659],[80.537177,15.855596],[80.540501,15.857856],[80.541829,15.858828],[80.543831,15.859478],[80.54516,15.86044],[80.547158,15.861418],[80.54948,15.862071],[80.551143,15.862709],[80.553801,15.863684],[80.555793,15.865301],[80.553797,15.86498],[80.552797,15.864979],[80.551138,15.864972],[80.546813,15.86367],[80.543152,15.863021],[80.542105,15.862948],[80.531986,15.860327],[80.525552,15.860763],[80.523758,15.860836],[80.512434,15.85802],[80.505669,15.857612],[80.501899,15.857456],[80.498235,15.857117],[80.496573,15.856471],[80.496244,15.855509],[80.495912,15.854857],[80.497578,15.854217],[80.501238,15.85326],[80.504904,15.852622],[80.505903,15.852623],[80.50592,15.852742],[80.5099,15.853559],[80.517403,15.853033],[80.520001,15.852494],[80.521202,15.851356],[80.522074,15.848361],[80.521233,15.845943],[80.516353,15.842087],[80.506716,15.837881],[80.499506,15.83413],[80.490532,15.828735],[80.488258,15.827306],[80.486241,15.82629],[80.481774,15.82461],[80.470128,15.81894],[80.459774,15.815708],[80.454771,15.812972],[80.447962,15.809222],[80.439172,15.80629],[80.433452,15.804375],[80.431174,15.803364],[80.422123,15.798622],[80.419597,15.797829],[80.416891,15.796101],[80.40986,15.79211],[80.392533,15.78355],[80.372574,15.771375],[80.3698,15.770039],[80.367586,15.768407],[80.359708,15.763775],[80.351049,15.755819],[80.349875,15.755559],[80.345167,15.752167],[80.342107,15.748144],[80.337652,15.744069],[80.33663,15.743555],[80.336003,15.74332],[80.335804,15.742551],[80.332233,15.737877],[80.330622,15.735768],[80.325762,15.730245],[80.321333,15.724929],[80.320506,15.723898],[80.31717,15.721013],[80.310844,15.716843],[80.30549,15.710933],[80.304797,15.710668],[80.304377,15.709514],[80.303615,15.708693],[80.297576,15.702811],[80.294993,15.698328],[80.29421,15.697826],[80.292605,15.695069],[80.28756,15.689591],[80.279557,15.683976],[80.277453,15.682073],[80.273338,15.676176],[80.271967,15.671332],[80.270958,15.670618],[80.270651,15.669683],[80.267913,15.666386],[80.266696,15.665193],[80.26573,15.661067],[80.265129,15.660322],[80.262998,15.657587],[80.261532,15.655745],[80.259766,15.650304],[80.256455,15.647072],[80.255164,15.645095],[80.253084,15.64048],[80.252392,15.640208],[80.25169,15.639944],[80.251173,15.639017],[80.247714,15.632024],[80.244424,15.621373],[80.24333,15.620012],[80.24143,15.617041],[80.239575,15.614146],[80.236667,15.600847],[80.234519,15.590998],[80.233702,15.584156],[80.231436,15.578309],[80.231011,15.576168],[80.230264,15.575],[80.228442,15.56894],[80.226729,15.560209],[80.224589,15.554665],[80.223483,15.547127],[80.222994,15.545744],[80.222315,15.545013],[80.218677,15.543491],[80.20677,15.547396],[80.205749,15.549171],[80.205713,15.549853],[80.202055,15.552526],[80.200725,15.553421],[80.20043,15.554468],[80.199706,15.555105],[80.198484,15.555729],[80.19617,15.557753],[80.19567,15.558631],[80.183811,15.565973],[80.18189,15.566768],[80.181383,15.56741],[80.180522,15.570564],[80.176907,15.572872],[80.175488,15.573256],[80.17109,15.572115],[80.169305,15.57045],[80.168904,15.569516],[80.169232,15.566191],[80.169117,15.561346],[80.168569,15.560884],[80.168283,15.559712],[80.167581,15.559448],[80.16433,15.559051],[80.156846,15.559358],[80.153779,15.559892],[80.145915,15.559164],[80.137957,15.558853],[80.135656,15.558504],[80.134669,15.557095],[80.135982,15.552625],[80.137202,15.551555],[80.137239,15.550889],[80.140317,15.550127],[80.146482,15.55067],[80.151882,15.552099],[80.159068,15.552882],[80.165925,15.551664],[80.169849,15.552334],[80.171438,15.553103],[80.171867,15.553536],[80.178523,15.560242],[80.182175,15.561574],[80.182873,15.561382],[80.18555,15.5597],[80.187168,15.556164],[80.190338,15.553376],[80.190856,15.552051],[80.190892,15.551385],[80.194013,15.549372],[80.20009,15.545953],[80.200927,15.545325],[80.202515,15.544023],[80.203405,15.542939],[80.207376,15.540653],[80.210565,15.537846],[80.210602,15.537165],[80.210888,15.536273],[80.211846,15.535638],[80.212791,15.535249],[80.213199,15.534341],[80.213493,15.531207],[80.212979,15.528803],[80.213102,15.52655],[80.21194,15.519095],[80.21091,15.517204],[80.210342,15.516712],[80.20654,15.509078],[80.205749,15.508365],[80.204509,15.507503],[80.20214,15.505348],[80.200909,15.504485],[80.197055,15.500733],[80.195336,15.499154],[80.186933,15.495848],[80.185248,15.494605],[80.184709,15.494116],[80.183846,15.49248],[80.183964,15.490695],[80.18448,15.490053],[80.18683,15.489481],[80.187639,15.489473],[80.194284,15.489856],[80.196274,15.490765],[80.197529,15.492031],[80.200908,15.495421],[80.204177,15.499846],[80.208592,15.502436],[80.210746,15.502445],[80.210258,15.498763],[80.210147,15.495086],[80.205479,15.491017],[80.202363,15.484695],[80.202001,15.483068],[80.201803,15.47596],[80.198866,15.467608],[80.198327,15.465668],[80.197565,15.464965],[80.197269,15.463821],[80.196694,15.462548],[80.190392,15.455594],[80.189252,15.454285],[80.187944,15.453001],[80.184664,15.450142],[80.184219,15.44968],[80.178812,15.441916],[80.176519,15.439079],[80.175277,15.436275],[80.172612,15.433878],[80.171837,15.43066],[80.171046,15.429929],[80.170201,15.428524],[80.169713,15.427141],[80.168908,15.426182],[80.166997,15.424188],[80.165922,15.423081],[80.161677,15.417885],[80.160954,15.416488],[80.158604,15.414344],[80.157464,15.413846],[80.157081,15.412237],[80.156605,15.410617],[80.154612,15.408468],[80.153613,15.405911],[80.150483,15.403255],[80.149602,15.401619],[80.14753,15.399169],[80.146886,15.398924],[80.146687,15.398183],[80.142662,15.392879],[80.134653,15.385445],[80.130492,15.380487],[80.126089,15.371851],[80.125292,15.371139],[80.124805,15.369728],[80.122086,15.365747],[80.121152,15.36464],[80.120161,15.362303],[80.119191,15.359701],[80.116161,15.356597],[80.11494,15.353838],[80.111888,15.350315],[80.111373,15.348932],[80.10905,15.34625],[80.106575,15.340456],[80.102707,15.334151],[80.099928,15.325929],[80.099615,15.324849],[80.098404,15.320085],[80.09754,15.316016],[80.097222,15.315255],[80.095043,15.308509],[80.094451,15.304517],[80.091781,15.293235],[80.091087,15.291146],[80.08629,15.282279],[80.083881,15.277853],[80.080523,15.267035],[80.079632,15.257455],[80.080896,15.243007],[80.08172,15.239218],[80.082375,15.233337],[80.084515,15.228007],[80.087292,15.215895],[80.087395,15.211915],[80.087359,15.210466],[80.085063,15.199653],[80.083762,15.195298],[80.081595,15.192472],[80.080701,15.191985],[80.079965,15.192387],[80.078822,15.192098],[80.071297,15.193321],[80.067458,15.195382],[80.067409,15.196302],[80.066185,15.197134],[80.06396,15.199281],[80.062968,15.200355],[80.062152,15.202366],[80.059586,15.203844],[80.059118,15.204602],[80.05153,15.209533],[80.051478,15.210424],[80.048553,15.212764],[80.047582,15.213152],[80.043296,15.213531],[80.034769,15.213178],[80.03189,15.211719],[80.030215,15.210776],[80.030257,15.209117],[80.031842,15.207846],[80.03207,15.207146],[80.040119,15.205459],[80.041503,15.205761],[80.043103,15.205456],[80.043765,15.205118],[80.050297,15.201751],[80.050569,15.201072],[80.053494,15.198741],[80.057922,15.191484],[80.059937,15.189715],[80.060385,15.1893],[80.061081,15.189111],[80.0623,15.187167],[80.062813,15.186062],[80.072305,15.183144],[80.073656,15.181859],[80.073418,15.180025],[80.072423,15.178819],[80.070543,15.173079],[80.067884,15.169326],[80.066149,15.165849],[80.064999,15.163665],[80.06211,15.150277],[80.061527,15.147045],[80.060562,15.145638],[80.059205,15.141436],[80.059142,15.136671],[80.058387,15.135731],[80.056308,15.128824],[80.055774,15.128106],[80.055389,15.122187],[80.053506,15.12076],[80.052296,15.114793],[80.051041,15.112682],[80.051138,15.10451],[80.050146,15.103121],[80.048796,15.089892],[80.048454,15.084859],[80.047504,15.083242],[80.047206,15.080505],[80.046749,15.07373],[80.046005,15.05755],[80.045667,15.049601],[80.048074,15.02227],[80.048831,15.01838],[80.051004,15.007234],[80.053461,14.999945],[80.054283,14.99879],[80.055776,14.996613],[80.0565,14.996414],[80.056551,14.995522],[80.057998,14.994467],[80.059223,14.99338],[80.061149,14.9897],[80.063193,14.987022],[80.064505,14.982413],[80.065695,14.977146],[80.066328,14.974651],[80.067446,14.962515],[80.073932,14.924981],[80.078399,14.907008],[80.083487,14.886696],[80.084994,14.878139],[80.085789,14.876154],[80.085875,14.8754],[80.088402,14.856569],[80.093155,14.833221],[80.093339,14.82807],[80.093291,14.826869],[80.091739,14.825456],[80.090099,14.825599],[80.0882,14.826173],[80.08739,14.825898],[80.085677,14.825139],[80.085874,14.822483],[80.088805,14.814291],[80.075243,14.817161],[80.074551,14.813721],[80.076815,14.809043],[80.082834,14.805046],[80.0866,14.804083],[80.087595,14.803004],[80.089803,14.801095],[80.090754,14.80068],[80.09516,14.787984],[80.095876,14.779618],[80.102245,14.763498],[80.10298,14.761186],[80.107134,14.750281],[80.107425,14.749521],[80.108394,14.746483],[80.11093,14.740255],[80.111892,14.7383],[80.112565,14.737735],[80.114039,14.733231],[80.116305,14.730995],[80.117232,14.730077],[80.117952,14.729442],[80.118495,14.728111],[80.120173,14.726476],[80.121126,14.725833],[80.121177,14.724914],[80.124166,14.721767],[80.12464,14.721264],[80.125926,14.718823],[80.126222,14.717681],[80.130146,14.713835],[80.132266,14.709176],[80.13369,14.704242],[80.133726,14.695423],[80.130163,14.692758],[80.129483,14.692574],[80.122025,14.690258],[80.1204,14.690173],[80.120945,14.684537],[80.121373,14.683197],[80.124478,14.68179],[80.12796,14.681517],[80.129106,14.681804],[80.133164,14.684494],[80.136407,14.688741],[80.137823,14.692683],[80.13917,14.693855],[80.141232,14.694201],[80.142896,14.693613],[80.144608,14.692114],[80.145369,14.691233],[80.145688,14.690491],[80.14971,14.681296],[80.152983,14.673646],[80.15412,14.671058],[80.159749,14.636213],[80.164292,14.620783],[80.166445,14.616397],[80.167115,14.61586],[80.171592,14.605972],[80.174782,14.602981],[80.175515,14.601218],[80.176578,14.599893],[80.177547,14.599487],[80.18192,14.595837],[80.183878,14.58983],[80.183136,14.588683],[80.181835,14.584745],[80.180296,14.58308],[80.172358,14.579378],[80.170979,14.579077],[80.16716,14.576718],[80.166963,14.576043],[80.164914,14.575015],[80.16319,14.574585],[80.160567,14.573869],[80.150258,14.569334],[80.147165,14.567975],[80.139519,14.563527],[80.138638,14.562334],[80.137125,14.560204],[80.136702,14.559743],[80.134781,14.558171],[80.127587,14.554022],[80.125919,14.553062],[80.12371,14.550687],[80.122589,14.55009],[80.118064,14.547683],[80.10734,14.544414],[80.102217,14.541218],[80.094699,14.537171],[80.093479,14.536208],[80.093467,14.535707],[80.093459,14.534388],[80.102945,14.531858],[80.108155,14.530633],[80.110494,14.530219],[80.115572,14.529858],[80.115743,14.531025],[80.116476,14.531315],[80.122054,14.536527],[80.123507,14.537502],[80.128184,14.543158],[80.129222,14.544499],[80.130372,14.545805],[80.135987,14.54978],[80.139937,14.551962],[80.14288,14.55472],[80.143214,14.555543],[80.145034,14.556321],[80.146879,14.556654],[80.153112,14.559253],[80.155051,14.560197],[80.162066,14.562368],[80.170621,14.5667],[80.176991,14.566715],[80.184349,14.566263],[80.188507,14.566996],[80.192676,14.566059],[80.194646,14.563918],[80.194414,14.561767],[80.193433,14.559617],[80.193928,14.558186],[80.190772,14.550294],[80.188392,14.533097],[80.186986,14.513749],[80.18175,14.4798],[80.179316,14.45693],[80.179121,14.44144],[80.177144,14.419542],[80.174124,14.38351],[80.172893,14.374264],[80.173573,14.360407],[80.173283,14.352093],[80.172991,14.346551],[80.16891,14.340072],[80.165785,14.33175],[80.162653,14.322489],[80.158549,14.315046],[80.151485,14.299399],[80.148409,14.288978],[80.146653,14.283755],[80.145788,14.277254],[80.144055,14.266823],[80.144558,14.262039],[80.144976,14.258153],[80.145876,14.254255],[80.144112,14.251643],[80.141006,14.24902],[80.137451,14.247276],[80.132557,14.248121],[80.126787,14.246801],[80.124119,14.244193],[80.123687,14.242453],[80.125467,14.240293],[80.127693,14.241159],[80.131253,14.241178],[80.136153,14.239897],[80.137485,14.237296],[80.135752,14.225566],[80.132694,14.211236],[80.130978,14.195609],[80.128802,14.184321],[80.128874,14.149051],[80.129576,14.141127],[80.130281,14.135847],[80.133031,14.12396],[80.137154,14.104158],[80.139235,14.092284],[80.140633,14.08039],[80.145468,14.055975],[80.148884,14.044082],[80.152328,14.030235],[80.153692,14.024284],[80.15285,14.022593],[80.151993,14.021828],[80.14854,14.022075],[80.145602,14.022564],[80.144223,14.022054],[80.143367,14.020536],[80.144069,14.017501],[80.147098,14.013717],[80.14858,14.012201],[80.150824,14.00993],[80.153079,14.006908],[80.156127,14.001605],[80.158968,13.992993],[80.164345,13.993008],[80.165008,13.996958],[80.16567,13.998928],[80.167701,13.995322],[80.169395,13.992373],[80.174144,13.981552],[80.179906,13.96581],[80.18466,13.953028],[80.187031,13.947454],[80.188382,13.942857],[80.188418,13.943683],[80.190484,13.938007],[80.193863,13.929175],[80.194457,13.92863],[80.198664,13.916866],[80.200125,13.913325],[80.205053,13.903132],[80.205725,13.901581],[80.205932,13.900003],[80.206786,13.899377],[80.215499,13.876229],[80.216351,13.874287],[80.219857,13.867785],[80.221747,13.864593],[80.22368,13.860241],[80.224339,13.859704],[80.225954,13.855448],[80.230643,13.844973],[80.232886,13.840414],[80.236156,13.831711],[80.237114,13.830861],[80.238255,13.828868],[80.238669,13.827756],[80.239201,13.8262],[80.240111,13.818087],[80.23998,13.816033],[80.238779,13.814837],[80.238502,13.814572],[80.237549,13.813652],[80.237892,13.809362],[80.238549,13.808036],[80.244226,13.805834],[80.244968,13.805181],[80.247136,13.799733],[80.247659,13.797479],[80.249466,13.788387],[80.249037,13.787691],[80.248492,13.786768],[80.248803,13.776232],[80.248163,13.758615],[80.247139,13.753565],[80.246364,13.750996],[80.245827,13.745133],[80.243694,13.729597],[80.24155,13.722272],[80.239778,13.71626],[80.239696,13.71331],[80.236215,13.691468],[80.235521,13.683372],[80.236757,13.655792],[80.238593,13.647057],[80.239198,13.644114],[80.240691,13.63465],[80.241794,13.63109],[80.244397,13.621248],[80.244398,13.618971],[80.253491,13.596299],[80.256021,13.589833],[80.256289,13.589256],[80.25996,13.581216],[80.260734,13.580881],[80.261162,13.579318],[80.26213,13.577522],[80.262335,13.576774],[80.264396,13.573005],[80.26529,13.572618],[80.266588,13.569756],[80.269693,13.563153],[80.264877,13.56042],[80.264418,13.557883],[80.262643,13.549498],[80.26195,13.546213],[80.253422,13.505809],[80.248429,13.489558],[80.247761,13.487362],[80.24227,13.469492],[80.242173,13.469175],[80.241807,13.467972],[80.235093,13.473503],[80.234587,13.473915],[80.234182,13.474346],[80.225456,13.483463],[80.218884,13.484133],[80.215179,13.485522],[80.215624,13.487478],[80.211345,13.487377],[80.210856,13.484387],[80.20303,13.486702],[80.179684,13.487933],[80.169098,13.4916],[80.16477,13.49217],[80.147733,13.494429],[80.146922,13.503606],[80.132481,13.505533],[80.126247,13.507258],[80.121148,13.506711],[80.113277,13.508094],[80.113199,13.500285],[80.113167,13.49719],[80.110764,13.491943],[80.104039,13.490222],[80.080466,13.491108],[80.078787,13.509071],[80.078757,13.516681],[80.080002,13.525651],[80.082863,13.532048],[80.089551,13.537044],[80.088354,13.539823],[80.085269,13.546957],[80.081945,13.550623],[80.079679,13.548951],[80.078109,13.547789],[80.072019,13.545574],[80.063471,13.54351],[80.057926,13.534988],[80.046599,13.534781],[80.042003,13.53656],[80.03003,13.538076],[80.02695,13.541426],[80.020161,13.54528],[80.006581,13.542487],[80.002125,13.539641],[80.001736,13.531888],[80.002195,13.5259],[80.002644,13.522993],[80.012884,13.525285],[80.018713,13.527996],[80.020907,13.52125],[80.026122,13.516877],[80.031605,13.514638],[80.038146,13.516961],[80.045269,13.514852],[80.04952,13.51237],[80.049724,13.505851],[80.0486,13.497519],[80.037362,13.499715],[80.031388,13.499378],[80.01841,13.500743],[80.018181,13.499268],[80.01815,13.499283],[80.013951,13.496544],[80.003103,13.492093],[79.991207,13.48456],[79.985959,13.480451],[79.98491,13.476342],[79.983162,13.47189],[79.98201,13.469723],[79.98079,13.469373],[79.974397,13.464214],[79.974723,13.457088],[79.97562,13.45352],[79.973593,13.440623],[79.975821,13.430896],[79.971069,13.425833],[79.963449,13.421091],[79.95685,13.423735],[79.948513,13.422501],[79.945051,13.417311],[79.948173,13.403562],[79.948231,13.397822],[79.962919,13.394975],[79.966229,13.387134],[79.960691,13.380246],[79.952383,13.382105],[79.953291,13.374002],[79.952665,13.371137],[79.941418,13.356553],[79.938199,13.348961],[79.929815,13.354036],[79.923332,13.356683],[79.918949,13.352023],[79.916536,13.346247],[79.910036,13.342462],[79.904471,13.337586],[79.898745,13.334249],[79.892814,13.33339],[79.887621,13.33034],[79.883217,13.324701],[79.877862,13.323661],[79.871512,13.326649],[79.86834,13.321055],[79.863829,13.316337],[79.851697,13.316228],[79.849415,13.315877],[79.843235,13.314932],[79.836668,13.315169],[79.821102,13.3179],[79.812893,13.317121],[79.807606,13.311367],[79.804892,13.304445],[79.799886,13.297432],[79.792418,13.294863],[79.786817,13.297902],[79.780951,13.302383],[79.766613,13.315494],[79.763102,13.311507],[79.762315,13.303588],[79.758734,13.292719],[79.754069,13.289373],[79.74221,13.287764],[79.733851,13.284914],[79.734366,13.278421],[79.752015,13.267169],[79.758214,13.260966],[79.765438,13.256538],[79.788077,13.246962],[79.795982,13.24103],[79.797629,13.236359],[79.795988,13.230806],[79.79006,13.230063],[79.786308,13.230386],[79.779881,13.226199],[79.776077,13.221698],[79.770412,13.21842],[79.764542,13.217614],[79.757107,13.207747],[79.750985,13.211078],[79.750192,13.218323],[79.746368,13.223013],[79.745189,13.227734],[79.739184,13.230141],[79.735475,13.234597],[79.731206,13.235328],[79.728362,13.227144],[79.724096,13.223223],[79.718345,13.221955],[79.712293,13.215405],[79.705079,13.220238],[79.701382,13.220099],[79.702067,13.223943],[79.708363,13.236462],[79.708638,13.246562],[79.704527,13.251192],[79.697147,13.246495],[79.693279,13.241023],[79.685905,13.242119],[79.683689,13.248456],[79.686332,13.259629],[79.696868,13.269297],[79.694149,13.278164],[79.691846,13.281916],[79.68102,13.294478],[79.678407,13.285834],[79.675069,13.280694],[79.669906,13.281027],[79.665871,13.287099],[79.661105,13.285878],[79.656238,13.285864],[79.650942,13.288668],[79.644989,13.286025],[79.643175,13.280646],[79.642042,13.273358],[79.636773,13.274503],[79.633226,13.271428],[79.627674,13.272923],[79.623208,13.277035],[79.617543,13.279789],[79.613566,13.280166],[79.607298,13.275459],[79.601117,13.272818],[79.598877,13.26589],[79.597868,13.25952],[79.592697,13.257784],[79.58339,13.259767],[79.577783,13.261767],[79.567165,13.271512],[79.561093,13.279431],[79.558693,13.286344],[79.553765,13.291209],[79.55153,13.302023],[79.551174,13.313168],[79.548059,13.323295],[79.534974,13.328121],[79.521766,13.326861],[79.510044,13.326957],[79.499438,13.328659],[79.491461,13.333553],[79.4668,13.336349],[79.44099,13.335537],[79.429429,13.333917],[79.413481,13.327675],[79.386678,13.314925],[79.397732,13.306621],[79.411109,13.301115],[79.417576,13.297387],[79.433945,13.298678],[79.437227,13.293368],[79.430541,13.286596],[79.430191,13.281086],[79.431223,13.278378],[79.424511,13.269537],[79.420889,13.258776],[79.41957,13.249705],[79.421939,13.240213],[79.420915,13.231665],[79.423125,13.224245],[79.429276,13.224302],[79.430455,13.23055],[79.439175,13.234846],[79.448388,13.241943],[79.454767,13.241313],[79.457743,13.23388],[79.457816,13.228941],[79.433935,13.22065],[79.435464,13.215928],[79.435482,13.211044],[79.433896,13.205315],[79.43613,13.199608],[79.432928,13.196597],[79.425614,13.197981],[79.410213,13.19851],[79.404857,13.196547],[79.396657,13.196789],[79.390651,13.194487],[79.381278,13.188308],[79.383079,13.180646],[79.379472,13.177635],[79.377251,13.17243],[79.373514,13.168091],[79.367003,13.173375],[79.360044,13.175041],[79.359376,13.165977],[79.360151,13.15586],[79.359177,13.152189],[79.359074,13.146913],[79.36693,13.141847],[79.362434,13.137524],[79.356675,13.135616],[79.350108,13.135213],[79.347631,13.139544],[79.342999,13.133262],[79.329038,13.131372],[79.324707,13.125774],[79.322058,13.118901],[79.322351,13.111957],[79.320265,13.108928],[79.309782,13.109358],[79.311061,13.126805],[79.300371,13.130221],[79.297193,13.13479],[79.289775,13.131635],[79.28609,13.132805],[79.284923,13.138564],[79.283507,13.149945],[79.279608,13.153071],[79.273393,13.15261],[79.268667,13.148396],[79.264838,13.153135],[79.263531,13.15803],[79.259388,13.1599],[79.2564,13.152974],[79.25551,13.145173],[79.248892,13.138568],[79.24521,13.139511],[79.238527,13.146398],[79.230444,13.14732],[79.226802,13.139429],[79.230434,13.132224],[79.234618,13.127827],[79.23046,13.122114],[79.230468,13.115743],[79.226477,13.108653],[79.219636,13.103249],[79.2144,13.102086],[79.205492,13.101468],[79.201101,13.096392],[79.199202,13.088826],[79.1957,13.084717],[79.192872,13.078818],[79.191303,13.071884],[79.181633,13.064783],[79.18695,13.061462],[79.184492,13.055508],[79.188781,13.050076],[79.189221,13.045192],[79.18888,13.041581],[79.186661,13.037062],[79.185378,13.031094],[79.182856,13.027493],[79.173474,13.023604],[79.164976,13.019081],[79.153874,13.021579],[79.143375,13.02849],[79.131448,13.034267],[79.11654,13.035881],[79.094936,13.024095],[79.08118,13.025744],[79.072679,13.032412],[79.066055,13.039705],[79.065321,13.049527],[79.055921,13.055224],[79.045548,13.057139],[79.037878,13.061039],[79.034811,13.067844],[79.023388,13.069247],[79.012297,13.069271],[79.007176,13.074419],[79.000137,13.084002],[78.993608,13.087536],[78.991448,13.087834],[78.98354,13.086428],[78.9765,13.084105],[78.97479,13.082856],[78.971033,13.076733],[78.966932,13.076221],[78.96185,13.077365],[78.957674,13.074775],[78.948438,13.081212],[78.941889,13.077248],[78.926157,13.078959],[78.923827,13.074481],[78.922637,13.067298],[78.920471,13.06167],[78.912699,13.063278],[78.905253,13.046278],[78.910199,13.042896],[78.916218,13.042265],[78.929232,13.043793],[78.932295,13.039874],[78.93933,13.034741],[78.940528,13.03273],[78.936517,13.029918],[78.934858,13.033026],[78.927779,13.034313],[78.901926,13.031032],[78.893733,13.030956],[78.891156,13.036669],[78.892656,13.055436],[78.892114,13.080719],[78.895219,13.0931],[78.887712,13.09725],[78.881982,13.097996],[78.876393,13.095753],[78.872353,13.090565],[78.870037,13.082143],[78.855572,13.082516],[78.843905,13.080611],[78.825009,13.085623],[78.819665,13.088883],[78.812436,13.086484],[78.805749,13.080693],[78.798161,13.073066],[78.794636,13.067298],[78.789092,13.064077],[78.765993,13.057859],[78.757548,13.056274],[78.751038,13.056335],[78.74366,13.061223],[78.736951,13.06359],[78.713869,13.066906],[78.7127,13.05503],[78.707468,13.02331],[78.705251,13.01518],[78.690821,13.01973],[78.680055,13.021793],[78.6625,13.028614],[78.66035,13.027034],[78.656456,13.018002],[78.653113,13.012299],[78.648737,13.007524],[78.639775,13.000393],[78.631903,12.99318],[78.625048,12.98954],[78.631661,12.984568],[78.649396,12.965138],[78.64046,12.963825],[78.647172,12.949084],[78.658276,12.929807],[78.649027,12.926658],[78.642286,12.926744],[78.637223,12.929923],[78.636283,12.924928],[78.631185,12.91282],[78.627071,12.903974],[78.623779,12.899307],[78.617534,12.884455],[78.616199,12.876772],[78.61602,12.868211],[78.60315,12.849309],[78.605418,12.843768],[78.607287,12.826275],[78.60933,12.82188],[78.599864,12.815572],[78.602283,12.808704],[78.601448,12.803261],[78.594198,12.796119],[78.594597,12.78703],[78.593642,12.781586],[78.591774,12.778048],[78.577426,12.769796],[78.578555,12.762943],[78.573288,12.763359],[78.569815,12.762426],[78.565759,12.756843],[78.562605,12.757583],[78.55831,12.756375],[78.557226,12.754668],[78.56202,12.74954],[78.557367,12.739383],[78.562609,12.737011],[78.565655,12.736858],[78.563988,12.731189],[78.559993,12.725778],[78.557249,12.718175],[78.561086,12.711516],[78.564024,12.707911],[78.563751,12.705162],[78.55978,12.70619],[78.556871,12.703415],[78.55952,12.699931],[78.559469,12.696427],[78.556465,12.695259],[78.553133,12.695823],[78.543038,12.690729],[78.539514,12.689793],[78.536132,12.690473],[78.531894,12.697771],[78.530265,12.703136],[78.53256,12.707932],[78.537332,12.705515],[78.539185,12.708074],[78.538127,12.711994],[78.527663,12.714258],[78.527886,12.717133],[78.523982,12.718731],[78.522587,12.732426],[78.521031,12.730497],[78.51907,12.723797],[78.51521,12.724073],[78.514804,12.728797],[78.513438,12.732203],[78.508734,12.734796],[78.505938,12.741036],[78.500459,12.742605],[78.495926,12.745417],[78.491232,12.740651],[78.496,12.733698],[78.503068,12.727743],[78.505272,12.721851],[78.520715,12.715618],[78.522194,12.712496],[78.521504,12.709513],[78.516278,12.708723],[78.515577,12.704018],[78.509556,12.709212],[78.506574,12.714425],[78.505051,12.714153],[78.505791,12.708633],[78.50468,12.704396],[78.499213,12.703314],[78.497959,12.701202],[78.501245,12.697308],[78.505277,12.696456],[78.505093,12.691745],[78.509109,12.689971],[78.508837,12.687213],[78.505767,12.685419],[78.505168,12.680311],[78.500276,12.674056],[78.485757,12.669873],[78.46933,12.672908],[78.471061,12.649442],[78.47465,12.646057],[78.473613,12.642972],[78.470796,12.642207],[78.471814,12.631158],[78.471357,12.628114],[78.46654,12.622721],[78.463136,12.626438],[78.459165,12.62718],[78.451147,12.62758],[78.43659,12.625527],[78.429992,12.631244],[78.423981,12.628906],[78.418758,12.628104],[78.411442,12.623897],[78.409159,12.624156],[78.397737,12.624411],[78.385782,12.623594],[78.379909,12.622343],[78.372104,12.625602],[78.359856,12.634096],[78.350296,12.642322],[78.340838,12.648812],[78.333791,12.647584],[78.320138,12.660345],[78.306304,12.664542],[78.301778,12.663211],[78.300187,12.666854],[78.298327,12.668435],[78.295468,12.677889],[78.278438,12.69764],[78.275627,12.702046],[78.250208,12.702534],[78.243781,12.703876],[78.238566,12.699404],[78.2378,12.690273],[78.239244,12.683993],[78.211204,12.685716],[78.206393,12.690033],[78.200909,12.691362],[78.200525,12.693605],[78.209849,12.698775],[78.210397,12.700039],[78.205771,12.70532],[78.207133,12.706742],[78.211053,12.706293],[78.214315,12.709066],[78.220883,12.709331],[78.224898,12.712441],[78.231418,12.71339],[78.238315,12.725265],[78.239957,12.730295],[78.230283,12.757079],[78.231643,12.762636],[78.236127,12.764987],[78.240499,12.772064],[78.246392,12.797621],[78.251164,12.81318],[78.252805,12.822358],[78.251974,12.857412],[78.255531,12.861101],[78.259625,12.859849],[78.264716,12.85961],[78.269021,12.865652],[78.273544,12.866621],[78.281496,12.860606],[78.286636,12.859228],[78.314106,12.857329],[78.317208,12.866598],[78.315052,12.87587],[78.322021,12.875497],[78.3326,12.873004],[78.333723,12.877996],[78.338489,12.884193],[78.333715,12.886326],[78.332422,12.881801],[78.327156,12.882328],[78.321897,12.883941],[78.320931,12.886596],[78.324259,12.889887],[78.323372,12.893405],[78.32444,12.89873],[78.327417,12.902719],[78.333129,12.899714],[78.338159,12.899362],[78.349297,12.916634],[78.348681,12.923247],[78.349238,12.925879],[78.354956,12.928224],[78.351374,12.93212],[78.351711,12.935044],[78.356383,12.938196],[78.371996,12.9218],[78.379722,12.911989],[78.38942,12.905433],[78.394464,12.905659],[78.396178,12.906497],[78.399474,12.915764],[78.410654,12.90648],[78.414058,12.901612],[78.422662,12.901212],[78.428509,12.899354],[78.435836,12.903748],[78.436073,12.908508],[78.437588,12.912395],[78.447014,12.911017],[78.446911,12.899233],[78.449515,12.896615],[78.44972,12.89012],[78.457684,12.885136],[78.463948,12.875919],[78.463404,12.866162],[78.465536,12.863607],[78.468235,12.876495],[78.469593,12.890147],[78.467367,12.90316],[78.460271,12.907052],[78.454089,12.914479],[78.452415,12.915994],[78.445645,12.918616],[78.437091,12.927451],[78.433573,12.927727],[78.4281,12.930497],[78.425723,12.927831],[78.425149,12.924339],[78.42118,12.916804],[78.418737,12.918384],[78.41836,12.92551],[78.414085,12.934704],[78.412143,12.943006],[78.414347,12.945616],[78.421655,12.947989],[78.422458,12.950853],[78.419681,12.954279],[78.420189,12.957146],[78.424389,12.955139],[78.427486,12.954636],[78.430862,12.956948],[78.43164,12.957919],[78.438419,12.960813],[78.434892,12.964657],[78.433883,12.968001],[78.432958,12.973005],[78.433676,12.978856],[78.436685,12.980028],[78.444645,12.979057],[78.469031,12.973571],[78.468711,12.980991],[78.470485,12.986078],[78.472524,12.989444],[78.466478,13.000392],[78.463341,13.014031],[78.463659,13.018857],[78.461365,13.025134],[78.460899,13.036056],[78.462556,13.041778],[78.466002,13.04284],[78.472053,13.042273],[78.475711,13.045171],[78.478051,13.051643],[78.48208,13.054133],[78.48839,13.053509],[78.492103,13.054687],[78.498945,13.060028],[78.515633,13.063098],[78.515835,13.069696],[78.509576,13.080092],[78.510578,13.086115],[78.512918,13.091952],[78.517798,13.094498],[78.524821,13.095003],[78.525816,13.101434],[78.53898,13.107697],[78.533384,13.109981],[78.527198,13.111128],[78.522104,13.116622],[78.519654,13.123541],[78.519709,13.129858],[78.523871,13.130513],[78.532379,13.139336],[78.54643,13.14105],[78.547661,13.147242],[78.543675,13.152386],[78.544648,13.156405],[78.549729,13.161866],[78.557821,13.163755],[78.569048,13.162671],[78.572238,13.166037],[78.576344,13.167152],[78.580071,13.166833],[78.57665,13.182076],[78.574298,13.18772],[78.570345,13.19011],[78.564423,13.190168],[78.557803,13.188904],[78.553362,13.190438],[78.551852,13.197509],[78.564171,13.199526],[78.569288,13.202466],[78.571045,13.208482],[78.576805,13.211192],[78.579592,13.21455],[78.57524,13.218327],[78.568074,13.222288],[78.569745,13.237376],[78.570744,13.243628],[78.574071,13.248657],[78.579387,13.253778],[78.583008,13.258851],[78.588295,13.272301],[78.586939,13.277366],[78.577965,13.281984],[78.575205,13.293604],[78.572323,13.298223],[78.570848,13.30352],[78.566402,13.309588],[78.564865,13.308455],[78.563973,13.294798],[78.561374,13.286204],[78.557939,13.282847],[78.554372,13.283396],[78.546321,13.286222],[78.539468,13.285994],[78.536356,13.279421],[78.534509,13.270762],[78.531534,13.265731],[78.52622,13.267271],[78.522679,13.270061],[78.519023,13.279563],[78.514598,13.282529],[78.511831,13.287268],[78.505874,13.289264],[78.494123,13.298099],[78.483141,13.301122],[78.480764,13.303891],[78.482306,13.317892],[78.476936,13.320066],[78.471057,13.317871],[78.4647,13.31408],[78.458418,13.312755],[78.45182,13.309418],[78.446478,13.308261],[78.440771,13.317725],[78.439514,13.326978],[78.434898,13.328968],[78.431213,13.328948],[78.425681,13.326979],[78.417483,13.319929],[78.412469,13.317211],[78.401658,13.313513],[78.393269,13.323858],[78.389483,13.326647],[78.385454,13.328349],[78.377325,13.329787],[78.378223,13.338224],[78.381594,13.342153],[78.387854,13.34107],[78.385705,13.336155],[78.389319,13.334287],[78.394927,13.333321],[78.398757,13.328239],[78.401609,13.333497],[78.405585,13.332372],[78.407729,13.342121],[78.402885,13.345317],[78.395241,13.347956],[78.393993,13.352106],[78.385059,13.356142],[78.378463,13.358027],[78.374296,13.358004],[78.370775,13.356664],[78.366669,13.356406],[78.365392,13.364744],[78.370049,13.374002],[78.374676,13.380168],[78.378924,13.389491],[78.381484,13.400666],[78.381478,13.406859],[78.379652,13.418595],[78.377483,13.424637],[78.375457,13.434011],[78.377157,13.440883],[78.374285,13.447514],[78.374306,13.455207],[78.372662,13.461653],[78.373661,13.468817],[78.377362,13.476421],[78.377504,13.491521],[78.378328,13.499317],[78.377323,13.504725],[78.379601,13.509465],[78.384219,13.515061],[78.383107,13.521784],[78.39548,13.541203],[78.395993,13.553473],[78.407749,13.575709],[78.403858,13.580157],[78.400704,13.587593],[78.390239,13.590779],[78.376981,13.589739],[78.371286,13.588298],[78.353512,13.587177],[78.332629,13.592337],[78.322253,13.592825],[78.301578,13.588112],[78.290309,13.586933],[78.27507,13.587457],[78.267949,13.584532],[78.259329,13.583509],[78.246166,13.593658],[78.237277,13.596367],[78.232201,13.586241],[78.227993,13.587139],[78.224371,13.589231],[78.218062,13.590997],[78.211958,13.577097],[78.205396,13.569801],[78.199604,13.566152],[78.198557,13.565493],[78.192806,13.565477],[78.191135,13.568246],[78.18965,13.573251],[78.190557,13.582777],[78.188955,13.588008],[78.198065,13.597469],[78.203221,13.603976],[78.204856,13.610617],[78.203406,13.62521],[78.195297,13.630206],[78.17495,13.629956],[78.169926,13.63241],[78.168348,13.654116],[78.165092,13.657643],[78.155487,13.658576],[78.138354,13.657155],[78.132487,13.657769],[78.125135,13.654495],[78.116592,13.655935],[78.103103,13.649089],[78.099818,13.641829],[78.095543,13.642322],[78.089922,13.644139],[78.088828,13.653331],[78.089171,13.659177],[78.081943,13.663938],[78.074975,13.673233],[78.067432,13.675698],[78.069996,13.680497],[78.073185,13.68329],[78.074459,13.688788],[78.071692,13.694315],[78.073122,13.696895],[78.094284,13.689392],[78.109018,13.691352],[78.114546,13.693198],[78.116365,13.707138],[78.119048,13.712738],[78.11852,13.718999],[78.114625,13.723386],[78.109542,13.726755],[78.106482,13.731884],[78.102351,13.736338],[78.093955,13.742193],[78.098311,13.751746],[78.104358,13.758992],[78.110244,13.761701],[78.115553,13.765504],[78.120059,13.770467],[78.127279,13.785617],[78.124197,13.796375],[78.118006,13.807034],[78.11665,13.812264],[78.126242,13.83044],[78.122469,13.84952],[78.114945,13.862143],[78.106257,13.861345],[78.097234,13.863481],[78.083746,13.863461],[78.079719,13.880472],[78.076746,13.883025],[78.069132,13.885261],[78.06346,13.887823],[78.057045,13.892979],[78.04985,13.895154],[78.051442,13.881827],[78.051661,13.87225],[78.050086,13.866519],[78.046581,13.861319],[78.024301,13.862804],[78.019036,13.864904],[78.013445,13.870108],[78.00013,13.870775],[77.993783,13.870026],[77.990894,13.86516],[77.989872,13.857164],[77.979019,13.83501],[77.974422,13.828533],[77.953182,13.828301],[77.956729,13.833134],[77.956634,13.837681],[77.954281,13.848106],[77.950332,13.879313],[77.950964,13.888487],[77.958029,13.892728],[77.980158,13.896888],[77.986577,13.901654],[77.983195,13.913615],[77.983123,13.920527],[77.981868,13.928141],[77.982011,13.932495],[77.98643,13.945874],[77.987069,13.955894],[77.974871,13.958771],[77.969707,13.958173],[77.963738,13.950119],[77.962708,13.945257],[77.959198,13.936148],[77.957495,13.934954],[77.954451,13.936632],[77.947271,13.932813],[77.944063,13.926111],[77.938146,13.917006],[77.928233,13.906887],[77.920009,13.905418],[77.914328,13.907611],[77.908819,13.91049],[77.904038,13.915858],[77.898014,13.919466],[77.895629,13.925839],[77.89615,13.935821],[77.895284,13.939266],[77.870674,13.934848],[77.862284,13.935116],[77.854191,13.936338],[77.838274,13.935133],[77.829726,13.938513],[77.826405,13.942841],[77.822335,13.938951],[77.816601,13.930545],[77.814465,13.925506],[77.814476,13.916611],[77.815506,13.911209],[77.819225,13.902694],[77.822847,13.899112],[77.829172,13.89725],[77.83324,13.887931],[77.83549,13.879646],[77.827421,13.874063],[77.835971,13.86868],[77.819021,13.86015],[77.816061,13.854714],[77.810991,13.848707],[77.802718,13.848976],[77.794552,13.84793],[77.784206,13.843904],[77.782252,13.839724],[77.785619,13.832065],[77.788476,13.828034],[77.788634,13.824704],[77.786685,13.820925],[77.777385,13.816548],[77.763477,13.815521],[77.756314,13.814184],[77.749149,13.811748],[77.74169,13.811384],[77.736519,13.809678],[77.726567,13.800655],[77.72093,13.798444],[77.723235,13.791202],[77.720852,13.782658],[77.722315,13.768752],[77.721271,13.758714],[77.7216,13.754121],[77.719158,13.745693],[77.716908,13.740715],[77.715507,13.742154],[77.71033,13.738958],[77.703604,13.76935],[77.692737,13.766528],[77.686857,13.763565],[77.676521,13.760167],[77.671708,13.760132],[77.677797,13.770439],[77.679762,13.777998],[77.678209,13.785354],[77.671981,13.783715],[77.664541,13.784498],[77.657022,13.783663],[77.622224,13.76808],[77.618338,13.763214],[77.620534,13.754653],[77.641687,13.749119],[77.644711,13.743082],[77.641525,13.740679],[77.636472,13.737775],[77.629187,13.73522],[77.623564,13.736167],[77.612125,13.750329],[77.603443,13.751336],[77.594732,13.744541],[77.589378,13.738311],[77.58144,13.734382],[77.574413,13.737107],[77.563859,13.724171],[77.555892,13.728103],[77.552873,13.735862],[77.549267,13.742598],[77.54719,13.751379],[77.537162,13.753484],[77.527305,13.751464],[77.522761,13.744648],[77.530357,13.738708],[77.534271,13.73289],[77.535243,13.726691],[77.535548,13.714697],[77.533285,13.704885],[77.52926,13.695553],[77.520045,13.693342],[77.515653,13.696456],[77.514609,13.700309],[77.514466,13.708113],[77.510437,13.712037],[77.494952,13.714387],[77.487323,13.710798],[77.490003,13.706422],[77.491147,13.699304],[77.492767,13.694306],[77.490574,13.687311],[77.484114,13.68521],[77.457301,13.683351],[77.452335,13.703288],[77.453521,13.708165],[77.460928,13.711638],[77.464362,13.720174],[77.465571,13.730564],[77.465601,13.737847],[77.467546,13.741405],[77.470108,13.751093],[77.469592,13.756553],[77.466195,13.757308],[77.461373,13.7855],[77.459799,13.787858],[77.458172,13.792972],[77.460127,13.798765],[77.464846,13.804491],[77.462979,13.807248],[77.454123,13.809457],[77.447907,13.809706],[77.442794,13.80663],[77.436,13.795406],[77.427382,13.796351],[77.424166,13.798318],[77.42682,13.80318],[77.426543,13.807085],[77.421963,13.807557],[77.418847,13.806251],[77.415916,13.806603],[77.415465,13.809822],[77.420934,13.814737],[77.420009,13.819103],[77.422313,13.822711],[77.431977,13.834045],[77.433512,13.837082],[77.431771,13.842476],[77.425976,13.840866],[77.411129,13.838732],[77.406382,13.839725],[77.396994,13.840216],[77.388246,13.838519],[77.379972,13.838546],[77.380234,13.84544],[77.374618,13.850446],[77.36653,13.852884],[77.359247,13.851586],[77.354007,13.846777],[77.346889,13.842041],[77.341708,13.836606],[77.334242,13.831976],[77.326978,13.832922],[77.323092,13.846876],[77.317786,13.858258],[77.313812,13.864352],[77.302891,13.860655],[77.296543,13.857112],[77.292364,13.853115],[77.289766,13.84807],[77.281968,13.849869],[77.262718,13.846485],[77.257194,13.846503],[77.259774,13.86314],[77.250452,13.867292],[77.247425,13.872863],[77.245923,13.880562],[77.245481,13.88848],[77.248204,13.895818],[77.246749,13.901039],[77.240471,13.901868],[77.232081,13.9024],[77.228488,13.895758],[77.227524,13.888703],[77.223614,13.8762],[77.21813,13.868359],[77.214725,13.867338],[77.21543,13.885351],[77.211503,13.888063],[77.209137,13.881753],[77.20753,13.87343],[77.203459,13.866445],[77.199278,13.863127],[77.185325,13.866724],[77.181635,13.868279],[77.184717,13.878259],[77.186093,13.885199],[77.185697,13.890139],[77.187829,13.89805],[77.188685,13.908145],[77.188066,13.917611],[77.183453,13.924226],[77.176466,13.923147],[77.165944,13.915261],[77.16234,13.90661],[77.163429,13.898114],[77.168151,13.889261],[77.16883,13.883124],[77.171386,13.873071],[77.168959,13.86384],[77.154643,13.86663],[77.145789,13.865851],[77.136553,13.856746],[77.130277,13.85619],[77.131655,13.849822],[77.146896,13.84473],[77.152227,13.841794],[77.154374,13.835707],[77.164403,13.832347],[77.168789,13.827634],[77.168481,13.822355],[77.162724,13.818237],[77.161885,13.814287],[77.162868,13.810659],[77.16063,13.807459],[77.162266,13.805042],[77.162547,13.80022],[77.165051,13.794018],[77.170661,13.787287],[77.175808,13.782508],[77.177968,13.779003],[77.176287,13.768338],[77.173222,13.761633],[77.164767,13.761884],[77.153338,13.761682],[77.14407,13.76257],[77.14066,13.75994],[77.130031,13.757781],[77.117431,13.761488],[77.101672,13.76772],[77.092164,13.764934],[77.091621,13.761373],[77.086757,13.760236],[77.085683,13.752842],[77.087003,13.744224],[77.077859,13.745564],[77.066371,13.745653],[77.06105,13.751282],[77.053631,13.762835],[77.04141,13.776003],[77.03256,13.77815],[77.026047,13.776554],[77.024633,13.768404],[77.020045,13.754176],[77.017625,13.739435],[77.008118,13.743355],[77.000063,13.748189],[76.998733,13.749224],[76.997806,13.751999],[76.998259,13.756182],[76.99626,13.759756],[76.995072,13.766844],[76.992429,13.773165],[76.990426,13.783203],[76.987265,13.792414],[76.990906,13.79532],[76.991827,13.799621],[76.989748,13.810793],[76.98605,13.81378],[76.974795,13.816814],[76.974365,13.820959],[76.97751,13.825438],[76.982513,13.827928],[76.98997,13.83432],[76.992228,13.8458],[76.995919,13.846091],[77.000122,13.845547],[77.012012,13.856687],[77.013136,13.86076],[77.014039,13.869486],[77.018319,13.870678],[77.018625,13.873833],[77.0177,13.878025],[77.022607,13.894313],[77.023259,13.899942],[77.033828,13.903758],[77.047335,13.904013],[77.041845,13.932175],[77.024545,13.94132],[77.0199,13.946002],[77.013986,13.953878],[77.005276,13.956929],[77.000913,13.959196],[77.000164,13.959859],[76.994823,13.963154],[76.995996,13.976728],[76.997124,13.982257],[77.000166,13.987941],[76.990779,13.993941],[76.983083,14.000272],[76.983381,14.000264],[76.9809,14.002986],[76.969887,14.00861],[76.954194,14.013124],[76.950346,14.017009],[76.947918,14.021805],[76.94635,14.026921],[76.936645,14.029034],[76.939255,14.04696],[76.943496,14.053889],[76.948829,14.053514],[76.955296,14.054148],[76.977151,14.05873],[76.979834,14.064041],[76.980629,14.071604],[76.977861,14.074717],[76.977444,14.082028],[76.973667,14.086043],[76.965677,14.089255],[76.956956,14.091641],[76.95181,14.091517],[76.954053,14.097669],[76.953722,14.10283],[76.952063,14.109209],[76.948382,14.118126],[76.942832,14.121366],[76.932364,14.133393],[76.927796,14.135223],[76.922485,14.130654],[76.917867,14.128284],[76.903772,14.133021],[76.89619,14.133972],[76.888935,14.137144],[76.89218,14.142352],[76.894432,14.156979],[76.896673,14.165096],[76.902008,14.168003],[76.922499,14.163815],[76.928299,14.16954],[76.942354,14.172052],[76.944617,14.173876],[76.946894,14.184187],[76.944577,14.192953],[76.947003,14.195456],[76.949405,14.194468],[76.954455,14.18998],[76.959179,14.187207],[76.963923,14.181699],[76.971122,14.180523],[76.978227,14.180506],[76.983691,14.179141],[76.991777,14.178766],[76.999923,14.180004],[77.011617,14.181116],[77.019624,14.179321],[77.025442,14.178993],[77.026967,14.1747],[77.026697,14.170634],[77.021646,14.158996],[77.02059,14.138511],[77.019459,14.133734],[77.024865,14.131637],[77.025942,14.128656],[77.022034,14.123867],[77.022721,14.118299],[77.022279,14.112447],[77.01399,14.104478],[77.016128,14.098415],[77.02043,14.095074],[77.029742,14.089759],[77.030301,14.083577],[77.026007,14.067848],[77.029488,14.059687],[77.034294,14.058407],[77.040681,14.057882],[77.049063,14.058124],[77.05707,14.056061],[77.07496,14.053683],[77.075471,14.045957],[77.082449,14.044576],[77.096759,14.04481],[77.102687,14.047255],[77.11001,14.047141],[77.116215,14.048623],[77.127188,14.048776],[77.130803,14.041355],[77.133979,14.025273],[77.140207,14.016322],[77.13905,14.010866],[77.14053,14.0048],[77.145711,14.003864],[77.150614,14.000212],[77.150828,14.000211],[77.153577,13.998312],[77.160685,13.997314],[77.164621,14.000229],[77.164426,14.000232],[77.169053,14.004476],[77.167944,14.012954],[77.177673,14.015316],[77.200922,14.00962],[77.214077,14.011658],[77.225272,14.014708],[77.233713,14.01477],[77.249064,14.013149],[77.262269,14.027816],[77.271044,14.033386],[77.278055,14.034979],[77.280773,14.023069],[77.27918,14.01491],[77.285092,14.013804],[77.291803,14.018441],[77.298907,14.021418],[77.304659,14.029947],[77.310191,14.033655],[77.320162,14.031769],[77.32317,14.028413],[77.323706,14.022277],[77.326927,14.01622],[77.330821,14.012293],[77.33688,14.001892],[77.336421,14.000359],[77.336524,14.000354],[77.337098,13.997374],[77.340257,13.995068],[77.352457,13.992626],[77.360609,13.98938],[77.360236,13.983362],[77.353786,13.96766],[77.354063,13.962436],[77.350587,13.957971],[77.368939,13.952582],[77.36952,13.94942],[77.359548,13.93557],[77.349519,13.919356],[77.350437,13.913108],[77.352833,13.910459],[77.355277,13.903679],[77.365836,13.902728],[77.39748,13.904912],[77.398949,13.887127],[77.403365,13.887685],[77.404172,13.887784],[77.415642,13.89607],[77.426115,13.902181],[77.432771,13.909325],[77.434559,13.916495],[77.429632,13.919209],[77.417257,13.921833],[77.415526,13.928837],[77.414755,13.943305],[77.429673,13.946233],[77.435791,13.950579],[77.436132,13.963602],[77.437974,13.969221],[77.437703,13.97599],[77.433664,13.980479],[77.427515,13.984055],[77.417184,13.984091],[77.393459,13.981127],[77.382587,13.976227],[77.379607,13.982611],[77.380098,13.988806],[77.386763,14.000378],[77.390257,14.01445],[77.381935,14.019164],[77.369154,14.023036],[77.356879,14.023477],[77.350806,14.026071],[77.332904,14.029909],[77.337955,14.046806],[77.341232,14.054746],[77.344659,14.060792],[77.356854,14.060359],[77.365306,14.06592],[77.368106,14.072936],[77.379139,14.078852],[77.386414,14.097376],[77.392449,14.100458],[77.40223,14.110442],[77.403203,14.117564],[77.401204,14.121628],[77.396489,14.125551],[77.387081,14.123595],[77.379951,14.11954],[77.365606,14.115653],[77.359105,14.112281],[77.355174,14.106182],[77.351205,14.102936],[77.353139,14.117352],[77.35315,14.124752],[77.354357,14.131238],[77.361502,14.130657],[77.371665,14.134048],[77.383366,14.13654],[77.385422,14.145215],[77.389309,14.154651],[77.396252,14.160482],[77.396389,14.172188],[77.404157,14.173444],[77.416442,14.176679],[77.423064,14.176264],[77.430249,14.172063],[77.460772,14.170017],[77.470197,14.171285],[77.495509,14.160195],[77.507439,14.158093],[77.509668,14.164246],[77.513778,14.171383],[77.517335,14.179149],[77.516403,14.184075],[77.511101,14.187765],[77.508025,14.200307],[77.506624,14.211548],[77.499973,14.221025],[77.499736,14.227102],[77.496945,14.234662],[77.503146,14.247432],[77.505662,14.25656],[77.506209,14.267526],[77.50308,14.278741],[77.498947,14.278258],[77.49117,14.282226],[77.486111,14.291718],[77.485883,14.290682],[77.475158,14.286372],[77.461401,14.27911],[77.450284,14.284438],[77.449095,14.297786],[77.448967,14.316603],[77.434119,14.311687],[77.432423,14.327623],[77.427262,14.328795],[77.415805,14.333883],[77.40135,14.335906],[77.392107,14.331609],[77.38527,14.323822],[77.380298,14.311857],[77.381462,14.301943],[77.387682,14.289772],[77.391569,14.279246],[77.390867,14.272412],[77.396408,14.268205],[77.407594,14.267243],[77.411372,14.255458],[77.412793,14.24359],[77.415692,14.230477],[77.421382,14.223974],[77.422372,14.218877],[77.421572,14.21015],[77.397872,14.197785],[77.390412,14.198709],[77.386705,14.209412],[77.388221,14.217045],[77.383193,14.223558],[77.370834,14.230128],[77.361898,14.236836],[77.36572,14.250398],[77.364729,14.267083],[77.365703,14.27609],[77.359836,14.277431],[77.349771,14.277251],[77.326925,14.280135],[77.313791,14.2805],[77.301718,14.28311],[77.291741,14.281375],[77.28582,14.2827],[77.288105,14.297063],[77.288877,14.308886],[77.287301,14.33767],[77.279433,14.338295],[77.273446,14.333551],[77.263947,14.332221],[77.257378,14.327121],[77.25117,14.321049],[77.238013,14.31757],[77.228933,14.321454],[77.215772,14.319464],[77.202284,14.320736],[77.185386,14.332763],[77.182609,14.332679],[77.177722,14.336601],[77.170044,14.336826],[77.165558,14.34259],[77.15792,14.344081],[77.152227,14.338522],[77.146285,14.342433],[77.141283,14.34032],[77.137644,14.336904],[77.138361,14.330369],[77.136681,14.320133],[77.131526,14.307862],[77.123052,14.297742],[77.11765,14.293849],[77.116287,14.281268],[77.112679,14.268104],[77.121295,14.263185],[77.117348,14.254828],[77.11879,14.246293],[77.116265,14.238358],[77.11577,14.227855],[77.110889,14.21967],[77.101002,14.21586],[77.090627,14.214818],[77.081065,14.215693],[77.073313,14.224185],[77.065891,14.230462],[77.060964,14.238587],[77.055231,14.245811],[77.046226,14.247023],[77.038598,14.246732],[77.030121,14.242913],[77.018011,14.241304],[77.009597,14.237776],[77.000017,14.241745],[76.998237,14.239174],[76.994812,14.242576],[76.987895,14.244309],[76.981011,14.24357],[76.975106,14.241355],[76.96693,14.242034],[76.956712,14.240266],[76.948753,14.242417],[76.943111,14.246195],[76.941255,14.254852],[76.938861,14.259579],[76.931028,14.270446],[76.93004,14.278217],[76.940714,14.282685],[76.948998,14.28774],[76.953988,14.292817],[76.955354,14.300088],[76.951927,14.30649],[76.948136,14.311415],[76.941746,14.314431],[76.928285,14.31565],[76.92192,14.318247],[76.911245,14.3213],[76.904018,14.325185],[76.890349,14.345498],[76.884048,14.35228],[76.883555,14.357267],[76.888043,14.396141],[76.891689,14.398298],[76.897265,14.398732],[76.901584,14.400341],[76.906126,14.404185],[76.918072,14.419419],[76.923957,14.417334],[76.941837,14.407233],[76.946652,14.405463],[76.948674,14.409192],[76.949752,14.414843],[76.949369,14.431136],[76.947738,14.445731],[76.948825,14.450982],[76.963661,14.451299],[76.969435,14.457654],[76.979287,14.476269],[76.978476,14.484176],[76.974158,14.484982],[76.96084,14.485455],[76.950395,14.488003],[76.911378,14.489941],[76.899108,14.486521],[76.890302,14.481706],[76.885096,14.476288],[76.874973,14.474191],[76.868557,14.480398],[76.865159,14.492838],[76.858898,14.504565],[76.848556,14.51481],[76.836682,14.520713],[76.832991,14.527863],[76.832148,14.528679],[76.824271,14.52595],[76.815395,14.529398],[76.809588,14.530456],[76.804209,14.533312],[76.799147,14.546284],[76.790569,14.558592],[76.788445,14.567501],[76.782505,14.58482],[76.780619,14.595803],[76.778665,14.596044],[76.777046,14.59267],[76.76519,14.601729],[76.764448,14.607455],[76.76725,14.617353],[76.773724,14.661712],[76.775497,14.679223],[76.785305,14.695851],[76.789753,14.712458],[76.802289,14.739948],[76.799224,14.746476],[76.792332,14.75716],[76.790592,14.767224],[76.785422,14.779617],[76.784467,14.784538],[76.815194,14.786753],[76.820948,14.787824],[76.821577,14.79077],[76.824958,14.791948],[76.830675,14.792326],[76.83564,14.78946],[76.838046,14.790266],[76.839232,14.805465],[76.841479,14.809479],[76.851201,14.807668],[76.853046,14.809383],[76.853897,14.817155],[76.852832,14.819595],[76.848725,14.820926],[76.847257,14.829626],[76.844502,14.8334],[76.844335,14.835354],[76.848614,14.838566],[76.853654,14.84403],[76.858369,14.866671],[76.855917,14.867815],[76.855109,14.878136],[76.85327,14.885204],[76.84745,14.886729],[76.847966,14.891676],[76.850339,14.895587],[76.864539,14.896464],[76.866973,14.907038],[76.868117,14.917002],[76.867719,14.920896],[76.869679,14.942834],[76.867848,14.96042],[76.868626,14.969223],[76.845268,14.966334],[76.839959,14.964251],[76.836626,14.958644],[76.831965,14.956174],[76.827708,14.958764],[76.824318,14.964312],[76.819476,14.968949],[76.800845,14.968018],[76.775973,14.973704],[76.76762,14.974923],[76.765698,14.980332],[76.762462,14.984498],[76.76081,14.988003],[76.763056,14.990098],[76.766188,14.994493],[76.769016,14.994096],[76.770055,14.995845],[76.771896,15.000669],[76.773377,15.005608],[76.783603,15.010925],[76.788433,15.021699],[76.785638,15.028362],[76.784623,15.039243],[76.778833,15.048943],[76.774919,15.059065],[76.774599,15.063256],[76.776338,15.070083],[76.779522,15.074117],[76.777984,15.07635],[76.780143,15.078252],[76.782394,15.076537],[76.787709,15.080629],[76.786031,15.083777],[76.788011,15.085736],[76.791365,15.085401],[76.800768,15.095711],[76.815765,15.085228],[76.825191,15.079867],[76.833384,15.07932],[76.841381,15.077517],[76.84719,15.071215],[76.864618,15.061807],[76.868143,15.055105],[76.873846,15.049146],[76.880833,15.033834],[76.892855,15.036918],[76.900401,15.037057],[76.909659,15.034485],[76.917775,15.036154],[76.923614,15.033734],[76.935972,15.031543],[76.947079,15.032276],[76.955023,15.029692],[76.971211,15.01847],[76.986242,15.015681],[76.987973,15.025738],[77.000159,15.029004],[77.003131,15.032387],[77.005185,15.034928],[77.013815,15.034923],[77.027529,15.033016],[77.042059,15.032958],[77.051509,15.034604],[77.053428,15.029263],[77.051038,15.021437],[77.045652,15.010899],[77.055588,15.009725],[77.066177,15.007007],[77.073319,15.006575],[77.08357,15.005492],[77.085246,15.013367],[77.086822,15.027747],[77.093021,15.028514],[77.095544,15.033183],[77.106474,15.032824],[77.114383,15.034065],[77.116416,15.043613],[77.120884,15.045587],[77.123201,15.05611],[77.125726,15.060552],[77.130334,15.073677],[77.132403,15.099086],[77.144192,15.105333],[77.152542,15.112787],[77.158869,15.125968],[77.157574,15.137056],[77.140122,15.141415],[77.136835,15.148068],[77.141718,15.154639],[77.150284,15.156104],[77.157848,15.154241],[77.162518,15.154369],[77.164106,15.157539],[77.163602,15.163285],[77.168023,15.166752],[77.169293,15.173878],[77.166329,15.1876],[77.162914,15.199193],[77.160541,15.199707],[77.154688,15.213243],[77.151783,15.214147],[77.146072,15.223441],[77.125537,15.226518],[77.128084,15.238593],[77.137307,15.239896],[77.144915,15.25682],[77.151357,15.255577],[77.162647,15.256656],[77.169979,15.256281],[77.168884,15.264377],[77.162375,15.265674],[77.154534,15.272198],[77.149813,15.271319],[77.149558,15.27453],[77.152683,15.276212],[77.153368,15.283112],[77.152555,15.290918],[77.143458,15.290714],[77.128315,15.292778],[77.119964,15.295042],[77.117934,15.324278],[77.114737,15.325876],[77.114173,15.332422],[77.103766,15.331743],[77.07347,15.324562],[77.065938,15.326942],[77.06751,15.333153],[77.067231,15.342976],[77.062171,15.348239],[77.046872,15.35725],[77.042291,15.363778],[77.046542,15.379787],[77.048062,15.388725],[77.045242,15.396473],[77.037471,15.401207],[77.032718,15.406243],[77.031028,15.412672],[77.035176,15.42326],[77.03466,15.431242],[77.031544,15.440077],[77.02798,15.443449],[77.019385,15.445938],[77.010178,15.453084],[77.006089,15.460216],[77.004794,15.46653],[77.000029,15.472278],[76.992973,15.477948],[76.98004,15.48678],[76.974319,15.49567],[76.974068,15.499697],[76.975806,15.511052],[76.985584,15.50952],[76.994839,15.505851],[77.000017,15.504506],[77.009438,15.507557],[77.030685,15.50481],[77.032839,15.513371],[77.032934,15.529907],[77.02771,15.581099],[77.028436,15.589081],[77.032885,15.602961],[77.032383,15.61155],[77.031066,15.634022],[77.03324,15.638505],[77.036622,15.636685],[77.03999,15.637046],[77.072924,15.645614],[77.085532,15.657553],[77.093014,15.652247],[77.100078,15.648889],[77.104713,15.643915],[77.108056,15.638696],[77.12041,15.629902],[77.125148,15.641982],[77.129183,15.663814],[77.123252,15.666836],[77.114624,15.675985],[77.104938,15.683583],[77.079961,15.69554],[77.081964,15.698016],[77.085681,15.699987],[77.088405,15.713608],[77.080287,15.715004],[77.080293,15.726032],[77.06696,15.728274],[77.051019,15.729585],[77.051165,15.737733],[77.047132,15.739038],[77.050601,15.755874],[77.055643,15.754684],[77.05708,15.763425],[77.052391,15.765294],[77.05362,15.76863],[77.057642,15.768194],[77.060508,15.776808],[77.063675,15.783373],[77.066397,15.782925],[77.071163,15.800564],[77.065416,15.802431],[77.067778,15.827642],[77.056106,15.828798],[77.053756,15.8246],[77.045336,15.826113],[77.042177,15.829949],[77.037679,15.828837],[77.031939,15.830021],[77.028184,15.833911],[77.026036,15.836192],[77.032783,15.849308],[77.036949,15.857479],[77.044838,15.868359],[77.056261,15.880684],[77.062021,15.891554],[77.069772,15.9037],[77.080627,15.914132],[77.093918,15.922272],[77.108518,15.928938],[77.12461,15.933249],[77.133908,15.934829],[77.140752,15.940659],[77.147431,15.945047],[77.161152,15.948937],[77.174777,15.950029],[77.184709,15.95454],[77.191936,15.9552],[77.207111,15.954394],[77.222862,15.956172],[77.231333,15.956148],[77.240328,15.957264],[77.248316,15.961316],[77.253174,15.962305],[77.262425,15.958553],[77.267472,15.955984],[77.286805,15.951981],[77.296156,15.954595],[77.304625,15.955142],[77.319223,15.949849],[77.339671,15.947974],[77.358159,15.948429],[77.364444,15.946272],[77.372703,15.94079],[77.38083,15.938006],[77.390248,15.939236],[77.397345,15.941552],[77.404695,15.940259],[77.412335,15.940454],[77.421159,15.942779],[77.426654,15.94612],[77.431151,15.947112],[77.441239,15.943875],[77.45732,15.936403],[77.471845,15.932482],[77.488197,15.932991],[77.502244,15.931251],[77.514409,15.925835],[77.536755,15.921135],[77.553888,15.91871],[77.576754,15.917396],[77.58524,15.915298],[77.593602,15.9121],[77.6039,15.913854],[77.611598,15.916854],[77.619074,15.912969],[77.624056,15.908908],[77.63099,15.904294],[77.637319,15.896986],[77.644909,15.888339],[77.653565,15.884159],[77.664303,15.881769],[77.688946,15.879177],[77.697949,15.88062],[77.70492,15.88574],[77.712787,15.889412],[77.721608,15.891892],[77.730381,15.890121],[77.737492,15.887555],[77.744372,15.883885],[77.75522,15.881261],[77.765647,15.882186],[77.775841,15.878691],[77.784559,15.874735],[77.795473,15.872048],[77.804889,15.870794],[77.814958,15.872517],[77.823478,15.874982],[77.831103,15.87929],[77.839636,15.881014],[77.84556,15.879457],[77.855925,15.879352],[77.861488,15.881298],[77.872769,15.897929],[77.882238,15.901538],[77.893554,15.901483],[77.913483,15.890494],[77.934282,15.882155],[77.950038,15.880584],[77.969151,15.881599],[77.978961,15.879834],[77.999771,15.866749],[78.008039,15.865012],[78.012779,15.877742],[78.0209,15.894575],[78.023131,15.900908],[78.03043,15.904348],[78.034972,15.908454],[78.042483,15.907863],[78.046042,15.903888],[78.046943,15.878026],[78.055118,15.876595],[78.06476,15.856296],[78.069984,15.850473],[78.107556,15.833899],[78.116007,15.833176],[78.126237,15.836278],[78.133348,15.840933],[78.132273,15.854928],[78.144394,15.856244],[78.154891,15.855992],[78.157426,15.855073],[78.171189,15.855043],[78.175193,15.859221],[78.17718,15.872474],[78.18035,15.878556],[78.185609,15.885808],[78.188003,15.893677],[78.185704,15.900958],[78.186522,15.906449],[78.203189,15.918254],[78.211935,15.923083],[78.234453,15.92952],[78.24455,15.935106],[78.249464,15.943103],[78.250597,15.952994],[78.253938,15.966076],[78.254939,15.974321],[78.257674,15.976857],[78.259533,15.984448],[78.266318,16.000722],[78.265243,16.011051],[78.257906,16.031615],[78.263202,16.03723],[78.274707,16.040704],[78.287634,16.038056],[78.29879,16.034486],[78.322867,16.035179],[78.330223,16.043264],[78.337798,16.053119],[78.34709,16.058804],[78.359798,16.060557],[78.376754,16.065911],[78.390985,16.077901],[78.412435,16.087045],[78.427758,16.088964],[78.457878,16.087197],[78.502553,16.079335],[78.527839,16.071371],[78.539878,16.068643],[78.553958,16.062547],[78.566215,16.062737],[78.574199,16.068239],[78.583529,16.076715],[78.599686,16.093608],[78.610616,16.102824],[78.624161,16.105304],[78.643677,16.097889],[78.653916,16.089201],[78.665,16.077945],[78.67564,16.062343],[78.682295,16.055598],[78.693896,16.046976],[78.721048,16.033324],[78.733384,16.029727],[78.746424,16.027847],[78.761404,16.027742],[78.782551,16.030374],[78.797542,16.039472],[78.815521,16.052973],[78.821312,16.058972],[78.8291,16.068978],[78.844047,16.094146],[78.84691,16.101004],[78.847808,16.109581],[78.845619,16.117591],[78.841454,16.126855],[78.838756,16.139668],[78.837977,16.148822],[78.839589,16.158429],[78.845323,16.163404],[78.853758,16.166208],[78.86394,16.165286],[78.870457,16.159799],[78.873853,16.15059],[78.875573,16.142004],[78.876963,16.128396],[78.880248,16.116957],[78.896682,16.105396],[78.908814,16.104476],[78.918111,16.112081],[78.920978,16.115694],[78.924907,16.120371],[78.929499,16.128718],[78.928478,16.140499],[78.913169,16.171682],[78.913013,16.188606],[78.915631,16.197761],[78.933067,16.209075],[78.948682,16.216555],[78.966617,16.223981],[78.985694,16.22985],[79.000085,16.235099],[79.017845,16.247259],[79.027815,16.251089],[79.038633,16.252579],[79.050247,16.251801],[79.061808,16.249439],[79.076356,16.245045],[79.130848,16.244902],[79.141028,16.243394],[79.150361,16.236314],[79.159074,16.231679],[79.170646,16.227326],[79.184526,16.224241],[79.199957,16.229837],[79.215484,16.237809],[79.226669,16.246785],[79.233031,16.257211],[79.237756,16.30729],[79.235737,16.343813],[79.231125,16.357332],[79.219313,16.369747],[79.221143,16.381306],[79.220414,16.400649],[79.222826,16.422612],[79.226848,16.44499],[79.234145,16.459352],[79.243988,16.465362],[79.242899,16.477479],[79.238658,16.488441],[79.231861,16.498888],[79.233002,16.514937],[79.238171,16.525994],[79.268514,16.553133],[79.273843,16.568171],[79.290145,16.572159],[79.302887,16.574078],[79.327569,16.582631],[79.341141,16.585294],[79.35336,16.586356],[79.41063,16.587318],[79.434524,16.589431],[79.442439,16.592578],[79.451095,16.600628],[79.458526,16.616065],[79.478037,16.625673],[79.505162,16.637458],[79.520109,16.640621],[79.544743,16.63857],[79.562027,16.641619],[79.571668,16.645108],[79.582079,16.65064],[79.593667,16.658403],[79.607989,16.670323],[79.62492,16.671716],[79.641397,16.667986],[79.656176,16.669137],[79.663644,16.681218],[79.676786,16.69113],[79.691195,16.697522],[79.730935,16.699809],[79.742004,16.705228],[79.758693,16.727323],[79.771314,16.734339],[79.783121,16.736741],[79.791606,16.732085],[79.818561,16.697832],[79.834241,16.698843],[79.852891,16.703855],[79.870192,16.705634],[79.881671,16.696152],[79.889049,16.68365],[79.899336,16.657106],[79.910529,16.645427],[79.922285,16.640748],[79.93213,16.638374],[79.951061,16.640285],[79.966655,16.649711],[79.981524,16.667181],[80.000012,16.70018],[80.002156,16.702075],[80.010876,16.710578],[80.025171,16.719469],[80.031812,16.726115],[80.041254,16.739402],[80.051846,16.747336],[80.0564,16.752791],[80.060073,16.778879],[80.06613,16.789458],[80.073397,16.810059],[80.07813,16.821152],[80.050258,16.833534],[80.045086,16.839849],[80.042794,16.846561],[80.042754,16.855186],[80.0415,16.859862],[80.022216,16.860326],[80.002475,16.869516],[80.000017,16.870579],[80.003373,16.884622],[80.011079,16.89877],[80.017863,16.914541],[80.026903,16.926089],[80.036808,16.934686],[80.045375,16.94374],[80.054171,16.972538],[80.092586,16.970492],[80.092277,16.984961],[80.096009,16.9947],[80.107808,16.990085],[80.114134,16.988621],[80.121138,16.989636],[80.123028,16.993182],[80.128501,16.994131],[80.135265,16.992661],[80.142235,16.992704],[80.148945,17.000621],[80.15083,17.008807],[80.157473,17.01537],[80.175553,17.030949],[80.178905,17.037718],[80.190479,17.052245],[80.20264,17.049843],[80.204508,17.033055],[80.203954,17.025418],[80.209667,17.020538],[80.221639,17.026584],[80.226255,17.027043],[80.240685,17.012377],[80.24419,17.0098],[80.249595,17.010287],[80.258733,17.01486],[80.270646,17.018123],[80.284675,17.000793],[80.2975,16.9844],[80.309922,16.963517],[80.312513,16.947162],[80.316433,16.931544],[80.323978,16.920141],[80.321882,16.919752],[80.324749,16.902448],[80.324614,16.891799],[80.327078,16.88526],[80.327863,16.878773],[80.335965,16.878865],[80.345961,16.874954],[80.34361,16.863631],[80.3596,16.861222],[80.367332,16.862835],[80.369894,16.858319],[80.373423,16.846868],[80.375818,16.834748],[80.381675,16.819127],[80.384615,16.818667],[80.386579,16.820516],[80.388137,16.827559],[80.402965,16.833201],[80.407884,16.83961],[80.408912,16.845074],[80.408431,16.857746],[80.427413,16.850368],[80.43016,16.845176],[80.431608,16.837388],[80.440875,16.835273],[80.440608,16.831951],[80.453547,16.827515],[80.461392,16.823436],[80.463884,16.814644],[80.465219,16.798233],[80.47987,16.796548],[80.487884,16.7932],[80.493499,16.789573],[80.498399,16.784145],[80.519873,16.778263],[80.52697,16.77711],[80.538956,16.778411],[80.555415,16.77604],[80.571719,16.771243],[80.578243,16.779164],[80.606454,16.79352],[80.613027,16.796197],[80.606696,16.800453],[80.602563,16.806323],[80.594751,16.815037],[80.58066,16.820444],[80.575879,16.825427],[80.570121,16.825445],[80.564884,16.826711],[80.563451,16.83308],[80.57128,16.844599],[80.572847,16.850844],[80.573681,16.85817],[80.573776,16.87727],[80.585334,16.881334],[80.595587,16.882191],[80.594604,16.895383],[80.592182,16.898834],[80.590047,16.904979],[80.590923,16.911291],[80.594701,16.912516],[80.59817,16.915321],[80.599112,16.919823],[80.597948,16.924852],[80.592961,16.934674],[80.578271,16.935019],[80.540479,16.958194],[80.529429,16.944434],[80.518497,16.950444],[80.500003,16.956149],[80.495661,16.94484],[80.494306,16.935038],[80.49655,16.925455],[80.485588,16.929158],[80.478572,16.934482],[80.471934,16.938163],[80.461775,16.946255],[80.451205,16.952831],[80.420984,16.962005],[80.406253,16.96481],[80.389416,16.970278],[80.369005,16.978224],[80.366835,16.978346],[80.36964,16.982175],[80.378297,16.990661],[80.380187,16.994826],[80.379781,17.000842],[80.37976,17.003532],[80.390531,17.00774],[80.395071,17.010644],[80.396465,17.014998],[80.39727,17.02175],[80.392324,17.027432],[80.386442,17.03099],[80.385777,17.035512],[80.386922,17.041756],[80.380151,17.055124],[80.376273,17.060287],[80.375506,17.064142],[80.382676,17.070682],[80.387577,17.073727],[80.398629,17.083777],[80.401721,17.085386],[80.403609,17.08515],[80.40588,17.081479],[80.408301,17.072857],[80.407433,17.067403],[80.409422,17.061823],[80.422856,17.049469],[80.426358,17.036312],[80.429112,17.03258],[80.441246,17.029516],[80.454854,17.024794],[80.461485,17.044784],[80.472841,17.044947],[80.480363,17.045867],[80.483679,17.050577],[80.490807,17.058036],[80.493271,17.064074],[80.493222,17.075329],[80.495383,17.090615],[80.497314,17.095037],[80.500987,17.100145],[80.505143,17.108991],[80.504691,17.115547],[80.520308,17.11392],[80.528014,17.115865],[80.537777,17.121373],[80.544002,17.127511],[80.550258,17.12814],[80.55766,17.131351],[80.568776,17.145757],[80.582096,17.143039],[80.58886,17.138722],[80.603742,17.127378],[80.612511,17.123342],[80.621561,17.12448],[80.625206,17.123554],[80.632574,17.119752],[80.638417,17.117903],[80.633895,17.109634],[80.645095,17.104907],[80.654952,17.102415],[80.66537,17.095729],[80.664115,17.09194],[80.653086,17.085067],[80.646477,17.079907],[80.646447,17.073585],[80.64265,17.066869],[80.648319,17.063124],[80.657916,17.06259],[80.669331,17.064755],[80.676491,17.067956],[80.684385,17.069317],[80.69014,17.072354],[80.692741,17.076777],[80.703916,17.07641],[80.721374,17.073553],[80.734502,17.072726],[80.755389,17.063085],[80.774916,17.058501],[80.789018,17.057026],[80.794126,17.055859],[80.801674,17.0513],[80.812057,17.050818],[80.832093,17.046094],[80.838161,17.040679],[80.841357,17.034061],[80.853738,17.041195],[80.859411,17.048514],[80.863783,17.0524],[80.867722,17.059203],[80.865311,17.076834],[80.871396,17.089831],[80.871239,17.09392],[80.873039,17.104092],[80.863857,17.119642],[80.872282,17.126231],[80.875606,17.132837],[80.879102,17.154499],[80.885557,17.153394],[80.89766,17.149278],[80.904955,17.14902],[80.912788,17.149399],[80.918194,17.150702],[80.922126,17.1542],[80.920999,17.161742],[80.922798,17.168995],[80.923669,17.178053],[80.92183,17.181984],[80.917262,17.186225],[80.915777,17.192017],[80.916409,17.201019],[80.914123,17.209422],[80.922617,17.213403],[80.929422,17.213982],[80.939438,17.213195],[80.947837,17.208569],[80.956537,17.201548],[80.964805,17.196452],[80.975138,17.192801],[80.993982,17.187695],[81.000102,17.188013],[81.006552,17.190325],[81.014238,17.192776],[81.03501,17.195019],[81.040311,17.2007],[81.043677,17.2056],[81.04879,17.208289],[81.052712,17.212881],[81.055379,17.222152],[81.062682,17.218493],[81.071047,17.212469],[81.093337,17.222025],[81.127033,17.233013],[81.154413,17.240102],[81.171659,17.241052],[81.176876,17.250775],[81.189435,17.263057],[81.183492,17.268801],[81.179976,17.27508],[81.179435,17.304818],[81.180781,17.313797],[81.187018,17.322849],[81.190355,17.330549],[81.199113,17.335696],[81.227564,17.330119],[81.243124,17.331224],[81.266364,17.331096],[81.271078,17.330387],[81.276024,17.32846],[81.290635,17.338218],[81.298019,17.346008],[81.307651,17.360583],[81.310444,17.36816],[81.320446,17.383203],[81.331284,17.397554],[81.333519,17.399058],[81.339158,17.400511],[81.346159,17.398427],[81.35175,17.393855],[81.35214,17.38418],[81.358677,17.377003],[81.372819,17.368787],[81.380661,17.365717],[81.394075,17.363695],[81.415321,17.369997],[81.42452,17.370226],[81.427171,17.37497],[81.428978,17.380762],[81.442506,17.383535],[81.450374,17.390304],[81.454946,17.399276],[81.460408,17.406913],[81.466102,17.413975],[81.48108,17.428094],[81.490831,17.440763],[81.502254,17.457368],[81.504182,17.462346],[81.504675,17.468895],[81.502554,17.47451],[81.502419,17.485508],[81.50697,17.498473],[81.508294,17.509989],[81.506802,17.518502],[81.508232,17.539928],[81.51019,17.547736],[81.51786,17.557691],[81.522492,17.565619],[81.529045,17.572967],[81.532483,17.578061],[81.532635,17.580956],[81.529645,17.584079],[81.521408,17.59127],[81.511659,17.598163],[81.516625,17.603601],[81.517991,17.606609],[81.517981,17.611822],[81.520585,17.618131],[81.527653,17.62704],[81.542859,17.638666],[81.553014,17.653537],[81.554775,17.658921],[81.562329,17.674598],[81.568863,17.684841],[81.576871,17.691029],[81.579837,17.696059],[81.579743,17.711055],[81.580634,17.719972],[81.581615,17.726798],[81.585273,17.734212],[81.590595,17.738779],[81.617846,17.751772],[81.621459,17.755061],[81.627223,17.766693],[81.631697,17.770911],[81.650537,17.773777],[81.661641,17.773767],[81.683318,17.775291],[81.693428,17.778749],[81.700035,17.783893],[81.706865,17.792675],[81.712619,17.807723],[81.718138,17.813266],[81.732037,17.823374],[81.738208,17.82747],[81.747524,17.829768],[81.761563,17.826503],[81.772556,17.838112],[81.790972,17.840155],[81.796461,17.847438],[81.80301,17.85235],[81.801371,17.860696],[81.796141,17.870666],[81.790041,17.878842],[81.777441,17.886796],[81.771994,17.893468],[81.766859,17.901407],[81.770798,17.904638],[81.784321,17.912824],[81.790996,17.917791],[81.794571,17.921663],[81.797879,17.929422],[81.802588,17.937685],[81.809588,17.944102],[81.828344,17.95349],[81.841888,17.95907],[81.848258,17.958122],[81.855373,17.958853],[81.882685,17.967924],[81.893631,17.973918],[81.907822,17.976659],[81.913107,17.981566],[81.922242,17.987978],[81.933244,17.988991],[81.944642,17.992203],[81.960312,18.00022],[81.965673,18.005187],[81.972593,18.007985],[81.981603,18.01379],[81.988992,18.019408],[81.994407,18.022397],[81.997395,18.028455],[82.000009,18.029932],[82.010195,18.031792],[82.010636,18.036358],[82.013252,18.042425],[82.010102,18.052894],[82.015152,18.057283],[82.02529,18.063213],[82.033163,18.065972],[82.038376,18.064632],[82.041155,18.059826],[82.053685,18.053728],[82.05939,18.052617],[82.068242,18.053281],[82.074157,18.057083],[82.073977,18.059457],[82.069514,18.062126],[82.067483,18.066583],[82.072907,18.066516],[82.078393,18.068586],[82.080716,18.073781],[82.088569,18.068616],[82.097666,18.065585],[82.100872,18.060953],[82.116492,18.062235],[82.119103,18.065872],[82.12178,18.066035],[82.12783,18.05943],[82.13561,18.059239],[82.137753,18.056918],[82.138943,18.049161],[82.140906,18.043898],[82.150823,18.051844],[82.155828,18.048713],[82.168866,18.051907],[82.172275,18.049934],[82.181687,18.033944],[82.185483,18.029256],[82.182803,18.023878],[82.185967,18.018961],[82.193638,18.015753],[82.199576,18.017358],[82.20548,18.017111],[82.21632,18.009159],[82.226733,18.002654],[82.231541,18.001362],[82.239358,18.002203],[82.245534,18.000514],[82.246889,17.992429],[82.250283,17.988298],[82.261768,17.988736],[82.269646,17.990959],[82.275827,17.994998],[82.277424,18.000549],[82.279078,18.006285],[82.279354,18.019181],[82.277484,18.028433],[82.274763,18.034168],[82.266704,18.04332],[82.270744,18.044752],[82.273142,18.04746],[82.273642,18.051503],[82.275474,18.056707],[82.287458,18.063365],[82.291542,18.064218],[82.293592,18.067845],[82.296277,18.068995],[82.306419,18.070404],[82.304925,18.066017],[82.301333,18.062789],[82.305022,18.054622],[82.309573,18.052523],[82.31487,18.053482],[82.312943,18.048115],[82.314081,18.046316],[82.318156,18.04694],[82.321749,18.043285],[82.325499,18.044541],[82.321535,18.053689],[82.324269,18.055186],[82.325834,18.057025],[82.328174,18.057075],[82.330353,18.058684],[82.334713,18.055026],[82.33344,18.051214],[82.338303,18.048939],[82.344867,18.05579],[82.345455,18.057622],[82.351705,18.076316],[82.350448,18.079793],[82.352127,18.083484],[82.351663,18.090948],[82.349049,18.095528],[82.343173,18.098328],[82.340662,18.102551],[82.340972,18.115449],[82.338777,18.127374],[82.343831,18.135621],[82.341849,18.150716],[82.346736,18.146305],[82.353353,18.142979],[82.366054,18.133506],[82.370254,18.137592],[82.372776,18.143252],[82.373632,18.148045],[82.367434,18.157493],[82.357186,18.170144],[82.350071,18.17173],[82.34148,18.171713],[82.333239,18.174693],[82.327761,18.179683],[82.318745,18.18284],[82.316667,18.1895],[82.317866,18.197585],[82.314534,18.203846],[82.328162,18.209234],[82.341247,18.223974],[82.335156,18.22441],[82.329731,18.230613],[82.330933,18.236277],[82.338638,18.239487],[82.339412,18.241503],[82.340437,18.248267],[82.340202,18.254915],[82.342289,18.260402],[82.345282,18.274325],[82.352035,18.279738],[82.375444,18.279056],[82.380281,18.282218],[82.390625,18.292405],[82.393787,18.297194],[82.395711,18.308698],[82.401384,18.314515],[82.396787,18.319267],[82.392728,18.326744],[82.388849,18.327341],[82.383472,18.326034],[82.377565,18.325774],[82.373614,18.324455],[82.366329,18.316274],[82.362924,18.317044],[82.357126,18.314179],[82.351274,18.315357],[82.349368,18.318664],[82.342801,18.325108],[82.344774,18.328101],[82.353789,18.329804],[82.358571,18.336891],[82.364901,18.341552],[82.368494,18.351659],[82.377819,18.358322],[82.384686,18.361238],[82.388031,18.365394],[82.38714,18.369614],[82.38941,18.374634],[82.392759,18.377057],[82.39276,18.380349],[82.386726,18.386043],[82.383561,18.390967],[82.383214,18.400689],[82.380814,18.405961],[82.374304,18.411187],[82.369595,18.417739],[82.374311,18.420844],[82.375326,18.425006],[82.38005,18.427994],[82.385907,18.429812],[82.388961,18.434253],[82.390568,18.439513],[82.405641,18.459396],[82.420474,18.472453],[82.428606,18.477675],[82.435129,18.484767],[82.437364,18.492787],[82.437397,18.492904],[82.445388,18.505055],[82.458186,18.519159],[82.461655,18.524755],[82.482239,18.54455],[82.489835,18.546195],[82.493542,18.54144],[82.486061,18.539272],[82.483973,18.537142],[82.489701,18.522838],[82.506442,18.513857],[82.507397,18.509579],[82.510262,18.50956],[82.512419,18.513313],[82.515651,18.515898],[82.522517,18.511471],[82.525757,18.513477],[82.531376,18.511778],[82.532149,18.507152],[82.530293,18.504847],[82.532745,18.497664],[82.528312,18.495139],[82.527776,18.490398],[82.532734,18.490731],[82.535783,18.485628],[82.529263,18.480277],[82.533974,18.478462],[82.535772,18.476142],[82.530031,18.469697],[82.526018,18.467224],[82.524401,18.463819],[82.531453,18.46073],[82.528704,18.458484],[82.529481,18.455069],[82.531446,18.45373],[82.534979,18.455277],[82.537661,18.450929],[82.537064,18.448327],[82.538436,18.442303],[82.541368,18.442065],[82.543878,18.44465],[82.547284,18.446087],[82.54663,18.451171],[82.552488,18.449297],[82.556016,18.449798],[82.558397,18.446899],[82.562046,18.445666],[82.55935,18.441924],[82.558508,18.434526],[82.55433,18.432174],[82.553416,18.425298],[82.547978,18.424915],[82.544213,18.41638],[82.545283,18.412268],[82.548863,18.411502],[82.548627,18.409944],[82.54091,18.404892],[82.540607,18.401536],[82.543474,18.397654],[82.550648,18.397152],[82.557754,18.39163],[82.560028,18.395198],[82.564331,18.396633],[82.573523,18.392129],[82.578903,18.392338],[82.583865,18.388036],[82.585647,18.385487],[82.589121,18.387024],[82.597481,18.385311],[82.601951,18.378699],[82.607335,18.379833],[82.60882,18.376929],[82.609182,18.374267],[82.606007,18.370814],[82.607618,18.368201],[82.605941,18.364459],[82.606893,18.362254],[82.614003,18.36106],[82.616984,18.359486],[82.61961,18.354734],[82.616198,18.349952],[82.607471,18.350686],[82.604842,18.349137],[82.605918,18.341906],[82.608658,18.339062],[82.612174,18.328692],[82.61049,18.325581],[82.604038,18.324223],[82.598018,18.327777],[82.594304,18.324208],[82.591615,18.319715],[82.586408,18.317656],[82.584794,18.315121],[82.588141,18.309375],[82.59106,18.309136],[82.596198,18.31038],[82.599298,18.300307],[82.598689,18.296147],[82.595943,18.293151],[82.593968,18.289342],[82.596769,18.286727],[82.596831,18.283436],[82.592648,18.281609],[82.589117,18.278495],[82.591559,18.274956],[82.59562,18.274187],[82.597052,18.270541],[82.597582,18.265155],[82.606654,18.262918],[82.60916,18.260478],[82.617871,18.257719],[82.620199,18.254986],[82.619417,18.252328],[82.621799,18.247927],[82.62878,18.24488],[82.635278,18.237278],[82.640049,18.237076],[82.645559,18.24347],[82.653688,18.24898],[82.655961,18.253252],[82.653228,18.265579],[82.657484,18.272329],[82.660596,18.280632],[82.664846,18.287262],[82.667185,18.295064],[82.673286,18.299081],[82.680937,18.30066],[82.690129,18.301249],[82.698675,18.305546],[82.702085,18.305814],[82.706438,18.304757],[82.708837,18.308267],[82.71088,18.316934],[82.719246,18.321286],[82.725587,18.323281],[82.733647,18.320059],[82.742661,18.321747],[82.741123,18.326387],[82.746144,18.328387],[82.754739,18.328344],[82.758983,18.331789],[82.75936,18.336822],[82.762767,18.338309],[82.766824,18.335683],[82.77017,18.336308],[82.775377,18.339581],[82.779747,18.348169],[82.792511,18.362621],[82.786219,18.379355],[82.789265,18.380953],[82.795906,18.386586],[82.795035,18.393001],[82.795757,18.39861],[82.801569,18.403376],[82.795663,18.408206],[82.789452,18.407825],[82.789883,18.41262],[82.786723,18.417837],[82.784474,18.423857],[82.784479,18.428021],[82.795367,18.435072],[82.800234,18.441457],[82.80742,18.447719],[82.826601,18.446869],[82.827002,18.441722],[82.838404,18.434503],[82.844012,18.432627],[82.845239,18.422686],[82.848036,18.420194],[82.853174,18.418203],[82.85689,18.423445],[82.864235,18.419248],[82.871219,18.416381],[82.878261,18.41467],[82.885326,18.420296],[82.887611,18.423109],[82.892867,18.421233],[82.896606,18.414745],[82.899036,18.407108],[82.899197,18.40075],[82.893177,18.387167],[82.900131,18.375458],[82.906804,18.367906],[82.911036,18.364522],[82.91666,18.368046],[82.91994,18.366],[82.923412,18.365032],[82.928327,18.368368],[82.935863,18.369631],[82.940976,18.360032],[82.953772,18.359144],[82.960314,18.363026],[82.968059,18.36592],[82.97705,18.366273],[82.984706,18.363619],[82.986671,18.369686],[82.989454,18.37451],[82.994366,18.374596],[82.995873,18.378189],[83.000204,18.383681],[83.001118,18.383511],[83.005376,18.383546],[83.011721,18.385612],[83.019851,18.386913],[83.025421,18.393196],[83.028286,18.392176],[83.031996,18.385169],[83.040121,18.381993],[83.045213,18.378583],[83.047751,18.378831],[83.06163,18.38405],[83.064437,18.386012],[83.074055,18.398142],[83.074716,18.400997],[83.074059,18.401892],[83.071954,18.404431],[83.067262,18.407728],[83.064049,18.413063],[83.06351,18.416801],[83.068664,18.422173],[83.068828,18.427906],[83.070288,18.429545],[83.068028,18.437276],[83.066471,18.43771],[83.056772,18.433505],[83.050817,18.426945],[83.045655,18.427595],[83.043749,18.428719],[83.041515,18.431971],[83.046398,18.435341],[83.047216,18.440664],[83.045515,18.443446],[83.040551,18.444792],[83.033044,18.445258],[83.026259,18.448985],[83.023618,18.452993],[83.024643,18.456241],[83.032754,18.462258],[83.034923,18.465489],[83.042337,18.469327],[83.045207,18.47169],[83.052046,18.480651],[83.059972,18.486033],[83.063363,18.496649],[83.068527,18.502942],[83.073283,18.506082],[83.076972,18.510549],[83.081307,18.523224],[83.090457,18.535643],[83.096642,18.54123],[83.097463,18.546379],[83.095178,18.549515],[83.079614,18.550923],[83.06551,18.543118],[83.059319,18.543336],[83.053262,18.547738],[83.04837,18.553278],[83.040616,18.556268],[83.041837,18.566644],[83.033591,18.572639],[83.034987,18.57629],[83.039269,18.580122],[83.041879,18.58404],[83.044635,18.585891],[83.050163,18.585631],[83.052882,18.586501],[83.059244,18.591394],[83.062069,18.594795],[83.060217,18.601367],[83.057014,18.603546],[83.049208,18.605015],[83.050273,18.610394],[83.052518,18.614718],[83.057764,18.622148],[83.061164,18.623464],[83.072215,18.622649],[83.074895,18.621116],[83.077587,18.616995],[83.077352,18.613895],[83.079024,18.610197],[83.083869,18.611784],[83.087675,18.616133],[83.093299,18.627119],[83.09414,18.630206],[83.088087,18.640985],[83.086651,18.647841],[83.086732,18.655126],[83.088685,18.660085],[83.092136,18.663995],[83.09644,18.665238],[83.105925,18.661068],[83.114888,18.663275],[83.125056,18.659765],[83.13106,18.662024],[83.140416,18.669273],[83.147036,18.669048],[83.150282,18.675025],[83.154944,18.700892],[83.158166,18.70273],[83.164585,18.704568],[83.173192,18.700921],[83.175286,18.706567],[83.17566,18.70995],[83.174731,18.715078],[83.171852,18.721847],[83.174793,18.724209],[83.192022,18.733669],[83.194613,18.733457],[83.197219,18.731232],[83.199983,18.730778],[83.203945,18.733299],[83.205738,18.73275],[83.206839,18.727621],[83.208579,18.727248],[83.211328,18.727796],[83.21307,18.724092],[83.21479,18.72572],[83.220549,18.742679],[83.222459,18.745398],[83.228342,18.75024],[83.230337,18.753241],[83.23099,18.756165],[83.230688,18.7568],[83.229868,18.760193],[83.225308,18.767104],[83.225043,18.771704],[83.227376,18.773962],[83.230689,18.77408],[83.237282,18.772299],[83.247532,18.766955],[83.253066,18.766285],[83.263381,18.767024],[83.267332,18.765805],[83.274073,18.765225],[83.277866,18.768027],[83.279678,18.771388],[83.279216,18.775522],[83.277121,18.778954],[83.277877,18.783472],[83.283208,18.79354],[83.287447,18.79777],[83.300045,18.800707],[83.308289,18.806077],[83.312159,18.807043],[83.321979,18.803991],[83.326202,18.804036],[83.330957,18.806472],[83.33048,18.809753],[83.331206,18.812785],[83.332964,18.816027],[83.336154,18.818897],[83.351491,18.825973],[83.358018,18.829813],[83.36139,18.835665],[83.366786,18.840167],[83.370174,18.840273],[83.380733,18.829411],[83.384237,18.830148],[83.391018,18.834271],[83.39439,18.83398],[83.404196,18.838909],[83.406606,18.841741],[83.404824,18.857387],[83.405739,18.860756],[83.407743,18.861811],[83.414688,18.861855],[83.416631,18.862625],[83.418605,18.864948],[83.419201,18.867512],[83.41372,18.873475],[83.409651,18.875213],[83.402142,18.876331],[83.395688,18.879144],[83.393261,18.881371],[83.393549,18.883598],[83.386777,18.888371],[83.381763,18.89398],[83.380348,18.897903],[83.382315,18.899995],[83.391112,18.905294],[83.391763,18.907746],[83.388854,18.909867],[83.384713,18.91051],[83.375017,18.908391],[83.3684,18.909205],[83.364376,18.912831],[83.358035,18.923912],[83.355537,18.928957],[83.354459,18.934823],[83.355768,18.940089],[83.356881,18.941785],[83.36309,18.940986],[83.37062,18.938044],[83.371928,18.930779],[83.378862,18.925089],[83.381697,18.924804],[83.384187,18.925791],[83.387513,18.929523],[83.388089,18.931289],[83.37528,18.941461],[83.371753,18.945882],[83.368694,18.956043],[83.368918,18.961319],[83.366717,18.962625],[83.362247,18.962364],[83.353607,18.964986],[83.352863,18.964193],[83.352645,18.95317],[83.351129,18.943095],[83.347703,18.941153],[83.347381,18.939836],[83.347442,18.934153],[83.349215,18.926371],[83.346932,18.924171],[83.342407,18.923789],[83.336881,18.924866],[83.329893,18.931191],[83.327776,18.933752],[83.326741,18.93636],[83.326368,18.941531],[83.329062,18.943947],[83.338988,18.945557],[83.340883,18.947238],[83.340308,18.951273],[83.338902,18.953708],[83.336751,18.954721],[83.334901,18.955793],[83.333861,18.95805],[83.333496,18.960808],[83.334773,18.965212],[83.333419,18.96684],[83.327672,18.969187],[83.321191,18.974467],[83.317462,18.984635],[83.316984,18.988156],[83.315593,18.99105],[83.312176,18.994781],[83.313126,18.997461],[83.315677,18.998742],[83.324265,18.998199],[83.333223,18.996622],[83.337021,18.99599],[83.339047,18.997882],[83.338597,19.000374],[83.337929,19.004757],[83.338502,19.006223],[83.340545,19.007637],[83.342802,19.0145],[83.348437,19.016819],[83.348743,19.016944],[83.354168,19.017676],[83.362802,19.01719],[83.365829,19.013951],[83.370153,19.002572],[83.375315,19.00147],[83.385026,19.002573],[83.392534,19.005128],[83.396576,19.007871],[83.400768,19.006996],[83.403851,19.003698],[83.409213,19.004254],[83.410133,19.003041],[83.412449,19.001083],[83.414717,19.00297],[83.416652,19.004073],[83.41839,19.000503],[83.419228,18.996629],[83.416594,18.987806],[83.422644,18.985802],[83.440737,18.969378],[83.44429,18.965873],[83.447814,18.958229],[83.450482,18.955761],[83.454665,18.953674],[83.45903,18.9525],[83.463287,18.953633],[83.470076,18.967236],[83.470049,18.971595],[83.469282,18.975918],[83.466737,18.97844],[83.466108,18.980457],[83.468085,18.988755],[83.465513,18.990468],[83.458025,18.990377],[83.456882,19.000553],[83.456002,19.003865],[83.4563,19.007552],[83.457956,19.009804],[83.46107,19.010379],[83.46626,19.010026],[83.475297,19.006859],[83.479624,19.006928],[83.482372,19.008259],[83.484429,19.01201],[83.48289,19.019452],[83.485738,19.029092],[83.485131,19.033422],[83.473215,19.044053],[83.470562,19.05179],[83.471042,19.060444],[83.464463,19.063915],[83.465123,19.06761],[83.466899,19.071292],[83.466023,19.074926],[83.467161,19.07746],[83.471595,19.079179],[83.475227,19.077673],[83.478035,19.078123],[83.479779,19.080539],[83.480996,19.085548],[83.484743,19.083113],[83.485925,19.078043],[83.48818,19.074294],[83.500258,19.062796],[83.501388,19.060949],[83.504078,19.063362],[83.508113,19.069913],[83.51063,19.072506],[83.513144,19.072618],[83.513923,19.062179],[83.516232,19.057794],[83.518486,19.05589],[83.517559,19.047994],[83.517842,19.044079],[83.520982,19.038245],[83.521431,19.032715],[83.515944,19.029907],[83.511686,19.034126],[83.507064,19.035],[83.501315,19.034718],[83.500387,19.0319],[83.500695,19.025959],[83.503175,19.019038],[83.512365,19.018044],[83.523067,19.012887],[83.539147,19.013417],[83.540859,19.02044],[83.540838,19.027353],[83.542569,19.036573],[83.543532,19.038297],[83.550513,19.044788],[83.555465,19.052899],[83.56003,19.055127],[83.559216,19.058303],[83.55259,19.06996],[83.552577,19.077278],[83.554158,19.081705],[83.559215,19.085719],[83.562686,19.086003],[83.568407,19.074117],[83.5681,19.071863],[83.564841,19.067903],[83.564156,19.063759],[83.565376,19.059312],[83.568783,19.058321],[83.575082,19.060201],[83.586496,19.057749],[83.588508,19.063098],[83.589508,19.070698],[83.589901,19.083548],[83.592141,19.087627],[83.595331,19.090964],[83.600906,19.092784],[83.607551,19.092703],[83.61212,19.096089],[83.612091,19.100762],[83.604461,19.113057],[83.601987,19.118428],[83.601346,19.123327],[83.601988,19.128161],[83.608197,19.135521],[83.612887,19.138848],[83.618278,19.138763],[83.621762,19.141635],[83.626788,19.149689],[83.630387,19.152496],[83.627903,19.156426],[83.628824,19.159703],[83.630929,19.161424],[83.636169,19.157546],[83.637847,19.152605],[83.6361,19.139339],[83.637514,19.134843],[83.640972,19.132288],[83.653224,19.130976],[83.657105,19.129757],[83.658392,19.12629],[83.65742,19.122721],[83.653946,19.122393],[83.652387,19.12119],[83.653548,19.116631],[83.655458,19.113854],[83.655603,19.110172],[83.657926,19.108025],[83.66515,19.095723],[83.665778,19.090078],[83.66453,19.082929],[83.667373,19.077739],[83.670288,19.0745],[83.674406,19.072472],[83.684064,19.0605],[83.692069,19.052008],[83.701852,19.029273],[83.704717,19.024624],[83.707516,19.023185],[83.72451,19.022621],[83.728957,19.021595],[83.730914,19.020077],[83.727545,19.012487],[83.722469,19.010325],[83.7171,19.010139],[83.712696,19.007646],[83.712055,19.003504],[83.712397,19.000684],[83.712543,19.000211],[83.713423,18.993463],[83.716472,18.992025],[83.719092,18.993178],[83.72459,18.990772],[83.733978,18.983816],[83.735153,18.974365],[83.737739,18.968457],[83.744199,18.947314],[83.747638,18.942418],[83.74912,18.938654],[83.749857,18.931522],[83.753534,18.926567],[83.763866,18.925104],[83.770553,18.914982],[83.775216,18.910814],[83.778195,18.910045],[83.778993,18.909758],[83.785101,18.912853],[83.787766,18.916189],[83.784844,18.927498],[83.777578,18.941363],[83.772955,18.944789],[83.769175,18.952956],[83.762897,18.950389],[83.758065,18.952722],[83.756055,18.959704],[83.756697,18.966756],[83.75366,18.97153],[83.749408,18.975352],[83.74725,18.986706],[83.748758,18.992132],[83.756923,18.998922],[83.758289,19.000667],[83.758946,19.001532],[83.760087,19.001583],[83.761221,19.001414],[83.762366,19.001619],[83.763498,19.001864],[83.764622,19.002164],[83.765451,19.002813],[83.766118,19.003724],[83.76712,19.004309],[83.768237,19.004719],[83.769399,19.005034],[83.770561,19.005305],[83.771731,19.005567],[83.772903,19.005856],[83.774057,19.00621],[83.775152,19.006682],[83.776145,19.007332],[83.777092,19.008026],[83.777858,19.008845],[83.778322,19.009866],[83.77878,19.01089],[83.779229,19.011912],[83.779706,19.012916],[83.780251,19.013901],[83.780871,19.01484],[83.781586,19.015704],[83.7824,19.016491],[83.783303,19.017198],[83.784299,19.017763],[83.785391,19.018127],[83.786544,19.018252],[83.788019,19.018187],[83.789154,19.018036],[83.790292,19.017821],[83.79141,19.017576],[83.792524,19.017343],[83.793631,19.017044],[83.79469,19.01662],[83.795964,19.016071],[83.796608,19.006607],[83.798819,19.00065],[83.810188,18.990137],[83.815734,18.976757],[83.818307,18.973201],[83.822445,18.961575],[83.823725,18.95706],[83.821081,18.942009],[83.822563,18.938484],[83.826571,18.934551],[83.828832,18.93043],[83.82461,18.917888],[83.826132,18.915611],[83.83074,18.913965],[83.842578,18.917804],[83.845395,18.917106],[83.847947,18.912577],[83.849307,18.906172],[83.849988,18.8968],[83.844383,18.881302],[83.843696,18.877702],[83.844795,18.87331],[83.851358,18.860031],[83.855667,18.856267],[83.866766,18.851675],[83.872043,18.847718],[83.874573,18.832165],[83.877885,18.827157],[83.881608,18.826504],[83.89093,18.828433],[83.892337,18.826569],[83.893056,18.818804],[83.894575,18.814178],[83.898344,18.815644],[83.903171,18.823639],[83.90623,18.825188],[83.909667,18.825685],[83.915442,18.825161],[83.92828,18.82036],[83.930322,18.817332],[83.934073,18.815363],[83.941255,18.815675],[83.943388,18.811957],[83.94427,18.808034],[83.947457,18.80544],[83.951367,18.805134],[83.956687,18.805889],[83.958873,18.808888],[83.963281,18.811905],[83.971686,18.812958],[83.977039,18.812686],[83.989975,18.808885],[83.999172,18.813535],[84.007608,18.813679],[84.015024,18.81309],[84.020143,18.809542],[84.023531,18.810313],[84.02728,18.806543],[84.029947,18.807554],[84.031362,18.810059],[84.034691,18.811115],[84.038336,18.809191],[84.038398,18.804372],[84.04193,18.799065],[84.046352,18.796387],[84.055565,18.79246],[84.05522,18.788848],[84.05735,18.786304],[84.055687,18.7834],[84.056831,18.779657],[84.061192,18.777385],[84.066239,18.777104],[84.06809,18.7717],[84.073406,18.760757],[84.077525,18.758829],[84.085503,18.757954],[84.086961,18.75519],[84.089403,18.753734],[84.093197,18.754276],[84.096408,18.756202],[84.099271,18.754337],[84.108326,18.76177],[84.115201,18.763892],[84.121693,18.764239],[84.126525,18.762133],[84.130542,18.757394],[84.137093,18.76198],[84.13554,18.770373],[84.13895,18.773895],[84.142582,18.775871],[84.148004,18.776793],[84.155691,18.780855],[84.158938,18.784847],[84.162489,18.785099],[84.166913,18.784143],[84.167846,18.781431],[84.165748,18.778305],[84.170192,18.777688],[84.174593,18.779258],[84.187383,18.778105],[84.189061,18.786634],[84.194076,18.788707],[84.197887,18.78587],[84.21137,18.791764],[84.224232,18.796399],[84.228974,18.795612],[84.231817,18.793412],[84.234506,18.79631],[84.238213,18.794785],[84.23867,18.78927],[84.253531,18.782593],[84.259705,18.781672],[84.266412,18.784019],[84.271722,18.789703],[84.275687,18.789494],[84.280707,18.791674],[84.282823,18.79636],[84.286046,18.798853],[84.291404,18.799999],[84.307856,18.79095],[84.311805,18.789945],[84.314645,18.790881],[84.316335,18.787662],[84.319955,18.788421],[84.320418,18.791406],[84.323188,18.795392],[84.334417,18.798887],[84.339685,18.801244],[84.341046,18.804271],[84.336988,18.813716],[84.336757,18.81819],[84.351538,18.82113],[84.348208,18.827426],[84.349876,18.830676],[84.351698,18.831859],[84.352606,18.835928],[84.351768,18.841873],[84.345496,18.845358],[84.343407,18.850541],[84.341579,18.860658],[84.341565,18.867075],[84.341841,18.872928],[84.343443,18.875775],[84.347218,18.87499],[84.3518,18.871841],[84.354396,18.869065],[84.358882,18.860016],[84.361534,18.860615],[84.362637,18.861756],[84.365749,18.860457],[84.36983,18.860189],[84.376748,18.868084],[84.378865,18.872484],[84.37898,18.876319],[84.373647,18.880792],[84.36873,18.881762],[84.367035,18.880981],[84.361257,18.884129],[84.359248,18.886851],[84.358854,18.892246],[84.362155,18.891981],[84.378747,18.884519],[84.381478,18.885586],[84.385466,18.883191],[84.390615,18.87838],[84.393603,18.88081],[84.395018,18.886764],[84.393486,18.892113],[84.386431,18.89454],[84.381611,18.897912],[84.37507,18.898384],[84.372302,18.902258],[84.372714,18.905288],[84.377153,18.904842],[84.381461,18.903073],[84.385835,18.902287],[84.394255,18.898929],[84.401346,18.894951],[84.405199,18.895199],[84.417176,18.899713],[84.419452,18.903018],[84.418084,18.907336],[84.415056,18.910177],[84.413517,18.915177],[84.416921,18.917151],[84.425332,18.909725],[84.427686,18.913936],[84.436729,18.922729],[84.427312,18.93872],[84.424482,18.942301],[84.422939,18.947026],[84.427632,18.958324],[84.441873,18.972108],[84.445047,18.974655],[84.447955,18.975883],[84.442026,18.985748],[84.435276,18.991544],[84.435249,18.991567],[84.433727,18.992872],[84.432855,18.998039],[84.433415,19.000653],[84.432572,19.004212],[84.427346,19.009695],[84.425354,19.013851],[84.422728,19.01697],[84.421955,19.021188],[84.422444,19.022687],[84.427335,19.021358],[84.429492,19.017374],[84.43711,19.010042],[84.440281,19.010732],[84.444689,19.006345],[84.451362,19.003453],[84.455445,19.000658],[84.459484,18.997248],[84.470126,18.992225],[84.478935,18.990168],[84.480344,18.991586],[84.482965,19.000668],[84.482804,19.004948],[84.485108,19.016781],[84.489333,19.018803],[84.496656,19.029827],[84.505022,19.033752],[84.510337,19.038135],[84.514355,19.044311],[84.517152,19.046329],[84.534364,19.047587],[84.538687,19.053012],[84.542022,19.054223],[84.55492,19.054966],[84.560814,19.056287],[84.566917,19.068412],[84.573321,19.073893],[84.575152,19.072328],[84.575717,19.0695],[84.577791,19.06927],[84.583633,19.073418],[84.585299,19.070995],[84.582295,19.046457],[84.580855,19.044031],[84.582521,19.036123],[84.585324,19.027857],[84.594877,19.021961],[84.597315,19.022358],[84.604178,19.02871],[84.607668,19.041872],[84.614748,19.054334],[84.616629,19.05566],[84.621348,19.055651],[84.619524,19.058658],[84.618676,19.062639],[84.619878,19.063738],[84.630448,19.064589],[84.632565,19.061705],[84.633242,19.059222],[84.637203,19.058519],[84.641525,19.064465],[84.643981,19.066073],[84.654862,19.065025],[84.661653,19.061258],[84.666138,19.072574],[84.670326,19.073379],[84.671714,19.075218],[84.666735,19.079844],[84.661288,19.089904],[84.655852,19.093088],[84.651753,19.093318],[84.641881,19.087563],[84.64076,19.083524],[84.638593,19.081504],[84.631578,19.083301],[84.626973,19.085384],[84.623717,19.094046],[84.623926,19.098844],[84.621556,19.101155],[84.616786,19.099714],[84.612714,19.101449],[84.610086,19.10538],[84.602931,19.123981],[84.598833,19.129875],[84.598998,19.132589],[84.601787,19.132303],[84.61653,19.12622],[84.632672,19.127064],[84.636457,19.129486],[84.647501,19.131035],[84.648812,19.133573],[84.654406,19.129174],[84.66054,19.131709],[84.664416,19.130198],[84.668279,19.130662],[84.671601,19.136946],[84.67299,19.144048],[84.672492,19.153461],[84.670365,19.156236],[84.672104,19.165472],[84.676385,19.164429],[84.68042,19.165632]],[[82.206323,16.747473],[82.19829,16.738213],[82.189871,16.739094],[82.184175,16.736101],[82.188641,16.727317],[82.20314,16.719506],[82.212097,16.718754],[82.225005,16.720847],[82.236969,16.715762],[82.256106,16.702608],[82.263019,16.700903],[82.274254,16.701723],[82.285913,16.704317],[82.294736,16.708653],[82.304385,16.717246],[82.309007,16.725328],[82.312359,16.734028],[82.310596,16.7445],[82.307274,16.751521],[82.303242,16.754173],[82.298617,16.752115],[82.294606,16.74565],[82.290246,16.733898],[82.273242,16.730503],[82.254498,16.730061],[82.236587,16.728263],[82.229971,16.729388],[82.224308,16.736265],[82.220518,16.738977],[82.219557,16.742297],[82.229315,16.755881],[82.231346,16.761353],[82.2272,16.762688],[82.220655,16.759223],[82.216755,16.754711],[82.206323,16.747473]],[[79.845055,13.330697],[79.841371,13.326372],[79.8428,13.323312],[79.846073,13.322953],[79.845055,13.330697]]]]},"properties":{"cartodb_id":3,"state_code":28,"name":"Andhra Pradesh"}},
+ {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[78.34088,19.883615],[78.351327,19.88184],[78.370422,19.883346],[78.379149,19.879733],[78.388848,19.879703],[78.389673,19.874372],[78.388883,19.864121],[78.390691,19.856213],[78.390645,19.853215],[78.39395,19.846705],[78.402384,19.836943],[78.413779,19.830435],[78.433447,19.8237],[78.449385,19.819844],[78.469482,19.816847],[78.481036,19.817011],[78.489156,19.807863],[78.494337,19.799196],[78.498808,19.793852],[78.508559,19.793125],[78.514515,19.801887],[78.517292,19.814976],[78.52413,19.820588],[78.531195,19.822351],[78.562889,19.81634],[78.57869,19.814543],[78.590001,19.81245],[78.596781,19.816171],[78.600308,19.818109],[78.608696,19.818273],[78.6194,19.814049],[78.624399,19.809511],[78.640296,19.804603],[78.653437,19.802299],[78.691529,19.790835],[78.701092,19.790606],[78.706982,19.78649],[78.714397,19.773648],[78.721678,19.767761],[78.729945,19.769936],[78.737084,19.773814],[78.743584,19.780392],[78.748327,19.780624],[78.757511,19.778269],[78.768503,19.776623],[78.778502,19.780361],[78.790189,19.779758],[78.802269,19.769614],[78.808521,19.761128],[78.812958,19.759054],[78.822503,19.761473],[78.830649,19.761452],[78.843675,19.763165],[78.84972,19.760103],[78.851016,19.759449],[78.858979,19.739141],[78.862331,19.732457],[78.862815,19.720906],[78.867081,19.707098],[78.868905,19.697974],[78.869422,19.687921],[78.868641,19.680728],[78.864552,19.670156],[78.864228,19.657568],[78.883413,19.658081],[78.896459,19.656564],[78.90928,19.665855],[78.921413,19.669038],[78.940524,19.663513],[78.949131,19.666484],[78.959753,19.664763],[78.967233,19.660136],[78.97453,19.650617],[78.97358,19.640775],[78.970252,19.630965],[78.968443,19.618754],[78.971208,19.605964],[78.976928,19.598729],[78.983909,19.591905],[78.986123,19.586583],[78.983456,19.581438],[78.974578,19.574955],[78.970286,19.571788],[78.960037,19.564221],[78.955135,19.558982],[78.960139,19.553351],[78.970447,19.551861],[78.979141,19.551441],[78.98409,19.552469],[78.991979,19.558593],[78.998479,19.563587],[79.001214,19.562576],[79.005712,19.56093],[79.017847,19.545361],[79.024018,19.541568],[79.044514,19.546619],[79.057234,19.546907],[79.065829,19.540379],[79.069113,19.532919],[79.079598,19.530277],[79.1024,19.532185],[79.108638,19.529668],[79.108135,19.521095],[79.110536,19.514481],[79.118614,19.511541],[79.132272,19.50826],[79.146097,19.502911],[79.16284,19.487392],[79.174978,19.469654],[79.183689,19.46259],[79.194947,19.460624],[79.22466,19.466447],[79.228883,19.469741],[79.226629,19.477517],[79.214705,19.486702],[79.212781,19.493558],[79.214002,19.500534],[79.221639,19.512457],[79.229364,19.518877],[79.237932,19.522609],[79.242575,19.528668],[79.244303,19.534625],[79.245294,19.543897],[79.244103,19.55277],[79.24571,19.561308],[79.256049,19.57949],[79.254619,19.588651],[79.249726,19.595113],[79.243634,19.601304],[79.243023,19.611234],[79.249805,19.614291],[79.261168,19.612966],[79.273829,19.608448],[79.299221,19.598547],[79.310843,19.591996],[79.315642,19.583876],[79.320286,19.567421],[79.327529,19.573643],[79.335719,19.575582],[79.346936,19.575682],[79.375117,19.573178],[79.377285,19.563513],[79.386819,19.557837],[79.395096,19.550926],[79.407979,19.541862],[79.419761,19.535536],[79.429347,19.534911],[79.436447,19.537173],[79.447447,19.5356],[79.464392,19.521088],[79.471345,19.511164],[79.476658,19.499625],[79.486284,19.505997],[79.499563,19.507388],[79.51968,19.520266],[79.522111,19.524553],[79.522231,19.538987],[79.521091,19.54292],[79.521254,19.544117],[79.532497,19.548227],[79.54128,19.550247],[79.548958,19.550705],[79.551042,19.544903],[79.551502,19.536212],[79.554002,19.528306],[79.558811,19.522282],[79.571932,19.513174],[79.579781,19.508929],[79.589013,19.505347],[79.597697,19.504046],[79.604424,19.506085],[79.607216,19.510263],[79.608805,19.51683],[79.609309,19.52337],[79.613572,19.541733],[79.617268,19.551439],[79.622176,19.560879],[79.627763,19.567353],[79.646103,19.577255],[79.659015,19.578958],[79.671471,19.579447],[79.684435,19.57886],[79.691214,19.581465],[79.702126,19.583407],[79.711565,19.583543],[79.719383,19.585657],[79.736376,19.598899],[79.746805,19.605472],[79.76075,19.60467],[79.77279,19.602519],[79.784049,19.60006],[79.791952,19.595987],[79.792831,19.59205],[79.799832,19.582514],[79.811771,19.579209],[79.817657,19.576299],[79.823154,19.571483],[79.826115,19.563983],[79.827186,19.554849],[79.829728,19.546827],[79.8348,19.539544],[79.862842,19.519719],[79.870417,19.516216],[79.876844,19.507598],[79.884866,19.503359],[79.908911,19.49918],[79.917712,19.495049],[79.924485,19.488273],[79.930245,19.480333],[79.939579,19.471891],[79.943989,19.469739],[79.946912,19.467299],[79.951718,19.461633],[79.952922,19.453759],[79.952487,19.443621],[79.965989,19.428786],[79.976763,19.412381],[79.979804,19.403952],[79.979358,19.394531],[79.977516,19.385082],[79.974009,19.377548],[79.973298,19.363879],[79.971294,19.353685],[79.963922,19.337592],[79.964153,19.327502],[79.970423,19.309622],[79.968578,19.300578],[79.955728,19.291952],[79.95196,19.287226],[79.938692,19.262435],[79.926948,19.229569],[79.926118,19.218198],[79.929295,19.206607],[79.942065,19.187096],[79.949254,19.179151],[79.950039,19.173881],[79.947526,19.167685],[79.932946,19.164212],[79.929122,19.160405],[79.912778,19.145069],[79.877975,19.12597],[79.869893,19.119096],[79.864814,19.10739],[79.866839,19.094269],[79.867891,19.063315],[79.8638,19.04559],[79.866373,19.038035],[79.877829,19.038961],[79.887913,19.044807],[79.897678,19.048874],[79.909775,19.051416],[79.922955,19.050811],[79.932841,19.045964],[79.939931,19.03319],[79.941356,19.025213],[79.939661,18.999263],[79.938235,18.978385],[79.939096,18.975182],[79.942793,18.961263],[79.947856,18.941327],[79.948267,18.919477],[79.947062,18.900477],[79.947899,18.881156],[79.945944,18.862689],[79.940283,18.848851],[79.932454,18.841361],[79.92777,18.840019],[79.911027,18.838674],[79.900918,18.834639],[79.916052,18.810539],[79.923223,18.801214],[79.938959,18.788346],[79.947064,18.785715],[79.957153,18.783862],[79.988575,18.778272],[79.999966,18.777536],[80.01615,18.772623],[80.019407,18.770813],[80.021566,18.764189],[80.023606,18.761087],[80.025794,18.755094],[80.036744,18.7528],[80.039956,18.750556],[80.053476,18.725084],[80.060387,18.721983],[80.069036,18.72071],[80.072628,18.717471],[80.075053,18.712933],[80.081863,18.706799],[80.086061,18.705586],[80.089271,18.706701],[80.091614,18.705098],[80.094116,18.701828],[80.107749,18.689266],[80.113756,18.681845],[80.11801,18.680523],[80.123195,18.680193],[80.125624,18.683464],[80.128503,18.685547],[80.138075,18.68975],[80.143813,18.691153],[80.149484,18.690611],[80.155955,18.697601],[80.159441,18.699645],[80.165326,18.700307],[80.169233,18.6984],[80.171874,18.694679],[80.174653,18.684472],[80.178224,18.681754],[80.182904,18.680324],[80.196214,18.68002],[80.19822,18.683403],[80.198927,18.688064],[80.201366,18.692949],[80.209172,18.701861],[80.215152,18.704881],[80.221634,18.705555],[80.227293,18.703631],[80.23262,18.700601],[80.237272,18.701989],[80.24285,18.704872],[80.248996,18.704679],[80.25396,18.705783],[80.267674,18.718564],[80.274848,18.722437],[80.278229,18.71798],[80.285223,18.715455],[80.296174,18.69954],[80.303668,18.690202],[80.306802,18.683787],[80.315181,18.656915],[80.322387,18.640966],[80.326719,18.626435],[80.338886,18.601367],[80.34411,18.595298],[80.346225,18.592999],[80.349288,18.591235],[80.355968,18.593292],[80.360346,18.595745],[80.363392,18.598513],[80.364944,18.603145],[80.367177,18.606976],[80.369967,18.608541],[80.374394,18.609452],[80.377984,18.607867],[80.389028,18.598436],[80.396862,18.604099],[80.400725,18.607802],[80.409567,18.612017],[80.423483,18.613645],[80.425048,18.615579],[80.457706,18.631218],[80.470511,18.627588],[80.475263,18.627702],[80.479691,18.628593],[80.487578,18.632554],[80.490999,18.633029],[80.495913,18.631648],[80.505669,18.62261],[80.51825,18.620644],[80.521387,18.618123],[80.522808,18.612295],[80.525565,18.60845],[80.529365,18.605771],[80.536121,18.598737],[80.536885,18.594854],[80.539581,18.591119],[80.548033,18.588019],[80.565396,18.577876],[80.569565,18.574688],[80.57557,18.566598],[80.589088,18.562618],[80.603211,18.554284],[80.60862,18.550253],[80.611686,18.545951],[80.618492,18.538785],[80.621523,18.531319],[80.628997,18.528416],[80.634662,18.523468],[80.640358,18.524154],[80.642674,18.520633],[80.644102,18.512566],[80.6412,18.508491],[80.642284,18.50398],[80.644514,18.499313],[80.65597,18.484482],[80.658499,18.477699],[80.670102,18.471191],[80.673853,18.468097],[80.677558,18.466672],[80.680942,18.463792],[80.681893,18.461802],[80.688274,18.459043],[80.690231,18.455519],[80.69086,18.450141],[80.699686,18.445981],[80.702739,18.44631],[80.706659,18.441556],[80.703029,18.440122],[80.700413,18.434411],[80.698793,18.42493],[80.720845,18.411347],[80.726089,18.415429],[80.730284,18.415949],[80.734354,18.414626],[80.736593,18.409447],[80.734946,18.405644],[80.731819,18.400911],[80.723547,18.392951],[80.724076,18.388608],[80.726455,18.384923],[80.730573,18.381493],[80.732058,18.37768],[80.730895,18.373607],[80.730583,18.36703],[80.734233,18.35599],[80.742639,18.344461],[80.750801,18.327976],[80.752311,18.322686],[80.75315,18.310946],[80.752495,18.308033],[80.759221,18.303349],[80.760814,18.297155],[80.764946,18.290614],[80.767394,18.288487],[80.771135,18.287638],[80.774288,18.284162],[80.781329,18.270897],[80.78535,18.26572],[80.789556,18.265571],[80.792842,18.264087],[80.796055,18.26005],[80.796219,18.255788],[80.795209,18.252579],[80.792227,18.24929],[80.777325,18.242409],[80.764827,18.23551],[80.741204,18.224784],[80.740204,18.21147],[80.740483,18.20023],[80.742516,18.177793],[80.753036,18.170941],[80.770385,18.169107],[80.794911,18.170345],[80.805942,18.17247],[80.818851,18.18465],[80.818685,18.189426],[80.825914,18.19328],[80.826773,18.198183],[80.825728,18.218888],[80.826318,18.225145],[80.825158,18.231309],[80.826895,18.237071],[80.832179,18.239671],[80.837567,18.240218],[80.842209,18.239391],[80.84761,18.234161],[80.867097,18.23215],[80.869763,18.227841],[80.875507,18.213461],[80.875281,18.209389],[80.87365,18.207203],[80.869313,18.204906],[80.864528,18.204639],[80.857174,18.206417],[80.856208,18.203851],[80.856954,18.19939],[80.860259,18.189707],[80.860657,18.184731],[80.859707,18.174612],[80.863838,18.157974],[80.863322,18.153083],[80.863816,18.149237],[80.866445,18.145442],[80.869663,18.142798],[80.870077,18.139007],[80.889181,18.138896],[80.901018,18.140827],[80.908823,18.141059],[80.920089,18.144901],[80.940076,18.1558],[80.943916,18.158936],[80.944809,18.161197],[80.952311,18.163489],[80.957954,18.170625],[80.962278,18.173379],[80.973652,18.174769],[80.981787,18.174569],[80.981802,18.173669],[80.981948,18.164741],[80.982899,18.158377],[80.980726,18.150018],[80.975668,18.144464],[80.957464,18.129657],[80.955664,18.123329],[80.957932,18.110198],[80.957973,18.104844],[80.956504,18.097801],[80.954122,18.09078],[80.952115,18.087566],[80.960594,18.078452],[80.971678,18.056408],[80.974151,18.050119],[80.970457,18.038195],[80.970833,18.037839],[80.972073,18.031121],[80.974369,18.025297],[80.976644,18.018503],[80.978118,18.009795],[80.979732,18.004115],[80.980846,17.999934],[80.982052,17.983591],[80.986298,17.956471],[80.98806,17.952578],[80.988833,17.946718],[80.99156,17.941824],[80.992906,17.9298],[81.000235,17.926283],[81.002629,17.92116],[81.010182,17.871758],[81.012671,17.845438],[81.020933,17.823812],[81.040834,17.796949],[81.046042,17.793473],[81.053633,17.791232],[81.064373,17.790091],[81.074224,17.791511],[81.082006,17.793575],[81.087965,17.802243],[81.095485,17.81061],[81.09749,17.818118],[81.106099,17.824356],[81.117424,17.830389],[81.129657,17.835601],[81.167961,17.859916],[81.184796,17.856437],[81.192202,17.856594],[81.200379,17.854441],[81.221923,17.840445],[81.228805,17.836761],[81.236362,17.833731],[81.262521,17.819624],[81.271848,17.817976],[81.306607,17.817401],[81.323556,17.819916],[81.33448,17.820012],[81.343871,17.818864],[81.353035,17.819206],[81.366013,17.81808],[81.376126,17.815759],[81.38295,17.813004],[81.392649,17.811185],[81.393506,17.814285],[81.402835,17.815816],[81.411304,17.813037],[81.417793,17.812569],[81.422993,17.81784],[81.42288,17.824153],[81.427952,17.828314],[81.434456,17.829007],[81.44241,17.823504],[81.446106,17.823042],[81.467986,17.832468],[81.47539,17.832696],[81.47865,17.830959],[81.481274,17.825689],[81.483139,17.817817],[81.487274,17.812543],[81.489741,17.810683],[81.494409,17.810452],[81.50489,17.814327],[81.51988,17.814431],[81.534301,17.818756],[81.562514,17.824285],[81.573171,17.833598],[81.577316,17.835792],[81.583441,17.835268],[81.602534,17.827075],[81.608324,17.823424],[81.619728,17.823354],[81.624293,17.83],[81.63257,17.832422],[81.640037,17.838433],[81.645141,17.844273],[81.651362,17.847275],[81.654721,17.854853],[81.654582,17.864236],[81.657627,17.870429],[81.66127,17.876146],[81.665508,17.880774],[81.671622,17.884875],[81.676616,17.886371],[81.686324,17.885548],[81.691804,17.887448],[81.696846,17.892765],[81.706457,17.883538],[81.707846,17.877748],[81.711753,17.86917],[81.734904,17.882144],[81.766859,17.901407],[81.771994,17.893468],[81.777441,17.886796],[81.790041,17.878842],[81.796141,17.870666],[81.801371,17.860696],[81.80301,17.85235],[81.796461,17.847438],[81.790972,17.840155],[81.772556,17.838112],[81.761563,17.826503],[81.747524,17.829768],[81.738208,17.82747],[81.732037,17.823374],[81.718138,17.813266],[81.712619,17.807723],[81.706865,17.792675],[81.700035,17.783893],[81.693428,17.778749],[81.683318,17.775291],[81.661641,17.773767],[81.650537,17.773777],[81.631697,17.770911],[81.627223,17.766693],[81.621459,17.755061],[81.617846,17.751772],[81.590595,17.738779],[81.585273,17.734212],[81.581615,17.726798],[81.580634,17.719972],[81.579743,17.711055],[81.579837,17.696059],[81.576871,17.691029],[81.568863,17.684841],[81.562329,17.674598],[81.554775,17.658921],[81.553014,17.653537],[81.542859,17.638666],[81.527653,17.62704],[81.520585,17.618131],[81.517981,17.611822],[81.517991,17.606609],[81.516625,17.603601],[81.511659,17.598163],[81.521408,17.59127],[81.529645,17.584079],[81.532635,17.580956],[81.532483,17.578061],[81.529045,17.572967],[81.522492,17.565619],[81.51786,17.557691],[81.51019,17.547736],[81.508232,17.539928],[81.506802,17.518502],[81.508294,17.509989],[81.50697,17.498473],[81.502419,17.485508],[81.502554,17.47451],[81.504675,17.468895],[81.504182,17.462346],[81.502254,17.457368],[81.490831,17.440763],[81.48108,17.428094],[81.466102,17.413975],[81.460408,17.406913],[81.454946,17.399276],[81.450374,17.390304],[81.442506,17.383535],[81.428978,17.380762],[81.427171,17.37497],[81.42452,17.370226],[81.415321,17.369997],[81.394075,17.363695],[81.380661,17.365717],[81.372819,17.368787],[81.358677,17.377003],[81.35214,17.38418],[81.35175,17.393855],[81.346159,17.398427],[81.339158,17.400511],[81.333519,17.399058],[81.331284,17.397554],[81.320446,17.383203],[81.310444,17.36816],[81.307651,17.360583],[81.298019,17.346008],[81.290635,17.338218],[81.276024,17.32846],[81.271078,17.330387],[81.266364,17.331096],[81.243124,17.331224],[81.227564,17.330119],[81.199113,17.335696],[81.190355,17.330549],[81.187018,17.322849],[81.180781,17.313797],[81.179435,17.304818],[81.179976,17.27508],[81.183492,17.268801],[81.189435,17.263057],[81.176876,17.250775],[81.171659,17.241052],[81.154413,17.240102],[81.127033,17.233013],[81.093337,17.222025],[81.071047,17.212469],[81.062682,17.218493],[81.055379,17.222152],[81.052712,17.212881],[81.04879,17.208289],[81.043677,17.2056],[81.040311,17.2007],[81.03501,17.195019],[81.014238,17.192776],[81.006552,17.190325],[81.000102,17.188013],[80.993982,17.187695],[80.975138,17.192801],[80.964805,17.196452],[80.956537,17.201548],[80.947837,17.208569],[80.939438,17.213195],[80.929422,17.213982],[80.922617,17.213403],[80.914123,17.209422],[80.916409,17.201019],[80.915777,17.192017],[80.917262,17.186225],[80.92183,17.181984],[80.923669,17.178053],[80.922798,17.168995],[80.920999,17.161742],[80.922126,17.1542],[80.918194,17.150702],[80.912788,17.149399],[80.904955,17.14902],[80.89766,17.149278],[80.885557,17.153394],[80.879102,17.154499],[80.875606,17.132837],[80.872282,17.126231],[80.863857,17.119642],[80.873039,17.104092],[80.871239,17.09392],[80.871396,17.089831],[80.865311,17.076834],[80.867722,17.059203],[80.863783,17.0524],[80.859411,17.048514],[80.853738,17.041195],[80.841357,17.034061],[80.838161,17.040679],[80.832093,17.046094],[80.812057,17.050818],[80.801674,17.0513],[80.794126,17.055859],[80.789018,17.057026],[80.774916,17.058501],[80.755389,17.063085],[80.734502,17.072726],[80.721374,17.073553],[80.703916,17.07641],[80.692741,17.076777],[80.69014,17.072354],[80.684385,17.069317],[80.676491,17.067956],[80.669331,17.064755],[80.657916,17.06259],[80.648319,17.063124],[80.64265,17.066869],[80.646447,17.073585],[80.646477,17.079907],[80.653086,17.085067],[80.664115,17.09194],[80.66537,17.095729],[80.654952,17.102415],[80.645095,17.104907],[80.633895,17.109634],[80.638417,17.117903],[80.632574,17.119752],[80.625206,17.123554],[80.621561,17.12448],[80.612511,17.123342],[80.603742,17.127378],[80.58886,17.138722],[80.582096,17.143039],[80.568776,17.145757],[80.55766,17.131351],[80.550258,17.12814],[80.544002,17.127511],[80.537777,17.121373],[80.528014,17.115865],[80.520308,17.11392],[80.504691,17.115547],[80.505143,17.108991],[80.500987,17.100145],[80.497314,17.095037],[80.495383,17.090615],[80.493222,17.075329],[80.493271,17.064074],[80.490807,17.058036],[80.483679,17.050577],[80.480363,17.045867],[80.472841,17.044947],[80.461485,17.044784],[80.454854,17.024794],[80.441246,17.029516],[80.429112,17.03258],[80.426358,17.036312],[80.422856,17.049469],[80.409422,17.061823],[80.407433,17.067403],[80.408301,17.072857],[80.40588,17.081479],[80.403609,17.08515],[80.401721,17.085386],[80.398629,17.083777],[80.387577,17.073727],[80.382676,17.070682],[80.375506,17.064142],[80.376273,17.060287],[80.380151,17.055124],[80.386922,17.041756],[80.385777,17.035512],[80.386442,17.03099],[80.392324,17.027432],[80.39727,17.02175],[80.396465,17.014998],[80.395071,17.010644],[80.390531,17.00774],[80.37976,17.003532],[80.379781,17.000842],[80.380187,16.994826],[80.378297,16.990661],[80.36964,16.982175],[80.366835,16.978346],[80.369005,16.978224],[80.389416,16.970278],[80.406253,16.96481],[80.420984,16.962005],[80.451205,16.952831],[80.461775,16.946255],[80.471934,16.938163],[80.478572,16.934482],[80.485588,16.929158],[80.49655,16.925455],[80.494306,16.935038],[80.495661,16.94484],[80.500003,16.956149],[80.518497,16.950444],[80.529429,16.944434],[80.540479,16.958194],[80.578271,16.935019],[80.592961,16.934674],[80.597948,16.924852],[80.599112,16.919823],[80.59817,16.915321],[80.594701,16.912516],[80.590923,16.911291],[80.590047,16.904979],[80.592182,16.898834],[80.594604,16.895383],[80.595587,16.882191],[80.585334,16.881334],[80.573776,16.87727],[80.573681,16.85817],[80.572847,16.850844],[80.57128,16.844599],[80.563451,16.83308],[80.564884,16.826711],[80.570121,16.825445],[80.575879,16.825427],[80.58066,16.820444],[80.594751,16.815037],[80.602563,16.806323],[80.606696,16.800453],[80.613027,16.796197],[80.606454,16.79352],[80.578243,16.779164],[80.571719,16.771243],[80.555415,16.77604],[80.538956,16.778411],[80.52697,16.77711],[80.519873,16.778263],[80.498399,16.784145],[80.493499,16.789573],[80.487884,16.7932],[80.47987,16.796548],[80.465219,16.798233],[80.463884,16.814644],[80.461392,16.823436],[80.453547,16.827515],[80.440608,16.831951],[80.440875,16.835273],[80.431608,16.837388],[80.43016,16.845176],[80.427413,16.850368],[80.408431,16.857746],[80.408912,16.845074],[80.407884,16.83961],[80.402965,16.833201],[80.388137,16.827559],[80.386579,16.820516],[80.384615,16.818667],[80.381675,16.819127],[80.375818,16.834748],[80.373423,16.846868],[80.369894,16.858319],[80.367332,16.862835],[80.3596,16.861222],[80.34361,16.863631],[80.345961,16.874954],[80.335965,16.878865],[80.327863,16.878773],[80.327078,16.88526],[80.324614,16.891799],[80.324749,16.902448],[80.321882,16.919752],[80.323978,16.920141],[80.316433,16.931544],[80.312513,16.947162],[80.309922,16.963517],[80.2975,16.9844],[80.284675,17.000793],[80.270646,17.018123],[80.258733,17.01486],[80.249595,17.010287],[80.24419,17.0098],[80.240685,17.012377],[80.226255,17.027043],[80.221639,17.026584],[80.209667,17.020538],[80.203954,17.025418],[80.204508,17.033055],[80.20264,17.049843],[80.190479,17.052245],[80.178905,17.037718],[80.175553,17.030949],[80.157473,17.01537],[80.15083,17.008807],[80.148945,17.000621],[80.142235,16.992704],[80.135265,16.992661],[80.128501,16.994131],[80.123028,16.993182],[80.121138,16.989636],[80.114134,16.988621],[80.107808,16.990085],[80.096009,16.9947],[80.092277,16.984961],[80.092586,16.970492],[80.054171,16.972538],[80.045375,16.94374],[80.036808,16.934686],[80.026903,16.926089],[80.017863,16.914541],[80.011079,16.89877],[80.003373,16.884622],[80.000017,16.870579],[80.002475,16.869516],[80.022216,16.860326],[80.0415,16.859862],[80.042754,16.855186],[80.042794,16.846561],[80.045086,16.839849],[80.050258,16.833534],[80.07813,16.821152],[80.073397,16.810059],[80.06613,16.789458],[80.060073,16.778879],[80.0564,16.752791],[80.051846,16.747336],[80.041254,16.739402],[80.031812,16.726115],[80.025171,16.719469],[80.010876,16.710578],[80.002156,16.702075],[80.000012,16.70018],[79.981524,16.667181],[79.966655,16.649711],[79.951061,16.640285],[79.93213,16.638374],[79.922285,16.640748],[79.910529,16.645427],[79.899336,16.657106],[79.889049,16.68365],[79.881671,16.696152],[79.870192,16.705634],[79.852891,16.703855],[79.834241,16.698843],[79.818561,16.697832],[79.791606,16.732085],[79.783121,16.736741],[79.771314,16.734339],[79.758693,16.727323],[79.742004,16.705228],[79.730935,16.699809],[79.691195,16.697522],[79.676786,16.69113],[79.663644,16.681218],[79.656176,16.669137],[79.641397,16.667986],[79.62492,16.671716],[79.607989,16.670323],[79.593667,16.658403],[79.582079,16.65064],[79.571668,16.645108],[79.562027,16.641619],[79.544743,16.63857],[79.520109,16.640621],[79.505162,16.637458],[79.478037,16.625673],[79.458526,16.616065],[79.451095,16.600628],[79.442439,16.592578],[79.434524,16.589431],[79.41063,16.587318],[79.35336,16.586356],[79.341141,16.585294],[79.327569,16.582631],[79.302887,16.574078],[79.290145,16.572159],[79.273843,16.568171],[79.268514,16.553133],[79.238171,16.525994],[79.233002,16.514937],[79.231861,16.498888],[79.238658,16.488441],[79.242899,16.477479],[79.243988,16.465362],[79.234145,16.459352],[79.226848,16.44499],[79.222826,16.422612],[79.220414,16.400649],[79.221143,16.381306],[79.219313,16.369747],[79.231125,16.357332],[79.235737,16.343813],[79.237756,16.30729],[79.233031,16.257211],[79.226669,16.246785],[79.215484,16.237809],[79.199957,16.229837],[79.184526,16.224241],[79.170646,16.227326],[79.159074,16.231679],[79.150361,16.236314],[79.141028,16.243394],[79.130848,16.244902],[79.076356,16.245045],[79.061808,16.249439],[79.050247,16.251801],[79.038633,16.252579],[79.027815,16.251089],[79.017845,16.247259],[79.000085,16.235099],[78.985694,16.22985],[78.966617,16.223981],[78.948682,16.216555],[78.933067,16.209075],[78.915631,16.197761],[78.913013,16.188606],[78.913169,16.171682],[78.928478,16.140499],[78.929499,16.128718],[78.924907,16.120371],[78.920978,16.115694],[78.918111,16.112081],[78.908814,16.104476],[78.896682,16.105396],[78.880248,16.116957],[78.876963,16.128396],[78.875573,16.142004],[78.873853,16.15059],[78.870457,16.159799],[78.86394,16.165286],[78.853758,16.166208],[78.845323,16.163404],[78.839589,16.158429],[78.837977,16.148822],[78.838756,16.139668],[78.841454,16.126855],[78.845619,16.117591],[78.847808,16.109581],[78.84691,16.101004],[78.844047,16.094146],[78.8291,16.068978],[78.821312,16.058972],[78.815521,16.052973],[78.797542,16.039472],[78.782551,16.030374],[78.761404,16.027742],[78.746424,16.027847],[78.733384,16.029727],[78.721048,16.033324],[78.693896,16.046976],[78.682295,16.055598],[78.67564,16.062343],[78.665,16.077945],[78.653916,16.089201],[78.643677,16.097889],[78.624161,16.105304],[78.610616,16.102824],[78.599686,16.093608],[78.583529,16.076715],[78.574199,16.068239],[78.566215,16.062737],[78.553958,16.062547],[78.539878,16.068643],[78.527839,16.071371],[78.502553,16.079335],[78.457878,16.087197],[78.427758,16.088964],[78.412435,16.087045],[78.390985,16.077901],[78.376754,16.065911],[78.359798,16.060557],[78.34709,16.058804],[78.337798,16.053119],[78.330223,16.043264],[78.322867,16.035179],[78.29879,16.034486],[78.287634,16.038056],[78.274707,16.040704],[78.263202,16.03723],[78.257906,16.031615],[78.265243,16.011051],[78.266318,16.000722],[78.259533,15.984448],[78.257674,15.976857],[78.254939,15.974321],[78.253938,15.966076],[78.250597,15.952994],[78.249464,15.943103],[78.24455,15.935106],[78.234453,15.92952],[78.211935,15.923083],[78.203189,15.918254],[78.186522,15.906449],[78.185704,15.900958],[78.188003,15.893677],[78.185609,15.885808],[78.18035,15.878556],[78.17718,15.872474],[78.175193,15.859221],[78.171189,15.855043],[78.157426,15.855073],[78.154891,15.855992],[78.144394,15.856244],[78.132273,15.854928],[78.133348,15.840933],[78.126237,15.836278],[78.116007,15.833176],[78.107556,15.833899],[78.069984,15.850473],[78.06476,15.856296],[78.055118,15.876595],[78.046943,15.878026],[78.046042,15.903888],[78.042483,15.907863],[78.034972,15.908454],[78.03043,15.904348],[78.023131,15.900908],[78.0209,15.894575],[78.012779,15.877742],[78.008039,15.865012],[77.999771,15.866749],[77.978961,15.879834],[77.969151,15.881599],[77.950038,15.880584],[77.934282,15.882155],[77.913483,15.890494],[77.893554,15.901483],[77.882238,15.901538],[77.872769,15.897929],[77.861488,15.881298],[77.855925,15.879352],[77.84556,15.879457],[77.839636,15.881014],[77.831103,15.87929],[77.823478,15.874982],[77.814958,15.872517],[77.804889,15.870794],[77.795473,15.872048],[77.784559,15.874735],[77.775841,15.878691],[77.765647,15.882186],[77.75522,15.881261],[77.744372,15.883885],[77.737492,15.887555],[77.730381,15.890121],[77.721608,15.891892],[77.712787,15.889412],[77.70492,15.88574],[77.697949,15.88062],[77.688946,15.879177],[77.664303,15.881769],[77.653565,15.884159],[77.644909,15.888339],[77.637319,15.896986],[77.63099,15.904294],[77.624056,15.908908],[77.619074,15.912969],[77.611598,15.916854],[77.6039,15.913854],[77.593602,15.9121],[77.58524,15.915298],[77.576754,15.917396],[77.553888,15.91871],[77.536755,15.921135],[77.514409,15.925835],[77.519531,15.948387],[77.520845,15.962394],[77.519817,15.968069],[77.513936,15.972354],[77.510422,15.977571],[77.5104,15.983654],[77.513294,16.000706],[77.514982,16.007115],[77.506562,16.010391],[77.505144,16.016192],[77.503426,16.018724],[77.503668,16.021993],[77.4969,16.03038],[77.495544,16.035437],[77.500486,16.052498],[77.499303,16.054562],[77.501029,16.059557],[77.504352,16.059039],[77.507752,16.077992],[77.49779,16.084372],[77.497671,16.088507],[77.50267,16.101946],[77.508258,16.106247],[77.514202,16.108257],[77.507494,16.114182],[77.500197,16.119348],[77.494967,16.120847],[77.491408,16.120446],[77.493314,16.131131],[77.492801,16.152039],[77.491496,16.157719],[77.4883,16.163176],[77.49306,16.183281],[77.49961,16.191725],[77.499612,16.199942],[77.498376,16.210741],[77.499984,16.21757],[77.507009,16.220274],[77.513484,16.219523],[77.515861,16.221761],[77.515449,16.227909],[77.506898,16.229346],[77.498273,16.227572],[77.493404,16.228893],[77.493536,16.246352],[77.492174,16.254334],[77.503604,16.262374],[77.504843,16.265191],[77.505867,16.272314],[77.517761,16.27524],[77.524001,16.275405],[77.529118,16.274309],[77.530532,16.271555],[77.538503,16.267183],[77.544473,16.287172],[77.547924,16.291593],[77.554231,16.295212],[77.569759,16.302265],[77.574038,16.299333],[77.57914,16.293519],[77.585499,16.290651],[77.595135,16.291445],[77.597102,16.294712],[77.593184,16.300232],[77.59581,16.309189],[77.595649,16.316542],[77.591435,16.324998],[77.589184,16.332579],[77.596403,16.342048],[77.591221,16.342459],[77.576591,16.340462],[77.559235,16.346041],[77.554182,16.349151],[77.549008,16.354213],[77.539795,16.357378],[77.533263,16.36278],[77.523456,16.374501],[77.514712,16.374562],[77.499016,16.380141],[77.485872,16.382101],[77.46576,16.37975],[77.453389,16.380097],[77.442497,16.378716],[77.439581,16.376942],[77.432146,16.369359],[77.426549,16.367117],[77.416082,16.366944],[77.405428,16.370275],[77.392403,16.376018],[77.37742,16.384109],[77.356717,16.380774],[77.347083,16.383867],[77.336844,16.392426],[77.311028,16.398099],[77.298587,16.403662],[77.288648,16.407044],[77.282166,16.414733],[77.278712,16.421745],[77.273173,16.427078],[77.268299,16.434025],[77.262098,16.451262],[77.256318,16.457227],[77.238991,16.471971],[77.242678,16.476801],[77.248331,16.476124],[77.255363,16.471818],[77.289289,16.475468],[77.295954,16.477603],[77.299764,16.485297],[77.300827,16.489839],[77.300589,16.495411],[77.313089,16.493297],[77.317615,16.491513],[77.328447,16.48492],[77.333992,16.484685],[77.347734,16.486076],[77.347676,16.48889],[77.351966,16.48953],[77.35572,16.487345],[77.362265,16.487178],[77.370421,16.48815],[77.371309,16.490968],[77.371428,16.4978],[77.373221,16.506135],[77.377031,16.510041],[77.383223,16.514755],[77.385309,16.51556],[77.392873,16.516139],[77.397691,16.518896],[77.404782,16.519989],[77.416202,16.51787],[77.419547,16.521889],[77.419852,16.548027],[77.405742,16.550782],[77.404612,16.554232],[77.401222,16.556878],[77.400686,16.559524],[77.398954,16.562222],[77.39675,16.563424],[77.394436,16.563717],[77.395562,16.569165],[77.401702,16.567329],[77.406287,16.570263],[77.421474,16.567913],[77.42516,16.569173],[77.440953,16.585206],[77.447508,16.586068],[77.460668,16.585033],[77.464664,16.587498],[77.468471,16.588247],[77.468477,16.591228],[77.46562,16.59468],[77.46306,16.596065],[77.464612,16.59957],[77.468486,16.59916],[77.46896,16.601461],[77.467898,16.608819],[77.458127,16.611406],[77.458074,16.617778],[77.459803,16.623989],[77.465582,16.62875],[77.466725,16.633177],[77.470126,16.639904],[77.475612,16.647483],[77.47365,16.650872],[77.465663,16.652772],[77.458992,16.648807],[77.452731,16.642775],[77.448259,16.639727],[77.442543,16.640135],[77.437114,16.641567],[77.440396,16.646453],[77.43664,16.646976],[77.434438,16.648636],[77.432239,16.653981],[77.425332,16.655878],[77.420978,16.658634],[77.420687,16.666683],[77.441308,16.670474],[77.45061,16.678055],[77.465921,16.676271],[77.469265,16.682193],[77.471721,16.700694],[77.47167,16.706263],[77.472978,16.712589],[77.47102,16.715804],[77.465234,16.717016],[77.460466,16.714544],[77.452604,16.717418],[77.449558,16.717644],[77.441509,16.711383],[77.437392,16.712936],[77.434116,16.715524],[77.429529,16.715574],[77.427507,16.718337],[77.428224,16.721608],[77.430844,16.722184],[77.431625,16.724944],[77.430432,16.726553],[77.429783,16.730861],[77.431923,16.733278],[77.435384,16.74023],[77.439444,16.75333],[77.441305,16.766892],[77.439347,16.781371],[77.441611,16.786949],[77.44865,16.783783],[77.471485,16.780393],[77.475305,16.782917],[77.475786,16.788953],[77.47591,16.800046],[77.469897,16.804582],[77.466858,16.808259],[77.46352,16.821478],[77.460725,16.827458],[77.4645,16.847799],[77.464391,16.8582],[77.461663,16.882915],[77.456523,16.885111],[77.456292,16.88521],[77.458297,16.889748],[77.459863,16.908255],[77.457956,16.909862],[77.457417,16.912618],[77.464161,16.916525],[77.469417,16.917677],[77.471798,16.920717],[77.471923,16.927785],[77.468647,16.928481],[77.467567,16.93262],[77.470019,16.938134],[77.46835,16.943364],[77.468701,16.949919],[77.468101,16.956233],[77.473218,16.95739],[77.477793,16.963013],[77.483244,16.971575],[77.484034,16.978703],[77.482399,16.993764],[77.486032,17.000696],[77.487267,17.002191],[77.497627,17.009348],[77.503468,17.010836],[77.502256,17.018699],[77.496066,17.025136],[77.497269,17.03646],[77.495903,17.042303],[77.490789,17.048116],[77.487062,17.056871],[77.482053,17.064406],[77.479406,17.073289],[77.481829,17.075671],[77.480897,17.079624],[77.472386,17.084489],[77.467802,17.090077],[77.464226,17.096193],[77.466564,17.107406],[77.456269,17.110934],[77.4523,17.11481],[77.442484,17.117875],[77.43762,17.114447],[77.427342,17.117339],[77.415585,17.123775],[77.407504,17.126461],[77.402647,17.135145],[77.380036,17.141081],[77.379096,17.151875],[77.370538,17.154488],[77.363635,17.164765],[77.36856,17.168089],[77.367194,17.172614],[77.372024,17.179607],[77.371184,17.18632],[77.374399,17.193188],[77.380397,17.196117],[77.385402,17.196852],[77.395205,17.195512],[77.397159,17.21006],[77.402517,17.211895],[77.402729,17.21465],[77.396881,17.214594],[77.388263,17.216063],[77.384957,17.219419],[77.384019,17.22286],[77.387692,17.226402],[77.395939,17.231653],[77.399539,17.235932],[77.402534,17.234983],[77.409171,17.240502],[77.41867,17.233007],[77.421506,17.235906],[77.423754,17.244714],[77.424217,17.252421],[77.426334,17.256343],[77.441121,17.264468],[77.446255,17.271689],[77.453466,17.272966],[77.458308,17.278987],[77.456594,17.289713],[77.450779,17.291897],[77.437766,17.291317],[77.441515,17.299742],[77.444186,17.30086],[77.451746,17.316493],[77.453413,17.317945],[77.455145,17.330254],[77.456276,17.330958],[77.45887,17.340922],[77.46012,17.347994],[77.45674,17.351811],[77.453503,17.353048],[77.453619,17.366033],[77.455343,17.373459],[77.483135,17.372613],[77.479147,17.371143],[77.476205,17.36618],[77.478275,17.362177],[77.486435,17.357483],[77.496225,17.358543],[77.502988,17.357111],[77.513641,17.362319],[77.524728,17.365114],[77.531933,17.37517],[77.53409,17.380934],[77.53049,17.381879],[77.525224,17.389356],[77.537491,17.401877],[77.539418,17.407122],[77.537493,17.409114],[77.530614,17.408996],[77.514538,17.415524],[77.513993,17.43022],[77.527235,17.439648],[77.537364,17.443923],[77.552776,17.437915],[77.561735,17.438277],[77.576546,17.432539],[77.575936,17.441555],[77.57717,17.457194],[77.594445,17.451127],[77.59993,17.445722],[77.608535,17.446135],[77.614683,17.447272],[77.615508,17.455954],[77.614156,17.467666],[77.615005,17.47296],[77.619713,17.474429],[77.630658,17.474235],[77.63812,17.475271],[77.644547,17.479053],[77.646705,17.486484],[77.648341,17.497929],[77.652075,17.502383],[77.656885,17.506272],[77.653089,17.494579],[77.652218,17.484227],[77.669064,17.479367],[77.68822,17.475954],[77.688894,17.488315],[77.691175,17.49465],[77.692204,17.501606],[77.68982,17.508711],[77.687437,17.507082],[77.686216,17.509721],[77.683126,17.508147],[77.670232,17.512981],[77.665349,17.517828],[77.660746,17.524345],[77.653994,17.524064],[77.649406,17.521783],[77.637235,17.526048],[77.625278,17.525207],[77.620615,17.532297],[77.611983,17.534],[77.607268,17.533621],[77.603235,17.536919],[77.595704,17.535594],[77.596413,17.55197],[77.595815,17.557946],[77.59378,17.565628],[77.589359,17.5649],[77.589336,17.561224],[77.564725,17.556369],[77.560013,17.554999],[77.556681,17.552844],[77.552258,17.552298],[77.547791,17.557422],[77.540523,17.574137],[77.535909,17.575883],[77.531241,17.576017],[77.517678,17.560044],[77.513449,17.55196],[77.505384,17.543678],[77.500583,17.546161],[77.499293,17.549311],[77.499386,17.552814],[77.493735,17.569025],[77.477772,17.567847],[77.475765,17.571852],[77.472786,17.570908],[77.468836,17.577367],[77.464866,17.579737],[77.443525,17.584145],[77.445669,17.598471],[77.444092,17.606734],[77.444903,17.60927],[77.45011,17.609889],[77.449406,17.614934],[77.452416,17.625421],[77.456833,17.633392],[77.454417,17.634976],[77.451112,17.649713],[77.448591,17.651009],[77.449223,17.660038],[77.45267,17.668687],[77.454574,17.683411],[77.454975,17.690288],[77.453919,17.693838],[77.458204,17.696638],[77.461453,17.701495],[77.475171,17.706558],[77.477774,17.703943],[77.482309,17.705586],[77.484726,17.7094],[77.488112,17.706212],[77.492989,17.70936],[77.495389,17.715419],[77.497933,17.718595],[77.509135,17.717086],[77.513163,17.722526],[77.526293,17.7266],[77.53129,17.729694],[77.537724,17.727791],[77.54311,17.728009],[77.547878,17.735983],[77.55566,17.736969],[77.558414,17.743718],[77.565842,17.749699],[77.56976,17.766681],[77.55822,17.763824],[77.540706,17.772982],[77.538211,17.777215],[77.531305,17.779168],[77.526729,17.782117],[77.513004,17.782571],[77.508125,17.785061],[77.510662,17.795425],[77.514534,17.803903],[77.521723,17.810173],[77.529773,17.814149],[77.529685,17.829264],[77.547431,17.828729],[77.54853,17.819484],[77.553491,17.820506],[77.55805,17.832956],[77.562941,17.841098],[77.567225,17.844463],[77.565901,17.851583],[77.569793,17.852014],[77.571191,17.868576],[77.576518,17.875237],[77.581509,17.873663],[77.585058,17.87818],[77.59657,17.872234],[77.600523,17.872904],[77.60159,17.879518],[77.596291,17.881945],[77.588983,17.89493],[77.586827,17.900779],[77.588946,17.910625],[77.603607,17.906085],[77.608268,17.907911],[77.62044,17.905304],[77.622779,17.915908],[77.622507,17.924235],[77.62337,17.932466],[77.620619,17.94049],[77.623842,17.94684],[77.62811,17.946076],[77.632707,17.950889],[77.632831,17.956222],[77.627569,17.960118],[77.633571,17.965331],[77.635669,17.955912],[77.639474,17.952907],[77.644484,17.952027],[77.647864,17.948781],[77.651306,17.955585],[77.646699,17.959678],[77.648135,17.965074],[77.65594,17.966688],[77.657282,17.971735],[77.651285,17.972825],[77.64749,17.975812],[77.652773,17.980773],[77.653664,17.988217],[77.651615,17.989669],[77.650034,17.995548],[77.646153,17.998238],[77.642068,17.998869],[77.636564,17.997468],[77.632634,17.994847],[77.625267,18.000655],[77.627716,18.00347],[77.626097,18.006969],[77.619648,18.008382],[77.613841,18.012768],[77.610442,18.020278],[77.603241,18.018],[77.595986,18.012436],[77.590985,18.015589],[77.588692,18.027029],[77.578183,18.032941],[77.561471,18.037389],[77.556753,18.036853],[77.555697,18.049111],[77.551693,18.050154],[77.549375,18.055916],[77.551062,18.065782],[77.560343,18.064329],[77.564117,18.073273],[77.570995,18.078443],[77.581139,18.079022],[77.593504,18.082457],[77.601189,18.086456],[77.604283,18.101552],[77.600317,18.123144],[77.597197,18.129959],[77.601462,18.153914],[77.592829,18.15552],[77.58302,18.16416],[77.581195,18.170306],[77.576094,18.180967],[77.573639,18.191149],[77.56793,18.191969],[77.5679,18.202526],[77.578017,18.201904],[77.588593,18.218715],[77.584709,18.224699],[77.580384,18.235046],[77.576138,18.242478],[77.585105,18.258241],[77.595567,18.263692],[77.602684,18.274822],[77.606676,18.279913],[77.601482,18.283126],[77.587427,18.284962],[77.577912,18.288723],[77.578235,18.291175],[77.574239,18.292338],[77.564549,18.284974],[77.553502,18.293192],[77.558583,18.300144],[77.5738,18.310023],[77.570481,18.319778],[77.556903,18.333013],[77.545706,18.335675],[77.530804,18.341153],[77.522953,18.350989],[77.524844,18.36636],[77.533952,18.377483],[77.545057,18.38693],[77.552818,18.38943],[77.558695,18.419533],[77.547613,18.422079],[77.538637,18.422828],[77.539446,18.425101],[77.529376,18.428989],[77.531911,18.442097],[77.537963,18.444024],[77.549918,18.4422],[77.563677,18.436706],[77.570454,18.440267],[77.57767,18.441007],[77.586201,18.44474],[77.588768,18.447119],[77.586836,18.448851],[77.587196,18.455203],[77.562584,18.459634],[77.553276,18.459592],[77.552355,18.462428],[77.549674,18.464989],[77.549999,18.467329],[77.561585,18.46689],[77.563905,18.469107],[77.574151,18.468487],[77.580038,18.485393],[77.594322,18.482736],[77.596698,18.475144],[77.604646,18.475858],[77.607344,18.486897],[77.606422,18.493009],[77.597454,18.495487],[77.589808,18.504518],[77.59061,18.511435],[77.600044,18.51658],[77.60502,18.52353],[77.603981,18.526546],[77.596843,18.524719],[77.596837,18.529591],[77.601755,18.536602],[77.600827,18.549086],[77.614445,18.549325],[77.616902,18.543965],[77.619406,18.544508],[77.61992,18.550232],[77.632685,18.552215],[77.638038,18.546766],[77.644116,18.555508],[77.652472,18.554203],[77.653205,18.551251],[77.65587,18.55122],[77.653136,18.542935],[77.64896,18.537909],[77.66125,18.528835],[77.665772,18.53488],[77.679618,18.542968],[77.686486,18.542452],[77.716149,18.556091],[77.731754,18.553212],[77.740341,18.556479],[77.739212,18.564836],[77.751019,18.590719],[77.751941,18.606928],[77.746802,18.622991],[77.739837,18.632464],[77.733511,18.644269],[77.733557,18.647135],[77.733909,18.649643],[77.734721,18.656852],[77.73697,18.65724],[77.737037,18.663658],[77.731904,18.665722],[77.736655,18.6775],[77.748504,18.685396],[77.753326,18.691281],[77.753755,18.699326],[77.761488,18.708563],[77.768245,18.709434],[77.772662,18.703127],[77.773271,18.69211],[77.790331,18.685665],[77.790416,18.695857],[77.806131,18.717639],[77.806636,18.730754],[77.81432,18.74175],[77.827136,18.769965],[77.831501,18.787449],[77.841409,18.808883],[77.863217,18.815499],[77.91167,18.830984],[77.93287,18.823223],[77.946718,18.823806],[77.949392,18.833611],[77.948285,18.843773],[77.933768,18.847956],[77.936489,18.852391],[77.928714,18.855603],[77.929448,18.860654],[77.910161,18.868736],[77.903276,18.869334],[77.902726,18.885122],[77.891705,18.886496],[77.886634,18.897723],[77.885596,18.909862],[77.873258,18.911639],[77.860624,18.907383],[77.844435,18.912596],[77.845068,18.922733],[77.848256,18.931583],[77.852653,18.932652],[77.857692,18.953537],[77.83442,18.951433],[77.831286,18.946947],[77.816567,18.950664],[77.819091,18.960442],[77.816749,18.961259],[77.821017,18.983538],[77.790951,18.985423],[77.785321,18.977466],[77.771144,18.982544],[77.772209,19.000483],[77.769516,19.008469],[77.769088,19.016466],[77.768038,19.020697],[77.765904,19.021574],[77.763993,19.023705],[77.761131,19.029602],[77.764683,19.052233],[77.763298,19.060313],[77.765442,19.063056],[77.774757,19.057187],[77.781749,19.055402],[77.786902,19.05587],[77.794944,19.051708],[77.798368,19.051245],[77.800998,19.052368],[77.799496,19.062069],[77.800971,19.065922],[77.797342,19.07224],[77.79827,19.074398],[77.801091,19.075627],[77.805139,19.085431],[77.803594,19.095582],[77.80406,19.099874],[77.806465,19.102956],[77.809591,19.104341],[77.819021,19.10467],[77.826234,19.097424],[77.829367,19.092727],[77.832495,19.085974],[77.83768,19.087578],[77.846089,19.087825],[77.850499,19.089573],[77.852053,19.091132],[77.852092,19.09365],[77.848062,19.097111],[77.849104,19.115224],[77.842525,19.119853],[77.837802,19.133728],[77.834948,19.136634],[77.841572,19.13929],[77.853139,19.156251],[77.852633,19.160397],[77.854072,19.163276],[77.854274,19.168609],[77.857776,19.170389],[77.858124,19.173245],[77.856909,19.177759],[77.862318,19.181713],[77.848407,19.189113],[77.850436,19.197889],[77.856573,19.205493],[77.85623,19.210607],[77.862353,19.219358],[77.865428,19.227172],[77.866208,19.234835],[77.869316,19.238799],[77.871985,19.246977],[77.871306,19.256117],[77.888584,19.261089],[77.89584,19.257973],[77.904373,19.256996],[77.909693,19.268085],[77.904639,19.277988],[77.897014,19.279237],[77.879307,19.280602],[77.86581,19.284904],[77.864743,19.288438],[77.866547,19.296161],[77.864751,19.302918],[77.875033,19.306521],[77.879146,19.309684],[77.891977,19.313201],[77.897204,19.321946],[77.903483,19.31859],[77.909757,19.316587],[77.916254,19.318759],[77.926057,19.326728],[77.930345,19.332708],[77.941264,19.336554],[77.94466,19.343297],[77.952962,19.342092],[77.96679,19.332601],[77.970727,19.328168],[77.981001,19.321906],[77.989619,19.309883],[78.000021,19.306616],[78.015788,19.302034],[78.022432,19.297262],[78.03148,19.279652],[78.037082,19.27509],[78.049976,19.271851],[78.053689,19.263746],[78.051848,19.25665],[78.05229,19.248542],[78.055381,19.24279],[78.061824,19.240804],[78.079421,19.247608],[78.086561,19.255826],[78.099453,19.25092],[78.10371,19.246557],[78.131096,19.247504],[78.143676,19.240574],[78.154158,19.2312],[78.174512,19.237497],[78.187807,19.242706],[78.190902,19.250513],[78.187742,19.26231],[78.187622,19.280073],[78.19767,19.304033],[78.199998,19.315457],[78.199541,19.326029],[78.201644,19.332789],[78.191595,19.339643],[78.186715,19.346472],[78.184053,19.354019],[78.185815,19.361754],[78.188923,19.369214],[78.189283,19.377271],[78.191451,19.38553],[78.192025,19.39658],[78.186608,19.412703],[78.202582,19.40841],[78.209952,19.415306],[78.219576,19.427992],[78.228774,19.434978],[78.238153,19.433847],[78.250351,19.429956],[78.256568,19.431024],[78.2664,19.441066],[78.271508,19.448904],[78.277824,19.454804],[78.286587,19.453959],[78.295758,19.449786],[78.301949,19.44982],[78.313556,19.457404],[78.316609,19.46688],[78.316697,19.480224],[78.314658,19.487378],[78.308244,19.494698],[78.304044,19.505042],[78.303329,19.514461],[78.300079,19.531721],[78.299638,19.538151],[78.296054,19.543962],[78.289213,19.551226],[78.283693,19.559018],[78.289944,19.561178],[78.30112,19.559213],[78.303889,19.562132],[78.304512,19.567606],[78.310748,19.568276],[78.315787,19.572601],[78.316676,19.579386],[78.314666,19.587524],[78.315612,19.604955],[78.313511,19.612171],[78.303568,19.624156],[78.300094,19.632562],[78.296999,19.644873],[78.292144,19.655156],[78.277209,19.660849],[78.274273,19.663801],[78.277951,19.670813],[78.290379,19.690314],[78.309551,19.6891],[78.320662,19.691222],[78.324734,19.697381],[78.327328,19.70431],[78.337152,19.709176],[78.349941,19.714241],[78.348959,19.724981],[78.350072,19.735062],[78.357872,19.738397],[78.365479,19.754605],[78.369475,19.767948],[78.372421,19.781671],[78.371677,19.795118],[78.365156,19.806293],[78.35628,19.810884],[78.343848,19.814034],[78.340599,19.819158],[78.346016,19.833438],[78.343631,19.839677],[78.307735,19.846274],[78.298683,19.849991],[78.29877,19.855971],[78.302242,19.873697],[78.312192,19.908868],[78.314777,19.913107],[78.324101,19.915839],[78.332978,19.916462],[78.339734,19.910494],[78.339204,19.904691],[78.331222,19.899777],[78.327572,19.895368],[78.329854,19.890881],[78.34088,19.883615]]]]},"properties":{"cartodb_id":1,"state_code":0,"name":"Telangana"}},
+ { "type": "Feature", "properties": { "name": "Kerala", "admin": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.0207751814294, 12.685840969285263 ], [ 75.024805942839961, 12.686486925331334 ], [ 75.028733352362266, 12.688760688454973 ], [ 75.040308871757006, 12.698088284047056 ], [ 75.048060337114791, 12.702454942241783 ], [ 75.061186151019996, 12.702635810294392 ], [ 75.072141554589038, 12.698992620712884 ], [ 75.094775832138893, 12.686254381334603 ], [ 75.100253534373039, 12.682120266237288 ], [ 75.102113885447395, 12.678864651182662 ], [ 75.10128706224809, 12.674782212928788 ], [ 75.098496535186925, 12.667340806832781 ], [ 75.097152948050038, 12.660390326252521 ], [ 75.096946241575765, 12.653491523415083 ], [ 75.098703240761878, 12.646696072465769 ], [ 75.10242394380991, 12.639358018257893 ], [ 75.110485466630948, 12.630004584244144 ], [ 75.117513461576934, 12.627136541917874 ], [ 75.124438103735471, 12.627911689173114 ], [ 75.131569452368282, 12.631554876955985 ], [ 75.13983768076433, 12.634242052128965 ], [ 75.148932733259002, 12.63357025856055 ], [ 75.155030552218179, 12.629074408257337 ], [ 75.169499953260171, 12.606517645972584 ], [ 75.176424595418709, 12.599748033444993 ], [ 75.182832472740401, 12.597267563846968 ], [ 75.189757114898882, 12.596854152696947 ], [ 75.196268345008079, 12.598404446308106 ], [ 75.202469516754761, 12.601298326156833 ], [ 75.206706983740261, 12.604915676417304 ], [ 75.212701450811252, 12.611736964889017 ], [ 75.225310499879626, 12.61258962740936 ], [ 75.270889113341852, 12.600729885375866 ], [ 75.264584588807651, 12.578689887028643 ], [ 75.250631951703141, 12.562360134012975 ], [ 75.247014602341991, 12.55112051050315 ], [ 75.247634719066966, 12.542955633995287 ], [ 75.251355422114997, 12.536909490980232 ], [ 75.264584588807651, 12.524352117855923 ], [ 75.270889113341852, 12.513164171189542 ], [ 75.275746697951703, 12.506265367452723 ], [ 75.279674106574689, 12.502027900467223 ], [ 75.282567987322736, 12.50060679806529 ], [ 75.284014927247071, 12.500090033228442 ], [ 75.286185336683886, 12.499521593346852 ], [ 75.293109978842409, 12.494328111053445 ], [ 75.304168736098219, 12.476861477375278 ], [ 75.307062615946947, 12.473166611849646 ], [ 75.309543084645597, 12.470892848725951 ], [ 75.312023553344247, 12.469497584745737 ], [ 75.314090610892933, 12.469368394435831 ], [ 75.320085077064604, 12.470350247266079 ], [ 75.348507115211177, 12.478075873302881 ], [ 75.355328403682833, 12.478179226090386 ], [ 75.36432010339, 12.476370550960151 ], [ 75.366800572088707, 12.473786729473996 ], [ 75.368247512013042, 12.470350247266079 ], [ 75.368557570375501, 12.46709463131219 ], [ 75.367937452751207, 12.462521267542453 ], [ 75.366077101676851, 12.456733506945792 ], [ 75.362459751416324, 12.450687363930681 ], [ 75.358118930743998, 12.445984808951774 ], [ 75.343546176914501, 12.435132758170251 ], [ 75.34065229706583, 12.42867320400512 ], [ 75.339205357141495, 12.420534165918976 ], [ 75.33972212107895, 12.404617824952648 ], [ 75.34158247305264, 12.396943874859911 ], [ 75.345406528888176, 12.390355129485609 ], [ 75.357808872381483, 12.377901109148864 ], [ 75.368660923163006, 12.361106269039052 ], [ 75.375172154171523, 12.343407091364153 ], [ 75.381580030593895, 12.313848170756442 ], [ 75.38571414569121, 12.301600856894023 ], [ 75.389331495951723, 12.294727891578926 ], [ 75.393568963836543, 12.292970893292075 ], [ 75.398219841972079, 12.292195746036835 ], [ 75.403594191418762, 12.292040717305266 ], [ 75.413516066213433, 12.293125922023647 ], [ 75.419407179597599, 12.293203437288806 ], [ 75.426228468968631, 12.291782334886816 ], [ 75.441628045997476, 12.278036404256623 ], [ 75.536609327858159, 12.16894745476122 ], [ 75.552732375298817, 12.154891465768513 ], [ 75.582394646895395, 12.147269192519216 ], [ 75.593350051363728, 12.14290253342517 ], [ 75.606062453219565, 12.135047716179141 ], [ 75.612883741691277, 12.127709661971322 ], [ 75.618568150399753, 12.119028022425251 ], [ 75.624252557309646, 12.10786591238195 ], [ 75.629213494706931, 12.102052314262888 ], [ 75.634484491366138, 12.099184271936561 ], [ 75.639755487125996, 12.099235947880683 ], [ 75.654018181693672, 12.103008327772098 ], [ 75.66290652861332, 12.102284858259564 ], [ 75.671484816271217, 12.098434963103044 ], [ 75.693912388246062, 12.081976019777468 ], [ 75.70166385270457, 12.077454331951852 ], [ 75.709622022738117, 12.074818834521576 ], [ 75.716443312109092, 12.07412120253144 ], [ 75.7220243671308, 12.074353746528171 ], [ 75.730706007576131, 12.075981554505116 ], [ 75.736287061698519, 12.076059067971581 ], [ 75.74455529189315, 12.075309760037381 ], [ 75.756027460299023, 12.071950792195306 ], [ 75.761091749584509, 12.0687468530848 ], [ 75.76501915910687, 12.059057522286817 ], [ 75.768843214942351, 12.027354031563274 ], [ 75.776181268250909, 12.00978404419828 ], [ 75.782692499259355, 12.000223903710147 ], [ 75.797471957764614, 11.98332570991357 ], [ 75.815248650704618, 11.967202664271495 ], [ 75.830648227733462, 11.957745877470243 ], [ 75.846047804762335, 11.951105455252556 ], [ 75.86351443933988, 11.946273709064426 ], [ 75.882634719416714, 11.942914740322973 ], [ 75.904958936805414, 11.942553005117073 ], [ 75.960562778749178, 11.92862620733359 ], [ 75.98299034982476, 11.930874132035566 ], [ 76.020714146040959, 11.951673896033467 ], [ 76.055750767084177, 11.963740342742593 ], [ 76.072390577563041, 11.963249417226788 ], [ 76.080348749395199, 11.958986110920248 ], [ 76.08355268670708, 11.950046088056522 ], [ 76.08417280523075, 11.926688340994131 ], [ 76.080142042920883, 11.889765530454834 ], [ 76.081899042107054, 11.878990994039153 ], [ 76.086343214667565, 11.871136175893808 ], [ 76.098745559060248, 11.860439154743174 ], [ 76.107013788355616, 11.857493598051118 ], [ 76.115488723225937, 11.857493598051118 ], [ 76.12241336538446, 11.861446845095825 ], [ 76.129854770581161, 11.864779975415498 ], [ 76.138949823075833, 11.867182928849045 ], [ 76.154969516829667, 11.866562812124071 ], [ 76.167061801960557, 11.862609565079364 ], [ 76.176570265605207, 11.857028510057656 ], [ 76.184941847688066, 11.848553575187337 ], [ 76.190316197134706, 11.841189683457115 ], [ 76.200134719141914, 11.822586168217068 ], [ 76.20478559817677, 11.815739041323694 ], [ 76.212227004272776, 11.807264106453314 ], [ 76.218841587169479, 11.804370224806005 ], [ 76.224319289403624, 11.804318548861941 ], [ 76.234241164198338, 11.809072781583605 ], [ 76.240649042419349, 11.810442206242781 ], [ 76.250674270001511, 11.810132147880321 ], [ 76.258735792822549, 11.806075548048112 ], [ 76.265763787768535, 11.799538479517192 ], [ 76.288088006056611, 11.768506781462801 ], [ 76.301110467174269, 11.755380968456903 ], [ 76.309171990894626, 11.749722398170148 ], [ 76.316613396990618, 11.746854355843821 ], [ 76.335216913129983, 11.743211168060949 ], [ 76.342865024801014, 11.742384344861589 ], [ 76.350203078109516, 11.743314520848456 ], [ 76.363845655952204, 11.748766383761561 ], [ 76.37108035737252, 11.750420030160225 ], [ 76.382139112829734, 11.7491797958109 ], [ 76.389270460563282, 11.744012152838589 ], [ 76.394231397960581, 11.735588893912334 ], [ 76.396401809196092, 11.725744534382724 ], [ 76.397331984283582, 11.705203151903898 ], [ 76.400949335443414, 11.686341254245461 ], [ 76.415935500422947, 11.666833401440325 ], [ 76.419346145108463, 11.659598700019954 ], [ 76.419036085846628, 11.656808172958787 ], [ 76.417795852396608, 11.652157293923947 ], [ 76.415315382798653, 11.648746650137749 ], [ 76.410664503763812, 11.646136990229875 ], [ 76.402499628155269, 11.643191433537819 ], [ 76.386273227927106, 11.639703274486518 ], [ 76.374180942796187, 11.631590073922776 ], [ 76.365809360713385, 11.622055771856365 ], [ 76.360435012166008, 11.611978868330082 ], [ 76.351443311559507, 11.60037750871504 ], [ 76.339247673641168, 11.591489162694698 ], [ 76.315579868216318, 11.58691579802564 ], [ 76.299456821674923, 11.587535916549312 ], [ 76.277235956174408, 11.595339056951897 ], [ 76.266073846131036, 11.600842596708445 ], [ 76.240752395206798, 11.603969021453166 ], [ 76.234137811410832, 11.594357205020968 ], [ 76.231760694600311, 11.585675564575636 ], [ 76.232277460336462, 11.576968084809264 ], [ 76.237341749622004, 11.560328274330399 ], [ 76.236618280109468, 11.552654324237663 ], [ 76.231140577875337, 11.536660468006174 ], [ 76.230520461150306, 11.529141547544381 ], [ 76.233000929848998, 11.522191066964181 ], [ 76.237031691259503, 11.515188910439857 ], [ 76.239202101595623, 11.510331325830007 ], [ 76.240752395206798, 11.504517726811626 ], [ 76.241579216607505, 11.500280259826123 ], [ 76.241579216607505, 11.498781643058349 ], [ 76.242509392594329, 11.495241807163664 ], [ 76.246953566054145, 11.48710276907752 ], [ 76.256255324123842, 11.478446967053854 ], [ 76.300800408811739, 11.47033376738943 ], [ 76.409114211051971, 11.436821601535652 ], [ 76.418932733059108, 11.431628119242303 ], [ 76.439396600272843, 11.412611191952918 ], [ 76.448181594405, 11.406332505840449 ], [ 76.461410760198405, 11.40129405407731 ], [ 76.472779575816702, 11.398090114966802 ], [ 76.485181919310079, 11.392509059945153 ], [ 76.495413853366571, 11.384757595486629 ], [ 76.516704542880277, 11.352098090354557 ], [ 76.542749465115648, 11.337964586096744 ], [ 76.533757766307801, 11.313134059789032 ], [ 76.473709750904206, 11.270707709493193 ], [ 76.464821404883864, 11.262258613044535 ], [ 76.44415083209519, 11.234094957316413 ], [ 76.440326776259653, 11.223372096844797 ], [ 76.441050245772189, 11.214070338775114 ], [ 76.448388299080676, 11.206861477575101 ], [ 76.456656529275378, 11.204691067238965 ], [ 76.466268344808185, 11.205233668698837 ], [ 76.490452915069952, 11.213915310043486 ], [ 76.495827263617272, 11.215078030027028 ], [ 76.500994908388279, 11.214845486030354 ], [ 76.506886020873125, 11.213372708583618 ], [ 76.531070591134807, 11.202753200899506 ], [ 76.540682407567019, 11.200427760932424 ], [ 76.550294223999217, 11.200324408144919 ], [ 76.57344526638586, 11.20515615523237 ], [ 76.641244745348658, 11.208644314283671 ], [ 76.655714146390693, 11.211822414972458 ], [ 76.662638787649868, 11.21554311802049 ], [ 76.691060825796441, 11.236342882018388 ], [ 76.698398879104943, 11.240063585066364 ], [ 76.702739698877949, 11.238048204361119 ], [ 76.703773227652263, 11.23076182699668 ], [ 76.701292758953613, 11.212597561328378 ], [ 76.696331821556257, 11.200479437775808 ], [ 76.689820591447116, 11.189162299000881 ], [ 76.687650181110925, 11.18141083454236 ], [ 76.688580357097734, 11.173814398815464 ], [ 76.695608352043777, 11.162316391987869 ], [ 76.702119582152918, 11.155882677143833 ], [ 76.71028445776146, 11.149991562860347 ], [ 76.719172804681122, 11.138726100928803 ], [ 76.72630415241467, 11.121750392766385 ], [ 76.737156203196193, 11.086894639775776 ], [ 76.745527785279009, 11.070616562704171 ], [ 76.754106072936892, 11.060281276759495 ], [ 76.761340772558555, 11.056793117708194 ], [ 76.766508417329575, 11.052219753039136 ], [ 76.76754194520457, 11.046096096557617 ], [ 76.762581007807213, 11.036561794491202 ], [ 76.755656365648733, 11.031497504306341 ], [ 76.746457961265875, 11.028939521241908 ], [ 76.737672967133662, 11.030257269957016 ], [ 76.717932570331797, 11.039119778455015 ], [ 76.70873416504962, 11.041600247153665 ], [ 76.700259230179299, 11.041290187891828 ], [ 76.69292117687074, 11.038267116833934 ], [ 76.687650181110925, 11.033461209067521 ], [ 76.682585890926063, 11.02576142055312 ], [ 76.678451775828748, 11.01723480883936 ], [ 76.674421014418257, 11.002868761484136 ], [ 76.672457309657077, 10.989303697107912 ], [ 76.673387485643886, 10.974937648853368 ], [ 76.677521599841938, 10.956256619247538 ], [ 76.69044070817209, 10.933363959279289 ], [ 76.703773227652263, 10.921891790873415 ], [ 76.719586215831143, 10.914036974526764 ], [ 76.768988885128891, 10.899309190167001 ], [ 76.819838495250323, 10.87595144310461 ], [ 76.828726841270651, 10.86959524172698 ], [ 76.834411249079821, 10.861275336487548 ], [ 76.838958775327143, 10.850733344068543 ], [ 76.843919711825194, 10.834894517467999 ], [ 76.847950474135004, 10.825437729767426 ], [ 76.854358352356016, 10.814895738247682 ], [ 76.862523227964545, 10.807893581723418 ], [ 76.870584750785596, 10.803630276316195 ], [ 76.878026157780923, 10.801072293251705 ], [ 76.883607211903254, 10.797351589304409 ], [ 76.886914503801265, 10.791770535182023 ], [ 76.889705030862416, 10.780039985257073 ], [ 76.88949832618674, 10.76957550720385 ], [ 76.887327914951285, 10.75895600041906 ], [ 76.881333448779614, 10.742884629821786 ], [ 76.878852980080907, 10.730404771063316 ], [ 76.878542921718392, 10.693068549374059 ], [ 76.875545689082216, 10.678495795544503 ], [ 76.863763462313884, 10.663587144031451 ], [ 76.851567824395516, 10.657463487549874 ], [ 76.839268832790353, 10.654285386861089 ], [ 76.829346957995639, 10.652967638145979 ], [ 76.822835727886485, 10.645836290412431 ], [ 76.821078728700328, 10.633175564500673 ], [ 76.826659783721979, 10.551552638743258 ], [ 76.822939080674004, 10.499333603962608 ], [ 76.822008904687138, 10.495767931444842 ], [ 76.821388787962164, 10.490962021879792 ], [ 76.811673617843141, 10.468922024431889 ], [ 76.808573033318766, 10.43711518002152 ], [ 76.81012332603062, 10.425255438887403 ], [ 76.812913853091771, 10.415256048827583 ], [ 76.817564732126627, 10.405075792513797 ], [ 76.831827426694346, 10.384741116509302 ], [ 76.838131952127853, 10.372881375375185 ], [ 76.840509068038997, 10.360530706926564 ], [ 76.837718540078512, 10.333762315178715 ], [ 76.838131952127853, 10.321127427688619 ], [ 76.841542595914049, 10.310662950534718 ], [ 76.848880650121856, 10.303118190751885 ], [ 76.869241163648709, 10.290405788896008 ], [ 76.880816684842088, 10.281491604453944 ], [ 76.892908969972936, 10.270226142522459 ], [ 76.912959426036636, 10.247255968188368 ], [ 76.921847772056978, 10.239039414837121 ], [ 76.92804894380366, 10.23555125578582 ], [ 76.936730585148311, 10.233458359815414 ], [ 76.942001580908183, 10.231598008741114 ], [ 76.956987745887702, 10.22345897155429 ], [ 76.969803501430405, 10.224699205004297 ], [ 76.986339960021084, 10.231287950378597 ], [ 77.020343052289974, 10.25503327106861 ], [ 77.064578077716064, 10.296296902280172 ], [ 77.074810011772556, 10.303273220382774 ], [ 77.087522413628434, 10.309500230551178 ], [ 77.13175743995383, 10.325158189099112 ], [ 77.167930942558911, 10.344717718747685 ], [ 77.19149539609559, 10.351306464121988 ], [ 77.207825148211995, 10.338516547001003 ], [ 77.211649204047475, 10.333710639234594 ], [ 77.234903599221681, 10.29373891831642 ], [ 77.241621534905889, 10.284437161146057 ], [ 77.247099237140034, 10.265110175494213 ], [ 77.248649529851875, 10.24462046985877 ], [ 77.254540643236041, 10.230667832754246 ], [ 77.260535109407712, 10.222192897883927 ], [ 77.272937452901076, 10.214208889428674 ], [ 77.276968215210943, 10.210100612753079 ], [ 77.279138624647757, 10.202891751553066 ], [ 77.279035271860252, 10.19180715587555 ], [ 77.274797804874751, 10.173565374942084 ], [ 77.227772250588856, 10.07594859475182 ], [ 77.224361606802674, 10.0655616319637 ], [ 77.224258254015169, 10.057810167505234 ], [ 77.239554478256522, 10.025305691104732 ], [ 77.260225051045182, 9.962208767120897 ], [ 77.260225051045182, 9.952364406692025 ], [ 77.256711052672912, 9.936525580091425 ], [ 77.229322544200031, 9.883402207745688 ], [ 77.226842076400644, 9.871826687451627 ], [ 77.225911900413834, 9.858881740699754 ], [ 77.231389601748646, 9.818677475784851 ], [ 77.237694126282847, 9.796637478336946 ], [ 77.237590772596022, 9.778809109452821 ], [ 77.235420363159193, 9.764675605195007 ], [ 77.18767134026011, 9.612772731776145 ], [ 77.186534457798913, 9.603781032968296 ], [ 77.186844517060749, 9.596778876443976 ], [ 77.189635044121914, 9.59127533578811 ], [ 77.192735630444901, 9.588097235998644 ], [ 77.197593215054752, 9.585771796031564 ], [ 77.204207797951469, 9.583368841698697 ], [ 77.212476027246836, 9.58127594572829 ], [ 77.219297315718492, 9.57879547792896 ], [ 77.225188430001978, 9.57582408281513 ], [ 77.229529249774984, 9.57218089413294 ], [ 77.238520948582888, 9.562956651328362 ], [ 77.243998650817019, 9.558305772293521 ], [ 77.254540643236041, 9.557220567575142 ], [ 77.263222283681372, 9.557375597206031 ], [ 77.30869754435615, 9.578717963563177 ], [ 77.316138951351476, 9.580268256275017 ], [ 77.33391564339216, 9.580810859533525 ], [ 77.340633579076368, 9.579958197013182 ], [ 77.34724816287239, 9.575772405971746 ], [ 77.352519158632205, 9.568692735081639 ], [ 77.360373976777538, 9.549779161479078 ], [ 77.367608677298549, 9.536498317943026 ], [ 77.398614536031957, 9.499963080132032 ], [ 77.404505650315443, 9.486372179132728 ], [ 77.403782179903644, 9.461076564831613 ], [ 77.375876905694597, 9.43727956819748 ], [ 77.369779086735406, 9.429037177323833 ], [ 77.363474562201233, 9.416169744937745 ], [ 77.338876580789517, 9.344003607780278 ], [ 77.312108189041652, 9.3008796254943 ], [ 77.254540643236041, 9.122105007540027 ], [ 77.229942660925005, 9.064149889006158 ], [ 77.210098911335635, 9.035211086022796 ], [ 77.173511996681256, 9.009915473520264 ], [ 77.166690708209543, 9.003946844870994 ], [ 77.164933709922749, 9.001001288178882 ], [ 77.16803429624575, 8.984232286490792 ], [ 77.191392043308085, 8.921161200029358 ], [ 77.202554151552803, 8.894160265184096 ], [ 77.217540318330961, 8.881292832798009 ], [ 77.235833775208491, 8.871190089950685 ], [ 77.243998650817019, 8.864756375106591 ], [ 77.249269646576906, 8.859097804819838 ], [ 77.252163527324896, 8.854446925784996 ], [ 77.253403761674221, 8.850726222736965 ], [ 77.252680292161685, 8.839925848798883 ], [ 77.235420363159193, 8.784141139701829 ], [ 77.192115512820621, 8.718512071075223 ], [ 77.180746698101558, 8.703680934827274 ], [ 77.178886346127896, 8.695231838378616 ], [ 77.180643345314067, 8.682596950888579 ], [ 77.183743930737748, 8.673889472021527 ], [ 77.185294224348908, 8.665750433935385 ], [ 77.185914341073939, 8.64905894571376 ], [ 77.18767134026011, 8.639369614915777 ], [ 77.191185336833755, 8.629835312849421 ], [ 77.196042922342912, 8.621050320515847 ], [ 77.203794386801448, 8.611981106442895 ], [ 77.2509232929755, 8.575290839001012 ], [ 77.269113397065581, 8.555498765355706 ], [ 77.274797804874751, 8.54673961054459 ], [ 77.278518507922726, 8.536507677387361 ], [ 77.278828566285242, 8.526404934540095 ], [ 77.27262739543788, 8.510566107939495 ], [ 77.262912225318914, 8.495915838844891 ], [ 77.244102003604539, 8.476511338827207 ], [ 77.23273318888549, 8.46945750635882 ], [ 77.224671665165189, 8.467597154385144 ], [ 77.219400669405317, 8.471317857433176 ], [ 77.212476027246836, 8.478216661169936 ], [ 77.210098911335635, 8.479999497878508 ], [ 77.2079285009995, 8.480645453025202 ], [ 77.206068149925144, 8.478914293160072 ], [ 77.205034621150773, 8.474728502118635 ], [ 77.204724561888995, 8.465349228783849 ], [ 77.205964797137625, 8.456202501244432 ], [ 77.214129672746125, 8.427573757522849 ], [ 77.215886671932296, 8.418788764290012 ], [ 77.212165968884321, 8.4077816838776 ], [ 77.203484328438932, 8.393570665254002 ], [ 77.181986931551577, 8.368352566217935 ], [ 77.170824823306916, 8.34804372773584 ], [ 77.16607059058525, 8.336933295435243 ], [ 77.165863885010239, 8.331507270044481 ], [ 77.167310825833894, 8.320810247994528 ], [ 77.167104120258884, 8.314350693829452 ], [ 77.165553826647709, 8.307451890092635 ], [ 77.162349888436538, 8.301715807238677 ], [ 77.154701775866187, 8.295902208220296 ], [ 77.146020135420855, 8.293111681159131 ], [ 77.127209913706494, 8.295127060965056 ], [ 77.121318801221648, 8.294584459505186 ], [ 77.118528273261163, 8.293499253887431 ], [ 77.110349214444668, 8.285192397810873 ], [ 76.995860221871652, 8.368109442596674 ], [ 76.962575716695923, 8.404689846159441 ], [ 76.880137566295602, 8.520697333215365 ], [ 76.826508008737548, 8.569810289513212 ], [ 76.813731316147297, 8.601263739030342 ], [ 76.741709832242904, 8.684515692245382 ], [ 76.731293164847656, 8.707953192086107 ], [ 76.695648634476854, 8.739813544359547 ], [ 76.660329622713874, 8.799750067211844 ], [ 76.644541863216361, 8.81899648619884 ], [ 76.558604363500521, 8.890692450596074 ], [ 76.54395592542555, 8.912502346606002 ], [ 76.548106316453271, 8.924221096526365 ], [ 76.559092644110166, 8.925238348470995 ], [ 76.573252799776853, 8.904445705305021 ], [ 76.591156446412782, 8.908148505549091 ], [ 76.609873894064933, 8.917954820158796 ], [ 76.620616081866658, 8.925441799399492 ], [ 76.607269727216064, 8.925767320705289 ], [ 76.593760613261665, 8.921047268516586 ], [ 76.581553581832267, 8.919907945295448 ], [ 76.572276237658215, 8.93162669521581 ], [ 76.573985222040321, 8.94257233304671 ], [ 76.582286004095792, 8.956366278480969 ], [ 76.593272331752672, 8.968207097879256 ], [ 76.603282097290872, 8.973211981547704 ], [ 76.657562695661838, 8.966376044019226 ], [ 76.660817905122187, 8.969875393334744 ], [ 76.652110222108973, 8.977280992024133 ], [ 76.640391472188625, 8.984442449959088 ], [ 76.634287956923615, 8.986883856604662 ], [ 76.641937696367549, 8.991359768038873 ], [ 76.656504753891198, 8.995062567383568 ], [ 76.668467643666787, 8.999823309398208 ], [ 76.668467643666787, 9.007391669190154 ], [ 76.657888216967578, 9.010687567577175 ], [ 76.644053581707382, 9.007879950699131 ], [ 76.632090691032531, 9.002346096595089 ], [ 76.626719597131668, 8.997463283303885 ], [ 76.620616081866658, 8.987127997359151 ], [ 76.606455925300665, 8.989406642902223 ], [ 76.582774284705451, 9.000555731661674 ], [ 76.576833530542942, 8.994126695090868 ], [ 76.565928582537978, 8.963283596560697 ], [ 76.558604363500521, 8.952093817075989 ], [ 76.551117384259825, 8.966376044019226 ], [ 76.558116081991543, 8.973049221344466 ], [ 76.56153404985649, 8.978989976406295 ], [ 76.56544030012968, 8.994330145120101 ], [ 76.54965253973289, 8.984442449959088 ], [ 76.538828972279163, 8.972601630560801 ], [ 76.534434441396328, 8.957831122108585 ], [ 76.538096550015709, 8.939113674456506 ], [ 76.528086785376772, 8.946966863929616 ], [ 76.521494987703448, 8.961330471424104 ], [ 76.517914258736013, 8.977443752227371 ], [ 76.516856316066054, 8.990627346674668 ], [ 76.513845248259528, 9.002142645666536 ], [ 76.500173373202557, 9.022284247120295 ], [ 76.489268425197608, 9.055568752296095 ], [ 76.46045983235534, 9.114935613987367 ], [ 76.462412957491935, 9.138332424002154 ], [ 76.464528841932434, 9.132513739317627 ], [ 76.466644727272282, 9.128973700176116 ], [ 76.468272332002456, 9.124579169293211 ], [ 76.469086133917912, 9.116603908543537 ], [ 76.476573113158608, 9.116603908543537 ], [ 76.476247591852811, 9.131252346618508 ], [ 76.482758008974855, 9.17182038010645 ], [ 76.473317905496884, 9.164252020314448 ], [ 76.470957879402576, 9.160142320012026 ], [ 76.469086133917912, 9.151353257346953 ], [ 76.462412957491935, 9.151353257346953 ], [ 76.443369988534116, 9.212144272839904 ], [ 76.428233268950166, 9.245347398363718 ], [ 76.414561393893152, 9.246975002194572 ], [ 76.416026238420145, 9.236314194944098 ], [ 76.446787957298326, 9.159613348677111 ], [ 76.448741082434964, 9.145168361530635 ], [ 76.442556185719326, 9.145168361530635 ], [ 76.362966342023, 9.325181381915227 ], [ 76.311778191110577, 9.492987372669118 ], [ 76.291026237770595, 9.633205471655172 ], [ 76.297129753934911, 9.65843333552999 ], [ 76.277354362713638, 9.809271551940579 ], [ 76.253184441508708, 9.883734442490491 ], [ 76.246755404937957, 9.893744208028748 ], [ 76.240244987815885, 9.939398504837126 ], [ 76.236338738441972, 9.95270416966167 ], [ 76.251475457126602, 9.963120835258335 ], [ 76.269541863066465, 9.950995184380245 ], [ 76.284678581751095, 9.928534247557476 ], [ 76.291026237770595, 9.908596096132895 ], [ 76.285655143869732, 9.904364325453228 ], [ 76.262217644028993, 9.911566473214178 ], [ 76.256846550128145, 9.908596096132895 ], [ 76.257660352043544, 9.895819403542644 ], [ 76.260590040198153, 9.884711005508505 ], [ 76.266856315666388, 9.876044012321298 ], [ 76.277354362713638, 9.870754298971686 ], [ 76.278575066486084, 9.876898504962011 ], [ 76.284190300242102, 9.89118073100593 ], [ 76.28907311353332, 9.877142645716502 ], [ 76.288259310718544, 9.861232814942465 ], [ 76.284434440996606, 9.84821198159767 ], [ 76.280772332377168, 9.842840887696807 ], [ 76.289805534897468, 9.843817450714765 ], [ 76.299978061538283, 9.847805080639942 ], [ 76.304698112827609, 9.856268621999273 ], [ 76.297129753934911, 9.870754298971686 ], [ 76.308604363100855, 9.879624742188067 ], [ 76.313812695899159, 9.861314195493717 ], [ 76.338877800470058, 9.699408269975661 ], [ 76.346202019507572, 9.699408269975661 ], [ 76.347341341829392, 9.726874091366197 ], [ 76.337575717045681, 9.789252019964747 ], [ 76.346202019507572, 9.81610748946906 ], [ 76.323985222539918, 9.846177475909766 ], [ 76.320078972266714, 9.861639715900138 ], [ 76.332692904653797, 9.870754298971686 ], [ 76.337412956842428, 9.856187242347344 ], [ 76.353037957036037, 9.829820054352011 ], [ 76.359222851952993, 9.81610748946906 ], [ 76.361094597437656, 9.803859768213725 ], [ 76.358653190792083, 9.781805731449309 ], [ 76.359222851952993, 9.76829661749491 ], [ 76.368011915517442, 9.715562242403562 ], [ 76.377126497689673, 9.695502020601735 ], [ 76.394053582206979, 9.678941148115483 ], [ 76.392425977476805, 9.662827867312215 ], [ 76.386566602066964, 9.649847722894092 ], [ 76.379161004276895, 9.637762761841994 ], [ 76.372894727010006, 9.624335028438791 ], [ 76.353282096891206, 9.535345770191153 ], [ 76.357432487918956, 9.520697333015503 ], [ 76.376719596731945, 9.514471747373248 ], [ 76.425791863203841, 9.50527578285107 ], [ 76.435069207377964, 9.507635808945391 ], [ 76.458994987828405, 9.497300523000716 ], [ 76.477061393768267, 9.503729559571523 ], [ 76.503265820661028, 9.534979559059362 ], [ 76.484385612805724, 9.543768622623814 ], [ 76.466563346721017, 9.556382554111563 ], [ 76.448496940781169, 9.563421942568594 ], [ 76.428233268950166, 9.555405991992926 ], [ 76.417246941293271, 9.561428127606003 ], [ 76.406993035000525, 9.569077867049881 ], [ 76.419688347039525, 9.594183661446776 ], [ 76.419606967387594, 9.614488023103773 ], [ 76.41504967540213, 9.636175847837077 ], [ 76.414561393893152, 9.682684637286171 ], [ 76.410004101907745, 9.700262762616374 ], [ 76.40259850411762, 9.710598049460371 ], [ 76.394053582206979, 9.70624420840346 ], [ 76.392100457070384, 9.716945705479928 ], [ 76.394786004470504, 9.735174872522347 ], [ 76.394053582206979, 9.747219142849131 ], [ 76.39079837274663, 9.756984768532218 ], [ 76.382090691532127, 9.774725653166341 ], [ 76.380381707150022, 9.785101629836332 ], [ 76.384043815769459, 9.802639065340598 ], [ 76.391286655154985, 9.812201239195813 ], [ 76.39649498795329, 9.822658596417055 ], [ 76.394053582206979, 9.842840887696807 ], [ 76.385590039948326, 9.861517645522891 ], [ 76.363780143938456, 9.899237372306855 ], [ 76.359222851952993, 9.91543203366143 ], [ 76.320811394530196, 9.953314520648574 ], [ 76.311534050356087, 9.966945704980274 ], [ 76.29428144633161, 9.951320705685983 ], [ 76.278168165528356, 9.977932033536488 ], [ 76.269297722311975, 10.016262111307354 ], [ 76.27393639394937, 10.035834052499521 ], [ 76.255056186094052, 10.04767487189781 ], [ 76.245127800207783, 10.102199611023194 ], [ 76.236338738441972, 10.103461005520952 ], [ 76.227712435980081, 10.109564519886645 ], [ 76.222911004139505, 10.117621161187627 ], [ 76.215342644347487, 10.138251044150362 ], [ 76.207530143801065, 10.117132880577968 ], [ 76.213552280313465, 10.098822332984239 ], [ 76.2234806653004, 10.082098700294749 ], [ 76.229014519404501, 10.06590403894023 ], [ 76.230967644541096, 10.025824286061946 ], [ 76.235036655017595, 10.005072333621282 ], [ 76.242686394461472, 9.987453518465086 ], [ 76.228200717489059, 9.999945380474911 ], [ 76.214610222084033, 10.024481511912255 ], [ 76.182383660477498, 10.105658270512775 ], [ 76.181162956705052, 10.121161200329139 ], [ 76.18490644587574, 10.135809637504732 ], [ 76.184580925469263, 10.144924221475604 ], [ 76.177744987940784, 10.155340887072269 ], [ 76.17750084718628, 10.1706403668594 ], [ 76.224131707012631, 10.196926174303483 ], [ 76.236338738441972, 10.210272528054698 ], [ 76.237315299661276, 10.216986395205932 ], [ 76.241709832342821, 10.223944403111714 ], [ 76.242686394461472, 10.231024481394682 ], [ 76.240244987815885, 10.238959052318419 ], [ 76.234385613305378, 10.237941799474466 ], [ 76.227793816531332, 10.234279689955711 ], [ 76.222829622688863, 10.23444245015895 ], [ 76.213389519210892, 10.253241278362278 ], [ 76.206309440927882, 10.262884833668123 ], [ 76.194834831761995, 10.26862213690208 ], [ 76.207855665106791, 10.234564520536193 ], [ 76.20948326893766, 10.216009833087295 ], [ 76.201670769290544, 10.199693101355534 ], [ 76.18409264396027, 10.189357815410856 ], [ 76.170583530005885, 10.193752346293705 ], [ 76.160492383916321, 10.206244208303529 ], [ 76.153168164878863, 10.220160223215712 ], [ 76.138194207296792, 10.261053778009451 ], [ 76.120616081966574, 10.343573308961025 ], [ 76.106130404994175, 10.38467031558258 ], [ 76.070078971867005, 10.432806707963207 ], [ 76.06511477982319, 10.449855861059117 ], [ 76.063324414889777, 10.470160223615435 ], [ 76.052419466884814, 10.513983466563726 ], [ 76.044606967237698, 10.52928294545154 ], [ 76.018728060751343, 10.553412176830474 ], [ 76.008067254400245, 10.567084051887489 ], [ 75.999685091793523, 10.605536200035599 ], [ 75.939138217055003, 10.726060289250936 ], [ 75.934743686172141, 10.744330145220031 ], [ 75.932139519323286, 10.750962632719334 ], [ 75.926931186524982, 10.757717190595882 ], [ 75.922048373233778, 10.76557038006899 ], [ 75.921071811115127, 10.775702215984435 ], [ 75.924082878921681, 10.780707097854243 ], [ 75.936534050206191, 10.79071686429182 ], [ 75.941579622801314, 10.796210028569929 ], [ 75.911143425228815, 10.809230861015404 ], [ 75.894541862916569, 10.849758205576732 ], [ 75.880137566495463, 10.932684637486032 ], [ 75.832774285304978, 11.097845770665741 ], [ 75.742930535315892, 11.3101260442815 ], [ 75.737803582169505, 11.319484768107541 ], [ 75.733653191141784, 11.325181382414822 ], [ 75.730804884437802, 11.331732489362874 ], [ 75.729258660258935, 11.343654690211789 ], [ 75.739512565652362, 11.350734768494757 ], [ 75.7424422538069, 11.358710028345111 ], [ 75.735524935727128, 11.371527411660676 ], [ 75.722178581975896, 11.367499091010243 ], [ 75.711192254319002, 11.381781317054102 ], [ 75.695160352268417, 11.419989325347045 ], [ 75.677093946328498, 11.450100002513066 ], [ 75.664805535247226, 11.462632554348883 ], [ 75.650157097172254, 11.467759507495257 ], [ 75.63013756609574, 11.468736070513213 ], [ 75.616547070690714, 11.473618882005779 ], [ 75.6088973321461, 11.484930730968468 ], [ 75.606293165297288, 11.505316473176661 ], [ 75.600840690845175, 11.5233828800159 ], [ 75.581879102438606, 11.549790756937851 ], [ 75.585297071202817, 11.563381252342934 ], [ 75.530772332077433, 11.693670966341982 ], [ 75.506114129363525, 11.727240302098265 ], [ 75.379730664738346, 11.864976304612751 ], [ 75.372569206803391, 11.864732163858262 ], [ 75.355804884287906, 11.857652085575294 ], [ 75.352549674827557, 11.861558334949162 ], [ 75.349375846817836, 11.871975002344467 ], [ 75.324554883900745, 11.899115302429264 ], [ 75.307627800282688, 11.93219635667651 ], [ 75.32650800903734, 11.935858466195267 ], [ 75.400238477323839, 11.920233466001658 ], [ 75.400238477323839, 11.926459052543235 ], [ 75.386566602266825, 11.935126043931744 ], [ 75.382823113096137, 11.945502020601735 ], [ 75.385996941105915, 11.958319403018034 ], [ 75.393402539795289, 11.974839585678293 ], [ 75.380218946247311, 11.968695380587345 ], [ 75.361338738392007, 11.951239325634329 ], [ 75.349131706962666, 11.947577216115629 ], [ 75.331716341835644, 11.949530341252226 ], [ 75.316091342541355, 11.955633856517235 ], [ 75.30225670728116, 11.966050523013219 ], [ 75.290375196258239, 11.981105861146542 ], [ 75.278819207440435, 12.003241278462209 ], [ 75.28109785208413, 12.010646877151654 ], [ 75.31470787946499, 12.008368231608582 ], [ 75.32976321669905, 12.012640692114244 ], [ 75.324961784858417, 12.022650458551819 ], [ 75.30559329549412, 12.041774807161627 ], [ 75.304209832417811, 12.043158270237994 ], [ 75.30571902881006, 12.057636419884826 ], [ 75.30168826739957, 12.069754544336716 ], [ 75.309543084645597, 12.093706569702418 ], [ 75.323909132900141, 12.10690989797342 ], [ 75.330523715796772, 12.103137518981324 ], [ 75.337965121892793, 12.098383287158979 ], [ 75.348300408736847, 12.104248562121423 ], [ 75.357912225168988, 12.11285268820097 ], [ 75.371761508586687, 12.120474962349643 ], [ 75.382303501005694, 12.12907908842919 ], [ 75.396876254835249, 12.128769029167357 ], [ 75.396876254835249, 12.142928371846889 ], [ 75.38147667780639, 12.147579250881732 ], [ 75.369901158411707, 12.141300563869887 ], [ 75.354191522121013, 12.13520274491071 ], [ 75.338585240416464, 12.140551255935687 ], [ 75.322462192975792, 12.143393459840295 ], [ 75.309853143008112, 12.131998805800205 ], [ 75.302618443386365, 12.12303294541408 ], [ 75.288355747020077, 12.115488186530566 ], [ 75.28184451691088, 12.109080308309554 ], [ 75.27616010910171, 12.100967109544452 ], [ 75.258073357799134, 12.104610297327325 ], [ 75.240503371333475, 12.1092095004181 ], [ 75.222933383968424, 12.100166123867494 ], [ 75.221796503305924, 12.038645331017218 ], [ 75.222178582075841, 12.022040106665596 ], [ 75.216481966869239, 12.021063544546902 ], [ 75.210622592358717, 12.016994533171156 ], [ 75.207041863391211, 12.012030341127341 ], [ 75.208506707018884, 12.008368231608582 ], [ 75.19369550874066, 12.022284247420085 ], [ 75.186289910051272, 12.041571356233076 ], [ 75.180511915192696, 12.077297268054448 ], [ 75.143809441252671, 12.161322333359006 ], [ 75.130869988459139, 12.207831121908724 ], [ 75.13965905022495, 12.241766669696059 ], [ 75.13965905022495, 12.248602606325218 ], [ 75.126719597431403, 12.245835679273167 ], [ 75.119639519148436, 12.238999742644008 ], [ 75.113942904841153, 12.230169989253564 ], [ 75.10547936348182, 12.221258856211247 ], [ 75.106130405193966, 12.233710028395079 ], [ 75.104746941218295, 12.246079820027656 ], [ 75.098643425053965, 12.269029039258724 ], [ 75.082855664657174, 12.305894273401973 ], [ 75.018402540544784, 12.414740302522942 ], [ 75.010996940956019, 12.435777085544029 ], [ 75.009938998286074, 12.443793036119697 ], [ 75.006602410073114, 12.449448960601043 ], [ 74.999359570687588, 12.454901434153836 ], [ 74.992035352549451, 12.461737372581636 ], [ 74.988780143988407, 12.471380926988159 ], [ 74.985362175224154, 12.491359768238679 ], [ 74.976735872762262, 12.507025458258282 ], [ 74.955251498058132, 12.537258204902228 ], [ 74.879649285186289, 12.725490627690302 ], [ 74.870127800257748, 12.742865302092012 ], [ 74.855723503836586, 12.759426174578264 ], [ 74.85425866020897, 12.765285549088784 ], [ 74.897888625359698, 12.778755195395942 ], [ 74.92010949086027, 12.779943752002563 ], [ 74.933545363127948, 12.778083400928207 ], [ 74.940676710861496, 12.776119696167026 ], [ 74.945224237108832, 12.773871772364371 ], [ 74.947394647444966, 12.770977890717061 ], [ 74.949461704094333, 12.766223659794033 ], [ 74.950495232868647, 12.761598619180912 ], [ 74.952872348779849, 12.744829617492824 ], [ 74.955146111903488, 12.738060004065911 ], [ 74.958453403801499, 12.732117213838304 ], [ 74.964654576447501, 12.725786850882455 ], [ 74.969305453683702, 12.723203030295618 ], [ 74.974886508705353, 12.72183360383775 ], [ 74.993800083207233, 12.720102443972618 ], [ 74.99896772707892, 12.718862210522556 ], [ 75.003101841276916, 12.716795152074607 ], [ 75.003928663576886, 12.714598904216015 ], [ 75.003928663576886, 12.711627509102241 ], [ 75.001551547665755, 12.70449616136875 ], [ 75.00144819487825, 12.700904649529942 ], [ 75.002998487590077, 12.696434638547712 ], [ 75.007959425886767, 12.690724392316834 ], [ 75.014884068045248, 12.687520453206329 ], [ 75.0207751814294, 12.685840969285263 ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Lakshadweep", "admin": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 73.056651238164065, 8.259995834839911 ], [ 73.044688347489199, 8.252427475947227 ], [ 73.032725456814362, 8.249497789591315 ], [ 73.02409915525179, 8.255438544653087 ], [ 73.022471550521615, 8.274359442334399 ], [ 73.029307488050094, 8.274359442334399 ], [ 73.029307488050094, 8.274318752508405 ], [ 73.029307488050094, 8.274115302479229 ], [ 73.028981966744297, 8.263413804503442 ], [ 73.029307488050094, 8.259995834839911 ], [ 73.048350457007899, 8.267564195531177 ], [ 73.063161655286123, 8.279486395480772 ], [ 73.073008659721822, 8.295396226254807 ], [ 73.077159049850238, 8.315252997128082 ], [ 73.081797722386952, 8.315822658289049 ], [ 73.083018425260079, 8.314357815560752 ], [ 73.083018425260079, 8.311672268160633 ], [ 73.083994988278036, 8.308498440150855 ], [ 73.083994988278036, 8.308457749425598 ], [ 73.066091342541355, 8.270453192061153 ], [ 73.056651238164065, 8.259995834839911 ] ] ], [ [ [ 73.637054883675873, 10.06256744982795 ], [ 73.632578972241717, 10.057277736478339 ], [ 73.63168378977501, 10.067775783525574 ], [ 73.63168378977501, 10.067816473351568 ], [ 73.633311394505185, 10.077866929615082 ], [ 73.637461785532921, 10.08706289323794 ], [ 73.643890821204408, 10.094549872478636 ], [ 73.643972200856339, 10.094468491927328 ], [ 73.645192905528106, 10.092189846384311 ], [ 73.646332226950662, 10.084702867143559 ], [ 73.64405358230691, 10.076971747148376 ], [ 73.640961133949119, 10.069322007704498 ], [ 73.637054883675873, 10.06256744982795 ] ] ], [ [ [ 73.657481315710115, 10.145086981678842 ], [ 73.659678582500518, 10.144354559415374 ], [ 73.662282748450011, 10.144598700169864 ], [ 73.66220136789876, 10.144517320517933 ], [ 73.660329623313416, 10.142523505555342 ], [ 73.659353061194778, 10.139960028532469 ], [ 73.657888216667843, 10.139064846065763 ], [ 73.654633009006133, 10.141506252711393 ], [ 73.655609571124771, 10.1447614603731 ], [ 73.657481315710115, 10.145086981678842 ] ] ], [ [ [ 72.627533398947136, 10.554795639906841 ], [ 72.627452019295205, 10.554754950080847 ], [ 72.6320906909326, 10.560003973604465 ], [ 72.648610872693581, 10.573960679241962 ], [ 72.648692254144166, 10.573919989415968 ], [ 72.65056399783019, 10.572577216165596 ], [ 72.650401238526271, 10.571193752189911 ], [ 72.649587435711553, 10.569322007604567 ], [ 72.649750195914791, 10.566880600958937 ], [ 72.649750195914791, 10.566839911133 ], [ 72.638519727503351, 10.559393622617561 ], [ 72.633067253950557, 10.55654531501426 ], [ 72.627533398947136, 10.554795639906841 ] ] ], [ [ [ 72.548757358065572, 10.779323635677256 ], [ 72.541188998273626, 10.772894598207129 ], [ 72.540863476967829, 10.776516017899892 ], [ 72.542491081698003, 10.777899480976256 ], [ 72.545420768953278, 10.778306381933984 ], [ 72.548838737717503, 10.77944570515518 ], [ 72.548757358065572, 10.779323635677256 ] ] ], [ [ [ 73.684418164866358, 10.827541408609077 ], [ 73.676280143913445, 10.824367580599356 ], [ 73.67286217514922, 10.824693101005776 ], [ 73.671885613030597, 10.827093816926091 ], [ 73.671397332420881, 10.829657293948967 ], [ 73.671397332420881, 10.829738674500218 ], [ 73.681244336856636, 10.82807037994405 ], [ 73.684418164866358, 10.827541408609077 ] ] ], [ [ [ 72.188161655236158, 10.836127020345712 ], [ 72.172699415245788, 10.809230861015404 ], [ 72.17261803469448, 10.829982815254708 ], [ 72.179047071265288, 10.848700262007466 ], [ 72.185150587429618, 10.858303127487316 ], [ 72.189300976658714, 10.864935614087297 ], [ 72.195648634476854, 10.872707423908478 ], [ 72.200043165359759, 10.878119208534653 ], [ 72.200043165359759, 10.878078518708659 ], [ 72.200043165359759, 10.86444733347764 ], [ 72.188161655236158, 10.836127020345712 ] ] ], [ [ [ 72.744965039804683, 11.109523829860846 ], [ 72.739512566251889, 11.10883209832269 ], [ 72.739512566251889, 11.113959052368383 ], [ 72.742035352549451, 11.115952867330973 ], [ 72.745778841720139, 11.116888739623617 ], [ 72.750010613299125, 11.119086005514699 ], [ 72.747569206653495, 11.115423895096681 ], [ 72.746755404738096, 11.111965236506419 ], [ 72.744965039804683, 11.109523829860846 ] ] ], [ [ [ 72.775482617928418, 11.186753648362183 ], [ 72.775401238276501, 11.186590887259623 ], [ 72.771169466697458, 11.201117254957351 ], [ 72.770355664782059, 11.203640041254912 ], [ 72.770355664782059, 11.203680731080849 ], [ 72.774180535403318, 11.222886460241906 ], [ 72.789073113333444, 11.261664130595134 ], [ 72.789235873536697, 11.261664130595134 ], [ 72.795909049962617, 11.261664130595134 ], [ 72.795583530455517, 11.257228908087594 ], [ 72.793955924826008, 11.254299220832364 ], [ 72.791514519079769, 11.251654364157556 ], [ 72.789073113333444, 11.248032945364113 ], [ 72.787933790112262, 11.232245184067947 ], [ 72.784922722305723, 11.216376044019224 ], [ 72.775482617928418, 11.186753648362183 ] ] ], [ [ [ 73.008799675464587, 11.4846865911133 ], [ 73.005625847454823, 11.479641018518178 ], [ 73.004405143682362, 11.488836981241658 ], [ 73.004405143682362, 11.496486721584912 ], [ 73.007090691082482, 11.501288153425547 ], [ 73.013194207246826, 11.502183334992877 ], [ 73.010915560804435, 11.490139065565414 ], [ 73.008799675464587, 11.4846865911133 ] ] ], [ [ [ 72.701101107929716, 11.686428126956455 ], [ 72.700938346827201, 11.686428126956455 ], [ 72.705088737854894, 11.692328192192289 ], [ 72.709239128882629, 11.694159246951697 ], [ 72.716156446063096, 11.694159246951697 ], [ 72.716075066411165, 11.694077867299709 ], [ 72.7086694668224, 11.689154364182569 ], [ 72.705251498058132, 11.687323309423162 ], [ 72.701101107929716, 11.686428126956455 ] ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Orissa", "admin": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 86.401579216807335, 22.320007432996583 ], [ 86.419149204172385, 22.320834255296624 ], [ 86.433721958001883, 22.323133856841988 ], [ 86.471755812580597, 22.335071113241263 ], [ 86.486638624772667, 22.336853949050461 ], [ 86.497180617191688, 22.334683538714327 ], [ 86.506068964111336, 22.330833645356442 ], [ 86.602187128433144, 22.272852688400857 ], [ 86.646628859434244, 22.234870509766207 ], [ 86.686523065087314, 22.218023992813013 ], [ 86.70460981638989, 22.188697618000667 ], [ 86.715461867171342, 22.183504137505903 ], [ 86.732101677650263, 22.178155626480983 ], [ 86.749051548290296, 22.174305732223722 ], [ 86.766724888442781, 22.167716986849424 ], [ 86.781607700634808, 22.155185452146892 ], [ 86.833904249781241, 22.121750799759578 ], [ 86.848166945248281, 22.119296170381908 ], [ 86.861396111940934, 22.120510566309573 ], [ 86.876588983394782, 22.119812934319434 ], [ 86.892712029936192, 22.116583156787211 ], [ 86.943768344733243, 22.096403510413662 ], [ 86.971260206893007, 22.079531155038747 ], [ 86.987383254333665, 22.066586209186191 ], [ 86.996271600353992, 22.055475775986274 ], [ 86.999372185777688, 22.049894720964566 ], [ 87.000922479388848, 22.045218004407385 ], [ 87.004746535224371, 22.025710150702871 ], [ 87.00567671121118, 22.013979600777922 ], [ 87.005573358423675, 22.004832872339186 ], [ 87.004746535224371, 22.000052802095123 ], [ 86.993687778867837, 21.972483425569628 ], [ 86.995858189204029, 21.957032171697332 ], [ 87.004953240799395, 21.936981716532951 ], [ 87.03141157418473, 21.907991238504845 ], [ 87.047844679987961, 21.902177639486464 ], [ 87.059213494706952, 21.907190252827885 ], [ 87.063450961692453, 21.918171494818633 ], [ 87.069135370400986, 21.927576606575137 ], [ 87.076163365346972, 21.932899278279073 ], [ 87.085155064154819, 21.936619981327052 ], [ 87.094146762962666, 21.942201036348699 ], [ 87.100761345859368, 21.951296087944051 ], [ 87.10623904809357, 21.96173472757561 ], [ 87.112956983777707, 21.971398219951876 ], [ 87.120811801923068, 21.976927599029459 ], [ 87.136624790101948, 21.977237657391974 ], [ 87.155435011816266, 21.972095851942008 ], [ 87.190678339333815, 21.956205349397347 ], [ 87.20680138497589, 21.941425889992782 ], [ 87.214656203121223, 21.924140123467904 ], [ 87.219617141417899, 21.884995225749034 ], [ 87.225611606690251, 21.863575344126779 ], [ 87.231502720074417, 21.848098252732136 ], [ 87.239667595682903, 21.832595322915775 ], [ 87.251966587288081, 21.822105007340205 ], [ 87.275014275987957, 21.813965969254067 ], [ 87.408546177264199, 21.786138211209444 ], [ 87.424462518230584, 21.774743557169408 ], [ 87.431593865964075, 21.761591904842525 ], [ 87.43128380670224, 21.746450711131381 ], [ 87.427459750866745, 21.718183701716438 ], [ 87.4278731629161, 21.70366262473032 ], [ 87.430870395552262, 21.689322414897497 ], [ 87.436554803361432, 21.675628160211424 ], [ 87.468284133405959, 21.630049546749145 ], [ 87.477386914674341, 21.613592840936857 ], [ 87.468760613111769, 21.611395575045716 ], [ 87.404958529812262, 21.586655992679873 ], [ 87.341807488224944, 21.562404690024429 ], [ 87.293467644016502, 21.553656317185297 ], [ 87.256114129263594, 21.561997789066702 ], [ 87.245941601723501, 21.556586005339849 ], [ 87.235199414821111, 21.55451080892669 ], [ 87.211436393674589, 21.554592190377257 ], [ 87.200938347526673, 21.551988023528448 ], [ 87.113047721774862, 21.507961330550923 ], [ 87.063731316347088, 21.475002346680917 ], [ 86.917653841951207, 21.327378648106102 ], [ 86.866953972547748, 21.256048894840596 ], [ 86.837250196339411, 21.174709376936161 ], [ 86.844004754215945, 21.082220770272325 ], [ 86.952159050000134, 20.849107164563971 ], [ 86.965668164853838, 20.805975653153833 ], [ 86.953868035281559, 20.780585028176514 ], [ 86.936289909951356, 20.787502346256243 ], [ 86.916514518730011, 20.78807200741721 ], [ 86.878754102120041, 20.780585028176514 ], [ 86.889333529718598, 20.764471747373246 ], [ 86.910655144219476, 20.756415106072264 ], [ 86.957204623494519, 20.753241278062486 ], [ 86.979991082522389, 20.755560614330868 ], [ 86.986582879296378, 20.751857814986174 ], [ 86.994883660452544, 20.738959052018622 ], [ 87.000010612699541, 20.7282168642169 ], [ 87.001800976733634, 20.718980209868782 ], [ 86.998708530174483, 20.711127020395676 ], [ 86.988617384084975, 20.704250393041203 ], [ 86.975759310943417, 20.710679429611954 ], [ 86.961192254319002, 20.712836005677101 ], [ 86.948252799726887, 20.709051824881779 ], [ 86.940196160224545, 20.69798411757295 ], [ 86.951914910144964, 20.697007554554997 ], [ 86.961192254319002, 20.695054429418345 ], [ 86.968516472457196, 20.691148179145156 ], [ 86.974294467315744, 20.684393622167924 ], [ 86.981700066005175, 20.685370184286562 ], [ 86.986501497845822, 20.684393622167924 ], [ 86.99024498791583, 20.679999091285023 ], [ 86.994883660452544, 20.670721747110914 ], [ 87.019379102063837, 20.680365302416757 ], [ 87.033376498426577, 20.690171617026461 ], [ 87.043223503761595, 20.69798411757295 ], [ 87.02751712301675, 20.679673569979226 ], [ 87.003591341667047, 20.657049872053957 ], [ 86.976247592452381, 20.637884833618152 ], [ 86.923187696055237, 20.621730861190255 ], [ 86.774180535303387, 20.511948960675959 ], [ 86.75147545682681, 20.489162502547455 ], [ 86.733897332395927, 20.462225653391155 ], [ 86.724619988221804, 20.431952216021948 ], [ 86.720469597194082, 20.368475653128876 ], [ 86.741953971898198, 20.379543361337024 ], [ 86.756358269218694, 20.39374420862833 ], [ 86.769786004420538, 20.400702216534054 ], [ 86.788747591927788, 20.390122788935564 ], [ 86.788259311318129, 20.402818100974567 ], [ 86.789805535496996, 20.414699611098168 ], [ 86.796153191516538, 20.437323309023494 ], [ 86.80982506567419, 20.415106512055836 ], [ 86.794200066379901, 20.378159898260655 ], [ 86.768321159893532, 20.343451239283237 ], [ 86.75147545682681, 20.328070379844114 ], [ 86.739268425397469, 20.324204820296185 ], [ 86.7197371749306, 20.315090236325315 ], [ 86.701670768990752, 20.303778387362676 ], [ 86.693695509140397, 20.293931382027662 ], [ 86.701670768990752, 20.284654039652189 ], [ 86.7197371749306, 20.291734117035837 ], [ 86.754649284836589, 20.314439195512417 ], [ 86.717458530286919, 20.286932684295945 ], [ 86.628184441458743, 20.235256251874482 ], [ 86.583832227175463, 20.218207097879255 ], [ 86.534190300441963, 20.206122136827158 ], [ 86.511485221965344, 20.197455145438589 ], [ 86.495127800407573, 20.184068100962062 ], [ 86.490407748218942, 20.174058335423801 ], [ 86.478851759401138, 20.129339910908126 ], [ 86.46851647165775, 20.109279690005675 ], [ 86.467133009480776, 20.094671942656017 ], [ 86.415049675202326, 20.036322332909318 ], [ 86.391449415158306, 20.020209052106051 ], [ 86.396739129407237, 20.009955144913985 ], [ 86.404144727197348, 20.002630927675167 ], [ 86.414073113083631, 19.998846746879842 ], [ 86.426280144513029, 19.999172268185585 ], [ 86.397227410016896, 19.982855536453823 ], [ 86.348399285198795, 20.008856512418102 ], [ 86.275401238276501, 20.06736888236798 ], [ 86.231293164747711, 20.064886785896416 ], [ 86.209157748331378, 20.066636460104515 ], [ 86.199717643954031, 20.077948309067207 ], [ 86.195974154783343, 20.080308335161526 ], [ 86.173024936451597, 20.102199610823387 ], [ 86.16846764446619, 20.113185940278917 ], [ 86.163096549666008, 20.134833075186233 ], [ 86.158702018783089, 20.143133856342384 ], [ 86.152517122966771, 20.143133856342384 ], [ 86.145030143726075, 20.122015691870669 ], [ 86.154307487900184, 20.089992580293305 ], [ 86.158702018783089, 20.081040757424997 ], [ 86.167735222202666, 20.072943427197398 ], [ 86.187754754178499, 20.063666083023286 ], [ 86.213715040316785, 20.042425848174329 ], [ 86.230235222077781, 20.035305080065363 ], [ 86.268565299848646, 20.026434636848986 ], [ 86.273448113139835, 20.026190496993816 ], [ 86.284678582450539, 20.027492580418251 ], [ 86.289073113333444, 20.026434636848986 ], [ 86.293223504361194, 20.021429754979174 ], [ 86.294118685928581, 20.015692449946581 ], [ 86.294200066479817, 20.010402736596966 ], [ 86.295909049962603, 20.00657786687503 ], [ 86.302907747694334, 19.999090887634335 ], [ 86.308116082291335, 19.992092189902618 ], [ 86.314952018920494, 19.986883856204994 ], [ 86.326670768840856, 19.984849351416411 ], [ 86.341563346770997, 19.979885158473277 ], [ 86.356455924701123, 19.970404364269989 ], [ 86.372406446200486, 19.964992580543136 ], [ 86.268565299848646, 19.910345770141131 ], [ 86.111582879246413, 19.855698960638502 ], [ 86.089040560973032, 19.844224351472629 ], [ 86.078379753722615, 19.843573308861089 ], [ 86.066742384353489, 19.851996161293808 ], [ 86.056651238263981, 19.856878973685692 ], [ 86.046560092174474, 19.852525132628724 ], [ 86.037933789712596, 19.845282294142514 ], [ 86.032074415202061, 19.841498114246573 ], [ 86.013519726853843, 19.839056708500262 ], [ 85.88884524840941, 19.802964585547155 ], [ 85.846364780510129, 19.795843817438193 ], [ 85.80860436300091, 19.773382880615426 ], [ 85.78882897177958, 19.765692450446231 ], [ 85.778086784877175, 19.76463450687697 ], [ 85.74439537874369, 19.765692450446231 ], [ 85.734385613205447, 19.763617254932338 ], [ 85.714854362738578, 19.754217841280301 ], [ 85.684580925369332, 19.74774811398424 ], [ 85.624278191385358, 19.718573309110919 ], [ 85.6259871748682, 19.722886460341837 ], [ 85.63599694130572, 19.726629950411841 ], [ 85.637950066442372, 19.731634833180973 ], [ 85.614268424947767, 19.727932032936959 ], [ 85.549164259123231, 19.690619208010045 ], [ 85.480479363431854, 19.666327216427867 ], [ 85.456797721937264, 19.66331614862133 ], [ 85.449880404756797, 19.666693427559604 ], [ 85.447520378662475, 19.674627997584018 ], [ 85.446787957298326, 19.690619208010045 ], [ 85.443125846880307, 19.692450261870075 ], [ 85.436859571412043, 19.691351630273513 ], [ 85.430430534841236, 19.691717841405247 ], [ 85.4262801438135, 19.697455145538523 ], [ 85.427012566077025, 19.704087632138506 ], [ 85.431651237714377, 19.704901434053905 ], [ 85.436859571412043, 19.704657294198736 ], [ 85.439300977158311, 19.707993882411696 ], [ 85.450856966875492, 19.716294664467167 ], [ 85.477549675277231, 19.72386302335979 ], [ 85.521983269212441, 19.739081122595731 ], [ 85.525563998179933, 19.734035549101286 ], [ 85.523448112840043, 19.728705145026421 ], [ 85.518890820854637, 19.721584376917459 ], [ 85.514984571480724, 19.711127020595477 ], [ 85.558848504254996, 19.738104559577717 ], [ 85.576508009237187, 19.745835679572959 ], [ 85.567637566020821, 19.750799872516094 ], [ 85.563243035137916, 19.756903386881785 ], [ 85.564138216705302, 19.764390367021797 ], [ 85.570323113420869, 19.77317942968693 ], [ 85.567149285411162, 19.791652736584521 ], [ 85.570323113420869, 19.875637111163709 ], [ 85.557139518973585, 19.881781317154033 ], [ 85.514984571480724, 19.889308986220723 ], [ 85.476817253913097, 19.901027736141081 ], [ 85.463552279813811, 19.902899481625749 ], [ 85.440114779973086, 19.896226304300509 ], [ 85.416270379174634, 19.879787502191441 ], [ 85.374522331740181, 19.837795314901822 ], [ 85.319590690757749, 19.793646552446425 ], [ 85.304209832217936, 19.792669989428472 ], [ 85.290293816406447, 19.789943752202358 ], [ 85.278086784977091, 19.785589911145443 ], [ 85.268077019438849, 19.780015367215409 ], [ 85.246836785489194, 19.762640691914378 ], [ 85.220957879002853, 19.736029364063878 ], [ 85.20337975367265, 19.707261460148228 ], [ 85.206553581682357, 19.683783270481509 ], [ 85.189952019370125, 19.670965887165945 ], [ 85.175140821091958, 19.63690826990074 ], [ 85.165537957410763, 19.625799871866601 ], [ 85.150157097072324, 19.613470770059958 ], [ 85.140147332433372, 19.596584377167225 ], [ 85.139333530517987, 19.579779363926487 ], [ 85.151377799945436, 19.567775783425642 ], [ 85.151377799945436, 19.560288804184943 ], [ 85.139170769415429, 19.557074286349231 ], [ 85.122894727509603, 19.549017645048249 ], [ 85.108897332046155, 19.538967190583371 ], [ 85.102875196433146, 19.529608465858015 ], [ 85.10450280026393, 19.514878648131113 ], [ 85.108734570943653, 19.506781317004137 ], [ 85.115489128820215, 19.507473049441668 ], [ 85.124034049831479, 19.519354559565265 ], [ 85.128754102020125, 19.50950755423025 ], [ 85.130218946547117, 19.498724677501851 ], [ 85.128672722368179, 19.487982489700123 ], [ 85.124034049831479, 19.478338934394284 ], [ 85.135752799751828, 19.481594142955309 ], [ 85.141774936264241, 19.48712799705941 ], [ 85.145762566189418, 19.493475653078914 ], [ 85.151377799945436, 19.498846746979776 ], [ 85.162445509052972, 19.50348541951649 ], [ 85.171153191166781, 19.504461981635128 ], [ 85.17855878985624, 19.504299221431889 ], [ 85.185557488487277, 19.505682684508255 ], [ 85.202891472163657, 19.517157294573448 ], [ 85.201914910045033, 19.52708567956045 ], [ 85.196299675389668, 19.538478908175076 ], [ 85.199229363544234, 19.554103908368685 ], [ 85.206309440927868, 19.548000393103617 ], [ 85.214528842432088, 19.547267970840149 ], [ 85.223643425503653, 19.549953518240269 ], [ 85.233246290084182, 19.554103908368685 ], [ 85.203786655529697, 19.570502020651698 ], [ 85.193044466828653, 19.573919989415966 ], [ 85.193044466828653, 19.580796617669755 ], [ 85.212901237701928, 19.581122137176859 ], [ 85.223643425503653, 19.590236721147729 ], [ 85.232595248371965, 19.601548570110417 ], [ 85.247569206853356, 19.608710028045319 ], [ 85.247569206853356, 19.614935614586948 ], [ 85.241872592546073, 19.617010809201471 ], [ 85.237315299661276, 19.62055084834298 ], [ 85.234385613305378, 19.625677802388676 ], [ 85.233246290084182, 19.632554428843768 ], [ 85.236338738441972, 19.635321355895819 ], [ 85.247813346708526, 19.653143621980568 ], [ 85.247569206853356, 19.656480210193529 ], [ 85.260752800401377, 19.656073309235804 ], [ 85.3090926437105, 19.642238673975609 ], [ 85.350596550390406, 19.677639065390562 ], [ 85.363780143938456, 19.678045966348233 ], [ 85.374359571536928, 19.674709377235949 ], [ 85.383067253650765, 19.676092841211634 ], [ 85.391449415358167, 19.690619208010045 ], [ 85.399180535353338, 19.679144597944795 ], [ 85.403168165278515, 19.671291408471685 ], [ 85.404958530211928, 19.661932684645645 ], [ 85.405284049719043, 19.645941473320303 ], [ 85.402191602260572, 19.643988348183704 ], [ 85.388682488306117, 19.638251044050431 ], [ 85.384613476930369, 19.635972398507359 ], [ 85.382172071184101, 19.631089585216156 ], [ 85.380381707150022, 19.619614976050279 ], [ 85.377940300504392, 19.614935614586948 ], [ 85.36841881647517, 19.608099677058416 ], [ 85.352305534772583, 19.599432683871264 ], [ 85.336761915130211, 19.596096096557567 ], [ 85.330088737804914, 19.604966538874631 ], [ 85.326426629185534, 19.618801174134884 ], [ 85.318369987884566, 19.619533596398348 ], [ 85.311045768847094, 19.610500392978732 ], [ 85.3090926437105, 19.595038152988362 ], [ 85.303477409954482, 19.597479559633932 ], [ 85.293793164822645, 19.599554755147832 ], [ 85.288422070921769, 19.601263739529937 ], [ 85.302500846936468, 19.58665599218028 ], [ 85.305837436048805, 19.580145575058221 ], [ 85.302907747894182, 19.573919989415966 ], [ 85.330577019313964, 19.576402084988214 ], [ 85.576508009237187, 19.690619208010045 ], [ 85.540293815906836, 19.66958242408958 ], [ 85.463389518711253, 19.631048895390162 ], [ 85.380218946047464, 19.593817450115232 ], [ 85.336680535478294, 19.575181382115087 ], [ 85.285411004014563, 19.536281643183251 ], [ 85.240570509121639, 19.518052476140834 ], [ 85.180430535340889, 19.475002346181324 ], [ 85.069509310706096, 19.372137761948121 ], [ 84.995860222071514, 19.32330963713002 ], [ 84.872080925194481, 19.219875393534547 ], [ 84.791026237870526, 19.120591539168171 ], [ 84.777781897816268, 19.116203843132833 ], [ 84.774185011628944, 19.139968980384136 ], [ 84.770774366943428, 19.146867784120897 ], [ 84.763022901585572, 19.156376247765589 ], [ 84.75465132040209, 19.15965770124188 ], [ 84.743695916833062, 19.161440537950451 ], [ 84.708349237427328, 19.161673081947182 ], [ 84.694499953110295, 19.160587877228743 ], [ 84.685508254302462, 19.15756480617085 ], [ 84.68137413920509, 19.153301499864309 ], [ 84.683027784704436, 19.147126166539344 ], [ 84.686128371027422, 19.140666612374215 ], [ 84.687988723001112, 19.134672146202544 ], [ 84.689435662925433, 19.125525417763807 ], [ 84.687058547014303, 19.1119603542869 ], [ 84.681064080842631, 19.100514024302747 ], [ 84.669695266123583, 19.090152899936349 ], [ 84.6615303887164, 19.090256252723858 ], [ 84.656879509681559, 19.093641058987654 ], [ 84.651918573183565, 19.09836945238828 ], [ 84.641479933552006, 19.100539862724471 ], [ 84.566962518005738, 19.066330063981237 ], [ 84.556110467224215, 19.05927623151285 ], [ 84.525207961278326, 19.032972926859085 ], [ 84.513632440085004, 19.029794827069619 ], [ 84.500920038229125, 19.030285753484744 ], [ 84.489241164248284, 19.032533678186663 ], [ 84.475598586405596, 19.033438014852489 ], [ 84.469707473021387, 19.030647487791324 ], [ 84.467227004322737, 19.025789903181472 ], [ 84.468880649822083, 19.018684393869641 ], [ 84.473944940006945, 19.007057196732202 ], [ 84.474358352056214, 19.001114407403968 ], [ 84.474254999268709, 19.000390936992115 ], [ 84.466090121861598, 18.986774197571147 ], [ 84.463299594800432, 18.979617011415932 ], [ 84.462576125287882, 18.97315745725086 ], [ 84.464229770787227, 18.968222358275167 ], [ 84.466916945060888, 18.964294948752862 ], [ 84.468777297034578, 18.959721584983125 ], [ 84.467227004322737, 18.953623766023949 ], [ 84.462576125287882, 18.946311550237848 ], [ 84.427229444982828, 18.904401963879533 ], [ 84.418031039700665, 18.901508084030862 ], [ 84.409142693680309, 18.901921495180826 ], [ 84.398187290111295, 18.903756007833461 ], [ 84.391366000740305, 18.900939643249895 ], [ 84.385888300304757, 18.894635117816389 ], [ 84.376793246910765, 18.867039902869177 ], [ 84.368835076877218, 18.849392402037719 ], [ 84.351781854349028, 18.827765814840458 ], [ 84.33607221895771, 18.816500352009591 ], [ 84.317778762080167, 18.809239813966197 ], [ 84.253699986165358, 18.805338242865613 ], [ 84.182179803255252, 18.788026637918957 ], [ 84.162129348090872, 18.785313626122953 ], [ 84.153137648383719, 18.787716580455818 ], [ 84.139185012178501, 18.798000190456431 ], [ 84.130193313370668, 18.801824246291911 ], [ 84.103631626298451, 18.802651069491272 ], [ 84.093089633879444, 18.806113390120853 ], [ 84.083787875809747, 18.813503119373415 ], [ 84.071385533215718, 18.817869778467465 ], [ 84.054642369050029, 18.818438219248375 ], [ 83.997798292756926, 18.806991889264278 ], [ 83.949532505021054, 18.808516344453718 ], [ 83.902403598846917, 18.805648302127448 ], [ 83.897132603087101, 18.808361313923452 ], [ 83.889174432154263, 18.814795030566181 ], [ 83.885040317956268, 18.81719798399973 ], [ 83.881112909333211, 18.820427761531953 ], [ 83.878219028585235, 18.824794419726683 ], [ 83.87294803282542, 18.834845485730561 ], [ 83.867056919441254, 18.843423774287711 ], [ 83.860028923595877, 18.850942694749556 ], [ 83.85692833907153, 18.85518016173506 ], [ 83.85424116389855, 18.860037747244231 ], [ 83.850107048801235, 18.871329046698119 ], [ 83.839358351706537, 18.901921495180826 ], [ 83.829023064862469, 18.915047309086042 ], [ 83.825922479438802, 18.920473334476807 ], [ 83.817964309405326, 18.961969508785781 ], [ 83.801841261964597, 18.999951687420431 ], [ 83.780240513189071, 19.009253445490113 ], [ 83.771868931106255, 19.009692695061798 ], [ 83.763704054598378, 19.009330959855898 ], [ 83.756262647603052, 19.006282050376278 ], [ 83.749544711918844, 19.001114407403968 ], [ 83.748924595193884, 19.000416775413836 ], [ 83.746754184857693, 18.995016588444795 ], [ 83.744997185671522, 18.988660387067167 ], [ 83.744687128208326, 18.980598863346867 ], [ 83.746754184857693, 18.971762193270589 ], [ 83.749131300768838, 18.965044256687062 ], [ 83.751095004630699, 18.957447821859482 ], [ 83.751921827830046, 18.948171902211524 ], [ 83.748614535932035, 18.935356147568136 ], [ 83.744067009684713, 18.930085150908948 ], [ 83.738072544412361, 18.929284166131364 ], [ 83.73187137176636, 18.933805853956979 ], [ 83.725773552807169, 18.943986111170084 ], [ 83.706446568054588, 19.001424464867167 ], [ 83.701485629757983, 19.011888942920333 ], [ 83.687119582402758, 19.03312795738929 ], [ 83.646398552651007, 19.076096910044321 ], [ 83.638337029830026, 19.087620754394262 ], [ 83.623660923212967, 19.115009263766463 ], [ 83.61280887243143, 19.129788723171028 ], [ 83.604747348711143, 19.131339015882869 ], [ 83.598442824176942, 19.127204902584193 ], [ 83.593585239567105, 19.117257188468439 ], [ 83.589554478156614, 19.104880683396797 ], [ 83.587074008558588, 19.092013251010709 ], [ 83.581182896073742, 19.080411892294986 ], [ 83.572604608415915, 19.06994741514108 ], [ 83.553897740388365, 19.064263007331927 ], [ 83.545836215768688, 19.058578600422035 ], [ 83.539635044022006, 19.051653958263554 ], [ 83.531366814726695, 19.027624416733424 ], [ 83.524855584617484, 19.016048896439425 ], [ 83.518344353608967, 19.010002753424313 ], [ 83.508835890863608, 19.00674713836974 ], [ 83.503151483054438, 19.008788357496709 ], [ 83.499120720744642, 19.016048896439425 ], [ 83.493953077772275, 19.039871731495165 ], [ 83.490129021936738, 19.051550605476045 ], [ 83.484237908552572, 19.060929877012196 ], [ 83.475659620894746, 19.068939723889109 ], [ 83.464187453388192, 19.073461411714781 ], [ 83.45798628074219, 19.069404811882514 ], [ 83.456125929667891, 19.061084905743765 ], [ 83.466357862825063, 19.027081814374238 ], [ 83.465737746100032, 19.018684393869641 ], [ 83.462947219038867, 19.011837266976269 ], [ 83.450338169071173, 19.002871405690822 ], [ 83.449407993983684, 19.001424464867167 ], [ 83.449097934721834, 19.00085602498552 ], [ 83.448994581934343, 19.000494289779617 ], [ 83.453645460969184, 18.992355251693478 ], [ 83.45550581294286, 18.986851711037612 ], [ 83.454678989743542, 18.976903997821235 ], [ 83.449614698659374, 18.968454902271898 ], [ 83.43545535687916, 18.961891995319316 ], [ 83.423673130110814, 18.964346624696926 ], [ 83.402279086910298, 18.979539496150831 ], [ 83.391427036128775, 18.985766506319177 ], [ 83.367552525128858, 18.992768662843499 ], [ 83.355563591886181, 18.99912486422107 ], [ 83.352876417612521, 19.001088568982251 ], [ 83.341404250105981, 19.004576728033552 ], [ 83.331482375311325, 19.004034124775043 ], [ 83.322387322816638, 19.002328803331576 ], [ 83.313705682371307, 18.9997191434237 ], [ 83.299856398054303, 18.991580105337558 ], [ 83.298512810917416, 18.982846788048786 ], [ 83.299546339691773, 18.976516425092932 ], [ 83.303887160364098, 18.970754502917938 ], [ 83.309674920960774, 18.965845242364022 ], [ 83.31411909442059, 18.960625922548271 ], [ 83.318149854931818, 18.952616074772031 ], [ 83.323730909953483, 18.935201117037874 ], [ 83.326831496276483, 18.929697577281328 ], [ 83.347295362590884, 18.904712022241991 ], [ 83.35225630088749, 18.901533922452522 ], [ 83.356390415085556, 18.900319526524921 ], [ 83.361351353382162, 18.900216172838096 ], [ 83.366932408403869, 18.899518540847961 ], [ 83.371996697689369, 18.898200792132851 ], [ 83.374787224750577, 18.895048529865729 ], [ 83.37819787033537, 18.883679714247418 ], [ 83.380574986246558, 18.87869293932766 ], [ 83.384915806019563, 18.87484304507046 ], [ 83.39018680177945, 18.87259512036848 ], [ 83.394217564089246, 18.869417018780375 ], [ 83.395251091964241, 18.862828274305397 ], [ 83.392047153753069, 18.853319809761381 ], [ 83.380058221409712, 18.843113715025929 ], [ 83.366002232417017, 18.83667999928252 ], [ 83.344504836428968, 18.830763048375953 ], [ 83.329208612187628, 18.822236435762871 ], [ 83.297479283042421, 18.799188747962315 ], [ 83.272571242368869, 18.776657823199965 ], [ 83.256758254190046, 18.765340684425038 ], [ 83.201671177083114, 18.741621202156747 ], [ 83.190819126301591, 18.742861436506068 ], [ 83.181930780281263, 18.74888174109946 ], [ 83.172732374999029, 18.758467719109941 ], [ 83.161466913067542, 18.763893744500702 ], [ 83.150408155811675, 18.766348374777632 ], [ 83.137385694694032, 18.764436346859892 ], [ 83.126533644811815, 18.758157659848106 ], [ 83.108963658346084, 18.741982937362646 ], [ 83.097491489940282, 18.727539373842998 ], [ 83.075477329115401, 18.690771592934649 ], [ 83.065038690383204, 18.676379706258441 ], [ 83.053256463614829, 18.663615628458441 ], [ 83.028141717366324, 18.640852158800097 ], [ 83.025867954242628, 18.636123766298734 ], [ 83.025351190305145, 18.629354152871823 ], [ 83.025557895880112, 18.621576849991637 ], [ 83.024007603168329, 18.612171739134446 ], [ 83.021217076107106, 18.603386745901556 ], [ 83.019770135283437, 18.595299383759535 ], [ 83.021630487257127, 18.587702948032582 ], [ 83.036823357811656, 18.566128038578082 ], [ 83.044264763907648, 18.547731228013728 ], [ 83.047572055805659, 18.543312892975617 ], [ 83.053773227552355, 18.542279364201303 ], [ 83.070516391718044, 18.544243068962427 ], [ 83.076097446739752, 18.544165553697322 ], [ 83.079508091425197, 18.541840115528878 ], [ 83.081988560123904, 18.538868720415106 ], [ 83.083538852835744, 18.525329495359923 ], [ 83.036513299449126, 18.469493110318748 ], [ 83.032999301976162, 18.461896673692532 ], [ 83.029692010078151, 18.450372830241914 ], [ 83.033722772387975, 18.444714259955099 ], [ 83.038993768147833, 18.439314072986061 ], [ 83.042714471195822, 18.430115667703884 ], [ 83.043851352757684, 18.417041531541425 ], [ 83.039200473722858, 18.390350654159359 ], [ 83.03000206934, 18.381953232755446 ], [ 83.019666783395252, 18.379007676962711 ], [ 83.00674767416578, 18.379989528893642 ], [ 82.998789504132262, 18.379162705694281 ], [ 82.98855757007577, 18.375571193855471 ], [ 82.951970656320697, 18.358156236121371 ], [ 82.943289015875322, 18.356735133719436 ], [ 82.904118279734789, 18.355339871537804 ], [ 82.894713168877587, 18.357536119396396 ], [ 82.888305291555909, 18.362497056793696 ], [ 82.884894646870393, 18.370429389304828 ], [ 82.884894646870393, 18.378749295443637 ], [ 82.887685173931558, 18.396060899490916 ], [ 82.88551476359541, 18.403889879214542 ], [ 82.878383416761238, 18.40908335970925 ], [ 82.861226841445543, 18.410116889382945 ], [ 82.8492379091022, 18.414302680424321 ], [ 82.838695916683136, 18.422467556032863 ], [ 82.828774041888465, 18.428797918988774 ], [ 82.816061639133281, 18.432105210886728 ], [ 82.795391066344607, 18.429340522247283 ], [ 82.785159133187364, 18.424147039953933 ], [ 82.779681430953232, 18.41673147227959 ], [ 82.780508254152537, 18.406370347913192 ], [ 82.786812778686709, 18.382495836014009 ], [ 82.7858826026999, 18.369886786046319 ], [ 82.781438430139389, 18.357846177758852 ], [ 82.77161990813218, 18.344436143013578 ], [ 82.760147739726378, 18.33733063370175 ], [ 82.729865349606129, 18.326401069453762 ], [ 82.697515903735876, 18.305549627713102 ], [ 82.680049270057722, 18.296532091382911 ], [ 82.669713983213725, 18.289297389962538 ], [ 82.663202753104528, 18.282321071859936 ], [ 82.660412225144043, 18.273820299467214 ], [ 82.655864698896693, 18.250462551505503 ], [ 82.65204064306117, 18.240256455870732 ], [ 82.642428826628972, 18.229481920354313 ], [ 82.635710890944821, 18.22886180273002 ], [ 82.622378370565258, 18.235889796776686 ], [ 82.613800082907431, 18.237543443175351 ], [ 82.601707797776598, 18.238008531168756 ], [ 82.593542922168041, 18.240049750295722 ], [ 82.586721632797065, 18.244390570968047 ], [ 82.582380813024059, 18.251056829808814 ], [ 82.579900344325353, 18.260255235090991 ], [ 82.580210401788563, 18.270461330725819 ], [ 82.582484164912259, 18.281855983866528 ], [ 82.595403273242411, 18.309632065967033 ], [ 82.597366978003592, 18.31707347296236 ], [ 82.597366978003592, 18.325212511048502 ], [ 82.59478315561806, 18.332989813928744 ], [ 82.59023563027003, 18.341283880746456 ], [ 82.584861280823404, 18.3483893909576 ], [ 82.578453404401031, 18.3549006210668 ], [ 82.528637323053985, 18.396965237056005 ], [ 82.517371861122427, 18.410581977376349 ], [ 82.511274042163265, 18.422209174513792 ], [ 82.510137159702126, 18.433888048494619 ], [ 82.512927687662611, 18.453990180502384 ], [ 82.512514275613256, 18.462077541745142 ], [ 82.511067335688935, 18.467994493551029 ], [ 82.507966750265254, 18.474040636566084 ], [ 82.50662316312841, 18.479311632325953 ], [ 82.506313103866589, 18.487269802359489 ], [ 82.50693322059162, 18.495615546020641 ], [ 82.506726515915929, 18.502049261763997 ], [ 82.502695753606119, 18.510627550321143 ], [ 82.497631464320577, 18.512126166189599 ], [ 82.487192823789741, 18.510498359111971 ], [ 82.478097772194403, 18.512203681454704 ], [ 82.466728956576034, 18.51731964848295 ], [ 82.449055617322841, 18.522099717827697 ], [ 82.438203565641999, 18.51925751392309 ], [ 82.429211866834095, 18.510472519790934 ], [ 82.417119581703261, 18.480861925037797 ], [ 82.409368117244739, 18.466547552727373 ], [ 82.37412478972719, 18.425697333565093 ], [ 82.369887322741675, 18.418979396981566 ], [ 82.36823367724233, 18.413992621162489 ], [ 82.369887322741675, 18.395854193915905 ], [ 82.369887322741675, 18.381953232755446 ], [ 82.367096795680524, 18.366605333469348 ], [ 82.352524041851026, 18.330380154020869 ], [ 82.350973749139172, 18.323042099813048 ], [ 82.35180057233849, 18.317745266530832 ], [ 82.359655388685184, 18.301596381567716 ], [ 82.360792271146337, 18.291622829929619 ], [ 82.356554803261517, 18.277902736821826 ], [ 82.35004357315232, 18.265913805377803 ], [ 82.317177362445292, 18.217389635223466 ], [ 82.311286249061069, 18.205504054768308 ], [ 82.309529249874956, 18.194755356774291 ], [ 82.312629836197956, 18.186978053894048 ], [ 82.322861770254448, 18.176332708687536 ], [ 82.352834100213485, 18.155300400692905 ], [ 82.358725213597651, 18.147083849140298 ], [ 82.360275507208854, 18.139409898148241 ], [ 82.355934685637166, 18.131193345696314 ], [ 82.346529575679284, 18.125483100364754 ], [ 82.334643996123447, 18.120237942127286 ], [ 82.330303176350441, 18.112021388776039 ], [ 82.331129998650439, 18.099231472554376 ], [ 82.335574172110327, 18.081532293980157 ], [ 82.338054640808977, 18.066313585003908 ], [ 82.336194288835287, 18.052748521527004 ], [ 82.329889764301114, 18.044041043559272 ], [ 82.319347771882093, 18.041302192442227 ], [ 82.293302849646722, 18.043524277823163 ], [ 82.276973098429693, 18.040449530821146 ], [ 82.267774693147516, 18.032801419150129 ], [ 82.261573521400848, 18.020269884447593 ], [ 82.257542759090981, 18.007505804849014 ], [ 82.25041141135749, 17.997428901322728 ], [ 82.240076125412813, 17.99293305101946 ], [ 82.229637485781296, 17.994560858996405 ], [ 82.221575962060953, 17.997842312472695 ], [ 82.215478143101762, 17.999211738031246 ], [ 82.20824344258078, 17.999521796393761 ], [ 82.19315392391438, 17.998669134772733 ], [ 82.181061638783518, 17.999909369122062 ], [ 82.180028110908523, 18.000426133958907 ], [ 82.162871534693508, 18.018332017208817 ], [ 82.149125604063315, 18.028899848049541 ], [ 82.1318656759601, 18.038847561265921 ], [ 82.09217817588204, 18.049880479200734 ], [ 82.042362095434299, 18.043265896304032 ], [ 81.995439894835187, 18.009986274446984 ], [ 81.958232862556528, 18.002932441079277 ], [ 81.923609653562579, 18.000219428383897 ], [ 81.825217727016465, 17.937949326700046 ], [ 81.758968539866174, 17.90893301025022 ], [ 81.739434848639277, 17.897641709896956 ], [ 81.724965447597285, 17.884722602466123 ], [ 81.716593866413731, 17.873353786847755 ], [ 81.704398227596045, 17.861028957720176 ], [ 81.69054894417836, 17.855086168391946 ], [ 81.655822382396977, 17.850874538928789 ], [ 81.640319451681293, 17.842296251270959 ], [ 81.62274946521562, 17.828291938222375 ], [ 81.606109653837379, 17.811367906004019 ], [ 81.578411086102719, 17.796950181805411 ], [ 81.557843866101493, 17.803383897548823 ], [ 81.524254184982595, 17.823486030455907 ], [ 81.511231723864896, 17.826276557517073 ], [ 81.502756788994574, 17.824209499968443 ], [ 81.498312616434063, 17.817956651378321 ], [ 81.491904738213051, 17.800619208010001 ], [ 81.486943800815695, 17.79273855234231 ], [ 81.479812453082204, 17.787519233425876 ], [ 81.472681105348656, 17.787235011686445 ], [ 81.46017540906783, 17.790464789218614 ], [ 81.449943475011295, 17.794728095525151 ], [ 81.394029575604392, 17.806691189446834 ], [ 81.390928990180697, 17.818783474577682 ], [ 81.390722283706381, 17.83702525551109 ], [ 81.393306105192536, 17.854233506770917 ], [ 81.394236281179388, 17.87232025807344 ], [ 81.394959750691882, 17.877978827460872 ], [ 81.397336866603084, 17.883146471332562 ], [ 81.402607863262219, 17.887487291105568 ], [ 81.408292271071431, 17.88896006945162 ], [ 81.413253207569397, 17.888029893464815 ], [ 81.417800733816748, 17.885704454397054 ], [ 81.425552199174589, 17.879684149803662 ], [ 81.429686314271947, 17.877332872314181 ], [ 81.434647250769942, 17.876428533849715 ], [ 81.439504836279113, 17.877358709836582 ], [ 81.44415571531394, 17.879735825747726 ], [ 81.447256300737635, 17.885032659929315 ], [ 81.449116651811991, 17.89234487571542 ], [ 81.449323358286321, 17.905651556773929 ], [ 81.450666945423151, 17.915495917202801 ], [ 81.453147414121801, 17.925004380847493 ], [ 81.459245233080978, 17.937484238706642 ], [ 81.463689405641489, 17.944279690555273 ], [ 81.471027459849353, 17.953193874997336 ], [ 81.474438103635507, 17.960015164368311 ], [ 81.477848749220342, 17.971435655031424 ], [ 81.482189568993348, 17.994095771002996 ], [ 81.482292921780839, 18.028176378537008 ], [ 81.480742629068999, 18.03649628287712 ], [ 81.481052688330848, 18.043575955565863 ], [ 81.48291303940519, 18.051430771912575 ], [ 81.48818403516502, 18.061171780453261 ], [ 81.495935499623528, 18.071868800704575 ], [ 81.499552849884068, 18.075331122233472 ], [ 81.503066848256395, 18.079852810059091 ], [ 81.506270785568276, 18.085588893812368 ], [ 81.516192661262252, 18.117809150272016 ], [ 81.518466424385934, 18.135482489525256 ], [ 81.52311730342079, 18.150339464194925 ], [ 81.524874301707584, 18.160287177411302 ], [ 81.523634068257564, 18.168942979434913 ], [ 81.515262486174763, 18.183748277261142 ], [ 81.513712192563602, 18.188838405867724 ], [ 81.512885370263561, 18.194290268780883 ], [ 81.513815546250427, 18.200827338211067 ], [ 81.516192661262252, 18.207881171578773 ], [ 81.521773716283903, 18.218087267213601 ], [ 81.529318475167457, 18.229456081932593 ], [ 81.542547641860139, 18.262451483848903 ], [ 81.548438755244305, 18.268575141229743 ], [ 81.553709751004163, 18.269815375579125 ], [ 81.558050571676489, 18.268110053236335 ], [ 81.565388624985005, 18.266533922102774 ], [ 81.574793735842192, 18.267154038827808 ], [ 81.593397251082223, 18.27224416833371 ], [ 81.643833449154315, 18.292372137863875 ], [ 81.652721796073962, 18.297772324832916 ], [ 81.658406202983812, 18.303275865488782 ], [ 81.670498488114646, 18.324850775842599 ], [ 81.675562779198827, 18.329760037295838 ], [ 81.682694126033013, 18.3337132843406 ], [ 81.691375767377707, 18.336865545708342 ], [ 81.717110630351257, 18.340973822383997 ], [ 81.72548221243413, 18.344048570285278 ], [ 81.733130324105147, 18.349577948463541 ], [ 81.740571730201154, 18.357897853702976 ], [ 81.772301060245681, 18.413217474806626 ], [ 81.792351516309381, 18.438435573842636 ], [ 81.804753858903425, 18.449339301467543 ], [ 81.843717888569614, 18.477709661871355 ], [ 81.869452753341861, 18.508198757566614 ], [ 81.889606561293732, 18.52687978807176 ], [ 81.913274366718596, 18.544914863430161 ], [ 81.92422977118693, 18.550780138392664 ], [ 81.93280805884477, 18.554216619701204 ], [ 81.940869581665808, 18.558531601951866 ], [ 81.947070754311795, 18.567600816024818 ], [ 81.948310987761815, 18.579512234002376 ], [ 81.941903111339442, 18.593981635044422 ], [ 81.934048293194152, 18.600932114725307 ], [ 81.915754836316566, 18.610673123265993 ], [ 81.90841678300805, 18.615944119025865 ], [ 81.903662551185718, 18.621912746775816 ], [ 81.902422315937059, 18.627002875382399 ], [ 81.90335249192394, 18.634082546272449 ], [ 81.909657017357389, 18.641394762058606 ], [ 81.916788365090937, 18.644185289119768 ], [ 81.925780063898785, 18.644882921109907 ], [ 81.933428175569802, 18.646665757818418 ], [ 81.940869581665808, 18.650980740069084 ], [ 81.947794223824332, 18.658137926224295 ], [ 81.961333448879515, 18.67730988224525 ], [ 81.968981560550532, 18.685733141171507 ], [ 81.979213494607023, 18.693794663992541 ], [ 81.989548780551701, 18.700202542213553 ], [ 81.998437128370739, 18.704078273993158 ], [ 82.005568475204925, 18.705861110701672 ], [ 82.044532504871114, 18.708548284975333 ], [ 82.059105258700683, 18.712424018553573 ], [ 82.069853956694701, 18.719762070962812 ], [ 82.076778598853181, 18.730226549015978 ], [ 82.091558059157066, 18.763790391713197 ], [ 82.095278762205041, 18.768828844375658 ], [ 82.098689405991237, 18.770611681084169 ], [ 82.102410109039255, 18.770017401881599 ], [ 82.106440871349079, 18.767536933182893 ], [ 82.118326450904917, 18.755057074424425 ], [ 82.127421503399589, 18.749243476305363 ], [ 82.138893670906143, 18.747253933122519 ], [ 82.143234490679149, 18.766064154836837 ], [ 82.150159132837686, 18.782781480580859 ], [ 82.152639602435656, 18.786889757256457 ], [ 82.154499952610692, 18.79143728350379 ], [ 82.16380171068036, 18.83667999928252 ], [ 82.164628533879679, 18.867169094078402 ], [ 82.166178826591519, 18.873835353818489 ], [ 82.169072707339495, 18.878718776850061 ], [ 82.175893995811222, 18.885850125482872 ], [ 82.178891229346718, 18.889751694784874 ], [ 82.181268345257863, 18.89393748582631 ], [ 82.184678989943379, 18.897658188874281 ], [ 82.188813104141374, 18.900784614518326 ], [ 82.214237908752452, 18.913548692318269 ], [ 82.220025669349113, 18.915202337817615 ], [ 82.224469841909624, 18.921946112822805 ], [ 82.22788048659514, 18.933960882688545 ], [ 82.225400017896433, 18.996334337159904 ], [ 82.225710077158254, 19.005196844758583 ], [ 82.224986606746469, 19.015196234818344 ], [ 82.221369257385248, 19.024394640100521 ], [ 82.20648644429393, 19.046537991235308 ], [ 82.200595330909763, 19.05811351242863 ], [ 82.197701451061093, 19.083874212924567 ], [ 82.195014275888056, 19.09263336773574 ], [ 82.187882928154565, 19.100901597930367 ], [ 82.164628533879679, 19.115913601331609 ], [ 82.159667595583002, 19.122838243490147 ], [ 82.160597771569854, 19.132863471072309 ], [ 82.16741906094083, 19.154929307841254 ], [ 82.168659296189531, 19.166246445716862 ], [ 82.165972121016509, 19.178984686893777 ], [ 82.152846307111332, 19.20167064128702 ], [ 82.148505487338326, 19.212884426375176 ], [ 82.145714960277104, 19.225312608290206 ], [ 82.145404901015326, 19.244226182792083 ], [ 82.148195428076505, 19.25815298147489 ], [ 82.153156366373182, 19.271433824111678 ], [ 82.170829705626346, 19.306909694726638 ], [ 82.171759881613156, 19.316857407943015 ], [ 82.168452589715216, 19.325616562754131 ], [ 82.158530714920502, 19.334711615248803 ], [ 82.141787550754813, 19.344891873361231 ], [ 82.136516554994941, 19.350421251539498 ], [ 82.135276319746296, 19.355769762564471 ], [ 82.139617141317927, 19.364683946107213 ], [ 82.146335077002135, 19.370652573857168 ], [ 82.163388298631034, 19.380832831070276 ], [ 82.168659296189531, 19.386594753245273 ], [ 82.170002883326376, 19.395147203380699 ], [ 82.167522413728335, 19.405224106906982 ], [ 82.158840773283004, 19.418169054558174 ], [ 82.15098595603699, 19.424731961510812 ], [ 82.142614373954117, 19.428685208555514 ], [ 82.117706333280623, 19.434550483517963 ], [ 82.111401808746436, 19.436772568898899 ], [ 82.106440871349079, 19.440209052006136 ], [ 82.102203404363564, 19.445815945449507 ], [ 82.086080356922864, 19.48056834655193 ], [ 82.081016065838739, 19.488810737425577 ], [ 82.074814894991377, 19.49410757070779 ], [ 82.066856724058511, 19.497208157030794 ], [ 82.038124628448799, 19.502479152790666 ], [ 82.031923455802811, 19.508447781439937 ], [ 82.029029575954141, 19.517852892297125 ], [ 82.032130161377808, 19.594773261276995 ], [ 82.039054802636983, 19.624358018507728 ], [ 82.040605096248143, 19.637354641203721 ], [ 82.038744745173787, 19.651901557510879 ], [ 82.031199986290275, 19.676499538922538 ], [ 82.027272576767956, 19.695593980577705 ], [ 82.02809939996726, 19.716264553366436 ], [ 82.037814569186978, 19.756727199800419 ], [ 82.036160922788312, 19.767088324166817 ], [ 82.029132927842269, 19.776467597501604 ], [ 82.020141229034422, 19.78197113725815 ], [ 82.011666294164101, 19.784890855528538 ], [ 81.978076613045218, 19.788198147426549 ], [ 81.968774854975536, 19.791143704118607 ], [ 81.960093215429524, 19.796337185512694 ], [ 81.954512160407816, 19.804011134706055 ], [ 81.943453404051283, 19.832097276068392 ], [ 81.937148878617776, 19.841812446187415 ], [ 81.929397414159311, 19.849253852283422 ], [ 81.845268182180774, 19.894729112058879 ], [ 81.833175897049941, 19.903798326131831 ], [ 81.824184198242094, 19.913255112933083 ], [ 81.817156203296094, 19.924339707711336 ], [ 81.813745558610577, 19.935088405705354 ], [ 81.813125440986227, 19.945527045336856 ], [ 81.815295852221752, 19.955888169703254 ], [ 81.819326612732922, 19.965706691710459 ], [ 81.860150995272164, 20.037020169045544 ], [ 81.867799106943181, 20.046657823000086 ], [ 81.878961216087163, 20.051024482094132 ], [ 81.897564732226527, 20.061902371297375 ], [ 81.929810826208595, 20.097791653062298 ], [ 81.939629348215803, 20.104664618377392 ], [ 81.944900343975604, 20.105568955942537 ], [ 81.952031690809847, 20.103708603968865 ], [ 81.960609979366978, 20.097610785009689 ], [ 82.009289178252899, 20.044487413563267 ], [ 82.014250115650256, 20.035599067542929 ], [ 82.015800409261416, 20.029527086106096 ], [ 82.015076938849617, 20.023119207885138 ], [ 82.016317173198928, 20.016866360194339 ], [ 82.021898228220593, 20.011672877900985 ], [ 82.032853631789621, 20.011879584375318 ], [ 82.040295037885627, 20.014049993812133 ], [ 82.046082797582955, 20.017874050546986 ], [ 82.04959679595531, 20.023351751881815 ], [ 82.057865025250678, 20.042058620808682 ], [ 82.061275669036874, 20.047691351774453 ], [ 82.065926548071658, 20.053685817946128 ], [ 82.07078413268151, 20.05725149226253 ], [ 82.075124953353878, 20.058388372925034 ], [ 82.081326125100517, 20.057871608987565 ], [ 82.085150180936054, 20.056993109844139 ], [ 82.090731235957691, 20.054693508298723 ], [ 82.096208938191893, 20.050636908466512 ], [ 82.126801384875961, 20.022809150421946 ], [ 82.14106408124232, 20.012680569152899 ], [ 82.148815545700799, 20.005704251050297 ], [ 82.153466423836321, 19.999994004819424 ], [ 82.155326775809996, 19.995704860990536 ], [ 82.156567010159307, 19.991544908370823 ], [ 82.158530714920502, 19.986377265398453 ], [ 82.160597771569854, 19.982889106347155 ], [ 82.164731886667184, 19.979426784818255 ], [ 82.170829705626346, 19.977075507328774 ], [ 82.181061638783518, 19.976791287387979 ], [ 82.203592564445245, 19.980331122383344 ], [ 82.21010379365508, 19.97875499124984 ], [ 82.217855259012921, 19.972993069074839 ], [ 82.228397251431986, 19.95873037450718 ], [ 82.29030561701056, 19.836050523113151 ], [ 82.298057082368388, 19.826412869158556 ], [ 82.3048783708401, 19.823312282835555 ], [ 82.313456659397261, 19.826154486740158 ], [ 82.319347771882093, 19.834086819251294 ], [ 82.333300408986631, 19.860545151737362 ], [ 82.337951288021472, 19.867237249899112 ], [ 82.341465284595174, 19.871629747414879 ], [ 82.346942986829319, 19.876590683912919 ], [ 82.353350865050331, 19.880595607801066 ], [ 82.361102328609533, 19.88390289969902 ], [ 82.370404086679216, 19.885401516466796 ], [ 82.381359491147563, 19.885944118825986 ], [ 82.475927361858211, 19.872379055349082 ], [ 82.488743117400901, 19.867909044366908 ], [ 82.513961216436925, 19.854473171199849 ], [ 82.526156854355264, 19.850339057001854 ], [ 82.564500767296508, 19.849331365749883 ], [ 82.573699171679365, 19.847419337832147 ], [ 82.579073521126048, 19.843156033324245 ], [ 82.577833285877418, 19.833492540048663 ], [ 82.575042758816181, 19.824888413969116 ], [ 82.572872349379381, 19.814682319233608 ], [ 82.572562290117546, 19.805018825958022 ], [ 82.574319289303716, 19.790911160121929 ], [ 82.574009230041867, 19.782100328467376 ], [ 82.573182407741896, 19.774917303890444 ], [ 82.574009230041867, 19.770964056845738 ], [ 82.575249465290526, 19.768070176997067 ], [ 82.592716098968751, 19.769103704872062 ], [ 82.601087681051567, 19.774607245527928 ], [ 82.639328241205277, 19.805096340323807 ], [ 82.650283644774319, 19.811168320861324 ], [ 82.660722284405864, 19.815690008686936 ], [ 82.682323033181348, 19.822666326789538 ], [ 82.69172814313923, 19.828764145748718 ], [ 82.707851189680625, 19.843207709268363 ], [ 82.712812127977301, 19.849563909746614 ], [ 82.713328891914756, 19.855532538395885 ], [ 82.709091424029936, 19.862818914861005 ], [ 82.691108026414241, 19.878657742360925 ], [ 82.688214145666265, 19.882688502872096 ], [ 82.685526971392534, 19.887571925903611 ], [ 82.684493442618219, 19.895400906526614 ], [ 82.685423618605043, 19.905994573990366 ], [ 82.699066197347108, 19.955009670559829 ], [ 82.700926548421407, 19.968781440511062 ], [ 82.700409783584604, 19.98009857838667 ], [ 82.696275669386566, 19.998107815323401 ], [ 82.695035435037241, 20.00053660717867 ], [ 82.692554966338591, 20.001440944743759 ], [ 82.688214145666265, 20.002371120730626 ], [ 82.665373163440648, 20.004954942216781 ], [ 82.653384230198, 20.005032457481882 ], [ 82.647699823288164, 20.004102281495076 ], [ 82.643152297040814, 20.002862047145751 ], [ 82.638708123580997, 20.00030406318194 ], [ 82.637157830869143, 19.99898631446683 ], [ 82.62630578008762, 19.991880805155002 ], [ 82.618140903579757, 19.988935248462944 ], [ 82.61121626232061, 19.988134264584623 ], [ 82.603774855325284, 19.990330512443162 ], [ 82.598503858666092, 19.992785141820828 ], [ 82.594266391680577, 19.995885728143829 ], [ 82.589925571907571, 20.000123196028646 ], [ 82.578350050714192, 20.014618435492363 ], [ 82.572562290117546, 20.019165960840379 ], [ 82.565844354433324, 20.02226654716338 ], [ 82.557989536287991, 20.024101059816015 ], [ 82.550341423717654, 20.024488634342951 ], [ 82.509827102238916, 20.021853136013412 ], [ 82.495874465134406, 20.02304169441862 ], [ 82.49091352683773, 20.02459198713046 ], [ 82.486572707064724, 20.026994941463382 ], [ 82.470759718885844, 20.04136098881855 ], [ 82.464455194351714, 20.045779323856717 ], [ 82.415569288991406, 20.066966661482237 ], [ 82.41246870266842, 20.076991889064399 ], [ 82.413398878655286, 20.093347480501784 ], [ 82.433656040293997, 20.159002387550114 ], [ 82.435826450630117, 20.173730170111234 ], [ 82.435826450630117, 20.198767401994012 ], [ 82.427971633384104, 20.241452134708247 ], [ 82.427144810184785, 20.293981227851354 ], [ 82.423114047874932, 20.306151028247307 ], [ 82.418979933676923, 20.31434174227757 ], [ 82.414329054642096, 20.320362046870962 ], [ 82.411641880368435, 20.32679576351364 ], [ 82.411538526681611, 20.345425116276086 ], [ 82.421873814424927, 20.428029893065112 ], [ 82.420323520813767, 20.451620185023497 ], [ 82.417532993752602, 20.462498074226737 ], [ 82.411951938730937, 20.46017263425966 ], [ 82.40730105969611, 20.456503608055069 ], [ 82.401926711148732, 20.453299668944563 ], [ 82.396449008914587, 20.453299668944563 ], [ 82.39128136594222, 20.458157253554415 ], [ 82.386940546169214, 20.466167101330651 ], [ 82.382496371810049, 20.483995470214772 ], [ 82.381359491147563, 20.499446723187699 ], [ 82.380946079098209, 20.500971178377135 ], [ 82.376398552850887, 20.506526394077802 ], [ 82.372677849802841, 20.506862290862042 ], [ 82.368957146754866, 20.50505361573175 ], [ 82.366373326168045, 20.502263087771265 ], [ 82.363892856570018, 20.500041002390329 ], [ 82.361205682296358, 20.499240016713369 ], [ 82.359655388685184, 20.499446723187699 ], [ 82.359035271960153, 20.499782619971935 ], [ 82.343635694931308, 20.529367377202668 ], [ 82.340121698357649, 20.542493191107891 ], [ 82.340225051145154, 20.556342475424909 ], [ 82.357484979248312, 20.624658718325172 ], [ 82.362755975008199, 20.639489854573124 ], [ 82.36668338363117, 20.657085680359835 ], [ 82.36761355961805, 20.669255478957151 ], [ 82.366993442893019, 20.682303779395905 ], [ 82.364202914932534, 20.69478363725505 ], [ 82.360275507208854, 20.705790716768146 ], [ 82.350353632414141, 20.726590480766045 ], [ 82.34663292756747, 20.737365017181784 ], [ 82.344152459768154, 20.747932848022508 ], [ 82.341982049431962, 20.860820014032409 ], [ 82.343222283781344, 20.866840317726481 ], [ 82.345909458055004, 20.872447211169849 ], [ 82.34911339716551, 20.876762193420458 ], [ 82.353040805788481, 20.880534573311873 ], [ 82.359862095159528, 20.882394924386229 ], [ 82.364926385344319, 20.882317410020445 ], [ 82.394898716202746, 20.875211899809294 ], [ 82.400996535161909, 20.872421372748132 ], [ 82.404820590997403, 20.86908824332772 ], [ 82.406577590183574, 20.865290025014637 ], [ 82.406577590183574, 20.861362616391599 ], [ 82.405027296572413, 20.849399522469977 ], [ 82.405130650259238, 20.844051012344316 ], [ 82.40750776617044, 20.838702501319339 ], [ 82.410918409956579, 20.835369370999668 ], [ 82.415879348253256, 20.833819078287824 ], [ 82.422700636724969, 20.834594225543064 ], [ 82.438203565641999, 20.839529324518704 ], [ 82.453499789883367, 20.846867376927886 ], [ 82.463008254427322, 20.855393989540968 ], [ 82.472930129222036, 20.867072861723155 ], [ 82.487709588626544, 20.892213447292757 ], [ 82.498561639408067, 20.907328803481498 ], [ 82.514581333161956, 20.923736069963635 ], [ 82.522436151307289, 20.929523831459612 ], [ 82.527913852642129, 20.932236843255676 ], [ 82.537939081123668, 20.933063666455038 ], [ 82.54817101428084, 20.939368190989224 ], [ 82.562123651385349, 20.954457708756248 ], [ 82.606875440748951, 21.024143378114385 ], [ 82.627235956074429, 21.080935777564086 ], [ 82.644082473027638, 21.104293525525744 ], [ 82.64687300008886, 21.123439643125035 ], [ 82.642842237778993, 21.136203721824298 ], [ 82.642738884991488, 21.140363674444011 ], [ 82.644702589752669, 21.144420274276222 ], [ 82.649043410424994, 21.149019477366942 ], [ 82.656691522095997, 21.152610989205751 ], [ 82.668163689602565, 21.155479031532078 ], [ 82.752602979943546, 21.160078232824159 ], [ 82.761387974075689, 21.158062852118913 ], [ 82.769346145008555, 21.153980413864982 ], [ 82.775030551918391, 21.148657742161042 ], [ 82.782161899651882, 21.14491119979203 ], [ 82.79043012894725, 21.145014553478855 ], [ 82.797458123893236, 21.147262478180831 ], [ 82.81048058501095, 21.153980413864982 ], [ 82.822262810879948, 21.157856147443223 ], [ 82.841589797431183, 21.161189276863631 ], [ 82.861640252595507, 21.161886907954393 ], [ 82.964579706288347, 21.178526720231954 ], [ 82.976982048882391, 21.176175441843153 ], [ 82.989074334912559, 21.168682358903702 ], [ 82.995895624283577, 21.160775864814294 ], [ 83.001476678405922, 21.155685737107088 ], [ 83.008918085401248, 21.150905666863018 ], [ 83.018839960195962, 21.147469183755785 ], [ 83.030312127702459, 21.144833686325562 ], [ 83.039200473722858, 21.141526394427554 ], [ 83.047882115067509, 21.135738633830893 ], [ 83.062558220785192, 21.120726630429655 ], [ 83.06937951015621, 21.116773383384889 ], [ 83.078164504288381, 21.114551296205317 ], [ 83.12911746629797, 21.117936103368432 ], [ 83.143586867340034, 21.12062327674283 ], [ 83.156299270095161, 21.12599762618947 ], [ 83.173972609348397, 21.140053616081499 ], [ 83.186168247266764, 21.153541165192614 ], [ 83.198260533296917, 21.172558092481943 ], [ 83.227199335380959, 21.249633490193382 ], [ 83.23422732942764, 21.26151906974922 ], [ 83.257068312552505, 21.290328681523413 ], [ 83.259652134038717, 21.299656277115499 ], [ 83.258928663626861, 21.305469876133881 ], [ 83.256241490252521, 21.308828843975956 ], [ 83.255207960578886, 21.311593533514717 ], [ 83.255311314265711, 21.316528632490357 ], [ 83.257068312552505, 21.3239442001647 ], [ 83.260478957238021, 21.332780870240917 ], [ 83.265853305785384, 21.343090317763934 ], [ 83.271744419169551, 21.351539415111912 ], [ 83.279392530840568, 21.358799954054625 ], [ 83.290037876047094, 21.359626777253929 ], [ 83.301096633302947, 21.358696601267123 ], [ 83.344814894791497, 21.340894069905396 ], [ 83.353083124086865, 21.338361925262625 ], [ 83.361041294120383, 21.336759954808027 ], [ 83.370756464239349, 21.336656602020518 ], [ 83.379748163047211, 21.339188748461929 ], [ 83.385329217169598, 21.34647512492705 ], [ 83.38832645070508, 21.357766425280257 ], [ 83.387499628405038, 21.377067573409754 ], [ 83.384915806019563, 21.389444078481397 ], [ 83.381195102971589, 21.399546821328723 ], [ 83.375407342374885, 21.40660065379711 ], [ 83.341300897318533, 21.436159573505503 ], [ 83.334582960735005, 21.444221096326537 ], [ 83.329932081700164, 21.453341987242872 ], [ 83.327348260213995, 21.46367727318761 ], [ 83.326211378652133, 21.487836005027585 ], [ 83.327658318576454, 21.499153143802509 ], [ 83.335099724672517, 21.520004583744534 ], [ 83.342541131667844, 21.549615180296307 ], [ 83.343264602079657, 21.560027981506149 ], [ 83.351946241625711, 21.577262071187587 ], [ 83.444033645436363, 21.718597113765778 ], [ 83.458916456729057, 21.748026842264942 ], [ 83.463257277401368, 21.766139431089865 ], [ 83.463877395025719, 21.790530706926567 ], [ 83.466874627661909, 21.799987493727819 ], [ 83.473179152196039, 21.807170518304755 ], [ 83.486408318888763, 21.808462429497521 ], [ 83.49426313703411, 21.8061628279521 ], [ 83.500671014355802, 21.801744492913993 ], [ 83.506252069377439, 21.796576849941626 ], [ 83.511213006774796, 21.796240953157444 ], [ 83.515553827447121, 21.799677436264627 ], [ 83.519067824020837, 21.81071035419944 ], [ 83.519687940745811, 21.826523342378316 ], [ 83.522168410343824, 21.830269883848015 ], [ 83.527852818152994, 21.833525498902638 ], [ 83.546456333393039, 21.832207750187475 ], [ 83.552760857927211, 21.833370470171015 ], [ 83.557101677700217, 21.834920762882856 ], [ 83.564853143058073, 21.853575954966342 ], [ 83.560408969598228, 21.869673163085956 ], [ 83.559582147298187, 21.875099189376037 ], [ 83.561339145585038, 21.883625800190483 ], [ 83.570124138817889, 21.907577826455505 ], [ 83.571674432429049, 21.916311142844958 ], [ 83.57064090365472, 21.923054917850148 ], [ 83.566403435769914, 21.928196723300115 ], [ 83.558858676886402, 21.933984482997452 ], [ 83.530126581276619, 21.94951325123554 ], [ 83.521238234356971, 21.956360379028236 ], [ 83.515347120972805, 21.963853461068361 ], [ 83.512866652274155, 21.973051866350541 ], [ 83.513073357849109, 21.982792873991905 ], [ 83.518034296145785, 22.020258286890392 ], [ 83.522168410343824, 22.028371487454134 ], [ 83.528782994139803, 22.035166938403446 ], [ 83.545939568556193, 22.044132798789629 ], [ 83.55668826744953, 22.04764679626259 ], [ 83.564853143058073, 22.052116808144145 ], [ 83.571054314804755, 22.058369655834948 ], [ 83.57219119726588, 22.067774766692136 ], [ 83.570020786030369, 22.074182644013771 ], [ 83.565369907894862, 22.079737861513077 ], [ 83.560719028860007, 22.083846137289409 ], [ 83.550280389228504, 22.094801540858381 ], [ 83.546249627818028, 22.10162283022941 ], [ 83.548730095617344, 22.112939968105017 ], [ 83.556998325812032, 22.129424749852316 ], [ 83.605367466335423, 22.195983995365051 ], [ 83.623660923212967, 22.213269761889986 ], [ 83.639990676228692, 22.223269151050481 ], [ 83.664175245591053, 22.235025540296412 ], [ 83.721639438609131, 22.255050157039072 ], [ 83.733111607015005, 22.262284858459449 ], [ 83.816724074156625, 22.332513129277455 ], [ 83.841425409255152, 22.348584499874729 ], [ 83.876978794235896, 22.359152329816133 ], [ 83.918423292600821, 22.36276968007666 ], [ 83.931859164868484, 22.365456855249644 ], [ 83.945811801973022, 22.371192939002917 ], [ 83.955733676767736, 22.378711860364028 ], [ 83.984362421388582, 22.41028615987835 ], [ 83.989116652311594, 22.417107449249379 ], [ 83.992527296997125, 22.424419664136163 ], [ 83.994697707333259, 22.431576850291375 ], [ 83.99645470562011, 22.440542711576878 ], [ 83.997074823244461, 22.4517564975643 ], [ 83.99500776569576, 22.468990587245791 ], [ 83.990563592235944, 22.483253281813457 ], [ 83.970616489859054, 22.516041978154757 ], [ 83.968136021160419, 22.52255320916327 ], [ 83.970203077809728, 22.539348049273027 ], [ 84.007410109189138, 22.531519070448716 ], [ 84.036038852910664, 22.518289902856733 ], [ 84.067044711644073, 22.499583034829183 ], [ 84.124302199087182, 22.426745103203924 ], [ 84.130606723621355, 22.412146510952702 ], [ 84.13701460184231, 22.400932725864603 ], [ 84.147763298937022, 22.386773383185069 ], [ 84.17856245299474, 22.364371650531204 ], [ 84.188794387051274, 22.360599269740472 ], [ 84.19582238199726, 22.359772447440484 ], [ 84.217423129873495, 22.360547593796408 ], [ 84.230859003040493, 22.357343654685899 ], [ 84.29276736861911, 22.328172309504449 ], [ 84.310957472709148, 22.324012355985413 ], [ 84.408212517693499, 22.328740750285355 ], [ 84.42082156766115, 22.330988674088015 ], [ 84.484590285213457, 22.362278754560858 ], [ 84.490998163434455, 22.3665678983898 ], [ 84.497302687968585, 22.372200629355515 ], [ 84.500920038229125, 22.376618964393678 ], [ 84.503813918077782, 22.384654648792999 ], [ 84.504950799639616, 22.392535305360006 ], [ 84.504434034802813, 22.402534695419824 ], [ 84.505054152427121, 22.410570379819145 ], [ 84.508154737850788, 22.417004096461877 ], [ 84.516733026408005, 22.421422431499987 ], [ 84.530065545888164, 22.423024400155946 ], [ 84.733670689250843, 22.42728770646249 ], [ 84.748243443080383, 22.430698351147949 ], [ 84.757441848362561, 22.435426744548575 ], [ 84.761886020923072, 22.440775255573552 ], [ 84.768914015869058, 22.44558116334002 ], [ 84.77852583230127, 22.448345851979461 ], [ 84.800850050589275, 22.450180365531416 ], [ 84.817593214754979, 22.448113307982734 ], [ 84.87857140524612, 22.434031480568358 ], [ 84.908337029630147, 22.421965032959854 ], [ 84.916295200562985, 22.423205268208555 ], [ 84.921462844434686, 22.424884752129568 ], [ 84.93758589097601, 22.441059475514347 ], [ 84.944097121085207, 22.445245266555784 ], [ 84.95246870316808, 22.447415675992655 ], [ 84.98337121001326, 22.450335395162305 ], [ 84.988022089048101, 22.452221585557702 ], [ 85.038251580645905, 22.482400621091749 ], [ 85.065536737230588, 22.503200385089652 ], [ 85.087757602731102, 22.446614692114334 ], [ 85.100366651799476, 22.393956406862678 ], [ 85.104707473371121, 22.357498684316788 ], [ 85.104707473371121, 22.330833645356442 ], [ 85.098919711875155, 22.304685370333566 ], [ 85.09333865775281, 22.29021596929152 ], [ 85.087757602731102, 22.280164903287634 ], [ 85.040008578932699, 22.216370348212983 ], [ 85.008899367411829, 22.151542263464645 ], [ 84.999287550979645, 22.136556098485123 ], [ 84.992466261608598, 22.127641913143744 ], [ 84.985231561087616, 22.112784939373451 ], [ 84.986265089861931, 22.106661281992555 ], [ 84.991122675371102, 22.104025784562275 ], [ 85.00321495960263, 22.106196193999146 ], [ 85.042592401318231, 22.119735419054333 ], [ 85.050343865776739, 22.120898139037873 ], [ 85.06202273975758, 22.121234035822052 ], [ 85.079489374335125, 22.119037787064194 ], [ 85.09788618400016, 22.113456732941867 ], [ 85.109151645931647, 22.10849579554451 ], [ 85.187079706163431, 22.059609890184273 ], [ 85.208060337314663, 22.036743069537007 ], [ 85.214881625786333, 22.031058660828531 ], [ 85.220152622445511, 22.029146632910731 ], [ 85.225526970992831, 22.030516059368601 ], [ 85.232038202001348, 22.035321967135069 ], [ 85.277823521038599, 22.085318914736089 ], [ 85.324125604013361, 22.126685898735211 ], [ 85.335081007582389, 22.132447821809532 ], [ 85.379005974645935, 22.146968898795645 ], [ 85.396059198073473, 22.157872626420552 ], [ 85.410011835177983, 22.162006741517867 ], [ 85.425204705732511, 22.164487210216574 ], [ 85.43678022692589, 22.164228826898803 ], [ 85.448562452794917, 22.162523505455393 ], [ 85.461068149975105, 22.158131007939627 ], [ 85.550675083288397, 22.107591457979364 ], [ 85.609586216230852, 22.092140204107118 ], [ 85.655888300104934, 22.084698798011111 ], [ 85.679142694379763, 22.075862127934837 ], [ 85.685343866126431, 22.077050686340094 ], [ 85.705807733340166, 22.087463487549879 ], [ 85.717796664784188, 22.091881821688723 ], [ 85.734333124274187, 22.096145127995268 ], [ 85.746425409405077, 22.101157742236005 ], [ 85.755933872150408, 22.10715220840768 ], [ 85.766682570144425, 22.116712347996433 ], [ 85.780428500774619, 22.125135606023374 ], [ 85.792210728442328, 22.129088853068076 ], [ 85.798308547401504, 22.126014106066119 ], [ 85.80171919118763, 22.117022406358952 ], [ 85.800582309625824, 22.106222032420813 ], [ 85.796551548215334, 22.096816921563683 ], [ 85.78259891111081, 22.079763699035478 ], [ 85.779084913637789, 22.071934719311848 ], [ 85.7784647969128, 22.063821518748053 ], [ 85.778774855275273, 22.053512071225093 ], [ 85.777637973713453, 22.039662786908075 ], [ 85.780635207248935, 22.022196153229853 ], [ 85.784665968659496, 22.011886704807576 ], [ 85.834275344431532, 21.986126004311636 ], [ 85.877476841083279, 21.996099555050414 ], [ 85.897320590672663, 22.007623399400355 ], [ 85.916234165174529, 22.022118638864068 ], [ 85.963983188972961, 22.08560313647552 ], [ 85.971321242281462, 22.097695420707048 ], [ 85.974111770241947, 22.104594225343188 ], [ 85.974111770241947, 22.111441352236621 ], [ 85.972974887780808, 22.118882758332628 ], [ 85.972561476630787, 22.133507188106247 ], [ 85.976592238041277, 22.149785265177847 ], [ 85.984653761761621, 22.172057807521803 ], [ 85.988271112022161, 22.18753489801713 ], [ 85.986824172097826, 22.201694240696604 ], [ 85.971321242281462, 22.2285401468103 ], [ 85.964603305697921, 22.244869899825968 ], [ 85.965223423322271, 22.263189195125214 ], [ 85.971424595068967, 22.275178128367934 ], [ 85.989924758420827, 22.300783800132244 ], [ 85.993025343844494, 22.316364244314396 ], [ 85.993232050318838, 22.335200304450488 ], [ 85.986514112835991, 22.393620510078446 ], [ 85.98248335232482, 22.410828762237539 ], [ 85.974835239754483, 22.42460053128945 ], [ 85.950237258342767, 22.452841702282736 ], [ 85.940625441011235, 22.46813792652409 ], [ 85.937008090750723, 22.486017971352275 ], [ 85.937318150012544, 22.495061347003563 ], [ 85.937834913950084, 22.499169622779839 ], [ 85.938248325999353, 22.499944770035079 ], [ 85.938765089936894, 22.500513210815992 ], [ 85.945586379307912, 22.505603339422574 ], [ 85.965533481684801, 22.513096422361961 ], [ 85.973595005405102, 22.514956773436317 ], [ 85.988271112022161, 22.516636257357387 ], [ 85.994265578193833, 22.517928168550096 ], [ 85.997676222879349, 22.519142564477757 ], [ 86.005324335449671, 22.524413560237569 ], [ 86.020620558791705, 22.54792633693091 ], [ 86.030232375223846, 22.552964788693991 ], [ 86.039844190756739, 22.556737169484787 ], [ 86.049972772025782, 22.555806993497921 ], [ 86.057414178121789, 22.552163804815727 ], [ 86.064752232329596, 22.545885117803945 ], [ 86.102476026747169, 22.500125637188372 ], [ 86.26804731643044, 22.422404283430918 ], [ 86.289544712418476, 22.409045925529025 ], [ 86.30473758297299, 22.397056993185679 ], [ 86.322720982387381, 22.368738307826614 ], [ 86.332746209969557, 22.356671861117484 ], [ 86.346078728550395, 22.343959459261608 ], [ 86.36602583182659, 22.330058499000526 ], [ 86.383492466404149, 22.323237210528813 ], [ 86.401579216807335, 22.320007432996583 ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Dadra and Nagar Haveli", "admin": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.090557082243478, 20.285015367465231 ], [ 73.099342074577038, 20.285428779514511 ], [ 73.109057244696018, 20.287340807432312 ], [ 73.117015414729551, 20.287159939379698 ], [ 73.121356236301196, 20.284162705844206 ], [ 73.123216587375552, 20.278142402150131 ], [ 73.121149529826866, 20.266980292106776 ], [ 73.117635533253221, 20.260288193944969 ], [ 73.112157831019005, 20.254913845397645 ], [ 73.046838819855608, 20.221324164278766 ], [ 73.040947707370762, 20.21638906530313 ], [ 73.037433709897741, 20.212048245530067 ], [ 73.035573357924065, 20.208198351272866 ], [ 73.033919712424719, 20.202875677770287 ], [ 73.033609654062261, 20.19806977000388 ], [ 73.033919712424719, 20.192411199717068 ], [ 73.041774529670747, 20.157736313879749 ], [ 73.045598586405603, 20.148873806281127 ], [ 73.053660109226584, 20.142207546541041 ], [ 73.065752395256808, 20.138254299496275 ], [ 73.086112908783633, 20.139236152326529 ], [ 73.096344841940876, 20.142672634534446 ], [ 73.102235956224362, 20.146806748732441 ], [ 73.103786248936203, 20.151405950923895 ], [ 73.104716424023692, 20.163704942529076 ], [ 73.106266716735519, 20.171688950984269 ], [ 73.109677362320369, 20.178639431564473 ], [ 73.114018182093375, 20.181662503521686 ], [ 73.119185825065742, 20.182437648978286 ], [ 73.154739210945806, 20.17783844678689 ], [ 73.164454380165438, 20.170758774997463 ], [ 73.170035435187145, 20.164531764829061 ], [ 73.166314732139128, 20.114870714012223 ], [ 73.168071730425979, 20.077663683532133 ], [ 73.165901320089787, 20.062574163966467 ], [ 73.160940382692488, 20.047484646199443 ], [ 73.153292271021471, 20.032886053948225 ], [ 73.147917921574773, 20.028080146181761 ], [ 73.142853631389912, 20.026607366936442 ], [ 73.136652459643216, 20.027227485460056 ], [ 73.123629999424892, 20.038725491388274 ], [ 73.117325473991386, 20.046089382219176 ], [ 73.109884067895379, 20.052807318802699 ], [ 73.103062779423666, 20.056243801010559 ], [ 73.093244255617876, 20.055856228282263 ], [ 73.086216261571153, 20.052678128492794 ], [ 73.072470330940945, 20.043066311161336 ], [ 73.067819451906118, 20.04081838645936 ], [ 73.063788689596308, 20.04099925451197 ], [ 73.058517693836436, 20.043531399154741 ], [ 73.05231652208974, 20.051127834881637 ], [ 73.046115350343072, 20.056708889004021 ], [ 73.039397413759588, 20.05934438733356 ], [ 73.031025831676729, 20.05647634500729 ], [ 73.015522901860365, 20.044306545510661 ], [ 73.007771437401843, 20.040043240103437 ], [ 73.001570265655161, 20.0388805201199 ], [ 72.997229444982835, 20.039810696106706 ], [ 72.989891391674334, 20.047484646199443 ], [ 72.980589633604637, 20.062367459290776 ], [ 72.970150994872469, 20.086784573549206 ], [ 72.947206658960098, 20.127402248714812 ], [ 72.944622836574624, 20.137995917077884 ], [ 72.941522251150928, 20.17745087315927 ], [ 72.939351840814751, 20.184298000951966 ], [ 72.935424432191766, 20.191868598257194 ], [ 72.929533318807543, 20.198457342732176 ], [ 72.921471795986562, 20.20499441216236 ], [ 72.903798455833993, 20.215923977309668 ], [ 72.896667108100516, 20.221505032331375 ], [ 72.891706170703159, 20.227396144816218 ], [ 72.888708937167664, 20.233054714203657 ], [ 72.887985466755865, 20.238609930803644 ], [ 72.888708937167664, 20.244216824247015 ], [ 72.892429641115001, 20.251839098395628 ], [ 72.895530227438016, 20.255921535750243 ], [ 72.902661574272187, 20.258272813239721 ], [ 72.91061974520504, 20.257549342827868 ], [ 72.927052850108893, 20.253931993466715 ], [ 72.936354608178576, 20.252846787848963 ], [ 72.942865839187093, 20.253544419839095 ], [ 72.945346306986423, 20.255921535750243 ], [ 72.958885532940926, 20.287960924157286 ], [ 72.963536411076447, 20.295247301521723 ], [ 72.968187290111288, 20.29808950452701 ], [ 72.974491814645475, 20.29850291657629 ], [ 72.985447219113809, 20.294239610269752 ], [ 72.99195844922302, 20.293051051864548 ], [ 72.997642857032176, 20.293593655123058 ], [ 73.017796664984061, 20.304187323486186 ], [ 73.049939406178609, 20.330258084143221 ], [ 73.05727746038643, 20.334753933547173 ], [ 73.065132276733138, 20.337337755033325 ], [ 73.071333449379139, 20.335632432690598 ], [ 73.076294386776496, 20.327958481698541 ], [ 73.074330682015315, 20.313282375980858 ], [ 73.071850214215985, 20.303903103545391 ], [ 73.071333449379139, 20.296642563703355 ], [ 73.07412397733961, 20.291733303149382 ], [ 73.082495559422497, 20.286178087448768 ], [ 73.090557082243478, 20.285015367465231 ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Karnataka", "admin": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.4468803237679, 18.279530544798771 ], [ 77.461453077597398, 18.281933499131636 ], [ 77.476852654626242, 18.29263052028227 ], [ 77.49318240764191, 18.308986110820335 ], [ 77.502794224074123, 18.312939357865044 ], [ 77.509098748608309, 18.314567165841989 ], [ 77.551163364597571, 18.307875068579559 ], [ 77.583306104892799, 18.291545315563834 ], [ 77.583616164154577, 18.284491482196128 ], [ 77.582065871442737, 18.274182033773794 ], [ 77.575657993221782, 18.261908881489656 ], [ 77.570903762298755, 18.249584052362135 ], [ 77.568526646387554, 18.233745224862211 ], [ 77.569766879837559, 18.223668321335932 ], [ 77.590747511888111, 18.175454210443426 ], [ 77.600979445045283, 18.125121365158858 ], [ 77.599945917170288, 18.114837755158245 ], [ 77.596535271585466, 18.110884508113539 ], [ 77.591677686975601, 18.108300685728064 ], [ 77.585476516128253, 18.106466173075425 ], [ 77.572454055010596, 18.103959865955058 ], [ 77.565736118427068, 18.100885118053718 ], [ 77.560981886604722, 18.095769151025472 ], [ 77.557674594706711, 18.086157335492597 ], [ 77.559121534631046, 18.078354194190691 ], [ 77.562945591365889, 18.070783595986139 ], [ 77.594778273298616, 18.044609483440862 ], [ 77.603459913744004, 18.033731594237675 ], [ 77.611211379101775, 18.01722097406866 ], [ 77.621339960370833, 17.986835232060283 ], [ 77.625784132931344, 17.957457180404557 ], [ 77.626714308918153, 17.942186795484183 ], [ 77.624130487431998, 17.93226491979021 ], [ 77.619789666759672, 17.925650335994188 ], [ 77.559224888317871, 17.86986562779645 ], [ 77.54961307188573, 17.863276882422152 ], [ 77.539691197091017, 17.858626003387311 ], [ 77.530286086233829, 17.85531871238862 ], [ 77.523464796862854, 17.852114773278171 ], [ 77.515816685191837, 17.845577703847933 ], [ 77.507858514258984, 17.83472565396573 ], [ 77.501864048087313, 17.821858222478959 ], [ 77.500107048901143, 17.815786241042186 ], [ 77.500313755375458, 17.812298081990882 ], [ 77.502277460136654, 17.809740098926394 ], [ 77.506618279909659, 17.805140895835674 ], [ 77.519640741027317, 17.793927109848195 ], [ 77.526048618349009, 17.786434027808124 ], [ 77.530906202958846, 17.777597357731846 ], [ 77.533696730020026, 17.763179633533237 ], [ 77.531319615008201, 17.754007065773461 ], [ 77.525428500724658, 17.746281439736659 ], [ 77.516126742654976, 17.740648708770888 ], [ 77.480883416936067, 17.726541042934738 ], [ 77.47054813009207, 17.720288194344672 ], [ 77.463623487933589, 17.713415229029575 ], [ 77.452358026002031, 17.689334011555385 ], [ 77.423935987855529, 17.652669583434484 ], [ 77.411533645261486, 17.630784613818829 ], [ 77.423005811868649, 17.61251699536302 ], [ 77.456698845775037, 17.599055283774302 ], [ 77.469928013367081, 17.59210480409342 ], [ 77.484914178346614, 17.581097724580328 ], [ 77.492872349279466, 17.577609565529027 ], [ 77.503414340799154, 17.576136786283652 ], [ 77.515506625930001, 17.576369330280325 ], [ 77.535867141255537, 17.573733831950786 ], [ 77.549509719098225, 17.574069728734965 ], [ 77.582582635380263, 17.578772283713924 ], [ 77.588783807126944, 17.554174303201531 ], [ 77.592607862962481, 17.550221056156769 ], [ 77.599119093970941, 17.546810411471309 ], [ 77.6086275567163, 17.548205675451523 ], [ 77.620203077909679, 17.55277903922126 ], [ 77.642320590622688, 17.566085720279769 ], [ 77.655032993377901, 17.572131863294825 ], [ 77.67425662624224, 17.577066962270461 ], [ 77.683041620374453, 17.574043891212565 ], [ 77.685832147435619, 17.567170924998148 ], [ 77.682008090700748, 17.554975287079795 ], [ 77.653172642303531, 17.500069078025486 ], [ 77.651622348692371, 17.499216417303781 ], [ 77.648004999331178, 17.497562770905116 ], [ 77.599325798646618, 17.486917425698604 ], [ 77.589713983113754, 17.481594753095347 ], [ 77.581032341769102, 17.471853746353297 ], [ 77.578345168394762, 17.455498154915912 ], [ 77.570593703036906, 17.445007839340285 ], [ 77.560981886604722, 17.438496609231091 ], [ 77.548269483849523, 17.436119493319946 ], [ 77.536177198718661, 17.43539602290809 ], [ 77.525635207198988, 17.43043508641011 ], [ 77.516230096341801, 17.419479681941763 ], [ 77.50775516057216, 17.396328640454382 ], [ 77.496386345853111, 17.374572862047952 ], [ 77.374429965770261, 17.222566636740847 ], [ 77.365334914174895, 17.194092921750947 ], [ 77.366368442949209, 17.180476183229242 ], [ 77.370399204359757, 17.169159044454315 ], [ 77.378150668818236, 17.161872667089877 ], [ 77.387349074100413, 17.157790228835946 ], [ 77.405952590239778, 17.15285512896099 ], [ 77.415564405772656, 17.149186102756399 ], [ 77.425176223104174, 17.142338974963703 ], [ 77.428586866890356, 17.135982774485448 ], [ 77.43354780518699, 17.096837876766582 ], [ 77.440989211283053, 17.081360785371938 ], [ 77.465173780645429, 17.042577622858968 ], [ 77.467757603030904, 17.025808621170935 ], [ 77.464140252770378, 17.011545924804576 ], [ 77.451221145339545, 16.992580675257951 ], [ 77.442126091945539, 16.974726467052786 ], [ 77.435718214623861, 16.954934394306857 ], [ 77.433444452399485, 16.934754747033931 ], [ 77.434374628386351, 16.812772529428681 ], [ 77.431584100425866, 16.799569200258357 ], [ 77.424762811054833, 16.795383409216921 ], [ 77.418975051357492, 16.789647325463701 ], [ 77.414840936260177, 16.779596259459762 ], [ 77.409569939600985, 16.737841701833073 ], [ 77.409569939600985, 16.72639537184892 ], [ 77.410913526737815, 16.720581772830535 ], [ 77.415461052985137, 16.717326157775968 ], [ 77.435614861836342, 16.705543931906899 ], [ 77.444089796706677, 16.695983792318142 ], [ 77.445536736631055, 16.690170193299757 ], [ 77.441299269645512, 16.684124050284648 ], [ 77.424452752692318, 16.670998237278805 ], [ 77.417011345696977, 16.663479315917694 ], [ 77.411533645261486, 16.652808132289461 ], [ 77.411120233212131, 16.647821357369704 ], [ 77.413600701910795, 16.646891181382895 ], [ 77.424866163842339, 16.650611884430926 ], [ 77.43199751157583, 16.651619573884201 ], [ 77.438818800946848, 16.650560208486805 ], [ 77.445330031056059, 16.64567678545529 ], [ 77.446260207042869, 16.640767524001998 ], [ 77.444296503181008, 16.633041897065873 ], [ 77.439438917671836, 16.622138170340289 ], [ 77.435614861836342, 16.604955755703539 ], [ 77.43199751157583, 16.593612779406211 ], [ 77.427243279753469, 16.5857321228392 ], [ 77.418044875370612, 16.579763495089193 ], [ 77.396960891431931, 16.571701972268212 ], [ 77.389519484436605, 16.565914210772174 ], [ 77.383938430314259, 16.556173204030127 ], [ 77.383111607114913, 16.542763170184113 ], [ 77.378667433655082, 16.532221177765106 ], [ 77.37091596919656, 16.52428884525397 ], [ 77.344974399748693, 16.510258693783666 ], [ 77.311591424204821, 16.485454005897619 ], [ 77.273557569626107, 16.465145169214164 ], [ 77.260328403832702, 16.454706529582662 ], [ 77.257434523084711, 16.449358018557685 ], [ 77.284719679669394, 16.415199897557212 ], [ 77.293711379376631, 16.406518256212561 ], [ 77.393963657896435, 16.381067613179763 ], [ 77.410603469274619, 16.379362290837033 ], [ 77.473131951578281, 16.381067613179763 ], [ 77.49328576042943, 16.378173733331092 ], [ 77.5331799660825, 16.361042996437103 ], [ 77.538244257166681, 16.35019094475626 ], [ 77.547649367124535, 16.343007921078648 ], [ 77.552610305421211, 16.332155870297182 ], [ 77.551783482221865, 16.317686469255133 ], [ 77.546409132775224, 16.307532050463745 ], [ 77.540001254554213, 16.299522202687509 ], [ 77.530596144596345, 16.292571723006571 ], [ 77.501347284149773, 16.275466824534302 ], [ 77.495972934703147, 16.270505886237626 ], [ 77.49080529173078, 16.261591701795563 ], [ 77.488531528607083, 16.250455431073245 ], [ 77.490185174106429, 16.222756863338528 ], [ 77.488221470244625, 16.21045787173335 ], [ 77.483984003259067, 16.199450792220258 ], [ 77.480263299311758, 16.183818671194725 ], [ 77.479023064962448, 16.164414171177039 ], [ 77.48512088392161, 16.110774033994456 ], [ 77.48512088392161, 16.092997341054453 ], [ 77.481400180873592, 16.06860606521769 ], [ 77.480883416936067, 16.04589427330205 ], [ 77.483673943997289, 16.002072659025995 ], [ 77.479953240949257, 15.99390778251813 ], [ 77.473958774777586, 15.983494981308294 ], [ 77.457008905036886, 15.966751817142605 ], [ 77.446466912617865, 15.952980048090749 ], [ 77.432927686663362, 15.954711208855199 ], [ 77.428793573364644, 15.955899766361084 ], [ 77.306217075657443, 15.957062486344622 ], [ 77.263635694831393, 15.962100938107763 ], [ 77.252886996837375, 15.965744126790012 ], [ 77.235420363159193, 15.974632472810352 ], [ 77.226428664351289, 15.976389471996523 ], [ 77.163073357949074, 15.967113552348561 ], [ 77.143746372297159, 15.960705675026867 ], [ 77.073569777423216, 15.921018174948808 ], [ 77.034088982920181, 15.873734239143795 ], [ 77.035432570057012, 15.859781602039273 ], [ 77.030471632659655, 15.84918793457552 ], [ 77.030471632659655, 15.824744980996057 ], [ 77.02530398968733, 15.781285101925899 ], [ 77.02768110469917, 15.760924587499684 ], [ 77.031091750284006, 15.748754788003051 ], [ 77.036776158093161, 15.744853216902408 ], [ 77.041943801065528, 15.743122057037279 ], [ 77.046698032887875, 15.740899969857704 ], [ 77.051658970285175, 15.737024238078103 ], [ 77.063337844266044, 15.712736314129582 ], [ 77.076877069321228, 15.690179551844832 ], [ 77.084938592142279, 15.667286891876524 ], [ 77.083181593855429, 15.657778429131211 ], [ 77.076877069321228, 15.653825182086447 ], [ 77.067161900101539, 15.655943915579195 ], [ 77.056929966045047, 15.659871324202241 ], [ 77.0479382672372, 15.662170924848278 ], [ 77.038533156380012, 15.662480984110113 ], [ 77.028714634372804, 15.659948839467342 ], [ 77.019309522616354, 15.653928533974632 ], [ 77.01052453028278, 15.644626776804269 ], [ 77.003599888124299, 15.631785182839902 ], [ 77.000809361063119, 15.6240595568031 ], [ 76.999879185076267, 15.619434516189978 ], [ 76.999672478601937, 15.613775946802487 ], [ 77.00918094314595, 15.569334214902081 ], [ 77.010111118233482, 15.52440155748587 ], [ 77.00804406068481, 15.511844184361617 ], [ 77.004840121574304, 15.504893703781361 ], [ 77.000912713850639, 15.503886013428765 ], [ 76.996881952440077, 15.505849718189946 ], [ 76.980448845737598, 15.519182236770799 ], [ 76.972387322916546, 15.522179470306297 ], [ 76.966392856744875, 15.514040432220153 ], [ 76.96742638461987, 15.506004746921514 ], [ 76.96856326708108, 15.501508897517562 ], [ 76.971767206191586, 15.497684840782764 ], [ 76.981379021724408, 15.479365546382834 ], [ 76.986546664696775, 15.461873074282945 ], [ 76.990887486268406, 15.453062241729068 ], [ 76.996158482028292, 15.44655101251919 ], [ 77.001222772213083, 15.443243719721858 ], [ 77.007630650434109, 15.433476874558092 ], [ 77.014451938905822, 15.417250475229249 ], [ 77.022513461726803, 15.364850572395991 ], [ 77.025924107311639, 15.351492214494096 ], [ 77.031401808646521, 15.345575262688211 ], [ 77.039566685154327, 15.34172536933033 ], [ 77.074189895047567, 15.333612168766534 ], [ 77.085248651404115, 15.328005276222481 ], [ 77.093620232587611, 15.32224335404754 ], [ 77.104885695418474, 15.30821320257723 ], [ 77.113463983076301, 15.242299913110509 ], [ 77.128656853630829, 15.194266669371299 ], [ 77.132274203891356, 15.174810492510227 ], [ 77.132584263153191, 15.154320786874788 ], [ 77.130723911179516, 15.141634223440629 ], [ 77.128140089693346, 15.132254950105841 ], [ 77.124316033857824, 15.12313406008877 ], [ 77.119768507610488, 15.114943346058565 ], [ 77.113463983076301, 15.107424424697395 ], [ 77.107262811329619, 15.09786428510864 ], [ 77.100544874746149, 15.084531764729144 ], [ 77.093413527012601, 15.058900255442435 ], [ 77.087212355265905, 15.04590363184712 ], [ 77.080391065894943, 15.036653551520143 ], [ 77.056929966045047, 15.014303493911083 ], [ 77.050315383148344, 15.009962673238757 ], [ 77.042357212215549, 15.006448675765734 ], [ 77.034192335707687, 15.005208442315732 ], [ 77.027164340761644, 15.006991279024302 ], [ 77.021893345001828, 15.01233978914996 ], [ 77.017242465966987, 15.019316108151822 ], [ 77.012694939719637, 15.024948839117593 ], [ 77.007010532809815, 15.02952220288733 ], [ 77.000189243438768, 15.032080185951825 ], [ 76.993471306855255, 15.033552965197142 ], [ 76.981999139348758, 15.032855333207062 ], [ 76.971353794142232, 15.030684922870874 ], [ 76.957607862612733, 15.023786119134055 ], [ 76.947996047079855, 15.021641547219582 ], [ 76.937350701873342, 15.023346869562371 ], [ 76.918850539420802, 15.03197683406364 ], [ 76.906138136665604, 15.035568345902446 ], [ 76.879473097705244, 15.037816269705043 ], [ 76.863350051163863, 15.040968532871487 ], [ 76.776223585649902, 15.090242010960022 ], [ 76.764338006993384, 15.094117742739623 ], [ 76.745527785279009, 15.063887030362137 ], [ 76.743874138880329, 15.040064195306341 ], [ 76.744907667654715, 15.025672309529451 ], [ 76.743357374942875, 15.018385932165014 ], [ 76.739946730257358, 15.012753201199242 ], [ 76.735399204010022, 15.008851630098658 ], [ 76.72692427003895, 14.999885768813154 ], [ 76.719482863043638, 14.989731350021767 ], [ 76.719482863043638, 14.985881455764568 ], [ 76.722066685429169, 14.982419135134984 ], [ 76.7276477395515, 14.980455431273125 ], [ 76.757516716723032, 14.97415090583962 ], [ 76.763821242156538, 14.971437893144236 ], [ 76.782424758295889, 14.959345608013392 ], [ 76.789452753241946, 14.95681346337062 ], [ 76.795963983351072, 14.955314845703523 ], [ 76.802785271822799, 14.952834377004873 ], [ 76.81012332603062, 14.948416042866082 ], [ 76.819425083200983, 14.937693183293726 ], [ 76.822008904687138, 14.929321601210912 ], [ 76.822215611161454, 14.92097585754976 ], [ 76.819115024838467, 14.90002106392097 ], [ 76.818598260001622, 14.882683621451971 ], [ 76.815084263427977, 14.858008123875772 ], [ 76.799684686399118, 14.794833686425473 ], [ 76.797204216801092, 14.789123440194599 ], [ 76.794723749001761, 14.785893663561689 ], [ 76.790692986691937, 14.783568224493928 ], [ 76.768988885128891, 14.775868435080209 ], [ 76.764648065355885, 14.772948716809816 ], [ 76.76185753829472, 14.763672797161856 ], [ 76.765681594130214, 14.731814276807423 ], [ 76.765268182080874, 14.719101874052225 ], [ 76.762167595757873, 14.707138780130604 ], [ 76.753485956211861, 14.691713365579343 ], [ 76.743874138880329, 14.667890530523547 ], [ 76.738603143120528, 14.643525092209241 ], [ 76.738086379183002, 14.629210719898762 ], [ 76.740566847881652, 14.612932643726532 ], [ 76.75286583858751, 14.565597031977402 ], [ 76.756379836060518, 14.558930772237314 ], [ 76.761650831820404, 14.555520128451175 ], [ 76.777050408849263, 14.550197454948544 ], [ 76.78449181494527, 14.546631781531456 ], [ 76.791313104316245, 14.541670844134156 ], [ 76.797824335324762, 14.533350937995349 ], [ 76.803302035760268, 14.523816636828309 ], [ 76.813637322604308, 14.500122992082421 ], [ 76.821388787962164, 14.486041165567309 ], [ 76.825626254947665, 14.481261095323244 ], [ 76.82996707561999, 14.478651435415369 ], [ 76.834721307442322, 14.47831553773187 ], [ 76.841129184764029, 14.479943345708817 ], [ 76.855391880231068, 14.48722972307325 ], [ 76.861282992715914, 14.488986721360103 ], [ 76.869034458073756, 14.489529323719292 ], [ 76.891358677261081, 14.486687119814688 ], [ 76.910995721275455, 14.486738795758805 ], [ 76.917196893022137, 14.483844915910138 ], [ 76.922881300831293, 14.478418891418695 ], [ 76.92959923741482, 14.466507473441137 ], [ 76.931562941276681, 14.457567450577354 ], [ 76.93094282365233, 14.44940257406949 ], [ 76.927842238228649, 14.444209093574781 ], [ 76.917817009747168, 14.434364732246589 ], [ 76.914199660385947, 14.428086046134124 ], [ 76.91068566291294, 14.415089423438131 ], [ 76.90799848773996, 14.410412705981569 ], [ 76.902520786405134, 14.407157090926997 ], [ 76.895389438671586, 14.406201077417787 ], [ 76.888774854875606, 14.407157090926997 ], [ 76.883503859115748, 14.408449002119706 ], [ 76.878542921718392, 14.408681545217119 ], [ 76.873685337108597, 14.406924546930266 ], [ 76.868414341348711, 14.40320384388229 ], [ 76.864590284613854, 14.39873383200074 ], [ 76.860869581565879, 14.391576645845529 ], [ 76.858182408191539, 14.382559109515283 ], [ 76.856838820155403, 14.368167222839014 ], [ 76.858802524916527, 14.357005112795715 ], [ 76.862419875177054, 14.347238266732628 ], [ 76.868104282986209, 14.338065700771434 ], [ 76.875442336294697, 14.33008169231624 ], [ 76.882987095178279, 14.324345608562961 ], [ 76.915646600310296, 14.311142280291957 ], [ 76.921847772056978, 14.304708564548601 ], [ 76.922571241569514, 14.298274847905869 ], [ 76.920607537707653, 14.292073676159188 ], [ 76.915336541947781, 14.285097358056586 ], [ 76.910375603651161, 14.277397569542185 ], [ 76.905828078303145, 14.268250841103391 ], [ 76.908205194214275, 14.25786387831533 ], [ 76.96804650314354, 14.245978297860116 ], [ 76.999259068351293, 14.244272976416706 ], [ 77.02468387206298, 14.23840770145426 ], [ 77.045457797639173, 14.231663927348333 ], [ 77.063131137791729, 14.230785427305587 ], [ 77.072742954223926, 14.232594102435879 ], [ 77.078220655558752, 14.237477525467394 ], [ 77.080907830731732, 14.243497830060786 ], [ 77.082458124342892, 14.251456000094318 ], [ 77.080287714006758, 14.278327745528994 ], [ 77.082871534593579, 14.288740545839513 ], [ 77.086902296903403, 14.296052760726294 ], [ 77.099201287609262, 14.311271471501183 ], [ 77.111293572740152, 14.329616604322833 ], [ 77.124316033857824, 14.340985419041825 ], [ 77.132894322415027, 14.344008490099721 ], [ 77.140955845236007, 14.343543403005638 ], [ 77.159972771626073, 14.33217458738727 ], [ 77.169894647320035, 14.328531398705078 ], [ 77.185087517874564, 14.32646434205571 ], [ 77.206688266650119, 14.326903590728135 ], [ 77.23293989535982, 14.333104763374136 ], [ 77.247409296401869, 14.334629218563574 ], [ 77.256814406359737, 14.333957424095839 ], [ 77.261155227032063, 14.329616604322833 ], [ 77.262912225318914, 14.324138902088633 ], [ 77.263015578106419, 14.316749171936745 ], [ 77.262602166956398, 14.309101060265728 ], [ 77.267976516403039, 14.301478787016375 ], [ 77.278208448660948, 14.295587672732889 ], [ 77.304976841308118, 14.289903265823053 ], [ 77.318309360788348, 14.285717474781617 ], [ 77.327094354021185, 14.281040758224375 ], [ 77.343424107036853, 14.256985378272585 ], [ 77.353862745769021, 14.245978297860116 ], [ 77.36729861803677, 14.238252671823314 ], [ 77.378977492017583, 14.23838186303254 ], [ 77.386728957375439, 14.244479681991717 ], [ 77.387969190825444, 14.252773748809428 ], [ 77.384351840564904, 14.261972154091605 ], [ 77.366678501311739, 14.287112737862568 ], [ 77.362647739901249, 14.295122586538124 ], [ 77.359443800790729, 14.304217638133478 ], [ 77.357583448817067, 14.313157660097939 ], [ 77.358927035953897, 14.321632594968261 ], [ 77.363577914988738, 14.328505561182679 ], [ 77.374429965770261, 14.334474188932628 ], [ 77.382388136703113, 14.335430203341216 ], [ 77.38962283722411, 14.333957424095839 ], [ 77.400681593580643, 14.327627061139932 ], [ 77.406055943027269, 14.323286241366926 ], [ 77.41050011558778, 14.319229641534715 ], [ 77.413910760273311, 14.313932807353179 ], [ 77.415150994622635, 14.309747016311743 ], [ 77.415150994622635, 14.303933417293361 ], [ 77.417424757746332, 14.299876817461151 ], [ 77.423625930392319, 14.296957099190761 ], [ 77.451841262064519, 14.293778998501974 ], [ 77.461039667346682, 14.290135809819727 ], [ 77.46393354719541, 14.284994005269137 ], [ 77.463520135146084, 14.277397569542185 ], [ 77.456492141099361, 14.25786387831533 ], [ 77.454218377975721, 14.248355413771318 ], [ 77.454218377975721, 14.239389553385134 ], [ 77.456182081837582, 14.230346177733903 ], [ 77.465173780645429, 14.206135769050487 ], [ 77.467240839093378, 14.19864268611104 ], [ 77.467757603030904, 14.192441515263678 ], [ 77.465483839907264, 14.186240343516996 ], [ 77.460522901610588, 14.180969346857861 ], [ 77.451221145339545, 14.176551011819695 ], [ 77.439955681609348, 14.174148058386148 ], [ 77.397064243320116, 14.172649440719109 ], [ 77.383111607114913, 14.170556544748703 ], [ 77.375360141757071, 14.167585151433567 ], [ 77.368538853285415, 14.163425197914531 ], [ 77.349625278783535, 14.143245551540925 ], [ 77.332572056255316, 14.129835516795648 ], [ 77.329161410670494, 14.125908108172663 ], [ 77.327921177220489, 14.122652493118036 ], [ 77.331125116330995, 14.119086818801632 ], [ 77.338153111277038, 14.117407334880564 ], [ 77.351588982645396, 14.115934557433885 ], [ 77.358306919228866, 14.111748766392449 ], [ 77.360994094401889, 14.106400255367472 ], [ 77.358306919228866, 14.098726305274734 ], [ 77.35396609855654, 14.091388251066913 ], [ 77.332055292317861, 14.063250433760512 ], [ 77.328851353207355, 14.056790880494699 ], [ 77.327921177220489, 14.052165838982258 ], [ 77.329471469932329, 14.046119696866523 ], [ 77.333812289705335, 14.039763495488895 ], [ 77.346214634098004, 14.026069240802823 ], [ 77.349005161159184, 14.021289171458076 ], [ 77.352519158632205, 13.999636745839151 ], [ 77.353552687406562, 13.997518012346401 ], [ 77.355826451429536, 13.993177192573338 ], [ 77.362854444576882, 13.984986476744492 ], [ 77.370605909934724, 13.98010305371292 ], [ 77.381147902353788, 13.975245470002445 ], [ 77.386108839751088, 13.96930267977484 ], [ 77.387969190825444, 13.962946479296587 ], [ 77.384661899826753, 13.945919094290726 ], [ 77.384041783101779, 13.93927867297236 ], [ 77.385282016551784, 13.933645942006589 ], [ 77.398821241606967, 13.910882473247508 ], [ 77.400784947267454, 13.903208523154827 ], [ 77.399854771280602, 13.896800644933816 ], [ 77.394893832983968, 13.892227281164079 ], [ 77.386728957375439, 13.890366930089723 ], [ 77.376910435368231, 13.892149765898974 ], [ 77.357893508078902, 13.90072805445612 ], [ 77.341563755063177, 13.904836331131772 ], [ 77.332365349781, 13.908169461451447 ], [ 77.328954705994846, 13.913905544305404 ], [ 77.329471469932329, 13.921760362450751 ], [ 77.331021762644156, 13.929925238059294 ], [ 77.331021762644156, 13.939097804919751 ], [ 77.326370883609329, 13.949794826969647 ], [ 77.311281365842305, 13.973307602763665 ], [ 77.298155551937143, 14.000644436191745 ], [ 77.293711379376631, 14.006613063941753 ], [ 77.289267205916744, 14.010747179039068 ], [ 77.284616326881959, 14.013098456528551 ], [ 77.272937452901076, 14.014235338090369 ], [ 77.265392694017564, 14.01674164521074 ], [ 77.258571404646517, 14.020048936209431 ], [ 77.25144005691304, 14.022219347444885 ], [ 77.243998650817019, 14.022219347444885 ], [ 77.180643345314067, 14.006819770416026 ], [ 77.16824100092137, 14.005657050432488 ], [ 77.140335727611713, 14.006303005579237 ], [ 77.122145624420995, 14.004365139239777 ], [ 77.112327102413786, 14.005062771229912 ], [ 77.103645461069135, 14.009274399793695 ], [ 77.097650994897421, 14.015320542808805 ], [ 77.087729120102765, 14.028343003926464 ], [ 77.08194135860677, 14.03384654458233 ], [ 77.07470665898505, 14.037515570786921 ], [ 77.065921664852894, 14.0402285834823 ], [ 77.035845982106352, 14.046119696866523 ], [ 77.019722934665623, 14.051545722257286 ], [ 77.004840121574304, 14.058444525994044 ], [ 76.999879185076267, 14.061855169780241 ], [ 76.995331658828931, 14.066376858505176 ], [ 76.990267367744735, 14.07459341095716 ], [ 76.986339960021084, 14.084515285751817 ], [ 76.980448845737598, 14.107072048036567 ], [ 76.973627557265885, 14.156087143706712 ], [ 76.971147088567236, 14.164587917898071 ], [ 76.96742638461987, 14.171021632742164 ], [ 76.962672153696914, 14.171641751265778 ], [ 76.958538038599542, 14.170220648863843 ], [ 76.954713982764062, 14.169212958511192 ], [ 76.949546339791681, 14.169833075236223 ], [ 76.943241815257508, 14.17401886627766 ], [ 76.932389763576666, 14.183553168344016 ], [ 76.927532179866134, 14.186782944976922 ], [ 76.921951124844483, 14.188798326581487 ], [ 76.916680129084668, 14.188410752953867 ], [ 76.910995721275455, 14.185310167530186 ], [ 76.906344842240614, 14.179832465296041 ], [ 76.900040317706427, 14.170556544748703 ], [ 76.896526320233463, 14.168618679308564 ], [ 76.882987095178279, 14.166215724975697 ], [ 76.875442336294697, 14.162727565924396 ], [ 76.868000930198704, 14.153813381482335 ], [ 76.868104282986209, 14.145622667452127 ], [ 76.872961866696741, 14.137354438156759 ], [ 76.932803175626006, 14.080071113191307 ], [ 76.940864699346349, 14.067255356749282 ], [ 76.9426216976332, 14.06108002432364 ], [ 76.940761345659539, 14.056351630023695 ], [ 76.936833937036496, 14.050305487907902 ], [ 76.933629998825296, 14.04100372983822 ], [ 76.932389763576666, 14.021702581708777 ], [ 76.935903761948992, 14.01090220777064 ], [ 76.941794875333173, 14.003331611364782 ], [ 76.94737593035488, 13.999714260204936 ], [ 76.951923455702882, 13.995605984428604 ], [ 76.962052036072564, 13.982066759373422 ], [ 76.976004673177087, 13.95777883632422 ], [ 76.981689080986229, 13.950104885332165 ], [ 77.000499301801298, 13.930674546892813 ], [ 77.005253533623645, 13.924085802417832 ], [ 77.010214471020944, 13.914060573936293 ], [ 77.010421176595941, 13.904991359863342 ], [ 77.00649376797297, 13.898325100123257 ], [ 77.002152948199964, 13.894216824346923 ], [ 76.999259068351293, 13.891865545958179 ], [ 76.995538365303261, 13.888661606847673 ], [ 76.991921014143401, 13.883571479140411 ], [ 76.988096958307935, 13.875923367469394 ], [ 76.985926547971729, 13.868636990105013 ], [ 76.982929315335568, 13.862048244730712 ], [ 76.977968377938254, 13.85545950025573 ], [ 76.963705681571909, 13.840525011220276 ], [ 76.958124628348898, 13.833367825065066 ], [ 76.954507277189037, 13.82034536394735 ], [ 76.954713982764062, 13.807374578773757 ], [ 76.958538038599542, 13.78161387827782 ], [ 76.962775507383682, 13.767196153179892 ], [ 76.969183383806055, 13.75370860406883 ], [ 76.974454379565927, 13.750504665857646 ], [ 76.980035434587563, 13.752804267403006 ], [ 76.984686313622419, 13.759987291080616 ], [ 76.987786899945419, 13.76678274202993 ], [ 76.99068077979409, 13.776549587193696 ], [ 76.991921014143401, 13.778797511895615 ], [ 76.993781366117091, 13.779908555935091 ], [ 76.997812128426958, 13.778590807219983 ], [ 77.000912713850639, 13.77704051450814 ], [ 77.005770297561114, 13.77355235455752 ], [ 77.010214471020944, 13.769418240359467 ], [ 77.023030226563634, 13.755103868049044 ], [ 77.032331983733997, 13.746241360450423 ], [ 77.041116977866167, 13.743993434849127 ], [ 77.048248325599715, 13.747610785109654 ], [ 77.052279087010206, 13.75484548652997 ], [ 77.054966262183186, 13.763397934866758 ], [ 77.058170201293692, 13.76812632916676 ], [ 77.063751255416079, 13.769728297822663 ], [ 77.070779250362065, 13.768591417160163 ], [ 77.088452589615244, 13.763707994128591 ], [ 77.098581170884287, 13.762002671785861 ], [ 77.109536573553996, 13.761460069426672 ], [ 77.119768507610488, 13.763320421400291 ], [ 77.12772667764402, 13.767893785170029 ], [ 77.132687615940696, 13.776187851987739 ], [ 77.133204379878165, 13.784817817388326 ], [ 77.127830031330845, 13.800372423148811 ], [ 77.126589796981506, 13.808382270025728 ], [ 77.127106560918989, 13.81765818877437 ], [ 77.12586632656965, 13.830887356366357 ], [ 77.122455681884148, 13.837269395266386 ], [ 77.116357862924971, 13.841687730304496 ], [ 77.109536573553996, 13.84463328699661 ], [ 77.102611932294778, 13.849671738759692 ], [ 77.099511345971777, 13.854245103428751 ], [ 77.099924758021118, 13.858663438466916 ], [ 77.103232049019809, 13.862151598417537 ], [ 77.120078565973003, 13.867758490062268 ], [ 77.124005974595988, 13.87023895876092 ], [ 77.126279737719685, 13.873107001087188 ], [ 77.127209913706494, 13.877370307393731 ], [ 77.127519972968315, 13.881917832741745 ], [ 77.127209913706494, 13.886904609460142 ], [ 77.127830031330845, 13.890676988452238 ], [ 77.129173617568355, 13.895250352221975 ], [ 77.131344028803866, 13.900417996093605 ], [ 77.134754672590006, 13.905792345540302 ], [ 77.138475375638023, 13.90878957817648 ], [ 77.143539666722219, 13.91070160609422 ], [ 77.149430780106385, 13.907911078133733 ], [ 77.152221307167551, 13.903596095883128 ], [ 77.153048130366841, 13.896258043473889 ], [ 77.152738072004396, 13.888144842910148 ], [ 77.153461542416196, 13.878222968115491 ], [ 77.156148715790536, 13.874579780332564 ], [ 77.161833123599749, 13.874424749802355 ], [ 77.182296990813413, 13.888739122112778 ], [ 77.18922163297195, 13.891762193170674 ], [ 77.196663039067943, 13.891865545958179 ], [ 77.205964797137625, 13.886336167779914 ], [ 77.220847609329653, 13.868094386846447 ], [ 77.230769484124366, 13.866104845462242 ], [ 77.249889764201185, 13.868688666049078 ], [ 77.258261346284058, 13.866879990918843 ], [ 77.26849328034055, 13.861453966427401 ], [ 77.281619094245727, 13.852462265820916 ], [ 77.292057732977966, 13.848431505309687 ], [ 77.301979607772623, 13.848069770103788 ], [ 77.309937778705475, 13.849620062815628 ], [ 77.317069126438966, 13.850214342018258 ], [ 77.335155877741542, 13.847268785326147 ], [ 77.35396609855654, 13.842333686350511 ], [ 77.384041783101779, 13.846726182966957 ], [ 77.389209426074075, 13.843238023016337 ], [ 77.394583774621466, 13.836700955384739 ], [ 77.395720656183286, 13.828406886768388 ], [ 77.398614536031957, 13.821663113561836 ], [ 77.405642530978, 13.813369044945428 ], [ 77.418251580945636, 13.806289374055378 ], [ 77.424762811054833, 13.797452703979101 ], [ 77.42817345574035, 13.787065741190982 ], [ 77.430447218863989, 13.776110338521274 ], [ 77.438405388897522, 13.753863633699719 ], [ 77.440679152021218, 13.743993434849127 ], [ 77.440575799233699, 13.717896837568956 ], [ 77.442539503994823, 13.701954657281586 ], [ 77.448740675741519, 13.699448350161216 ], [ 77.453701613138875, 13.699293321429646 ], [ 77.460832960872423, 13.703298245317736 ], [ 77.466310663106569, 13.704202581983562 ], [ 77.487704706307085, 13.702058010069091 ], [ 77.494215936416296, 13.702368069330927 ], [ 77.499486932176112, 13.704460964401958 ], [ 77.52480838399967, 13.724873154772236 ], [ 77.551163364597571, 13.736862087115636 ], [ 77.56356570809092, 13.739807643807691 ], [ 77.583822869729588, 13.738102322364281 ], [ 77.59198774623745, 13.73942007107939 ], [ 77.595295038135461, 13.742417303715566 ], [ 77.591677686975601, 13.753966987386544 ], [ 77.591367628613099, 13.761150011064156 ], [ 77.593227979687455, 13.767092800392387 ], [ 77.598085565196627, 13.772467148939766 ], [ 77.604596796205144, 13.776317044096285 ], [ 77.614001906163011, 13.779443467941688 ], [ 77.626094191293845, 13.781717231065326 ], [ 77.640460240447666, 13.781717231065326 ], [ 77.648004999331178, 13.777893175229845 ], [ 77.652965935829215, 13.771459459486433 ], [ 77.656273227727226, 13.765800890098998 ], [ 77.663094517098244, 13.76021983507729 ], [ 77.66929568884494, 13.760943305489146 ], [ 77.674876742967271, 13.767118638814107 ], [ 77.678907505277081, 13.777273058504814 ], [ 77.682421502750103, 13.789339504314679 ], [ 77.686452264160593, 13.799623114315235 ], [ 77.693686964681646, 13.807607122770488 ], [ 77.702988722751329, 13.812516384223724 ], [ 77.719421827655182, 13.816934719261893 ], [ 77.7290336449867, 13.82073293757497 ], [ 77.734924758370852, 13.824221095726951 ], [ 77.746293573089858, 13.836649278541355 ], [ 77.755285271897705, 13.844194037424867 ], [ 77.775852491898931, 13.857087307333355 ], [ 77.784120721194299, 13.863701891129379 ], [ 77.789185012278409, 13.870316474026023 ], [ 77.791562128189625, 13.877447821759571 ], [ 77.79094200966594, 13.884579169493062 ], [ 77.787634718667249, 13.890599474086454 ], [ 77.781640253394912, 13.896542263414684 ], [ 77.776162551160766, 13.903234361576491 ], [ 77.77275190557593, 13.9103140324666 ], [ 77.771821729589121, 13.917781276984325 ], [ 77.773268671312096, 13.924395859881029 ], [ 77.777299431823252, 13.931165473307939 ], [ 77.782570427583138, 13.93659149779938 ], [ 77.791562128189625, 13.941681627305226 ], [ 77.799623651010663, 13.941216539311821 ], [ 77.81667687443813, 13.935247911561872 ], [ 77.838277622314351, 13.93504120508754 ], [ 77.844892206110373, 13.934007677212488 ], [ 77.849749789820891, 13.930622870049373 ], [ 77.856364373616913, 13.924809271930311 ], [ 77.863909133399744, 13.920235907261311 ], [ 77.878791944692452, 13.916618557000787 ], [ 77.88850711481146, 13.919331569696165 ], [ 77.896568637632456, 13.925636095129672 ], [ 77.900806104618013, 13.934188544365835 ], [ 77.903699986265309, 13.941604112040121 ], [ 77.908557569975798, 13.948787135717733 ], [ 77.914138624997506, 13.954058132376868 ], [ 77.926127557340848, 13.961577052838717 ], [ 77.932018670725014, 13.963669948809068 ], [ 77.937082960909876, 13.963256536759726 ], [ 77.939460076821007, 13.960724392117012 ], [ 77.941423780682882, 13.95491079399795 ], [ 77.942560663144022, 13.946849270277593 ], [ 77.941320427895377, 13.920416775313921 ], [ 77.940390252807887, 13.917083644994189 ], [ 77.938529900834212, 13.912897853952755 ], [ 77.93480919778618, 13.908324490183073 ], [ 77.915585564921827, 13.892253118686479 ], [ 77.911451450723845, 13.887266343766722 ], [ 77.909281040387654, 13.880574246504237 ], [ 77.909177686700829, 13.872202664421419 ], [ 77.912278273023816, 13.85036937074983 ], [ 77.914345330572516, 13.841377671941981 ], [ 77.916929152058671, 13.834582220992669 ], [ 77.920649855106703, 13.830473945216394 ], [ 77.925507439716498, 13.832515164343361 ], [ 77.93181196514999, 13.8390263944525 ], [ 77.947314894966368, 13.859516099188621 ], [ 77.960234003296563, 13.868843696579344 ], [ 77.971602818015569, 13.871324164378674 ], [ 77.982558220685277, 13.87023895876092 ], [ 77.99206668522929, 13.86698334370635 ], [ 77.998061151400961, 13.866259874193812 ], [ 78.002091912811451, 13.867138373337239 ], [ 78.032684361294201, 13.884734198224631 ], [ 78.079709913781457, 13.856932277702409 ], [ 78.091388787762284, 13.830112210010437 ], [ 78.096763137208981, 13.809002386750702 ], [ 78.097693312296471, 13.79608327931987 ], [ 78.096039666797125, 13.783680934927187 ], [ 78.086221144789974, 13.764819037268747 ], [ 78.082190383379427, 13.753811956856278 ], [ 78.085187616015602, 13.743683377385933 ], [ 78.091388787762284, 13.732753811339304 ], [ 78.102240839443127, 13.717354234310447 ], [ 78.105444776754993, 13.70856924107761 ], [ 78.104721307242514, 13.701127834981602 ], [ 78.099450310583322, 13.696787014309219 ], [ 78.093042434160949, 13.694642442394805 ], [ 78.084360792816284, 13.694874986391479 ], [ 78.068237746274903, 13.698724879749362 ], [ 78.061416456903913, 13.698053087080265 ], [ 78.056145461144055, 13.692006944065209 ], [ 78.057075637130907, 13.682782701260631 ], [ 78.060176222554603, 13.672318224106728 ], [ 78.067927687013125, 13.659269924567351 ], [ 78.074438918021571, 13.653869736698992 ], [ 78.083947381666277, 13.653533839914754 ], [ 78.101000604194482, 13.660639350125901 ], [ 78.109785598326624, 13.662525540521241 ], [ 78.118157180409511, 13.661827908531162 ], [ 78.126735467168004, 13.658572293476537 ], [ 78.133866814901552, 13.653611355179859 ], [ 78.168593377582269, 13.614311427830099 ], [ 78.176654901302626, 13.606740831424187 ], [ 78.184096307398633, 13.601547349130836 ], [ 78.18905724479599, 13.600332953203234 ], [ 78.202906529112951, 13.598601793338101 ], [ 78.212518344645829, 13.5962246774269 ], [ 78.231741978409545, 13.589558416787494 ], [ 78.253652784648224, 13.585760199373677 ], [ 78.263574660342258, 13.585346788223658 ], [ 78.272152948000084, 13.586147773001297 ], [ 78.279077590158607, 13.588550727334164 ], [ 78.292100051276265, 13.5969739853611 ], [ 78.297991163761111, 13.599454454059806 ], [ 78.304192336407127, 13.599531969324913 ], [ 78.310496860941313, 13.5969998228835 ], [ 78.322692498859666, 13.589455063999988 ], [ 78.327653436257023, 13.587749742556579 ], [ 78.33261437365438, 13.587388007350622 ], [ 78.337575311051737, 13.588137315284879 ], [ 78.350804477744404, 13.591806342388789 ], [ 78.358555943102232, 13.592633164688774 ], [ 78.368374465109454, 13.591005356711829 ], [ 78.373025344144295, 13.586225287367082 ], [ 78.374678989643584, 13.57963654199278 ], [ 78.372405227419264, 13.571368312697469 ], [ 78.365273878786454, 13.551963813579105 ], [ 78.363103469349582, 13.540827541957468 ], [ 78.362586703613417, 13.528554388774008 ], [ 78.366927525185062, 13.500390733045887 ], [ 78.367134229860753, 13.498168646765633 ], [ 78.365273878786454, 13.48752330245844 ], [ 78.362069939675948, 13.478738308326227 ], [ 78.359796176552251, 13.46899730158418 ], [ 78.358555943102232, 13.45726675075991 ], [ 78.361346470163411, 13.413393460539734 ], [ 78.360416294176602, 13.40809662545888 ], [ 78.358245883840411, 13.403626614476646 ], [ 78.35514529841673, 13.399673367431941 ], [ 78.351527948156246, 13.393653061939229 ], [ 78.349874301757595, 13.387322698983379 ], [ 78.350184361019373, 13.376108913895219 ], [ 78.353698357593061, 13.368874213374223 ], [ 78.359486118189736, 13.362414659209147 ], [ 78.365377231573902, 13.356962795396665 ], [ 78.37312869693173, 13.347221787755299 ], [ 78.377366163917301, 13.33737742822569 ], [ 78.380880161390266, 13.322752997552753 ], [ 78.387288038711958, 13.317766221733731 ], [ 78.394729444807965, 13.318050442573846 ], [ 78.409922316261813, 13.326654567754074 ], [ 78.416226840795986, 13.32755890531922 ], [ 78.421291131880182, 13.325414334304067 ], [ 78.430592889050544, 13.31890310329555 ], [ 78.436173944072195, 13.316345120231118 ], [ 78.441548292619572, 13.314794827519275 ], [ 78.446509230016929, 13.314794827519275 ], [ 78.452296990613576, 13.31564748824098 ], [ 78.459118279984551, 13.315725001707445 ], [ 78.465629510093763, 13.313244533908115 ], [ 78.505627069433658, 13.282316189540492 ], [ 78.510174594781674, 13.279990750472731 ], [ 78.516169060953345, 13.278853868011591 ], [ 78.522680291961862, 13.279060574485921 ], [ 78.529708286008528, 13.280843411194436 ], [ 78.534979282667706, 13.283375555837207 ], [ 78.540560336790051, 13.287897244562142 ], [ 78.553582797907765, 13.301798203923962 ], [ 78.558853793667566, 13.29864594255616 ], [ 78.562471144827427, 13.293452460262809 ], [ 78.565571730251108, 13.285933538901698 ], [ 78.568362258211593, 13.274823105701724 ], [ 78.568982374936624, 13.265728054106372 ], [ 78.568362258211593, 13.256297104827523 ], [ 78.565675083038613, 13.239683131871002 ], [ 78.565261671888592, 13.231259873844063 ], [ 78.565365024676083, 13.224051011744788 ], [ 78.564951612626757, 13.217875678419826 ], [ 78.563814731964257, 13.211829535404714 ], [ 78.561851027203076, 13.206636054010684 ], [ 78.556580031443261, 13.184983629291022 ], [ 78.552652621920899, 13.174674180868747 ], [ 78.546141391811759, 13.164183865293122 ], [ 78.530018345270364, 13.147389024284049 ], [ 78.523610467049352, 13.138707383838661 ], [ 78.520096469576387, 13.127726141847971 ], [ 78.518856236126325, 13.103722438739563 ], [ 78.51647912021518, 13.089098008965944 ], [ 78.51151818191849, 13.07721242941005 ], [ 78.502526483110657, 13.066928819409494 ], [ 78.49601525300146, 13.061864529224634 ], [ 78.47730838407459, 13.05256277115495 ], [ 78.47100385864114, 13.048118597695119 ], [ 78.466559686080572, 13.041529853220137 ], [ 78.462838983032597, 13.030832831170184 ], [ 78.457051223335242, 13.008172716097928 ], [ 78.454467400949724, 13.000498766005247 ], [ 78.452400344300415, 12.996700547692111 ], [ 78.441548292619572, 12.979879869160637 ], [ 78.415813429646022, 12.948202215959494 ], [ 78.41188602102298, 12.936704210031277 ], [ 78.412506137748011, 12.930503038284595 ], [ 78.415916783332861, 12.926859848703028 ], [ 78.424805129353203, 12.924534410534587 ], [ 78.43586388481036, 12.91918589950961 ], [ 78.448576287565558, 12.910245877545204 ], [ 78.463252395081938, 12.88993703906311 ], [ 78.468213331579918, 12.877405504360523 ], [ 78.467799921329274, 12.867664495819835 ], [ 78.462218866307566, 12.863737087196794 ], [ 78.45209028503858, 12.863272000102709 ], [ 78.439997999907732, 12.867457791144144 ], [ 78.377986280642276, 12.911124375789312 ], [ 78.370648228233094, 12.914638373262274 ], [ 78.364757114848928, 12.916937973908373 ], [ 78.359176059827263, 12.917248033170152 ], [ 78.352768181606265, 12.916240342817556 ], [ 78.346153598709563, 12.913294786125444 ], [ 78.341916131724062, 12.907765407947178 ], [ 78.340055779750372, 12.900375677795294 ], [ 78.340365839012222, 12.876268621899381 ], [ 78.339022250976058, 12.8700674501527 ], [ 78.335404900715545, 12.866579291101399 ], [ 78.325999789858358, 12.860791531404058 ], [ 78.318971795811692, 12.858259385861967 ], [ 78.31277062406501, 12.857432563561925 ], [ 78.304088982720288, 12.857380885819223 ], [ 78.300781690822348, 12.856140652369218 ], [ 78.293030227263145, 12.847872423073849 ], [ 78.288999464953278, 12.844694322385063 ], [ 78.285898878630277, 12.843376572770577 ], [ 78.282488233944804, 12.844539292754119 ], [ 78.274116651861945, 12.851670641386987 ], [ 78.267502068965243, 12.855468857901483 ], [ 78.260370721231752, 12.857587592293552 ], [ 78.2523091984107, 12.85753591634943 ], [ 78.247244908225909, 12.855753078741596 ], [ 78.244040969115403, 12.853737698036294 ], [ 78.242490676403563, 12.849887803779096 ], [ 78.240940382792402, 12.842911484777174 ], [ 78.241043735579908, 12.828235378160169 ], [ 78.24807172962656, 12.801777044774777 ], [ 78.24869184815023, 12.791622625983392 ], [ 78.245694614614749, 12.781700751188676 ], [ 78.237633090894391, 12.769556790113766 ], [ 78.229571568073339, 12.759893296838182 ], [ 78.163839145759923, 12.775292873867041 ], [ 78.133246698176521, 12.790511582843234 ], [ 78.089011671851139, 12.826039130301577 ], [ 78.05624881393156, 12.84593455673439 ], [ 78.040642531327677, 12.850327053350835 ], [ 78.029583774971215, 12.848699246273153 ], [ 78.013564081217325, 12.82758942301342 ], [ 78.010050082844984, 12.821801663316077 ], [ 78.00911990775748, 12.817512519487194 ], [ 78.007052850208808, 12.811259669997749 ], [ 78.002091912811451, 12.807151394221474 ], [ 77.987415806194434, 12.804360867160252 ], [ 77.975736932213621, 12.808805039720763 ], [ 77.964884882331418, 12.8164531522911 ], [ 77.947935011691399, 12.835702623577218 ], [ 77.941423780682882, 12.845288600688376 ], [ 77.934602492211226, 12.853453477196179 ], [ 77.92643761570335, 12.860920721713908 ], [ 77.91475874172248, 12.868362127809913 ], [ 77.904836866927823, 12.871462714132914 ], [ 77.895018344920615, 12.87278046284808 ], [ 77.845822382097168, 12.871540229398075 ], [ 77.801277297409271, 12.85655406351918 ], [ 77.78980512900344, 12.810742906060224 ], [ 77.778229607810076, 12.788056952566304 ], [ 77.760246210194381, 12.762761339164452 ], [ 77.756215447884571, 12.752942817157246 ], [ 77.75538862468521, 12.744777939750119 ], [ 77.757455682233896, 12.739403591202741 ], [ 77.761589797331212, 12.733331611564605 ], [ 77.764690382754878, 12.727853909330461 ], [ 77.765310500379229, 12.718733018414069 ], [ 77.760039503720051, 12.713797919438431 ], [ 77.753528272711577, 12.71030976038713 ], [ 77.744329868328734, 12.706899114802294 ], [ 77.701128370777653, 12.682120266237288 ], [ 77.689759556058604, 12.677960312718252 ], [ 77.678597446914623, 12.676177476009682 ], [ 77.669088983269916, 12.677107651996547 ], [ 77.6507955263924, 12.681603502299762 ], [ 77.640150181185888, 12.682068590293168 ], [ 77.63281212787733, 12.681215929571463 ], [ 77.60935102712817, 12.672792669745885 ], [ 77.585786573591434, 12.624087633337579 ], [ 77.571833937386245, 12.581764634929923 ], [ 77.568733351962564, 12.559569606951808 ], [ 77.571213819761937, 12.545281073063048 ], [ 77.576278110846076, 12.539157416581473 ], [ 77.581135694556608, 12.527220160182249 ], [ 77.581135694556608, 12.519158637361212 ], [ 77.574727818134235, 12.500064194806722 ], [ 77.574727818134235, 12.49944407808175 ], [ 77.576794874783602, 12.49502574304358 ], [ 77.580205520368438, 12.492493598400811 ], [ 77.586096632853284, 12.491615099257384 ], [ 77.593848098211126, 12.492803655864007 ], [ 77.602426384969633, 12.495258287040313 ], [ 77.61017785032746, 12.495439155092921 ], [ 77.615448846087347, 12.49197683446334 ], [ 77.619789666759672, 12.480659694789093 ], [ 77.618859490772792, 12.466629544218048 ], [ 77.604596796205144, 12.405780544036871 ], [ 77.598188917984132, 12.389890042391524 ], [ 77.590644159100606, 12.378237005933043 ], [ 77.572143995748746, 12.357954005872667 ], [ 77.560775181029712, 12.339660548995138 ], [ 77.529045851884504, 12.30821543979067 ], [ 77.490081822218286, 12.288940130982265 ], [ 77.479953240949257, 12.282532252761253 ], [ 77.471891717228885, 12.274238185943485 ], [ 77.466310663106569, 12.264729723198169 ], [ 77.464760370394728, 12.261525784087663 ], [ 77.464760370394728, 12.249304306848272 ], [ 77.476542596263741, 12.241707872020637 ], [ 77.480470004886783, 12.231501777285185 ], [ 77.478402948237417, 12.214551907544488 ], [ 77.483363884735454, 12.207549750120844 ], [ 77.492148878867596, 12.205456855049814 ], [ 77.667848748920605, 12.203880723916253 ], [ 77.698647902078946, 12.198015448054489 ], [ 77.724486117840044, 12.184812119783484 ], [ 77.728723585724865, 12.179696152755238 ], [ 77.736785109445222, 12.174089260211188 ], [ 77.765000441117408, 12.12907908842919 ], [ 77.768721145064745, 12.120035711878584 ], [ 77.768721145064745, 12.114919744850338 ], [ 77.768101027440395, 12.110036321818766 ], [ 77.765827264316769, 12.10068288780502 ], [ 77.764070266029918, 12.096290391188573 ], [ 77.761899854794407, 12.092182115412298 ], [ 77.759419386995063, 12.088358059576759 ], [ 77.755698683947045, 12.084559841263623 ], [ 77.75249474483654, 12.081872666989964 ], [ 77.745466749890554, 12.074922187309081 ], [ 77.736164991820871, 12.065697944504505 ], [ 77.725933058663699, 12.058049831934168 ], [ 77.717148065430806, 12.039032905544159 ], [ 77.682628208325099, 11.996761583080568 ], [ 77.670845981556766, 11.971310940047825 ], [ 77.659683872412742, 11.962939357964954 ], [ 77.651105584754859, 11.957900906201868 ], [ 77.642320590622688, 11.954128526310395 ], [ 77.622890253082673, 11.949736029694005 ], [ 77.517677036266122, 11.94035675725854 ], [ 77.505894810397123, 11.935189114286173 ], [ 77.489771762956465, 11.926119900213221 ], [ 77.484914178346614, 11.915577907794212 ], [ 77.468997837380229, 11.894700629430472 ], [ 77.461969842434243, 11.882401637825295 ], [ 77.442746209569847, 11.828580634388741 ], [ 77.433857862650186, 11.811527410961217 ], [ 77.418975051357492, 11.795740261204056 ], [ 77.40812299967665, 11.79160614700606 ], [ 77.378977492017583, 11.79083099975082 ], [ 77.353862745769021, 11.783699652916649 ], [ 77.338566522426987, 11.783467108919918 ], [ 77.324820590897488, 11.787704575905421 ], [ 77.306630486807464, 11.802432359365863 ], [ 77.298258904724648, 11.806437283254009 ], [ 77.280998976621419, 11.811708279013825 ], [ 77.272007276914266, 11.816281642783562 ], [ 77.259191522270868, 11.816901760407912 ], [ 77.247719353865065, 11.812405911003962 ], [ 77.234800246434176, 11.8058688424731 ], [ 77.220950962117158, 11.802277329734974 ], [ 77.172891879956225, 11.804189358552035 ], [ 77.14508996033338, 11.800391140238897 ], [ 77.130827263967007, 11.796670437190924 ], [ 77.121938917946679, 11.79253632209355 ], [ 77.118734978836173, 11.78641266471271 ], [ 77.114807570213131, 11.76579376876742 ], [ 77.10736616411711, 11.752745470127307 ], [ 77.096204054973086, 11.750420030160225 ], [ 77.082561477130398, 11.756776231537852 ], [ 77.02654422403667, 11.814033718081586 ], [ 77.012694939719637, 11.821966051492039 ], [ 76.997398716377617, 11.825919298536801 ], [ 76.987476840683584, 11.82315460899798 ], [ 76.96804650314354, 11.814576321340152 ], [ 76.953163690052222, 11.81276764620986 ], [ 76.931459589388496, 11.812018337376342 ], [ 76.918230421796508, 11.807341619919779 ], [ 76.907688430276764, 11.800184433764567 ], [ 76.8683109876619, 11.745614122393816 ], [ 76.844229771087029, 11.704712226388093 ], [ 76.832447544318626, 11.641873683923334 ], [ 76.826969842084495, 11.632830308272101 ], [ 76.820768671237133, 11.625595607751105 ], [ 76.766921827580219, 11.640452582420719 ], [ 76.750798781038881, 11.642338771916794 ], [ 76.605381301106135, 11.631176662772758 ], [ 76.583367141180574, 11.631409206769488 ], [ 76.5669340353774, 11.633760484258913 ], [ 76.556805454108357, 11.638773098499653 ], [ 76.550190871211697, 11.645439358239795 ], [ 76.547503696937994, 11.654146837106849 ], [ 76.547193637676216, 11.663526109542316 ], [ 76.549260695224845, 11.684480903171103 ], [ 76.544093052252535, 11.697115789761877 ], [ 76.532207472696641, 11.709078884582821 ], [ 76.503578728975114, 11.719155789008424 ], [ 76.48373497938573, 11.719543361736724 ], [ 76.46533816882139, 11.714969997967042 ], [ 76.451282179828681, 11.70662425430589 ], [ 76.439396600272843, 11.697632555498044 ], [ 76.430818311715626, 11.68944184056846 ], [ 76.425133904805804, 11.682698066462589 ], [ 76.421413201757829, 11.677401231381735 ], [ 76.415935500422947, 11.666833401440325 ], [ 76.400949335443414, 11.686341254245461 ], [ 76.397331984283582, 11.705203151903898 ], [ 76.396401809196092, 11.725744534382724 ], [ 76.394231397960581, 11.735588893912334 ], [ 76.389270460563282, 11.744012152838589 ], [ 76.382139112829734, 11.7491797958109 ], [ 76.37108035737252, 11.750420030160225 ], [ 76.363845655952204, 11.748766383761561 ], [ 76.350203078109516, 11.743314520848456 ], [ 76.342865024801014, 11.742384344861589 ], [ 76.335216913129983, 11.743211168060949 ], [ 76.316613396990618, 11.746854355843821 ], [ 76.309171990894626, 11.749722398170148 ], [ 76.301110467174269, 11.755380968456903 ], [ 76.288088006056611, 11.768506781462801 ], [ 76.265763787768535, 11.799538479517192 ], [ 76.258735792822549, 11.806075548048112 ], [ 76.250674270001511, 11.810132147880321 ], [ 76.240649042419349, 11.810442206242781 ], [ 76.234241164198338, 11.809072781583605 ], [ 76.224319289403624, 11.804318548861941 ], [ 76.218841587169479, 11.804370224806005 ], [ 76.212227004272776, 11.807264106453314 ], [ 76.20478559817677, 11.815739041323694 ], [ 76.200134719141914, 11.822586168217068 ], [ 76.190316197134706, 11.841189683457115 ], [ 76.184941847688066, 11.848553575187337 ], [ 76.176570265605207, 11.857028510057656 ], [ 76.167061801960557, 11.862609565079364 ], [ 76.154969516829667, 11.866562812124071 ], [ 76.138949823075833, 11.867182928849045 ], [ 76.129854770581161, 11.864779975415498 ], [ 76.12241336538446, 11.861446845095825 ], [ 76.115488723225937, 11.857493598051118 ], [ 76.107013788355616, 11.857493598051118 ], [ 76.098745559060248, 11.860439154743174 ], [ 76.086343214667565, 11.871136175893808 ], [ 76.081899042107054, 11.878990994039153 ], [ 76.080142042920883, 11.889765530454834 ], [ 76.08417280523075, 11.926688340994131 ], [ 76.08355268670708, 11.950046088056522 ], [ 76.080348749395199, 11.958986110920248 ], [ 76.072390577563041, 11.963249417226788 ], [ 76.055750767084177, 11.963740342742593 ], [ 76.020714146040959, 11.951673896033467 ], [ 75.98299034982476, 11.930874132035566 ], [ 75.960562778749178, 11.92862620733359 ], [ 75.904958936805414, 11.942553005117073 ], [ 75.882634719416714, 11.942914740322973 ], [ 75.86351443933988, 11.946273709064426 ], [ 75.846047804762335, 11.951105455252556 ], [ 75.830648227733462, 11.957745877470243 ], [ 75.815248650704618, 11.967202664271495 ], [ 75.797471957764614, 11.98332570991357 ], [ 75.782692499259355, 12.000223903710147 ], [ 75.776181268250909, 12.00978404419828 ], [ 75.768843214942351, 12.027354031563274 ], [ 75.76501915910687, 12.059057522286817 ], [ 75.761091749584509, 12.0687468530848 ], [ 75.756027460299023, 12.071950792195306 ], [ 75.74455529189315, 12.075309760037381 ], [ 75.736287061698519, 12.076059067971581 ], [ 75.730706007576131, 12.075981554505116 ], [ 75.7220243671308, 12.074353746528171 ], [ 75.716443312109092, 12.07412120253144 ], [ 75.709622022738117, 12.074818834521576 ], [ 75.70166385270457, 12.077454331951852 ], [ 75.693912388246062, 12.081976019777468 ], [ 75.671484816271217, 12.098434963103044 ], [ 75.66290652861332, 12.102284858259564 ], [ 75.654018181693672, 12.103008327772098 ], [ 75.639755487125996, 12.099235947880683 ], [ 75.634484491366138, 12.099184271936561 ], [ 75.629213494706931, 12.102052314262888 ], [ 75.624252557309646, 12.10786591238195 ], [ 75.618568150399753, 12.119028022425251 ], [ 75.612883741691277, 12.127709661971322 ], [ 75.606062453219565, 12.135047716179141 ], [ 75.593350051363728, 12.14290253342517 ], [ 75.582394646895395, 12.147269192519216 ], [ 75.552732375298817, 12.154891465768513 ], [ 75.536609327858159, 12.16894745476122 ], [ 75.441628045997476, 12.278036404256623 ], [ 75.426228468968631, 12.291782334886816 ], [ 75.419407179597599, 12.293203437288806 ], [ 75.413516066213433, 12.293125922023647 ], [ 75.403594191418762, 12.292040717305266 ], [ 75.398219841972079, 12.292195746036835 ], [ 75.393568963836543, 12.292970893292075 ], [ 75.389331495951723, 12.294727891578926 ], [ 75.38571414569121, 12.301600856894023 ], [ 75.381580030593895, 12.313848170756442 ], [ 75.375172154171523, 12.343407091364153 ], [ 75.368660923163006, 12.361106269039052 ], [ 75.357808872381483, 12.377901109148864 ], [ 75.345406528888176, 12.390355129485609 ], [ 75.34158247305264, 12.396943874859911 ], [ 75.33972212107895, 12.404617824952648 ], [ 75.339205357141495, 12.420534165918976 ], [ 75.34065229706583, 12.42867320400512 ], [ 75.343546176914501, 12.435132758170251 ], [ 75.358118930743998, 12.445984808951774 ], [ 75.362459751416324, 12.450687363930681 ], [ 75.366077101676851, 12.456733506945792 ], [ 75.367937452751207, 12.462521267542453 ], [ 75.368557570375501, 12.46709463131219 ], [ 75.368247512013042, 12.470350247266079 ], [ 75.366800572088707, 12.473786729473996 ], [ 75.36432010339, 12.476370550960151 ], [ 75.355328403682833, 12.478179226090386 ], [ 75.348507115211177, 12.478075873302881 ], [ 75.320085077064604, 12.470350247266079 ], [ 75.314090610892933, 12.469368394435831 ], [ 75.312023553344247, 12.469497584745737 ], [ 75.309543084645597, 12.470892848725951 ], [ 75.307062615946947, 12.473166611849646 ], [ 75.304168736098219, 12.476861477375278 ], [ 75.293109978842409, 12.494328111053445 ], [ 75.286185336683886, 12.499521593346852 ], [ 75.284014927247071, 12.500090033228442 ], [ 75.282567987322736, 12.50060679806529 ], [ 75.279674106574689, 12.502027900467223 ], [ 75.275746697951703, 12.506265367452723 ], [ 75.270889113341852, 12.513164171189542 ], [ 75.264584588807651, 12.524352117855923 ], [ 75.251355422114997, 12.536909490980232 ], [ 75.247634719066966, 12.542955633995287 ], [ 75.247014602341991, 12.55112051050315 ], [ 75.250631951703141, 12.562360134012975 ], [ 75.264584588807651, 12.578689887028643 ], [ 75.270889113341852, 12.600729885375866 ], [ 75.225310499879626, 12.61258962740936 ], [ 75.212701450811252, 12.611736964889017 ], [ 75.206706983740261, 12.604915676417304 ], [ 75.202469516754761, 12.601298326156833 ], [ 75.196268345008079, 12.598404446308106 ], [ 75.189757114898882, 12.596854152696947 ], [ 75.182832472740401, 12.597267563846968 ], [ 75.176424595418709, 12.599748033444993 ], [ 75.169499953260171, 12.606517645972584 ], [ 75.155030552218179, 12.629074408257337 ], [ 75.148932733259002, 12.63357025856055 ], [ 75.13983768076433, 12.634242052128965 ], [ 75.131569452368282, 12.631554876955985 ], [ 75.124438103735471, 12.627911689173114 ], [ 75.117513461576934, 12.627136541917874 ], [ 75.110485466630948, 12.630004584244144 ], [ 75.10242394380991, 12.639358018257893 ], [ 75.098703240761878, 12.646696072465769 ], [ 75.096946241575765, 12.653491523415083 ], [ 75.097152948050038, 12.660390326252521 ], [ 75.098496535186925, 12.667340806832781 ], [ 75.10128706224809, 12.674782212928788 ], [ 75.102113885447395, 12.678864651182662 ], [ 75.100253534373039, 12.682120266237288 ], [ 75.094775832138893, 12.686254381334603 ], [ 75.072141554589038, 12.698992620712884 ], [ 75.061186151019996, 12.702635810294392 ], [ 75.048060337114791, 12.702454942241783 ], [ 75.040308871757006, 12.698088284047056 ], [ 75.028733352362266, 12.688760688454973 ], [ 75.024805942839961, 12.686486925331334 ], [ 75.0207751814294, 12.685840969285263 ], [ 75.014884068045248, 12.687520453206329 ], [ 75.007959425886767, 12.690724392316834 ], [ 75.002998487590077, 12.696434638547712 ], [ 75.00144819487825, 12.700904649529942 ], [ 75.001551547665755, 12.70449616136875 ], [ 75.003928663576886, 12.711627509102241 ], [ 75.003928663576886, 12.714598904216015 ], [ 75.003101841276916, 12.716795152074607 ], [ 74.99896772707892, 12.718862210522556 ], [ 74.993800083207233, 12.720102443972618 ], [ 74.974886508705353, 12.72183360383775 ], [ 74.969305453683702, 12.723203030295618 ], [ 74.964654576447501, 12.725786850882455 ], [ 74.958453403801499, 12.732117213838304 ], [ 74.955146111903488, 12.738060004065911 ], [ 74.952872348779849, 12.744829617492824 ], [ 74.950495232868647, 12.761598619180912 ], [ 74.949461704094333, 12.766223659794033 ], [ 74.947394647444966, 12.770977890717061 ], [ 74.945224237108832, 12.773871772364371 ], [ 74.940676710861496, 12.776119696167026 ], [ 74.933545363127948, 12.778083400928207 ], [ 74.92010949086027, 12.779943752002563 ], [ 74.897888625359698, 12.778755195395942 ], [ 74.85425866020897, 12.765285549088784 ], [ 74.854746940818629, 12.787014065446723 ], [ 74.852305535072318, 12.797308661565465 ], [ 74.844004753916209, 12.808010158641874 ], [ 74.83497155049659, 12.815822658289049 ], [ 74.827647332358467, 12.824652411679436 ], [ 74.824961784958347, 12.838202216359205 ], [ 74.851410351706292, 12.825506903420827 ], [ 74.859141471701534, 12.82461172095412 ], [ 74.86695397224797, 12.830023505580296 ], [ 74.881114128813962, 12.848049221694223 ], [ 74.889821810927785, 12.85187409141616 ], [ 74.901133659890405, 12.853420315595084 ], [ 74.917491082347539, 12.85814036688441 ], [ 74.932871940887296, 12.866441148040504 ], [ 74.940928582188278, 12.878607489643908 ], [ 74.894786003870905, 12.871161200229208 ], [ 74.850596549790893, 12.857163803866452 ], [ 74.817556186268959, 12.861761786577173 ], [ 74.770274284730405, 13.052435614212182 ], [ 74.783376497727133, 13.084662177617357 ], [ 74.774099155351664, 13.093410549557175 ], [ 74.769216342060517, 13.0995547555475 ], [ 74.762950065692948, 13.11880117453455 ], [ 74.761892123023003, 13.143133855942661 ], [ 74.759776237683155, 13.155218816994815 ], [ 74.752940300154691, 13.160386459967125 ], [ 74.748789910026275, 13.170843817188366 ], [ 74.737803582369381, 13.221380927287951 ], [ 74.733409049687836, 13.262762762691349 ], [ 74.715098503892804, 13.331040757424997 ], [ 74.707204622795047, 13.348374742000713 ], [ 74.696136915486235, 13.365952867330972 ], [ 74.689463738160939, 13.381577867524523 ], [ 74.694590691307312, 13.393133856342384 ], [ 74.687510613024344, 13.410345770540854 ], [ 74.683360221996608, 13.44281647290188 ], [ 74.680918816250298, 13.46824778950389 ], [ 74.690765820686039, 13.439113674456506 ], [ 74.693695508840605, 13.415269273658051 ], [ 74.708262566364326, 13.413031317041655 ], [ 74.701914910344769, 13.420355536079112 ], [ 74.702403190954428, 13.442613022872703 ], [ 74.70142662883579, 13.461371161250096 ], [ 74.677093946528359, 13.526760158554449 ], [ 74.677989128995065, 13.549139716624605 ], [ 74.671397332221062, 13.603949286330472 ], [ 74.67351321666159, 13.619086005015102 ], [ 74.669932487694084, 13.622015692270391 ], [ 74.667979363456809, 13.625148830454119 ], [ 74.66716556154141, 13.628607489044381 ], [ 74.66667728003236, 13.632757880072116 ], [ 74.672862174949373, 13.628892320524127 ], [ 74.677093946528359, 13.630316473426486 ], [ 74.679698113377157, 13.63646067941681 ], [ 74.680918816250298, 13.646958726464048 ], [ 74.687185091718533, 13.646958726464048 ], [ 74.696787957198396, 13.640448309341988 ], [ 74.709971549847111, 13.640570380618552 ], [ 74.723806186006627, 13.645575262488361 ], [ 74.735606316478282, 13.653794663992525 ], [ 74.720550977445598, 13.652289130538914 ], [ 74.712901238001649, 13.656195379912843 ], [ 74.70142662883579, 13.673732815417107 ], [ 74.688324414939743, 13.685939845947129 ], [ 74.688975456651946, 13.69086334816495 ], [ 74.70142662883579, 13.694769598438196 ], [ 74.687754753778833, 13.711818752433484 ], [ 74.676036003858457, 13.701076565531078 ], [ 74.660492384216113, 13.660060940360093 ], [ 74.646983269362337, 13.692084051937453 ], [ 74.623057488012634, 13.77415599210536 ], [ 74.61459394575391, 13.835516669658542 ], [ 74.595957878653138, 13.871486721335085 ], [ 74.58399498797823, 13.903876044044178 ], [ 74.550791863353737, 13.945502020202067 ], [ 74.536387566033326, 13.969875393234812 ], [ 74.504730664688381, 14.01023997669358 ], [ 74.495371940862341, 14.030585028176514 ], [ 74.494802279701375, 14.040716864091959 ], [ 74.496267123329048, 14.061509507257934 ], [ 74.495371940862341, 14.071519273695511 ], [ 74.491384310937164, 14.080633855867742 ], [ 74.479177280407129, 14.095648505074447 ], [ 74.474864129176169, 14.105698960438641 ], [ 74.473155143894743, 14.161688544091019 ], [ 74.467458530486724, 14.181382553861736 ], [ 74.438731316397067, 14.220119533489649 ], [ 74.429047071265288, 14.240423895146645 ], [ 74.433360222496191, 14.26337311437771 ], [ 74.447032096653885, 14.253973699826359 ], [ 74.47103925945423, 14.248683986476802 ], [ 74.494965039904599, 14.24746328360362 ], [ 74.508962436267367, 14.250311591206977 ], [ 74.500010613399056, 14.257961330650854 ], [ 74.436371290302745, 14.279689846109473 ], [ 74.427744987840853, 14.283840236237889 ], [ 74.415375196208274, 14.301092841161672 ], [ 74.412608269156223, 14.344794011934081 ], [ 74.403575065736661, 14.362982489150507 ], [ 74.396983268962671, 14.372748113934275 ], [ 74.394379102113803, 14.384914455537679 ], [ 74.394216341910621, 14.410793361124714 ], [ 74.391856315816284, 14.419012762628878 ], [ 74.386729362669925, 14.424221096326503 ], [ 74.381602410422872, 14.431219794058221 ], [ 74.374278191385358, 14.467271226286069 ], [ 74.353851759351173, 14.505072333621284 ], [ 74.351898634214578, 14.530218816944847 ], [ 74.367035351999832, 14.512355861034163 ], [ 74.377452019395136, 14.484605209962465 ], [ 74.388845248009758, 14.462713934300606 ], [ 74.407237175255361, 14.461981512037138 ], [ 74.397634310674832, 14.475409247238924 ], [ 74.40113365999035, 14.4797223984699 ], [ 74.427744987840853, 14.476263738980377 ], [ 74.385427280144796, 14.524115302579158 ], [ 74.372406445900694, 14.530218816944847 ], [ 74.374685092343086, 14.533758856086306 ], [ 74.377126498089382, 14.541001695471833 ], [ 74.379242384328549, 14.544582424439337 ], [ 74.368337436323586, 14.549709377585712 ], [ 74.364105664744599, 14.549139716424744 ], [ 74.358734570843737, 14.544582424439337 ], [ 74.355479363182027, 14.557074286449163 ], [ 74.355804884487767, 14.56240469052403 ], [ 74.358734570843737, 14.571234442115777 ], [ 74.342946811346195, 14.563666083223149 ], [ 74.340993686209615, 14.551174221213328 ], [ 74.342946811346195, 14.536851304444154 ], [ 74.339040561072963, 14.523993231302537 ], [ 74.324880405406347, 14.517238674325364 ], [ 74.309825066373648, 14.519435940216452 ], [ 74.300547722199596, 14.527411200066803 ], [ 74.303558790006065, 14.537665106359551 ], [ 74.295909049662882, 14.565008856473524 ], [ 74.295176629198053, 14.587307033093108 ], [ 74.30738365972806, 14.601874091516091 ], [ 74.339040561072963, 14.605943101093201 ], [ 74.339040561072963, 14.612779039521055 ], [ 74.32390384238839, 14.618597723306262 ], [ 74.312266472119958, 14.615464585122478 ], [ 74.301117384259825, 14.609320380031473 ], [ 74.287119987897057, 14.605943101093201 ], [ 74.275889519485673, 14.610174872672243 ], [ 74.268077018939252, 14.619940497455953 ], [ 74.266856316066054, 14.63129303624458 ], [ 74.276215039892108, 14.640082098010394 ], [ 74.269216342160391, 14.658921616939036 ], [ 74.263194207446688, 14.70160553666619 ], [ 74.252940300254622, 14.718939520342584 ], [ 74.234060092399304, 14.734076239027214 ], [ 74.220469596994278, 14.738104559677648 ], [ 74.208750847073858, 14.731838283310138 ], [ 74.194346549753419, 14.715806382158801 ], [ 74.180674674696419, 14.742173570154133 ], [ 74.173838738067246, 14.749945379975312 ], [ 74.169444207184355, 14.750881252267956 ], [ 74.157725457263993, 14.7489688169573 ], [ 74.153330925481768, 14.749945379975312 ], [ 74.14649498795329, 14.761867579924852 ], [ 74.145843946241072, 14.763617255032271 ], [ 74.111338738192131, 14.780340886822442 ], [ 74.096446160262047, 14.793361721066557 ], [ 74.091319207115689, 14.811428127006421 ], [ 74.109141472301062, 14.802639065240664 ], [ 74.114024284692931, 14.808417059199877 ], [ 74.11426842544742, 14.820949611035697 ], [ 74.118662957229645, 14.831854559040659 ], [ 74.128754102419833, 14.837469794595334 ], [ 74.14047285234021, 14.83877187712039 ], [ 74.151540561447732, 14.83510976850101 ], [ 74.159515821298086, 14.82566966412366 ], [ 74.169688347039525, 14.844468492327051 ], [ 74.178965691213634, 14.856268621899343 ], [ 74.190684441133996, 14.863104559427878 ], [ 74.20801842481039, 14.866644598569335 ], [ 74.218109570899941, 14.865383204970891 ], [ 74.226898634464348, 14.862738348296144 ], [ 74.233083530280666, 14.864569403055494 ], [ 74.23519941472118, 14.876532294629667 ], [ 74.230723504186344, 14.880113023597115 ], [ 74.220876497951934, 14.882066147834447 ], [ 74.211192253719489, 14.887355861184004 ], [ 74.20801842481039, 14.90082428621184 ], [ 74.197520378662475, 14.89085521049952 ], [ 74.166188997724007, 14.876532294629667 ], [ 74.159515821298086, 14.869777735853798 ], [ 74.154063346845916, 14.862127997309184 ], [ 74.140879754197258, 14.852687892931893 ], [ 74.125010613249145, 14.845851955403417 ], [ 74.111827018801804, 14.846177476709155 ], [ 74.103037957036037, 14.856919664510878 ], [ 74.091156446013116, 14.887600001938548 ], [ 74.125325962323231, 14.904801134164982 ], [ 74.147650180611308, 14.923430487826748 ], [ 74.154574822769789, 14.927461249237234 ], [ 74.160672641728965, 14.929192410001686 ], [ 74.183203565592052, 14.926763617247101 ], [ 74.197569614745859, 14.928701484485879 ], [ 74.209868604552398, 14.933481553830626 ], [ 74.226611769617406, 14.943248398994397 ], [ 74.241184523446961, 14.95603831611538 ], [ 74.243664992145597, 14.961231798408727 ], [ 74.245215284857451, 14.965701809390961 ], [ 74.247592400768639, 14.97766490331264 ], [ 74.25503380686466, 15.000247504019054 ], [ 74.260924921148145, 15.013063259561758 ], [ 74.264335564934342, 15.022235826422214 ], [ 74.266609328057982, 15.032312729948499 ], [ 74.267539504044848, 15.041381944021506 ], [ 74.267126091995493, 15.049856878891827 ], [ 74.260304802624475, 15.083084824804811 ], [ 74.259684685899501, 15.090267849381741 ], [ 74.259684685899501, 15.097683417056027 ], [ 74.262475213859986, 15.112772934823051 ], [ 74.264748976983611, 15.120756944177625 ], [ 74.288416783307852, 15.167549954466834 ], [ 74.291827427094049, 15.178712062711496 ], [ 74.292757603080858, 15.188272203199626 ], [ 74.291000603894673, 15.194938462939714 ], [ 74.288106724046017, 15.200597032327151 ], [ 74.283559197798681, 15.205170396096888 ], [ 74.278598260401324, 15.209046128775807 ], [ 74.249142694379813, 15.225453396157317 ], [ 74.244181756083137, 15.231318671119761 ], [ 74.241184523446961, 15.237829902128279 ], [ 74.240874465084445, 15.247312527351252 ], [ 74.243354933783095, 15.252531847167001 ], [ 74.247075636831127, 15.256071682162368 ], [ 74.251416456604133, 15.257518622086703 ], [ 74.282215610661851, 15.263358059526807 ], [ 74.289657016757857, 15.266639513003096 ], [ 74.298338658102566, 15.272918199115562 ], [ 74.30205936115054, 15.280282090845784 ], [ 74.304229770587398, 15.289170436866124 ], [ 74.30019900917685, 15.329012966575132 ], [ 74.298442009990694, 15.336609402302084 ], [ 74.295858189403845, 15.342164618002693 ], [ 74.291517367832213, 15.348779201798717 ], [ 74.263508741734981, 15.377407945520243 ], [ 74.25906456917447, 15.385960394756406 ], [ 74.25720421720078, 15.394176947208331 ], [ 74.25720421720078, 15.402677721399694 ], [ 74.258857862700125, 15.415286770468068 ], [ 74.25906456917447, 15.420092678234479 ], [ 74.25813439318766, 15.428154201954834 ], [ 74.254827102188969, 15.436112371988367 ], [ 74.251003046353432, 15.44267527894095 ], [ 74.23922081868578, 15.454224961712606 ], [ 74.236533645311439, 15.472466741746695 ], [ 74.245421991331781, 15.487659614099865 ], [ 74.25451704292712, 15.50032033911236 ], [ 74.257824334825131, 15.51858795846749 ], [ 74.254103630877793, 15.532824815512807 ], [ 74.246042108056812, 15.587162583786206 ], [ 74.237980585235775, 15.616023871504463 ], [ 74.234053175713413, 15.622793484032055 ], [ 74.226818475192403, 15.629847317399761 ], [ 74.19777632032087, 15.645324407895083 ], [ 74.178966098606494, 15.652042345377932 ], [ 74.172351515709849, 15.653385932514762 ], [ 74.167183871838162, 15.652352402841071 ], [ 74.153851353257309, 15.643231512824055 ], [ 74.147960239873129, 15.640130927400374 ], [ 74.140828892139595, 15.637572944335885 ], [ 74.127599725446927, 15.635169989103698 ], [ 74.11550744031608, 15.636100165090506 ], [ 74.100624628124066, 15.640285956131944 ], [ 74.099487745662856, 15.655323797954903 ], [ 74.094216749903055, 15.664832262498916 ], [ 74.092873162766224, 15.66930227348109 ], [ 74.094836866628029, 15.672816270054792 ], [ 74.107135858233207, 15.677337957880408 ], [ 74.112406853993079, 15.682247219333698 ], [ 74.11705773302792, 15.690205390266552 ], [ 74.125015903960772, 15.71366649011639 ], [ 74.138141716966601, 15.729505316716992 ], [ 74.186097447239362, 15.765730496165471 ], [ 74.194469029322178, 15.769580390422671 ], [ 74.202530552143216, 15.771053167869407 ], [ 74.209558547089202, 15.768805243167431 ], [ 74.213796014074759, 15.764490260916769 ], [ 74.215759718835884, 15.757875678020126 ], [ 74.216586542035245, 15.751080227070812 ], [ 74.2153463067866, 15.739013780361629 ], [ 74.214209426124029, 15.734595445323517 ], [ 74.21389936686225, 15.731572374265623 ], [ 74.214519483587239, 15.729195258354476 ], [ 74.21751671712272, 15.727515774433412 ], [ 74.223511184193725, 15.726094672031476 ], [ 74.255963982851469, 15.726017156766371 ], [ 74.2815954930375, 15.729867051922891 ], [ 74.293997837430183, 15.734440415692628 ], [ 74.304229770587398, 15.739659736407699 ], [ 74.321593052377395, 15.752733873469477 ], [ 74.331101516022088, 15.761932277852337 ], [ 74.349498325687122, 15.789372463168601 ], [ 74.369548780851503, 15.825778509770368 ], [ 74.373062779223844, 15.835493678990074 ], [ 74.370789016100147, 15.844795437059755 ], [ 74.365931430590976, 15.851306668068274 ], [ 74.352495559222604, 15.862959702728059 ], [ 74.351565383235808, 15.867378037766226 ], [ 74.354459263084479, 15.872571519160257 ], [ 74.382261183606701, 15.90809906751792 ], [ 74.400864698846746, 15.944892685948668 ], [ 74.413577101601888, 15.962643541366329 ], [ 74.421948683684761, 15.976699530359037 ], [ 74.428769973055736, 15.993752752887241 ], [ 74.433007440041294, 16.018583279194953 ], [ 74.433110792828799, 16.031734931521836 ], [ 74.431250440855123, 16.040752467852084 ], [ 74.428149855431442, 16.04493825889352 ], [ 74.424015741233447, 16.047651272488221 ], [ 74.419054802936756, 16.049511624461896 ], [ 74.39652387907374, 16.055066840162507 ], [ 74.389392531340192, 16.058012396854618 ], [ 74.384638298618512, 16.062120673530213 ], [ 74.383501417956026, 16.069484565260435 ], [ 74.386912061742208, 16.076770941725552 ], [ 74.397970818998076, 16.088346462019611 ], [ 74.406342401080892, 16.093178209107062 ], [ 74.41595421661377, 16.096356308896528 ], [ 74.457502068665505, 16.097415676092563 ], [ 74.464323358036481, 16.101601467134 ], [ 74.469594353796339, 16.109792182063526 ], [ 74.471971469707498, 16.127878933366045 ], [ 74.470421176995657, 16.161236070488254 ], [ 74.476312290379823, 16.202809760062333 ], [ 74.476002232017365, 16.217330837048447 ], [ 74.473935173569345, 16.227924506310895 ], [ 74.470834589044998, 16.235753486034522 ], [ 74.466183710010156, 16.242393907352945 ], [ 74.45894900858984, 16.249370225455547 ], [ 74.451921013643798, 16.253943590124546 ], [ 74.366241489852811, 16.292881781369086 ], [ 74.359936965318624, 16.294328722192741 ], [ 74.3547693223463, 16.293708604568447 ], [ 74.349808384049624, 16.291228135869741 ], [ 74.341126742704986, 16.284794420126385 ], [ 74.337406039656955, 16.28257233294681 ], [ 74.332445103158918, 16.280531113819844 ], [ 74.328000929699073, 16.280556952241508 ], [ 74.323763461814252, 16.282934068152709 ], [ 74.320972934753101, 16.289367783896065 ], [ 74.319525994828766, 16.297429308515742 ], [ 74.321076288439926, 16.316239529330797 ], [ 74.321076288439926, 16.321097113940649 ], [ 74.319525994828766, 16.32517955219458 ], [ 74.312394647095218, 16.335876573345157 ], [ 74.308363884785408, 16.34445486100304 ], [ 74.305780064198558, 16.352723090298351 ], [ 74.304333124274237, 16.36944041604232 ], [ 74.306193475348522, 16.377114366135057 ], [ 74.310741000696552, 16.381920273901525 ], [ 74.322006464426721, 16.385072537067909 ], [ 74.339576450892451, 16.386700344145535 ], [ 74.346707797726637, 16.388121446547526 ], [ 74.351978794385829, 16.390911974508011 ], [ 74.356526319733831, 16.395304470225081 ], [ 74.357869907769995, 16.400730496515163 ], [ 74.356009555796319, 16.404425361141474 ], [ 74.352495559222604, 16.406957505784245 ], [ 74.338542922118094, 16.412719427959242 ], [ 74.332341750371398, 16.416078395801318 ], [ 74.326450636987246, 16.420031642846023 ], [ 74.322626581151752, 16.424630845936743 ], [ 74.32014611155374, 16.430237739380171 ], [ 74.318905878103735, 16.437472439001848 ], [ 74.318595818841899, 16.444758816366285 ], [ 74.317355585391894, 16.451760972890551 ], [ 74.314565057431409, 16.456282659816903 ], [ 74.310844354383377, 16.458866482202378 ], [ 74.306813592073553, 16.459047350254988 ], [ 74.295651482929529, 16.457600409431333 ], [ 74.290277134382208, 16.457677923797117 ], [ 74.284386020998042, 16.458969834989883 ], [ 74.279425082701366, 16.461398626845149 ], [ 74.276427850065176, 16.465610256308249 ], [ 74.275394322190181, 16.468943385728661 ], [ 74.274567498990834, 16.473180854512801 ], [ 74.274257439728999, 16.477831733547642 ], [ 74.271776971030349, 16.48953644505087 ], [ 74.269503207906652, 16.493799750458091 ], [ 74.266919387319817, 16.496047675160067 ], [ 74.263715448209311, 16.496331895100862 ], [ 74.259167921961975, 16.495169176016642 ], [ 74.251416456604133, 16.491784368853526 ], [ 74.2402543483594, 16.484420478022624 ], [ 74.237670525973925, 16.48320608209502 ], [ 74.234983351700265, 16.482327582052275 ], [ 74.232192823739794, 16.482560126048948 ], [ 74.228782179953598, 16.483800361297593 ], [ 74.225991651993112, 16.486151637887755 ], [ 74.225061476905552, 16.488683783429845 ], [ 74.225681593630597, 16.492533677687046 ], [ 74.238393996385796, 16.519844671794143 ], [ 74.243561639358106, 16.539585069495327 ], [ 74.248315871180452, 16.545088609251874 ], [ 74.257927686713316, 16.543925890167653 ], [ 74.264955681659316, 16.538887437505192 ], [ 74.271673618242843, 16.532143663399321 ], [ 74.278288202038866, 16.527777004305275 ], [ 74.285419548873037, 16.526433417168445 ], [ 74.292447543819023, 16.528371283507905 ], [ 74.29802859884073, 16.533797308898667 ], [ 74.3005090684387, 16.538060614305888 ], [ 74.307433709697904, 16.558963731091293 ], [ 74.311051059958388, 16.563046169345224 ], [ 74.314771763006419, 16.564570624534664 ], [ 74.3216964051649, 16.563252874920234 ], [ 74.326864048137267, 16.559583848715643 ], [ 74.331204867910273, 16.554984646524186 ], [ 74.335752395056929, 16.549196885927525 ], [ 74.340506625979955, 16.544313462895953 ], [ 74.346707797726637, 16.541781318253239 ], [ 74.353219028735154, 16.54351247811837 ], [ 74.360350375569325, 16.550204576280176 ], [ 74.377300246209344, 16.569376532301131 ], [ 74.382261183606701, 16.573588161764231 ], [ 74.387738884941527, 16.577102159237253 ], [ 74.40055464138355, 16.583716742133898 ], [ 74.406342401080892, 16.587540797969435 ], [ 74.411406691265739, 16.592656764997681 ], [ 74.415437452676244, 16.598857936744363 ], [ 74.418744744574255, 16.605524197383769 ], [ 74.427426385019587, 16.639243068812558 ], [ 74.430010207405118, 16.644333197419083 ], [ 74.434867792014956, 16.646761990173669 ], [ 74.441275669336605, 16.64642609338949 ], [ 74.454608188816835, 16.642214463926333 ], [ 74.469801060270683, 16.633351956327711 ], [ 74.4785860526042, 16.63058726678889 ], [ 74.511658969785557, 16.62771922536194 ], [ 74.519720492606595, 16.625962226175769 ], [ 74.524578078115752, 16.623843491783699 ], [ 74.526541782876947, 16.615110175394246 ], [ 74.528608840425576, 16.598806260800298 ], [ 74.530882602649953, 16.593974513712791 ], [ 74.540804478343929, 16.581365465543794 ], [ 74.544421827705136, 16.575267646584617 ], [ 74.545972121316296, 16.570539252284672 ], [ 74.545972121316296, 16.56627594687745 ], [ 74.545662062054461, 16.56278778692683 ], [ 74.545765414841952, 16.558317775944598 ], [ 74.546592238041328, 16.555475572039988 ], [ 74.548762648377462, 16.553356838547241 ], [ 74.552379998637988, 16.551832384257121 ], [ 74.55744428882285, 16.551651516204512 ], [ 74.563645460569461, 16.553072617707127 ], [ 74.573257277001673, 16.557232571226162 ], [ 74.581215447934525, 16.562038478992573 ], [ 74.614081658641609, 16.590563869926651 ], [ 74.621729771211946, 16.595679836055577 ], [ 74.629171177307953, 16.598857936744363 ], [ 74.6360958185671, 16.600459906299644 ], [ 74.655319452330829, 16.602501126325873 ], [ 74.665758091063012, 16.606221829373904 ], [ 74.669168735748528, 16.614154160985716 ], [ 74.671959262809693, 16.62541962291726 ], [ 74.644467400649987, 16.651929633146036 ], [ 74.659660272103835, 16.663375963130189 ], [ 74.667515090249182, 16.66797516532159 ], [ 74.672165969284023, 16.672729397143936 ], [ 74.675266554707704, 16.677561143332067 ], [ 74.684878371139845, 16.708437811755569 ], [ 74.688289015825347, 16.712675278741127 ], [ 74.694283481997019, 16.715233262704881 ], [ 74.70482547441604, 16.715233262704881 ], [ 74.713197055599593, 16.716318468322637 ], [ 74.720431756120576, 16.719419053746318 ], [ 74.728493279840947, 16.726679591789715 ], [ 74.735934685936954, 16.738203437038973 ], [ 74.739035272259954, 16.740296332110002 ], [ 74.745029738431626, 16.742673448021204 ], [ 74.757948845862515, 16.745334783873144 ], [ 74.780479770624865, 16.757246201850702 ], [ 74.788024530407696, 16.762646388819743 ], [ 74.796086053228734, 16.76631541592371 ], [ 74.807144809585267, 16.767529811851315 ], [ 74.823991327437781, 16.764687607946708 ], [ 74.839080845204791, 16.759080715402657 ], [ 74.850139601561338, 16.757142849063197 ], [ 74.857581007657345, 16.757917996318437 ], [ 74.863472121041511, 16.763111476813204 ], [ 74.865642531377631, 16.76667715112961 ], [ 74.866676060152017, 16.771457221373677 ], [ 74.866676060152017, 16.776211453195966 ], [ 74.85882124200667, 16.818922024331922 ], [ 74.855203891746143, 16.830497545525297 ], [ 74.851379835910663, 16.839411729068043 ], [ 74.84455854743895, 16.85202077903568 ], [ 74.844041782602147, 16.854733791731061 ], [ 74.84455854743895, 16.858454494779092 ], [ 74.845798780888956, 16.861245021840258 ], [ 74.853963658296138, 16.865611680934304 ], [ 74.89933556528409, 16.878634142052018 ], [ 74.913081495914284, 16.884266873017733 ], [ 74.922279901196461, 16.889331163202595 ], [ 74.928894484093107, 16.897986965226263 ], [ 74.933235304765432, 16.902612005839384 ], [ 74.948014764169983, 16.914704290970231 ], [ 74.951322056067994, 16.920802109929408 ], [ 74.96000369741266, 16.951136175993721 ], [ 74.96382775324814, 16.954210923895001 ], [ 74.970338983357337, 16.955218614247652 ], [ 74.99958784380388, 16.945090032978609 ], [ 75.043409458080006, 16.952815659914727 ], [ 75.048887160314152, 16.953203233542347 ], [ 75.053641392136498, 16.950671088000316 ], [ 75.057878859121985, 16.94307465317268 ], [ 75.061186151019996, 16.93180919034182 ], [ 75.066870558829166, 16.923179225840553 ], [ 75.075552199274554, 16.916151230894567 ], [ 75.093225539427038, 16.908580634488654 ], [ 75.098083124036904, 16.904653224966349 ], [ 75.101493767823087, 16.899666449147272 ], [ 75.108315057194076, 16.891113999911166 ], [ 75.11823693198879, 16.882199815469104 ], [ 75.134049921066932, 16.876618761346716 ], [ 75.144488559799157, 16.871192735056635 ], [ 75.154823845743834, 16.868583075148759 ], [ 75.166502719724676, 16.867937120002065 ], [ 75.197095168207369, 16.877006334075016 ], [ 75.242570427982841, 16.902095241901854 ], [ 75.243810663231486, 16.918114936555067 ], [ 75.241020135271, 16.937286892576022 ], [ 75.241433547320284, 16.94782888409571 ], [ 75.245671014305842, 16.953849188689102 ], [ 75.256006301149824, 16.959171861292358 ], [ 75.307062615946947, 16.959869493282493 ], [ 75.325252720036971, 16.963590196330468 ], [ 75.33889529787966, 16.969300442561341 ], [ 75.360599400342025, 16.981987005995503 ], [ 75.370831332599863, 16.98446747469421 ], [ 75.426125116181126, 16.98485504832183 ], [ 75.434806755727138, 16.982219549992234 ], [ 75.441731397885675, 16.977336126960662 ], [ 75.447105747332316, 16.970333971335716 ], [ 75.453410271866503, 16.964055284323873 ], [ 75.461368442799355, 16.961729845256112 ], [ 75.471703728744032, 16.963047593971279 ], [ 75.509117465698438, 16.976664334291566 ], [ 75.517799107043103, 16.982012844417223 ], [ 75.52637739470093, 16.989195868094836 ], [ 75.532991977597618, 16.996869819086836 ], [ 75.54374067559165, 17.012011012797981 ], [ 75.548701612989007, 17.015266627852551 ], [ 75.553765904073174, 17.014904893545967 ], [ 75.563171014030999, 17.00929800100192 ], [ 75.589525994628872, 16.98640534103367 ], [ 75.602858514109116, 16.978162950160023 ], [ 75.616707798426134, 16.974674791108722 ], [ 75.627353142733327, 16.976974391754762 ], [ 75.634071079316797, 16.983227240344828 ], [ 75.63810184072733, 16.990513616809945 ], [ 75.640685663112805, 16.999117742889492 ], [ 75.641512486312124, 17.010176500145342 ], [ 75.640272251063479, 17.018935654956518 ], [ 75.637481724002299, 17.028909207493935 ], [ 75.622908970172801, 17.049166368233269 ], [ 75.622288853447785, 17.053507188006275 ], [ 75.624562615672104, 17.061206977420053 ], [ 75.62911014191944, 17.066348781970699 ], [ 75.642442661399656, 17.075056260837751 ], [ 75.64626671723515, 17.080895697378534 ], [ 75.646783482071996, 17.09141185137582 ], [ 75.643476190173985, 17.103633327715894 ], [ 75.634381137679313, 17.119394639950652 ], [ 75.625182733296455, 17.129342353167029 ], [ 75.615880975226773, 17.137352200044003 ], [ 75.609473097905081, 17.145956326123549 ], [ 75.605132277232755, 17.158126126519502 ], [ 75.60502892444525, 17.179210110458197 ], [ 75.608232862656436, 17.192775173035781 ], [ 75.613090448165607, 17.203110459879777 ], [ 75.618361443925423, 17.211714585959381 ], [ 75.622082146973455, 17.220938828763902 ], [ 75.62239220623529, 17.230602322039484 ], [ 75.62104861819914, 17.242436224751938 ], [ 75.616397740063618, 17.258662624980158 ], [ 75.611230096191932, 17.269824734124139 ], [ 75.6025484557466, 17.277886256945177 ], [ 75.587355585192071, 17.285095119943826 ], [ 75.582394646895395, 17.290262762916139 ], [ 75.578673943847363, 17.298763536208238 ], [ 75.574953240799374, 17.318271389013372 ], [ 75.569785597827021, 17.334291082767262 ], [ 75.552835728086322, 17.365917060024284 ], [ 75.551492140949492, 17.389300645508339 ], [ 75.560173781394823, 17.398912461940537 ], [ 75.573506300875053, 17.40842092468591 ], [ 75.580947706971045, 17.415190538112821 ], [ 75.588285760279561, 17.425293280960144 ], [ 75.601928339021569, 17.454878038190881 ], [ 75.607612745931405, 17.464489853723759 ], [ 75.613090448165607, 17.471595363934906 ], [ 75.621772088610939, 17.476349595757195 ], [ 75.633140904229293, 17.480302842801958 ], [ 75.643372837386465, 17.476582139753923 ], [ 75.65959923671538, 17.467073676109234 ], [ 75.667040642811386, 17.446170559323829 ], [ 75.677996047279734, 17.425267442538424 ], [ 75.704764439027585, 17.415758978893731 ], [ 75.729982538063652, 17.418239446693114 ], [ 75.740627883270164, 17.415681464527946 ], [ 75.752926873976008, 17.405527044837239 ], [ 75.758611280885859, 17.395553494098461 ], [ 75.762952101558184, 17.385114854466959 ], [ 75.769876742817388, 17.377208360377491 ], [ 75.783932732709374, 17.374805406044626 ], [ 75.799332309738233, 17.385967516087984 ], [ 75.815868768328968, 17.405785427255633 ], [ 75.831785109295296, 17.416973374821392 ], [ 75.845427687137985, 17.402116401051043 ], [ 75.870025669449021, 17.416146552521351 ], [ 75.877570428332533, 17.411960761479914 ], [ 75.88697553918972, 17.394649156533315 ], [ 75.890799595025257, 17.379223741082793 ], [ 75.892659946998933, 17.363901679319039 ], [ 75.897724237183738, 17.35217112939409 ], [ 75.910850051088957, 17.347494411937529 ], [ 75.919738397109299, 17.341629136975083 ], [ 75.926973097630281, 17.331009630190231 ], [ 75.936481561274988, 17.325867824740325 ], [ 75.952191196666362, 17.336616522734342 ], [ 75.963249953022839, 17.342585151383613 ], [ 75.996736281354259, 17.34927724954542 ], [ 76.009862095259436, 17.35369558458353 ], [ 76.021024204403474, 17.346331691953985 ], [ 76.02784549287513, 17.345737412751358 ], [ 76.040557895630329, 17.349354763011885 ], [ 76.061331822105885, 17.357648830728916 ], [ 76.094714796750424, 17.377750962736734 ], [ 76.112698195265452, 17.381962592199834 ], [ 76.127064242620676, 17.381316637053143 ], [ 76.146287876384321, 17.371110541418314 ], [ 76.156519810440813, 17.370903835843304 ], [ 76.166441685235526, 17.37413361337553 ], [ 76.184115025388039, 17.384391384055103 ], [ 76.198274367168253, 17.387827867162336 ], [ 76.210366652299101, 17.388913071880719 ], [ 76.219978468731298, 17.38687185275381 ], [ 76.22845340360162, 17.38247935613736 ], [ 76.245403273342319, 17.367079780007824 ], [ 76.255015089774517, 17.360413520267738 ], [ 76.265453729406019, 17.357674669150637 ], [ 76.291188592379598, 17.358139757144041 ], [ 76.303797642347249, 17.356563626010537 ], [ 76.330876091558338, 17.35020742373359 ], [ 76.34379520078781, 17.351861070132255 ], [ 76.353613722795032, 17.357028713104622 ], [ 76.375007765995562, 17.371937363718356 ], [ 76.380382115442202, 17.378758653089331 ], [ 76.378108352318549, 17.3897657335018 ], [ 76.369840122123875, 17.398344021159623 ], [ 76.34741255104835, 17.413433538926647 ], [ 76.341004672827339, 17.423820501714768 ], [ 76.336457146580003, 17.445860500961313 ], [ 76.332943150006301, 17.45446462704086 ], [ 76.321470981600484, 17.464179796260563 ], [ 76.316303338628117, 17.473869127058546 ], [ 76.318060336914968, 17.487382513692008 ], [ 76.328085565396449, 17.500844225280726 ], [ 76.336353793792497, 17.508983263366868 ], [ 76.340074496840529, 17.515546169420187 ], [ 76.338834263390453, 17.522910061150409 ], [ 76.332323033281327, 17.534123847137831 ], [ 76.332116326806997, 17.538128770126601 ], [ 76.336147089116793, 17.55161631923772 ], [ 76.337283969779307, 17.559962062898872 ], [ 76.336353793792497, 17.568307807459345 ], [ 76.331702914757656, 17.576291815914541 ], [ 76.317440220189937, 17.592724920818394 ], [ 76.311549106805771, 17.601070665378867 ], [ 76.313099400416931, 17.609752305824255 ], [ 76.322194452012283, 17.617710475857731 ], [ 76.390614047700112, 17.636779079990557 ], [ 76.410251091714471, 17.653909816884546 ], [ 76.413455030824977, 17.664787706087733 ], [ 76.416452264360473, 17.671376451462034 ], [ 76.421723260120288, 17.678120225567962 ], [ 76.431335076552486, 17.683778794955398 ], [ 76.453969354102341, 17.692382921034945 ], [ 76.461720818560863, 17.697783108003986 ], [ 76.466268344808185, 17.704759426106587 ], [ 76.466888462432536, 17.71253672898683 ], [ 76.465958286445741, 17.718970444730243 ], [ 76.46575158087073, 17.726308498938064 ], [ 76.469472283918691, 17.732147935478846 ], [ 76.477120395589708, 17.736876328879472 ], [ 76.489626091870591, 17.740338650408372 ], [ 76.496964146078412, 17.74442108776298 ], [ 76.501408318638923, 17.748865261222811 ], [ 76.508539667271791, 17.766538601375313 ], [ 76.512983839832302, 17.772817288387156 ], [ 76.522699009052005, 17.777028916950936 ], [ 76.534687941395347, 17.775866196967396 ], [ 76.553394810322217, 17.766409410166144 ], [ 76.570861444000386, 17.767081203734559 ], [ 76.583263788393054, 17.769975084482549 ], [ 76.592668898350937, 17.770595201207524 ], [ 76.601557245270598, 17.765479234179278 ], [ 76.616543410250117, 17.745041205387277 ], [ 76.625638461845455, 17.736385403363666 ], [ 76.638454217388173, 17.72873729079333 ], [ 76.660675082888744, 17.709772040347385 ], [ 76.675971307130084, 17.706852322076994 ], [ 76.687650181110925, 17.755014757025375 ], [ 76.696228468768751, 17.776667181745033 ], [ 76.705530226838434, 17.79211843471796 ], [ 76.714831984008796, 17.799534003291622 ], [ 76.734158969660683, 17.808189806214553 ], [ 76.743977491667849, 17.813615830705995 ], [ 76.751625604238185, 17.820127060815192 ], [ 76.755656365648733, 17.825837307046069 ], [ 76.756896599998058, 17.835371609112421 ], [ 76.754829543348691, 17.849169215686739 ], [ 76.742427198956008, 17.877074489895787 ], [ 76.740876906244168, 17.898416856252872 ], [ 76.754209425724397, 17.900897324951579 ], [ 76.761960891082182, 17.900664780954848 ], [ 76.771262648252545, 17.899114488243011 ], [ 76.825316196585149, 17.884490058469392 ], [ 76.839062128114648, 17.884231676050995 ], [ 76.851567824395516, 17.890742906160195 ], [ 76.863143344689533, 17.903739528856132 ], [ 76.877612745731582, 17.933556830083599 ], [ 76.882987095178279, 17.954899197340065 ], [ 76.885054151827589, 17.97445872608932 ], [ 76.881746860828898, 18.002777411448388 ], [ 76.881746860828898, 18.018564561205491 ], [ 76.883503859115748, 18.029364936042949 ], [ 76.896216261870933, 18.079594428540016 ], [ 76.897456496220272, 18.093004462386027 ], [ 76.897456496220272, 18.105535997088563 ], [ 76.892908969972936, 18.144293321179813 ], [ 76.900247023281437, 18.157005723935011 ], [ 76.914406365960971, 18.167676907563187 ], [ 76.949546339791681, 18.179975898269046 ], [ 76.970113559792921, 18.182068793340132 ], [ 76.997502069165108, 18.177857163876975 ], [ 77.005770297561114, 18.178348090292101 ], [ 77.015485466780802, 18.182146307705917 ], [ 77.02768110469917, 18.188605861870993 ], [ 77.039566685154327, 18.191887315347284 ], [ 77.050005323886566, 18.192171536187399 ], [ 77.06953901601274, 18.189070949864398 ], [ 77.080287714006758, 18.191344712988094 ], [ 77.087729120102765, 18.197054959218971 ], [ 77.092173292663261, 18.20868215635641 ], [ 77.094033644636951, 18.219094957566195 ], [ 77.097754347684926, 18.230412096341176 ], [ 77.104575637055959, 18.240979926282527 ], [ 77.117908155636812, 18.253847357769299 ], [ 77.176922642266092, 18.297048855320377 ], [ 77.203897739588953, 18.308030097311125 ], [ 77.213509556021137, 18.310071316438094 ], [ 77.221157667692154, 18.31381785700847 ], [ 77.227358840338169, 18.322086086303838 ], [ 77.231079543386144, 18.333790797807065 ], [ 77.231803012898681, 18.355985825785236 ], [ 77.226221957877016, 18.385441391806747 ], [ 77.229012485837515, 18.399471544176375 ], [ 77.23273318888549, 18.410659490842811 ], [ 77.264772577292533, 18.453060004515574 ], [ 77.281619094245727, 18.459674587412273 ], [ 77.290920852315409, 18.460811468974097 ], [ 77.301876254985117, 18.460268865715587 ], [ 77.313348423390991, 18.456238105204356 ], [ 77.324303826960019, 18.449132594993269 ], [ 77.336602817665863, 18.435980943565649 ], [ 77.341563755063177, 18.426291611868344 ], [ 77.343734165399368, 18.416628119492085 ], [ 77.342803990311879, 18.37128205002659 ], [ 77.343837518186874, 18.361230984022651 ], [ 77.346628046147359, 18.351515814803005 ], [ 77.356136508892718, 18.345598862997118 ], [ 77.371949497071611, 18.338725898581341 ], [ 77.406572706964809, 18.327718818168929 ], [ 77.419905227344302, 18.321465969578806 ], [ 77.427346633440308, 18.31614329697555 ], [ 77.429413690089675, 18.295808620971055 ], [ 77.431894158788324, 18.288031318090809 ], [ 77.437578565698217, 18.281907659810653 ], [ 77.4468803237679, 18.279530544798771 ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Maharashtra", "admin": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.763839960146001, 21.608448797973605 ], [ 74.853860304609313, 21.616458644850578 ], [ 74.864712355390836, 21.616122748066342 ], [ 74.894064568624884, 21.612040309812407 ], [ 74.903676385057096, 21.608991401232167 ], [ 74.912978143126779, 21.603720405472295 ], [ 74.928481072943086, 21.591318061079612 ], [ 74.940986770123274, 21.58315318457181 ], [ 74.956076287890355, 21.577933864756055 ], [ 75.004962193250591, 21.575427558534951 ], [ 75.011473423359718, 21.573489692195487 ], [ 75.037104934445139, 21.560983995015359 ], [ 75.047956984327342, 21.554059352856822 ], [ 75.067697381129207, 21.534732367204978 ], [ 75.106247999645447, 21.48313345004868 ], [ 75.116066521652584, 21.459284776571163 ], [ 75.121957635036765, 21.44840688736792 ], [ 75.129915805969617, 21.437684027795619 ], [ 75.140457798388624, 21.429131578559456 ], [ 75.153170201143823, 21.422697861916784 ], [ 75.209497511700746, 21.402879949849758 ], [ 75.311920200556727, 21.381460069126881 ], [ 75.347473586436806, 21.384689845759731 ], [ 75.359875929930155, 21.382286892326185 ], [ 75.368247512013042, 21.379315497212414 ], [ 75.381269973130699, 21.376292426154514 ], [ 75.4799719580394, 21.376292426154514 ], [ 75.521106398041795, 21.371770738328898 ], [ 75.534748976783803, 21.371796575851302 ], [ 75.569785597827021, 21.380374864408449 ], [ 75.592316521690051, 21.380839952401853 ], [ 75.609473097905081, 21.384095567456477 ], [ 75.625182733296455, 21.385464993014971 ], [ 75.66321658697585, 21.380168157934115 ], [ 75.706521437314436, 21.378152778128193 ], [ 75.814008417254612, 21.383372097044624 ], [ 75.877777133907543, 21.399779365325454 ], [ 75.907336052716616, 21.391769517549157 ], [ 75.936791619637503, 21.392544663905081 ], [ 75.952294548554548, 21.390916855928133 ], [ 75.986711052872735, 21.378385322124924 ], [ 76.039627719643519, 21.365698756892069 ], [ 76.048929477713202, 21.365233669797981 ], [ 76.059058058982188, 21.36652558009143 ], [ 76.070840284851201, 21.369522812727606 ], [ 76.082932569982049, 21.368075872803267 ], [ 76.093784620763572, 21.358644924423682 ], [ 76.108047316230611, 21.332419135035021 ], [ 76.130474888205455, 21.280122585888588 ], [ 76.132645297642327, 21.237231146700019 ], [ 76.142877231698819, 21.193125312483172 ], [ 76.138846470288328, 21.18100718803128 ], [ 76.131198357717992, 21.176278795529978 ], [ 76.122103306122639, 21.175400295487229 ], [ 76.115385370438432, 21.175348619543112 ], [ 76.109287550579921, 21.174005032406281 ], [ 76.106186965156255, 21.172222194798447 ], [ 76.104223260395131, 21.169302476528053 ], [ 76.10360314277078, 21.166925361516171 ], [ 76.103396437195769, 21.164108995134026 ], [ 76.10484337801941, 21.159949042514253 ], [ 76.108564081067456, 21.153127753143277 ], [ 76.14391075957387, 21.106877346112636 ], [ 76.166855096385561, 21.094319972988327 ], [ 76.186802198762436, 21.085819199696285 ], [ 76.286641066132276, 21.074812120183193 ], [ 76.317440220189937, 21.081865953550899 ], [ 76.378831821831042, 21.086826890948256 ], [ 76.410354445401296, 21.096722927321192 ], [ 76.436606073211678, 21.107807522099446 ], [ 76.449628534329335, 21.12240611435066 ], [ 76.469472283918691, 21.151758328484046 ], [ 76.481874628311388, 21.166511949466891 ], [ 76.498307733215228, 21.180361232884586 ], [ 76.523629185038814, 21.191575018872012 ], [ 76.541819289128838, 21.195244045076603 ], [ 76.614062940652147, 21.202478746496919 ], [ 76.625948521107304, 21.208834946975223 ], [ 76.636283807051981, 21.219997057018528 ], [ 76.6451721539717, 21.233587958017832 ], [ 76.653957147204537, 21.251312975013768 ], [ 76.653337029580186, 21.293816840574717 ], [ 76.639591098949992, 21.320481879535119 ], [ 76.635560336640168, 21.331463121525811 ], [ 76.633389927203311, 21.341049099536285 ], [ 76.637110630251343, 21.349213976044151 ], [ 76.646412388321011, 21.358722438789524 ], [ 76.670907016945236, 21.37605988215784 ], [ 76.709560988248981, 21.396239529430712 ], [ 76.720413039030504, 21.403448391530045 ], [ 76.729508090625856, 21.413008531118802 ], [ 76.749455193902037, 21.453031927981094 ], [ 76.756379836060518, 21.462023626788941 ], [ 76.76867882676639, 21.471661282542126 ], [ 76.777050408849263, 21.480110378091464 ], [ 76.783251580595945, 21.493132839209117 ], [ 76.78490522699461, 21.498145453449919 ], [ 76.785525343719584, 21.501685289344604 ], [ 76.785525343719584, 21.5047083604025 ], [ 76.785215285357069, 21.50853241623798 ], [ 76.786662225281404, 21.53070160579443 ], [ 76.788005812418234, 21.537445379900358 ], [ 76.7889359884051, 21.549925239558142 ], [ 76.793690220227447, 21.577003688769189 ], [ 76.814050733754286, 21.600128891834853 ], [ 76.843609654361998, 21.613358059426897 ], [ 76.899730259343968, 21.612660427436758 ], [ 76.917403598597147, 21.618086452827523 ], [ 77.028817987160309, 21.693585720304718 ], [ 77.069332310437716, 21.712292589231591 ], [ 77.115531039725667, 21.724048977578256 ], [ 77.167207473046375, 21.728157254253855 ], [ 77.178886346127896, 21.72616771107101 ], [ 77.187051222635759, 21.721439316771004 ], [ 77.19149539609559, 21.717666937778912 ], [ 77.194492628731766, 21.712938544378286 ], [ 77.198523391041633, 21.707874254193477 ], [ 77.203897739588953, 21.70340424231193 ], [ 77.210719028959986, 21.700923774512543 ], [ 77.218987258255297, 21.700846259247438 ], [ 77.229632602562489, 21.704566962295466 ], [ 77.237074008658539, 21.709657090901995 ], [ 77.242861770154533, 21.716865953001328 ], [ 77.251129998550525, 21.731206162834152 ], [ 77.257641228659708, 21.735056057091349 ], [ 77.285546502868769, 21.740688788057124 ], [ 77.296501906437797, 21.74810435573141 ], [ 77.305286899670634, 21.760894272852394 ], [ 77.316449008814658, 21.769808458193772 ], [ 77.332985467405351, 21.774459337228613 ], [ 77.460729608084904, 21.770041002190503 ], [ 77.474062127565091, 21.767302151073405 ], [ 77.487394647045264, 21.760816759385929 ], [ 77.49328576042943, 21.754770616370813 ], [ 77.497316521839977, 21.747225857487305 ], [ 77.499073521026148, 21.741334744103135 ], [ 77.500933872100447, 21.737355657737393 ], [ 77.503724400060975, 21.732885646755157 ], [ 77.50930545418332, 21.729630031700591 ], [ 77.531629673370659, 21.721878567242069 ], [ 77.541448195377868, 21.715909939492118 ], [ 77.548372836637029, 21.70743500372242 ], [ 77.551783482221865, 21.696763820993507 ], [ 77.562015415379093, 21.626199653391261 ], [ 77.562015415379093, 21.611394355565032 ], [ 77.560671828242192, 21.597079983254613 ], [ 77.561395297754743, 21.58354075819943 ], [ 77.5662528832639, 21.572895412992914 ], [ 77.573384230098085, 21.564058742916639 ], [ 77.577104934045423, 21.556462307189687 ], [ 77.574934522809912, 21.548323269103541 ], [ 77.566356236051419, 21.544344184536492 ], [ 77.555194126008061, 21.542483832562819 ], [ 77.456802198562542, 21.548504137156211 ], [ 77.443986443919229, 21.547134710698341 ], [ 77.435614861836342, 21.542302965409529 ], [ 77.43199751157583, 21.534215603267452 ], [ 77.430343866076484, 21.522200833401708 ], [ 77.430653924438985, 21.511607164139317 ], [ 77.432204217150826, 21.500858466145299 ], [ 77.433134393137706, 21.498817247018334 ], [ 77.454631789125742, 21.461248481332344 ], [ 77.481813592023613, 21.423886420322045 ], [ 77.486051059908434, 21.412775987122071 ], [ 77.488014763770295, 21.401045437197123 ], [ 77.490185174106429, 21.392932237532701 ], [ 77.493802525266261, 21.391201076768251 ], [ 77.501347284149773, 21.396704617424117 ], [ 77.509098748608309, 21.411251531932631 ], [ 77.513749627643151, 21.416264146173368 ], [ 77.519537388239812, 21.417659410153643 ], [ 77.531526319683834, 21.416109117441803 ], [ 77.539277785041676, 21.412388414393771 ], [ 77.546719191137726, 21.40585134496359 ], [ 77.553540479609396, 21.397298895727427 ], [ 77.560361769879748, 21.390374254468263 ], [ 77.568423292700729, 21.386421007423561 ], [ 77.578035109132927, 21.384457301763057 ], [ 77.59043745262629, 21.38541331617159 ], [ 77.600979445045283, 21.388565579337975 ], [ 77.616999138799187, 21.396704617424117 ], [ 77.627024367280654, 21.399469306063619 ], [ 77.638083123637188, 21.398771674073483 ], [ 77.65038211524238, 21.396162014165608 ], [ 77.676220331003421, 21.395102646969573 ], [ 77.683971796361263, 21.391821194392602 ], [ 77.690069615320439, 21.385930081008432 ], [ 77.695237258292792, 21.379754746784098 ], [ 77.702988722751329, 21.377920234131462 ], [ 77.71260053918347, 21.380271510721624 ], [ 77.743916457178713, 21.40011526121031 ], [ 77.762209914056243, 21.406859036215504 ], [ 77.787531365879744, 21.42300792117862 ], [ 77.794456008038296, 21.42455821389046 ], [ 77.805411410708004, 21.422930405913455 ], [ 77.852850376143905, 21.403577581839894 ], [ 77.87145389228327, 21.398099880505068 ], [ 77.8908842298233, 21.397402249414252 ], [ 77.910211216374464, 21.400580349203718 ], [ 78.029170362921874, 21.437684027795619 ], [ 78.085601027165623, 21.462411200416561 ], [ 78.125495232818693, 21.48468374276052 ], [ 78.144408807320573, 21.498662218286704 ], [ 78.167043084870414, 21.522355862133335 ], [ 78.179032017213771, 21.538143011890494 ], [ 78.192674595056459, 21.551113796164767 ], [ 78.20838423044782, 21.559433702303515 ], [ 78.264194777067232, 21.570957545754137 ], [ 78.310186801679478, 21.586331285260595 ], [ 78.333234491278674, 21.614572455354502 ], [ 78.340365839012222, 21.619895127957758 ], [ 78.348013950683239, 21.62286652307159 ], [ 78.3580391782654, 21.62480438941105 ], [ 78.365997349198253, 21.625424506136021 ], [ 78.387701450761298, 21.623693346270894 ], [ 78.393799269720475, 21.622298082290623 ], [ 78.405891554851308, 21.616071072122278 ], [ 78.413332960947329, 21.606304226059191 ], [ 78.414263136934196, 21.578838202321148 ], [ 78.422014602292037, 21.562689317358089 ], [ 78.425942010015703, 21.550338649808843 ], [ 78.428835890763693, 21.526231593912936 ], [ 78.428422478714353, 21.515689602393188 ], [ 78.427182245264348, 21.511891384080112 ], [ 78.426872186002512, 21.509591783434015 ], [ 78.427905714776884, 21.508480740293916 ], [ 78.43193647708668, 21.50739553557548 ], [ 78.437414178421577, 21.506646225842637 ], [ 78.446405878128743, 21.50718882910115 ], [ 78.455087517674755, 21.509359239437341 ], [ 78.466663038868077, 21.515560411184019 ], [ 78.474724561689115, 21.521115627783949 ], [ 78.485679966157463, 21.526825873115509 ], [ 78.497152133664017, 21.528531196357616 ], [ 78.513688592254681, 21.526593329118832 ], [ 78.526297642222374, 21.521244818993178 ], [ 78.535185988242731, 21.515612087128083 ], [ 78.554409621107055, 21.499747423005143 ], [ 78.561230909578782, 21.496104234322953 ], [ 78.626653272630378, 21.479412747000644 ], [ 78.696003046103641, 21.474761867965807 ], [ 78.716053501268036, 21.476312161576967 ], [ 78.73806766119354, 21.483960273247984 ], [ 78.79956261562215, 21.489308783373637 ], [ 78.838836703650927, 21.501168525407078 ], [ 78.865295037935581, 21.50605194843865 ], [ 78.904155714814337, 21.509281725071556 ], [ 78.917591587082015, 21.513906764785357 ], [ 78.929270461062899, 21.525043036406995 ], [ 78.93226769369906, 21.534680691260856 ], [ 78.931130812137198, 21.543879096543034 ], [ 78.926789992364192, 21.553206692135113 ], [ 78.923069289316217, 21.563826198919909 ], [ 78.92193240775434, 21.572275295368563 ], [ 78.932060988124064, 21.582300522950728 ], [ 78.950354445001594, 21.590362047570405 ], [ 78.99613976403883, 21.603436183732864 ], [ 79.08150923036662, 21.612867133011768 ], [ 79.115925733785545, 21.621936347084723 ], [ 79.166671991119458, 21.640410671115543 ], [ 79.19447391074236, 21.646973578068177 ], [ 79.215764602054691, 21.654570013795073 ], [ 79.227340122348707, 21.663923447808823 ], [ 79.23436811729475, 21.682191067164009 ], [ 79.236021762794081, 21.694360867559958 ], [ 79.236021762794081, 21.704024359936223 ], [ 79.237572056405241, 21.70934703253948 ], [ 79.240052525103906, 21.712757677224992 ], [ 79.258656040343951, 21.714256293093449 ], [ 79.295036249423305, 21.697978216921168 ], [ 79.308782180053498, 21.694102485141567 ], [ 79.331933220641574, 21.69027842930603 ], [ 79.369140252920303, 21.691389472446186 ], [ 79.385366652249147, 21.689606634838292 ], [ 79.399112582879326, 21.690407620515256 ], [ 79.413065219983864, 21.689813341312625 ], [ 79.426397740363356, 21.68725535734881 ], [ 79.470942824151948, 21.671984972428501 ], [ 79.486342401180806, 21.663484198237139 ], [ 79.498331332624829, 21.639661363181343 ], [ 79.533057896204895, 21.61927501123278 ], [ 79.537398715977901, 21.597932643976318 ], [ 79.539879184676565, 21.591421413867121 ], [ 79.543289829362067, 21.585892034789534 ], [ 79.546597121260078, 21.578528143958629 ], [ 79.548560826021273, 21.570492459559315 ], [ 79.551558058657434, 21.550028591446331 ], [ 79.555588820067939, 21.542716376559493 ], [ 79.565200637399457, 21.538814806358229 ], [ 79.576982863268455, 21.539925849498324 ], [ 79.60013390475585, 21.547367254695015 ], [ 79.613879836285363, 21.555454616837089 ], [ 79.633103469149759, 21.570776679500167 ], [ 79.650466750040408, 21.581551215016528 ], [ 79.660285272047631, 21.585194403698775 ], [ 79.672584262753489, 21.586951401985569 ], [ 79.704830356735542, 21.584031683715235 ], [ 79.758780552280641, 21.594082749719114 ], [ 79.781311477042991, 21.592144884278973 ], [ 79.798364698671875, 21.587804062707331 ], [ 79.813144158975703, 21.579768378308014 ], [ 79.82213585778355, 21.56945892988568 ], [ 79.828543736004548, 21.557004910448253 ], [ 79.833918084551939, 21.543233141396335 ], [ 79.840325961873575, 21.534344794476674 ], [ 79.849731072730748, 21.529409695501037 ], [ 79.862133417123431, 21.528169461151716 ], [ 79.880323521213469, 21.52953888581089 ], [ 79.896446567754865, 21.532510280924722 ], [ 79.915360142256688, 21.538117174368089 ], [ 79.92197472515339, 21.542457994141095 ], [ 79.933550246346769, 21.554524440850226 ], [ 79.945332473115101, 21.556307278458114 ], [ 79.965279576391296, 21.56258596457058 ], [ 79.97788862456035, 21.561965846946229 ], [ 79.97871544775964, 21.559821275031819 ], [ 79.978612094972135, 21.555609646467978 ], [ 79.979852329321474, 21.55113963548575 ], [ 79.984709913931312, 21.548323269103541 ], [ 79.989774204116188, 21.547806505166072 ], [ 80.005277133932552, 21.548323269103541 ], [ 80.080311314315665, 21.571577664277751 ], [ 80.088682896398481, 21.591783149073073 ], [ 80.108423293200346, 21.604237169409821 ], [ 80.164130487032295, 21.621187039150524 ], [ 80.174879185026313, 21.626561387697841 ], [ 80.1822172383348, 21.632504177026131 ], [ 80.186661410895326, 21.63948049602805 ], [ 80.202887811123546, 21.625476182979465 ], [ 80.248053013435751, 21.596795763313818 ], [ 80.276061638633664, 21.58470347728365 ], [ 80.310168084589378, 21.580233466301419 ], [ 80.316059197973544, 21.575763455319183 ], [ 80.318643020359019, 21.568554592320535 ], [ 80.31884972503471, 21.560570583865335 ], [ 80.320089960283369, 21.550803737802248 ], [ 80.32360395685707, 21.541140245425989 ], [ 80.337453241174089, 21.525533961922797 ], [ 80.387786085559341, 21.492564399327527 ], [ 80.402668897751354, 21.480213730878965 ], [ 80.411763951145403, 21.468741563372415 ], [ 80.414761183781565, 21.460240790080373 ], [ 80.417551710842744, 21.446830756234416 ], [ 80.41734500526772, 21.441327216477813 ], [ 80.416001418130904, 21.437477322220609 ], [ 80.412900831807903, 21.432929795973276 ], [ 80.395330845342173, 21.414868883092478 ], [ 80.393367140581049, 21.407840888146431 ], [ 80.395640903704688, 21.399572658851124 ], [ 80.402668897751354, 21.394327501512972 ], [ 80.409903599171727, 21.392053738389276 ], [ 80.420652297165731, 21.392286282386006 ], [ 80.429643995973592, 21.393810737575443 ], [ 80.456619094195773, 21.402053128449094 ], [ 80.464680617016796, 21.40352590589583 ], [ 80.473568963936472, 21.403603420261614 ], [ 80.484421013818675, 21.401820584452363 ], [ 80.502714470696191, 21.395309353443899 ], [ 80.611958448923232, 21.331721503044882 ], [ 80.625601026765921, 21.326476344807471 ], [ 80.633352492123748, 21.327354844850216 ], [ 80.639140252720424, 21.329396063977121 ], [ 80.64410119011778, 21.332419135035021 ], [ 80.662911410932821, 21.346345933717824 ], [ 80.679034458373479, 21.351151842383612 ], [ 80.6784143407492, 21.30198171618326 ], [ 80.666425409305106, 21.279554145107678 ], [ 80.637383254433573, 21.251700547742072 ], [ 80.625601026765921, 21.24265717209078 ], [ 80.548499789733427, 21.206664537538352 ], [ 80.48452436660618, 21.167700506972775 ], [ 80.472742140737168, 21.157184352975488 ], [ 80.465197381853656, 21.147960110170906 ], [ 80.459616326831949, 21.135867825040059 ], [ 80.456825798871463, 21.125455023830281 ], [ 80.44731733612609, 21.061376247915515 ], [ 80.436258578870294, 21.024685981372894 ], [ 80.434604934270268, 21.013653062538758 ], [ 80.435328403782748, 20.999235338340149 ], [ 80.441012810692584, 20.978823147070553 ], [ 80.450107863187299, 20.959160265533793 ], [ 80.455688918208963, 20.950814520973321 ], [ 80.46333702987998, 20.942210394893774 ], [ 80.471708611962782, 20.93626760556554 ], [ 80.481320428394994, 20.931978460837282 ], [ 80.491242303189708, 20.930169785707044 ], [ 80.497960239773178, 20.930066432919542 ], [ 80.50323123643237, 20.930944932962284 ], [ 80.51883751813692, 20.936086738412254 ], [ 80.527415805794746, 20.937869574221448 ], [ 80.533927035903929, 20.937507839015545 ], [ 80.541161737324259, 20.933993842441847 ], [ 80.547569614645951, 20.927275905858377 ], [ 80.552117140893287, 20.919317734925524 ], [ 80.554700962379442, 20.907845567418967 ], [ 80.555837843941319, 20.898983058921026 ], [ 80.556561314353104, 20.8780282661915 ], [ 80.556768019928128, 20.780824897151259 ], [ 80.572994419256972, 20.697574164316215 ], [ 80.571030715395167, 20.682381292862367 ], [ 80.566069777098491, 20.672511094911098 ], [ 80.558938430264305, 20.667188422307841 ], [ 80.517183871738254, 20.648223170962577 ], [ 80.509122348917217, 20.64132436812508 ], [ 80.50302452995804, 20.633288682826443 ], [ 80.496203240586993, 20.618948472993619 ], [ 80.494549595087719, 20.609595038080496 ], [ 80.494859654349497, 20.601171780053559 ], [ 80.497030063786369, 20.596185004234535 ], [ 80.501060826096165, 20.592645169239173 ], [ 80.506435173744237, 20.590087185275358 ], [ 80.515013462301383, 20.588846950926037 ], [ 80.523695102746771, 20.589957994066136 ], [ 80.532480095979608, 20.593136094754922 ], [ 80.547259556283436, 20.601300971262781 ], [ 80.565139602011001, 20.613780829121932 ], [ 80.571444125645812, 20.616080431566669 ], [ 80.579505650265475, 20.617010605754839 ], [ 80.586016880374672, 20.616493841817313 ], [ 80.600796339779194, 20.612437241985102 ], [ 80.608134393087695, 20.609569200558148 ], [ 80.614645624096212, 20.606184394294353 ], [ 80.62239708855472, 20.600913398534484 ], [ 80.623740675691565, 20.596185004234535 ], [ 80.623637322904059, 20.591172389993798 ], [ 80.62270714691725, 20.58561717429313 ], [ 80.620950147731065, 20.541640530386129 ], [ 80.622500441342225, 20.534095771502617 ], [ 80.62498091004089, 20.527972114121773 ], [ 80.628908318663932, 20.523812161502001 ], [ 80.634902784835603, 20.512339993096187 ], [ 80.630561965062597, 20.500480251962014 ], [ 80.62405073405408, 20.489964097964727 ], [ 80.617126091895585, 20.473505153739833 ], [ 80.614438917621882, 20.464306749356975 ], [ 80.611545037773197, 20.401235662895484 ], [ 80.612888624910042, 20.385215969141647 ], [ 80.616505975170554, 20.371444200089737 ], [ 80.620950147731065, 20.361522325295081 ], [ 80.626427849965268, 20.342608750793197 ], [ 80.626737909227046, 20.333229478357733 ], [ 80.62239708855472, 20.325891425049232 ], [ 80.615885858445523, 20.322765001203827 ], [ 80.595525344019379, 20.315814521522949 ], [ 80.585603469224665, 20.310724392017043 ], [ 80.575061476805658, 20.3028695738717 ], [ 80.547362909070927, 20.27767731415673 ], [ 80.534237095165778, 20.269383246439642 ], [ 80.52121463404805, 20.264964911401528 ], [ 80.510465936054047, 20.262872016330441 ], [ 80.453828566235273, 20.257316798831194 ], [ 80.441116164379395, 20.253311875842364 ], [ 80.431194288685433, 20.246903998520676 ], [ 80.424373000213706, 20.234088242978025 ], [ 80.42323611775258, 20.222409368997141 ], [ 80.42416629373939, 20.211583157536662 ], [ 80.424062940951927, 20.197217109282175 ], [ 80.414141066157214, 20.165177720875072 ], [ 80.414244418944733, 20.155178330815314 ], [ 80.418171827567718, 20.148873806281127 ], [ 80.426336704075581, 20.146238307951531 ], [ 80.506951938581025, 20.14194916412259 ], [ 80.514806756726372, 20.140476385776591 ], [ 80.521834750773095, 20.138486843493006 ], [ 80.530619744905252, 20.134869493232479 ], [ 80.553150668768282, 20.073245348494023 ], [ 80.557181431078149, 20.048337306921152 ], [ 80.555527784679484, 20.03619334584624 ], [ 80.554287551229478, 20.031335761236388 ], [ 80.551807081631438, 20.024876207071255 ], [ 80.544779086685452, 19.998960476045109 ], [ 80.53868126772629, 19.944751898980932 ], [ 80.534960564678258, 19.929869085889603 ], [ 80.531136508842764, 19.920696519029089 ], [ 80.525968865870411, 19.918577786435659 ], [ 80.51883751813692, 19.918190211908716 ], [ 80.509535760067237, 19.919533799944869 ], [ 80.498270298135694, 19.923254502992897 ], [ 80.46716108571546, 19.938550727234254 ], [ 80.46023644355698, 19.941031195932904 ], [ 80.452278272624127, 19.938240667972419 ], [ 80.444836867427441, 19.931212673026433 ], [ 80.431194288685433, 19.911523953067949 ], [ 80.426646763337402, 19.901395371798966 ], [ 80.425096469726256, 19.892817084141083 ], [ 80.427473585637401, 19.888243720371399 ], [ 80.431814406309726, 19.883851222855633 ], [ 80.437188754857104, 19.880879827741861 ], [ 80.444423456277406, 19.878451035886592 ], [ 80.473362258361462, 19.873955186482643 ], [ 80.4807003107707, 19.871138820999757 ], [ 80.485041132342346, 19.866255397968242 ], [ 80.486074660217341, 19.854989936036699 ], [ 80.483180780368656, 19.846024074751252 ], [ 80.478943313383169, 19.838556830233525 ], [ 80.475429315010828, 19.833880112776964 ], [ 80.471811964750302, 19.830159409728932 ], [ 80.463026970618131, 19.824113266713876 ], [ 80.447213983338571, 19.816697699039533 ], [ 80.428197056049243, 19.810599880080357 ], [ 80.418171827567718, 19.805871487579047 ], [ 80.411040479834227, 19.799050198208075 ], [ 80.408973423184861, 19.791996364840369 ], [ 80.411453891883554, 19.78367645870156 ], [ 80.419825473966384, 19.777992051791724 ], [ 80.431607700734759, 19.773289495913495 ], [ 80.458686150845125, 19.767346707484531 ], [ 80.469538201626662, 19.766158149079271 ], [ 80.47883995969633, 19.766468207441783 ], [ 80.48421430914297, 19.768096015418731 ], [ 80.487314894566666, 19.771119086476627 ], [ 80.488245069654198, 19.774271348743749 ], [ 80.487935012191016, 19.778405462941741 ], [ 80.48721154177916, 19.783469753126607 ], [ 80.486901483416702, 19.788198147426549 ], [ 80.487624952929181, 19.793262436712038 ], [ 80.489795363265358, 19.799205226939645 ], [ 80.494342888613389, 19.805690619526441 ], [ 80.500750766834386, 19.810909939342192 ], [ 80.509225701704722, 19.814656479912625 ], [ 80.518424106986899, 19.816310126311233 ], [ 80.528449334569061, 19.815509142432965 ], [ 80.537751091739423, 19.810909939342192 ], [ 80.544572382009775, 19.802073269265971 ], [ 80.548499789733427, 19.792306423202824 ], [ 80.558111607064959, 19.755176907088579 ], [ 80.565553013160965, 19.73977733005972 ], [ 80.574544711968798, 19.728770250546624 ], [ 80.587153761936491, 19.718900050796659 ], [ 80.59996951657989, 19.713654893458564 ], [ 80.63852013509613, 19.705179959487506 ], [ 80.649785597926936, 19.701252549965197 ], [ 80.659087355097299, 19.696007391727729 ], [ 80.667665642755182, 19.689005235203407 ], [ 80.675727167374788, 19.676551214866659 ], [ 80.685028923645831, 19.622239285014981 ], [ 80.691540154654362, 19.607718207129547 ], [ 80.70135867666157, 19.597512112394039 ], [ 80.712934197854892, 19.592602850940803 ], [ 80.761199985590835, 19.580071316238215 ], [ 80.776496209832189, 19.573120836557329 ], [ 80.806365187903026, 19.551365058150903 ], [ 80.814736769985899, 19.548910426974597 ], [ 80.822384881656916, 19.548600369511401 ], [ 80.830963169314742, 19.547101751844362 ], [ 80.838094517048248, 19.543122667277252 ], [ 80.854630974739663, 19.526715399895746 ], [ 80.878195428276314, 19.507130031825508 ], [ 80.893905063667702, 19.484444078331531 ], [ 80.897005649990703, 19.468605251730988 ], [ 80.895352003592038, 19.452197984349478 ], [ 80.888944126270346, 19.438813788025865 ], [ 80.880985956236813, 19.427910061300274 ], [ 80.869410435043491, 19.419357612064115 ], [ 80.854217563589643, 19.414448349711559 ], [ 80.825485467080611, 19.411166897134589 ], [ 80.813806593999047, 19.408453884439208 ], [ 80.805745070278746, 19.403337918310282 ], [ 80.80254113206756, 19.394320380181394 ], [ 80.805435011916217, 19.386129666151128 ], [ 80.823315056744406, 19.363081977451255 ], [ 80.832203403664082, 19.345408637298757 ], [ 80.830963169314742, 19.334246528154718 ], [ 80.823004999281224, 19.326081650747536 ], [ 80.784351027078159, 19.31161224970554 ], [ 80.761199985590835, 19.29846059827798 ], [ 80.751174758008617, 19.291045029704318 ], [ 80.737222120904079, 19.278565171845166 ], [ 80.724509719048271, 19.264483344430797 ], [ 80.72047895673839, 19.261563626160406 ], [ 80.716654900902924, 19.262700506822902 ], [ 80.710453729156242, 19.278694363054395 ], [ 80.690093214730027, 19.311147161712139 ], [ 80.67996463436036, 19.32153412539952 ], [ 80.652989536138108, 19.322412625442265 ], [ 80.633559197698773, 19.31677989357723 ], [ 80.617436151157364, 19.318562730285745 ], [ 80.600279575841711, 19.341687934250725 ], [ 80.587050409148986, 19.381918035788711 ], [ 80.575991651893148, 19.391969101792593 ], [ 80.553460728030117, 19.386904812507051 ], [ 80.5427120300361, 19.378584906368296 ], [ 80.526382277020431, 19.355330512093413 ], [ 80.516977167062549, 19.345201930824427 ], [ 80.508502232192185, 19.340473538323121 ], [ 80.489795363265358, 19.334349880042904 ], [ 80.480803663558206, 19.328562120345563 ], [ 80.471088495237822, 19.315849718489684 ], [ 80.456515741408268, 19.285128078797751 ], [ 80.44731733612609, 19.272131456101814 ], [ 80.437085402069599, 19.265310166730782 ], [ 80.413934360582218, 19.256111762347924 ], [ 80.405356072924377, 19.250401516117048 ], [ 80.397087843629023, 19.234175115888885 ], [ 80.373109978942338, 19.151363634424168 ], [ 80.370629510243631, 19.13712677737885 ], [ 80.366598748833141, 19.117386378778345 ], [ 80.346238234406925, 19.081497097013422 ], [ 80.290427687787528, 19.019304511493992 ], [ 80.271824171648163, 18.979436143363326 ], [ 80.271410759598822, 18.946957506283862 ], [ 80.283916456779011, 18.920266628002476 ], [ 80.344171176858296, 18.850710150752825 ], [ 80.349235467043087, 18.830918077107579 ], [ 80.33890018109841, 18.813348089742526 ], [ 80.274821405183644, 18.77694204404008 ], [ 80.266036411051502, 18.768208725851988 ], [ 80.260558709716605, 18.755522162417829 ], [ 80.26138553291598, 18.744515082005417 ], [ 80.264796176702106, 18.731751003306155 ], [ 80.270377231723828, 18.713690090425299 ], [ 80.251463658121267, 18.700512600576015 ], [ 80.241748488002244, 18.697489529518172 ], [ 80.169711542053946, 18.690048123422109 ], [ 80.090543246573517, 18.697489529518172 ], [ 80.08403201736364, 18.701391099719441 ], [ 80.066668735573657, 18.731001695371898 ], [ 80.060674270301305, 18.736970323121906 ], [ 80.039383578988904, 18.752111517732313 ], [ 80.001866490146355, 18.785623684485412 ], [ 79.967966749765637, 18.796475735266934 ], [ 79.918564081367194, 18.824923610935848 ], [ 79.916910434968528, 18.826577257334517 ], [ 79.950190056825633, 18.855283515421885 ], [ 79.96031863809462, 18.867117418134338 ], [ 79.964246046717605, 18.885540066221036 ], [ 79.964866164341956, 18.935356147568136 ], [ 79.954530878397279, 18.968429062950857 ], [ 79.94181847474276, 19.038140570730711 ], [ 79.933550246346769, 19.05312673571029 ], [ 79.88208052039964, 19.041938788144531 ], [ 79.864717237710281, 19.048398342309607 ], [ 79.86182335786161, 19.081083685863401 ], [ 79.872675408643133, 19.110280870365838 ], [ 79.893656039794379, 19.137410997319645 ], [ 79.91928755087973, 19.158391628470831 ], [ 79.943782180403261, 19.16921784083069 ], [ 79.935410598320388, 19.19154206001803 ], [ 79.930553012811217, 19.211928411966593 ], [ 79.929106072886867, 19.230971178577018 ], [ 79.931173130435567, 19.249290472976949 ], [ 79.928485956161907, 19.260530097386091 ], [ 79.928899367311928, 19.263914902750567 ], [ 79.930553012811217, 19.270193589762354 ], [ 79.933446892659944, 19.27417267522878 ], [ 79.945952589840061, 19.283810330082641 ], [ 79.949879999362423, 19.288771267479998 ], [ 79.952980584786118, 19.297814643131225 ], [ 79.956494582259126, 19.313395087313435 ], [ 79.955874464634775, 19.333342189690306 ], [ 79.95763146382096, 19.351454780313869 ], [ 79.961145461293981, 19.364890652581547 ], [ 79.965486281066987, 19.40191681590829 ], [ 79.965382928279482, 19.414990952970069 ], [ 79.963832634668321, 19.426023870904881 ], [ 79.957424758245935, 19.445247503769274 ], [ 79.954014112661113, 19.452017117196188 ], [ 79.950500116087412, 19.457003892115889 ], [ 79.94336876835392, 19.464419460689552 ], [ 79.931069776748743, 19.482532050413791 ], [ 79.927452427387593, 19.486226915040099 ], [ 79.92331831318954, 19.488862413369638 ], [ 79.918460727680369, 19.490696926022277 ], [ 79.908228793623877, 19.493332424351873 ], [ 79.893552687906194, 19.499688625729501 ], [ 79.873915642992458, 19.504701239070918 ], [ 79.869264763957602, 19.506406562312971 ], [ 79.864923944184596, 19.508990382899807 ], [ 79.861409946711646, 19.51260773405965 ], [ 79.855002069389954, 19.521134344874095 ], [ 79.841876254585415, 19.546714179116059 ], [ 79.83515831890125, 19.554956569989709 ], [ 79.811903923727058, 19.574206041275769 ], [ 79.804565871317863, 19.582190049730961 ], [ 79.795780878084969, 19.594101466809203 ], [ 79.735422805218235, 19.603351548934821 ], [ 79.718782992940746, 19.599191596315102 ], [ 79.714752232429518, 19.595005805273669 ], [ 79.708551059783517, 19.591388455013142 ], [ 79.636100701785935, 19.569813543760002 ], [ 79.619357537620175, 19.562733872869895 ], [ 79.612949660298554, 19.557953803525205 ], [ 79.608918897988687, 19.553070380493633 ], [ 79.607265253388661, 19.542864284858862 ], [ 79.607058546914374, 19.531908881289834 ], [ 79.604888136578182, 19.525475165546421 ], [ 79.600754022380201, 19.51893809701556 ], [ 79.590005324386183, 19.510514838089303 ], [ 79.582667271077625, 19.508189399021543 ], [ 79.576362745644175, 19.508111883756438 ], [ 79.57171186660932, 19.509688014889942 ], [ 79.562513462226462, 19.514080512405709 ], [ 79.558792759178445, 19.517336127460275 ], [ 79.555278761705409, 19.5212118601392 ], [ 79.552798293006774, 19.526327826268126 ], [ 79.547217237985109, 19.530668646940509 ], [ 79.538949008689741, 19.533820909207574 ], [ 79.511767205791884, 19.534828600459544 ], [ 79.504842563633346, 19.535810452390418 ], [ 79.500811802222856, 19.53723155389309 ], [ 79.420403273292365, 19.536378892272065 ], [ 79.404073521176002, 19.53782583309572 ], [ 79.396528762292505, 19.540461331425259 ], [ 79.389500767346462, 19.544027003943082 ], [ 79.384126417899822, 19.549349677445658 ], [ 79.370690545632144, 19.566764635179762 ], [ 79.363559197898596, 19.574051012544199 ], [ 79.348883091281593, 19.580097153760615 ], [ 79.263410272166297, 19.591155911016468 ], [ 79.250491163836074, 19.594075629286856 ], [ 79.245530227338037, 19.59795136196578 ], [ 79.240672641828937, 19.603454901722323 ], [ 79.227546827923717, 19.625908311219572 ], [ 79.221035597814506, 19.632936306165558 ], [ 79.21297407409422, 19.63805227319386 ], [ 79.193543735654814, 19.645157782505631 ], [ 79.182071568148302, 19.647069810423371 ], [ 79.170599399742443, 19.647147324789213 ], [ 79.106520623827677, 19.636424465216859 ], [ 79.066316358912772, 19.619009508382074 ], [ 79.060528599215417, 19.614281114082125 ], [ 79.057117953630595, 19.610405382302527 ], [ 79.045025669399067, 19.586944281553311 ], [ 79.03758426330306, 19.582267564096803 ], [ 79.024975214234686, 19.577306626699446 ], [ 78.999136996674991, 19.572939968504723 ], [ 78.987354770805993, 19.572474880511319 ], [ 78.98032677585995, 19.573818468547469 ], [ 78.978466423886331, 19.577203273911945 ], [ 78.977329543223775, 19.581027329747425 ], [ 78.972678664188933, 19.584773871217177 ], [ 78.964307082106103, 19.589605618304628 ], [ 78.944773390879249, 19.594411526071038 ], [ 78.934851516084535, 19.598183905962454 ], [ 78.927926873926054, 19.603764960084838 ], [ 78.925446405227362, 19.609733587834793 ], [ 78.923999465303012, 19.62030141957484 ], [ 78.921002231767531, 19.624668076870247 ], [ 78.914801060020849, 19.628285427130717 ], [ 78.888756137785478, 19.636734524478694 ], [ 78.88069461496444, 19.640429389105005 ], [ 78.87594038314208, 19.644460151414815 ], [ 78.872529737557315, 19.650118719902988 ], [ 78.847518344995578, 19.724532781762431 ], [ 78.845657993021888, 19.728796088068972 ], [ 78.843590936372578, 19.732206732754484 ], [ 78.839870233324561, 19.736986802998555 ], [ 78.830568475254879, 19.742619533964326 ], [ 78.826744419419384, 19.744505724359666 ], [ 78.813205194364159, 19.755512803872758 ], [ 78.805557081793822, 19.763755194746405 ], [ 78.780028924395296, 19.776674303076614 ], [ 78.740444777104742, 19.777242742958205 ], [ 78.717810499554872, 19.773651231119398 ], [ 78.71171268059571, 19.774348863109534 ], [ 78.678639764313616, 19.792693996830444 ], [ 78.616628045947522, 19.815199083171134 ], [ 78.602468703267988, 19.81783458150073 ], [ 78.584588658439813, 19.814733995177725 ], [ 78.569912550923434, 19.813519599250064 ], [ 78.560404087278727, 19.815224920693531 ], [ 78.55192915240842, 19.818532213490865 ], [ 78.541387159989412, 19.823984076403971 ], [ 78.533739048318395, 19.824655869972386 ], [ 78.526607700584833, 19.823674018041451 ], [ 78.520509881625671, 19.821503607705321 ], [ 78.512655064379643, 19.820340887721777 ], [ 78.506557245420467, 19.818454698225704 ], [ 78.502216423848807, 19.816051743892839 ], [ 78.500046014412007, 19.813442083984963 ], [ 78.498805780062611, 19.810444851348784 ], [ 78.49601525300146, 19.806310737150792 ], [ 78.491984490691635, 19.802305813262645 ], [ 78.483819615083107, 19.798946845420566 ], [ 78.477721796123916, 19.79912771257386 ], [ 78.41488325365917, 19.822252916538837 ], [ 78.410645785774349, 19.824862576446716 ], [ 78.406821729938812, 19.828273220232912 ], [ 78.403514438940178, 19.832484849696012 ], [ 78.392869093733665, 19.853026231275518 ], [ 78.386771274774489, 19.862276313401136 ], [ 78.383257277301468, 19.866152045180737 ], [ 78.369614698559459, 19.875169583309621 ], [ 78.329203728968849, 19.891292628951639 ], [ 78.321762322872857, 19.863258165332066 ], [ 78.329513788230699, 19.838556830233525 ], [ 78.363206822137087, 19.760447902848391 ], [ 78.37095828569629, 19.750836087315573 ], [ 78.383257277301468, 19.747838852880758 ], [ 78.390491977822464, 19.744350693829457 ], [ 78.399380323842792, 19.736082465433409 ], [ 78.402790969427642, 19.728098456078893 ], [ 78.403411086152673, 19.719261786002612 ], [ 78.401033970241471, 19.709159044054612 ], [ 78.397313267193482, 19.699753933197425 ], [ 78.392352328896806, 19.691976630317239 ], [ 78.383567335663983, 19.684535224221175 ], [ 78.351527948156246, 19.666810208124613 ], [ 78.341296014099711, 19.656294054127269 ], [ 78.33344119685367, 19.643271593009612 ], [ 78.328273552982054, 19.621722520178135 ], [ 78.310600213728804, 19.589192206255287 ], [ 78.305742629118967, 19.574826158000743 ], [ 78.303262160420317, 19.551287542885795 ], [ 78.306362745843984, 19.501678168013026 ], [ 78.305329217069669, 19.491110338071614 ], [ 78.302642042795966, 19.482764594410462 ], [ 78.297577752611161, 19.47594330503949 ], [ 78.290859816027634, 19.470620632436233 ], [ 78.281144646807917, 19.466719062234912 ], [ 78.240113559593041, 19.460181992804731 ], [ 78.230811802422679, 19.456280421704086 ], [ 78.222130161078027, 19.450854397212648 ], [ 78.211898227920855, 19.440131536741028 ], [ 78.204766880187307, 19.428220120562109 ], [ 78.191847771857155, 19.398790392062946 ], [ 78.186576776097269, 19.391038926705104 ], [ 78.180582309925597, 19.384191798912351 ], [ 78.17438113817893, 19.374657497745314 ], [ 78.17231408063023, 19.365149034100618 ], [ 78.172210727842739, 19.357087511279584 ], [ 78.181615838699912, 19.310113633837087 ], [ 78.181822544274937, 19.298512275121364 ], [ 78.180065545988086, 19.279004421416911 ], [ 78.174794549328951, 19.269599311459043 ], [ 78.167869908069733, 19.264095770803177 ], [ 78.157327914751406, 19.262261257251218 ], [ 78.129215935866725, 19.262984726763698 ], [ 78.118777297134486, 19.265206813943276 ], [ 78.105754836016828, 19.269289252197208 ], [ 78.100483840256942, 19.270064399452448 ], [ 78.093869257360311, 19.269754340190612 ], [ 78.07567915237091, 19.265568549149176 ], [ 78.063896925602577, 19.264095770803177 ], [ 78.050977818171745, 19.265413520417606 ], [ 78.037025181067207, 19.270736192121539 ], [ 78.024932895936374, 19.27859101026689 ], [ 78.014700961879825, 19.288719591535877 ], [ 77.992376742692471, 19.322748521327178 ], [ 77.98906945169378, 19.324996446029157 ], [ 77.984625279133269, 19.325384018757457 ], [ 77.963127883145248, 19.322645169438996 ], [ 77.954032830650576, 19.323756212579148 ], [ 77.93635949139734, 19.329699001907382 ], [ 77.927677850052689, 19.331481837716634 ], [ 77.920029738381672, 19.331662705769244 ], [ 77.911451450723845, 19.330267441788973 ], [ 77.903079867741639, 19.327761135567922 ], [ 77.892847934584466, 19.322438462964666 ], [ 77.883132766264097, 19.31541046801868 ], [ 77.86949018662277, 19.303266506044391 ], [ 77.865459426111599, 19.297349555137821 ], [ 77.865149366849764, 19.293034572887219 ], [ 77.869800245884605, 19.290166531460212 ], [ 77.887163526775254, 19.282905992517495 ], [ 77.89129764187264, 19.279417833466194 ], [ 77.88995405473581, 19.271356308846574 ], [ 77.868663365222105, 19.248360296990082 ], [ 77.860601840602428, 19.237921658257896 ], [ 77.85502078558072, 19.228361517769819 ], [ 77.845408970047885, 19.19590871821276 ], [ 77.835590448040676, 19.170768134441854 ], [ 77.832386508930185, 19.158934230830081 ], [ 77.831869744992701, 19.149270738453819 ], [ 77.834556919266362, 19.142371933817678 ], [ 77.836417271240052, 19.134904690199274 ], [ 77.836727328703191, 19.126688136848028 ], [ 77.83362674327951, 19.121442979509876 ], [ 77.827735629895344, 19.117541409308554 ], [ 77.817607048626357, 19.11330394142373 ], [ 77.81037234900468, 19.107955431298077 ], [ 77.801794061346783, 19.099506333950156 ], [ 77.78877160022914, 19.083409124931162 ], [ 77.778022902235108, 19.07297048619898 ], [ 77.768101027440395, 19.065038153687848 ], [ 77.756628859034592, 19.059198717147062 ], [ 77.75249474483654, 19.05356598618129 ], [ 77.751977979999751, 19.045892035189237 ], [ 77.758695916583221, 19.028115343148553 ], [ 77.761486443644372, 19.01803843782363 ], [ 77.763036737255533, 19.009020901493383 ], [ 77.763346795618062, 18.999279892952693 ], [ 77.76438032439242, 18.993517970777699 ], [ 77.766550733829249, 18.989358018157979 ], [ 77.769961379414084, 18.986102403103413 ], [ 77.776679315098292, 18.985223903959987 ], [ 77.78980512900344, 18.987859402289583 ], [ 77.7952828312376, 18.987187607821848 ], [ 77.800347121422462, 18.984035346454046 ], [ 77.803964470783669, 18.978738512272511 ], [ 77.805204706032313, 18.973855089240939 ], [ 77.804274530045504, 18.964605007115377 ], [ 77.804894646770478, 18.959954128080536 ], [ 77.80727176268168, 18.955820013882541 ], [ 77.813162876065846, 18.951970120524599 ], [ 77.819053990349332, 18.950652370910174 ], [ 77.826805453908534, 18.951117458903575 ], [ 77.833936801642011, 18.950755723697679 ], [ 77.839001091826887, 18.947009182227983 ], [ 77.841378207738032, 18.938301703360874 ], [ 77.839517856663718, 18.925847683024127 ], [ 77.840551385438033, 18.916210029069585 ], [ 77.842411737411723, 18.909207872545263 ], [ 77.854814080905086, 18.89698639620519 ], [ 77.897085401569967, 18.868021754800107 ], [ 77.903699986265309, 18.861820583952746 ], [ 77.910831333099495, 18.853113105085693 ], [ 77.912071568348139, 18.846963609283133 ], [ 77.912071568348139, 18.83536225056741 ], [ 77.905663690127113, 18.832442532297019 ], [ 77.886026646112768, 18.826422226804308 ], [ 77.873831008194415, 18.826577257334517 ], [ 77.864219190862897, 18.822546495024707 ], [ 77.850369908344518, 18.814588324091854 ], [ 77.839311151088722, 18.809549872328713 ], [ 77.830526157855815, 18.79833608634129 ], [ 77.819674107074292, 18.780042629463761 ], [ 77.789081658591599, 18.71508535440557 ], [ 77.781123487658803, 18.703768214731319 ], [ 77.775542434435721, 18.702657172490483 ], [ 77.77027143687728, 18.702683010012887 ], [ 77.746603632351693, 18.705008449979967 ], [ 77.736578403870197, 18.704052436470757 ], [ 77.725416293826854, 18.700202542213553 ], [ 77.712393832709139, 18.689453844219535 ], [ 77.705779249812494, 18.679066881431421 ], [ 77.703402133901292, 18.669119168215044 ], [ 77.705262485874968, 18.658732205426926 ], [ 77.708259719410464, 18.649843858507264 ], [ 77.710223423272325, 18.637467353435621 ], [ 77.70981001212229, 18.622687893131733 ], [ 77.702988722751329, 18.597443956573326 ], [ 77.696580845429636, 18.584214788981281 ], [ 77.688519321709279, 18.574732163758306 ], [ 77.679941034051438, 18.569977931935963 ], [ 77.670019159256725, 18.566903184034679 ], [ 77.660407341925222, 18.565352892222162 ], [ 77.619272901922827, 18.562639879526781 ], [ 77.610591262376815, 18.560417792347206 ], [ 77.602219680293942, 18.55661957403407 ], [ 77.592297804599951, 18.548144640063065 ], [ 77.586096632853284, 18.539566352405242 ], [ 77.580825637093398, 18.529153551195403 ], [ 77.575244582071761, 18.522358100246091 ], [ 77.559224888317871, 18.507630316785644 ], [ 77.55478071485804, 18.500343940320587 ], [ 77.558604770693563, 18.493160915743655 ], [ 77.559534946680373, 18.487760727875294 ], [ 77.557364536344252, 18.478691514701602 ], [ 77.552610305421211, 18.47225779895825 ], [ 77.54981977656135, 18.464945584071412 ], [ 77.54806277917389, 18.442802232037362 ], [ 77.543928664076518, 18.427325141542038 ], [ 77.537830845117327, 18.417248237116436 ], [ 77.529459263034525, 18.409600125445419 ], [ 77.519537388239812, 18.403269762489511 ], [ 77.508478631883278, 18.394872341085655 ], [ 77.503724400060975, 18.389317125384988 ], [ 77.502587517599792, 18.381591498448863 ], [ 77.54775271991204, 18.352032578740474 ], [ 77.552713658208731, 18.345831406993792 ], [ 77.558294712331062, 18.33694306097345 ], [ 77.557674594706711, 18.329889228505063 ], [ 77.551163364597571, 18.307875068579559 ], [ 77.509098748608309, 18.314567165841989 ], [ 77.502794224074123, 18.312939357865044 ], [ 77.49318240764191, 18.308986110820335 ], [ 77.476852654626242, 18.29263052028227 ], [ 77.461453077597398, 18.281933499131636 ], [ 77.4468803237679, 18.279530544798771 ], [ 77.437578565698217, 18.281907659810653 ], [ 77.431894158788324, 18.288031318090809 ], [ 77.429413690089675, 18.295808620971055 ], [ 77.427346633440308, 18.31614329697555 ], [ 77.419905227344302, 18.321465969578806 ], [ 77.406572706964809, 18.327718818168929 ], [ 77.371949497071611, 18.338725898581341 ], [ 77.356136508892718, 18.345598862997118 ], [ 77.346628046147359, 18.351515814803005 ], [ 77.343837518186874, 18.361230984022651 ], [ 77.342803990311879, 18.37128205002659 ], [ 77.343734165399368, 18.416628119492085 ], [ 77.341563755063177, 18.426291611868344 ], [ 77.336602817665863, 18.435980943565649 ], [ 77.324303826960019, 18.449132594993269 ], [ 77.313348423390991, 18.456238105204356 ], [ 77.301876254985117, 18.460268865715587 ], [ 77.290920852315409, 18.460811468974097 ], [ 77.281619094245727, 18.459674587412273 ], [ 77.264772577292533, 18.453060004515574 ], [ 77.23273318888549, 18.410659490842811 ], [ 77.229012485837515, 18.399471544176375 ], [ 77.226221957877016, 18.385441391806747 ], [ 77.231803012898681, 18.355985825785236 ], [ 77.231079543386144, 18.333790797807065 ], [ 77.227358840338169, 18.322086086303838 ], [ 77.221157667692154, 18.31381785700847 ], [ 77.213509556021137, 18.310071316438094 ], [ 77.203897739588953, 18.308030097311125 ], [ 77.176922642266092, 18.297048855320377 ], [ 77.117908155636812, 18.253847357769299 ], [ 77.104575637055959, 18.240979926282527 ], [ 77.097754347684926, 18.230412096341176 ], [ 77.094033644636951, 18.219094957566195 ], [ 77.092173292663261, 18.20868215635641 ], [ 77.087729120102765, 18.197054959218971 ], [ 77.080287714006758, 18.191344712988094 ], [ 77.06953901601274, 18.189070949864398 ], [ 77.050005323886566, 18.192171536187399 ], [ 77.039566685154327, 18.191887315347284 ], [ 77.02768110469917, 18.188605861870993 ], [ 77.015485466780802, 18.182146307705917 ], [ 77.005770297561114, 18.178348090292101 ], [ 76.997502069165108, 18.177857163876975 ], [ 76.970113559792921, 18.182068793340132 ], [ 76.949546339791681, 18.179975898269046 ], [ 76.914406365960971, 18.167676907563187 ], [ 76.900247023281437, 18.157005723935011 ], [ 76.892908969972936, 18.144293321179813 ], [ 76.897456496220272, 18.105535997088563 ], [ 76.897456496220272, 18.093004462386027 ], [ 76.896216261870933, 18.079594428540016 ], [ 76.883503859115748, 18.029364936042949 ], [ 76.881746860828898, 18.018564561205491 ], [ 76.881746860828898, 18.002777411448388 ], [ 76.885054151827589, 17.97445872608932 ], [ 76.882987095178279, 17.954899197340065 ], [ 76.877612745731582, 17.933556830083599 ], [ 76.863143344689533, 17.903739528856132 ], [ 76.851567824395516, 17.890742906160195 ], [ 76.839062128114648, 17.884231676050995 ], [ 76.825316196585149, 17.884490058469392 ], [ 76.771262648252545, 17.899114488243011 ], [ 76.761960891082182, 17.900664780954848 ], [ 76.754209425724397, 17.900897324951579 ], [ 76.740876906244168, 17.898416856252872 ], [ 76.742427198956008, 17.877074489895787 ], [ 76.754829543348691, 17.849169215686739 ], [ 76.756896599998058, 17.835371609112421 ], [ 76.755656365648733, 17.825837307046069 ], [ 76.751625604238185, 17.820127060815192 ], [ 76.743977491667849, 17.813615830705995 ], [ 76.734158969660683, 17.808189806214553 ], [ 76.714831984008796, 17.799534003291622 ], [ 76.705530226838434, 17.79211843471796 ], [ 76.696228468768751, 17.776667181745033 ], [ 76.687650181110925, 17.755014757025375 ], [ 76.675971307130084, 17.706852322076994 ], [ 76.660675082888744, 17.709772040347385 ], [ 76.638454217388173, 17.72873729079333 ], [ 76.625638461845455, 17.736385403363666 ], [ 76.616543410250117, 17.745041205387277 ], [ 76.601557245270598, 17.765479234179278 ], [ 76.592668898350937, 17.770595201207524 ], [ 76.583263788393054, 17.769975084482549 ], [ 76.570861444000386, 17.767081203734559 ], [ 76.553394810322217, 17.766409410166144 ], [ 76.534687941395347, 17.775866196967396 ], [ 76.522699009052005, 17.777028916950936 ], [ 76.512983839832302, 17.772817288387156 ], [ 76.508539667271791, 17.766538601375313 ], [ 76.501408318638923, 17.748865261222811 ], [ 76.496964146078412, 17.74442108776298 ], [ 76.489626091870591, 17.740338650408372 ], [ 76.477120395589708, 17.736876328879472 ], [ 76.469472283918691, 17.732147935478846 ], [ 76.46575158087073, 17.726308498938064 ], [ 76.465958286445741, 17.718970444730243 ], [ 76.466888462432536, 17.71253672898683 ], [ 76.466268344808185, 17.704759426106587 ], [ 76.461720818560863, 17.697783108003986 ], [ 76.453969354102341, 17.692382921034945 ], [ 76.431335076552486, 17.683778794955398 ], [ 76.421723260120288, 17.678120225567962 ], [ 76.416452264360473, 17.671376451462034 ], [ 76.413455030824977, 17.664787706087733 ], [ 76.410251091714471, 17.653909816884546 ], [ 76.390614047700112, 17.636779079990557 ], [ 76.322194452012283, 17.617710475857731 ], [ 76.313099400416931, 17.609752305824255 ], [ 76.311549106805771, 17.601070665378867 ], [ 76.317440220189937, 17.592724920818394 ], [ 76.331702914757656, 17.576291815914541 ], [ 76.336353793792497, 17.568307807459345 ], [ 76.337283969779307, 17.559962062898872 ], [ 76.336147089116793, 17.55161631923772 ], [ 76.332116326806997, 17.538128770126601 ], [ 76.332323033281327, 17.534123847137831 ], [ 76.338834263390453, 17.522910061150409 ], [ 76.340074496840529, 17.515546169420187 ], [ 76.336353793792497, 17.508983263366868 ], [ 76.328085565396449, 17.500844225280726 ], [ 76.318060336914968, 17.487382513692008 ], [ 76.316303338628117, 17.473869127058546 ], [ 76.321470981600484, 17.464179796260563 ], [ 76.332943150006301, 17.45446462704086 ], [ 76.336457146580003, 17.445860500961313 ], [ 76.341004672827339, 17.423820501714768 ], [ 76.34741255104835, 17.413433538926647 ], [ 76.369840122123875, 17.398344021159623 ], [ 76.378108352318549, 17.3897657335018 ], [ 76.380382115442202, 17.378758653089331 ], [ 76.375007765995562, 17.371937363718356 ], [ 76.353613722795032, 17.357028713104622 ], [ 76.34379520078781, 17.351861070132255 ], [ 76.330876091558338, 17.35020742373359 ], [ 76.303797642347249, 17.356563626010537 ], [ 76.291188592379598, 17.358139757144041 ], [ 76.265453729406019, 17.357674669150637 ], [ 76.255015089774517, 17.360413520267738 ], [ 76.245403273342319, 17.367079780007824 ], [ 76.22845340360162, 17.38247935613736 ], [ 76.219978468731298, 17.38687185275381 ], [ 76.210366652299101, 17.388913071880719 ], [ 76.198274367168253, 17.387827867162336 ], [ 76.184115025388039, 17.384391384055103 ], [ 76.166441685235526, 17.37413361337553 ], [ 76.156519810440813, 17.370903835843304 ], [ 76.146287876384321, 17.371110541418314 ], [ 76.127064242620676, 17.381316637053143 ], [ 76.112698195265452, 17.381962592199834 ], [ 76.094714796750424, 17.377750962736734 ], [ 76.061331822105885, 17.357648830728916 ], [ 76.040557895630329, 17.349354763011885 ], [ 76.02784549287513, 17.345737412751358 ], [ 76.021024204403474, 17.346331691953985 ], [ 76.009862095259436, 17.35369558458353 ], [ 75.996736281354259, 17.34927724954542 ], [ 75.963249953022839, 17.342585151383613 ], [ 75.952191196666362, 17.336616522734342 ], [ 75.936481561274988, 17.325867824740325 ], [ 75.926973097630281, 17.331009630190231 ], [ 75.919738397109299, 17.341629136975083 ], [ 75.910850051088957, 17.347494411937529 ], [ 75.897724237183738, 17.35217112939409 ], [ 75.892659946998933, 17.363901679319039 ], [ 75.890799595025257, 17.379223741082793 ], [ 75.88697553918972, 17.394649156533315 ], [ 75.877570428332533, 17.411960761479914 ], [ 75.870025669449021, 17.416146552521351 ], [ 75.845427687137985, 17.402116401051043 ], [ 75.831785109295296, 17.416973374821392 ], [ 75.815868768328968, 17.405785427255633 ], [ 75.799332309738233, 17.385967516087984 ], [ 75.783932732709374, 17.374805406044626 ], [ 75.769876742817388, 17.377208360377491 ], [ 75.762952101558184, 17.385114854466959 ], [ 75.758611280885859, 17.395553494098461 ], [ 75.752926873976008, 17.405527044837239 ], [ 75.740627883270164, 17.415681464527946 ], [ 75.729982538063652, 17.418239446693114 ], [ 75.704764439027585, 17.415758978893731 ], [ 75.677996047279734, 17.425267442538424 ], [ 75.667040642811386, 17.446170559323829 ], [ 75.65959923671538, 17.467073676109234 ], [ 75.643372837386465, 17.476582139753923 ], [ 75.633140904229293, 17.480302842801958 ], [ 75.621772088610939, 17.476349595757195 ], [ 75.613090448165607, 17.471595363934906 ], [ 75.607612745931405, 17.464489853723759 ], [ 75.601928339021569, 17.454878038190881 ], [ 75.588285760279561, 17.425293280960144 ], [ 75.580947706971045, 17.415190538112821 ], [ 75.573506300875053, 17.40842092468591 ], [ 75.560173781394823, 17.398912461940537 ], [ 75.551492140949492, 17.389300645508339 ], [ 75.552835728086322, 17.365917060024284 ], [ 75.569785597827021, 17.334291082767262 ], [ 75.574953240799374, 17.318271389013372 ], [ 75.578673943847363, 17.298763536208238 ], [ 75.582394646895395, 17.290262762916139 ], [ 75.587355585192071, 17.285095119943826 ], [ 75.6025484557466, 17.277886256945177 ], [ 75.611230096191932, 17.269824734124139 ], [ 75.616397740063618, 17.258662624980158 ], [ 75.62104861819914, 17.242436224751938 ], [ 75.62239220623529, 17.230602322039484 ], [ 75.622082146973455, 17.220938828763902 ], [ 75.618361443925423, 17.211714585959381 ], [ 75.613090448165607, 17.203110459879777 ], [ 75.608232862656436, 17.192775173035781 ], [ 75.60502892444525, 17.179210110458197 ], [ 75.605132277232755, 17.158126126519502 ], [ 75.609473097905081, 17.145956326123549 ], [ 75.615880975226773, 17.137352200044003 ], [ 75.625182733296455, 17.129342353167029 ], [ 75.634381137679313, 17.119394639950652 ], [ 75.643476190173985, 17.103633327715894 ], [ 75.646783482071996, 17.09141185137582 ], [ 75.64626671723515, 17.080895697378534 ], [ 75.642442661399656, 17.075056260837751 ], [ 75.62911014191944, 17.066348781970699 ], [ 75.624562615672104, 17.061206977420053 ], [ 75.622288853447785, 17.053507188006275 ], [ 75.622908970172801, 17.049166368233269 ], [ 75.637481724002299, 17.028909207493935 ], [ 75.640272251063479, 17.018935654956518 ], [ 75.641512486312124, 17.010176500145342 ], [ 75.640685663112805, 16.999117742889492 ], [ 75.63810184072733, 16.990513616809945 ], [ 75.634071079316797, 16.983227240344828 ], [ 75.627353142733327, 16.976974391754762 ], [ 75.616707798426134, 16.974674791108722 ], [ 75.602858514109116, 16.978162950160023 ], [ 75.589525994628872, 16.98640534103367 ], [ 75.563171014030999, 17.00929800100192 ], [ 75.553765904073174, 17.014904893545967 ], [ 75.548701612989007, 17.015266627852551 ], [ 75.54374067559165, 17.012011012797981 ], [ 75.532991977597618, 16.996869819086836 ], [ 75.52637739470093, 16.989195868094836 ], [ 75.517799107043103, 16.982012844417223 ], [ 75.509117465698438, 16.976664334291566 ], [ 75.471703728744032, 16.963047593971279 ], [ 75.461368442799355, 16.961729845256112 ], [ 75.453410271866503, 16.964055284323873 ], [ 75.447105747332316, 16.970333971335716 ], [ 75.441731397885675, 16.977336126960662 ], [ 75.434806755727138, 16.982219549992234 ], [ 75.426125116181126, 16.98485504832183 ], [ 75.370831332599863, 16.98446747469421 ], [ 75.360599400342025, 16.981987005995503 ], [ 75.33889529787966, 16.969300442561341 ], [ 75.325252720036971, 16.963590196330468 ], [ 75.307062615946947, 16.959869493282493 ], [ 75.256006301149824, 16.959171861292358 ], [ 75.245671014305842, 16.953849188689102 ], [ 75.241433547320284, 16.94782888409571 ], [ 75.241020135271, 16.937286892576022 ], [ 75.243810663231486, 16.918114936555067 ], [ 75.242570427982841, 16.902095241901854 ], [ 75.197095168207369, 16.877006334075016 ], [ 75.166502719724676, 16.867937120002065 ], [ 75.154823845743834, 16.868583075148759 ], [ 75.144488559799157, 16.871192735056635 ], [ 75.134049921066932, 16.876618761346716 ], [ 75.11823693198879, 16.882199815469104 ], [ 75.108315057194076, 16.891113999911166 ], [ 75.101493767823087, 16.899666449147272 ], [ 75.098083124036904, 16.904653224966349 ], [ 75.093225539427038, 16.908580634488654 ], [ 75.075552199274554, 16.916151230894567 ], [ 75.066870558829166, 16.923179225840553 ], [ 75.061186151019996, 16.93180919034182 ], [ 75.057878859121985, 16.94307465317268 ], [ 75.053641392136498, 16.950671088000316 ], [ 75.048887160314152, 16.953203233542347 ], [ 75.043409458080006, 16.952815659914727 ], [ 74.99958784380388, 16.945090032978609 ], [ 74.970338983357337, 16.955218614247652 ], [ 74.96382775324814, 16.954210923895001 ], [ 74.96000369741266, 16.951136175993721 ], [ 74.951322056067994, 16.920802109929408 ], [ 74.948014764169983, 16.914704290970231 ], [ 74.933235304765432, 16.902612005839384 ], [ 74.928894484093107, 16.897986965226263 ], [ 74.922279901196461, 16.889331163202595 ], [ 74.913081495914284, 16.884266873017733 ], [ 74.89933556528409, 16.878634142052018 ], [ 74.853963658296138, 16.865611680934304 ], [ 74.845798780888956, 16.861245021840258 ], [ 74.84455854743895, 16.858454494779092 ], [ 74.844041782602147, 16.854733791731061 ], [ 74.84455854743895, 16.85202077903568 ], [ 74.851379835910663, 16.839411729068043 ], [ 74.855203891746143, 16.830497545525297 ], [ 74.85882124200667, 16.818922024331922 ], [ 74.866676060152017, 16.776211453195966 ], [ 74.866676060152017, 16.771457221373677 ], [ 74.865642531377631, 16.76667715112961 ], [ 74.863472121041511, 16.763111476813204 ], [ 74.857581007657345, 16.757917996318437 ], [ 74.850139601561338, 16.757142849063197 ], [ 74.839080845204791, 16.759080715402657 ], [ 74.823991327437781, 16.764687607946708 ], [ 74.807144809585267, 16.767529811851315 ], [ 74.796086053228734, 16.76631541592371 ], [ 74.788024530407696, 16.762646388819743 ], [ 74.780479770624865, 16.757246201850702 ], [ 74.757948845862515, 16.745334783873144 ], [ 74.745029738431626, 16.742673448021204 ], [ 74.739035272259954, 16.740296332110002 ], [ 74.735934685936954, 16.738203437038973 ], [ 74.728493279840947, 16.726679591789715 ], [ 74.720431756120576, 16.719419053746318 ], [ 74.713197055599593, 16.716318468322637 ], [ 74.70482547441604, 16.715233262704881 ], [ 74.694283481997019, 16.715233262704881 ], [ 74.688289015825347, 16.712675278741127 ], [ 74.684878371139845, 16.708437811755569 ], [ 74.675266554707704, 16.677561143332067 ], [ 74.672165969284023, 16.672729397143936 ], [ 74.667515090249182, 16.66797516532159 ], [ 74.659660272103835, 16.663375963130189 ], [ 74.644467400649987, 16.651929633146036 ], [ 74.671959262809693, 16.62541962291726 ], [ 74.669168735748528, 16.614154160985716 ], [ 74.665758091063012, 16.606221829373904 ], [ 74.655319452330829, 16.602501126325873 ], [ 74.6360958185671, 16.600459906299644 ], [ 74.629171177307953, 16.598857936744363 ], [ 74.621729771211946, 16.595679836055577 ], [ 74.614081658641609, 16.590563869926651 ], [ 74.581215447934525, 16.562038478992573 ], [ 74.573257277001673, 16.557232571226162 ], [ 74.563645460569461, 16.553072617707127 ], [ 74.55744428882285, 16.551651516204512 ], [ 74.552379998637988, 16.551832384257121 ], [ 74.548762648377462, 16.553356838547241 ], [ 74.546592238041328, 16.555475572039988 ], [ 74.545765414841952, 16.558317775944598 ], [ 74.545662062054461, 16.56278778692683 ], [ 74.545972121316296, 16.56627594687745 ], [ 74.545972121316296, 16.570539252284672 ], [ 74.544421827705136, 16.575267646584617 ], [ 74.540804478343929, 16.581365465543794 ], [ 74.530882602649953, 16.593974513712791 ], [ 74.528608840425576, 16.598806260800298 ], [ 74.526541782876947, 16.615110175394246 ], [ 74.524578078115752, 16.623843491783699 ], [ 74.519720492606595, 16.625962226175769 ], [ 74.511658969785557, 16.62771922536194 ], [ 74.4785860526042, 16.63058726678889 ], [ 74.469801060270683, 16.633351956327711 ], [ 74.454608188816835, 16.642214463926333 ], [ 74.441275669336605, 16.64642609338949 ], [ 74.434867792014956, 16.646761990173669 ], [ 74.430010207405118, 16.644333197419083 ], [ 74.427426385019587, 16.639243068812558 ], [ 74.418744744574255, 16.605524197383769 ], [ 74.415437452676244, 16.598857936744363 ], [ 74.411406691265739, 16.592656764997681 ], [ 74.406342401080892, 16.587540797969435 ], [ 74.40055464138355, 16.583716742133898 ], [ 74.387738884941527, 16.577102159237253 ], [ 74.382261183606701, 16.573588161764231 ], [ 74.377300246209344, 16.569376532301131 ], [ 74.360350375569325, 16.550204576280176 ], [ 74.353219028735154, 16.54351247811837 ], [ 74.346707797726637, 16.541781318253239 ], [ 74.340506625979955, 16.544313462895953 ], [ 74.335752395056929, 16.549196885927525 ], [ 74.331204867910273, 16.554984646524186 ], [ 74.326864048137267, 16.559583848715643 ], [ 74.3216964051649, 16.563252874920234 ], [ 74.314771763006419, 16.564570624534664 ], [ 74.311051059958388, 16.563046169345224 ], [ 74.307433709697904, 16.558963731091293 ], [ 74.3005090684387, 16.538060614305888 ], [ 74.29802859884073, 16.533797308898667 ], [ 74.292447543819023, 16.528371283507905 ], [ 74.285419548873037, 16.526433417168445 ], [ 74.278288202038866, 16.527777004305275 ], [ 74.271673618242843, 16.532143663399321 ], [ 74.264955681659316, 16.538887437505192 ], [ 74.257927686713316, 16.543925890167653 ], [ 74.248315871180452, 16.545088609251874 ], [ 74.243561639358106, 16.539585069495327 ], [ 74.238393996385796, 16.519844671794143 ], [ 74.225681593630597, 16.492533677687046 ], [ 74.225061476905552, 16.488683783429845 ], [ 74.225991651993112, 16.486151637887755 ], [ 74.228782179953598, 16.483800361297593 ], [ 74.232192823739794, 16.482560126048948 ], [ 74.234983351700265, 16.482327582052275 ], [ 74.237670525973925, 16.48320608209502 ], [ 74.2402543483594, 16.484420478022624 ], [ 74.251416456604133, 16.491784368853526 ], [ 74.259167921961975, 16.495169176016642 ], [ 74.263715448209311, 16.496331895100862 ], [ 74.266919387319817, 16.496047675160067 ], [ 74.269503207906652, 16.493799750458091 ], [ 74.271776971030349, 16.48953644505087 ], [ 74.274257439728999, 16.477831733547642 ], [ 74.274567498990834, 16.473180854512801 ], [ 74.275394322190181, 16.468943385728661 ], [ 74.276427850065176, 16.465610256308249 ], [ 74.279425082701366, 16.461398626845149 ], [ 74.284386020998042, 16.458969834989883 ], [ 74.290277134382208, 16.457677923797117 ], [ 74.295651482929529, 16.457600409431333 ], [ 74.306813592073553, 16.459047350254988 ], [ 74.310844354383377, 16.458866482202378 ], [ 74.314565057431409, 16.456282659816903 ], [ 74.317355585391894, 16.451760972890551 ], [ 74.318595818841899, 16.444758816366285 ], [ 74.318905878103735, 16.437472439001848 ], [ 74.32014611155374, 16.430237739380171 ], [ 74.322626581151752, 16.424630845936743 ], [ 74.326450636987246, 16.420031642846023 ], [ 74.332341750371398, 16.416078395801318 ], [ 74.338542922118094, 16.412719427959242 ], [ 74.352495559222604, 16.406957505784245 ], [ 74.356009555796319, 16.404425361141474 ], [ 74.357869907769995, 16.400730496515163 ], [ 74.356526319733831, 16.395304470225081 ], [ 74.351978794385829, 16.390911974508011 ], [ 74.346707797726637, 16.388121446547526 ], [ 74.339576450892451, 16.386700344145535 ], [ 74.322006464426721, 16.385072537067909 ], [ 74.310741000696552, 16.381920273901525 ], [ 74.306193475348522, 16.377114366135057 ], [ 74.304333124274237, 16.36944041604232 ], [ 74.305780064198558, 16.352723090298351 ], [ 74.308363884785408, 16.34445486100304 ], [ 74.312394647095218, 16.335876573345157 ], [ 74.319525994828766, 16.32517955219458 ], [ 74.321076288439926, 16.321097113940649 ], [ 74.321076288439926, 16.316239529330797 ], [ 74.319525994828766, 16.297429308515742 ], [ 74.320972934753101, 16.289367783896065 ], [ 74.323763461814252, 16.282934068152709 ], [ 74.328000929699073, 16.280556952241508 ], [ 74.332445103158918, 16.280531113819844 ], [ 74.337406039656955, 16.28257233294681 ], [ 74.341126742704986, 16.284794420126385 ], [ 74.349808384049624, 16.291228135869741 ], [ 74.3547693223463, 16.293708604568447 ], [ 74.359936965318624, 16.294328722192741 ], [ 74.366241489852811, 16.292881781369086 ], [ 74.451921013643798, 16.253943590124546 ], [ 74.45894900858984, 16.249370225455547 ], [ 74.466183710010156, 16.242393907352945 ], [ 74.470834589044998, 16.235753486034522 ], [ 74.473935173569345, 16.227924506310895 ], [ 74.476002232017365, 16.217330837048447 ], [ 74.476312290379823, 16.202809760062333 ], [ 74.470421176995657, 16.161236070488254 ], [ 74.471971469707498, 16.127878933366045 ], [ 74.469594353796339, 16.109792182063526 ], [ 74.464323358036481, 16.101601467134 ], [ 74.457502068665505, 16.097415676092563 ], [ 74.41595421661377, 16.096356308896528 ], [ 74.406342401080892, 16.093178209107062 ], [ 74.397970818998076, 16.088346462019611 ], [ 74.386912061742208, 16.076770941725552 ], [ 74.383501417956026, 16.069484565260435 ], [ 74.384638298618512, 16.062120673530213 ], [ 74.389392531340192, 16.058012396854618 ], [ 74.39652387907374, 16.055066840162507 ], [ 74.419054802936756, 16.049511624461896 ], [ 74.424015741233447, 16.047651272488221 ], [ 74.428149855431442, 16.04493825889352 ], [ 74.431250440855123, 16.040752467852084 ], [ 74.433110792828799, 16.031734931521836 ], [ 74.433007440041294, 16.018583279194953 ], [ 74.428769973055736, 15.993752752887241 ], [ 74.421948683684761, 15.976699530359037 ], [ 74.413577101601888, 15.962643541366329 ], [ 74.400864698846746, 15.944892685948668 ], [ 74.382261183606701, 15.90809906751792 ], [ 74.354459263084479, 15.872571519160257 ], [ 74.351565383235808, 15.867378037766226 ], [ 74.352495559222604, 15.862959702728059 ], [ 74.365931430590976, 15.851306668068274 ], [ 74.370789016100147, 15.844795437059755 ], [ 74.373062779223844, 15.835493678990074 ], [ 74.369548780851503, 15.825778509770368 ], [ 74.349498325687122, 15.789372463168601 ], [ 74.331101516022088, 15.761932277852337 ], [ 74.321593052377395, 15.752733873469477 ], [ 74.304229770587398, 15.739659736407699 ], [ 74.293997837430183, 15.734440415692628 ], [ 74.2815954930375, 15.729867051922891 ], [ 74.255963982851469, 15.726017156766371 ], [ 74.223511184193725, 15.726094672031476 ], [ 74.21751671712272, 15.727515774433412 ], [ 74.214519483587239, 15.729195258354476 ], [ 74.21389936686225, 15.731572374265623 ], [ 74.214209426124029, 15.734595445323517 ], [ 74.2153463067866, 15.739013780361629 ], [ 74.216586542035245, 15.751080227070812 ], [ 74.215759718835884, 15.757875678020126 ], [ 74.213796014074759, 15.764490260916769 ], [ 74.209558547089202, 15.768805243167431 ], [ 74.202530552143216, 15.771053167869407 ], [ 74.194469029322178, 15.769580390422671 ], [ 74.186097447239362, 15.765730496165471 ], [ 74.138141716966601, 15.729505316716992 ], [ 74.125015903960772, 15.71366649011639 ], [ 74.11705773302792, 15.690205390266552 ], [ 74.112406853993079, 15.682247219333698 ], [ 74.107135858233207, 15.677337957880408 ], [ 74.094836866628029, 15.672816270054792 ], [ 74.092873162766224, 15.66930227348109 ], [ 74.094216749903055, 15.664832262498916 ], [ 74.099487745662856, 15.655323797954903 ], [ 74.100624628124066, 15.640285956131944 ], [ 74.061557244770981, 15.639510809776024 ], [ 74.002852818302856, 15.616954047491271 ], [ 73.990347121122667, 15.613543402805757 ], [ 73.979391716654362, 15.614861152420241 ], [ 73.964405551674787, 15.618814399464949 ], [ 73.942804802899261, 15.632456977307639 ], [ 73.9319527530171, 15.644316718441809 ], [ 73.924821405283566, 15.658346869012798 ], [ 73.91283247294021, 15.710023302333523 ], [ 73.908388298581073, 15.721237087421624 ], [ 73.900326775760036, 15.730538845491306 ], [ 73.891438429739694, 15.735939032460347 ], [ 73.876865675910196, 15.739814765139267 ], [ 73.857745395833305, 15.742889513040549 ], [ 73.850510695312309, 15.744982408111635 ], [ 73.843792758728782, 15.749219875996454 ], [ 73.84027876215508, 15.754129137449693 ], [ 73.838108351818946, 15.761363837071425 ], [ 73.835731235907744, 15.777331854881192 ], [ 73.832320591222285, 15.781491808400231 ], [ 73.826429477838062, 15.783042100212752 ], [ 73.817851190180235, 15.77684092936539 ], [ 73.813096958357889, 15.771879991068712 ], [ 73.798937615678355, 15.749323227884641 ], [ 73.792736443931673, 15.74159760184784 ], [ 73.784261509061352, 15.738652045155728 ], [ 73.770412224744334, 15.736610826028762 ], [ 73.722146437008391, 15.734311225382722 ], [ 73.700856966975422, 15.723211981547701 ], [ 73.689870639318528, 15.724473374246823 ], [ 73.672373894539575, 15.726507879934669 ], [ 73.656016472082499, 15.730292058931351 ], [ 73.646250847298717, 15.736883856604662 ], [ 73.643565299898597, 15.749090887134736 ], [ 73.646250847298717, 15.792141017993567 ], [ 73.638845247709966, 15.817206122564468 ], [ 73.604665560966822, 15.880845445660778 ], [ 73.587575717145555, 15.90289948152582 ], [ 73.528981967543743, 15.949164130220421 ], [ 73.510101758789091, 15.967596747292017 ], [ 73.490977410179298, 15.993475652879052 ], [ 73.487315299761221, 16.014227606219034 ], [ 73.515961134198946, 16.017401434228812 ], [ 73.515961134198946, 16.024847723643514 ], [ 73.499278191335392, 16.024318752308542 ], [ 73.48389733189633, 16.028225002581788 ], [ 73.472504102382388, 16.036363023534701 ], [ 73.468109571499483, 16.048488674412791 ], [ 73.464854362938453, 16.051662502422513 ], [ 73.457530143900982, 16.054185289619394 ], [ 73.450368685966041, 16.058905340908719 ], [ 73.447032096853761, 16.068915106446976 ], [ 73.452972851915533, 16.074164129970594 ], [ 73.457530143900982, 16.079535222972137 ], [ 73.460703971910718, 16.086330471573998 ], [ 73.460703971910718, 16.144680080421377 ], [ 73.463389519310837, 16.159572658351461 ], [ 73.470225456839316, 16.168890692351564 ], [ 73.479258660258935, 16.177232164232972 ], [ 73.487966342372758, 16.189357815111062 ], [ 73.465017123141678, 16.182277735928775 ], [ 73.452810091712294, 16.166571356083178 ], [ 73.448008659871718, 16.143296617345012 ], [ 73.447032096853761, 16.113592841136718 ], [ 73.440196160224545, 16.162014064997091 ], [ 73.440196160224545, 16.202337958629865 ], [ 73.43523196728141, 16.21784088754691 ], [ 73.430837436398491, 16.218736070013616 ], [ 73.425954623107302, 16.21515534104611 ], [ 73.41968834673979, 16.216701565225033 ], [ 73.413584832374042, 16.22394440371124 ], [ 73.41041100436432, 16.230454819933978 ], [ 73.406097852234026, 16.250799872316232 ], [ 73.378672722468124, 16.332709052280901 ], [ 73.377777540001418, 16.337958074905199 ], [ 73.378672722468124, 16.356919664211087 ], [ 73.37566165466157, 16.360256252424104 ], [ 73.358246290433868, 16.367499090910311 ], [ 73.359385612755744, 16.380601303907039 ], [ 73.364431186250201, 16.389308986020861 ], [ 73.373057487812758, 16.395656642939681 ], [ 73.384938997936359, 16.40159739800151 ], [ 73.367442254056741, 16.408636786458484 ], [ 73.352061393718301, 16.418117580661825 ], [ 73.341319206815896, 16.432074286299265 ], [ 73.333994987778439, 16.468166408353053 ], [ 73.319183790399549, 16.509751695584267 ], [ 73.313812696498687, 16.518296617494908 ], [ 73.305837435749012, 16.522650458551819 ], [ 73.302989129045031, 16.53302643432249 ], [ 73.303721550409179, 16.555568752595828 ], [ 73.307302280275948, 16.563177802213769 ], [ 73.314952018820563, 16.557603257384411 ], [ 73.3219507174516, 16.548488674312861 ], [ 73.323496940731204, 16.544989324997342 ], [ 73.344004754215959, 16.523586329945143 ], [ 73.355723504136378, 16.519435940716047 ], [ 73.378672722468124, 16.518296617494908 ], [ 73.369476758845323, 16.52147044550463 ], [ 73.362315300011048, 16.525458075429807 ], [ 73.356211784746037, 16.530747789678735 ], [ 73.350840690845175, 16.538153387468864 ], [ 73.354340040160693, 16.543158270237935 ], [ 73.36500084741111, 16.554388739548695 ], [ 73.371267122879345, 16.559271551940522 ], [ 73.354014518854896, 16.559637762172994 ], [ 73.336436394424013, 16.565619207960079 ], [ 73.322764519367055, 16.576157944833252 ], [ 73.317230665262954, 16.590277411573251 ], [ 73.316091342041744, 16.598293361249599 ], [ 73.314626498414142, 16.599432684470795 ], [ 73.316091342041744, 16.600043036357018 ], [ 73.323496940731204, 16.606431382202512 ], [ 73.326996290046722, 16.607123114639986 ], [ 73.358246290433868, 16.620672919319755 ], [ 73.358409049737801, 16.603949286630264 ], [ 73.363047722274516, 16.596828518521303 ], [ 73.368662956929867, 16.599025783513067 ], [ 73.371267122879345, 16.61017487227252 ], [ 73.366465691038769, 16.6280785180092 ], [ 73.354258660508705, 16.634670315682509 ], [ 73.338877800170266, 16.63165924697665 ], [ 73.323496940731204, 16.620672919319755 ], [ 73.312185091768512, 16.644720770147384 ], [ 73.310557487937643, 16.651434637298674 ], [ 73.312510613074309, 16.658392645204398 ], [ 73.321462435942621, 16.670843817388228 ], [ 73.323496940731204, 16.679103908718385 ], [ 73.321625196145845, 16.692450262469603 ], [ 73.316579622651417, 16.699896551884361 ], [ 73.300303582544231, 16.713202216708904 ], [ 73.289561393843186, 16.740220445517135 ], [ 73.295258009049846, 16.768052476240765 ], [ 73.304453971773327, 16.793524480870072 ], [ 73.303721550409179, 16.813137110988858 ], [ 73.2968856128807, 16.805650132647482 ], [ 73.286631707487274, 16.820868230984043 ], [ 73.274668815913103, 16.848822332984238 ], [ 73.269379101664171, 16.875637110863973 ], [ 73.279551629204249, 16.887640692264139 ], [ 73.279063346795951, 16.891913153669062 ], [ 73.269379101664171, 16.929185289669359 ], [ 73.270518424885367, 16.945013738992824 ], [ 73.274912956667592, 16.958644924223844 ], [ 73.289398634539324, 16.983832098272721 ], [ 73.262380404831774, 16.996975001994709 ], [ 73.254567905184658, 17.006740627677797 ], [ 73.262705925238194, 17.018540757250147 ], [ 73.251231316072321, 17.032171942481167 ], [ 73.25147545682681, 17.042425847874537 ], [ 73.258962436067506, 17.044094143330025 ], [ 73.269379101664171, 17.031642971146194 ], [ 73.277354363313151, 17.054673570029191 ], [ 73.275726759482311, 17.078599351378951 ], [ 73.267425977426896, 17.101385809507459 ], [ 73.255137566345553, 17.120998440525565 ], [ 73.261973503874046, 17.134955145263742 ], [ 73.260590039898361, 17.150539455631357 ], [ 73.255137566345553, 17.165187893706328 ], [ 73.236175977039679, 17.199204820246219 ], [ 73.236013216836426, 17.220607815298418 ], [ 73.218028191447829, 17.253241277862681 ], [ 73.214854363438036, 17.268744208578365 ], [ 73.211192253919336, 17.275091864597865 ], [ 73.193125847080111, 17.29401276227912 ], [ 73.187022331815101, 17.305975652954029 ], [ 73.203461133924165, 17.298732815367142 ], [ 73.217133008981122, 17.286851304344221 ], [ 73.231211784995807, 17.279282945451538 ], [ 73.249034050181223, 17.284857489381633 ], [ 73.234711134311326, 17.302313544334588 ], [ 73.20736738419734, 17.353745835102185 ], [ 73.195974154683469, 17.369370835295793 ], [ 73.170583529706093, 17.389715887678047 ], [ 73.166514519229608, 17.402167058962558 ], [ 73.165293816356481, 17.413031317141527 ], [ 73.177093945928817, 17.426662502372547 ], [ 73.185394727084926, 17.441880601608485 ], [ 73.173350456758129, 17.457424221250786 ], [ 73.180674674896281, 17.477687893081789 ], [ 73.165537957110971, 17.503404039364906 ], [ 73.131683789874941, 17.539374091041449 ], [ 73.125987174668339, 17.556545315413981 ], [ 73.127940299804933, 17.564683335467517 ], [ 73.136403842063586, 17.567206122664398 ], [ 73.149424675408383, 17.567287502316386 ], [ 73.163422070871803, 17.56948476820747 ], [ 73.200694206872114, 17.586493231477441 ], [ 73.185883009493224, 17.592515367090524 ], [ 73.154063347045778, 17.595607815448311 ], [ 73.139170769115637, 17.600775458420625 ], [ 73.128184441458743, 17.611558335149024 ], [ 73.121348503930264, 17.626410223253171 ], [ 73.120290561260319, 17.642035223446779 ], [ 73.126149935770897, 17.65542226792331 ], [ 73.118907097284691, 17.663478908324915 ], [ 73.110524936476608, 17.67572663047957 ], [ 73.105479362982166, 17.688910223128286 ], [ 73.108164910382285, 17.699774481307255 ], [ 73.117360873105767, 17.711249091372448 ], [ 73.123220248515608, 17.723334052424544 ], [ 73.123301629066859, 17.735785223709112 ], [ 73.115000847011444, 17.748195705167628 ], [ 73.109873893865071, 17.758286851257136 ], [ 73.106618686203362, 17.785549221719176 ], [ 73.10132897195443, 17.796332098447575 ], [ 73.085459831905652, 17.813666083023286 ], [ 73.079437696292629, 17.82461172085419 ], [ 73.07374108198529, 17.857123113940528 ], [ 73.065196160074706, 17.878363347890168 ], [ 73.018565300248369, 17.951727605944253 ], [ 73.017100457520073, 17.972113348152501 ], [ 73.03541100421441, 17.991848049547851 ], [ 73.018890820654789, 17.992499091260012 ], [ 73.008636915261363, 18.000230210355877 ], [ 73.005218946497152, 18.012355861233964 ], [ 73.008799675464587, 18.02594635663905 ], [ 73.019541863266326, 18.035874742525319 ], [ 73.032481316059815, 18.041083075323623 ], [ 73.042246940843583, 18.048976955522047 ], [ 73.04346764371671, 18.066961980910659 ], [ 73.031993035450157, 18.063910223278182 ], [ 73.02271569127609, 18.057684637635926 ], [ 73.015147332383407, 18.049139716624605 ], [ 73.008799675464587, 18.039007880709104 ], [ 73.001149936020667, 18.052069402980518 ], [ 72.987315299861152, 18.066555079952931 ], [ 72.980967643841652, 18.080552476315685 ], [ 72.983164909732736, 18.081732489362874 ], [ 72.986664259048254, 18.087713934250637 ], [ 72.988129101776551, 18.096014716306112 ], [ 72.984629754259728, 18.104193427084958 ], [ 72.97836347699284, 18.11188385635489 ], [ 72.976084832349088, 18.118638414231437 ], [ 72.967295768784638, 18.195990302210642 ], [ 72.954844597500127, 18.217515367640086 ], [ 72.926931186225175, 18.223944403311517 ], [ 72.935231967381341, 18.244777736303487 ], [ 72.939952018670652, 18.251288153425541 ], [ 72.934825066423613, 18.257879950199534 ], [ 72.933278842244746, 18.266587632313357 ], [ 72.935069207178103, 18.27631256727113 ], [ 72.939952018670652, 18.286037502228904 ], [ 72.953135613118022, 18.281317450040259 ], [ 72.957530144000856, 18.274603582889025 ], [ 72.959239129282352, 18.265855210049889 ], [ 72.964528841732587, 18.254950262044925 ], [ 72.9726668626855, 18.244696356651499 ], [ 72.976735873161971, 18.242580471311662 ], [ 72.982269727266029, 18.24420807514252 ], [ 72.995127800407573, 18.245062566883913 ], [ 73.012461784983358, 18.243150132472632 ], [ 73.032399936407884, 18.23786041912302 ], [ 73.050954622957462, 18.227484442453029 ], [ 73.063487174793224, 18.210353907906491 ], [ 73.047618034744445, 18.201157945183006 ], [ 73.047618034744445, 18.188788153550426 ], [ 73.057465040079464, 18.185614325540651 ], [ 73.071543816094206, 18.204087632438242 ], [ 73.073985221840459, 18.22418854406606 ], [ 73.065277539726637, 18.257554428893737 ], [ 73.071543816094206, 18.273016668884164 ], [ 73.056976759469805, 18.280951238908525 ], [ 73.042979363107051, 18.282375393609524 ], [ 73.012461784983358, 18.279201565599742 ], [ 72.994883659653098, 18.28359609648265 ], [ 72.977386914874202, 18.295070705648524 ], [ 72.968028191048106, 18.310614325290878 ], [ 72.974782748025333, 18.327582097835542 ], [ 72.958750846874054, 18.328111070069834 ], [ 72.95085696667563, 18.332953192635724 ], [ 72.933604362651153, 18.354925847949509 ], [ 72.92790774834387, 18.357570705523639 ], [ 72.922536655342341, 18.356634833230938 ], [ 72.917328320745341, 18.356390692476449 ], [ 72.912608269456015, 18.361151434491088 ], [ 72.909841342403965, 18.368068752570871 ], [ 72.910166862810442, 18.372503973279716 ], [ 72.911631707337378, 18.377346095845603 ], [ 72.912608269456015, 18.385646877001754 ], [ 72.910166862810442, 18.399237372406784 ], [ 72.904307488299921, 18.408514716580893 ], [ 72.897227410016896, 18.417303778346643 ], [ 72.891449415158363, 18.429388739398799 ], [ 72.88965905022495, 18.441310940247657 ], [ 72.891449415158363, 18.480902411616963 ], [ 72.895762566389266, 18.502997137307997 ], [ 72.907237174655833, 18.523586330444797 ], [ 72.924652539782855, 18.535630601670899 ], [ 72.946787957098522, 18.532416082935864 ], [ 72.961110872968362, 18.517726955034956 ], [ 72.99024498801576, 18.469956772886743 ], [ 73.008799675464587, 18.450506902971195 ], [ 73.01498457128092, 18.469956772886743 ], [ 73.004405143682362, 18.480047918976251 ], [ 72.988780144388073, 18.489935614137263 ], [ 72.980967643841652, 18.508856512717895 ], [ 72.977875196383181, 18.524115302679032 ], [ 72.970388217142485, 18.541001695571762 ], [ 72.960297071052921, 18.554673570628772 ], [ 72.950205924963413, 18.560370184036735 ], [ 72.921153191366656, 18.554877020657951 ], [ 72.910166862810442, 18.558986720960373 ], [ 72.905772331927537, 18.577134507451543 ], [ 72.88217207098424, 18.635484117198242 ], [ 72.864512566002048, 18.64891185150071 ], [ 72.855316602379247, 18.681138414006561 ], [ 72.851735873411741, 18.719671942705983 ], [ 72.852386915123972, 18.769924221325702 ], [ 72.856944207109436, 18.786200262332212 ], [ 72.865570508672008, 18.799383855880247 ], [ 72.879161004077034, 18.807359117529241 ], [ 72.887054884275457, 18.807033596223445 ], [ 72.902028841857529, 18.799505927156812 ], [ 72.912608269456015, 18.79999420866579 ], [ 72.926931186225175, 18.826646226342231 ], [ 72.938975457451349, 18.816961981210451 ], [ 72.974782748025333, 18.779486395180978 ], [ 72.966319206666, 18.761419989241116 ], [ 72.969574415227029, 18.746975002094636 ], [ 72.980642123435175, 18.736761786527204 ], [ 72.995127800407573, 18.731024481494611 ], [ 72.98804772212462, 18.753851630348432 ], [ 72.991709832542696, 18.779364325703053 ], [ 73.002452019445087, 18.801459052293406 ], [ 73.016286654705283, 18.813625392997491 ], [ 72.987966342472689, 18.824937241960125 ], [ 72.981293165147378, 18.83270905268062 ], [ 72.974782748025333, 18.848334051974913 ], [ 72.976084832349088, 18.854396877413929 ], [ 72.979746940968525, 18.863348700282298 ], [ 72.98170006610512, 18.871486721235154 ], [ 72.977793815831859, 18.874986070550673 ], [ 72.972178582075841, 18.874253648287201 ], [ 72.966970248378217, 18.872137762048048 ], [ 72.963145378656279, 18.86896393403833 ], [ 72.961680535028606, 18.865139065215654 ], [ 72.946136915386305, 18.858303127687176 ], [ 72.916270378974772, 18.870510158217197 ], [ 72.896820509059225, 18.89447663029221 ], [ 72.912608269456015, 18.92348867406303 ], [ 72.928070509446385, 18.911363023184943 ], [ 72.934580924769804, 18.920803127562291 ], [ 72.936778190660945, 18.94741445541279 ], [ 72.949229362844761, 18.951483465889222 ], [ 72.963389519410768, 18.947984117473023 ], [ 72.977224154670964, 18.948431708256688 ], [ 72.988291862879109, 18.964422919582031 ], [ 72.953623893727681, 18.964422919582031 ], [ 72.953623893727681, 18.971258856211247 ], [ 72.968272331802652, 18.972601630360934 ], [ 72.992035352049797, 18.98248932552195 ], [ 73.042165561191652, 18.995754299621236 ], [ 73.046641471726474, 18.99518463756095 ], [ 73.056813998367289, 19.015326239014708 ], [ 73.039805535097329, 19.017523504905792 ], [ 73.011892122923058, 19.00942617467819 ], [ 72.988291862879109, 18.998602606325218 ], [ 72.983571810690464, 19.010443427522144 ], [ 72.98780358226945, 19.036932684096083 ], [ 72.980967643841652, 19.046372789372693 ], [ 72.991872591846615, 19.067206122364663 ], [ 72.985687696030297, 19.074286200647631 ], [ 72.973806185906696, 19.078558661153291 ], [ 72.967295768784638, 19.091009833337122 ], [ 72.974782748025333, 19.163072007067449 ], [ 72.967295768784638, 19.163072007067449 ], [ 72.95004316476016, 19.127915757306308 ], [ 72.935557487787761, 19.11505768416475 ], [ 72.933929883956907, 19.080308335361387 ], [ 72.926931186225175, 19.066839911232872 ], [ 72.943369988334254, 19.05512116131251 ], [ 72.934255405262689, 19.034084377392102 ], [ 72.891449415158363, 18.991766669696002 ], [ 72.891449415158363, 19.001369533377268 ], [ 72.885264519342044, 19.025864975887881 ], [ 72.869313997842696, 19.011419989640782 ], [ 72.851084831699595, 18.987127997159345 ], [ 72.836273634320705, 18.959133205333156 ], [ 72.827647331858813, 18.918361720916661 ], [ 72.821299674939993, 18.903306381884018 ], [ 72.81251061317424, 18.897447007373497 ], [ 72.802744988390458, 18.909816799006077 ], [ 72.802012566127004, 18.920477606256494 ], [ 72.805349155239284, 18.930975653303729 ], [ 72.807383660027853, 18.942816473601333 ], [ 72.802744988390458, 18.957586981154229 ], [ 72.795909049962617, 18.957586981154229 ], [ 72.792328320995168, 18.951239325134733 ], [ 72.788259311418059, 18.946519272946084 ], [ 72.775401238276501, 18.93650950740783 ], [ 72.770355664782059, 18.948187567502199 ], [ 72.776052279988662, 18.959702867393382 ], [ 72.795909049962617, 18.984930731268204 ], [ 72.802419467084675, 18.999660548995106 ], [ 72.804942254281556, 19.011053778509048 ], [ 72.802744988390458, 19.040187893556428 ], [ 72.812998893783899, 19.035549221019718 ], [ 72.817067905159647, 19.032700914315736 ], [ 72.821787957348292, 19.041978257590468 ], [ 72.824229363094602, 19.053534247307645 ], [ 72.821299674939993, 19.063177802613492 ], [ 72.809580925019631, 19.066839911232872 ], [ 72.821950716652211, 19.097113348602132 ], [ 72.823090039873406, 19.108465887390761 ], [ 72.821055535084824, 19.119208075192486 ], [ 72.811778190910715, 19.137355861683655 ], [ 72.809580925019631, 19.146307684551967 ], [ 72.812185091868429, 19.153713283241412 ], [ 72.822438998161189, 19.163763739504983 ], [ 72.823090039873406, 19.169256902883713 ], [ 72.818044467278284, 19.175360419048097 ], [ 72.811208529749806, 19.175523179251279 ], [ 72.805186394136726, 19.171820379906588 ], [ 72.799571160380694, 19.156887111251191 ], [ 72.792165560791929, 19.150458075579703 ], [ 72.784922722305723, 19.150376695028452 ], [ 72.781586134092763, 19.159654039202504 ], [ 72.783376498126856, 19.16864655189681 ], [ 72.802500846736663, 19.21161530220439 ], [ 72.819834832211697, 19.240627345975209 ], [ 72.830088738504443, 19.252427476446879 ], [ 72.815114780023052, 19.253648179320002 ], [ 72.802093945778921, 19.237860418923159 ], [ 72.789398633739935, 19.217352606337663 ], [ 72.775401238276501, 19.204657294298666 ], [ 72.772227410266723, 19.265122789385199 ], [ 72.775645379030991, 19.299017645547902 ], [ 72.785411003814701, 19.313910223477983 ], [ 72.839366081779175, 19.319077867349673 ], [ 72.867035352299624, 19.316799220907281 ], [ 72.885508660096534, 19.296047268466619 ], [ 72.900563998229913, 19.290757554217745 ], [ 72.930349154989457, 19.286566473364015 ], [ 72.946543816343976, 19.289862372650354 ], [ 72.959727409892011, 19.294826565593489 ], [ 72.9726668626855, 19.293687242372297 ], [ 72.988291862879109, 19.279120183949313 ], [ 73.010508659846707, 19.224310614243446 ], [ 73.026621941549294, 19.205511786040059 ], [ 73.049652540432348, 19.217718817469454 ], [ 73.030039910313562, 19.227728583007657 ], [ 73.028005405524979, 19.244086005464734 ], [ 73.029144726947536, 19.259344794526609 ], [ 73.019297722511837, 19.266058661677899 ], [ 73.012461784983358, 19.272447007523333 ], [ 73.00180097683355, 19.286566473364015 ], [ 72.98780358226945, 19.300685940104014 ], [ 72.9709578792027, 19.307033596123571 ], [ 72.916758660483751, 19.303371486604814 ], [ 72.898936394399058, 19.307033596123571 ], [ 72.883555534959939, 19.31639231994961 ], [ 72.855316602379247, 19.339504299383911 ], [ 72.836924675133602, 19.348049221294499 ], [ 72.818532747887943, 19.330267645035743 ], [ 72.802093945778921, 19.331935940491231 ], [ 72.787608268806522, 19.345200914590517 ], [ 72.763438346702273, 19.380194403249103 ], [ 72.759776238082893, 19.388983465914176 ], [ 72.748220248365712, 19.444240627303085 ], [ 72.746836785289332, 19.467962958623612 ], [ 72.75440514418203, 19.481756903158551 ], [ 72.769216342460183, 19.49046458527237 ], [ 72.879161004077034, 19.532375392910009 ], [ 72.856700066354946, 19.541327216677697 ], [ 72.83594811301495, 19.536688544140983 ], [ 72.815928581938451, 19.528509833362072 ], [ 72.795909049962617, 19.526800848080647 ], [ 72.787852410460331, 19.530259507570175 ], [ 72.781260612787023, 19.536566472864418 ], [ 72.777028842107342, 19.54555898645804 ], [ 72.775401238276501, 19.557196355827152 ], [ 72.770681186087799, 19.566148179594784 ], [ 72.760020378837382, 19.573065497674573 ], [ 72.741953971998143, 19.580796617669755 ], [ 72.734548373308755, 19.580796617669755 ], [ 72.738291863378763, 19.570257879897209 ], [ 72.740733269125016, 19.560736394968611 ], [ 72.739756707006379, 19.552679755466325 ], [ 72.734548373308755, 19.546616929127932 ], [ 72.749278191035657, 19.534247137495353 ], [ 72.754893424791689, 19.52704498883514 ], [ 72.755625847055157, 19.519354559565265 ], [ 72.749196811383669, 19.512600002588041 ], [ 72.741547071040472, 19.516017971352252 ], [ 72.722504102082596, 19.536281643183251 ], [ 72.710785352162233, 19.587591864472923 ], [ 72.718028191547759, 19.60667552325679 ], [ 72.709646029840357, 19.64996979397079 ], [ 72.686696811508611, 19.724798895652491 ], [ 72.694102410197999, 19.72020091384109 ], [ 72.699961784708577, 19.714178778228014 ], [ 72.704600457245235, 19.706529039683399 ], [ 72.707774285255013, 19.697455145538523 ], [ 72.726410352355842, 19.705796617419931 ], [ 72.726410352355842, 19.715236720897956 ], [ 72.718597851809349, 19.727932032936959 ], [ 72.714040560723262, 19.745835679572959 ], [ 72.717295769284291, 19.751532293880238 ], [ 72.72437584666794, 19.752671617101438 ], [ 72.731293164747711, 19.754584052412092 ], [ 72.734548373308755, 19.762640691914378 ], [ 72.734060091799776, 19.77191803608849 ], [ 72.732758009274662, 19.779730536634926 ], [ 72.728282096941186, 19.793646552446425 ], [ 72.690114780272822, 19.748968816857367 ], [ 72.677907747944161, 19.746568100937107 ], [ 72.675791863503648, 19.764146226267311 ], [ 72.679860873080756, 19.800482489075588 ], [ 72.672862175349039, 19.812811590882173 ], [ 72.650075717220531, 19.841986394856232 ], [ 72.649180534753825, 19.851996161293808 ], [ 72.659190300292082, 19.866441148440224 ], [ 72.66423587288719, 19.881577867124854 ], [ 72.666188998023799, 19.916571356682759 ], [ 72.662771030158851, 19.941799221456897 ], [ 72.665212435905161, 19.952948309316973 ], [ 72.676442905215865, 19.957505601302437 ], [ 72.684336785414288, 19.964016018424498 ], [ 72.694509311155713, 19.97931549731231 ], [ 72.703379754372108, 19.997626044006719 ], [ 72.707774285255013, 20.012762762691349 ], [ 72.707774285255013, 20.071112372437991 ], [ 72.708101837229933, 20.072644470066219 ], [ 72.708151483404194, 20.072651069291393 ], [ 72.732025995303374, 20.07569997787169 ], [ 72.751559685630966, 20.086190294346572 ], [ 72.758070916639426, 20.091564642893953 ], [ 72.770783319394624, 20.099652004136654 ], [ 72.776881138353801, 20.10148651768861 ], [ 72.782565546162957, 20.101744900107057 ], [ 72.805819940437829, 20.092546494824884 ], [ 72.810884229723371, 20.093037421239952 ], [ 72.81656863843186, 20.098334255421545 ], [ 72.822976515753552, 20.101822415372165 ], [ 72.83083133299958, 20.104044500753098 ], [ 72.8562561376106, 20.1016673848419 ], [ 72.872585890626326, 20.101796576051122 ], [ 72.897597284087325, 20.107145087076098 ], [ 72.947206658960098, 20.127402248714812 ], [ 72.970150994872469, 20.086784573549206 ], [ 72.980589633604637, 20.062367459290776 ], [ 72.989891391674334, 20.047484646199443 ], [ 72.997229444982835, 20.039810696106706 ], [ 73.001570265655161, 20.0388805201199 ], [ 73.007771437401843, 20.040043240103437 ], [ 73.015522901860365, 20.044306545510661 ], [ 73.031025831676729, 20.05647634500729 ], [ 73.039397413759588, 20.05934438733356 ], [ 73.046115350343072, 20.056708889004021 ], [ 73.05231652208974, 20.051127834881637 ], [ 73.058517693836436, 20.043531399154741 ], [ 73.063788689596308, 20.04099925451197 ], [ 73.067819451906118, 20.04081838645936 ], [ 73.072470330940945, 20.043066311161336 ], [ 73.086216261571153, 20.052678128492794 ], [ 73.093244255617876, 20.055856228282263 ], [ 73.103062779423666, 20.056243801010559 ], [ 73.109884067895379, 20.052807318802699 ], [ 73.117325473991386, 20.046089382219176 ], [ 73.123629999424892, 20.038725491388274 ], [ 73.136652459643216, 20.027227485460056 ], [ 73.142853631389912, 20.026607366936442 ], [ 73.147917921574773, 20.028080146181761 ], [ 73.153292271021471, 20.032886053948225 ], [ 73.160940382692488, 20.047484646199443 ], [ 73.165901320089787, 20.062574163966467 ], [ 73.168071730425979, 20.077663683532133 ], [ 73.166314732139128, 20.114870714012223 ], [ 73.19297977109953, 20.111020819755023 ], [ 73.202281529169213, 20.113242906035278 ], [ 73.216647577423686, 20.117971300335224 ], [ 73.23101362477891, 20.125722764793743 ], [ 73.237731561362395, 20.131381334181182 ], [ 73.243312616384102, 20.138641873123895 ], [ 73.244966261883448, 20.145824896801511 ], [ 73.245586378608408, 20.152723700538328 ], [ 73.244552849834093, 20.160242621000119 ], [ 73.244966261883448, 20.166779690430356 ], [ 73.247446729682778, 20.175332140565839 ], [ 73.25540490061563, 20.186365058500652 ], [ 73.262536249248441, 20.190938422270328 ], [ 73.271838006418804, 20.193418890969035 ], [ 73.337777134307245, 20.183729560171056 ], [ 73.355037062410446, 20.179311225132889 ], [ 73.363822055643297, 20.178303533880971 ], [ 73.377878046434645, 20.18031891548554 ], [ 73.383149042194518, 20.186313380757891 ], [ 73.383872511706997, 20.194194037324959 ], [ 73.378498163159662, 20.209955349559717 ], [ 73.377878046434645, 20.218636990005049 ], [ 73.380048455871517, 20.228326320803031 ], [ 73.389143508366189, 20.244371852978581 ], [ 73.392554152152329, 20.255921535750243 ], [ 73.394104444864155, 20.270390936792289 ], [ 73.387283156392513, 20.318346666165663 ], [ 73.386663038768162, 20.332661038476143 ], [ 73.385422805318143, 20.34105845808136 ], [ 73.383252394982023, 20.348706569752377 ], [ 73.380151808659008, 20.35364166872801 ], [ 73.376327752823485, 20.356199652691824 ], [ 73.367232700328813, 20.358912665387201 ], [ 73.363511997280781, 20.36299510274176 ], [ 73.360721470219616, 20.369377143440367 ], [ 73.364648878842658, 20.382270413348859 ], [ 73.392864211414164, 20.418495591898019 ], [ 73.442060174237582, 20.495545152087054 ], [ 73.45373904821848, 20.52029816312972 ], [ 73.45869998561578, 20.538023180125656 ], [ 73.45063846189548, 20.573834947524798 ], [ 73.448571405246113, 20.579803575274745 ], [ 73.446400994909922, 20.58406688158129 ], [ 73.443817173423767, 20.586676541489165 ], [ 73.439476352751441, 20.587632554998375 ], [ 73.427694125983052, 20.588950303713542 ], [ 73.422009719073216, 20.590319729272089 ], [ 73.416945427989091, 20.592593492395732 ], [ 73.413948195352859, 20.595978297760208 ], [ 73.411984490591735, 20.601843572722711 ], [ 73.40888390516804, 20.62471039516856 ], [ 73.406816847619368, 20.630317287712611 ], [ 73.403716262195687, 20.633598741188955 ], [ 73.396791620037206, 20.635588284371799 ], [ 73.389660272303658, 20.636518460358612 ], [ 73.380048455871517, 20.636906033086909 ], [ 73.3724003442005, 20.638611355429699 ], [ 73.366509229916957, 20.64191864732771 ], [ 73.364132114905132, 20.648455714959251 ], [ 73.364648878842658, 20.652667345321728 ], [ 73.371676873788644, 20.659488633793384 ], [ 73.404233026133213, 20.669849758159781 ], [ 73.418289016025241, 20.6836990424768 ], [ 73.429037714019259, 20.710389919858923 ], [ 73.433998651416559, 20.716281033243085 ], [ 73.438959588813916, 20.719149075569355 ], [ 73.447227818109283, 20.720027573813461 ], [ 73.45353234174415, 20.717211209229898 ], [ 73.460250279226941, 20.710648302277313 ], [ 73.464694451787452, 20.703051866550361 ], [ 73.475753208143971, 20.678712267557099 ], [ 73.481024203903857, 20.673725490838699 ], [ 73.487122022863034, 20.670495714205853 ], [ 73.495907016995176, 20.667395127882852 ], [ 73.501488072016841, 20.66460460082163 ], [ 73.538901808971247, 20.638766384161269 ], [ 73.569494255655314, 20.624865423900186 ], [ 73.586030715145327, 20.615408637098874 ], [ 73.599466587413005, 20.604582423839751 ], [ 73.623031040050407, 20.571147773251138 ], [ 73.62995568220893, 20.563861395886697 ], [ 73.637913853141725, 20.560554103988686 ], [ 73.647629022361443, 20.559158840008418 ], [ 73.699822218720371, 20.562414455962365 ], [ 73.712844679838085, 20.566471055794576 ], [ 73.736925897312275, 20.58104380872475 ], [ 73.763900994635136, 20.593730373957552 ], [ 73.78054080601332, 20.599388943345044 ], [ 73.792323032781709, 20.606184394294353 ], [ 73.800487909289515, 20.615408637098874 ], [ 73.806275668986899, 20.626441555033686 ], [ 73.810306431296723, 20.639308987419835 ], [ 73.811960076796069, 20.651530462860531 ], [ 73.809686313672373, 20.669849758159781 ], [ 73.811029900809203, 20.676903591527484 ], [ 73.839761997318291, 20.705325628774741 ], [ 73.889164666615997, 20.74064647155739 ], [ 73.8988798358357, 20.750955919080408 ], [ 73.904977654794877, 20.762686469005299 ], [ 73.909008417104744, 20.775708930123013 ], [ 73.911178827440878, 20.790359198318352 ], [ 73.911488884904074, 20.806275540184 ], [ 73.902910598145567, 20.883867702732282 ], [ 73.894539016062694, 20.907457993791347 ], [ 73.884617141267981, 20.92652659792412 ], [ 73.87500532393652, 20.962777614894996 ], [ 73.868287388252313, 20.974766547238342 ], [ 73.859502395019462, 20.982285467700134 ], [ 73.847410108989308, 20.990346991420491 ], [ 73.832837355159754, 21.003705349322384 ], [ 73.814337192707214, 21.025176906888699 ], [ 73.798627557315882, 21.048612169216192 ], [ 73.789842564083003, 21.058482367167468 ], [ 73.774649692629154, 21.062125555849711 ], [ 73.742300245859596, 21.073106797840403 ], [ 73.730518019990569, 21.087731228513345 ], [ 73.725867140955742, 21.097188015314654 ], [ 73.714291619762406, 21.111993313140882 ], [ 73.705093215379563, 21.118711248825029 ], [ 73.695171339685515, 21.122638658347391 ], [ 73.684629348165842, 21.12374970148749 ], [ 73.675430942883665, 21.123284614393409 ], [ 73.664268832840307, 21.119253852083595 ], [ 73.651659783771933, 21.118530382571059 ], [ 73.633986443619435, 21.119383043292768 ], [ 73.597399529864376, 21.139898587349929 ], [ 73.55988244012245, 21.174185899559568 ], [ 73.552751092388959, 21.184831243866761 ], [ 73.551924270088918, 21.190670681306866 ], [ 73.553474561901439, 21.195476589073333 ], [ 73.55833214741061, 21.198112087402873 ], [ 73.566703728594163, 21.197595323465404 ], [ 73.576935662650655, 21.194598089929908 ], [ 73.632022739757574, 21.165917670264257 ], [ 73.639154086591802, 21.164522406283989 ], [ 73.646595492687808, 21.166511949466891 ], [ 73.653726841320605, 21.170232652514866 ], [ 73.662615187340961, 21.172480577216838 ], [ 73.671606887048114, 21.171627916495137 ], [ 73.680288526594197, 21.169173285318831 ], [ 73.687419875227008, 21.166434434201726 ], [ 73.693000930248658, 21.164884142389266 ], [ 73.696101515672325, 21.164677435914935 ], [ 73.69806522043352, 21.165581773480024 ], [ 73.71470503091237, 21.180593776881263 ], [ 73.723386672257092, 21.186278183791153 ], [ 73.733205194264229, 21.191264960509493 ], [ 73.744470656195787, 21.19508901634503 ], [ 73.755632766239131, 21.197156072994343 ], [ 73.766898228170618, 21.203796495212085 ], [ 73.77744021969032, 21.216638088277129 ], [ 73.792736443931673, 21.264878038490675 ], [ 73.800074497240232, 21.280949408188629 ], [ 73.808446079323048, 21.285884508063582 ], [ 73.81661095583091, 21.283507392152384 ], [ 73.832010532859769, 21.268495387851821 ], [ 73.841312290030132, 21.265808214477484 ], [ 73.853714634422815, 21.267771918339342 ], [ 73.909628533829718, 21.286918035938577 ], [ 73.918620232637565, 21.291568914973418 ], [ 73.929472284318408, 21.308518784714121 ], [ 73.946422154059107, 21.373501899093352 ], [ 73.960168084689286, 21.394379177457036 ], [ 73.974430780156339, 21.406859036215504 ], [ 73.991897413834508, 21.416186631807584 ], [ 74.007090285288399, 21.427245388164117 ], [ 74.030448033250067, 21.452101751994228 ], [ 74.042230259119137, 21.46179108279221 ], [ 74.053495721050624, 21.465718492314572 ], [ 74.063417595845337, 21.462695421256679 ], [ 74.087395461431342, 21.452876899249468 ], [ 74.098247512212865, 21.450913194488287 ], [ 74.108686150945033, 21.451559150534361 ], [ 74.24056440582261, 21.486130683584175 ], [ 74.264955681659316, 21.496362615842024 ], [ 74.280768670737515, 21.505405992392632 ], [ 74.291517367832213, 21.513855088841236 ], [ 74.296788365390725, 21.520185451797143 ], [ 74.299992302702535, 21.527911077833945 ], [ 74.300819125901896, 21.536980291906954 ], [ 74.299578891552571, 21.545506904520035 ], [ 74.297201775641369, 21.553077500925891 ], [ 74.291310663156523, 21.566306668517932 ], [ 74.288830193558553, 21.570647488290938 ], [ 74.285419548873037, 21.573102118567867 ], [ 74.279838494750706, 21.574032294554733 ], [ 74.272913852592168, 21.572740383361968 ], [ 74.265369093708657, 21.569536445150785 ], [ 74.248832635117978, 21.559640407878472 ], [ 74.239634229835801, 21.555377102471308 ], [ 74.229609003152902, 21.552431544879873 ], [ 74.191575147674868, 21.545506904520035 ], [ 74.182583448867021, 21.547418932437775 ], [ 74.175555453921035, 21.553232530556837 ], [ 74.169354283073673, 21.560053819028493 ], [ 74.161499464928326, 21.566229153252774 ], [ 74.155504998756655, 21.568838813160703 ], [ 74.146513299049488, 21.570699164235002 ], [ 74.137211541879125, 21.569717312304075 ], [ 74.131837193331748, 21.567779445964611 ], [ 74.128736607008747, 21.56485972679496 ], [ 74.125119255848958, 21.559407863881798 ], [ 74.119434848939065, 21.554834500112062 ], [ 74.108996210206882, 21.552612412932486 ], [ 74.03788943934606, 21.559330349516014 ], [ 74.018975864844236, 21.558891099944272 ], [ 73.995928176144375, 21.555325426527183 ], [ 73.954897088929485, 21.543775742856209 ], [ 73.923891229296757, 21.531321723418781 ], [ 73.856401808696475, 21.520883083787275 ], [ 73.827256301037423, 21.509049181074825 ], [ 73.820848422816397, 21.508325711562346 ], [ 73.815577427056539, 21.511529648874156 ], [ 73.811236607283533, 21.518040879882669 ], [ 73.800177850027737, 21.540468450958194 ], [ 73.792736443931673, 21.552586575410086 ], [ 73.763280877910148, 21.585659490792857 ], [ 73.757183058950986, 21.596304836898693 ], [ 73.751602003929278, 21.611032620359136 ], [ 73.754082472627985, 21.618835760761723 ], [ 73.762040642661447, 21.623770859737359 ], [ 73.792736443931673, 21.626742254851134 ], [ 73.810926548021754, 21.634726264205707 ], [ 73.828599888174253, 21.650926825112887 ], [ 73.83914187969394, 21.682191067164009 ], [ 73.837178175832079, 21.697590644192864 ], [ 73.827359653824928, 21.707409166200016 ], [ 73.815680779844044, 21.714152940305947 ], [ 73.807515904235558, 21.724514065571665 ], [ 73.803485141925691, 21.739784451391298 ], [ 73.806068964311223, 21.753840440384007 ], [ 73.805035434637517, 21.766527003818165 ], [ 73.79676720624154, 21.794483953971277 ], [ 73.796043735829684, 21.805155138498826 ], [ 73.797594029440845, 21.813423366894821 ], [ 73.809376255309914, 21.836471056494013 ], [ 73.824155714714408, 21.842155463403909 ], [ 73.832940707947259, 21.84355072738412 ], [ 73.870871209738468, 21.854661160584094 ], [ 73.899499952560731, 21.869828192716902 ], [ 73.91758670386325, 21.866882636024791 ], [ 73.942701451011132, 21.874608262960972 ], [ 73.965025669299152, 21.887785752810196 ], [ 73.97463748573135, 21.901169949133809 ], [ 74.061040479934135, 21.94031484595336 ], [ 74.128839959796238, 21.951761175937516 ], [ 74.151164178084329, 21.94757538489608 ], [ 74.182790155341337, 21.92925609049615 ], [ 74.204907668054418, 21.92507029945471 ], [ 74.228162062329247, 21.926181341695546 ], [ 74.249039340692988, 21.929772854433676 ], [ 74.267746209619844, 21.935922350236236 ], [ 74.284386020998042, 21.944939887465804 ], [ 74.287796664784182, 21.949978339228945 ], [ 74.288623487983543, 21.956489570237459 ], [ 74.288726840771048, 21.962458197987413 ], [ 74.289967076019678, 21.966023871404495 ], [ 74.294617954155214, 21.967858384956454 ], [ 74.306090121661711, 21.969847927240032 ], [ 74.320559522703761, 21.976126614251822 ], [ 74.342366977953631, 21.982043565158389 ], [ 74.351978794385829, 21.98651357703994 ], [ 74.391769647251394, 22.021705226814724 ], [ 74.407685988217722, 22.023048813951554 ], [ 74.428046502643937, 22.006150621054296 ], [ 74.485614048449506, 21.945973416240172 ], [ 74.494192336107389, 21.917008774835089 ], [ 74.491918572983693, 21.90427053545681 ], [ 74.486957634687016, 21.820141303478348 ], [ 74.488197869935718, 21.805077623233725 ], [ 74.491608513721857, 21.794561469236381 ], [ 74.503494094177071, 21.772909044516773 ], [ 74.506904737963211, 21.763736476757 ], [ 74.509178501086907, 21.736063748343263 ], [ 74.512485792984918, 21.72691701900521 ], [ 74.521167434329556, 21.717563584991403 ], [ 74.534499952910423, 21.707564194931642 ], [ 74.55951134637148, 21.692087104436322 ], [ 74.591550733879203, 21.667876694853582 ], [ 74.608190546156692, 21.658910834467402 ], [ 74.66090050555384, 21.645294094147115 ], [ 74.672579380433987, 21.636147365708322 ], [ 74.682707960803711, 21.626173814070221 ], [ 74.694800245934559, 21.616923732843979 ], [ 74.708132766314051, 21.611161811568302 ], [ 74.731077102226422, 21.608603826705231 ], [ 74.763839960146001, 21.608448797973605 ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Andaman and Nicobar", "admin": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 93.855316601779663, 7.214178778028154 ], [ 93.865000846911499, 7.200669664073698 ], [ 93.870371940812362, 7.180568752445934 ], [ 93.876719596831862, 7.163560289176018 ], [ 93.880625847105108, 7.144273179463652 ], [ 93.883148634302003, 7.104722397920339 ], [ 93.887054883675873, 7.089300848655226 ], [ 93.903086784827195, 7.060858466045373 ], [ 93.912933790162214, 7.035101629936262 ], [ 93.920258009199685, 7.024318752308544 ], [ 93.928721549659755, 7.012355861633693 ], [ 93.929860872880951, 6.959051825381435 ], [ 93.921071811115127, 6.933823960607298 ], [ 93.893565299898597, 6.876776434284976 ], [ 93.889414909770181, 6.841782945626447 ], [ 93.892832879433783, 6.834051825631262 ], [ 93.899261915105271, 6.827134507551476 ], [ 93.904144727497084, 6.819240627353053 ], [ 93.903086784827195, 6.808294989522151 ], [ 93.898448113189801, 6.80418528921973 ], [ 93.889903191279174, 6.800970770484637 ], [ 93.880056185944156, 6.800441799149722 ], [ 93.871755404788061, 6.80451080962615 ], [ 93.859385613155482, 6.80426666887166 ], [ 93.847911003989594, 6.785305080465092 ], [ 93.83423912893258, 6.745550847993227 ], [ 93.81267337277788, 6.753973700425943 ], [ 93.809336785464183, 6.769029039458585 ], [ 93.813243034838123, 6.788031317691149 ], [ 93.813731316347088, 6.808294989522151 ], [ 93.805430535190993, 6.816717841055491 ], [ 93.792165561091707, 6.825873113953035 ], [ 93.784434441096536, 6.836411850826265 ], [ 93.793223503761595, 6.849188544315836 ], [ 93.783702018833054, 6.857977606081645 ], [ 93.775726758982699, 6.867377020633 ], [ 93.773122592133845, 6.877997137158159 ], [ 93.779551628704652, 6.89020416948682 ], [ 93.770762566039522, 6.893866278106258 ], [ 93.766123894402128, 6.901109117491783 ], [ 93.764496289671939, 6.911525783088392 ], [ 93.765310092486729, 6.924302476578019 ], [ 93.748057488462265, 6.923570054314551 ], [ 93.737478060863765, 6.943264064984588 ], [ 93.728770378749886, 6.970526434547308 ], [ 93.717539910338516, 6.992621161137661 ], [ 93.703623894527055, 7.006293036194675 ], [ 93.684336784814704, 7.020900783544333 ], [ 93.664561394492736, 7.026516018199684 ], [ 93.649180535053617, 7.01308828299784 ], [ 93.649668815663276, 7.119614975850423 ], [ 93.653575065936451, 7.131496485974024 ], [ 93.676442905515586, 7.181870834971049 ], [ 93.685394727484635, 7.184515692545175 ], [ 93.707530143900925, 7.18439362216793 ], [ 93.717295768684707, 7.187689520554896 ], [ 93.724619987722221, 7.194973048867097 ], [ 93.730153841826251, 7.202215887353303 ], [ 93.734629754159783, 7.205511786639645 ], [ 93.739919467509353, 7.207098700644506 ], [ 93.765310092486729, 7.219142970971346 ], [ 93.772146030015193, 7.211737372281901 ], [ 93.79761803554382, 7.234605210062396 ], [ 93.813975457101577, 7.241848049447922 ], [ 93.830821160168313, 7.235907294386093 ], [ 93.855316601779663, 7.214178778028154 ] ] ], [ [ [ 93.644216342110425, 7.257513739467468 ], [ 93.628184440959132, 7.253322658613794 ], [ 93.617930534666399, 7.259955145213778 ], [ 93.616384311386796, 7.267279364251236 ], [ 93.617442254056741, 7.276068426916365 ], [ 93.615082227063098, 7.287420966604313 ], [ 93.610850457282737, 7.294501043987961 ], [ 93.594004754215945, 7.314764716718284 ], [ 93.606944207009505, 7.326402085188077 ], [ 93.610362174874396, 7.34731679963056 ], [ 93.616709831793258, 7.367254950155823 ], [ 93.638682488006367, 7.376166083198141 ], [ 93.667246940993465, 7.382757879972187 ], [ 93.677989128795204, 7.39940013211037 ], [ 93.68376712275446, 7.421698309629276 ], [ 93.696950717201759, 7.44505442891875 ], [ 93.696950717201759, 7.41779205935603 ], [ 93.699473504398654, 7.398749091297529 ], [ 93.709483269037577, 7.388739324859954 ], [ 93.721690300466932, 7.38117096596727 ], [ 93.73121178539553, 7.369370835495658 ], [ 93.734385613405294, 7.35081614804676 ], [ 93.72852623799541, 7.337103583163808 ], [ 93.715505404650656, 7.32583242402711 ], [ 93.696950717201759, 7.314764716718284 ], [ 93.679209831668331, 7.298325914609277 ], [ 93.644216342110425, 7.257513739467468 ] ] ], [ [ [ 93.433116082441174, 7.954291083166934 ], [ 93.459808789943665, 7.910793361524383 ], [ 93.460459831655811, 7.899847723693481 ], [ 93.457367384197354, 7.880194402849382 ], [ 93.454437696042788, 7.869289454844474 ], [ 93.447927279820064, 7.871405341083627 ], [ 93.436859570712542, 7.883286851207229 ], [ 93.421234571418296, 7.891791083291819 ], [ 93.415049674702658, 7.892238674075541 ], [ 93.402110221909169, 7.890082098010394 ], [ 93.389170769115637, 7.885809637504733 ], [ 93.378428582213218, 7.880764064909668 ], [ 93.367849155514065, 7.878607488844521 ], [ 93.354258660109039, 7.883286851207229 ], [ 93.34498131593493, 7.891343492508153 ], [ 93.340342644297536, 7.90127187749516 ], [ 93.34107506566167, 7.912583726457794 ], [ 93.348155143944695, 7.924872137539124 ], [ 93.340668164703942, 7.931708075067601 ], [ 93.332692904853587, 7.924953518090375 ], [ 93.323008659721822, 7.924383856030144 ], [ 93.313649935895768, 7.929185289669362 ], [ 93.306651238164065, 7.938544012596081 ], [ 93.305023634333196, 7.949937242110023 ], [ 93.313324415489291, 7.989732164407825 ], [ 93.32260175876408, 8.002101955141084 ], [ 93.344411654774007, 8.012111721578661 ], [ 93.370290561260305, 8.017320054377022 ], [ 93.391368035006778, 8.015570380168922 ], [ 93.394786003770975, 8.006740627677798 ], [ 93.396169466847354, 7.99721914364852 ], [ 93.396006707543492, 7.976385808857969 ], [ 93.401215040341782, 7.967962958223947 ], [ 93.424164258673542, 7.959865627096972 ], [ 93.429453972023154, 7.955267645285572 ], [ 93.433116082441174, 7.954291083166934 ] ] ], [ [ [ 93.565928581838506, 7.999335028089035 ], [ 93.570323112721411, 7.988999742144356 ], [ 93.574229362994657, 7.968817449965341 ], [ 93.573985222240182, 7.924872137539124 ], [ 93.518321159893532, 7.9658063821588 ], [ 93.510752800101585, 7.980169989653289 ], [ 93.511485222365067, 7.995510158367095 ], [ 93.520762566539176, 8.004380601583476 ], [ 93.539317253988017, 7.999335028089035 ], [ 93.54029381610664, 8.016180731155826 ], [ 93.548350457407622, 8.020086981429015 ], [ 93.558604362801063, 8.013617255032271 ], [ 93.565928581838506, 7.999335028089035 ] ] ], [ [ [ 93.525157097422081, 8.095038153487961 ], [ 93.537608268706592, 8.057318427603319 ], [ 93.537364128851408, 8.047796942674777 ], [ 93.531911655298558, 8.034735419503987 ], [ 93.528005405025382, 8.032416083235658 ], [ 93.514903191129321, 8.027655341221019 ], [ 93.511973503874032, 8.0241559919055 ], [ 93.509776237982962, 8.018540757250149 ], [ 93.494965039704752, 7.996283270456556 ], [ 93.484385613005585, 7.991888739573651 ], [ 93.479258659859198, 8.00291575705654 ], [ 93.477305534722603, 8.030991929433979 ], [ 93.480804884038122, 8.040513414362577 ], [ 93.488536004033307, 8.04437897301119 ], [ 93.495616082316289, 8.049383856679638 ], [ 93.497813347308053, 8.061997789066707 ], [ 93.505218945997484, 8.061997789066707 ], [ 93.514821811477333, 8.056219794208117 ], [ 93.516937695917861, 8.063299872491084 ], [ 93.511485222365067, 8.074855861308945 ], [ 93.497813347308053, 8.082505601652199 ], [ 93.492198112652687, 8.063625392897562 ], [ 93.479746941368191, 8.063218491939834 ], [ 93.466319207065709, 8.074408270525224 ], [ 93.457367384197354, 8.089992579993575 ], [ 93.446625196395615, 8.154364325353297 ], [ 93.446543815844379, 8.164496161268799 ], [ 93.454844597000474, 8.170111395024831 ], [ 93.465098504192525, 8.183294989472186 ], [ 93.473643425203861, 8.198187567402327 ], [ 93.477305534722603, 8.209133205233227 ], [ 93.485850457532521, 8.220119532890122 ], [ 93.504649284836589, 8.226996161143914 ], [ 93.523448113039905, 8.225816148096724 ], [ 93.531667514544083, 8.213202216608975 ], [ 93.531016471932588, 8.193752346693428 ], [ 93.52149498790331, 8.179103908618456 ], [ 93.510508660246416, 8.166571355883375 ], [ 93.505218945997484, 8.14704010631584 ], [ 93.508555535109778, 8.128810940172739 ], [ 93.525157097422081, 8.095038153487961 ] ] ], [ [ [ 93.176280144513029, 8.212876695303235 ], [ 93.167328320745327, 8.204535223421827 ], [ 93.153493686384451, 8.205511786439784 ], [ 93.124685091743544, 8.212876695303235 ], [ 93.102549675327197, 8.221502996865807 ], [ 93.081553582132045, 8.242377020583033 ], [ 93.065765820835878, 8.268133856692144 ], [ 93.059580925019617, 8.29140859632963 ], [ 93.061289910301042, 8.32074616140619 ], [ 93.064300977208276, 8.336127019945989 ], [ 93.069834832211697, 8.346625066993225 ], [ 93.08375084712381, 8.355902411167333 ], [ 93.095062696086501, 8.355169988903864 ], [ 93.101410352106001, 8.345770575251832 ], [ 93.100759311293118, 8.299261786702059 ], [ 93.104014518954813, 8.275580145207526 ], [ 93.11410566504432, 8.256415105872405 ], [ 93.134532097078576, 8.240179755591212 ], [ 93.160817905421922, 8.228745835352013 ], [ 93.173024935952, 8.221258856111318 ], [ 93.176280144513029, 8.212876695303235 ] ] ], [ [ [ 93.609711134061541, 8.438421942118906 ], [ 93.601410352006084, 8.438177802263736 ], [ 93.600352410235516, 8.45034414296782 ], [ 93.607106967212687, 8.490790106078519 ], [ 93.607676629272959, 8.507066147984343 ], [ 93.595550977495549, 8.541734117135771 ], [ 93.594981316334639, 8.558010158142279 ], [ 93.607676629272959, 8.569159246901732 ], [ 93.607676629272959, 8.548041083329336 ], [ 93.621755405287644, 8.520086981329085 ], [ 93.626800976983446, 8.505845445111161 ], [ 93.628184440959132, 8.486558335398852 ], [ 93.625173373152606, 8.473618882605306 ], [ 93.618337436523447, 8.45392487193527 ], [ 93.609711134061541, 8.438421942118906 ] ] ], [ [ [ 92.831981322679823, 9.145025416989368 ], [ 92.799564662379197, 9.110154001406043 ], [ 92.731211784696058, 9.13084544566078 ], [ 92.720225457039163, 9.147121486667286 ], [ 92.711680535128522, 9.175116278493418 ], [ 92.708506707118744, 9.201605535966676 ], [ 92.713877800120301, 9.21344635626434 ], [ 92.72925866045874, 9.217840887147188 ], [ 92.745127800507518, 9.229071356457892 ], [ 92.754405143782307, 9.244452215897011 ], [ 92.750987175018025, 9.261216539311816 ], [ 92.763031446244199, 9.264146226567105 ], [ 92.772715691375964, 9.259222723449907 ], [ 92.795271686539053, 9.24081809238106 ], [ 92.811373271659122, 9.231169962223985 ], [ 92.833849293709861, 9.202359329719284 ], [ 92.831981322679823, 9.145025416989368 ] ] ], [ [ [ 92.582116254761317, 10.790261387353151 ], [ 92.585091711213451, 10.771268527720336 ], [ 92.586986317464536, 10.736294028246785 ], [ 92.598058744415468, 10.709302238607391 ], [ 92.595907640724974, 10.67836360239829 ], [ 92.574491581221466, 10.65548417955125 ], [ 92.561240165301314, 10.642554827942941 ], [ 92.551055523893282, 10.634602820963378 ], [ 92.539835117996219, 10.62066933851912 ], [ 92.541759749912472, 10.591720078218996 ], [ 92.555964031714652, 10.588675203997466 ], [ 92.574213072874926, 10.580623723905713 ], [ 92.546675348888158, 10.547781204039321 ], [ 92.535423313834798, 10.524860951072013 ], [ 92.513027076038654, 10.50796892842328 ], [ 92.479557700827144, 10.516073275161487 ], [ 92.463371930170396, 10.531103139098603 ], [ 92.444139152999441, 10.545142522109698 ], [ 92.421787934365597, 10.546203259872525 ], [ 92.406466135203885, 10.529265955459433 ], [ 92.384110723031412, 10.529328010479274 ], [ 92.378057105750756, 10.541328843551296 ], [ 92.402556537654021, 10.575206237577786 ], [ 92.41385518636767, 10.606117140493607 ], [ 92.417003414276081, 10.629058572495124 ], [ 92.408916971241169, 10.647054595693017 ], [ 92.390674252314824, 10.663085336718892 ], [ 92.379486138374517, 10.672121596934117 ], [ 92.378585862147744, 10.718070586288487 ], [ 92.37867064303569, 10.750037311272875 ], [ 92.375680467379638, 10.775030574401452 ], [ 92.376721443439777, 10.784019970045559 ], [ 92.38587826227193, 10.78198117459152 ], [ 92.407264641449999, 10.789890639141673 ], [ 92.415419663186839, 10.798862791184828 ], [ 92.422597927652177, 10.822836241998967 ], [ 92.428965690713966, 10.85081614824662 ], [ 92.482796306104589, 10.885621584168744 ], [ 92.527591740466377, 10.895465574076978 ], [ 92.54887977068482, 10.874373390119841 ], [ 92.565059531172366, 10.849308437534374 ], [ 92.567981457278378, 10.815300556375572 ], [ 92.582116254761317, 10.790261387353151 ] ] ], [ [ [ 92.6460067072437, 11.359076239476845 ], [ 92.635020378687486, 11.357896226429713 ], [ 92.619639519248366, 11.360744533133696 ], [ 92.610850457482542, 11.366156316860494 ], [ 92.603770379199588, 11.372503972880052 ], [ 92.593516472007508, 11.378363348289893 ], [ 92.598968946459621, 11.401312567520959 ], [ 92.600840691044979, 11.406317450290087 ], [ 92.608164910082493, 11.411322333059214 ], [ 92.623871289928019, 11.412502346106347 ], [ 92.63119550896549, 11.416245835277035 ], [ 92.63721764367925, 11.43016185108854 ], [ 92.635264519441975, 11.447007554155274 ], [ 92.627614779998027, 11.477362372075785 ], [ 92.635590039848395, 11.508042710402774 ], [ 92.654144727297293, 11.508124090954023 ], [ 92.675059440840442, 11.490423895246575 ], [ 92.689707878915428, 11.467759507495257 ], [ 92.696299674790097, 11.454413152844719 ], [ 92.689707878915428, 11.442531643620439 ], [ 92.679698113377157, 11.429388738999076 ], [ 92.676524285367435, 11.412543035932341 ], [ 92.685069207278033, 11.399359442384362 ], [ 92.696787957198396, 11.391791083491681 ], [ 92.699880404656923, 11.38442617462823 ], [ 92.682790560835628, 11.371527411660676 ], [ 92.673187696255113, 11.367336329907683 ], [ 92.6460067072437, 11.359076239476845 ] ] ], [ [ [ 92.273203972085568, 11.531073309285771 ], [ 92.252126498339152, 11.529242255425741 ], [ 92.234548373008963, 11.54035065345988 ], [ 92.230235221777988, 11.577337957980372 ], [ 92.217295768984499, 11.591253972892499 ], [ 92.217295768984499, 11.598089911320356 ], [ 92.228688998498427, 11.59772370018862 ], [ 92.254893425391217, 11.593817449915376 ], [ 92.266774936414137, 11.589544989409715 ], [ 92.278086785376757, 11.583807684377117 ], [ 92.286875847142582, 11.5631778023137 ], [ 92.285004101657904, 11.544012762079317 ], [ 92.273203972085568, 11.531073309285771 ] ] ], [ [ [ 93.066416863447415, 11.899115302429264 ], [ 93.049327018726885, 11.896144924448659 ], [ 93.035411003814701, 11.911932683946187 ], [ 93.026540561497626, 11.931626695515545 ], [ 93.024912956767466, 11.94013092760019 ], [ 93.01539147183891, 11.945990302110712 ], [ 93.001312695824168, 11.949204819946484 ], [ 92.990570508921778, 11.95441315364411 ], [ 92.980235222077766, 11.963690496918897 ], [ 92.974457227219176, 11.972235418829481 ], [ 92.967539910038781, 11.978583074848981 ], [ 92.953135612718285, 11.981105861146542 ], [ 92.947032097453274, 11.989691472883178 ], [ 92.957204623194727, 12.008693752015002 ], [ 92.972178581676175, 12.02773672097288 ], [ 92.980723504486079, 12.036322333608776 ], [ 93.014659050474705, 12.037176825350171 ], [ 93.02540123827643, 12.031561591594139 ], [ 93.018565299848646, 12.015814520123964 ], [ 93.040375195858573, 11.969061591719079 ], [ 93.042491082097712, 11.961167710621336 ], [ 93.048675977014668, 11.952785548913933 ], [ 93.066416863447415, 11.899115302429264 ] ] ], [ [ [ 93.103282096691359, 12.102036851319609 ], [ 93.094248894171059, 12.090969143111463 ], [ 93.085459832405306, 12.095851955503345 ], [ 93.074229363094602, 12.110337632475758 ], [ 93.064300977208276, 12.1271426457165 ], [ 93.059580925019617, 12.138739325259618 ], [ 93.059336785164447, 12.153550523537827 ], [ 93.061534050156212, 12.172308661015903 ], [ 93.066254102344871, 12.18984609652011 ], [ 93.073252800076588, 12.200832424177007 ], [ 93.082041862741704, 12.204779364276247 ], [ 93.091075066161324, 12.204250392941274 ], [ 93.098480664850712, 12.199408270375383 ], [ 93.103282096691359, 12.190497137333008 ], [ 93.103770379099643, 12.187933661209453 ], [ 93.103851758751588, 12.185288804534704 ], [ 93.103282096691359, 12.180080470837023 ], [ 93.096202019307711, 12.158758856336132 ], [ 93.094981316434513, 12.151760158604414 ], [ 93.102305535472027, 12.11953359609856 ], [ 93.103282096691359, 12.102036851319609 ] ] ], [ [ [ 93.872813347457949, 12.268866278156223 ], [ 93.853770379399435, 12.260565497000069 ], [ 93.851898633914772, 12.271551825556285 ], [ 93.860606316028594, 12.281195379962806 ], [ 93.872813347457949, 12.268866278156223 ] ] ], [ [ [ 92.694672070959228, 12.803778387062888 ], [ 92.682790560835628, 12.797308661565465 ], [ 92.67025800899988, 12.867661850913688 ], [ 92.672862174949373, 12.878607489643908 ], [ 92.677744988240562, 12.890366929390265 ], [ 92.684906446175475, 12.945054429618207 ], [ 92.682790560835628, 12.96173737248176 ], [ 92.695078971916971, 12.973456122402123 ], [ 92.702403190954414, 12.983058986083332 ], [ 92.708343946016242, 12.988674221638004 ], [ 92.716970248478134, 12.988470770709508 ], [ 92.722504101682873, 12.985785223309389 ], [ 92.727061393668322, 12.982001044312707 ], [ 92.730723504086413, 12.977484442153239 ], [ 92.733083530180735, 12.972479559384166 ], [ 92.737478061063641, 12.96173737248176 ], [ 92.732188346814709, 12.945705471330424 ], [ 92.729991081822888, 12.895209051956154 ], [ 92.724375847167522, 12.872381903102335 ], [ 92.717621290190309, 12.862209377360839 ], [ 92.701508009387084, 12.84442780200146 ], [ 92.697113476705553, 12.838202216359205 ], [ 92.695078971916971, 12.825100002463099 ], [ 92.696543816443906, 12.813299871991486 ], [ 92.694672070959228, 12.803778387062888 ] ] ], [ [ [ 94.290782097016091, 13.422919012202609 ], [ 94.274912956967313, 13.420314846253119 ], [ 94.261892122723211, 13.429266669121487 ], [ 94.280935091681073, 13.443548895165346 ], [ 94.290782097016091, 13.422919012202609 ] ] ], [ [ [ 93.016286655204894, 13.567368881868388 ], [ 93.022797071427618, 13.566107489169267 ], [ 93.031586134092763, 13.569077867149813 ], [ 93.042491082097712, 13.571234442315639 ], [ 93.049978061338408, 13.566392320649069 ], [ 93.066416863447415, 13.537095445398448 ], [ 93.055023633933487, 13.503078517959237 ], [ 93.053721550509096, 13.471421617513609 ], [ 93.059580925019617, 13.406805731399343 ], [ 93.064138217005024, 13.40863678615875 ], [ 93.075450065967715, 13.411118882630317 ], [ 93.080088738504429, 13.413031317041655 ], [ 93.078379754122281, 13.397121486267562 ], [ 93.057871941536831, 13.382879950049638 ], [ 93.052744988390472, 13.368882554586204 ], [ 93.046885612980574, 13.357407945420331 ], [ 93.033457878678092, 13.348578192029944 ], [ 93.017344596975505, 13.340480860902968 ], [ 93.004242383978792, 13.331040757424997 ], [ 93.003672721918491, 13.348618881855881 ], [ 92.995127800007907, 13.357367255594337 ], [ 92.984385613105502, 13.356431382402375 ], [ 92.977061394067988, 13.345363674194171 ], [ 92.979340040510394, 13.329779363826557 ], [ 92.990489129269832, 13.317816473151705 ], [ 93.004567905284517, 13.311835028263941 ], [ 93.025563998479683, 13.316148179494856 ], [ 93.035655143669871, 13.306952215872055 ], [ 93.052744988390472, 13.283880927163064 ], [ 93.075694206722204, 13.269110419610168 ], [ 93.079437695892892, 13.25983307543606 ], [ 93.056895379418137, 13.224798895152899 ], [ 93.0525822272879, 13.196966864429211 ], [ 93.052744988390472, 13.133042709853154 ], [ 93.048106315853758, 13.103705145675914 ], [ 93.036794466891067, 13.062160549170015 ], [ 93.019541862866589, 13.033636786008852 ], [ 92.998057488162473, 13.043687242272425 ], [ 92.990570508921778, 13.043687242272425 ], [ 92.98682701885177, 13.033677475834846 ], [ 92.979340040510394, 13.029527085706432 ], [ 92.970876498251741, 13.030747789478877 ], [ 92.964040560723262, 13.036851303844568 ], [ 92.96143639387445, 13.048163153706579 ], [ 92.966563347020809, 13.07217031560759 ], [ 92.964040560723262, 13.084662177617357 ], [ 92.956553582381886, 13.084662177617357 ], [ 92.956553582381886, 13.064154364132602 ], [ 92.937022331915017, 13.067084052287154 ], [ 92.928884310962104, 13.050197658495104 ], [ 92.928396030352459, 13.027492580018528 ], [ 92.932627800132792, 13.013006903046115 ], [ 92.950694206972045, 12.993638414581138 ], [ 92.956228061076075, 12.981675523006967 ], [ 92.952647332108626, 12.970770575002005 ], [ 92.942881707324872, 12.954291083067002 ], [ 92.93604576889706, 12.954291083067002 ], [ 92.934743686371959, 12.973049221444395 ], [ 92.927419467334488, 12.98102448129475 ], [ 92.916514519329539, 12.982652085125604 ], [ 92.905284050018835, 12.982245184167876 ], [ 92.902598504417398, 12.974025783563032 ], [ 92.880707226956915, 12.930405992442557 ], [ 92.879079623126046, 12.921942450183902 ], [ 92.87631269607401, 12.916652735934973 ], [ 92.876800976683654, 12.911525783687974 ], [ 92.884532096678839, 12.903469143286312 ], [ 92.896332227150523, 12.899725653216306 ], [ 92.905528190773325, 12.906073309235804 ], [ 92.915537957210887, 12.91958242408958 ], [ 92.924489780079199, 12.914374091291275 ], [ 92.928233269249887, 12.905340886972338 ], [ 92.929860873080756, 12.896673895583771 ], [ 92.932627800132792, 12.892889716587147 ], [ 92.940684441433788, 12.889308986720319 ], [ 92.964040560723262, 12.864935614586951 ], [ 92.960703972510245, 12.847154039227517 ], [ 92.965830924757284, 12.825628972898752 ], [ 92.968028191547759, 12.803168036075986 ], [ 92.956553582381886, 12.783026434622226 ], [ 92.973155143794799, 12.764349677695462 ], [ 92.984385613105502, 12.74510325690977 ], [ 92.990489129269832, 12.724310614643112 ], [ 92.990570508921778, 12.701117255556877 ], [ 92.976817254212818, 12.654933986514262 ], [ 92.972911003939629, 12.628119208634528 ], [ 92.989024284742896, 12.592108466232727 ], [ 92.991547071040401, 12.567084052387084 ], [ 92.990570508921778, 12.519232489687621 ], [ 92.981700065705382, 12.506048895240323 ], [ 92.964854363537981, 12.491034246932937 ], [ 92.955902539770349, 12.477443752427231 ], [ 92.970225457438829, 12.468329169355682 ], [ 92.962412956892393, 12.454413153544179 ], [ 92.949717643954031, 12.446966864129475 ], [ 92.938649935745872, 12.438137111638353 ], [ 92.93604576889706, 12.41990794549525 ], [ 92.929209832267901, 12.41990794549525 ], [ 92.923838738367053, 12.430975653703452 ], [ 92.915863476718002, 12.440863347965145 ], [ 92.906016472282289, 12.448960679092066 ], [ 92.895030143726075, 12.454657294298666 ], [ 92.897146029965242, 12.449937242110021 ], [ 92.901866082153873, 12.433539129826952 ], [ 92.873301629166775, 12.431382554661125 ], [ 92.846690300416952, 12.433539129826952 ], [ 92.846690300416952, 12.427394923836628 ], [ 92.853526237945445, 12.41681549713746 ], [ 92.863617384034995, 12.385484117098311 ], [ 92.871104363275691, 12.378892320324324 ], [ 92.881846550178111, 12.375921942343719 ], [ 92.894053582506771, 12.368109442696605 ], [ 92.902517122966771, 12.357123114140389 ], [ 92.901866082153873, 12.344794012333805 ], [ 92.915049674802603, 12.338364976662316 ], [ 92.912771030158851, 12.333644924473672 ], [ 92.903168164678988, 12.329087632488207 ], [ 92.895030143726075, 12.323675847862088 ], [ 92.886403842163517, 12.31574127783767 ], [ 92.881114128813962, 12.314601955515794 ], [ 92.879242384228604, 12.312974351684941 ], [ 92.880707226956915, 12.303859768613389 ], [ 92.885752800451286, 12.295558986557976 ], [ 92.893402539895234, 12.290350652860353 ], [ 92.900157096872448, 12.283189194925397 ], [ 92.901866082153873, 12.269029039258724 ], [ 92.896250847498536, 12.261704820221267 ], [ 92.886403842163517, 12.253363348339857 ], [ 92.879893425041445, 12.243597723556091 ], [ 92.884532096678839, 12.231838282910413 ], [ 92.888682487706575, 12.225002346281254 ], [ 92.892588737979835, 12.214544989059956 ], [ 92.894216341810676, 12.205023505030734 ], [ 92.891612174961864, 12.200832424177007 ], [ 92.872569206903322, 12.201483465889222 ], [ 92.874522332039902, 12.18374258035578 ], [ 92.864024284992666, 12.171535548926439 ], [ 92.842946811246264, 12.156195380212635 ], [ 92.827403190704644, 12.140122789235305 ], [ 92.833669467072156, 12.125677802088884 ], [ 92.833669467072156, 12.118231512674125 ], [ 92.825938347076971, 12.115668036550627 ], [ 92.806407097509492, 12.10455963761717 ], [ 92.808929883807011, 12.095770574952038 ], [ 92.799327019226467, 12.089544989309783 ], [ 92.783946159787419, 12.085882880690402 ], [ 92.768809441102775, 12.084702867643212 ], [ 92.757497592140098, 12.077460028257688 ], [ 92.767263216923851, 12.061224677077176 ], [ 92.792653841901227, 12.036322333608776 ], [ 92.78101647253213, 12.037787177236451 ], [ 92.771250846849028, 12.036078191954967 ], [ 92.763682487956416, 12.030951239707916 ], [ 92.758555534810029, 12.022040106665596 ], [ 92.765391472338521, 12.022040106665596 ], [ 92.745616082016497, 11.996649481688221 ], [ 92.740570509421431, 11.983628648343425 ], [ 92.737478061063641, 11.961167710621336 ], [ 92.737478061063641, 11.878648179669764 ], [ 92.744883659753029, 11.878648179669764 ], [ 92.749034049881431, 11.912258205251927 ], [ 92.75375410207009, 11.931586005689606 ], [ 92.761973504473559, 11.94013092760019 ], [ 92.776377799995416, 11.939276434060158 ], [ 92.787933789712596, 11.934515692045521 ], [ 92.795909050462257, 11.922186591138255 ], [ 92.79948978032904, 11.899115302429264 ], [ 92.796885613480228, 11.865139065715308 ], [ 92.760020379336964, 11.708685614649365 ], [ 92.754730665088033, 11.70111725485742 ], [ 92.734548372909018, 11.699286200098014 ], [ 92.72291100443924, 11.693793036719224 ], [ 92.689952018770597, 11.660060939860497 ], [ 92.683929884056823, 11.649888414119001 ], [ 92.682627799733126, 11.636948960426194 ], [ 92.682790560835628, 11.615179755141579 ], [ 92.687022332414628, 11.611558335448816 ], [ 92.696787957198396, 11.611232815042341 ], [ 92.706390820879605, 11.614488023603368 ], [ 92.710703972110579, 11.621730861190256 ], [ 92.710703972110579, 11.659572658351463 ], [ 92.715342643747974, 11.657619533214866 ], [ 92.726735873261916, 11.654689845959636 ], [ 92.731211784696058, 11.652736720822983 ], [ 92.730235221678058, 11.671454169374382 ], [ 92.736013217435953, 11.682440497031276 ], [ 92.746104363525461, 11.683742580455711 ], [ 92.758555534810029, 11.673244533408475 ], [ 92.761485222065261, 11.663641668827948 ], [ 92.765635613093011, 11.629584052462061 ], [ 92.765391472338521, 11.61859772300647 ], [ 92.760508659946638, 11.610337632575689 ], [ 92.747569207153148, 11.597845770565867 ], [ 92.744883659753029, 11.587591864273119 ], [ 92.744883659753029, 11.557114975975363 ], [ 92.735118034969247, 11.523871161524877 ], [ 92.726735873261916, 11.50617096671675 ], [ 92.716970248478134, 11.494452215897011 ], [ 92.713145378756138, 11.507310289038569 ], [ 92.707041863491128, 11.511053778209257 ], [ 92.698985222190217, 11.511786200472782 ], [ 92.689707878915428, 11.515570380368727 ], [ 92.658946160037189, 11.54629140852165 ], [ 92.654795769009439, 11.555894273102181 ], [ 92.655609570924895, 11.565985419191744 ], [ 92.654633008806272, 11.573797918838862 ], [ 92.645274284980218, 11.57697174684864 ], [ 92.633555535059855, 11.58258698150399 ], [ 92.625661654861432, 11.595404363920236 ], [ 92.621592644384961, 11.609361070456997 ], [ 92.621348504529792, 11.61859772300647 ], [ 92.627940300404461, 11.625148829954524 ], [ 92.637380404781808, 11.627142644917113 ], [ 92.645681185937903, 11.629828192317232 ], [ 92.648692253744429, 11.638495184605059 ], [ 92.642832879233922, 11.645249742481607 ], [ 92.631114129313545, 11.647447007473371 ], [ 92.619639519248366, 11.651312567021362 ], [ 92.614512566101993, 11.662990627115731 ], [ 92.613454623432034, 11.674221096426432 ], [ 92.608164910082493, 11.693264065384309 ], [ 92.607106967412534, 11.704535223621631 ], [ 92.603770379199588, 11.7188988302168 ], [ 92.595957878653138, 11.72016022291592 ], [ 92.586761915030294, 11.716009833686879 ], [ 92.579844596950494, 11.714178778028153 ], [ 92.563243035537582, 11.725572007542095 ], [ 92.560313347383016, 11.741359767938942 ], [ 92.566661004301835, 11.786200261932546 ], [ 92.566661004301835, 11.827134507451543 ], [ 92.563243035537582, 11.833929755154086 ], [ 92.554942254381487, 11.837836005427276 ], [ 92.545664910207378, 11.8408063825085 ], [ 92.53435306124473, 11.846869207947575 ], [ 92.530935092480476, 11.845892644929616 ], [ 92.528086784877175, 11.845892644929616 ], [ 92.525157096722552, 11.851304429555736 ], [ 92.524912956867382, 11.857489325372054 ], [ 92.527354363513012, 11.862005927531523 ], [ 92.530528191522748, 11.86465078330701 ], [ 92.531993035150407, 11.864976304612751 ], [ 92.539724155145606, 11.894435940066556 ], [ 92.562998893883773, 11.930161850988609 ], [ 92.570567253675776, 11.932603257634238 ], [ 92.577159050449765, 11.927394923936559 ], [ 92.592133008931157, 11.905747789029245 ], [ 92.594737174880649, 11.898749091297528 ], [ 92.60027102988407, 11.895493881837181 ], [ 92.614512566101993, 11.899115302429264 ], [ 92.607676629472834, 11.882798570697444 ], [ 92.610850457482542, 11.870510158716852 ], [ 92.617686394111772, 11.866400458414429 ], [ 92.621348504529792, 11.874945380325013 ], [ 92.624522332539556, 11.930161850988609 ], [ 92.62940514403212, 11.943752346393635 ], [ 92.627289258692301, 11.958929754904258 ], [ 92.62305748801262, 11.974269924517383 ], [ 92.621348504529792, 11.987941799574397 ], [ 92.625010613149215, 12.003119208084966 ], [ 92.637380404781808, 12.025295315226625 ], [ 92.64185631621595, 12.036322333608776 ], [ 92.640147331833845, 12.136135158410806 ], [ 92.645274284980218, 12.156073308936069 ], [ 92.668223504211298, 12.200995184380243 ], [ 92.681813997817684, 12.219631252380394 ], [ 92.689707878915428, 12.207668361705483 ], [ 92.697113476705553, 12.207668361705483 ], [ 92.70386803548142, 12.225165106484436 ], [ 92.713063998204902, 12.232570705173881 ], [ 92.720957879302645, 12.226548570460123 ], [ 92.724375847167522, 12.204250392941274 ], [ 92.719086133817967, 12.184515692445244 ], [ 92.719493034775709, 12.176255601115086 ], [ 92.727793815931804, 12.172837632350818 ], [ 92.733734570993576, 12.174017645398008 ], [ 92.736338737842431, 12.176581122420824 ], [ 92.737803582369366, 12.179144598544379 ], [ 92.74105879003109, 12.180324611591512 ], [ 92.760996941455616, 12.179877019908528 ], [ 92.765391472338521, 12.180324611591512 ], [ 92.784027540338656, 12.189357815011133 ], [ 92.788828972179232, 12.19554270992813 ], [ 92.792653841901227, 12.207668361705483 ], [ 92.782399936507815, 12.248602606325218 ], [ 92.775563998080017, 12.250637111113745 ], [ 92.76775149843283, 12.255438543853696 ], [ 92.761241082210105, 12.261175847986975 ], [ 92.758555534810029, 12.265936590900933 ], [ 92.758799674665212, 12.276556708325412 ], [ 92.760427280294692, 12.276841538905895 ], [ 92.764496289871815, 12.274318752608336 ], [ 92.78101647253213, 12.279242254826157 ], [ 92.789398634239532, 12.279486395580701 ], [ 92.794200066080109, 12.283189194925397 ], [ 92.792653841901227, 12.296372789372695 ], [ 92.786957226694582, 12.306301174359701 ], [ 92.778493686234555, 12.310126044081638 ], [ 92.754730665088033, 12.310044664429707 ], [ 92.733653191341631, 12.318060614106056 ], [ 92.722341342379011, 12.337795315501406 ], [ 92.717784050393533, 12.362494208041253 ], [ 92.721690299767474, 12.599432684370864 ], [ 92.726817253813152, 12.612982489050633 ], [ 92.744802280101084, 12.633490302535389 ], [ 92.750173373102626, 12.644273179263788 ], [ 92.754730665088033, 12.649562893512719 ], [ 92.760020379336964, 12.651109117691586 ], [ 92.775238476774206, 12.651760158504484 ], [ 92.778981966844228, 12.65265534097119 ], [ 92.783213738423214, 12.664984441878456 ], [ 92.777354363013359, 12.669338282935367 ], [ 92.766286654805228, 12.671535548826508 ], [ 92.754730665088033, 12.677191473307856 ], [ 92.74773196735633, 12.692694403124161 ], [ 92.744883659753029, 12.762518622036735 ], [ 92.737478061063641, 12.807196355827156 ], [ 92.740896029827837, 12.819647528010986 ], [ 92.748871289678206, 12.828111070269639 ], [ 92.758148633852315, 12.835679429162322 ], [ 92.765391472338521, 12.845119533539613 ], [ 92.785655144169525, 12.840033270219234 ], [ 92.800303582244482, 12.857814846477989 ], [ 92.809336784764739, 12.884507553980423 ], [ 92.813243035037971, 12.906480210193532 ], [ 92.813243035037971, 12.958075262063684 ], [ 92.828135612968126, 12.985174872322487 ], [ 92.834727409742115, 13.002020575389221 ], [ 92.830251498307945, 13.009507554629918 ], [ 92.807953320789039, 13.020086981329083 ], [ 92.809255405112793, 13.044745184042991 ], [ 92.829600457495062, 13.103461004921424 ], [ 92.848399284799129, 13.13670482027123 ], [ 92.853037957335772, 13.142726954984992 ], [ 92.854177279657648, 13.146063544097272 ], [ 92.851084832199177, 13.152044988985036 ], [ 92.837657096997333, 13.167059637292422 ], [ 92.833669467072156, 13.174017645198147 ], [ 92.844737175280358, 13.186997789616267 ], [ 92.842051628779558, 13.207749742056929 ], [ 92.84278405014372, 13.226996161043981 ], [ 92.864024284992666, 13.23550039312863 ], [ 92.86394290534075, 13.24469635585211 ], [ 92.849864129326065, 13.289007880309439 ], [ 92.854177279657648, 13.304388738849182 ], [ 92.854177279657648, 13.310614325390812 ], [ 92.841156446312851, 13.324896552333993 ], [ 92.847422721781115, 13.344916083410507 ], [ 92.886892122773162, 13.393459377648124 ], [ 92.891368035106694, 13.400946355989502 ], [ 92.895030143726075, 13.413031317041655 ], [ 92.895681186337612, 13.422837632550678 ], [ 92.89454186311643, 13.447251695409417 ], [ 92.895030143726075, 13.454575914446874 ], [ 92.901866082153873, 13.46824778950389 ], [ 92.903330924882241, 13.467759507095533 ], [ 92.915537957210887, 13.475734767845266 ], [ 92.937998894033669, 13.501369533577073 ], [ 92.942881707324872, 13.509222723050184 ], [ 92.945485873274365, 13.519720770097418 ], [ 92.945485873274365, 13.536932684295946 ], [ 92.949717643954031, 13.544623114465136 ], [ 92.958506707518481, 13.550238348221168 ], [ 92.97722415517056, 13.55377838736268 ], [ 92.984385613105502, 13.557603257084619 ], [ 92.991709832142973, 13.550034898191992 ], [ 92.997325065898991, 13.546698309079657 ], [ 93.003184441308846, 13.547064520211448 ], [ 93.011729363219487, 13.55076732045546 ], [ 93.006114129463441, 13.556626694965981 ], [ 93.004567905284517, 13.562201238896019 ], [ 93.006521030421183, 13.568793036569385 ], [ 93.011729363219487, 13.578111070569431 ], [ 93.016286655204894, 13.567368881868388 ] ] ], [ [ [ 93.042816602504132, 13.662054755322682 ], [ 93.052744988390472, 13.640204169486818 ], [ 93.019541862866589, 13.649400132210301 ], [ 93.00049889390877, 13.657700914265773 ], [ 92.990570508921778, 13.667466539049538 ], [ 93.019541862866589, 13.680121161262546 ], [ 93.033213737923603, 13.680243231639789 ], [ 93.039073113333444, 13.667466539049538 ], [ 93.042816602504132, 13.662054755322682 ] ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Assam", "admin": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.893196242012863, 27.399697373834719 ], [ 95.900947707370705, 27.40527842885637 ], [ 95.932160271679138, 27.441322740252239 ], [ 95.935570917263973, 27.444268296944351 ], [ 95.94032514908632, 27.44687795685223 ], [ 95.946112908783647, 27.448893338456791 ], [ 95.952934198154693, 27.450236924694302 ], [ 95.960995720975674, 27.451063747893606 ], [ 95.968850539121007, 27.450908718262717 ], [ 95.978255649978195, 27.449694322335056 ], [ 95.985076939349241, 27.44517263450944 ], [ 96.00409386573925, 27.422900092165488 ], [ 96.009364862398428, 27.413443305364236 ], [ 96.011845331097078, 27.404658311232076 ], [ 96.011121860685279, 27.376365465194048 ], [ 96.009674920760958, 27.369750881398026 ], [ 96.007194452062251, 27.365125840784906 ], [ 96.00378380737672, 27.361534328946099 ], [ 96.000063104328746, 27.359208888979019 ], [ 95.981769646551911, 27.350656439742856 ], [ 95.976085239642018, 27.346909898273164 ], [ 95.972157831019018, 27.343344224856075 ], [ 95.968747186333516, 27.337478948994253 ], [ 95.96419966008618, 27.324508164719983 ], [ 95.961925896962526, 27.31954722732268 ], [ 95.959238722688823, 27.316265773846332 ], [ 95.954897902016484, 27.313578600471995 ], [ 95.950557082243478, 27.312079982804953 ], [ 95.931643507741612, 27.307687486188509 ], [ 95.926992628706756, 27.304380195189815 ], [ 95.921721632946941, 27.298799140168164 ], [ 95.917690870637074, 27.288360501435982 ], [ 95.914280226850948, 27.28234019594327 ], [ 95.909112582979247, 27.277353421023513 ], [ 95.903738234431927, 27.276087348252467 ], [ 95.878933547445214, 27.286086738312285 ], [ 95.870665318149847, 27.287042751821495 ], [ 95.8609501489302, 27.28577667905045 ], [ 95.851855096435457, 27.283554591870875 ], [ 95.845550571901327, 27.282779446414274 ], [ 95.811857537994939, 27.28634511983142 ], [ 95.799558547289095, 27.285880031837955 ], [ 95.643805779612975, 27.230327866737632 ], [ 95.622411737311765, 27.232963365067228 ], [ 95.59771040221321, 27.247872016580281 ], [ 95.57538618392519, 27.26458934232425 ], [ 95.55957319484699, 27.271384793273562 ], [ 95.545930617004316, 27.273942776338053 ], [ 95.534251743922795, 27.271772366001866 ], [ 95.511100702435428, 27.261979682416374 ], [ 95.501178826741395, 27.255856025035477 ], [ 95.493427362282873, 27.250042426017099 ], [ 95.488053012836218, 27.241541652725058 ], [ 95.483195428226381, 27.230482896368521 ], [ 95.478544550090845, 27.210070705998245 ], [ 95.473273553431667, 27.194826157701009 ], [ 95.463144973062001, 27.176868598506978 ], [ 95.448158807183148, 27.159117743089318 ], [ 95.423767531346442, 27.141289374205254 ], [ 95.405267368893902, 27.133744615321739 ], [ 95.386043736029507, 27.128654486715156 ], [ 95.369300571863818, 27.12201406539679 ], [ 95.356898228370468, 27.115063584816536 ], [ 95.304911736687217, 27.079122626208225 ], [ 95.261193475198681, 27.04886607540902 ], [ 95.250754835567164, 27.045352077935995 ], [ 95.238352492073815, 27.042768256449843 ], [ 95.215821568210728, 27.046488959497871 ], [ 95.19969852077007, 27.046799017860387 ], [ 95.190603469174704, 27.044628608423515 ], [ 95.185022414152996, 27.04201894851564 ], [ 95.176444125595864, 27.033182278439362 ], [ 95.165902134076177, 27.023983873157189 ], [ 95.158564080767661, 27.010237942526995 ], [ 95.152259556233474, 27.003778388361919 ], [ 95.149779088434158, 27.000471096463905 ], [ 95.148952264335463, 27.000109361258005 ], [ 95.148642205972948, 27.000109361258005 ], [ 95.031233351238114, 26.933498439801149 ], [ 95.017900831757899, 26.928175767197892 ], [ 94.998470493318536, 26.92331818348736 ], [ 94.980797154065357, 26.92424835947417 ], [ 94.966224400235816, 26.927142239322841 ], [ 94.954545526254975, 26.932516587870222 ], [ 94.930981072718254, 26.948432928836549 ], [ 94.924779900971586, 26.950913398434572 ], [ 94.917131789300569, 26.951171779953647 ], [ 94.910310499929594, 26.946675931449075 ], [ 94.901732212271696, 26.938097642891869 ], [ 94.873206821337689, 26.915049953292673 ], [ 94.861011183419322, 26.90192414028683 ], [ 94.832589146172069, 26.857275702811414 ], [ 94.79889611226568, 26.814384264522168 ], [ 94.765409783934317, 26.788029283024962 ], [ 94.690478957238014, 26.74100373053772 ], [ 94.668981561249993, 26.732115384517382 ], [ 94.587229445182658, 26.699920966479393 ], [ 94.558083938422925, 26.70090281841032 ], [ 94.549195592402597, 26.701936347184638 ], [ 94.540513950158612, 26.696975409787282 ], [ 94.531418898563274, 26.688242092498562 ], [ 94.520566847781751, 26.679922186359811 ], [ 94.51043826741207, 26.677131659298592 ], [ 94.495658807108185, 26.677545071347929 ], [ 94.486563756412167, 26.676666571305184 ], [ 94.479122349416841, 26.671447251489433 ], [ 94.469510532984629, 26.661266995175644 ], [ 94.459588657290666, 26.647727769221142 ], [ 94.428686151344763, 26.61687693921936 ], [ 94.421968214761236, 26.603957830889151 ], [ 94.421244745248742, 26.593415839369467 ], [ 94.421554803611272, 26.584940904499145 ], [ 94.420624627624392, 26.5674742699216 ], [ 94.396543410150215, 26.534401354538879 ], [ 94.387034947404842, 26.525151272413261 ], [ 94.370808547176665, 26.511870428877156 ], [ 94.358199497208972, 26.498382879766091 ], [ 94.345487095353093, 26.489701239320706 ], [ 94.327917107988114, 26.481898098018796 ], [ 94.316961704419086, 26.481484686868775 ], [ 94.308280063973697, 26.485412095491764 ], [ 94.302699008952033, 26.492130032075288 ], [ 94.298771600329047, 26.499468085383793 ], [ 94.298668248440862, 26.500139878952208 ], [ 94.298358189179027, 26.501225084569963 ], [ 94.29226037021985, 26.529750475504038 ], [ 94.291020135870539, 26.542876289409204 ], [ 94.269626092670009, 26.554710191222338 ], [ 94.247405226270118, 26.523290920439589 ], [ 94.207200962254518, 26.483706773149031 ], [ 94.195418734586866, 26.465464993114942 ], [ 94.189217563739504, 26.447481595499191 ], [ 94.183946567979689, 26.395598457502778 ], [ 94.177435336971172, 26.372447414216762 ], [ 94.170407342924463, 26.360768541135251 ], [ 94.160485467230473, 26.351208401546497 ], [ 94.134647250570112, 26.333741766968949 ], [ 94.102917922324181, 26.303562731434901 ], [ 94.007729933989182, 26.18439687841316 ], [ 94.002665642905043, 26.172666328488273 ], [ 94.001735467817511, 26.164914862231107 ], [ 94.008970168338564, 26.142642319887152 ], [ 94.010210402687875, 26.131273505168103 ], [ 94.002665642905043, 26.076754868842094 ], [ 93.998841587069506, 26.068073228396766 ], [ 93.992640415322839, 26.060373439882305 ], [ 93.983338657253157, 26.053087063417244 ], [ 93.973416781559166, 26.040374661561369 ], [ 93.969696079410468, 26.027042141181877 ], [ 93.96907596268548, 25.999653631809615 ], [ 93.969696079410468, 25.993349107275428 ], [ 93.971659784171635, 25.98487417240511 ], [ 93.9744503112328, 25.977536119096605 ], [ 93.980651482979496, 25.966994127576918 ], [ 93.989229770637365, 25.946220201101362 ], [ 93.986542596363662, 25.939088853367871 ], [ 93.981891717328807, 25.930923976860011 ], [ 93.974036900082794, 25.923172512401486 ], [ 93.947785272272455, 25.886172187496406 ], [ 93.934762811154741, 25.874079901466239 ], [ 93.904170363571353, 25.856819973363084 ], [ 93.884946730707028, 25.851859035965724 ], [ 93.835854119771767, 25.845141099382197 ], [ 93.805778436125848, 25.834082343025663 ], [ 93.78831180244768, 25.831136786333609 ], [ 93.779113397165503, 25.831033434445423 ], [ 93.774875930179959, 25.834289049499997 ], [ 93.773635694931301, 25.841006985184201 ], [ 93.774772575593801, 25.846277980944016 ], [ 93.778803338803002, 25.854494533396004 ], [ 93.79513309091935, 25.871289374405073 ], [ 93.802884556277178, 25.880952866781335 ], [ 93.807638788099538, 25.891546536043787 ], [ 93.810119256798188, 25.903638821174631 ], [ 93.810015904010669, 25.918108222216681 ], [ 93.80794884556272, 25.931389064853413 ], [ 93.804124790626517, 25.942706204527717 ], [ 93.796373325268661, 25.951594550548059 ], [ 93.78676150883652, 25.956400458314473 ], [ 93.768881464008288, 25.960689602143415 ], [ 93.758649529951796, 25.96063792529997 ], [ 93.752138299842599, 25.959087633487449 ], [ 93.747280715232733, 25.955418606383539 ], [ 93.724956496045408, 25.943326321252695 ], [ 93.697361281098182, 25.933404446458034 ], [ 93.685062290392338, 25.926996568237023 ], [ 93.677930942658833, 25.91940013340939 ], [ 93.677620884296331, 25.911441962476538 ], [ 93.680928176194342, 25.902811997975331 ], [ 93.686922642366014, 25.89495717982998 ], [ 93.702632277757317, 25.88141795477474 ], [ 93.706973098429714, 25.875320135815564 ], [ 93.708936802291518, 25.870100815999816 ], [ 93.705836215968517, 25.864364732246592 ], [ 93.696741164373151, 25.855476386226197 ], [ 93.599692824064547, 25.780545560429225 ], [ 93.580779249562667, 25.763078924952417 ], [ 93.524348586218224, 25.689284979817948 ], [ 93.477323032831606, 25.653111477212853 ], [ 93.419135369401687, 25.61704132739532 ], [ 93.379034458173663, 25.580867824790285 ], [ 93.345858189104064, 25.556993312891045 ], [ 93.338313429321232, 25.548466702076606 ], [ 93.335936313410102, 25.538028062445104 ], [ 93.340587192444929, 25.529294745156331 ], [ 93.355676711111272, 25.514825344114335 ], [ 93.361361118920442, 25.507590644492605 ], [ 93.365288528442804, 25.500666002334121 ], [ 93.366011997055949, 25.498909003147951 ], [ 93.367872349029639, 25.49658356408019 ], [ 93.371593052077614, 25.493121243450609 ], [ 93.378310988661127, 25.488211981997377 ], [ 93.384615513195328, 25.480873928688816 ], [ 93.390093215429474, 25.470383612213929 ], [ 93.396294387176141, 25.461391913406025 ], [ 93.405906203608353, 25.454157212885029 ], [ 93.416654900703037, 25.449092922700224 ], [ 93.427817010746409, 25.442478338904206 ], [ 93.437842238328557, 25.431884671440393 ], [ 93.443733351712723, 25.421704413327966 ], [ 93.450141229034415, 25.404134425962972 ], [ 93.454482049706741, 25.39503937436762 ], [ 93.458512811117288, 25.38072500295652 ], [ 93.458719516692298, 25.363620104484195 ], [ 93.454998813644281, 25.338091946186346 ], [ 93.455722284056122, 25.322589016369982 ], [ 93.449222942085029, 25.302162515087954 ], [ 93.449211053047605, 25.302150987577981 ], [ 93.422856073349053, 25.276596990858419 ], [ 93.410763788218205, 25.261662502722281 ], [ 93.394330682415017, 25.235049139706003 ], [ 93.365701938693448, 25.177662461953044 ], [ 93.345858189104064, 25.124358222453957 ], [ 93.339553663670571, 25.112162584535604 ], [ 93.32818484895158, 25.09857168173772 ], [ 93.320846795643064, 25.087332058227894 ], [ 93.316402622183176, 25.07474884758124 ], [ 93.31206180241017, 25.065782986295737 ], [ 93.304103632376652, 25.061442166522731 ], [ 93.28818728961167, 25.059013372868826 ], [ 93.281366001139972, 25.056455389804391 ], [ 93.274958123818266, 25.051701157982048 ], [ 93.268756952071641, 25.045577501500468 ], [ 93.262969190575603, 25.03599152348999 ], [ 93.260385369988768, 25.029402778115688 ], [ 93.260075310726947, 25.008835558114463 ], [ 93.276301710955153, 24.980103460706111 ], [ 93.276818474892636, 24.973437200966028 ], [ 93.274338007093306, 24.967132677331158 ], [ 93.265139601811129, 24.958373520721402 ], [ 93.257698194815788, 24.954911200091765 ], [ 93.25149702306912, 24.952714952233233 ], [ 93.246432732884259, 24.951629747514794 ], [ 93.241781853849403, 24.949252630704333 ], [ 93.239404737938273, 24.944808458143818 ], [ 93.240334913925068, 24.939744167958956 ], [ 93.248293084857934, 24.931682644238599 ], [ 93.251703728644117, 24.927496853197219 ], [ 93.253357375042782, 24.914706936076236 ], [ 93.227002395344229, 24.880161241448086 ], [ 93.207158644855525, 24.847579251581173 ], [ 93.205401645669355, 24.832076320865493 ], [ 93.203541293695693, 24.823963121201068 ], [ 93.199407180397003, 24.816521715105061 ], [ 93.189175246340469, 24.810811468874189 ], [ 93.181113722620154, 24.809442044214954 ], [ 93.173775669311595, 24.810604763299178 ], [ 93.168091262401774, 24.813705348722856 ], [ 93.156412388420932, 24.822800401217528 ], [ 93.153725214147272, 24.824143989253681 ], [ 93.151244745448579, 24.824350693929372 ], [ 93.148144159125565, 24.823885605935967 ], [ 93.139772577042748, 24.821353461293196 ], [ 93.135328403582918, 24.8191572134346 ], [ 93.128817172574401, 24.814480495978096 ], [ 93.123959588863883, 24.809803779420857 ], [ 93.117655064329682, 24.79719472945316 ], [ 93.111867302833701, 24.780477402809872 ], [ 93.10318566328769, 24.743218696385721 ], [ 93.097604608265982, 24.726811428104888 ], [ 93.09305708201866, 24.716501980581931 ], [ 93.090473259633185, 24.713892319774736 ], [ 93.087062615846989, 24.706993516937239 ], [ 93.088096144621304, 24.69027619119327 ], [ 93.091196730944304, 24.682705592988718 ], [ 93.097397901791666, 24.679682521930825 ], [ 93.106286248711314, 24.671931057472303 ], [ 93.099051548190332, 24.65438690852897 ], [ 93.080034620901003, 24.624440416092281 ], [ 93.095640904404135, 24.593641262034616 ], [ 93.100601840902172, 24.577027289078096 ], [ 93.090576613319996, 24.56981842697882 ], [ 93.073730096366802, 24.567234605492612 ], [ 93.064531691084625, 24.55891470025318 ], [ 93.05274946521557, 24.522663683282353 ], [ 93.045721470269584, 24.444528917475562 ], [ 93.036729770562403, 24.414608263460586 ], [ 93.011821730788185, 24.412799587430978 ], [ 93.018436313684887, 24.399131171166569 ], [ 92.991874628411296, 24.380708523079871 ], [ 92.976371697695612, 24.380708523079871 ], [ 92.944125603713559, 24.385281886849551 ], [ 92.930172968407689, 24.391638088227175 ], [ 92.863407017319943, 24.365619005312848 ], [ 92.850901320139755, 24.365541490047683 ], [ 92.837258742297067, 24.367608546697053 ], [ 92.828680453739921, 24.377323716816075 ], [ 92.78382531068948, 24.461556301582043 ], [ 92.777520787054613, 24.470082913295808 ], [ 92.765221796348754, 24.481296698383908 ], [ 92.757780389353442, 24.482976183204293 ], [ 92.751062452769901, 24.479436347309552 ], [ 92.746308220947569, 24.471090602749083 ], [ 92.714578891802347, 24.393317573047561 ], [ 92.710444776705046, 24.376703600091041 ], [ 92.707344191281365, 24.36957225235755 ], [ 92.701246372322188, 24.361924139787217 ], [ 92.679542270759143, 24.342157905462948 ], [ 92.630863071873222, 24.295132351177067 ], [ 92.622594842577854, 24.280740465400122 ], [ 92.622284784215353, 24.265289212427202 ], [ 92.624971957589693, 24.25521230710228 ], [ 92.626212192838395, 24.246608181022729 ], [ 92.624455193652224, 24.238520819779975 ], [ 92.617840610755522, 24.235110175094455 ], [ 92.610502557447006, 24.233223984699119 ], [ 92.599650506665483, 24.228676459351103 ], [ 92.588488396622139, 24.221312568520197 ], [ 92.557275832313763, 24.191366075184185 ], [ 92.524823032756714, 24.165631212210652 ], [ 92.511180454014692, 24.149508164769991 ], [ 92.501878696844329, 24.140852362746323 ], [ 92.48947635335098, 24.13250661908517 ], [ 92.480174595281298, 24.129225164709563 ], [ 92.47190636598593, 24.127778224785224 ], [ 92.463534783903114, 24.128579210462188 ], [ 92.453302849846551, 24.132325751032564 ], [ 92.444207798251213, 24.138320217204235 ], [ 92.436869744942697, 24.145270697784433 ], [ 92.431288689921061, 24.152996323821235 ], [ 92.423330519887514, 24.169171047206014 ], [ 92.414855585017193, 24.195706894957191 ], [ 92.414958937804641, 24.202140610700603 ], [ 92.417129348140847, 24.207540798568967 ], [ 92.424777459811864, 24.219684760543256 ], [ 92.427257927611194, 24.224645697940609 ], [ 92.42880822122234, 24.229529120072804 ], [ 92.428601515647401, 24.232629706395805 ], [ 92.426947870148055, 24.235471910300411 ], [ 92.423020460625693, 24.238029893364846 ], [ 92.416199172154037, 24.239450994867518 ], [ 92.368863560404961, 24.241569729259588 ], [ 92.298480259056632, 24.237719835002331 ], [ 92.230990839355727, 24.248029283424664 ], [ 92.225409784334019, 24.254979763105549 ], [ 92.220242141361709, 24.264333198018669 ], [ 92.254348586418061, 24.337067775957046 ], [ 92.258379347828608, 24.352002264992503 ], [ 92.260756463739739, 24.367040106815463 ], [ 92.260239698902907, 24.385488593323878 ], [ 92.257759231103563, 24.396004747321221 ], [ 92.239465773326714, 24.42892263397237 ], [ 92.236261835115542, 24.437862656836096 ], [ 92.234711542403701, 24.448172105258429 ], [ 92.234401483141852, 24.479384671365487 ], [ 92.232024367230721, 24.488402207695682 ], [ 92.227890253032726, 24.495378525798284 ], [ 92.221689081286044, 24.500416978460745 ], [ 92.158850538821284, 24.53829580340857 ], [ 92.149979861781134, 24.542182953880168 ], [ 92.153165324320227, 24.544549459589852 ], [ 92.16360396305241, 24.559199728684515 ], [ 92.168874959711545, 24.574315083973936 ], [ 92.173422485958866, 24.608395692407264 ], [ 92.182930948704254, 24.647256368386646 ], [ 92.233780558825657, 24.777532654608301 ], [ 92.236467733099317, 24.793035584424665 ], [ 92.236881144249352, 24.808590190185093 ], [ 92.235020793174982, 24.824764914469192 ], [ 92.23492786083203, 24.824990709953276 ], [ 92.221791626482329, 24.856907653865104 ], [ 92.221759058433719, 24.857046883307017 ], [ 92.217657511384999, 24.874580994017656 ], [ 92.22303186083164, 24.891375834127409 ], [ 92.252177368490706, 24.902977194641771 ], [ 92.290244499783768, 24.891351286232858 ], [ 92.290417929543736, 24.891298320660947 ], [ 92.358146051798798, 24.853748899392194 ], [ 92.358320760394733, 24.853652039709853 ], [ 92.359320577182842, 24.846428366675745 ], [ 92.359354289169048, 24.846184794292807 ], [ 92.363507408739878, 24.841120013977438 ], [ 92.363591756154548, 24.841017151320436 ], [ 92.370929809463107, 24.837916564997439 ], [ 92.380748332369564, 24.836702169069834 ], [ 92.442036580323858, 24.855409037097385 ], [ 92.477693318991413, 24.863909810389426 ], [ 92.491542602409126, 24.883727722456392 ], [ 92.494539835944607, 24.894863993178713 ], [ 92.491335896834102, 24.912278950912814 ], [ 92.491267148160304, 24.912424218402911 ], [ 92.48379113795059, 24.928221130300919 ], [ 92.474386027093402, 24.936670228548159 ], [ 92.474272333001736, 24.936715370917618 ], [ 92.449788045681686, 24.946437073711984 ], [ 92.449813867915609, 24.946458456892227 ], [ 92.450028485726008, 24.946636187210224 ], [ 92.458056274977054, 24.95328420150468 ], [ 92.457828127765794, 24.953557685338858 ], [ 92.454025512667201, 24.958115947692814 ], [ 92.45376876971288, 24.958231063612679 ], [ 92.444517049022551, 24.962379252200716 ], [ 92.444446273276853, 24.962427196857611 ], [ 92.412477662414148, 24.984083354663078 ], [ 92.412460320787133, 24.984360817098029 ], [ 92.412270955939832, 24.987390646561089 ], [ 92.412139500237672, 24.987434336525375 ], [ 92.411860006234207, 24.98752722749952 ], [ 92.394700969474101, 24.993230082202494 ], [ 92.386949504116259, 24.99509043417617 ], [ 92.386926351070173, 24.995201830500029 ], [ 92.386875924284411, 24.995444455896912 ], [ 92.384937035415788, 25.004773235896092 ], [ 92.409067824420475, 25.025785426955842 ], [ 92.453819614683397, 25.070097968546399 ], [ 92.488959589413454, 25.093920802702879 ], [ 92.510146926139655, 25.112937729992208 ], [ 92.523479444720564, 25.121309312075077 ], [ 92.533814731564547, 25.125030016022372 ], [ 92.545493606444708, 25.125081691966493 ], [ 92.557482537888731, 25.127898058348698 ], [ 92.559652948224922, 25.134150906039448 ], [ 92.558516065763769, 25.141954047341411 ], [ 92.560686476999237, 25.150248115058442 ], [ 92.56492394398478, 25.152418525394634 ], [ 92.58642133997283, 25.149266262228188 ], [ 92.60192426978918, 25.148956203865673 ], [ 92.639234653956038, 25.156216741909073 ], [ 92.649156528750765, 25.155441596452469 ], [ 92.680369093958447, 25.187920234431253 ], [ 92.805529413151845, 25.227711087296818 ], [ 92.811627232111036, 25.23411896371919 ], [ 92.81080040891166, 25.240242621100034 ], [ 92.798088007055853, 25.251301378355887 ], [ 92.794057244745972, 25.258045152461811 ], [ 92.792506952034145, 25.264995632142693 ], [ 92.79085330563548, 25.27073171589597 ], [ 92.787546013737469, 25.276622830179456 ], [ 92.786305780287449, 25.282462266720181 ], [ 92.786305780287449, 25.292229111884005 ], [ 92.792506952034145, 25.304450588224022 ], [ 92.796537714344012, 25.315199286218039 ], [ 92.798294711731472, 25.327343248192328 ], [ 92.795917595820342, 25.33816946145145 ], [ 92.78961307218546, 25.348892320124428 ], [ 92.781964959615124, 25.35589447754807 ], [ 92.764394973149464, 25.367263292267118 ], [ 92.755299920654721, 25.37573822713744 ], [ 92.742277460436384, 25.39196462736566 ], [ 92.701763137158963, 25.425528469163503 ], [ 92.690704379903167, 25.431755479331908 ], [ 92.682539504294624, 25.435269476804873 ], [ 92.670447219163776, 25.439093533539726 ], [ 92.636754185257388, 25.447439277200878 ], [ 92.632206659010066, 25.451831772917949 ], [ 92.626005487263384, 25.45896312155082 ], [ 92.620321078554838, 25.469970201063909 ], [ 92.613189731720666, 25.475267035245448 ], [ 92.587661574322141, 25.485214749361141 ], [ 92.584871047260989, 25.491519272996008 ], [ 92.585077752835986, 25.495937608034176 ], [ 92.588281691047115, 25.498831488782166 ], [ 92.610089146296986, 25.511983141109049 ], [ 92.62786583923706, 25.526375026885937 ], [ 92.636444125995567, 25.53477244739053 ], [ 92.642955357004084, 25.543609117466751 ], [ 92.652567173436225, 25.559913032060759 ], [ 92.657631463621087, 25.566579290901522 ], [ 92.664866164142069, 25.573323065906713 ], [ 92.672307570238132, 25.57921417929094 ], [ 92.678818801246607, 25.586733099752728 ], [ 92.683573033068953, 25.596370753707269 ], [ 92.682022740357112, 25.606137599770413 ], [ 92.677888625259797, 25.610633450073632 ], [ 92.670137159901955, 25.613036404406497 ], [ 92.663315871430228, 25.612855536353884 ], [ 92.655771111647397, 25.611486110795333 ], [ 92.642438593066558, 25.605129910317082 ], [ 92.624041783401509, 25.592960109921133 ], [ 92.617633905180497, 25.589549465235613 ], [ 92.603991327337809, 25.584330146319186 ], [ 92.600063917815518, 25.583865058325777 ], [ 92.597480096329292, 25.584872747779052 ], [ 92.595413038780663, 25.585957953396811 ], [ 92.593449334918816, 25.586655585386946 ], [ 92.521412388071184, 25.661586412083231 ], [ 92.476867303383287, 25.699878648181024 ], [ 92.433149041894723, 25.729385891046029 ], [ 92.413615349768492, 25.751839301442597 ], [ 92.398112420851447, 25.761011868303054 ], [ 92.382402784560824, 25.764344997723462 ], [ 92.367209914006295, 25.759642441845184 ], [ 92.353980747313571, 25.75292450616103 ], [ 92.341578403820193, 25.744759630552487 ], [ 92.331346469763702, 25.736568914723584 ], [ 92.316463657571703, 25.727318834396662 ], [ 92.266750929911424, 25.723288072086852 ], [ 92.227683546558382, 25.713753770020439 ], [ 92.204739210646011, 25.703754380859941 ], [ 92.18902957615397, 25.693341580549479 ], [ 92.178384230947444, 25.684685776727171 ], [ 92.170736119276427, 25.6844273952081 ], [ 92.167325473691605, 25.689543362236346 ], [ 92.167532180165921, 25.700033677811966 ], [ 92.173836703800802, 25.755172430862949 ], [ 92.173526646337592, 25.772406521443763 ], [ 92.170632765589616, 25.787547716054231 ], [ 92.1672221209041, 25.799071560404165 ], [ 92.165465121717915, 25.809174303251488 ], [ 92.167015415329075, 25.817132473284968 ], [ 92.183965285069775, 25.846975612934155 ], [ 92.197917922174298, 25.884983629091202 ], [ 92.214661086340001, 25.919477646875858 ], [ 92.213420851990662, 25.932345079261999 ], [ 92.207839796969012, 25.939347235786268 ], [ 92.18716922418028, 25.942783717994185 ], [ 92.179107701359257, 25.947744656290801 ], [ 92.174663527000092, 25.959087633487449 ], [ 92.174043410275132, 25.970223904209767 ], [ 92.175697055774478, 25.979784043798585 ], [ 92.179727818084288, 25.987742213832057 ], [ 92.183965285069775, 25.993013211390569 ], [ 92.261479934151609, 26.055412503384328 ], [ 92.270368280171937, 26.073215032947409 ], [ 92.26840457631009, 26.07840851524076 ], [ 92.264270461212774, 26.082671821547301 ], [ 92.255175408718088, 26.085152289346631 ], [ 92.164121534581099, 26.088382065979538 ], [ 92.149652134438412, 26.084506334199936 ], [ 92.118026158080653, 26.072129828228977 ], [ 92.054050734054087, 26.05683360398762 ], [ 92.042681919335038, 26.057117824827738 ], [ 92.030899692566692, 26.059288235163873 ], [ 92.02066775940952, 26.058848984692865 ], [ 91.954315220371058, 26.042725938151527 ], [ 91.922482538438359, 26.038230088747575 ], [ 91.903362258361469, 26.040116279142914 ], [ 91.89085656118128, 26.04365611413834 ], [ 91.877524041701093, 26.052492784214614 ], [ 91.848791945192062, 26.079002794443394 ], [ 91.825330845342165, 26.089260566022283 ], [ 91.807140741252155, 26.088097846038742 ], [ 91.792878045785116, 26.082645982226261 ], [ 91.751950311357731, 26.048074449176447 ], [ 91.74523237477419, 26.0394703230969 ], [ 91.741098259676889, 26.029806829821322 ], [ 91.735000440717698, 26.000480455008976 ], [ 91.730349562582191, 25.989421699551766 ], [ 91.718153924663824, 25.967691759567053 ], [ 91.707301873882315, 25.953661607197368 ], [ 91.693762647927812, 25.941440130857355 ], [ 91.672471958414093, 25.931156520856742 ], [ 91.655108676624067, 25.930226344869876 ], [ 91.641259393206354, 25.932784328833684 ], [ 91.631647576774171, 25.939579779782999 ], [ 91.629683872013047, 25.94844228828094 ], [ 91.632577752761023, 25.961051337349311 ], [ 91.638365513357698, 25.972704372908474 ], [ 91.644256625842544, 25.991747137720203 ], [ 91.645806918554385, 26.000092882280679 ], [ 91.64591027224121, 26.001591498149075 ], [ 91.644876744366215, 26.015725003306212 ], [ 91.637848749420158, 26.026111965195007 ], [ 91.626066521752506, 26.033760076866024 ], [ 91.60622277216315, 26.037713323910729 ], [ 91.591960076696111, 26.034406032912042 ], [ 91.58234826026397, 26.026887112450247 ], [ 91.568395624058752, 26.000041205437235 ], [ 91.568395624058752, 25.99996369107145 ], [ 91.557956984427264, 25.984796658039322 ], [ 91.54059370263721, 25.966839097945972 ], [ 91.522713657809021, 25.951594550548059 ], [ 91.502559848957816, 25.918728338941655 ], [ 91.495945266061113, 25.912113756044953 ], [ 91.474654575648103, 25.896249091022689 ], [ 91.472277459736901, 25.890099596119448 ], [ 91.475274693272382, 25.884751085094472 ], [ 91.488503859065787, 25.882322293239209 ], [ 91.496565382786144, 25.882890733120799 ], [ 91.502869908219594, 25.885138657822775 ], [ 91.527364536843805, 25.901597602047666 ], [ 91.532842238178702, 25.901545925204285 ], [ 91.530775180630002, 25.895293077513479 ], [ 91.527364536843805, 25.888084215414203 ], [ 91.473517694086283, 25.861832586704502 ], [ 91.416260206643173, 25.858757838803168 ], [ 91.360553012811209, 25.843254909886177 ], [ 91.343189731920546, 25.833849799028989 ], [ 91.329133742028517, 25.821214911538895 ], [ 91.314354282623967, 25.798709825198266 ], [ 91.269085728423562, 25.751606757445867 ], [ 91.250998977121057, 25.737602444397275 ], [ 91.233532341644192, 25.731866359744679 ], [ 91.222060175037015, 25.730677802238738 ], [ 91.208107537932477, 25.736181341995287 ], [ 91.199322543800264, 25.760650133097151 ], [ 91.197668898300989, 25.795609238875265 ], [ 91.193948195252943, 25.813773505442892 ], [ 91.194258253615473, 25.829353948725718 ], [ 91.198702427075304, 25.85697500299397 ], [ 91.195911900014138, 25.868938096915596 ], [ 91.1788586765866, 25.869635728006408 ], [ 91.096796503056098, 25.839921780465769 ], [ 91.081603631602249, 25.837570502076968 ], [ 91.073025343944423, 25.83976675083488 ], [ 91.070441521558948, 25.847337348140051 ], [ 91.064550409074045, 25.851548976703892 ], [ 91.060933058813575, 25.851729844756498 ], [ 91.046360304984006, 25.84289317557954 ], [ 91.031270787216982, 25.835710151002669 ], [ 91.02496626178349, 25.839094957266465 ], [ 91.023726027434151, 25.847053128199256 ], [ 91.029927199180847, 25.874364122306353 ], [ 91.030857375167656, 25.886843980165501 ], [ 91.028997023194037, 25.899298001401625 ], [ 91.024139438584172, 25.908341376153537 ], [ 91.014424270263788, 25.915705267883759 ], [ 91.00491580571979, 25.917229723073255 ], [ 90.993650343788303, 25.917849839798233 ], [ 90.987449172041622, 25.922604072519899 ], [ 90.981558058657455, 25.936685899035005 ], [ 90.974530063711398, 25.943636378715887 ], [ 90.96347130735488, 25.94461823244546 ], [ 90.924610629576847, 25.941698513275746 ], [ 90.89877241381582, 25.947899685022431 ], [ 90.868386671807372, 25.951594550548059 ], [ 90.824358351956306, 25.946194363579018 ], [ 90.814539829049778, 25.943558865249425 ], [ 90.788288202138787, 25.927435817808707 ], [ 90.778056268082224, 25.925058701897566 ], [ 90.772681918635598, 25.927978421067273 ], [ 90.769684685999408, 25.935910753578408 ], [ 90.768961215587552, 25.953661607197368 ], [ 90.766584099676422, 25.959733587734881 ], [ 90.761829868753381, 25.962059027701962 ], [ 90.752941521833733, 25.962136542067746 ], [ 90.691756625767624, 25.949605007365157 ], [ 90.667778761980216, 25.941620998909961 ], [ 90.644317662130362, 25.931466580118578 ], [ 90.636979607922498, 25.933016872830414 ], [ 90.633568964136344, 25.939114691789595 ], [ 90.632845493724489, 25.947512112294127 ], [ 90.630985141750827, 25.956684679154584 ], [ 90.626747674765326, 25.964126085250591 ], [ 90.61765262227064, 25.969784653738763 ], [ 90.609591099449617, 25.969397081010467 ], [ 90.604113397215457, 25.966063950690732 ], [ 90.596671991119464, 25.953170680782243 ], [ 90.593261346433934, 25.948674832277671 ], [ 90.578998650966895, 25.937202663871794 ], [ 90.538380974902026, 25.911286932845648 ], [ 90.534660271854008, 25.910951036061412 ], [ 90.530629510443504, 25.912268784776582 ], [ 90.531249628067812, 25.915627753517974 ], [ 90.532903272667838, 25.921415514114635 ], [ 90.53941450367634, 25.935497341529064 ], [ 90.548922967321047, 25.951956284854642 ], [ 90.551713495281518, 25.961258042924321 ], [ 90.549853143307857, 25.974280504041978 ], [ 90.545305617060507, 25.980662542941953 ], [ 90.515229934313979, 26.000118719803076 ], [ 90.494869418988443, 26.009911404287831 ], [ 90.484534133043766, 26.011926784993129 ], [ 90.47523237497407, 26.011952623414796 ], [ 90.462106561068865, 26.010867417797094 ], [ 90.445983513628207, 26.011099961793768 ], [ 90.39709760916729, 26.01714610390956 ], [ 90.383455031324601, 26.016887722390429 ], [ 90.373739862104884, 26.014355576848398 ], [ 90.357513461876721, 26.006164862818135 ], [ 90.336636184412299, 25.990506904270198 ], [ 90.330848422916318, 25.987018744319577 ], [ 90.323923780757795, 25.984796658039322 ], [ 90.296121861134935, 25.980223294269585 ], [ 90.279998813694235, 25.975288194394629 ], [ 90.216850213766278, 25.974254666519638 ], [ 90.135614861636483, 25.959785265477585 ], [ 90.119698520670141, 25.952653916844778 ], [ 90.114427524910283, 25.945470893167162 ], [ 90.089622837024223, 25.920795396490341 ], [ 90.056653272630371, 25.899737250073994 ], [ 90.041046990925835, 25.886301377806312 ], [ 90.032158644905479, 25.875526842289894 ], [ 90.026887648246301, 25.861212469979471 ], [ 90.020169711662817, 25.852401638324913 ], [ 89.989783969654397, 25.825323188214547 ], [ 89.980172154121576, 25.814006049439623 ], [ 89.974177687949904, 25.801577867524536 ], [ 89.972627395238064, 25.780519721108242 ], [ 89.970870396051893, 25.770623683835929 ], [ 89.967459751366377, 25.762097073021486 ], [ 89.962912225119027, 25.754138902088634 ], [ 89.950199823263162, 25.73594879799861 ], [ 89.944618768241511, 25.725820216729566 ], [ 89.941518181918511, 25.715278225209879 ], [ 89.94089806519348, 25.704090278543497 ], [ 89.942345005117815, 25.691481228575803 ], [ 89.949166293589528, 25.665798041546331 ], [ 89.953817172624355, 25.655566108389159 ], [ 89.959708286907841, 25.646264350319477 ], [ 89.966632928167073, 25.63861623774914 ], [ 89.993711379176759, 25.616550400980199 ], [ 90.000532667648415, 25.609315701358518 ], [ 90.003013137246441, 25.604251410274337 ], [ 90.004046665121436, 25.59792104731843 ], [ 90.002082961259561, 25.586810615017836 ], [ 89.998465610999091, 25.580661119215272 ], [ 89.992161085565598, 25.574330756259368 ], [ 89.980792270846536, 25.567509466888389 ], [ 89.966529576278887, 25.56148916319432 ], [ 89.951026645563189, 25.559318752858125 ], [ 89.919814081254771, 25.560533148785787 ], [ 89.903380974552292, 25.553530992261464 ], [ 89.897283155593101, 25.541361191865512 ], [ 89.895629510093755, 25.527925320497097 ], [ 89.896249627718106, 25.498650620729556 ], [ 89.893562453444403, 25.485524806824337 ], [ 89.888808220722723, 25.473303331383583 ], [ 89.883330520287231, 25.465939438754042 ], [ 89.875475702141884, 25.460435898997499 ], [ 89.83403120287764, 25.448291937922587 ], [ 89.808567939658616, 25.439507111963614 ], [ 89.823230021348337, 25.489142965575404 ], [ 89.825090373322027, 25.564487203421656 ], [ 89.83439213049239, 25.634767151083107 ], [ 89.824211873279268, 25.674092915955264 ], [ 89.801525919785291, 25.724684144557607 ], [ 89.783129110120271, 25.814446107501848 ], [ 89.786953165955794, 25.839147441701069 ], [ 89.830051310719384, 25.907980449438178 ], [ 89.83439213049239, 25.931751608549856 ], [ 89.826433960458843, 25.93748769140381 ], [ 89.810724325067468, 25.938779603495895 ], [ 89.792017456140613, 25.949114889440573 ], [ 89.811551147367524, 25.955212708399749 ], [ 89.825607137259539, 25.965703023975376 ], [ 89.828656046739113, 25.979397278661445 ], [ 89.815271850415499, 25.995106913153499 ], [ 89.814134968853665, 25.996140441927814 ], [ 89.812688028929344, 25.996347148402144 ], [ 89.811034383429998, 25.996037089140312 ], [ 89.809329061087269, 25.995210265941008 ], [ 89.809174031456308, 25.995106913153499 ], [ 89.808863973093807, 25.995106913153499 ], [ 89.802042683722817, 25.988647359887743 ], [ 89.79553145451294, 25.985960185614026 ], [ 89.789433634654443, 25.987975565420008 ], [ 89.783955932420312, 25.995106913153499 ], [ 89.776411174436106, 26.008232727058662 ], [ 89.75584395443488, 26.032417297320418 ], [ 89.750211223469123, 26.04156402665847 ], [ 89.748712605802069, 26.059030660336699 ], [ 89.751141399455975, 26.071536357516887 ], [ 89.749849487363889, 26.083887024166806 ], [ 89.73672367345867, 26.100578511489115 ], [ 89.728765503425208, 26.114169413387678 ], [ 89.724321329965363, 26.130654195134973 ], [ 89.718481893424581, 26.145537008226309 ], [ 89.706544637025317, 26.154166971828257 ], [ 89.697656291004961, 26.154787089452608 ], [ 89.67770918772878, 26.153133443053939 ], [ 89.670371134420265, 26.154115295884193 ], [ 89.658175497401245, 26.159231262013115 ], [ 89.655798381490044, 26.161298320461121 ], [ 89.657245321414365, 26.165380758714996 ], [ 89.657828608203644, 26.187174483115875 ], [ 89.687063430233053, 26.193001004492764 ], [ 89.708354119746758, 26.201036688892085 ], [ 89.727267694248638, 26.206204331864395 ], [ 89.735329217069619, 26.211707872520261 ], [ 89.738843215441975, 26.218503323469569 ], [ 89.737913038555845, 26.230388902126087 ], [ 89.732642042795959, 26.237546088281299 ], [ 89.730368279672334, 26.244057319289816 ], [ 89.732642042795959, 26.250646063764798 ], [ 89.743184035214981, 26.253565782035192 ], [ 89.758790317818836, 26.263177599366706 ], [ 89.774293246735894, 26.2973615587889 ], [ 89.778634068307539, 26.30557811124083 ], [ 89.781527948156196, 26.308678697563828 ], [ 89.806539340717947, 26.320409247488776 ], [ 89.822042271433617, 26.324595038530159 ], [ 89.828863559905272, 26.327850654484106 ], [ 89.829793735892153, 26.334206854962357 ], [ 89.825452915219813, 26.340382188287315 ], [ 89.815117629275093, 26.347901108749163 ], [ 89.814807570013315, 26.356246853309639 ], [ 89.815220982062598, 26.360975246710264 ], [ 89.818218214698774, 26.364205024242434 ], [ 89.826589796781647, 26.369966946417428 ], [ 89.839302198637526, 26.376994941363417 ], [ 89.841575961761151, 26.379294542009458 ], [ 89.843436313734841, 26.382162584335784 ], [ 89.853564895003814, 26.451796575951214 ], [ 89.85852583240117, 26.471046047237273 ], [ 89.869894647120219, 26.500062363687103 ], [ 89.870824823107029, 26.50393809726534 ], [ 89.871858351881343, 26.507038682689021 ], [ 89.873408644593198, 26.510371812109433 ], [ 89.888498163259584, 26.532902736871783 ], [ 89.878989698715586, 26.636979072126444 ], [ 89.87464887894258, 26.654445705804672 ], [ 89.853978306153834, 26.709429430124082 ], [ 89.858700634526571, 26.722056524089275 ], [ 89.859920287890915, 26.721884257152734 ], [ 89.880280802317131, 26.716251526186962 ], [ 89.890409384485437, 26.714856262206688 ], [ 89.912113485149163, 26.716716614180367 ], [ 89.975262085077105, 26.731857809690148 ], [ 90.089156942338988, 26.74172800854074 ], [ 90.127190796018382, 26.751391500017682 ], [ 90.152202189479382, 26.771752014443898 ], [ 90.177420289414755, 26.832058410467251 ], [ 90.210906616846827, 26.851488750705236 ], [ 90.229148396880959, 26.852884012886872 ], [ 90.265993693054426, 26.851592103492742 ], [ 90.284442180462207, 26.857069803928304 ], [ 90.300875285366061, 26.868283589915727 ], [ 90.314207804846248, 26.880375875046575 ], [ 90.328573853100778, 26.890659485047188 ], [ 90.348831013840169, 26.896653951218859 ], [ 90.382627401433382, 26.891796367508327 ], [ 90.475231567382863, 26.832420146572467 ], [ 90.587782838407222, 26.78007192058265 ], [ 90.717077270899239, 26.767049459464936 ], [ 90.94449257966879, 26.778869550389398 ], [ 91.007395467726596, 26.782138977232016 ], [ 91.012780806888699, 26.78434808629515 ], [ 91.06206913278416, 26.804566549206864 ], [ 91.091938110855082, 26.804773255681191 ], [ 91.127078084685806, 26.80089752210295 ], [ 91.19818485644592, 26.802344462027285 ], [ 91.232498006177963, 26.795161438349673 ], [ 91.26195357309885, 26.779038392707655 ], [ 91.276009562091559, 26.774077454410982 ], [ 91.296576782092728, 26.774594218348447 ], [ 91.313216593470969, 26.778676657501702 ], [ 91.330063110424163, 26.785497945074091 ], [ 91.34556604024047, 26.794696350356269 ], [ 91.358381795783188, 26.806168519661405 ], [ 91.370060668864681, 26.824668681214625 ], [ 91.378122193484373, 26.842807108461269 ], [ 91.388457479429107, 26.858465067908519 ], [ 91.406337524257296, 26.869523824265052 ], [ 91.42018680947362, 26.871539204970297 ], [ 91.460597778164853, 26.869368795533486 ], [ 91.475067179206903, 26.865544739697945 ], [ 91.484472290064076, 26.852728984155242 ], [ 91.507416625976447, 26.808028869836441 ], [ 91.520645792669129, 26.797590230204939 ], [ 91.539352662495304, 26.798830465453584 ], [ 91.575629516988542, 26.810147603329192 ], [ 91.593716268291118, 26.810767720953542 ], [ 91.637951295515819, 26.79898549418521 ], [ 91.653764282795336, 26.797951965410842 ], [ 91.70213342331877, 26.803481344488425 ], [ 91.731588989340338, 26.816193746344304 ], [ 91.795254354105083, 26.853504131410538 ], [ 91.825123332176005, 26.858465067908519 ], [ 91.843933552991004, 26.849370015413847 ], [ 91.849514608012711, 26.834745586539547 ], [ 91.852408487861368, 26.818519185412065 ], [ 91.863053833067895, 26.804773255681191 ], [ 91.87866011567175, 26.80301625649502 ], [ 91.886928344967075, 26.814436747158133 ], [ 91.88589481619276, 26.83086985296131 ], [ 91.874009237536242, 26.844305725228988 ], [ 91.895506633524263, 26.853504131410538 ], [ 91.895506633524263, 26.868283589915727 ], [ 91.893129516713742, 26.881357726977509 ], [ 91.908219035380085, 26.885181784611625 ], [ 91.925685669058325, 26.878670553603165 ], [ 91.957414998203518, 26.854279276867082 ], [ 91.975088338356088, 26.846631165196065 ], [ 92.035859822372828, 26.854847718547369 ], [ 92.072756795389722, 26.887765605198521 ], [ 92.080370916284707, 26.921570891583364 ], [ 92.112135043797167, 26.92021759716436 ], [ 92.210320265667676, 26.912336941496612 ], [ 92.257655878316072, 26.924558416937366 ], [ 92.278636508567928, 26.932361559138592 ], [ 92.315843539947352, 26.933446763857027 ], [ 92.328866001065052, 26.935746365402387 ], [ 92.365659621294441, 26.949983222447706 ], [ 92.475523716246443, 26.976777451718018 ], [ 92.54735395661973, 26.99943756768959 ], [ 92.60574832562466, 27.009436956850031 ], [ 92.626212192838395, 27.018066921351299 ], [ 92.641198357817899, 27.028479723460457 ], [ 92.655461053284952, 27.043104153234076 ], [ 92.678818801246607, 27.061087550849773 ], [ 92.698765903623467, 27.065919297937224 ], [ 92.740520461250213, 27.06263784446093 ], [ 92.814831171221527, 27.050803940849157 ], [ 92.902577752561157, 27.018376979713814 ], [ 92.936167433680041, 27.001452949294158 ], [ 92.937097608767573, 27.000290229310615 ], [ 92.936994256879387, 26.996104438269182 ], [ 92.939164667215593, 26.98739695940213 ], [ 92.944952426912934, 26.978637803691633 ], [ 92.964589470927294, 26.965718696260801 ], [ 92.988463982826474, 26.958303127687198 ], [ 93.020296664759243, 26.953006293505602 ], [ 93.37500369676313, 26.988792223382397 ], [ 93.400325147687369, 26.98553660742845 ], [ 93.419135370301007, 26.977294216554803 ], [ 93.431020948957595, 26.967475694547655 ], [ 93.460683220554102, 26.947244371330662 ], [ 93.479803500630993, 26.949208075192466 ], [ 93.524968702943212, 26.968095811272626 ], [ 93.546362746143743, 26.972901719938413 ], [ 93.602069939975678, 26.977165025345638 ], [ 93.632042270834106, 26.983366197092316 ], [ 93.694674106824522, 27.00594879779873 ], [ 93.718135206674361, 27.019875597380913 ], [ 93.734775018052545, 27.032639675180853 ], [ 93.759683058726111, 27.055635687936608 ], [ 93.772837921632714, 27.064568801309118 ], [ 93.796476678056166, 27.080621242975944 ], [ 93.826552361702085, 27.095994981583083 ], [ 93.8338904150106, 27.106046046687702 ], [ 93.834923943784901, 27.113875027310652 ], [ 93.825828892189548, 27.141521918201928 ], [ 93.827069125639568, 27.167050076499827 ], [ 93.83451053263488, 27.183353990194455 ], [ 93.84659022815643, 27.198892401862842 ], [ 93.846602817765785, 27.19890859595494 ], [ 93.959524881967667, 27.305926940975546 ], [ 93.982511834953158, 27.327712103830486 ], [ 93.993706815217294, 27.336190099993068 ], [ 94.028503858666099, 27.362542019298751 ], [ 94.066331007669788, 27.3858222519953 ], [ 94.112628354814632, 27.422535236312108 ], [ 94.243064405597792, 27.525968736168231 ], [ 94.249472283818804, 27.534650377512882 ], [ 94.256913689914796, 27.548086248881244 ], [ 94.255785738620872, 27.550767177363291 ], [ 94.249782343080625, 27.56503611952126 ], [ 94.240893996160906, 27.574622097531737 ], [ 94.228595004555729, 27.583045356457994 ], [ 94.217226189836737, 27.596842963032309 ], [ 94.2122652533387, 27.612552599323003 ], [ 94.218983189022921, 27.626634425838056 ], [ 94.243064405597792, 27.647976793094521 ], [ 94.25081587095562, 27.648596909819496 ], [ 94.255156690728626, 27.646839911532645 ], [ 94.266008742409468, 27.639320991070853 ], [ 94.271486443744294, 27.633610744839977 ], [ 94.281511672225847, 27.620226549415683 ], [ 94.289056431109344, 27.615162258331559 ], [ 94.312000767021729, 27.610382188087492 ], [ 94.323472935427546, 27.606816515569726 ], [ 94.352928501449114, 27.59312225998428 ], [ 94.449150017659107, 27.616195787105877 ], [ 94.47457482316949, 27.593871567918477 ], [ 94.499896274993006, 27.605679633108529 ], [ 94.51590887759258, 27.604583532204224 ], [ 94.525941197228391, 27.603896796400015 ], [ 94.55663699669995, 27.614412950397302 ], [ 94.562896029028465, 27.618395386737681 ], [ 94.607073194772042, 27.646504014748466 ], [ 94.662780388603977, 27.668699041827317 ], [ 94.722414991958246, 27.686914985238325 ], [ 94.788977754719525, 27.699440722011666 ], [ 94.798482701115717, 27.701229355750165 ], [ 94.82678996868205, 27.714146501759608 ], [ 94.896187130131906, 27.745813749804704 ], [ 94.948137648933297, 27.769519762027354 ], [ 95.247034133418467, 27.866154690286685 ], [ 95.294059685905694, 27.892380478776026 ], [ 95.304808383899712, 27.895894477148367 ], [ 95.313179965982584, 27.895791124360862 ], [ 95.340878533717301, 27.881192532109644 ], [ 95.352764113273139, 27.876696681806372 ], [ 95.366406691115827, 27.872975978758397 ], [ 95.382633091344061, 27.870443834115626 ], [ 95.408367954317583, 27.870831406843926 ], [ 95.493013951132909, 27.885662543091875 ], [ 95.543553501093157, 27.902069810473328 ], [ 95.568978305704178, 27.916384181884489 ], [ 95.588408645042847, 27.930698554194912 ], [ 95.672331171446359, 27.977956651578204 ], [ 95.71677290244746, 27.990203966339941 ], [ 95.964096307298661, 27.993304551763622 ], [ 95.973088007005828, 27.988808702359727 ], [ 95.972674594956558, 27.981625677782795 ], [ 95.966370070422357, 27.969869290335446 ], [ 95.951487258230287, 27.947855130409941 ], [ 95.938154737850809, 27.919148871423257 ], [ 95.900741000896446, 27.865379543930764 ], [ 95.81340783070678, 27.774429023480646 ], [ 95.787362909370728, 27.741743679027529 ], [ 95.775890740964854, 27.717326564769103 ], [ 95.782195266398361, 27.704846706909954 ], [ 95.787983026095716, 27.695699978471218 ], [ 95.795114373829193, 27.636969713581372 ], [ 95.79852501761539, 27.627719631455811 ], [ 95.80431277911137, 27.619373887794659 ], [ 95.811857537994939, 27.613560288776281 ], [ 95.823639763863952, 27.60779836750066 ], [ 95.827980585435597, 27.60495616269673 ], [ 95.837799107442805, 27.594026598448743 ], [ 95.847514275763132, 27.587308660965896 ], [ 95.871595494136699, 27.576379095818588 ], [ 95.879967076219529, 27.569506130503491 ], [ 95.886788364691228, 27.557000434222623 ], [ 95.892059361350363, 27.514677435814967 ], [ 95.895780064398409, 27.497546698920978 ], [ 95.879553664170174, 27.462613429765945 ], [ 95.879553664170174, 27.458091741940329 ], [ 95.880897251307061, 27.451709703040358 ], [ 95.886685011903737, 27.447833971260756 ], [ 95.890405714951697, 27.438661404400243 ], [ 95.889165480602387, 27.428016059193734 ], [ 95.884824659930061, 27.409748439838602 ], [ 95.887718539778731, 27.401790268905749 ], [ 95.893196242012863, 27.399697373834719 ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Manipur", "admin": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 94.650360037085974, 25.446649705719317 ], [ 94.630533487930094, 25.427389629627665 ], [ 94.608002564067007, 25.3946267699095 ], [ 94.550124959898909, 25.245281881353712 ], [ 94.553328898110095, 25.204147440451997 ], [ 94.576893352546136, 25.173606670611314 ], [ 94.612963501464364, 25.161359354950257 ], [ 94.653271118267455, 25.15412465442926 ], [ 94.689134563409283, 25.138518371825391 ], [ 94.706807902662518, 25.109941304947249 ], [ 94.713835896709185, 25.068264262585611 ], [ 94.708564900949369, 25.025889587334568 ], [ 94.689754679235008, 24.99509043417617 ], [ 94.673528279906165, 24.974807434115739 ], [ 94.654821410979295, 24.889153747847153 ], [ 94.63911177648724, 24.86279876724927 ], [ 94.599010864359826, 24.813473612317349 ], [ 94.593223103763165, 24.78378550229905 ], [ 94.593223103763165, 24.765931294993262 ], [ 94.589502400715148, 24.747250264488109 ], [ 94.581544230681672, 24.730119528493439 ], [ 94.569451946450073, 24.71639943448627 ], [ 94.555706014021254, 24.708854676502078 ], [ 94.543407023315382, 24.707330220413319 ], [ 94.53100467982209, 24.707485250044208 ], [ 94.516328573205016, 24.704953105401493 ], [ 94.507956991122214, 24.689010925114072 ], [ 94.487079711859138, 24.620462138217071 ], [ 94.474987426728291, 24.597388611095475 ], [ 94.430235636465369, 24.570904439288419 ], [ 94.418453409697037, 24.560310770925291 ], [ 94.41080529802602, 24.545944723570123 ], [ 94.397059367395826, 24.495069275026985 ], [ 94.381866495941978, 24.486310120215869 ], [ 94.370394328435424, 24.477731833457309 ], [ 94.363676391851968, 24.465820415479747 ], [ 94.361195923153247, 24.425409444090569 ], [ 94.352204223446094, 24.413937277483338 ], [ 94.340008586427047, 24.406004944072887 ], [ 94.328743124495517, 24.394481100622265 ], [ 94.328329712446234, 24.388486634450594 ], [ 94.331740356232359, 24.37109751423889 ], [ 94.330706828357364, 24.362855123365243 ], [ 94.323678833411378, 24.354664408435664 ], [ 94.302801554148317, 24.341021831492295 ], [ 94.29536014805231, 24.332598572566038 ], [ 94.28998580040431, 24.316759745965491 ], [ 94.286885213181989, 24.283066712059107 ], [ 94.282751098983937, 24.266426901580239 ], [ 94.233968546411205, 24.16033518562028 ], [ 94.222186321441527, 24.122637227825798 ], [ 94.218465617494161, 24.086670431695033 ], [ 94.214124796821835, 24.069177959595145 ], [ 94.203686157190347, 24.057757467133396 ], [ 94.199138631842317, 24.04809397385781 ], [ 94.193867635183139, 24.009672547450062 ], [ 94.190250284922669, 23.995280659874535 ], [ 94.144878377934717, 23.938875834052503 ], [ 94.135059855028231, 23.919006246041416 ], [ 94.13361291510391, 23.899162496452046 ], [ 94.135059855028231, 23.877303365258051 ], [ 94.131855916817059, 23.856968689253556 ], [ 94.128859266941546, 23.853904873511105 ], [ 94.116869750938207, 23.841646627489858 ], [ 94.099713176521831, 23.842628479420789 ], [ 94.085347127367953, 23.857511292512122 ], [ 94.071084431900985, 23.87611480865149 ], [ 94.055064738147095, 23.887948710464567 ], [ 93.99791060439081, 23.91696502691445 ], [ 93.975069621265945, 23.920918273959153 ], [ 93.940549764160238, 23.928876444892005 ], [ 93.912334432487995, 23.939005025261672 ], [ 93.883188924828957, 23.945309550695182 ], [ 93.803710571885333, 23.936059469468937 ], [ 93.782833293521634, 23.945464579426748 ], [ 93.743042439756749, 23.995280659874535 ], [ 93.711106405036489, 24.005460917087639 ], [ 93.660463501389401, 24.011222839262579 ], [ 93.612404419228511, 24.009052429825768 ], [ 93.588013143391805, 23.99522898393047 ], [ 93.585636027480604, 23.987296651419282 ], [ 93.581811972544443, 23.979596862904877 ], [ 93.576954387035272, 23.973008118429895 ], [ 93.571063273651106, 23.968021343510195 ], [ 93.561348104431403, 23.965695903543118 ], [ 93.555250285472226, 23.970992736825334 ], [ 93.549979288813049, 23.97802073267064 ], [ 93.543468058703894, 23.980888774097643 ], [ 93.526828247325724, 23.97538523344172 ], [ 93.495719034905491, 23.959132996590476 ], [ 93.474841757441112, 23.957505189512855 ], [ 93.456651652451711, 23.959959818890521 ], [ 93.449003539881375, 23.968925680175968 ], [ 93.445592896095249, 23.981612244509446 ], [ 93.439185017874237, 23.99522898393047 ], [ 93.406525512742164, 24.025847269935518 ], [ 93.396500285159988, 24.037526143916406 ], [ 93.368284953487759, 24.078479715866191 ], [ 93.34854455578656, 24.088892517075969 ], [ 93.322189575188673, 24.080055846999691 ], [ 93.309683878907805, 24.063984477301741 ], [ 93.302965942324334, 24.041143494176875 ], [ 93.302559469443878, 24.035774654876374 ], [ 93.302139926716208, 24.035768337139011 ], [ 93.293561639058311, 24.035639145929842 ], [ 93.256768019728256, 24.017655748314095 ], [ 93.248706496007955, 24.017733263579256 ], [ 93.246432732884259, 24.022461656080562 ], [ 93.248603143220436, 24.028766181514069 ], [ 93.251807082330942, 24.035380764410714 ], [ 93.25356408061775, 24.041685288944901 ], [ 93.25242719905593, 24.049307563093514 ], [ 93.248603143220436, 24.056981513186251 ], [ 93.238474562850712, 24.066360784722399 ], [ 93.232893507829075, 24.068841254320425 ], [ 93.227312452807411, 24.067213447242743 ], [ 93.223488396971874, 24.062485052942801 ], [ 93.219354282773892, 24.054759426006679 ], [ 93.213153111027196, 24.049152533462625 ], [ 93.204058059431858, 24.044088243277766 ], [ 93.187418247154355, 24.040290024964683 ], [ 93.178116489983992, 24.039954129079767 ], [ 93.172535434962285, 24.040806789801472 ], [ 93.170261671838645, 24.043545640918573 ], [ 93.170261671838645, 24.046362006401463 ], [ 93.170571731100466, 24.051038722958701 ], [ 93.168091262401774, 24.054836941271784 ], [ 93.158892857119596, 24.060392156972451 ], [ 93.148040806338074, 24.061994127426996 ], [ 93.140909457705263, 24.062071641792837 ], [ 93.135431757269743, 24.059513657829022 ], [ 93.123856236076364, 24.048945827887614 ], [ 93.114347772431671, 24.044088243277766 ], [ 93.105666131986354, 24.044940903999468 ], [ 93.098224724991013, 24.05003103350537 ], [ 93.093263787593656, 24.056593940457955 ], [ 93.084375440674009, 24.064112860919799 ], [ 93.070939569305651, 24.071864325378264 ], [ 92.995491977772502, 24.0952737492841 ], [ 92.984123163053468, 24.100880641828148 ], [ 92.979368931231107, 24.104782212928733 ], [ 92.977921991306772, 24.109303900754405 ], [ 92.980712518367952, 24.113257147799111 ], [ 92.985880162239638, 24.117830512468171 ], [ 92.990944452424486, 24.121680405826048 ], [ 92.995491977772502, 24.126408800125997 ], [ 92.997559035321146, 24.131318061579229 ], [ 92.998282504833682, 24.137674262057541 ], [ 92.997972447370472, 24.160179348398167 ], [ 93.002209914355973, 24.184803168231603 ], [ 93.00717085175333, 24.197127997359182 ], [ 93.008514438890174, 24.203303331583463 ], [ 93.009341262089535, 24.215033881508411 ], [ 93.015542433836202, 24.233017280023425 ], [ 93.017712844172351, 24.239916082860923 ], [ 93.013372022600691, 24.261956082107467 ], [ 93.014302198587501, 24.274461778388336 ], [ 93.018643020159217, 24.28864695948959 ], [ 93.026084426255224, 24.299989935786865 ], [ 93.042724236734074, 24.315182807240713 ], [ 93.04592817584458, 24.326525784437361 ], [ 93.041690707959759, 24.340840155848461 ], [ 93.022880487144718, 24.354250189694479 ], [ 93.018643020159217, 24.367479356387147 ], [ 93.022053663945357, 24.390165309881123 ], [ 93.018436313684887, 24.399131171166569 ], [ 93.011821730788185, 24.412799587430978 ], [ 93.036729770562403, 24.414608263460586 ], [ 93.045721470269584, 24.444528917475562 ], [ 93.05274946521557, 24.522663683282353 ], [ 93.064531691084625, 24.55891470025318 ], [ 93.073730096366802, 24.567234605492612 ], [ 93.090576613319996, 24.56981842697882 ], [ 93.100601840902172, 24.577027289078096 ], [ 93.095640904404135, 24.593641262034616 ], [ 93.080034620901003, 24.624440416092281 ], [ 93.099051548190332, 24.65438690852897 ], [ 93.106286248711314, 24.671931057472303 ], [ 93.097397901791666, 24.679682521930825 ], [ 93.091196730944304, 24.682705592988718 ], [ 93.088096144621304, 24.69027619119327 ], [ 93.087062615846989, 24.706993516937239 ], [ 93.090473259633185, 24.713892319774736 ], [ 93.09305708201866, 24.716501980581931 ], [ 93.097604608265982, 24.726811428104888 ], [ 93.10318566328769, 24.743218696385721 ], [ 93.111867302833701, 24.780477402809872 ], [ 93.117655064329682, 24.79719472945316 ], [ 93.123959588863883, 24.809803779420857 ], [ 93.128817172574401, 24.814480495978096 ], [ 93.135328403582918, 24.8191572134346 ], [ 93.139772577042748, 24.821353461293196 ], [ 93.148144159125565, 24.823885605935967 ], [ 93.151244745448579, 24.824350693929372 ], [ 93.153725214147272, 24.824143989253681 ], [ 93.156412388420932, 24.822800401217528 ], [ 93.168091262401774, 24.813705348722856 ], [ 93.173775669311595, 24.810604763299178 ], [ 93.181113722620154, 24.809442044214954 ], [ 93.189175246340469, 24.810811468874189 ], [ 93.199407180397003, 24.816521715105061 ], [ 93.203541293695693, 24.823963121201068 ], [ 93.205401645669355, 24.832076320865493 ], [ 93.207158644855525, 24.847579251581173 ], [ 93.227002395344229, 24.880161241448086 ], [ 93.253357375042782, 24.914706936076236 ], [ 93.251703728644117, 24.927496853197219 ], [ 93.248293084857934, 24.931682644238599 ], [ 93.240334913925068, 24.939744167958956 ], [ 93.239404737938273, 24.944808458143818 ], [ 93.241781853849403, 24.949252630704333 ], [ 93.246432732884259, 24.951629747514794 ], [ 93.25149702306912, 24.952714952233233 ], [ 93.257698194815788, 24.954911200091765 ], [ 93.265139601811129, 24.958373520721402 ], [ 93.274338007093306, 24.967132677331158 ], [ 93.276818474892636, 24.973437200966028 ], [ 93.276301710955153, 24.980103460706111 ], [ 93.260075310726947, 25.008835558114463 ], [ 93.260385369988768, 25.029402778115688 ], [ 93.262969190575603, 25.03599152348999 ], [ 93.268756952071641, 25.045577501500468 ], [ 93.274958123818266, 25.051701157982048 ], [ 93.281366001139972, 25.056455389804391 ], [ 93.28818728961167, 25.059013372868826 ], [ 93.304103632376652, 25.061442166522731 ], [ 93.31206180241017, 25.065782986295737 ], [ 93.316402622183176, 25.07474884758124 ], [ 93.320846795643064, 25.087332058227894 ], [ 93.32818484895158, 25.09857168173772 ], [ 93.339553663670571, 25.112162584535604 ], [ 93.345858189104064, 25.124358222453957 ], [ 93.365701938693448, 25.177662461953044 ], [ 93.394330682415017, 25.235049139706003 ], [ 93.410763788218205, 25.261662502722281 ], [ 93.422856073349053, 25.276596990858419 ], [ 93.449211053047605, 25.302150987577981 ], [ 93.449222942085029, 25.302162515087954 ], [ 93.449211053047605, 25.302125149156261 ], [ 93.456859165617942, 25.294166978223465 ], [ 93.466470982050154, 25.285898748928098 ], [ 93.47298221215928, 25.282074693092561 ], [ 93.480733678416442, 25.278974108568256 ], [ 93.487968378038175, 25.27721710848277 ], [ 93.4941695497848, 25.276390286182725 ], [ 93.498510369557877, 25.274995022202514 ], [ 93.500990838256513, 25.27344472949067 ], [ 93.508845656401874, 25.264711412201898 ], [ 93.515046828148542, 25.259647122017039 ], [ 93.524038526956403, 25.255823065282236 ], [ 93.546362746143743, 25.251688951084184 ], [ 93.557834915448936, 25.247503160042804 ], [ 93.566723260569944, 25.241250311452681 ], [ 93.573337842567327, 25.23277537748168 ], [ 93.586360304584304, 25.212621569529794 ], [ 93.596178826591512, 25.206575426514682 ], [ 93.605480584661194, 25.205800279259442 ], [ 93.611475050832865, 25.21138133428115 ], [ 93.61529910666836, 25.218719388488974 ], [ 93.649198846149758, 25.261920885140736 ], [ 93.679377882583182, 25.314320787074614 ], [ 93.679687941844961, 25.323932604406135 ], [ 93.679067824220667, 25.328273424179141 ], [ 93.698704868235026, 25.347083644994193 ], [ 93.723716261696069, 25.364033514734896 ], [ 93.808568963187028, 25.446095689164675 ], [ 93.81342654779688, 25.457154446420528 ], [ 93.813219842221855, 25.463252264480381 ], [ 93.811359491147556, 25.471417140988247 ], [ 93.807535435312033, 25.479530341551985 ], [ 93.801437616352842, 25.485989894817745 ], [ 93.792755975008191, 25.490434068277629 ], [ 93.761440057012962, 25.499012355935459 ], [ 93.759889764301107, 25.499684150403191 ], [ 93.759373000363581, 25.499994207866386 ], [ 93.759373000363581, 25.500149237497276 ], [ 93.759269647576147, 25.500304267128225 ], [ 93.760199822663637, 25.503611558126856 ], [ 93.765884229573459, 25.516478991412324 ], [ 93.768364699171485, 25.524902249439261 ], [ 93.769604934420144, 25.532085273116817 ], [ 93.781283808400971, 25.53745962256351 ], [ 93.803194614639708, 25.543557441522687 ], [ 93.929905227444223, 25.554409491404893 ], [ 93.976000603944641, 25.548311672445717 ], [ 93.996051060008341, 25.550585436468676 ], [ 94.026746860379234, 25.5538410515233 ], [ 94.040286086333737, 25.548001614083198 ], [ 94.051551548265294, 25.541748765493132 ], [ 94.071498652440809, 25.525470689320851 ], [ 94.084004347822358, 25.519527899992564 ], [ 94.096303339427521, 25.515703843257761 ], [ 94.10994591637089, 25.515135403376114 ], [ 94.126068963811548, 25.516168931251165 ], [ 94.150770298010769, 25.521439927910301 ], [ 94.163586053553487, 25.518649399949815 ], [ 94.171854282848784, 25.514411932964318 ], [ 94.177125278608671, 25.507332262074208 ], [ 94.183533155930348, 25.500666002334121 ], [ 94.184876743966498, 25.499684150403191 ], [ 94.187047153403313, 25.498598944785435 ], [ 94.195108677123685, 25.49658356408019 ], [ 94.209371372590709, 25.495498358462434 ], [ 94.251746046942429, 25.500149237497276 ], [ 94.325333287401207, 25.512034817053113 ], [ 94.365847609779308, 25.527951158019501 ], [ 94.386724888142993, 25.541438707130617 ], [ 94.401400994760067, 25.553892727467368 ], [ 94.422484979598082, 25.583761705538272 ], [ 94.435300734241466, 25.594407049845465 ], [ 94.476331820557022, 25.615077623533459 ], [ 94.490284458560865, 25.623707587135407 ], [ 94.564698521319627, 25.68422069053241 ], [ 94.570382928229478, 25.687631334318603 ], [ 94.573896925702499, 25.685564276769917 ], [ 94.574827101689351, 25.67621084275617 ], [ 94.573896925702499, 25.668511054241712 ], [ 94.570382928229478, 25.654661769924694 ], [ 94.570692986591979, 25.621485500855151 ], [ 94.562528110983507, 25.595130520257268 ], [ 94.554983351200605, 25.577663886579096 ], [ 94.537413364734945, 25.524902249439261 ], [ 94.535863072023105, 25.513688463451782 ], [ 94.541030714995458, 25.502526353408477 ], [ 94.55281294176379, 25.490330715490124 ], [ 94.599528435888516, 25.460771795781731 ], [ 94.61596154169176, 25.452400213698862 ], [ 94.649827179780445, 25.446738785366612 ], [ 94.650360037085974, 25.446649705719317 ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Nagaland", "admin": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.24693311796895, 26.648903921478784 ], [ 95.239075154894437, 26.649640605629422 ], [ 95.223262166715557, 26.670362854362217 ], [ 95.204865357050522, 26.667572327301055 ], [ 95.19556359898084, 26.660751037930019 ], [ 95.181610961876331, 26.641682435595889 ], [ 95.1732393797935, 26.633827617450546 ], [ 95.163420857786292, 26.629745178297295 ], [ 95.141406697860745, 26.624990946475002 ], [ 95.132621705527228, 26.620805155433569 ], [ 95.122803183520062, 26.611606751050708 ], [ 95.119082478673405, 26.604217020898766 ], [ 95.115878540462219, 26.575639954020627 ], [ 95.116188598824721, 26.56933542948644 ], [ 95.114948364475396, 26.562565816059525 ], [ 95.109574015928018, 26.551300354128042 ], [ 95.099238729084021, 26.536107484472829 ], [ 95.069886515849959, 26.506238506401925 ], [ 95.054383586033609, 26.494921367626993 ], [ 95.054383586033609, 26.494869689884233 ], [ 95.040637655403415, 26.475594381075773 ], [ 95.042601359265262, 26.459678040109445 ], [ 95.06172163934211, 26.426605122928034 ], [ 95.066062459115116, 26.407433166907076 ], [ 95.064202108040817, 26.392602031558507 ], [ 95.050456177410624, 26.359064026383688 ], [ 95.043634888039577, 26.327696432444377 ], [ 95.041774536065915, 26.287595520316977 ], [ 95.046322062313237, 26.247959697082301 ], [ 95.058724405806615, 26.217677306962109 ], [ 95.066372518376937, 26.211011047222023 ], [ 95.074537394884814, 26.208323872948363 ], [ 95.082805623280862, 26.206618551504896 ], [ 95.090763794213657, 26.202691141982591 ], [ 95.094484497261689, 26.195043030311574 ], [ 95.089730265439343, 26.187601624215567 ], [ 95.082392212130827, 26.179798482913604 ], [ 95.07836145072028, 26.171323548043286 ], [ 95.088179972727488, 26.104092508962076 ], [ 95.101719197782685, 26.093395488710819 ], [ 95.13747928923776, 26.082956848179997 ], [ 95.150088338306134, 26.070967915836601 ], [ 95.151225219867953, 26.049935607842027 ], [ 95.139546345887112, 26.029936829521027 ], [ 95.108230427891883, 25.995106913153499 ], [ 95.065855754439482, 25.953817444419482 ], [ 95.049422649535558, 25.943740539993879 ], [ 95.012008911681889, 25.931441549288017 ], [ 95.000640096063506, 25.92203643843089 ], [ 94.994025513166804, 25.900435690554666 ], [ 94.9931986899675, 25.880953674372556 ], [ 95.013455852505544, 25.777704163216519 ], [ 95.01531620268058, 25.755121562510052 ], [ 95.008804973470689, 25.737138163095718 ], [ 94.999916627450361, 25.731557108973384 ], [ 94.978625936138002, 25.729076640274677 ], [ 94.969014119705818, 25.725614319645096 ], [ 94.961469360822292, 25.717966207074763 ], [ 94.871655721034614, 25.598025208596475 ], [ 94.868038370774144, 25.594717916698464 ], [ 94.857496379254471, 25.589343567251824 ], [ 94.853465616944604, 25.586036275353813 ], [ 94.852948853007135, 25.580765280493264 ], [ 94.861010375828116, 25.571411846479513 ], [ 94.860286906315622, 25.567174378594697 ], [ 94.850778442670943, 25.56278188107893 ], [ 94.831038045869064, 25.562471823615731 ], [ 94.82235640542369, 25.559112853975016 ], [ 94.807990356269869, 25.542628072227725 ], [ 94.782358846083852, 25.504594219447647 ], [ 94.764375448468087, 25.491675110218122 ], [ 94.745771932328722, 25.486610820033313 ], [ 94.711148722435524, 25.482786764197776 ], [ 94.692028442358634, 25.4763272100327 ], [ 94.659472290014122, 25.455501608512403 ], [ 94.650360037085974, 25.446649705719317 ], [ 94.649827179780445, 25.446738785366612 ], [ 94.61596154169176, 25.452400213698862 ], [ 94.599528435888516, 25.460771795781731 ], [ 94.55281294176379, 25.490330715490124 ], [ 94.541030714995458, 25.502526353408477 ], [ 94.535863072023105, 25.513688463451782 ], [ 94.537413364734945, 25.524902249439261 ], [ 94.554983351200605, 25.577663886579096 ], [ 94.562528110983507, 25.595130520257268 ], [ 94.570692986591979, 25.621485500855151 ], [ 94.570382928229478, 25.654661769924694 ], [ 94.573896925702499, 25.668511054241712 ], [ 94.574827101689351, 25.67621084275617 ], [ 94.573896925702499, 25.685564276769917 ], [ 94.570382928229478, 25.687631334318603 ], [ 94.564698521319627, 25.68422069053241 ], [ 94.490284458560865, 25.623707587135407 ], [ 94.476331820557022, 25.615077623533459 ], [ 94.435300734241466, 25.594407049845465 ], [ 94.422484979598082, 25.583761705538272 ], [ 94.401400994760067, 25.553892727467368 ], [ 94.386724888142993, 25.541438707130617 ], [ 94.365847609779308, 25.527951158019501 ], [ 94.325333287401207, 25.512034817053113 ], [ 94.251746046942429, 25.500149237497276 ], [ 94.209371372590709, 25.495498358462434 ], [ 94.195108677123685, 25.49658356408019 ], [ 94.187047153403313, 25.498598944785435 ], [ 94.184876743966498, 25.499684150403191 ], [ 94.183533155930348, 25.500666002334121 ], [ 94.177125278608671, 25.507332262074208 ], [ 94.171854282848784, 25.514411932964318 ], [ 94.163586053553487, 25.518649399949815 ], [ 94.150770298010769, 25.521439927910301 ], [ 94.126068963811548, 25.516168931251165 ], [ 94.10994591637089, 25.515135403376114 ], [ 94.096303339427521, 25.515703843257761 ], [ 94.084004347822358, 25.519527899992564 ], [ 94.071498652440809, 25.525470689320851 ], [ 94.051551548265294, 25.541748765493132 ], [ 94.040286086333737, 25.548001614083198 ], [ 94.026746860379234, 25.5538410515233 ], [ 93.996051060008341, 25.550585436468676 ], [ 93.976000603944641, 25.548311672445717 ], [ 93.929905227444223, 25.554409491404893 ], [ 93.803194614639708, 25.543557441522687 ], [ 93.781283808400971, 25.53745962256351 ], [ 93.769604934420144, 25.532085273116817 ], [ 93.768364699171485, 25.524902249439261 ], [ 93.765884229573459, 25.516478991412324 ], [ 93.760199822663637, 25.503611558126856 ], [ 93.759269647576147, 25.500304267128225 ], [ 93.759373000363581, 25.500149237497276 ], [ 93.759373000363581, 25.499994207866386 ], [ 93.759889764301107, 25.499684150403191 ], [ 93.761440057012962, 25.499012355935459 ], [ 93.792755975008191, 25.490434068277629 ], [ 93.801437616352842, 25.485989894817745 ], [ 93.807535435312033, 25.479530341551985 ], [ 93.811359491147556, 25.471417140988247 ], [ 93.813219842221855, 25.463252264480381 ], [ 93.81342654779688, 25.457154446420528 ], [ 93.808568963187028, 25.446095689164675 ], [ 93.723716261696069, 25.364033514734896 ], [ 93.698704868235026, 25.347083644994193 ], [ 93.679067824220667, 25.328273424179141 ], [ 93.679687941844961, 25.323932604406135 ], [ 93.679377882583182, 25.314320787074614 ], [ 93.649198846149758, 25.261920885140736 ], [ 93.61529910666836, 25.218719388488974 ], [ 93.611475050832865, 25.21138133428115 ], [ 93.605480584661194, 25.205800279259442 ], [ 93.596178826591512, 25.206575426514682 ], [ 93.586360304584304, 25.212621569529794 ], [ 93.573337842567327, 25.23277537748168 ], [ 93.566723260569944, 25.241250311452681 ], [ 93.557834915448936, 25.247503160042804 ], [ 93.546362746143743, 25.251688951084184 ], [ 93.524038526956403, 25.255823065282236 ], [ 93.515046828148542, 25.259647122017039 ], [ 93.508845656401874, 25.264711412201898 ], [ 93.500990838256513, 25.27344472949067 ], [ 93.498510369557877, 25.274995022202514 ], [ 93.4941695497848, 25.276390286182725 ], [ 93.487968378038175, 25.27721710848277 ], [ 93.480733678416442, 25.278974108568256 ], [ 93.47298221215928, 25.282074693092561 ], [ 93.466470982050154, 25.285898748928098 ], [ 93.456859165617942, 25.294166978223465 ], [ 93.449211053047605, 25.302125149156261 ], [ 93.449222942085029, 25.302162515087954 ], [ 93.455722284056122, 25.322589016369982 ], [ 93.454998813644281, 25.338091946186346 ], [ 93.458719516692298, 25.363620104484195 ], [ 93.458512811117288, 25.38072500295652 ], [ 93.454482049706741, 25.39503937436762 ], [ 93.450141229034415, 25.404134425962972 ], [ 93.443733351712723, 25.421704413327966 ], [ 93.437842238328557, 25.431884671440393 ], [ 93.427817010746409, 25.442478338904206 ], [ 93.416654900703037, 25.449092922700224 ], [ 93.405906203608353, 25.454157212885029 ], [ 93.396294387176141, 25.461391913406025 ], [ 93.390093215429474, 25.470383612213929 ], [ 93.384615513195328, 25.480873928688816 ], [ 93.378310988661127, 25.488211981997377 ], [ 93.371593052077614, 25.493121243450609 ], [ 93.367872349029639, 25.49658356408019 ], [ 93.366011997055949, 25.498909003147951 ], [ 93.365288528442804, 25.500666002334121 ], [ 93.361361118920442, 25.507590644492605 ], [ 93.355676711111272, 25.514825344114335 ], [ 93.340587192444929, 25.529294745156331 ], [ 93.335936313410102, 25.538028062445104 ], [ 93.338313429321232, 25.548466702076606 ], [ 93.345858189104064, 25.556993312891045 ], [ 93.379034458173663, 25.580867824790285 ], [ 93.419135369401687, 25.61704132739532 ], [ 93.477323032831606, 25.653111477212853 ], [ 93.524348586218224, 25.689284979817948 ], [ 93.580779249562667, 25.763078924952417 ], [ 93.599692824064547, 25.780545560429225 ], [ 93.696741164373151, 25.855476386226197 ], [ 93.705836215968517, 25.864364732246592 ], [ 93.708936802291518, 25.870100815999816 ], [ 93.706973098429714, 25.875320135815564 ], [ 93.702632277757317, 25.88141795477474 ], [ 93.686922642366014, 25.89495717982998 ], [ 93.680928176194342, 25.902811997975331 ], [ 93.677620884296331, 25.911441962476538 ], [ 93.677930942658833, 25.91940013340939 ], [ 93.685062290392338, 25.926996568237023 ], [ 93.697361281098182, 25.933404446458034 ], [ 93.724956496045408, 25.943326321252695 ], [ 93.747280715232733, 25.955418606383539 ], [ 93.752138299842599, 25.959087633487449 ], [ 93.758649529951796, 25.96063792529997 ], [ 93.768881464008288, 25.960689602143415 ], [ 93.78676150883652, 25.956400458314473 ], [ 93.796373325268661, 25.951594550548059 ], [ 93.804124790626517, 25.942706204527717 ], [ 93.80794884556272, 25.931389064853413 ], [ 93.810015904010669, 25.918108222216681 ], [ 93.810119256798188, 25.903638821174631 ], [ 93.807638788099538, 25.891546536043787 ], [ 93.802884556277178, 25.880952866781335 ], [ 93.79513309091935, 25.871289374405073 ], [ 93.778803338803002, 25.854494533396004 ], [ 93.774772575593801, 25.846277980944016 ], [ 93.773635694931301, 25.841006985184201 ], [ 93.774875930179959, 25.834289049499997 ], [ 93.779113397165503, 25.831033434445423 ], [ 93.78831180244768, 25.831136786333609 ], [ 93.805778436125848, 25.834082343025663 ], [ 93.835854119771767, 25.845141099382197 ], [ 93.884946730707028, 25.851859035965724 ], [ 93.904170363571353, 25.856819973363084 ], [ 93.934762811154741, 25.874079901466239 ], [ 93.947785272272455, 25.886172187496406 ], [ 93.974036900082794, 25.923172512401486 ], [ 93.981891717328807, 25.930923976860011 ], [ 93.986542596363662, 25.939088853367871 ], [ 93.989229770637365, 25.946220201101362 ], [ 93.980651482979496, 25.966994127576918 ], [ 93.9744503112328, 25.977536119096605 ], [ 93.971659784171635, 25.98487417240511 ], [ 93.969696079410468, 25.993349107275428 ], [ 93.96907596268548, 25.999653631809615 ], [ 93.969696079410468, 26.027042141181877 ], [ 93.973416781559166, 26.040374661561369 ], [ 93.983338657253157, 26.053087063417244 ], [ 93.992640415322839, 26.060373439882305 ], [ 93.998841587069506, 26.068073228396766 ], [ 94.002665642905043, 26.076754868842094 ], [ 94.010210402687875, 26.131273505168103 ], [ 94.008970168338564, 26.142642319887152 ], [ 94.001735467817511, 26.164914862231107 ], [ 94.002665642905043, 26.172666328488273 ], [ 94.007729933989182, 26.18439687841316 ], [ 94.102917922324181, 26.303562731434901 ], [ 94.134647250570112, 26.333741766968949 ], [ 94.160485467230473, 26.351208401546497 ], [ 94.170407342924463, 26.360768541135251 ], [ 94.177435336971172, 26.372447414216762 ], [ 94.183946567979689, 26.395598457502778 ], [ 94.189217563739504, 26.447481595499191 ], [ 94.195418734586866, 26.465464993114942 ], [ 94.207200962254518, 26.483706773149031 ], [ 94.247405226270118, 26.523290920439589 ], [ 94.269626092670009, 26.554710191222338 ], [ 94.291020135870539, 26.542876289409204 ], [ 94.29226037021985, 26.529750475504038 ], [ 94.298358189179027, 26.501225084569963 ], [ 94.298668248440862, 26.500139878952208 ], [ 94.298771600329047, 26.499468085383793 ], [ 94.302699008952033, 26.492130032075288 ], [ 94.308280063973697, 26.485412095491764 ], [ 94.316961704419086, 26.481484686868775 ], [ 94.327917107988114, 26.481898098018796 ], [ 94.345487095353093, 26.489701239320706 ], [ 94.358199497208972, 26.498382879766091 ], [ 94.370808547176665, 26.511870428877156 ], [ 94.387034947404842, 26.525151272413261 ], [ 94.396543410150215, 26.534401354538879 ], [ 94.420624627624392, 26.5674742699216 ], [ 94.421554803611272, 26.584940904499145 ], [ 94.421244745248742, 26.593415839369467 ], [ 94.421968214761236, 26.603957830889151 ], [ 94.428686151344763, 26.61687693921936 ], [ 94.459588657290666, 26.647727769221142 ], [ 94.469510532984629, 26.661266995175644 ], [ 94.479122349416841, 26.671447251489433 ], [ 94.486563756412167, 26.676666571305184 ], [ 94.495658807108185, 26.677545071347929 ], [ 94.51043826741207, 26.677131659298592 ], [ 94.520566847781751, 26.679922186359811 ], [ 94.531418898563274, 26.688242092498562 ], [ 94.540513950158612, 26.696975409787282 ], [ 94.549195592402597, 26.701936347184638 ], [ 94.558083938422925, 26.70090281841032 ], [ 94.587229445182658, 26.699920966479393 ], [ 94.668981561249993, 26.732115384517382 ], [ 94.690478957238014, 26.74100373053772 ], [ 94.765409783934317, 26.788029283024962 ], [ 94.79889611226568, 26.814384264522168 ], [ 94.832589146172069, 26.857275702811414 ], [ 94.861011183419322, 26.90192414028683 ], [ 94.873206821337689, 26.915049953292673 ], [ 94.901732212271696, 26.938097642891869 ], [ 94.910310499929594, 26.946675931449075 ], [ 94.917131789300569, 26.951171779953647 ], [ 94.924779900971586, 26.950913398434572 ], [ 94.930981072718254, 26.948432928836549 ], [ 94.954545526254975, 26.932516587870222 ], [ 94.966224400235816, 26.927142239322841 ], [ 94.980797154065357, 26.92424835947417 ], [ 94.998470493318536, 26.92331818348736 ], [ 95.017900831757899, 26.928175767197892 ], [ 95.031233351238114, 26.933498439801149 ], [ 95.148642205972948, 27.000109361258005 ], [ 95.148952264335463, 27.000109361258005 ], [ 95.149779088434158, 27.000471096463905 ], [ 95.152259556233474, 27.003778388361919 ], [ 95.158564080767661, 27.010237942526995 ], [ 95.165902134076177, 27.023983873157189 ], [ 95.176444125595864, 27.033182278439362 ], [ 95.179854771180686, 27.003726712417794 ], [ 95.189673293187852, 26.996026923004074 ], [ 95.198664991995756, 26.993494778361303 ], [ 95.209206984414749, 26.988223781702111 ], [ 95.225433383743592, 26.974219469552843 ], [ 95.231531203602088, 26.960318508392444 ], [ 95.234321730663254, 26.945745755462205 ], [ 95.231634556389594, 26.908073635190075 ], [ 95.229050734004119, 26.89825511318292 ], [ 95.225330030956101, 26.889625149580976 ], [ 95.220472446346236, 26.882132067540844 ], [ 95.214788039436399, 26.876602688463262 ], [ 95.208070102852872, 26.872468573365946 ], [ 95.202178988569386, 26.866732490511986 ], [ 95.19876834478319, 26.85913605388577 ], [ 95.197424757646374, 26.84177277299505 ], [ 95.200215285606902, 26.830145575857607 ], [ 95.206209751778587, 26.82058543536953 ], [ 95.225743443005442, 26.806322739902495 ], [ 95.233081496313929, 26.7980545115065 ], [ 95.235251906650134, 26.790613105410436 ], [ 95.227190382929763, 26.759917304140224 ], [ 95.224813267018632, 26.742140611200224 ], [ 95.225743443005442, 26.731030178000303 ], [ 95.227500441292293, 26.723847154322691 ], [ 95.246310663006611, 26.6797154807848 ], [ 95.246930259024154, 26.649045445091183 ], [ 95.24693311796895, 26.648903921478784 ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Meghalaya", "admin": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.922482538438359, 26.038230088747575 ], [ 91.954315220371058, 26.042725938151527 ], [ 92.02066775940952, 26.058848984692865 ], [ 92.030899692566692, 26.059288235163873 ], [ 92.042681919335038, 26.057117824827738 ], [ 92.054050734054087, 26.05683360398762 ], [ 92.118026158080653, 26.072129828228977 ], [ 92.149652134438412, 26.084506334199936 ], [ 92.164121534581099, 26.088382065979538 ], [ 92.255175408718088, 26.085152289346631 ], [ 92.264270461212774, 26.082671821547301 ], [ 92.26840457631009, 26.07840851524076 ], [ 92.270368280171937, 26.073215032947409 ], [ 92.261479934151609, 26.055412503384328 ], [ 92.183965285069775, 25.993013211390569 ], [ 92.179727818084288, 25.987742213832057 ], [ 92.175697055774478, 25.979784043798585 ], [ 92.174043410275132, 25.970223904209767 ], [ 92.174663527000092, 25.959087633487449 ], [ 92.179107701359257, 25.947744656290801 ], [ 92.18716922418028, 25.942783717994185 ], [ 92.207839796969012, 25.939347235786268 ], [ 92.213420851990662, 25.932345079261999 ], [ 92.214661086340001, 25.919477646875858 ], [ 92.197917922174298, 25.884983629091202 ], [ 92.183965285069775, 25.846975612934155 ], [ 92.167015415329075, 25.817132473284968 ], [ 92.165465121717915, 25.809174303251488 ], [ 92.1672221209041, 25.799071560404165 ], [ 92.170632765589616, 25.787547716054231 ], [ 92.173526646337592, 25.772406521443763 ], [ 92.173836703800802, 25.755172430862949 ], [ 92.167532180165921, 25.700033677811966 ], [ 92.167325473691605, 25.689543362236346 ], [ 92.170736119276427, 25.6844273952081 ], [ 92.178384230947444, 25.684685776727171 ], [ 92.18902957615397, 25.693341580549479 ], [ 92.204739210646011, 25.703754380859941 ], [ 92.227683546558382, 25.713753770020439 ], [ 92.266750929911424, 25.723288072086852 ], [ 92.316463657571703, 25.727318834396662 ], [ 92.331346469763702, 25.736568914723584 ], [ 92.341578403820193, 25.744759630552487 ], [ 92.353980747313571, 25.75292450616103 ], [ 92.367209914006295, 25.759642441845184 ], [ 92.382402784560824, 25.764344997723462 ], [ 92.398112420851447, 25.761011868303054 ], [ 92.413615349768492, 25.751839301442597 ], [ 92.433149041894723, 25.729385891046029 ], [ 92.476867303383287, 25.699878648181024 ], [ 92.521412388071184, 25.661586412083231 ], [ 92.593449334918816, 25.586655585386946 ], [ 92.595413038780663, 25.585957953396811 ], [ 92.597480096329292, 25.584872747779052 ], [ 92.600063917815518, 25.583865058325777 ], [ 92.603991327337809, 25.584330146319186 ], [ 92.617633905180497, 25.589549465235613 ], [ 92.624041783401509, 25.592960109921133 ], [ 92.642438593066558, 25.605129910317082 ], [ 92.655771111647397, 25.611486110795333 ], [ 92.663315871430228, 25.612855536353884 ], [ 92.670137159901955, 25.613036404406497 ], [ 92.677888625259797, 25.610633450073632 ], [ 92.682022740357112, 25.606137599770413 ], [ 92.683573033068953, 25.596370753707269 ], [ 92.678818801246607, 25.586733099752728 ], [ 92.672307570238132, 25.57921417929094 ], [ 92.664866164142069, 25.573323065906713 ], [ 92.657631463621087, 25.566579290901522 ], [ 92.652567173436225, 25.559913032060759 ], [ 92.642955357004084, 25.543609117466751 ], [ 92.636444125995567, 25.53477244739053 ], [ 92.62786583923706, 25.526375026885937 ], [ 92.610089146296986, 25.511983141109049 ], [ 92.588281691047115, 25.498831488782166 ], [ 92.585077752835986, 25.495937608034176 ], [ 92.584871047260989, 25.491519272996008 ], [ 92.587661574322141, 25.485214749361141 ], [ 92.613189731720666, 25.475267035245448 ], [ 92.620321078554838, 25.469970201063909 ], [ 92.626005487263384, 25.45896312155082 ], [ 92.632206659010066, 25.451831772917949 ], [ 92.636754185257388, 25.447439277200878 ], [ 92.670447219163776, 25.439093533539726 ], [ 92.682539504294624, 25.435269476804873 ], [ 92.690704379903167, 25.431755479331908 ], [ 92.701763137158963, 25.425528469163503 ], [ 92.742277460436384, 25.39196462736566 ], [ 92.755299920654721, 25.37573822713744 ], [ 92.764394973149464, 25.367263292267118 ], [ 92.781964959615124, 25.35589447754807 ], [ 92.78961307218546, 25.348892320124428 ], [ 92.795917595820342, 25.33816946145145 ], [ 92.798294711731472, 25.327343248192328 ], [ 92.796537714344012, 25.315199286218039 ], [ 92.792506952034145, 25.304450588224022 ], [ 92.786305780287449, 25.292229111884005 ], [ 92.786305780287449, 25.282462266720181 ], [ 92.787546013737469, 25.276622830179456 ], [ 92.79085330563548, 25.27073171589597 ], [ 92.792506952034145, 25.264995632142693 ], [ 92.794057244745972, 25.258045152461811 ], [ 92.798088007055853, 25.251301378355887 ], [ 92.81080040891166, 25.240242621100034 ], [ 92.811627232111036, 25.23411896371919 ], [ 92.805529413151845, 25.227711087296818 ], [ 92.680369093958447, 25.187920234431253 ], [ 92.649156528750765, 25.155441596452469 ], [ 92.639234653956038, 25.156216741909073 ], [ 92.60192426978918, 25.148956203865673 ], [ 92.58642133997283, 25.149266262228188 ], [ 92.56492394398478, 25.152418525394634 ], [ 92.560686476999237, 25.150248115058442 ], [ 92.558516065763769, 25.141954047341411 ], [ 92.559652948224922, 25.134150906039448 ], [ 92.557482537888731, 25.127898058348698 ], [ 92.545493606444708, 25.125081691966493 ], [ 92.533814731564547, 25.125030016022372 ], [ 92.523479444720564, 25.121309312075077 ], [ 92.510146926139655, 25.112937729992208 ], [ 92.488959589413454, 25.093920802702879 ], [ 92.453819614683397, 25.070097968546399 ], [ 92.409067824420475, 25.025785426955842 ], [ 92.384937035415788, 25.004773235896092 ], [ 92.381058390732093, 25.023434957057582 ], [ 92.356253702846033, 25.037000021433805 ], [ 92.328141723961352, 25.048007100946954 ], [ 92.312122030207462, 25.068600159369844 ], [ 92.30354374165033, 25.07428456627968 ], [ 92.251557250866355, 25.080795797288197 ], [ 92.233677206038166, 25.084955749907916 ], [ 92.220137980083663, 25.090381775298674 ], [ 92.208045694952816, 25.098107401335476 ], [ 92.194093058747598, 25.109166159490648 ], [ 92.179210245656279, 25.126684469112938 ], [ 92.172699016446401, 25.131955464872753 ], [ 92.164740845513535, 25.133557434428035 ], [ 92.150994913984036, 25.129733379491817 ], [ 92.14551721174989, 25.131697082454359 ], [ 92.138592570490658, 25.136399638332641 ], [ 92.124123169448666, 25.136968079113554 ], [ 92.116164999415147, 25.13944854871152 ], [ 92.110377237919153, 25.144874573202962 ], [ 92.100455363124439, 25.15908559182656 ], [ 92.092910604240927, 25.164718323691655 ], [ 92.066038859705586, 25.17453684569886 ], [ 92.033999471298472, 25.181668193432351 ], [ 92.001753377316433, 25.182960104625117 ], [ 91.975088338356088, 25.175363667998848 ], [ 91.956278117541018, 25.169782612977198 ], [ 91.900570922809763, 25.1775857542791 ], [ 91.793704061393257, 25.165338440416683 ], [ 91.745334920869851, 25.169369201827173 ], [ 91.730142049416003, 25.167457173909437 ], [ 91.723734172094325, 25.16192779663049 ], [ 91.717739705922654, 25.149835511499642 ], [ 91.710711710976597, 25.144667868527275 ], [ 91.701823364056949, 25.147148336326659 ], [ 91.688904257525436, 25.152987772867384 ], [ 91.677432088220243, 25.152626038560804 ], [ 91.672264445247862, 25.13650299112015 ], [ 91.66203251119137, 25.127201233050464 ], [ 91.638674764128993, 25.124048971682665 ], [ 91.613146606730467, 25.125134176401097 ], [ 91.596196736989768, 25.128906555393197 ], [ 91.580177043235864, 25.140895488635859 ], [ 91.573459106652408, 25.152264302455585 ], [ 91.566121053343892, 25.159964090969986 ], [ 91.548757772453172, 25.161100973431186 ], [ 91.540179483896026, 25.157638651902225 ], [ 91.52343632152899, 25.145184632464801 ], [ 91.511654093861267, 25.142497457291817 ], [ 91.50090539586725, 25.14115387015493 ], [ 91.480751587016044, 25.135262757670088 ], [ 91.471036417796398, 25.133919170533257 ], [ 91.431865683454461, 25.137949931044481 ], [ 91.283967733024426, 25.178981018259371 ], [ 91.235701945288469, 25.201925354171742 ], [ 91.224953247294451, 25.20161529670855 ], [ 91.2031457929439, 25.191331686707937 ], [ 91.190846802238056, 25.189471333834941 ], [ 91.135346313981174, 25.191228333021112 ], [ 90.975149373744529, 25.167818909115333 ], [ 90.943420045498641, 25.157431946327215 ], [ 90.934821386397772, 25.156359858220863 ], [ 90.821980428453955, 25.142290752616127 ], [ 90.793971802356722, 25.145391337140488 ], [ 90.779399048527225, 25.151954244093069 ], [ 90.766893351347036, 25.160532532650215 ], [ 90.753974243016813, 25.167560527596262 ], [ 90.73795454926298, 25.169420879569934 ], [ 90.732683554402428, 25.166888733128523 ], [ 90.722038208296595, 25.15660512312791 ], [ 90.716353800487454, 25.153556214547613 ], [ 90.707672160042122, 25.152987772867384 ], [ 90.670568481450218, 25.158775533464045 ], [ 90.648967732674677, 25.167818909115333 ], [ 90.637598917955614, 25.171074524169907 ], [ 90.623439575276151, 25.171436259375859 ], [ 90.583338664048057, 25.162031149417992 ], [ 90.50137984240574, 25.168800761046263 ], [ 90.399783976749035, 25.149008687400958 ], [ 90.364644002918325, 25.149990540231208 ], [ 90.286922648261552, 25.180066222977807 ], [ 90.130084676766373, 25.211588847447327 ], [ 89.908134399682737, 25.29690663693173 ], [ 89.870203897891528, 25.295563050694224 ], [ 89.8345988360674, 25.282437235889681 ], [ 89.819044230306901, 25.284969381431772 ], [ 89.807365356326073, 25.304503073557949 ], [ 89.79852868714913, 25.340056458538694 ], [ 89.795014689676108, 25.374162903595103 ], [ 89.799234035322442, 25.402892809355642 ], [ 89.800699097485321, 25.412868550842909 ], [ 89.808567939658616, 25.439507111963614 ], [ 89.83403120287764, 25.448291937922587 ], [ 89.875475702141884, 25.460435898997499 ], [ 89.883330520287231, 25.465939438754042 ], [ 89.888808220722723, 25.473303331383583 ], [ 89.893562453444403, 25.485524806824337 ], [ 89.896249627718106, 25.498650620729556 ], [ 89.895629510093755, 25.527925320497097 ], [ 89.897283155593101, 25.541361191865512 ], [ 89.903380974552292, 25.553530992261464 ], [ 89.919814081254771, 25.560533148785787 ], [ 89.951026645563189, 25.559318752858125 ], [ 89.966529576278887, 25.56148916319432 ], [ 89.980792270846536, 25.567509466888389 ], [ 89.992161085565598, 25.574330756259368 ], [ 89.998465610999091, 25.580661119215272 ], [ 90.002082961259561, 25.586810615017836 ], [ 90.004046665121436, 25.59792104731843 ], [ 90.003013137246441, 25.604251410274337 ], [ 90.000532667648415, 25.609315701358518 ], [ 89.993711379176759, 25.616550400980199 ], [ 89.966632928167073, 25.63861623774914 ], [ 89.959708286907841, 25.646264350319477 ], [ 89.953817172624355, 25.655566108389159 ], [ 89.949166293589528, 25.665798041546331 ], [ 89.942345005117815, 25.691481228575803 ], [ 89.94089806519348, 25.704090278543497 ], [ 89.941518181918511, 25.715278225209879 ], [ 89.944618768241511, 25.725820216729566 ], [ 89.950199823263162, 25.73594879799861 ], [ 89.962912225119027, 25.754138902088634 ], [ 89.967459751366377, 25.762097073021486 ], [ 89.970870396051893, 25.770623683835929 ], [ 89.972627395238064, 25.780519721108242 ], [ 89.974177687949904, 25.801577867524536 ], [ 89.980172154121576, 25.814006049439623 ], [ 89.989783969654397, 25.825323188214547 ], [ 90.020169711662817, 25.852401638324913 ], [ 90.026887648246301, 25.861212469979471 ], [ 90.032158644905479, 25.875526842289894 ], [ 90.041046990925835, 25.886301377806312 ], [ 90.056653272630371, 25.899737250073994 ], [ 90.089622837024223, 25.920795396490341 ], [ 90.114427524910283, 25.945470893167162 ], [ 90.119698520670141, 25.952653916844778 ], [ 90.135614861636483, 25.959785265477585 ], [ 90.216850213766278, 25.974254666519638 ], [ 90.279998813694235, 25.975288194394629 ], [ 90.296121861134935, 25.980223294269585 ], [ 90.323923780757795, 25.984796658039322 ], [ 90.330848422916318, 25.987018744319577 ], [ 90.336636184412299, 25.990506904270198 ], [ 90.357513461876721, 26.006164862818135 ], [ 90.373739862104884, 26.014355576848398 ], [ 90.383455031324601, 26.016887722390429 ], [ 90.39709760916729, 26.01714610390956 ], [ 90.445983513628207, 26.011099961793768 ], [ 90.462106561068865, 26.010867417797094 ], [ 90.47523237497407, 26.011952623414796 ], [ 90.484534133043766, 26.011926784993129 ], [ 90.494869418988443, 26.009911404287831 ], [ 90.515229934313979, 26.000118719803076 ], [ 90.545305617060507, 25.980662542941953 ], [ 90.549853143307857, 25.974280504041978 ], [ 90.551713495281518, 25.961258042924321 ], [ 90.548922967321047, 25.951956284854642 ], [ 90.53941450367634, 25.935497341529064 ], [ 90.532903272667838, 25.921415514114635 ], [ 90.531249628067812, 25.915627753517974 ], [ 90.530629510443504, 25.912268784776582 ], [ 90.534660271854008, 25.910951036061412 ], [ 90.538380974902026, 25.911286932845648 ], [ 90.578998650966895, 25.937202663871794 ], [ 90.593261346433934, 25.948674832277671 ], [ 90.596671991119464, 25.953170680782243 ], [ 90.604113397215457, 25.966063950690732 ], [ 90.609591099449617, 25.969397081010467 ], [ 90.61765262227064, 25.969784653738763 ], [ 90.626747674765326, 25.964126085250591 ], [ 90.630985141750827, 25.956684679154584 ], [ 90.632845493724489, 25.947512112294127 ], [ 90.633568964136344, 25.939114691789595 ], [ 90.636979607922498, 25.933016872830414 ], [ 90.644317662130362, 25.931466580118578 ], [ 90.667778761980216, 25.941620998909961 ], [ 90.691756625767624, 25.949605007365157 ], [ 90.752941521833733, 25.962136542067746 ], [ 90.761829868753381, 25.962059027701962 ], [ 90.766584099676422, 25.959733587734881 ], [ 90.768961215587552, 25.953661607197368 ], [ 90.769684685999408, 25.935910753578408 ], [ 90.772681918635598, 25.927978421067273 ], [ 90.778056268082224, 25.925058701897566 ], [ 90.788288202138787, 25.927435817808707 ], [ 90.814539829049778, 25.943558865249425 ], [ 90.824358351956306, 25.946194363579018 ], [ 90.868386671807372, 25.951594550548059 ], [ 90.89877241381582, 25.947899685022431 ], [ 90.924610629576847, 25.941698513275746 ], [ 90.96347130735488, 25.94461823244546 ], [ 90.974530063711398, 25.943636378715887 ], [ 90.981558058657455, 25.936685899035005 ], [ 90.987449172041622, 25.922604072519899 ], [ 90.993650343788303, 25.917849839798233 ], [ 91.00491580571979, 25.917229723073255 ], [ 91.014424270263788, 25.915705267883759 ], [ 91.024139438584172, 25.908341376153537 ], [ 91.028997023194037, 25.899298001401625 ], [ 91.030857375167656, 25.886843980165501 ], [ 91.029927199180847, 25.874364122306353 ], [ 91.023726027434151, 25.847053128199256 ], [ 91.02496626178349, 25.839094957266465 ], [ 91.031270787216982, 25.835710151002669 ], [ 91.046360304984006, 25.84289317557954 ], [ 91.060933058813575, 25.851729844756498 ], [ 91.064550409074045, 25.851548976703892 ], [ 91.070441521558948, 25.847337348140051 ], [ 91.073025343944423, 25.83976675083488 ], [ 91.081603631602249, 25.837570502076968 ], [ 91.096796503056098, 25.839921780465769 ], [ 91.1788586765866, 25.869635728006408 ], [ 91.195911900014138, 25.868938096915596 ], [ 91.198702427075304, 25.85697500299397 ], [ 91.194258253615473, 25.829353948725718 ], [ 91.193948195252943, 25.813773505442892 ], [ 91.197668898300989, 25.795609238875265 ], [ 91.199322543800264, 25.760650133097151 ], [ 91.208107537932477, 25.736181341995287 ], [ 91.222060175037015, 25.730677802238738 ], [ 91.233532341644192, 25.731866359744679 ], [ 91.250998977121057, 25.737602444397275 ], [ 91.269085728423562, 25.751606757445867 ], [ 91.314354282623967, 25.798709825198266 ], [ 91.329133742028517, 25.821214911538895 ], [ 91.343189731920546, 25.833849799028989 ], [ 91.360553012811209, 25.843254909886177 ], [ 91.416260206643173, 25.858757838803168 ], [ 91.473517694086283, 25.861832586704502 ], [ 91.527364536843805, 25.888084215414203 ], [ 91.530775180630002, 25.895293077513479 ], [ 91.532842238178702, 25.901545925204285 ], [ 91.527364536843805, 25.901597602047666 ], [ 91.502869908219594, 25.885138657822775 ], [ 91.496565382786144, 25.882890733120799 ], [ 91.488503859065787, 25.882322293239209 ], [ 91.475274693272382, 25.884751085094472 ], [ 91.472277459736901, 25.890099596119448 ], [ 91.474654575648103, 25.896249091022689 ], [ 91.495945266061113, 25.912113756044953 ], [ 91.502559848957816, 25.918728338941655 ], [ 91.522713657809021, 25.951594550548059 ], [ 91.54059370263721, 25.966839097945972 ], [ 91.557956984427264, 25.984796658039322 ], [ 91.568395624058752, 25.99996369107145 ], [ 91.568395624058752, 26.000041205437235 ], [ 91.58234826026397, 26.026887112450247 ], [ 91.591960076696111, 26.034406032912042 ], [ 91.60622277216315, 26.037713323910729 ], [ 91.626066521752506, 26.033760076866024 ], [ 91.637848749420158, 26.026111965195007 ], [ 91.644876744366215, 26.015725003306212 ], [ 91.64591027224121, 26.001591498149075 ], [ 91.645806918554385, 26.000092882280679 ], [ 91.644256625842544, 25.991747137720203 ], [ 91.638365513357698, 25.972704372908474 ], [ 91.632577752761023, 25.961051337349311 ], [ 91.629683872013047, 25.94844228828094 ], [ 91.631647576774171, 25.939579779782999 ], [ 91.641259393206354, 25.932784328833684 ], [ 91.655108676624067, 25.930226344869876 ], [ 91.672471958414093, 25.931156520856742 ], [ 91.693762647927812, 25.941440130857355 ], [ 91.707301873882315, 25.953661607197368 ], [ 91.718153924663824, 25.967691759567053 ], [ 91.730349562582191, 25.989421699551766 ], [ 91.735000440717698, 26.000480455008976 ], [ 91.741098259676889, 26.029806829821322 ], [ 91.74523237477419, 26.0394703230969 ], [ 91.751950311357731, 26.048074449176447 ], [ 91.792878045785116, 26.082645982226261 ], [ 91.807140741252155, 26.088097846038742 ], [ 91.825330845342165, 26.089260566022283 ], [ 91.848791945192062, 26.079002794443394 ], [ 91.877524041701093, 26.052492784214614 ], [ 91.89085656118128, 26.04365611413834 ], [ 91.903362258361469, 26.040116279142914 ], [ 91.922482538438359, 26.038230088747575 ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Punjab", "admin": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.625182733296455, 32.190903632296788 ], [ 75.632314081029946, 32.191032823505957 ], [ 75.637895135152334, 32.193358263473037 ], [ 75.642132603037155, 32.195580348853973 ], [ 75.647713658058791, 32.197621567980939 ], [ 75.654018181693672, 32.198009142507878 ], [ 75.659805943189653, 32.195347804857299 ], [ 75.661046176639715, 32.188784897904661 ], [ 75.656188592029864, 32.174651394546167 ], [ 75.649263950770646, 32.161473903797621 ], [ 75.639445427864175, 32.146849474024002 ], [ 75.582187941320385, 32.092253323332152 ], [ 75.577847120648059, 32.083700873196726 ], [ 75.580947706971045, 32.076698717571723 ], [ 75.591799757752568, 32.072099514481003 ], [ 75.601618279759734, 32.068947252213881 ], [ 75.662389763776545, 32.06044647892184 ], [ 75.684300571813864, 32.053082587191618 ], [ 75.699803500730908, 32.056105658249514 ], [ 75.706521437314436, 32.049826972137048 ], [ 75.752926873976008, 32.032360338458822 ], [ 75.801812779336245, 32.005643621755716 ], [ 75.861240676216184, 31.98257009553344 ], [ 75.879740838668724, 31.972389838320332 ], [ 75.891419711750231, 31.95394135181191 ], [ 75.927489861567821, 31.907923488777946 ], [ 75.96428348179721, 31.848753974316416 ], [ 75.96810753763269, 31.841054185802015 ], [ 75.968314243207686, 31.835214749261233 ], [ 75.961906365886009, 31.831571560579039 ], [ 75.955395134877534, 31.831313178160595 ], [ 75.942476027446659, 31.833121853290887 ], [ 75.934931267663828, 31.832889309294156 ], [ 75.927593215254632, 31.829943753501418 ], [ 75.922632276957955, 31.824698595263943 ], [ 75.92159874908296, 31.814285794054108 ], [ 75.923252394582306, 31.806275947177188 ], [ 75.94309614507101, 31.771756090071499 ], [ 76.070530227388062, 31.56417186124235 ], [ 76.125927361958119, 31.430536607178674 ], [ 76.141016879725143, 31.369584255109253 ], [ 76.147011345896857, 31.354417222976441 ], [ 76.158483514302688, 31.338552557954181 ], [ 76.179464146353197, 31.318476264368083 ], [ 76.201064895128738, 31.307004095962203 ], [ 76.223079055054299, 31.315634060463474 ], [ 76.231140577875337, 31.317494412437149 ], [ 76.242819451856164, 31.318140367583844 ], [ 76.261112908733679, 31.310931505484564 ], [ 76.26834760925469, 31.309226183141838 ], [ 76.275375604200732, 31.310440579069443 ], [ 76.281990187097421, 31.315659897985878 ], [ 76.287777947694096, 31.324470730539755 ], [ 76.290878534017097, 31.339250189944259 ], [ 76.294495884277566, 31.347518419239627 ], [ 76.301110467174269, 31.351781725546171 ], [ 76.314339633866922, 31.349921373572489 ], [ 76.319610629626808, 31.35379710535209 ], [ 76.322814568737314, 31.364158229718491 ], [ 76.316923456252468, 31.40170115788208 ], [ 76.322091099224778, 31.412811591082054 ], [ 76.345035435137149, 31.418185940528698 ], [ 76.349582961384485, 31.41986542444976 ], [ 76.352993605170681, 31.42211334915174 ], [ 76.356094190594362, 31.42629914019312 ], [ 76.359918247329219, 31.430304063181943 ], [ 76.373560826071227, 31.41924530682541 ], [ 76.412834914099946, 31.355114854067264 ], [ 76.433505486888677, 31.317804469900342 ], [ 76.439396600272843, 31.299691881075425 ], [ 76.447458123993201, 31.297056382745829 ], [ 76.452832473439841, 31.29821910183005 ], [ 76.459757114699059, 31.302895820185928 ], [ 76.463787876109549, 31.307133287171432 ], [ 76.4693689311312, 31.307985947893137 ], [ 76.475363397302871, 31.303360908179339 ], [ 76.483424921023229, 31.290674342946538 ], [ 76.491693150318596, 31.284524848043297 ], [ 76.496344029353438, 31.283077908118962 ], [ 76.499237909202108, 31.286281847229407 ], [ 76.500994908388279, 31.288865667816303 ], [ 76.503268670612584, 31.290881049420868 ], [ 76.506886020873125, 31.291113593417599 ], [ 76.520528598715813, 31.289175727078138 ], [ 76.526316359312474, 31.285765082392622 ], [ 76.531587355072347, 31.278737088345899 ], [ 76.533757766307801, 31.266799831946678 ], [ 76.536651646156471, 31.25987518978814 ], [ 76.542232701178179, 31.255689398746703 ], [ 76.54647016816368, 31.25667125157695 ], [ 76.550604283260995, 31.259823512944759 ], [ 76.554841750246553, 31.265430406388123 ], [ 76.561146274780683, 31.276721706741334 ], [ 76.564246861103683, 31.280028997740025 ], [ 76.567244093739859, 31.280519924155151 ], [ 76.5718949727747, 31.277574368362359 ], [ 76.576752557384538, 31.272303371703224 ], [ 76.584193964379864, 31.259926865732258 ], [ 76.5869844914411, 31.249798285362537 ], [ 76.581403436419393, 31.231091417334984 ], [ 76.582333612406245, 31.227422390231077 ], [ 76.590085076864781, 31.226595567031776 ], [ 76.614269647126477, 31.228998521364637 ], [ 76.623571405196159, 31.226492214244267 ], [ 76.628428989806011, 31.220084336922575 ], [ 76.621814406009989, 31.208276271732522 ], [ 76.606518181768635, 31.192799181237202 ], [ 76.602797478720603, 31.185667833503707 ], [ 76.601350538796268, 31.177528795417562 ], [ 76.599800246084428, 31.134895737748074 ], [ 76.60248742125745, 31.127247626077057 ], [ 76.621711053222484, 31.11652476740408 ], [ 76.623054641258634, 31.107274685278465 ], [ 76.611582472852817, 31.088929552456865 ], [ 76.607861769804785, 31.081229763043087 ], [ 76.605898065043604, 31.072599799441143 ], [ 76.605691358569274, 31.062264513496466 ], [ 76.607551711442269, 31.052058416962318 ], [ 76.610859003340281, 31.041206366180855 ], [ 76.615303175900792, 31.030147609824319 ], [ 76.625638461845455, 31.016608384769135 ], [ 76.6451721539717, 30.999270942300136 ], [ 76.700259230179299, 30.961883042868116 ], [ 76.721756626167334, 30.941160794135321 ], [ 76.768162061929544, 30.907596951438158 ], [ 76.777773879261062, 30.897287503015825 ], [ 76.785525343719584, 30.885169379463257 ], [ 76.796894159337953, 30.861992499554212 ], [ 76.801855095835933, 30.856153062114114 ], [ 76.808573033318766, 30.852432359066079 ], [ 76.822318963948973, 30.849073391224 ], [ 76.828726841270651, 30.846205348897733 ], [ 76.832757602681156, 30.842277940274695 ], [ 76.835238072279182, 30.835870062952999 ], [ 76.835858189004156, 30.82922964073531 ], [ 76.834721307442322, 30.822460029107042 ], [ 76.829657017257475, 30.808765774420912 ], [ 76.814567498591117, 30.789128730406549 ], [ 76.773949823425582, 30.799024766779546 ], [ 76.757930128772372, 30.798559678786141 ], [ 76.741497022969199, 30.796492621237455 ], [ 76.703773227652263, 30.781403103470435 ], [ 76.696951939180607, 30.77633881328557 ], [ 76.694368116795133, 30.771507066198115 ], [ 76.693748000070087, 30.763523057742869 ], [ 76.695401645569447, 30.755874946071849 ], [ 76.698088819843093, 30.749260362275884 ], [ 76.701809522891139, 30.744557807296918 ], [ 76.730748325874501, 30.723163764096391 ], [ 76.760100539108564, 30.692002874832774 ], [ 76.769609002753199, 30.684664822423592 ], [ 76.775603468924928, 30.677404283480875 ], [ 76.780564406322227, 30.673451036436166 ], [ 76.785215285357069, 30.672288316452629 ], [ 76.794723749001761, 30.679729723447959 ], [ 76.800304803124078, 30.682675279240687 ], [ 76.806816034132609, 30.683295395965725 ], [ 76.811673617843141, 30.683217882499253 ], [ 76.82727990134633, 30.680711575378886 ], [ 76.838131952127853, 30.678799547461143 ], [ 76.841852655175828, 30.679678045705199 ], [ 76.846400181423164, 30.682029324093993 ], [ 76.848880650121856, 30.68228770651239 ], [ 76.851257766033015, 30.681564236100588 ], [ 76.852808058744856, 30.679032091457817 ], [ 76.854358352356016, 30.675337225932193 ], [ 76.860662875990883, 30.645235703864607 ], [ 76.865933871750741, 30.6408690465692 ], [ 76.871721633246722, 30.6385436057028 ], [ 76.879266392130248, 30.637535916249522 ], [ 76.886604445438749, 30.633789373880454 ], [ 76.89104861799926, 30.627329819715378 ], [ 76.896216261870933, 30.610534980504944 ], [ 76.899420200981453, 30.604824734274068 ], [ 76.901487257630762, 30.598804430579996 ], [ 76.901487257630762, 30.592629096355662 ], [ 76.894459262684776, 30.561132311207185 ], [ 76.893115676447266, 30.543794866939542 ], [ 76.897869908269598, 30.535190740859996 ], [ 76.905518019940615, 30.526844998098163 ], [ 76.90975548692613, 30.520437119877155 ], [ 76.910375603651161, 30.514158433764685 ], [ 76.906034783878098, 30.506277778096937 ], [ 76.900040317706427, 30.49821625437664 ], [ 76.898076612945303, 30.494056300857547 ], [ 76.896009556295937, 30.486614894761537 ], [ 76.895699497034087, 30.455634874449849 ], [ 76.897146436958437, 30.442095649394666 ], [ 76.906344842240614, 30.405612088427109 ], [ 76.906964959864965, 30.395767727098924 ], [ 76.904897902316264, 30.384088853118037 ], [ 76.900350376068943, 30.372022407308229 ], [ 76.89104861799926, 30.361247869993171 ], [ 76.880506625580239, 30.358302314200436 ], [ 76.869241163648709, 30.362358914032651 ], [ 76.860042759265852, 30.37682831507464 ], [ 76.851051059558671, 30.404733588384371 ], [ 76.845263298962024, 30.417523505505351 ], [ 76.838752068852827, 30.424241441189558 ], [ 76.829450310783145, 30.427083645094108 ], [ 76.798444452049793, 30.42284617810861 ], [ 76.786455519706394, 30.422923692474395 ], [ 76.76712853405455, 30.430597643466449 ], [ 76.75286583858751, 30.430520128201344 ], [ 76.7276477395515, 30.420055650148122 ], [ 76.72423709486597, 30.416489976731032 ], [ 76.721446567804819, 30.410598863346813 ], [ 76.716382276720637, 30.381246650112807 ], [ 76.717105747132493, 30.376750799809535 ], [ 76.718966099106154, 30.37341767038912 ], [ 76.722273391004123, 30.37163483278129 ], [ 76.734055616873192, 30.369206040926024 ], [ 76.739016555169812, 30.366596381018148 ], [ 76.740153435832354, 30.362901516391837 ], [ 76.736846144833663, 30.357087918272779 ], [ 76.729714797100129, 30.349594835333384 ], [ 76.714315220071327, 30.33711497747418 ], [ 76.649926384894727, 30.296807358872506 ], [ 76.636903923777012, 30.291019599175112 ], [ 76.616750115825127, 30.279469916403503 ], [ 76.605588006681089, 30.274431463741042 ], [ 76.564556918566879, 30.26189992903846 ], [ 76.550190871211697, 30.254510198886567 ], [ 76.539132114855178, 30.245130927350363 ], [ 76.533137647784187, 30.23461477335308 ], [ 76.535411410907813, 30.225028795342606 ], [ 76.539338820430174, 30.219886989892636 ], [ 76.545333285702526, 30.21779409392229 ], [ 76.549880811949876, 30.218336697180799 ], [ 76.556081983696558, 30.220894680245287 ], [ 76.561146274780683, 30.224770412924208 ], [ 76.577476026897088, 30.243658149004368 ], [ 76.582436965193764, 30.247275499264838 ], [ 76.58636437381675, 30.248128159986539 ], [ 76.59080854727658, 30.246681220062211 ], [ 76.594735955899623, 30.243864854579318 ], [ 76.597629835748293, 30.240195828374731 ], [ 76.599180129359439, 30.236475125326756 ], [ 76.600420362809459, 30.23135915829851 ], [ 76.60248742125745, 30.226165676005099 ], [ 76.60527794831863, 30.221514796970258 ], [ 76.60930870972912, 30.217639065190657 ], [ 76.615199823113286, 30.214228421404524 ], [ 76.628222284231001, 30.210714423032176 ], [ 76.633389927203311, 30.208440659908479 ], [ 76.637420688613858, 30.205443427272304 ], [ 76.639694451737498, 30.202187812217741 ], [ 76.641451450923654, 30.19797618275458 ], [ 76.640831333299303, 30.190560615080294 ], [ 76.638660922963183, 30.182059840888929 ], [ 76.6300826353053, 30.166892808756067 ], [ 76.62853234169414, 30.15867625630414 ], [ 76.629359164893501, 30.147565823104223 ], [ 76.624811638646165, 30.142837428804274 ], [ 76.589775017602946, 30.124027207989222 ], [ 76.531380650396656, 30.083977972705263 ], [ 76.497067498865917, 30.085218207054588 ], [ 76.486525507346229, 30.090773424553895 ], [ 76.462030877822698, 30.097026272244641 ], [ 76.454589470827372, 30.101625475335414 ], [ 76.448698358342526, 30.108110867022894 ], [ 76.437536249198487, 30.124259751985953 ], [ 76.429578078265635, 30.140356961004951 ], [ 76.419346145108463, 30.177124741913296 ], [ 76.415315382798653, 30.182602444147438 ], [ 76.409320916626925, 30.185883896724413 ], [ 76.401982863318409, 30.186452338404639 ], [ 76.394541457222417, 30.184566148009306 ], [ 76.387823520638946, 30.180044461083011 ], [ 76.386169875139601, 30.171698717421858 ], [ 76.388443638263226, 30.165755927194247 ], [ 76.392060987624447, 30.159528917025842 ], [ 76.393921339598123, 30.154542141206829 ], [ 76.394024693284891, 30.149426174178583 ], [ 76.392474399673731, 30.144697780777957 ], [ 76.383172641604091, 30.125680854387888 ], [ 76.379348585768568, 30.119944769735291 ], [ 76.373457473283722, 30.116973375520839 ], [ 76.368289829412021, 30.116534125049828 ], [ 76.363638951276513, 30.118446152967572 ], [ 76.357747836993028, 30.123717148727387 ], [ 76.345965611124015, 30.136584581113478 ], [ 76.338937616177972, 30.141235460148319 ], [ 76.333356561156322, 30.141623032876616 ], [ 76.328085565396449, 30.138832505815451 ], [ 76.327775506134671, 30.130357570945129 ], [ 76.329635858108276, 30.123355414420811 ], [ 76.329945917370125, 30.116844184311606 ], [ 76.32684533104711, 30.111883246014987 ], [ 76.317233513715664, 30.106560574311054 ], [ 76.308138462120255, 30.105914618264983 ], [ 76.299560173563108, 30.106922309516953 ], [ 76.286537714244091, 30.110513821355763 ], [ 76.274238722638913, 30.11172821728336 ], [ 76.266693963755387, 30.113691922044541 ], [ 76.257702264048177, 30.11860118349778 ], [ 76.228763461964135, 30.138651637762845 ], [ 76.220701939143154, 30.139814357746381 ], [ 76.213880649772122, 30.13748891957794 ], [ 76.205819126051765, 30.130977688569423 ], [ 76.201374952591934, 30.125603339122783 ], [ 76.202408482265568, 30.11816193302678 ], [ 76.205819126051765, 30.113045965998534 ], [ 76.211606886648426, 30.108317573497171 ], [ 76.217187940770813, 30.105216987174167 ], [ 76.244783155718025, 30.096354477776909 ], [ 76.251294386726542, 30.092478745997305 ], [ 76.252741326650877, 30.08857717489666 ], [ 76.246333449329185, 30.084882311169672 ], [ 76.224629347766125, 30.08170421048089 ], [ 76.219668410368769, 30.079223740882917 ], [ 76.216567824045782, 30.075192979472426 ], [ 76.216257765683267, 30.068707586885573 ], [ 76.216981236095123, 30.063694973544152 ], [ 76.218738234381959, 30.059586696868553 ], [ 76.221322055868129, 30.054780789102086 ], [ 76.223079055054299, 30.050672512426498 ], [ 76.22194217259316, 30.046409207019277 ], [ 76.219048292744489, 30.042507635918628 ], [ 76.210470005086592, 30.033490098689064 ], [ 76.203338658252434, 30.021682034398335 ], [ 76.183701613338755, 29.973571275394018 ], [ 76.178120559216367, 29.954683539313859 ], [ 76.176983676755228, 29.945536810875122 ], [ 76.178430616679549, 29.935873318498796 ], [ 76.181014439065024, 29.92807017719689 ], [ 76.185355258838101, 29.918380846398907 ], [ 76.188145785899266, 29.909466661057532 ], [ 76.193313429770896, 29.901069241452312 ], [ 76.200134719141914, 29.89541067206482 ], [ 76.219048292744489, 29.885488797270163 ], [ 76.226282993265485, 29.87820241990573 ], [ 76.225559522853629, 29.869081528989337 ], [ 76.213880649772122, 29.85874624304466 ], [ 76.184115025388039, 29.845413723564484 ], [ 76.161274042263173, 29.830091660901413 ], [ 76.147321405158635, 29.823270372429697 ], [ 76.125824009170614, 29.818490302185687 ], [ 76.084379509906384, 29.802108873225897 ], [ 76.052030064036202, 29.764410916330686 ], [ 76.04386518662902, 29.758158066841297 ], [ 76.031772902397492, 29.754824937420882 ], [ 76.00397098187527, 29.756530259763675 ], [ 75.991568638381906, 29.752732042349855 ], [ 75.970588006331383, 29.742965196286768 ], [ 75.956945427589389, 29.738624376513762 ], [ 75.939892205960504, 29.738546861248601 ], [ 75.908059523128415, 29.748158678580118 ], [ 75.886665479927871, 29.749243883298554 ], [ 75.875503370783903, 29.760561021174166 ], [ 75.873126254872702, 29.764100857068851 ], [ 75.858140089893183, 29.796501979782526 ], [ 75.851938918146502, 29.805028591496288 ], [ 75.829821405433492, 29.821074124571162 ], [ 75.821036411301279, 29.824768989197473 ], [ 75.806256951896771, 29.828644720977074 ], [ 75.796955193827074, 29.830195013688911 ], [ 75.785999790258046, 29.830970160044838 ], [ 75.75923139761089, 29.823735460423158 ], [ 75.727502069364945, 29.810351264099545 ], [ 75.72016401605643, 29.80262563716342 ], [ 75.71747684088345, 29.794331570345658 ], [ 75.718923780807799, 29.786063341050347 ], [ 75.717683547357794, 29.778027655751711 ], [ 75.710862257986747, 29.771232204802395 ], [ 75.698563267280903, 29.768984280100423 ], [ 75.66321658697585, 29.775314643056326 ], [ 75.641925896562825, 29.773066718354354 ], [ 75.623632439685295, 29.767123928126743 ], [ 75.604408806820942, 29.76466929784981 ], [ 75.575366651949352, 29.769526882459612 ], [ 75.548081496263961, 29.784538885860847 ], [ 75.539503207706829, 29.787484443452282 ], [ 75.530201451435772, 29.786373399412803 ], [ 75.511184523247081, 29.787846177758858 ], [ 75.477904901390033, 29.800532742092336 ], [ 75.46116173722433, 29.807896632923242 ], [ 75.452480095879693, 29.809214382537728 ], [ 75.445762160195486, 29.806191311479829 ], [ 75.431499464728446, 29.785830797053617 ], [ 75.408761835290392, 29.76141368279519 ], [ 75.384783969704401, 29.722268785076317 ], [ 75.376722446883349, 29.71294118948429 ], [ 75.353674758183487, 29.695448717384402 ], [ 75.345303176100657, 29.686973782514023 ], [ 75.344166293639475, 29.679248155577902 ], [ 75.344786411263826, 29.67095408786081 ], [ 75.342822707401965, 29.662840888196389 ], [ 75.335794711556659, 29.660903021856932 ], [ 75.329903599071812, 29.662763372931291 ], [ 75.32153201698894, 29.662582505778001 ], [ 75.311610142194269, 29.656174628456306 ], [ 75.296727329102879, 29.633953762056471 ], [ 75.290629510143717, 29.621525580141387 ], [ 75.289906039731918, 29.611526190980889 ], [ 75.293626742779892, 29.605169990502642 ], [ 75.299517857063378, 29.597676907563191 ], [ 75.303548617574606, 29.589176134271153 ], [ 75.301791620187075, 29.580494492926498 ], [ 75.295280389178558, 29.574861761960729 ], [ 75.267995232593847, 29.569642442144975 ], [ 75.248564895053832, 29.55982392013777 ], [ 75.234612257949308, 29.561787624898951 ], [ 75.228617791777637, 29.584680283967877 ], [ 75.226447381441446, 29.590700588561273 ], [ 75.22076297363229, 29.60124258098028 ], [ 75.219522740182271, 29.605040798394089 ], [ 75.219109328132944, 29.609924221425661 ], [ 75.217869093783619, 29.614678453248011 ], [ 75.213631625898742, 29.621344712988094 ], [ 75.206810337427086, 29.628372707934084 ], [ 75.194304641146218, 29.638630479512976 ], [ 75.190273878836408, 29.644469916053758 ], [ 75.189343702849541, 29.648345648732683 ], [ 75.192857701221882, 29.653306586130039 ], [ 75.193994581884382, 29.655993761303016 ], [ 75.193994581884382, 29.659507757876717 ], [ 75.192547641960047, 29.663254299346413 ], [ 75.174460890657528, 29.679868272302876 ], [ 75.172290480321337, 29.684932563387058 ], [ 75.172083774746383, 29.688214015964025 ], [ 75.174254185082503, 29.690126043881769 ], [ 75.179835240104211, 29.69247732227057 ], [ 75.184072707089726, 29.693717555720578 ], [ 75.19957563690609, 29.701339829869251 ], [ 75.205570103077761, 29.705318915335674 ], [ 75.207120395789602, 29.707644355302751 ], [ 75.207327102263932, 29.710925807879725 ], [ 75.207120395789602, 29.718212185244102 ], [ 75.204846632665905, 29.734076850266426 ], [ 75.205156691028421, 29.740949815581526 ], [ 75.20608686701523, 29.744618841786114 ], [ 75.207947218988906, 29.746840928965693 ], [ 75.210531039575741, 29.747383531324878 ], [ 75.214251742623773, 29.747073472962363 ], [ 75.218282504933569, 29.746298325707123 ], [ 75.221693149619099, 29.745962428922944 ], [ 75.227170851853288, 29.745962428922944 ], [ 75.232441847613117, 29.746479193759729 ], [ 75.236059197873644, 29.747486884112387 ], [ 75.238229608209778, 29.748778795305149 ], [ 75.238332960997283, 29.75187938072883 ], [ 75.236162550661149, 29.756995347757076 ], [ 75.230891554901262, 29.765806179411634 ], [ 75.212598098023747, 29.787406928187178 ], [ 75.20360639831658, 29.800300198095663 ], [ 75.200195753631064, 29.807018133779817 ], [ 75.197818637719905, 29.814407863931756 ], [ 75.196268345008079, 29.827637031523746 ], [ 75.193167758685078, 29.832675483286888 ], [ 75.187896762925192, 29.834742539936254 ], [ 75.17973188731672, 29.83319224722441 ], [ 75.165262486274671, 29.827404487527073 ], [ 75.16009484240297, 29.824278061883032 ], [ 75.156994256079983, 29.820686550044222 ], [ 75.155133905005684, 29.817120877526456 ], [ 75.151309849170147, 29.796372789472624 ], [ 75.149862909245812, 29.793866482352254 ], [ 75.147692498909677, 29.792832953577939 ], [ 75.14479861816163, 29.793866482352254 ], [ 75.140251091914294, 29.798078110916087 ], [ 75.134049921066932, 29.805829576273876 ], [ 75.128675571620278, 29.810687160883724 ], [ 75.105214470871061, 29.821384182034357 ], [ 75.100253534373039, 29.826913560212624 ], [ 75.098186476824395, 29.83396739447965 ], [ 75.101183710359905, 29.850658880902582 ], [ 75.10066694462374, 29.855619819199251 ], [ 75.099013299124394, 29.859418035713748 ], [ 75.093432245002063, 29.867221177914978 ], [ 75.092605421802688, 29.869314072986068 ], [ 75.093225539427038, 29.87210460094655 ], [ 75.095395948863924, 29.874145820073515 ], [ 75.098806594448703, 29.876600450350502 ], [ 75.101803827084865, 29.879597682986677 ], [ 75.104387647671771, 29.885282090795833 ], [ 75.106144646857942, 29.892930203366173 ], [ 75.106764763582916, 29.90207693090559 ], [ 75.106558058907225, 29.910422675466062 ], [ 75.105627882920416, 29.918070787137072 ], [ 75.102113885447395, 29.923806870890356 ], [ 75.095292596076419, 29.927760117935055 ], [ 75.085784133331046, 29.924323634827878 ], [ 75.081753371021236, 29.919931139110751 ], [ 75.07989301994688, 29.913109849739715 ], [ 75.079789667159375, 29.907606309983173 ], [ 75.078239374447534, 29.900991726187204 ], [ 75.076379021574525, 29.896082464733915 ], [ 75.072761672213332, 29.891147365758275 ], [ 75.067800733916698, 29.888356837797794 ], [ 75.059739211095675, 29.885876369998464 ], [ 75.047440220389817, 29.883886826815566 ], [ 75.019534947080089, 29.875618598419567 ], [ 75.004548781201237, 29.872750556093244 ], [ 74.995660435180909, 29.872983100089975 ], [ 74.984601677925056, 29.878745022264916 ], [ 74.97984744700203, 29.882775784574779 ], [ 74.974576451242157, 29.888124294700443 ], [ 74.969098749007998, 29.892542629738553 ], [ 74.945741001046287, 29.905642605222049 ], [ 74.94129682758647, 29.90972504347592 ], [ 74.93747277175099, 29.915383612863419 ], [ 74.935302362314118, 29.921481431822592 ], [ 74.932821892716134, 29.932850247440964 ], [ 74.931271600004308, 29.936622626433056 ], [ 74.927550896956276, 29.941351019833682 ], [ 74.918662550935935, 29.948379014779672 ], [ 74.913391555176062, 29.951272895527662 ], [ 74.903469680381406, 29.954838568944798 ], [ 74.852413364684978, 29.962693386190772 ], [ 74.84145796111595, 29.965587266938819 ], [ 74.836910434868614, 29.968584500474314 ], [ 74.832776319771298, 29.97292532024732 ], [ 74.826781853599627, 29.98129690233014 ], [ 74.82337120981343, 29.984991766956451 ], [ 74.816239862079939, 29.986309516570934 ], [ 74.806214633598401, 29.985250149374838 ], [ 74.767250603932197, 29.974708156955835 ], [ 74.745236444006636, 29.972382716988754 ], [ 74.726012811142283, 29.972692776250589 ], [ 74.71929487455877, 29.971452541901268 ], [ 74.710716586900944, 29.968377793999988 ], [ 74.678057081768856, 29.948379014779672 ], [ 74.672165969284023, 29.943443914904709 ], [ 74.667205030987347, 29.937656155207375 ], [ 74.65935021374132, 29.923858546834417 ], [ 74.654389276343963, 29.917088935206145 ], [ 74.650668573295988, 29.914065864148306 ], [ 74.632685173881598, 29.914815172082506 ], [ 74.577804803248995, 29.933832099371834 ], [ 74.516516555294729, 29.947190457273788 ], [ 74.385568474605392, 29.963080959818392 ], [ 74.290587192744709, 29.962460842194098 ], [ 73.915933059263224, 29.979901638349922 ], [ 73.887097609067368, 29.984242459022248 ], [ 73.884617141267981, 29.999538683263602 ], [ 73.884617141267981, 30.000003770357687 ], [ 73.886684197917333, 30.007135118091181 ], [ 73.89846642378636, 30.034911200191736 ], [ 73.969676548333993, 30.137437241835237 ], [ 73.971330193833339, 30.141855576873347 ], [ 73.975981072868166, 30.161156725002851 ], [ 73.97711795443, 30.178054917900106 ], [ 73.970400017846458, 30.196322537255291 ], [ 73.946831022733463, 30.204076838175521 ], [ 73.948901815166593, 30.217278138475304 ], [ 73.934639119699554, 30.261048075907972 ], [ 73.911901489362194, 30.303784485465592 ], [ 73.891644327723483, 30.329777730857579 ], [ 73.842345011213226, 30.352980448289028 ], [ 73.845238891961273, 30.35695953465477 ], [ 73.851750122070399, 30.372669169146828 ], [ 73.867666463036798, 30.387448629450653 ], [ 73.887613566312993, 30.396543681046001 ], [ 73.906113728765533, 30.394838359602595 ], [ 73.904253377691177, 30.401452942499297 ], [ 73.902082967354985, 30.415612284279451 ], [ 73.899912557018851, 30.422123515287975 ], [ 73.91665572118454, 30.417162577890618 ], [ 73.929264770252914, 30.419074606707731 ], [ 73.939083293159385, 30.426050923910957 ], [ 73.989829550493297, 30.487804261657335 ], [ 73.996030721340659, 30.500981751506622 ], [ 74.004402303423532, 30.508939922439417 ], [ 74.044089804400912, 30.518655091659124 ], [ 74.05752567576927, 30.531367493514995 ], [ 74.061453084392255, 30.555603740620082 ], [ 74.058249145281806, 30.574465637379255 ], [ 74.05711226371993, 30.591570537650167 ], [ 74.067447551463303, 30.610535787196788 ], [ 74.082227009968491, 30.625883687382263 ], [ 74.095869588710499, 30.63714915021307 ], [ 74.111475871314369, 30.646244202707745 ], [ 74.132663208040569, 30.65549428303472 ], [ 74.155710896740445, 30.659576721288648 ], [ 74.163669067673283, 30.664899393891908 ], [ 74.166769653096978, 30.679110413414826 ], [ 74.170076944994989, 30.687171936235863 ], [ 74.184649698824487, 30.696835430410765 ], [ 74.191160929833003, 30.717040914306718 ], [ 74.19880904240334, 30.724999084340251 ], [ 74.215138795419008, 30.737453105576311 ], [ 74.235706015420234, 30.764118144536717 ], [ 74.24407759750305, 30.771249491370884 ], [ 74.259167114370811, 30.781016337433972 ], [ 74.266711873254323, 30.788354391641853 ], [ 74.265781698166776, 30.79543406253196 ], [ 74.25668664567209, 30.81527781212133 ], [ 74.260200643145126, 30.819411926319326 ], [ 74.279941039946991, 30.824682922978461 ], [ 74.300198202485007, 30.838170471190264 ], [ 74.311360310729683, 30.85594716413032 ], [ 74.304022257421181, 30.87403391543284 ], [ 74.310740194004708, 30.884472555064345 ], [ 74.319215128875015, 30.893412577928125 ], [ 74.329757121294037, 30.899613750574126 ], [ 74.342469523149916, 30.90193918964189 ], [ 74.35363163229394, 30.901112366442526 ], [ 74.379676555428631, 30.894497783545823 ], [ 74.401277303304866, 30.893102519565609 ], [ 74.409132121450199, 30.901009013655024 ], [ 74.413369588435714, 30.915065003547049 ], [ 74.424324992004728, 30.932324931650264 ], [ 74.441584920107957, 30.946174215067963 ], [ 74.458534789848585, 30.953408916488279 ], [ 74.477241658775469, 30.956096089862619 ], [ 74.499462524276026, 30.95650950101264 ], [ 74.51930627476473, 30.962452291240243 ], [ 74.5348092054804, 30.976249899613144 ], [ 74.548761840786298, 30.992166240579529 ], [ 74.564058065027652, 31.004361878497882 ], [ 74.564264771501968, 31.025032450387236 ], [ 74.579457642056497, 31.042705791439111 ], [ 74.600955037145226, 31.056606751700198 ], [ 74.65883264131331, 31.083788554598069 ], [ 74.650254353655427, 31.093141989511192 ], [ 74.631960896777898, 31.107508036866353 ], [ 74.616974731798379, 31.115259501324878 ], [ 74.596924275734679, 31.115776266161721 ], [ 74.553102661458624, 31.108954977690068 ], [ 74.536772908442899, 31.115156149436693 ], [ 74.523543741750231, 31.129315491216904 ], [ 74.5148621013049, 31.141821187497776 ], [ 74.509591106444347, 31.156083882964818 ], [ 74.506387166434507, 31.175410869515979 ], [ 74.509074340708167, 31.195668030255369 ], [ 74.525094035361391, 31.23540720627749 ], [ 74.525300740936402, 31.280210673383852 ], [ 74.532225382195563, 31.303206685240294 ], [ 74.571602823911164, 31.389247945136553 ], [ 74.583695109042011, 31.406559550083152 ], [ 74.600024862057666, 31.424129537448145 ], [ 74.611910442512823, 31.440200908045419 ], [ 74.617181437373389, 31.458907776072966 ], [ 74.614597615887234, 31.477821351474169 ], [ 74.584521932241316, 31.517508851552229 ], [ 74.555583130157274, 31.6122317509945 ], [ 74.499462524276026, 31.699874980445987 ], [ 74.489437296693822, 31.711192118321598 ], [ 74.492641235804328, 31.714551087062993 ], [ 74.503286580111521, 31.730570781716199 ], [ 74.505456990447698, 31.732017721640538 ], [ 74.513311809492379, 31.735118307064219 ], [ 74.51620568844173, 31.737392070187859 ], [ 74.518272745990416, 31.741836243647686 ], [ 74.521166625839086, 31.753773499147648 ], [ 74.523026977812705, 31.75847605412655 ], [ 74.530778442271227, 31.767829488140361 ], [ 74.53511926294361, 31.771136780038365 ], [ 74.536979614017909, 31.775735982229769 ], [ 74.537393026067249, 31.788913472978372 ], [ 74.540803670752751, 31.810875956060492 ], [ 74.550415487184964, 31.826999004400527 ], [ 74.565608357739492, 31.84053822945571 ], [ 74.64105594927257, 31.890561015478447 ], [ 74.657178995813965, 31.895676982506693 ], [ 74.669994751356668, 31.904151916477755 ], [ 74.698416789503185, 31.950247295676142 ], [ 74.763012329355476, 31.938981831945959 ], [ 74.78368290214415, 31.9428575655242 ], [ 74.802493123858511, 31.968850810016868 ], [ 74.811278117091362, 32.00373240142914 ], [ 74.828641397982068, 32.025436502992186 ], [ 74.873186482669993, 32.011690572361992 ], [ 74.889102824535684, 32.028898825420406 ], [ 74.908843221337563, 32.031896057157262 ], [ 74.931374146099913, 32.029829001407272 ], [ 74.955662069149113, 32.032206116419097 ], [ 74.967857707067466, 32.037890523328933 ], [ 74.974058878814148, 32.04497019511836 ], [ 74.978503052273979, 32.053393453145297 ], [ 74.986151163944996, 32.063211975152505 ], [ 74.995556274802183, 32.067397766193942 ], [ 75.020154256213885, 32.065847473482101 ], [ 75.030179483796104, 32.066415914263011 ], [ 75.02263472491255, 32.094682923677958 ], [ 75.040824829002631, 32.097990215575969 ], [ 75.102113077856231, 32.078094788243838 ], [ 75.110277954364037, 32.077629700250434 ], [ 75.118959594809425, 32.08104034493595 ], [ 75.129811646490268, 32.090238749318807 ], [ 75.138389933248774, 32.093494364373377 ], [ 75.161334269161145, 32.087964986195111 ], [ 75.174150024703849, 32.086828105532611 ], [ 75.173116495929463, 32.109720765500917 ], [ 75.195750773479389, 32.128634339103421 ], [ 75.226446573850282, 32.142070211371156 ], [ 75.249907675498761, 32.148891499842811 ], [ 75.263343546867105, 32.150906881447376 ], [ 75.294659464862363, 32.148891499842811 ], [ 75.298070110447199, 32.159795227467718 ], [ 75.308405395492557, 32.193901673423447 ], [ 75.316570272000419, 32.210748189477322 ], [ 75.348609660407462, 32.242012432427764 ], [ 75.359048299139644, 32.261675313964524 ], [ 75.352950480180468, 32.284387105880221 ], [ 75.326905558844416, 32.312473246343238 ], [ 75.2984029360466, 32.33242660530356 ], [ 75.327113072010576, 32.339964300911724 ], [ 75.390365024726037, 32.335494289929493 ], [ 75.414136183837783, 32.346010443926836 ], [ 75.42271447059629, 32.353994452382032 ], [ 75.436770461387638, 32.360221463449754 ], [ 75.441938104360005, 32.35975637545635 ], [ 75.444418573058655, 32.353193468503768 ], [ 75.442041457147454, 32.336191921919628 ], [ 75.444728631421171, 32.330300808535462 ], [ 75.451446568004641, 32.324022122422996 ], [ 75.464779086585551, 32.317743435411209 ], [ 75.474184198342058, 32.312136541967838 ], [ 75.480695427551865, 32.307459825410596 ], [ 75.502399530014245, 32.3005868600955 ], [ 75.537952914994975, 32.345183620727475 ], [ 75.573299595300028, 32.374639186749043 ], [ 75.611953565704468, 32.395464789168663 ], [ 75.682646926314575, 32.399805609840989 ], [ 75.698253208019068, 32.406032620009391 ], [ 75.705694615014451, 32.412802232536983 ], [ 75.72316124869262, 32.424222724099415 ], [ 75.729362421338607, 32.429622911068456 ], [ 75.732566358650487, 32.437167669951968 ], [ 75.736803827434628, 32.455900377300559 ], [ 75.743004999181295, 32.46437531217088 ], [ 75.797678664238887, 32.481118476336569 ], [ 75.818039177765783, 32.494786891701658 ], [ 75.82858117108411, 32.497887478024658 ], [ 75.839123162603798, 32.50656911936931 ], [ 75.847391391899166, 32.516749376582418 ], [ 75.856589797181343, 32.514578966246283 ], [ 75.866304966401046, 32.50486379702658 ], [ 75.870645786174052, 32.499721991576614 ], [ 75.911676874288247, 32.431354071832907 ], [ 75.913847283725133, 32.425411282504676 ], [ 75.912607049375808, 32.419055081127048 ], [ 75.905785760004761, 32.413318997373828 ], [ 75.857519973168152, 32.389961249412117 ], [ 75.779281853674533, 32.336579495547248 ], [ 75.742694939919474, 32.299346624846855 ], [ 75.72760542215245, 32.287926134183742 ], [ 75.711792433973628, 32.279089464107464 ], [ 75.692672153896737, 32.272268174736432 ], [ 75.622908970172801, 32.258522244106238 ], [ 75.618878207862949, 32.256041775407589 ], [ 75.613400505628803, 32.250925808379343 ], [ 75.608439569130766, 32.239918727966874 ], [ 75.606269158794575, 32.225862738974222 ], [ 75.608542921918271, 32.209998073951901 ], [ 75.614640740877434, 32.196768907259234 ], [ 75.625182733296455, 32.190903632296788 ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Rajasthan", "admin": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.290587192744709, 29.962460842194098 ], [ 74.385568474605392, 29.963080959818392 ], [ 74.516516555294729, 29.947190457273788 ], [ 74.514346144958594, 29.915383612863419 ], [ 74.518376906369085, 29.909776720319368 ], [ 74.526231723615098, 29.901766873442444 ], [ 74.535120069635454, 29.896495876783252 ], [ 74.544835239754477, 29.887969265069493 ], [ 74.548866001164967, 29.878925890317579 ], [ 74.549692824364314, 29.869494941038674 ], [ 74.547005650090611, 29.860813299694026 ], [ 74.541734654330796, 29.853010159291383 ], [ 74.534499952910423, 29.846498928282859 ], [ 74.524681430903271, 29.840788682951306 ], [ 74.494295688894894, 29.828799749708644 ], [ 74.485717401237011, 29.826681017115213 ], [ 74.481893345401531, 29.823502916426428 ], [ 74.476002232017365, 29.816629950212015 ], [ 74.466493768372672, 29.798930772537112 ], [ 74.46142947818781, 29.782265122737208 ], [ 74.459362420639167, 29.763093166716249 ], [ 74.461739535651006, 29.751801866362989 ], [ 74.468044061084512, 29.744386297789383 ], [ 74.477965935879169, 29.739864609963764 ], [ 74.488507928298233, 29.737048245380201 ], [ 74.49832645120469, 29.736247259703237 ], [ 74.506284621238237, 29.736789862961803 ], [ 74.51527632004607, 29.739089464507167 ], [ 74.523027785403926, 29.742629299502532 ], [ 74.533879836185449, 29.75050995517028 ], [ 74.540701124657105, 29.754282335061696 ], [ 74.547832473289972, 29.755677599041913 ], [ 74.560234815884016, 29.755600083776809 ], [ 74.565092401393187, 29.756297715766944 ], [ 74.568813104441162, 29.757899685322162 ], [ 74.575427687337864, 29.764979356212276 ], [ 74.57935509596085, 29.768338324054405 ], [ 74.584316034257526, 29.770121160762915 ], [ 74.591860793141038, 29.769035956044483 ], [ 74.597751905625884, 29.765263577052387 ], [ 74.604779900571927, 29.755031642995895 ], [ 74.606226841395568, 29.742267564296633 ], [ 74.602712843922561, 29.726351223330248 ], [ 74.588140090093063, 29.691211249499524 ], [ 74.583385858270702, 29.674338894124606 ], [ 74.574807569713514, 29.589692898208675 ], [ 74.578528272761531, 29.573001409987047 ], [ 74.585349562132521, 29.5611675072746 ], [ 74.602712843922561, 29.543726712018092 ], [ 74.611911249204738, 29.530730089322155 ], [ 74.613771600279094, 29.520213935324808 ], [ 74.610050897231062, 29.487786974189468 ], [ 74.606846958120556, 29.47752920171126 ], [ 74.60209272719753, 29.470423692399486 ], [ 74.594858025777214, 29.467607326916603 ], [ 74.586796502956176, 29.466289578201433 ], [ 74.557650995297124, 29.467452297285657 ], [ 74.550519646664313, 29.465385239737024 ], [ 74.54256147663078, 29.460269272708722 ], [ 74.53739383275915, 29.449107164464056 ], [ 74.53708377529594, 29.441381537527885 ], [ 74.539254184732769, 29.435722968140443 ], [ 74.54411177024194, 29.431072089105609 ], [ 74.555583936849175, 29.416292629701097 ], [ 74.561785108595856, 29.403089301430096 ], [ 74.566435987630697, 29.395131130497241 ], [ 74.581628859084546, 29.378103746390757 ], [ 74.589587030017398, 29.366812446037546 ], [ 74.598888788087081, 29.346813665917917 ], [ 74.605193311721891, 29.338390407890973 ], [ 74.612841424292228, 29.332809352869326 ], [ 74.622453240724411, 29.331207384213368 ], [ 74.631444940431592, 29.331414088889055 ], [ 74.636302525041444, 29.333920396009425 ], [ 74.63971316882764, 29.338933010250226 ], [ 74.642607048676311, 29.351697088949482 ], [ 74.644984164587456, 29.358673407951411 ], [ 74.649118279684828, 29.363530992561259 ], [ 74.655939569055803, 29.365959784416464 ], [ 74.66224409358999, 29.366786606716509 ], [ 74.675369908394515, 29.366734930772392 ], [ 74.704102004004227, 29.370998237078929 ], [ 74.709372999764057, 29.371075751444771 ], [ 74.743169387357256, 29.364771226910584 ], [ 74.758568964386129, 29.364254462073738 ], [ 74.767250603932197, 29.366192328413195 ], [ 74.776759067576833, 29.372160956163153 ], [ 74.786164178434007, 29.381566067020337 ], [ 74.798463169139879, 29.391565457080155 ], [ 74.808798455983933, 29.39812836403274 ], [ 74.82140750505225, 29.402934271799204 ], [ 74.831226027059458, 29.403761094998508 ], [ 74.84125125464162, 29.402520859749863 ], [ 74.856754185357303, 29.394020087357141 ], [ 74.865332473015187, 29.39107453156435 ], [ 74.884659457767711, 29.386914578045314 ], [ 74.897785271672859, 29.382728787003874 ], [ 74.907190383429381, 29.37846548069734 ], [ 74.925483840306896, 29.366011461259912 ], [ 74.930961541641793, 29.359112657523092 ], [ 74.933752068702944, 29.35288564735469 ], [ 74.935612420676634, 29.344462389327752 ], [ 74.944500766696976, 29.321931464565402 ], [ 74.956076287890355, 29.300149847737252 ], [ 74.962794223574505, 29.290822252145166 ], [ 74.969615512945538, 29.284336860457696 ], [ 74.975609979117209, 29.282011420490612 ], [ 74.985738560386196, 29.279918525419586 ], [ 74.993283319269707, 29.279608466157747 ], [ 74.997624139042713, 29.280151069416316 ], [ 75.017674595106413, 29.290098781733374 ], [ 75.029353469087297, 29.290589708148492 ], [ 75.042065870943119, 29.28570628511692 ], [ 75.049197218676653, 29.278264879020917 ], [ 75.055295037635844, 29.268446357013762 ], [ 75.064906854067985, 29.246716417028995 ], [ 75.071521436964687, 29.240127672554017 ], [ 75.079582960685045, 29.236329454240877 ], [ 75.088884718754713, 29.235476793519176 ], [ 75.09839318239942, 29.236432807028386 ], [ 75.106558058907225, 29.238215643736954 ], [ 75.12133751831179, 29.246483873032265 ], [ 75.130019158757122, 29.249481106567764 ], [ 75.150172966709007, 29.252607530413169 ], [ 75.159371371991185, 29.258576158163116 ], [ 75.174150832295012, 29.272244574427521 ], [ 75.181592238391019, 29.273252264780179 ], [ 75.189963819574572, 29.27022919372228 ], [ 75.197508579357404, 29.264157213184824 ], [ 75.214148390735588, 29.253692735131601 ], [ 75.228307733415122, 29.253046779984906 ], [ 75.249701775716332, 29.256405747826985 ], [ 75.26179406084718, 29.260591538868418 ], [ 75.267788527018851, 29.264415594703898 ], [ 75.269855584567537, 29.268911445007173 ], [ 75.270889113341852, 29.273975735191971 ], [ 75.273059522778723, 29.278497423017647 ], [ 75.276986932301028, 29.282166449222235 ], [ 75.313780551631098, 29.298935451809644 ], [ 75.322565545763254, 29.299167995806318 ], [ 75.328353306359972, 29.296222439114267 ], [ 75.331143833421123, 29.289814560893252 ], [ 75.330627068584292, 29.282915758055758 ], [ 75.323805780112636, 29.260643214812482 ], [ 75.32308230970078, 29.25384776476249 ], [ 75.32463260331194, 29.246483873032265 ], [ 75.329283482346781, 29.239843450814583 ], [ 75.338171828367123, 29.234546617532366 ], [ 75.343442824126996, 29.234960029581654 ], [ 75.349023879148646, 29.239197496567208 ], [ 75.355535109257829, 29.245657049832964 ], [ 75.36432010339, 29.252039088732936 ], [ 75.381063266656355, 29.258472805375668 ], [ 75.388091261602412, 29.25764598217631 ], [ 75.391501906287871, 29.252685044778953 ], [ 75.394499138924047, 29.233874823963948 ], [ 75.407004836104235, 29.213514309537736 ], [ 75.409175246440427, 29.207494004944348 ], [ 75.410002068740411, 29.201292833197662 ], [ 75.409692010377952, 29.195505073500325 ], [ 75.408245069554226, 29.19049245925958 ], [ 75.405661248967405, 29.18759857851159 ], [ 75.401630486657595, 29.185893256168804 ], [ 75.386954380040535, 29.183490301835935 ], [ 75.380753208293854, 29.180467230778046 ], [ 75.377652621970853, 29.17630727815833 ], [ 75.376309034834023, 29.170131943934045 ], [ 75.377859328445183, 29.162664700315641 ], [ 75.381373325918204, 29.153569647820966 ], [ 75.390261671938532, 29.142975979457837 ], [ 75.393568963836543, 29.136309718818435 ], [ 75.394602491711538, 29.130806179061882 ], [ 75.392432082274738, 29.123674832227714 ], [ 75.392018671124717, 29.115096544569834 ], [ 75.392948846212263, 29.105975654552811 ], [ 75.398219841972079, 29.095046088506127 ], [ 75.406591424054952, 29.083057156162791 ], [ 75.423954705844935, 29.063652656145159 ], [ 75.452066684729672, 29.023861803279594 ], [ 75.460748326074324, 29.017763984320421 ], [ 75.503226353213606, 29.003837184738241 ], [ 75.510357700947097, 29.000452379373765 ], [ 75.515008579082604, 28.996473293907336 ], [ 75.518729283029913, 28.988825182236319 ], [ 75.521519810091135, 28.977792263402183 ], [ 75.52089969336609, 28.966475125526578 ], [ 75.516248814331263, 28.957509264241132 ], [ 75.507773878561622, 28.951256414751686 ], [ 75.494854771130719, 28.943815009555006 ], [ 75.489377068896587, 28.939448351360276 ], [ 75.487206658560396, 28.932962957874164 ], [ 75.485966424211071, 28.92683930139264 ], [ 75.492787713582047, 28.907124742113123 ], [ 75.50136600123993, 28.877953396032403 ], [ 75.507153761836591, 28.860874335082478 ], [ 75.525240513139096, 28.834467678540527 ], [ 75.528031040200261, 28.820230821495208 ], [ 75.52637739470093, 28.804443670838733 ], [ 75.530098097748962, 28.79245473939471 ], [ 75.550045201025156, 28.754110826453481 ], [ 75.580017530984193, 28.668302110553945 ], [ 75.593556756039433, 28.642670600367914 ], [ 75.610299921104428, 28.621224880323943 ], [ 75.624149203622821, 28.607608140902975 ], [ 75.649263950770646, 28.575129502924192 ], [ 75.656498651291699, 28.567300523200565 ], [ 75.661356235901494, 28.564277452142672 ], [ 75.672518345045532, 28.555182400547316 ], [ 75.698563267280903, 28.520559189754799 ], [ 75.743625115906326, 28.48761546558125 ], [ 75.7632621599207, 28.478623765874083 ], [ 75.773080681927894, 28.469761257376085 ], [ 75.774424269964058, 28.463094998535318 ], [ 75.771013625278542, 28.455498561909103 ], [ 75.768739862154845, 28.445395819961099 ], [ 75.772873977252218, 28.432528388474331 ], [ 75.781865676060065, 28.42826508216779 ], [ 75.791374138805438, 28.429143582210536 ], [ 75.799642368100734, 28.432915961202632 ], [ 75.806463658371101, 28.432915961202632 ], [ 75.818245884240113, 28.430823066131545 ], [ 75.834058872418993, 28.419402574569112 ], [ 75.858863560305039, 28.410927638799471 ], [ 75.873643019709533, 28.4080079214284 ], [ 75.887078891977225, 28.403847967909364 ], [ 75.911780227075766, 28.38470185031013 ], [ 75.957772250788693, 28.343464057520229 ], [ 76.026191848275104, 28.262228705390438 ], [ 76.039317661281004, 28.241894029385939 ], [ 76.04789594893883, 28.221404323750498 ], [ 76.052856887235507, 28.215642402474877 ], [ 76.063605585229524, 28.205643012415063 ], [ 76.070840284851201, 28.195669460776962 ], [ 76.081382277270208, 28.174585475938951 ], [ 76.080658806858409, 28.163604233948199 ], [ 76.073940871174202, 28.158565782185057 ], [ 76.06370893711771, 28.162053941236358 ], [ 76.054407179947347, 28.169133613025785 ], [ 76.039317661281004, 28.185411689198069 ], [ 76.032496371909957, 28.187814643530935 ], [ 76.025881789013326, 28.185101629936234 ], [ 76.019473910792314, 28.178047797467848 ], [ 76.008621860910097, 28.161046250883764 ], [ 76.00097374923908, 28.154612535140352 ], [ 75.994669223805587, 28.150969347357481 ], [ 75.973068475030047, 28.144148057986449 ], [ 75.961906365886009, 28.139497178951608 ], [ 75.952501255028821, 28.133786932720731 ], [ 75.946093377707172, 28.128050848967455 ], [ 75.941442498672345, 28.117715562123458 ], [ 75.942992792283505, 28.110144964818225 ], [ 75.948573846405836, 28.103091132349839 ], [ 75.973585239866892, 28.086528836236763 ], [ 75.979269646776714, 28.084952704203936 ], [ 75.98547081942273, 28.08691640896506 ], [ 75.990121697558237, 28.091024684741392 ], [ 75.998803338902903, 28.101928412366298 ], [ 76.002213982689099, 28.105158188999205 ], [ 76.007898391397561, 28.108362128109711 ], [ 76.015029738231803, 28.110377508814956 ], [ 76.022574497115315, 28.108568834584041 ], [ 76.030015904110641, 28.102135117941309 ], [ 76.030842727309945, 28.092239081568316 ], [ 76.026605259425125, 28.083014837864475 ], [ 76.011619094445606, 28.065780748182984 ], [ 75.992808871831897, 28.0506912304159 ], [ 75.988881464108246, 28.042423001120589 ], [ 75.986090936147761, 28.027307644032526 ], [ 75.982886997037255, 28.020150457877314 ], [ 75.976685826189893, 28.014155991705643 ], [ 75.971828240680722, 28.010383612713547 ], [ 75.967487420907716, 28.00387238170503 ], [ 75.966247185659071, 28.001314399539861 ], [ 75.966143832871566, 27.999764105928698 ], [ 75.975755650203027, 27.993459581394568 ], [ 75.981956821949709, 27.988033556003806 ], [ 75.987331171396406, 27.977724107581473 ], [ 75.986090936147761, 27.970618598269645 ], [ 75.976479119715563, 27.962892971333524 ], [ 75.973068475030047, 27.957854519570382 ], [ 75.968004184845185, 27.954598904515812 ], [ 75.958702426775503, 27.952376817336237 ], [ 75.935654738075627, 27.955709946756592 ], [ 75.931934035027638, 27.953462022054673 ], [ 75.926352980006001, 27.937597357931672 ], [ 75.931520623877631, 27.918089505126538 ], [ 75.96335330581033, 27.900622870548993 ], [ 75.969037713619556, 27.894628404377322 ], [ 75.973275180605043, 27.88858226226159 ], [ 75.973895298229394, 27.880184840857673 ], [ 75.975445590941248, 27.870573025324852 ], [ 75.980199822763524, 27.856051948338738 ], [ 75.987537876072082, 27.847887070931559 ], [ 75.99994021956546, 27.842745266380909 ], [ 76.092234328051731, 27.854269110730847 ], [ 76.120346306936469, 27.851866157297302 ], [ 76.143187290061334, 27.831014716455961 ], [ 76.1790507343039, 27.80765696939357 ], [ 76.209126417949776, 27.827397366195495 ], [ 76.213157180259586, 27.834606228294767 ], [ 76.215017531333942, 27.841505032031584 ], [ 76.211296828285967, 27.84721527826246 ], [ 76.207989536387956, 27.854475816305857 ], [ 76.205405714901801, 27.864371853578174 ], [ 76.203958774977409, 27.878091945786643 ], [ 76.201374952591934, 27.885610867147754 ], [ 76.198274367168253, 27.89015839339509 ], [ 76.18587202277557, 27.898349107425354 ], [ 76.180084263078214, 27.909562893412776 ], [ 76.179670851928208, 27.922869574471285 ], [ 76.181014439065024, 27.943462632894175 ], [ 76.1790507343039, 27.957621975573709 ], [ 76.165821567611175, 27.991521715055107 ], [ 76.157760043890889, 28.019659532361509 ], [ 76.157553339215198, 28.033431301413422 ], [ 76.159620395864508, 28.044283352194949 ], [ 76.163341098912539, 28.057900092515236 ], [ 76.166545038023045, 28.065083116192845 ], [ 76.169852329021722, 28.070018215168481 ], [ 76.175226677569057, 28.072834581550687 ], [ 76.181014439065024, 28.074126491844076 ], [ 76.186802198762436, 28.074462389527632 ], [ 76.208196241962966, 28.069088040080938 ], [ 76.216051060108299, 28.06820954003819 ], [ 76.224939406128655, 28.069036363237551 ], [ 76.231967401074641, 28.071103420786237 ], [ 76.241889275869354, 28.077485459686208 ], [ 76.24716027162917, 28.079810898753973 ], [ 76.253774855425192, 28.080198473280909 ], [ 76.266693963755387, 28.077485459686208 ], [ 76.304727818334101, 28.04877920249816 ], [ 76.318060336914968, 28.04877920249816 ], [ 76.332943150006301, 28.051802273556056 ], [ 76.34317508316353, 28.063532823481008 ], [ 76.34648237506147, 28.075831814186863 ], [ 76.34379520078781, 28.085882880190745 ], [ 76.336663853054333, 28.093479315917698 ], [ 76.327982211709681, 28.097794298168303 ], [ 76.312789341155096, 28.103246161081465 ], [ 76.306691522195905, 28.108413804953095 ], [ 76.30441775907228, 28.117638047757673 ], [ 76.309171990894626, 28.122728176364198 ], [ 76.315683221003809, 28.12528616032801 ], [ 76.333976677881353, 28.12877431937931 ], [ 76.338627556916194, 28.132650051158915 ], [ 76.340694615364143, 28.139729722948339 ], [ 76.337594029041142, 28.146499335475934 ], [ 76.33139285729446, 28.151382758507449 ], [ 76.314029576403797, 28.159883530900224 ], [ 76.305761346209096, 28.16691152584621 ], [ 76.299456821674923, 28.176445827912623 ], [ 76.297286411338789, 28.192413844823072 ], [ 76.302557407997924, 28.199235134194051 ], [ 76.308758578845286, 28.200966294958498 ], [ 76.320230747251159, 28.196134547871047 ], [ 76.332323033281327, 28.192594712875682 ], [ 76.338627556916194, 28.18905487698094 ], [ 76.343485142425308, 28.184145616427028 ], [ 76.34720584457402, 28.178047797467848 ], [ 76.349996371635186, 28.171381536828441 ], [ 76.353303664432516, 28.165826321127774 ], [ 76.357437778630512, 28.161278794880438 ], [ 76.362708775289704, 28.157764797407477 ], [ 76.367979771049519, 28.156369534326522 ], [ 76.414385206811787, 28.163294176485003 ], [ 76.432368605326801, 28.168151760195535 ], [ 76.444770948820164, 28.167738349045571 ], [ 76.453452590164872, 28.162829088491598 ], [ 76.478774041988373, 28.128851833745095 ], [ 76.482494745036419, 28.122108058739904 ], [ 76.483011508973888, 28.117379666238598 ], [ 76.479704217075934, 28.115829373526758 ], [ 76.471952752617412, 28.116371974986627 ], [ 76.463477817747034, 28.118542385322819 ], [ 76.451902296553712, 28.122573146733313 ], [ 76.445597772019525, 28.123425808354334 ], [ 76.441567009709658, 28.122108058739904 ], [ 76.440016716997818, 28.117069606976763 ], [ 76.441670363396469, 28.110455024080061 ], [ 76.446527948006334, 28.10409882270249 ], [ 76.469678990393035, 28.091412258369012 ], [ 76.473399693441053, 28.088208320157825 ], [ 76.476500278864748, 28.084745999528248 ], [ 76.475983514027902, 28.082058824355208 ], [ 76.471849399829892, 28.079655870022343 ], [ 76.452729119753016, 28.074281521475026 ], [ 76.44683800726817, 28.070328274430317 ], [ 76.445597772019525, 28.064695543464545 ], [ 76.449938591792531, 28.059269518073783 ], [ 76.486835564809425, 28.043559881783089 ], [ 76.496757439604082, 28.042474677064657 ], [ 76.510089959983631, 28.043120632211405 ], [ 76.516497837305309, 28.042112941858754 ], [ 76.521768833065124, 28.038314724444938 ], [ 76.525799595375005, 28.029788112731175 ], [ 76.535411410907813, 27.993149522132732 ], [ 76.539028762067673, 27.985320543308426 ], [ 76.543679641102514, 27.978835150721629 ], [ 76.553084751060382, 27.971238714994676 ], [ 76.55949262928138, 27.97129039183806 ], [ 76.567244093739859, 27.97643219728803 ], [ 76.583263788393054, 27.99513906531558 ], [ 76.587294548904239, 27.998937282729393 ], [ 76.590498488014745, 28.001004340278079 ], [ 76.603520949132445, 28.006042792041221 ], [ 76.614683059175817, 28.0090917024201 ], [ 76.636490512626992, 28.011081243804306 ], [ 76.649512973744706, 28.013561713402332 ], [ 76.657987908615027, 28.016972358087848 ], [ 76.659434849438668, 28.021287340338453 ], [ 76.657987908615027, 28.02911631916276 ], [ 76.64765262177103, 28.050381171154122 ], [ 76.644035272409823, 28.059734605167868 ], [ 76.642381626011158, 28.067796128888226 ], [ 76.642795038060498, 28.073816433481618 ], [ 76.644241977984819, 28.079888414019074 ], [ 76.646825798571726, 28.085521144984845 ], [ 76.651993443342676, 28.090301215228855 ], [ 76.659744907801198, 28.096347358243968 ], [ 76.674937779255046, 28.103866278705759 ], [ 76.683206007651094, 28.110144964818225 ], [ 76.693541293595771, 28.120351060453054 ], [ 76.700052524604288, 28.124304308397079 ], [ 76.710801222598306, 28.12892934811088 ], [ 76.729508090625856, 28.141900133284473 ], [ 76.736536085571842, 28.14781708419104 ], [ 76.758136835246702, 28.159728502168598 ], [ 76.783044875020934, 28.186651923547394 ], [ 76.789556105130075, 28.202568264513779 ], [ 76.796274041713602, 28.21161164016501 ], [ 76.803922154283939, 28.219053046261074 ], [ 76.825109491010139, 28.23088694897347 ], [ 76.833377720305506, 28.233393256093841 ], [ 76.842679478375189, 28.233935859352407 ], [ 76.849707473321175, 28.232282212953741 ], [ 76.856632114580378, 28.22897492105573 ], [ 76.863970167888894, 28.222722073364984 ], [ 76.868000930198704, 28.217993679065039 ], [ 76.878026157780923, 28.202878322876295 ], [ 76.886914503801265, 28.194015815277616 ], [ 76.925258416742494, 28.16636892348702 ], [ 76.934560173912857, 28.156989651051553 ], [ 76.939624464997038, 28.14631846832264 ], [ 76.941484816071338, 28.135337226331892 ], [ 76.940554640983848, 28.12298655878265 ], [ 76.923501417556309, 28.067899482575051 ], [ 76.920400832132643, 28.051569729559326 ], [ 76.920917596070169, 28.033534654200931 ], [ 76.92505171116747, 28.01611969736609 ], [ 76.933113233988522, 27.998498033157652 ], [ 76.936110466624697, 27.988860379203111 ], [ 76.937350701873342, 27.980669664273584 ], [ 76.936213820311522, 27.974416816582782 ], [ 76.934353469237152, 27.967931423096665 ], [ 76.933733351612801, 27.959611517857233 ], [ 76.934560173912857, 27.949095363859946 ], [ 76.940554640983848, 27.933308214102787 ], [ 76.942725051320039, 27.923489692095579 ], [ 76.942931756894978, 27.915350654009437 ], [ 76.939831170571992, 27.900545356183208 ], [ 76.943551873620009, 27.865224514299875 ], [ 76.942311639270699, 27.857757269782148 ], [ 76.940554640983848, 27.852098700394659 ], [ 76.937350701873342, 27.846569322216446 ], [ 76.919160597783304, 27.822824002425758 ], [ 76.915439894735286, 27.815253404221203 ], [ 76.900867140905788, 27.74409495741633 ], [ 76.900867140905788, 27.734379788196627 ], [ 76.904587843953763, 27.727971909975615 ], [ 76.908928663726812, 27.722571723006574 ], [ 76.913889602023445, 27.718075872703359 ], [ 76.918850539420802, 27.711745509747452 ], [ 76.919367303358328, 27.707559718706019 ], [ 76.917196893022137, 27.705079250906685 ], [ 76.898076612945303, 27.699498195885035 ], [ 76.893735793172297, 27.696320095196192 ], [ 76.890118442911771, 27.689679673877826 ], [ 76.891358677261081, 27.683814398915324 ], [ 76.895699497034087, 27.678595079099573 ], [ 76.899730259343968, 27.675520331198292 ], [ 76.910478957337972, 27.67040436506937 ], [ 76.940554640983848, 27.68032623986408 ], [ 76.973007439641577, 27.679292711089708 ], [ 76.981275668936902, 27.689137071518637 ], [ 76.993678013329585, 27.716861476775698 ], [ 77.005873651247938, 27.730064805946025 ], [ 77.020032993028153, 27.736188463326918 ], [ 77.071709426348875, 27.741123562302555 ], [ 77.077807245308051, 27.746162014065696 ], [ 77.076050246121937, 27.754042669733387 ], [ 77.068298780764081, 27.760708930372793 ], [ 77.037913038755661, 27.773576361859565 ], [ 77.032021926270815, 27.781353664739804 ], [ 77.031815219796485, 27.79181814189371 ], [ 77.040806918604389, 27.80729523418767 ], [ 77.052485792585202, 27.811325994698898 ], [ 77.065921664852894, 27.810137437192957 ], [ 77.098994582034308, 27.797450872859482 ], [ 77.117184686124332, 27.793135891508136 ], [ 77.133824496603197, 27.794195257804851 ], [ 77.142919549097869, 27.799879666513384 ], [ 77.158009067764198, 27.816958727463255 ], [ 77.1646236506609, 27.817423814557394 ], [ 77.16917117690825, 27.813005479519227 ], [ 77.172891879956225, 27.805254015060704 ], [ 77.177542758991052, 27.799182034523248 ], [ 77.188084751410074, 27.798251858536439 ], [ 77.193355747169932, 27.802773546362054 ], [ 77.199246860554112, 27.816183580208016 ], [ 77.205654737875804, 27.817501328923179 ], [ 77.211649204047475, 27.812617905891607 ], [ 77.218057082268487, 27.80287689914956 ], [ 77.223431430815808, 27.796003932935143 ], [ 77.229942660925005, 27.792722480358172 ], [ 77.233663364872342, 27.793290921139082 ], [ 77.238004184645348, 27.796520697771932 ], [ 77.25278364494919, 27.814116523558702 ], [ 77.280688918258917, 27.809439806102144 ], [ 77.293401320114796, 27.768770453193831 ], [ 77.295468377663425, 27.744172471782115 ], [ 77.294228143314101, 27.722003282225664 ], [ 77.296811964800312, 27.715776272057266 ], [ 77.300429315060782, 27.711823025012556 ], [ 77.304460077370635, 27.710427761032342 ], [ 77.309421013868629, 27.709110012317176 ], [ 77.314898716102832, 27.706371161200131 ], [ 77.319652947925178, 27.701616930277105 ], [ 77.32740441328302, 27.690015571561325 ], [ 77.332882114617846, 27.671024481794397 ], [ 77.334742465692202, 27.653247788854337 ], [ 77.334122348967171, 27.64735667636949 ], [ 77.331331821906005, 27.642499090860319 ], [ 77.323373650973139, 27.634825140767585 ], [ 77.319549595137673, 27.629735012161056 ], [ 77.317482537588972, 27.621983546803214 ], [ 77.318309360788348, 27.616867581573608 ], [ 77.322030063836323, 27.612914334528906 ], [ 77.334432408229006, 27.604878648330946 ], [ 77.340323520713838, 27.598444933486853 ], [ 77.341977167112518, 27.592502143259303 ], [ 77.340943638338189, 27.585784207575099 ], [ 77.338153111277038, 27.576172390243578 ], [ 77.336706171352702, 27.560411078008819 ], [ 77.340116815138842, 27.550463364792442 ], [ 77.345594517373044, 27.541885077134559 ], [ 77.387762486149754, 27.496849066930846 ], [ 77.403265415066798, 27.473103746240888 ], [ 77.415254348309446, 27.459280300345533 ], [ 77.427656690903504, 27.417551581140511 ], [ 77.434064569124516, 27.406131090477395 ], [ 77.442539503994823, 27.396183377261018 ], [ 77.450601026815875, 27.390188910190027 ], [ 77.459799432098052, 27.3850729440611 ], [ 77.467447543769069, 27.382644151306515 ], [ 77.484914178346614, 27.380344549761155 ], [ 77.494732701253071, 27.378199977846684 ], [ 77.501967400874818, 27.374866848426272 ], [ 77.556434361256706, 27.338512477768624 ], [ 77.562325473741538, 27.335851141916628 ], [ 77.570697055824425, 27.333060614855462 ], [ 77.593538038949291, 27.332001248558747 ], [ 77.602116326607117, 27.329494941438377 ], [ 77.606147088916984, 27.323629666475874 ], [ 77.607180616791979, 27.317893581823334 ], [ 77.607180616791979, 27.308772690906942 ], [ 77.605526971292633, 27.298334052174759 ], [ 77.61048790868999, 27.279291287362977 ], [ 77.61586225813663, 27.268413398159787 ], [ 77.624853956944534, 27.256941229753913 ], [ 77.62919477671754, 27.24647675170069 ], [ 77.635499302151047, 27.225444443706063 ], [ 77.640460240447666, 27.220819403992262 ], [ 77.645214471370693, 27.217305406519294 ], [ 77.652242466316721, 27.214540716980473 ], [ 77.65730675740086, 27.202706814268019 ], [ 77.640253533973379, 27.177256171235278 ], [ 77.617309198060966, 27.16570648936294 ], [ 77.604080031368298, 27.160668035801159 ], [ 77.600359328320323, 27.152193101830161 ], [ 77.598809034709163, 27.14335643175388 ], [ 77.591367628613099, 27.130747381786243 ], [ 77.574727818134235, 27.1237193868402 ], [ 77.513439569280635, 27.109224148275807 ], [ 77.505067987197819, 27.104883328502801 ], [ 77.500727167424813, 27.099483141533703 ], [ 77.499486932176112, 27.095090644017993 ], [ 77.499796991437947, 27.089173692212107 ], [ 77.500933872100447, 27.085582180373301 ], [ 77.503414340799154, 27.080466213345055 ], [ 77.507135043847128, 27.075789495888493 ], [ 77.51178592288197, 27.072559719255587 ], [ 77.517987094628651, 27.070957749700362 ], [ 77.528425734260153, 27.071164456174692 ], [ 77.532766554932536, 27.07026011771023 ], [ 77.536590610768016, 27.066539415561575 ], [ 77.540207961028543, 27.052380072882038 ], [ 77.543411900139034, 27.045171209883385 ], [ 77.55074995344755, 27.040081082176183 ], [ 77.559741652255397, 27.036799627800569 ], [ 77.594158155674322, 27.031115220890733 ], [ 77.618962843560311, 27.029952500907193 ], [ 77.623613722595152, 27.031321926465687 ], [ 77.627851189580696, 27.035481879085403 ], [ 77.630331659178665, 27.039771022914344 ], [ 77.633949009439206, 27.044086005165006 ], [ 77.638393181999717, 27.046463121076151 ], [ 77.643044061034544, 27.04661814980772 ], [ 77.647901645644396, 27.044344387583401 ], [ 77.65255252467918, 27.03912506776765 ], [ 77.668158807283064, 27.011969102392122 ], [ 77.67404992066723, 27.006258857060566 ], [ 77.678597446914623, 27.005070299554685 ], [ 77.683351677837592, 27.007163193726392 ], [ 77.691929966394781, 27.018092759773019 ], [ 77.695960727805286, 27.022020169295324 ], [ 77.701438430039488, 27.025275784349954 ], [ 77.707432896211159, 27.026309312224946 ], [ 77.713840772633475, 27.023363756432211 ], [ 77.719215122080172, 27.015793158227659 ], [ 77.719111770191986, 27.002925726740894 ], [ 77.712290479921634, 26.994735011811308 ], [ 77.699991490115153, 26.988714708117236 ], [ 77.649555292043019, 26.979180406050883 ], [ 77.628471307205004, 26.973160102356807 ], [ 77.460832960872423, 26.904223740932871 ], [ 77.423315871130498, 26.884379991343501 ], [ 77.408743117301, 26.872649441418552 ], [ 77.402231887191803, 26.864200344070575 ], [ 77.399544712018823, 26.855518704524563 ], [ 77.399131300868788, 26.848128974372624 ], [ 77.400474888005633, 26.832393500559583 ], [ 77.399234653656308, 26.810431017477462 ], [ 77.394893832983968, 26.788546046962487 ], [ 77.395824008970777, 26.78242239048091 ], [ 77.397891065620158, 26.778882555485545 ], [ 77.40698611811483, 26.775136013116477 ], [ 77.431894158788324, 26.78123383207565 ], [ 77.446260207042869, 26.795341497911803 ], [ 77.454528436338236, 26.807407945520247 ], [ 77.466310663106569, 26.833401190912177 ], [ 77.47209842280391, 26.836553453179302 ], [ 77.478299594550592, 26.835855821189167 ], [ 77.492252231655115, 26.830998237478635 ], [ 77.500623813737988, 26.831179103732602 ], [ 77.51054568943195, 26.833323676546396 ], [ 77.641390414635879, 26.883243109781681 ], [ 77.665058220960063, 26.896782334836864 ], [ 77.692240024757311, 26.92231049223539 ], [ 77.704642368250617, 26.92975189923072 ], [ 77.720455357328817, 26.933963527794553 ], [ 77.73378787590967, 26.933498439801149 ], [ 77.760659621344402, 26.926728827273561 ], [ 77.821844517410497, 26.919364936442655 ], [ 77.832076450567669, 26.916186834854496 ], [ 77.838897739938702, 26.912957058221643 ], [ 77.843651970861728, 26.909288032017052 ], [ 77.84706261644655, 26.905670680857209 ], [ 77.852643670568895, 26.90288015379604 ], [ 77.857294548704417, 26.904895535400605 ], [ 77.869800245884605, 26.913086249430869 ], [ 77.879102003954287, 26.915024115770329 ], [ 77.888817173173919, 26.915024115770329 ], [ 77.917445916895517, 26.907737739305215 ], [ 77.976563755412926, 26.90437877056376 ], [ 77.98906945169378, 26.901278185140079 ], [ 77.997441033776667, 26.895077013393454 ], [ 78.000748325674621, 26.890658678355287 ], [ 78.003848911098302, 26.880607612351408 ], [ 78.006432732584514, 26.874742337388962 ], [ 78.009843378169293, 26.870065619033078 ], [ 78.016251254591651, 26.866654975246881 ], [ 78.019145135339656, 26.868360296690291 ], [ 78.021315545675847, 26.874871527698811 ], [ 78.020902133626507, 26.892803250269758 ], [ 78.021315545675847, 26.899934597103929 ], [ 78.023175896750203, 26.905412299338131 ], [ 78.02927371570938, 26.910011502428851 ], [ 78.037025181067207, 26.911251735878857 ], [ 78.058109165005916, 26.910063178372976 ], [ 78.066067335938769, 26.912311103074952 ], [ 78.071028273336125, 26.917039496475578 ], [ 78.07474897728342, 26.92344737379721 ], [ 78.078883090582096, 26.928666694512337 ], [ 78.088391555126108, 26.934686998206352 ], [ 78.094282667610955, 26.940035509231333 ], [ 78.106891716679328, 26.947296047274726 ], [ 78.122084589032497, 26.949543971976702 ], [ 78.1518502143159, 26.950939235956977 ], [ 78.168800083157279, 26.948923855251671 ], [ 78.181202426650628, 26.945900784193835 ], [ 78.190917595870275, 26.941663316308954 ], [ 78.200736117877483, 26.939182848509624 ], [ 78.223060337064837, 26.937064114117554 ], [ 78.231018507997689, 26.934661159784689 ], [ 78.236909621381855, 26.931353867886678 ], [ 78.242594029191068, 26.92727143053207 ], [ 78.246004672977207, 26.92290477143802 ], [ 78.246521436914719, 26.917840481253158 ], [ 78.241353793942366, 26.911484279875587 ], [ 78.208074172085318, 26.882209581007309 ], [ 78.197532179666297, 26.876137600469853 ], [ 78.188437128070959, 26.874819850855424 ], [ 78.179755486726307, 26.875026557329754 ], [ 78.175311314165739, 26.873476263718594 ], [ 78.172624138992759, 26.868618679108742 ], [ 78.173450962192121, 26.863502712979816 ], [ 78.177585077289436, 26.856991481971299 ], [ 78.1871968928223, 26.847741400745004 ], [ 78.193604771043326, 26.839834907554909 ], [ 78.197842238028827, 26.831153266210258 ], [ 78.200116001152452, 26.823582668905026 ], [ 78.182235956324263, 26.817329820314903 ], [ 78.16900678873229, 26.822161567402411 ], [ 78.164976027321742, 26.791930854125603 ], [ 78.151540155054064, 26.78319753683683 ], [ 78.120017530584548, 26.794643865921664 ], [ 78.101207309769478, 26.795108953915072 ], [ 78.09293908137343, 26.779786892151318 ], [ 78.094282667610955, 26.770252590084961 ], [ 78.099863722632662, 26.753457749975148 ], [ 78.100380486570131, 26.742864080712756 ], [ 78.098520134596498, 26.74100373053772 ], [ 78.090148553412959, 26.72800710694241 ], [ 78.087358026351794, 26.721134142526633 ], [ 78.084980910440592, 26.701574611978735 ], [ 78.085187616015602, 26.689430650004446 ], [ 78.079399855418927, 26.682919419895306 ], [ 78.059349400254561, 26.680154731255808 ], [ 78.048807407835554, 26.680232244722269 ], [ 78.038472120991557, 26.681808376755153 ], [ 78.029067010134369, 26.68524485896307 ], [ 78.021522251250857, 26.691032620459048 ], [ 78.012840610805455, 26.695580145807064 ], [ 78.003642206422612, 26.693823147520213 ], [ 77.978424107386601, 26.68428884545386 ], [ 77.950002069240028, 26.669819444411807 ], [ 77.9321220226132, 26.666512153413116 ], [ 77.91362186105998, 26.665969550154607 ], [ 77.902769810278457, 26.664031683815146 ], [ 77.894294875408136, 26.65969086404214 ], [ 77.889023878748944, 26.651655177844187 ], [ 77.885923293325263, 26.634162705744238 ], [ 77.880652296666128, 26.625558580564011 ], [ 77.869903598672096, 26.619331570395609 ], [ 77.819157342237517, 26.60506887492863 ], [ 77.831456332943375, 26.575768338537948 ], [ 77.808925409080288, 26.55928355589139 ], [ 77.77275190557593, 26.548457343531531 ], [ 77.744019809966218, 26.536158351926353 ], [ 77.726656529075484, 26.515487779137679 ], [ 77.715081007882176, 26.506030992336427 ], [ 77.699371371591482, 26.5020260693476 ], [ 77.680767857250757, 26.49990733495553 ], [ 77.645731236207538, 26.490502224098343 ], [ 77.631055128691202, 26.488383489706273 ], [ 77.616792434123482, 26.482983302737232 ], [ 77.565322707277048, 26.44740408023409 ], [ 77.526048618349009, 26.426268419451951 ], [ 77.514369745267501, 26.416372382179695 ], [ 77.499900344225452, 26.411643988779012 ], [ 77.459592727422361, 26.416759954907995 ], [ 77.441816033583038, 26.413271795856698 ], [ 77.431480746739041, 26.400145981951475 ], [ 77.432307569938331, 26.386193345746271 ], [ 77.431274042063336, 26.373661811043739 ], [ 77.415150994622635, 26.364850979389182 ], [ 77.407606235739124, 26.372292385485189 ], [ 77.395100538558935, 26.366168728104292 ], [ 77.380527784729438, 26.364153347399046 ], [ 77.349625278783535, 26.364850979389182 ], [ 77.335775995365836, 26.361104437919433 ], [ 77.323373650973139, 26.351983547003094 ], [ 77.305286899670634, 26.331338813535403 ], [ 77.301359491047648, 26.32444000889927 ], [ 77.294434848889111, 26.308265286413807 ], [ 77.288130324354924, 26.299997057118439 ], [ 77.281102329408924, 26.294183458100058 ], [ 77.266322870004373, 26.284468288880415 ], [ 77.254230584873511, 26.274675605294924 ], [ 77.230149367399335, 26.262454128954854 ], [ 77.209685500185614, 26.241964423319466 ], [ 77.181056757363407, 26.237391059549729 ], [ 77.152324659955056, 26.239587307408268 ], [ 77.124729445007844, 26.237856147543134 ], [ 77.099821405233612, 26.221448879262361 ], [ 77.097030878172433, 26.214885973209043 ], [ 77.094963819724441, 26.19865957298088 ], [ 77.089899530438956, 26.190443020528956 ], [ 77.082458124342892, 26.185275377556589 ], [ 77.075740186860102, 26.184500230301349 ], [ 77.061890904341723, 26.186722317480921 ], [ 77.0490751478997, 26.184267686304675 ], [ 77.018896112365653, 26.171658637236302 ], [ 77.010421176595941, 26.166232611845537 ], [ 77.003703240911804, 26.156259060207439 ], [ 76.998638950726942, 26.145045274220021 ], [ 76.991921014143401, 26.135898545781224 ], [ 76.969390090280385, 26.12938731477271 ], [ 76.959881625736358, 26.122876085562886 ], [ 76.945515578381205, 26.10819997804651 ], [ 76.937454054660847, 26.104246731001801 ], [ 76.90799848773996, 26.098588162513686 ], [ 76.899110141719618, 26.090655829103177 ], [ 76.895286085884081, 26.082516791017095 ], [ 76.892702264397926, 26.073705960261854 ], [ 76.887534621425615, 26.063809922989545 ], [ 76.873375278746067, 26.051950181855368 ], [ 76.815497673678621, 26.018825587830573 ], [ 76.80877973799447, 26.008231920366818 ], [ 76.807539503645145, 25.996837267226049 ], [ 76.807539503645145, 25.985339260398515 ], [ 76.804335565433945, 25.974435532773608 ], [ 76.796067336138577, 25.964539496400612 ], [ 76.787695754055775, 25.96025035257167 ], [ 76.779117466397878, 25.957924913503913 ], [ 76.77022912037755, 25.953971666459204 ], [ 76.759997186321058, 25.945858465895462 ], [ 76.740153435832354, 25.923224189244927 ], [ 76.727027621927149, 25.916299547086389 ], [ 76.715555454420652, 25.916067003089715 ], [ 76.704289991589789, 25.918702501419254 ], [ 76.651786736868331, 25.922655748464017 ], [ 76.641141391661833, 25.920433661284441 ], [ 76.636180454264476, 25.91423249043708 ], [ 76.627498813819145, 25.893045151912183 ], [ 76.620574171660664, 25.885061143456987 ], [ 76.610548944078445, 25.88144379319646 ], [ 76.591945427939066, 25.880591132474759 ], [ 76.582747022656889, 25.875449327024793 ], [ 76.559389275594569, 25.854339503765054 ], [ 76.554841750246553, 25.851548976703892 ], [ 76.545953404226154, 25.848293362548638 ], [ 76.523112421101288, 25.812145698365264 ], [ 76.517944777229658, 25.799252428456775 ], [ 76.516704542880277, 25.785325628874652 ], [ 76.517531366079623, 25.757394518042528 ], [ 76.512673780570466, 25.744630439343265 ], [ 76.505955844886245, 25.740444648301825 ], [ 76.487455682433776, 25.737111517982154 ], [ 76.481151157899589, 25.732150579685474 ], [ 76.478360629939047, 25.719799913035551 ], [ 76.481771274624563, 25.708870347888244 ], [ 76.487662388008729, 25.698225003581051 ], [ 76.492209914256065, 25.686752835175177 ], [ 76.521458774702623, 25.550172024419389 ], [ 76.541302525191298, 25.49430980095655 ], [ 76.546986932101191, 25.470797024263213 ], [ 76.551431104661717, 25.460125841534357 ], [ 76.559079217232053, 25.452529404908084 ], [ 76.567554152102375, 25.448033556403452 ], [ 76.577062615747067, 25.446457424370628 ], [ 76.591635369576608, 25.443796088518631 ], [ 76.602900832407428, 25.43741404871934 ], [ 76.61065229686595, 25.430799464923318 ], [ 76.633389927203311, 25.392662258456422 ], [ 76.641451450923654, 25.384859117154516 ], [ 76.652303500805871, 25.37917471024468 ], [ 76.661915318137389, 25.377624417532836 ], [ 76.682379185351053, 25.37749522632361 ], [ 76.693748000070087, 25.376203315130844 ], [ 76.705943637988454, 25.372637640814439 ], [ 76.717105747132493, 25.368038437723719 ], [ 76.759170363121697, 25.338402004548865 ], [ 76.765888298805905, 25.334655463079109 ], [ 76.773123000226221, 25.332174994380463 ], [ 76.780150995172264, 25.332019964749573 ], [ 76.811776970630646, 25.342768662743591 ], [ 76.819115024838467, 25.344473985086321 ], [ 76.827796665283842, 25.344629014717206 ], [ 76.86965457569805, 25.337936917454776 ], [ 76.878646275405202, 25.334087022298199 ], [ 76.913476189974162, 25.309308172833877 ], [ 76.922777948043844, 25.306388455462802 ], [ 76.92866906142801, 25.307602851390467 ], [ 76.946962518305526, 25.318558254060175 ], [ 77.001532830575613, 25.31755056370752 ], [ 77.029644810359656, 25.327885851450837 ], [ 77.057550082770078, 25.343776353096182 ], [ 77.080597772369273, 25.353181463953369 ], [ 77.095790642923802, 25.355377711811908 ], [ 77.107676223378959, 25.354266669571128 ], [ 77.126486444194001, 25.345920925010656 ], [ 77.141265903598523, 25.341967677965947 ], [ 77.164830357135244, 25.339745591685695 ], [ 77.181056757363407, 25.34253611874686 ], [ 77.193562452744956, 25.348401393709302 ], [ 77.201623977364619, 25.355610255808635 ], [ 77.208135206574454, 25.364808661090812 ], [ 77.212786085609295, 25.373722846432194 ], [ 77.222501254828998, 25.402739162882025 ], [ 77.228392368213164, 25.413177802513523 ], [ 77.237074008658539, 25.422247015687212 ], [ 77.255470819222907, 25.433512478518018 ], [ 77.281205682196443, 25.442659206956815 ], [ 77.301979607772623, 25.445604762749603 ], [ 77.311798129779831, 25.445604762749603 ], [ 77.327714470746145, 25.443201809316001 ], [ 77.334535760117191, 25.440333766989731 ], [ 77.341253696700718, 25.436147975948295 ], [ 77.346524693359854, 25.431342068181884 ], [ 77.351485629857891, 25.425373440431937 ], [ 77.355516392167686, 25.418913886266804 ], [ 77.358513624803876, 25.411860052899094 ], [ 77.358616977591382, 25.407105821076748 ], [ 77.354896275442727, 25.40131806137941 ], [ 77.35086551313286, 25.395969550354433 ], [ 77.346214634098004, 25.388269761840029 ], [ 77.343424107036853, 25.379123033401235 ], [ 77.342803990311879, 25.367676703417082 ], [ 77.344664341386178, 25.357909858253315 ], [ 77.349108513946689, 25.348659776127754 ], [ 77.361407504652547, 25.332174994380463 ], [ 77.365334914174895, 25.324423529921937 ], [ 77.365955030899883, 25.316672065463415 ], [ 77.364714796550544, 25.311478583170064 ], [ 77.361097447189394, 25.30377879555493 ], [ 77.358306919228866, 25.296414902925385 ], [ 77.357583448817067, 25.289593614453729 ], [ 77.357893508078902, 25.27993012117815 ], [ 77.360063918415037, 25.269801540808427 ], [ 77.362957798263707, 25.262127589816366 ], [ 77.370089145997255, 25.251533922352618 ], [ 77.39117312993595, 25.228770452694214 ], [ 77.396650832170096, 25.220657253929115 ], [ 77.398924595293792, 25.212233995002858 ], [ 77.397374301682632, 25.205025132903522 ], [ 77.391793246660981, 25.198152166689109 ], [ 77.387969190825444, 25.190891629545028 ], [ 77.386522250901109, 25.182804267403007 ], [ 77.389209426074075, 25.16195282656167 ], [ 77.387969190825444, 25.151591702195272 ], [ 77.382388136703113, 25.142910060850621 ], [ 77.374429965770261, 25.138491725812454 ], [ 77.366265090161718, 25.136631374738155 ], [ 77.360477328665723, 25.134538478767745 ], [ 77.355516392167686, 25.129732571001334 ], [ 77.350658806658529, 25.123247179313861 ], [ 77.341253696700718, 25.113997097188243 ], [ 77.328851353207355, 25.108622747741599 ], [ 77.309731073130465, 25.109966335777749 ], [ 77.294951612826637, 25.117226873821146 ], [ 77.279758742272108, 25.126890367096728 ], [ 77.266012810742595, 25.130456041413137 ], [ 77.254333936761697, 25.130120143729634 ], [ 77.234903599221681, 25.122549547323722 ], [ 77.217747023006652, 25.123970648826337 ], [ 77.200383742115918, 25.129344998273037 ], [ 77.187361280998275, 25.127510483821762 ], [ 77.08803917756596, 25.093688258706148 ], [ 77.038326450805002, 25.087487086959463 ], [ 77.017449172441317, 25.089140733358128 ], [ 77.007010532809815, 25.088959866204839 ], [ 76.999362421138798, 25.087719630956194 ], [ 76.915026482686002, 25.052786362700481 ], [ 76.883503859115748, 25.046714382162971 ], [ 76.869034458073756, 25.040151476109706 ], [ 76.860972935252718, 25.033795273832819 ], [ 76.851051059558671, 25.019248359324305 ], [ 76.847330357410016, 25.012375393109888 ], [ 76.845470005436354, 25.006587633412543 ], [ 76.845573358223859, 25.002220974318497 ], [ 76.845883416586375, 25.000153916769811 ], [ 76.848363885285011, 24.994340317751433 ], [ 76.863763462313884, 24.967184353275279 ], [ 76.878232863355933, 24.935403347286631 ], [ 76.882263624766424, 24.919512843842647 ], [ 76.883193800753233, 24.896956082457216 ], [ 76.881746860828898, 24.890522365814483 ], [ 76.877612745731582, 24.882719225411897 ], [ 76.868621046923735, 24.87295237934881 ], [ 76.857562289667868, 24.866441148340297 ], [ 76.847330357410016, 24.862410386929803 ], [ 76.82655643093446, 24.857785346316682 ], [ 76.805472446995779, 24.856390082336411 ], [ 76.797204216801092, 24.85499481925546 ], [ 76.791933221041276, 24.851687527357448 ], [ 76.786972283643919, 24.846468207541697 ], [ 76.780564406322227, 24.837140611050351 ], [ 76.782734815759099, 24.826753648262237 ], [ 76.795240512939287, 24.816780097523459 ], [ 76.848053826922509, 24.759703477233639 ], [ 76.877819452205912, 24.743916327476533 ], [ 76.921434360906957, 24.73970469801338 ], [ 76.931046177339141, 24.741099961993648 ], [ 76.938177525072703, 24.743141181120613 ], [ 76.945722283956215, 24.744226385838996 ], [ 76.956367629162727, 24.742598577862047 ], [ 76.96680626789491, 24.737482611733125 ], [ 77.014555291693327, 24.699164537213612 ], [ 77.027371047235974, 24.685961208942608 ], [ 77.037396274818192, 24.670303250394678 ], [ 77.046181268051029, 24.64958099986324 ], [ 77.059100376381224, 24.602322903379267 ], [ 77.060857374668032, 24.577854112277461 ], [ 77.058893670806228, 24.561627712049237 ], [ 77.051865675860185, 24.552610174819669 ], [ 77.048765090436504, 24.547390855003922 ], [ 77.035225865381321, 24.538399156196071 ], [ 76.942931756894978, 24.500236111307451 ], [ 76.938590936222653, 24.49902171537985 ], [ 76.922261184106318, 24.496076157788416 ], [ 76.912029250049827, 24.496205348997645 ], [ 76.903967727228789, 24.497548936134471 ], [ 76.900350376068943, 24.499150905689699 ], [ 76.898800083357102, 24.500081082575885 ], [ 76.897869908269598, 24.503879299090382 ], [ 76.898800083357102, 24.520441596102781 ], [ 76.898076612945303, 24.526410223852729 ], [ 76.896319614658438, 24.53392914521384 ], [ 76.889084914137456, 24.550000514911794 ], [ 76.885054151827589, 24.556253364401236 ], [ 76.880506625580239, 24.561860256045968 ], [ 76.875752394657226, 24.565296739153151 ], [ 76.86965457569805, 24.567260443914332 ], [ 76.855391880231068, 24.567337958280113 ], [ 76.849087354797561, 24.568733222260384 ], [ 76.842059360750838, 24.571213690959034 ], [ 76.835031365804852, 24.574934394007066 ], [ 76.82841678290815, 24.576639716349799 ], [ 76.821698846324622, 24.576329657087964 ], [ 76.810743442755651, 24.571446234955765 ], [ 76.806712681345104, 24.565400091940653 ], [ 76.806195917407635, 24.555788276407831 ], [ 76.813637322604308, 24.521165066514577 ], [ 76.814464145803626, 24.51294851316333 ], [ 76.814464145803626, 24.505843003851506 ], [ 76.814154087441111, 24.5018639192844 ], [ 76.806402622083269, 24.475948188258254 ], [ 76.805575798883964, 24.469075222043838 ], [ 76.805782505358295, 24.462098903941236 ], [ 76.80836632684445, 24.452978013924159 ], [ 76.816427849665487, 24.426054592545363 ], [ 76.814567498591117, 24.360115465556241 ], [ 76.820458611975283, 24.337300319953776 ], [ 76.831620721119336, 24.316164659171644 ], [ 76.878026157780923, 24.261103421385766 ], [ 76.891565382836106, 24.24092377411284 ], [ 76.894149204322261, 24.229658311282034 ], [ 76.891875441198621, 24.220227362902442 ], [ 76.88536421108941, 24.212605088753826 ], [ 76.878646275405202, 24.203070786687412 ], [ 76.874305453833571, 24.190358384831594 ], [ 76.870274693322401, 24.181650905964538 ], [ 76.862729934438889, 24.17503632306784 ], [ 76.851981236444871, 24.172865911832325 ], [ 76.839682244839679, 24.173046779884938 ], [ 76.829450310783145, 24.17451955823099 ], [ 76.822215611161454, 24.17449371980927 ], [ 76.814464145803626, 24.172013251110624 ], [ 76.794723749001761, 24.161445421169212 ], [ 76.766611770117009, 24.160334378029113 ], [ 76.742943963792854, 24.174726263806001 ], [ 76.725063918065345, 24.188885606485535 ], [ 76.669150017759065, 24.223586330744517 ], [ 76.655817499178212, 24.234800115832677 ], [ 76.653957147204537, 24.24053620048522 ], [ 76.655094028766342, 24.248235988999674 ], [ 76.658814731814388, 24.25676259981412 ], [ 76.668736606609031, 24.273841660763985 ], [ 76.672870720807097, 24.283815212402086 ], [ 76.674110956055742, 24.29477061597111 ], [ 76.669770135383416, 24.305881049171084 ], [ 76.660778435676193, 24.309601752219063 ], [ 76.649202915382176, 24.309395045744729 ], [ 76.621504347647473, 24.301100978927021 ], [ 76.592978956713452, 24.289344591479672 ], [ 76.581713494781894, 24.282445786843589 ], [ 76.572515090399051, 24.273247382460735 ], [ 76.566003859390534, 24.262085273316693 ], [ 76.555875279020867, 24.227797960207674 ], [ 76.55205122318533, 24.221390081986662 ], [ 76.542749465115648, 24.215188910239981 ], [ 76.53045047440979, 24.211106471986049 ], [ 76.511536899907952, 24.209091091280804 ], [ 76.502028436263274, 24.210512192783419 ], [ 76.494793735742277, 24.21441376388406 ], [ 76.49076297433173, 24.221183377310975 ], [ 76.483631625698919, 24.242422389981297 ], [ 76.477533806739743, 24.253455308815425 ], [ 76.466888462432536, 24.262033596473255 ], [ 76.456139764438532, 24.265030829109431 ], [ 76.408184035065105, 24.259553127774605 ], [ 76.381518996104745, 24.260018214868687 ], [ 76.358574660192389, 24.265056668430471 ], [ 76.304727818334101, 24.283143418833671 ], [ 76.28684777170723, 24.284926256441558 ], [ 76.253774855425192, 24.27888011342645 ], [ 76.230313754675976, 24.277872423073852 ], [ 76.214500767396473, 24.283763536458022 ], [ 76.2023051285788, 24.292522691269134 ], [ 76.194967076169561, 24.301798610917157 ], [ 76.190212844347201, 24.310609443471034 ], [ 76.18897260909857, 24.317249863890076 ], [ 76.189386021147911, 24.323399359692694 ], [ 76.192486606571592, 24.338488878359041 ], [ 76.192176548209076, 24.345516873305023 ], [ 76.18897260909857, 24.352079780257608 ], [ 76.182461378989373, 24.35295827940103 ], [ 76.173573032969031, 24.351485501055034 ], [ 76.154969516829667, 24.343243110181383 ], [ 76.140706822262004, 24.335284939248531 ], [ 76.132748651329138, 24.329393825864368 ], [ 76.127167596307501, 24.321900742924917 ], [ 76.123963658096315, 24.312004706551924 ], [ 76.122826775635104, 24.282445786843589 ], [ 76.117659132662808, 24.261723538110793 ], [ 76.116728956675942, 24.25143992811018 ], [ 76.119519483737164, 24.23177704477478 ], [ 76.116005487163463, 24.19609446948413 ], [ 76.116108839950968, 24.183433743572373 ], [ 76.11910607258713, 24.160024318767277 ], [ 76.119209426273969, 24.150283311125914 ], [ 76.116625603888437, 24.134031073375294 ], [ 76.083242629243884, 24.098141790711047 ], [ 75.999010043578593, 24.051116238223806 ], [ 75.984747349010874, 24.036853542756766 ], [ 75.980199822763524, 24.02594981513186 ], [ 75.986090936147761, 24.018043321042391 ], [ 76.000250278827238, 24.004064846415524 ], [ 76.001593865964068, 24.000602524886567 ], [ 76.001800572438398, 23.997967027456351 ], [ 76.00097374923908, 23.993910426724817 ], [ 75.997873162916093, 23.983936875986039 ], [ 75.994152459868062, 23.976366279580127 ], [ 75.986711052872735, 23.964894111174257 ], [ 75.973378534291882, 23.95538564752956 ], [ 75.899377882683083, 23.91833364488178 ], [ 75.847598098373496, 23.904665229516688 ], [ 75.812354770855947, 23.886914374099085 ], [ 75.792511021266577, 23.881875922335944 ], [ 75.776491326613368, 23.883141995106989 ], [ 75.766362746243701, 23.892805488382571 ], [ 75.757267693749014, 23.903502509533151 ], [ 75.748275994941181, 23.912313341187705 ], [ 75.739697707283284, 23.916938380901506 ], [ 75.72874230281495, 23.916240749810747 ], [ 75.723264602379444, 23.9122358259226 ], [ 75.720267367944629, 23.906473903747663 ], [ 75.720887485568966, 23.898980820808212 ], [ 75.726985305427476, 23.877767646559612 ], [ 75.728535598139317, 23.867432358816295 ], [ 75.726675246165641, 23.858776556792627 ], [ 75.711792433973628, 23.83105215153557 ], [ 75.709622022738117, 23.822628893508632 ], [ 75.708071730026276, 23.813172104908681 ], [ 75.705384555752616, 23.803456935689034 ], [ 75.699803500730908, 23.793199164110089 ], [ 75.692878858572428, 23.789142564277878 ], [ 75.684817335751376, 23.789840196268013 ], [ 75.665800409361367, 23.804671332515962 ], [ 75.653088005706863, 23.810381577847515 ], [ 75.637585076789819, 23.813818060954755 ], [ 75.597070754411703, 23.817900499208626 ], [ 75.590146112253223, 23.836090603298651 ], [ 75.589009229792097, 23.855469264894616 ], [ 75.58342817566971, 23.8678974468097 ], [ 75.57815717990988, 23.875726427432646 ], [ 75.524206984364795, 23.905001126300927 ], [ 75.507463820199092, 23.916654160960711 ], [ 75.50136600123993, 23.921744290466613 ], [ 75.490307244883397, 23.939934394556641 ], [ 75.487206658560396, 23.979621893735377 ], [ 75.486069776998576, 23.988923651805063 ], [ 75.503123000426086, 24.014270942050299 ], [ 75.513044875220757, 24.036026720456782 ], [ 75.523586866740445, 24.041220200951496 ], [ 75.529477980124611, 24.042589627409363 ], [ 75.538883090981784, 24.041375230582386 ], [ 75.548701612989007, 24.035458278776495 ], [ 75.56668501240334, 24.020833849002877 ], [ 75.574126417600027, 24.016906440379895 ], [ 75.589319289053876, 24.01318573733186 ], [ 75.596657342362434, 24.009465033384565 ], [ 75.609163038643246, 23.999491481746468 ], [ 75.621772088610939, 23.99522817633925 ], [ 75.633554315379328, 23.995486558757641 ], [ 75.64492313009832, 23.999517320168192 ], [ 75.672828404307353, 24.022384141714721 ], [ 75.683577102301385, 24.024632066416697 ], [ 75.692982212259238, 24.0216089953588 ], [ 75.712722609061117, 24.005460110395742 ], [ 75.722644483855774, 24.001041775357631 ], [ 75.726778598953132, 24.000059923426701 ], [ 75.729982538063652, 24.000680040151728 ], [ 75.738767531296489, 24.00995595979969 ], [ 75.742694939919474, 24.020756333737772 ], [ 75.751169874789852, 24.035406601933111 ], [ 75.765329216570066, 24.05535370520931 ], [ 75.794061313978418, 24.080442613036148 ], [ 75.806153599109251, 24.097702542038686 ], [ 75.810804478144107, 24.108270371980037 ], [ 75.805016716648126, 24.119122422761556 ], [ 75.76346886639503, 24.141007392377212 ], [ 75.751789992414146, 24.153409735870575 ], [ 75.746415642967506, 24.171884059901394 ], [ 75.747759230104336, 24.190048326469078 ], [ 75.75923139761089, 24.211597398401178 ], [ 75.794784784390217, 24.251646632785874 ], [ 75.802536248848739, 24.27221385278704 ], [ 75.803983188773074, 24.292522691269134 ], [ 75.800882603349393, 24.306268621899385 ], [ 75.796645134565253, 24.314071764100614 ], [ 75.789513787731082, 24.320660509474912 ], [ 75.78062544081142, 24.324794622773588 ], [ 75.769670038141712, 24.32854116514266 ], [ 75.759128045722704, 24.333967190533368 ], [ 75.751789992414146, 24.342261257351133 ], [ 75.746415642967506, 24.35716990796487 ], [ 75.741144647207634, 24.399596259160028 ], [ 75.737423944159659, 24.410551662729002 ], [ 75.734426710624149, 24.423961697474333 ], [ 75.735356886610958, 24.439981391228223 ], [ 75.74496870304317, 24.468842678047107 ], [ 75.754167108325348, 24.483622138350992 ], [ 75.765432570256877, 24.493363145093038 ], [ 75.777214797025223, 24.496205348997645 ], [ 75.792200962004742, 24.494164129870676 ], [ 75.825377231973604, 24.473157660297769 ], [ 75.837572869891943, 24.4699795605083 ], [ 75.849458449447852, 24.472615057938579 ], [ 75.861033969741854, 24.480728258502317 ], [ 75.869405551824713, 24.491838690802915 ], [ 75.872816197409563, 24.497445584246289 ], [ 75.873953078072063, 24.50108877202916 ], [ 75.874883254058872, 24.51426626187844 ], [ 75.869405551824713, 24.59937734578784 ], [ 75.839949985803145, 24.63281199817515 ], [ 75.820106236213789, 24.651286323105293 ], [ 75.813698357992777, 24.663895372173666 ], [ 75.813698357992777, 24.675109158161089 ], [ 75.817625766615762, 24.685237739430129 ], [ 75.818555942602629, 24.697536729236667 ], [ 75.813388298730942, 24.717664700565475 ], [ 75.781865676060065, 24.759083360508662 ], [ 75.767809686168036, 24.771589056789534 ], [ 75.758817987360175, 24.777376817386195 ], [ 75.74703575969248, 24.780089830081575 ], [ 75.732152948399786, 24.779469713356541 ], [ 75.71747684088345, 24.774663804690814 ], [ 75.648953892408173, 24.738335273354146 ], [ 75.598517694336053, 24.727483222572626 ], [ 75.549941848237651, 24.725777900229893 ], [ 75.448035923319182, 24.703143621780718 ], [ 75.416513298849594, 24.700973212343847 ], [ 75.387574496765566, 24.704745592235263 ], [ 75.341892531415155, 24.719731757214785 ], [ 75.308612908658787, 24.724692695511457 ], [ 75.279053989849714, 24.724175929775292 ], [ 75.242363723307136, 24.720196845208246 ], [ 75.22076297363229, 24.720816961933217 ], [ 75.203709751104071, 24.724951077030532 ], [ 75.192237582698198, 24.731901556711474 ], [ 75.18200565044036, 24.740789902731812 ], [ 75.175081008281879, 24.750530911272499 ], [ 75.171980421958878, 24.762545681138242 ], [ 75.173634068357543, 24.774663804690814 ], [ 75.18066206240421, 24.785903429099953 ], [ 75.201539340767894, 24.801070462132085 ], [ 75.208050571776397, 24.809493720159018 ], [ 75.210427686788279, 24.82104340293068 ], [ 75.207327102263932, 24.834892686348375 ], [ 75.20184940002973, 24.846080633914077 ], [ 75.188103469399536, 24.867061265964647 ], [ 75.183866000615396, 24.877964992690231 ], [ 75.183245883890365, 24.886129869198097 ], [ 75.186863234150877, 24.892899481725689 ], [ 75.193684522622547, 24.895767524051955 ], [ 75.202469516754761, 24.892925320147405 ], [ 75.212701450811252, 24.884889634848768 ], [ 75.234818964423624, 24.861712754939671 ], [ 75.24732465980513, 24.852049262563405 ], [ 75.26220747289652, 24.845253810714773 ], [ 75.27936404821223, 24.840990505307552 ], [ 75.297450798615415, 24.839388535752271 ], [ 75.31884484181596, 24.839982814954904 ], [ 75.337034946805289, 24.842411606810167 ], [ 75.355018345320318, 24.847320868263459 ], [ 75.370831332599863, 24.854839788725254 ], [ 75.384370558554366, 24.863805650010697 ], [ 75.394189080561588, 24.873262436812009 ], [ 75.401423781082585, 24.882254137418496 ], [ 75.40576460175491, 24.890212307452025 ], [ 75.407004836104235, 24.895767524051955 ], [ 75.405144484130616, 24.901891181432852 ], [ 75.397909783609549, 24.904526678863132 ], [ 75.387264439302371, 24.904578354807196 ], [ 75.344166293639475, 24.89165924737636 ], [ 75.32153201698894, 24.888248602690844 ], [ 75.297657505089759, 24.887628485965816 ], [ 75.268098586280686, 24.893287055353309 ], [ 75.253215773189353, 24.901038519811827 ], [ 75.245154250368316, 24.911425483499265 ], [ 75.244224074381506, 24.919512843842647 ], [ 75.245464308730831, 24.926980089259693 ], [ 75.247841423742642, 24.932199408176128 ], [ 75.251355422114997, 24.93654022884845 ], [ 75.258176710586653, 24.938193875247116 ], [ 75.267995232593847, 24.936953639998471 ], [ 75.283188104047696, 24.930519924255062 ], [ 75.294970330816042, 24.926954250837973 ], [ 75.305202263973271, 24.926024074851167 ], [ 75.314193963680424, 24.929486396380064 ], [ 75.320291782639615, 24.935248318555004 ], [ 75.321635369776445, 24.944575914147087 ], [ 75.317914666728399, 24.955247096876004 ], [ 75.299517857063378, 24.975865993720614 ], [ 75.294556918766759, 24.983436591025846 ], [ 75.293006626054904, 24.986666368558012 ], [ 75.291559686130583, 24.99627818499021 ], [ 75.309749790220607, 25.029712836478204 ], [ 75.32060184100213, 25.043872179157738 ], [ 75.323805780112636, 25.053768215530674 ], [ 75.323702427325131, 25.05808319778134 ], [ 75.319361606652805, 25.059555976127392 ], [ 75.313573846056073, 25.05942678491817 ], [ 75.304892205610756, 25.058005683415551 ], [ 75.271199171704353, 25.048264674874808 ], [ 75.235129021886763, 25.040228990475491 ], [ 75.206190219802735, 25.040668240047232 ], [ 75.157821079279344, 25.045810045497198 ], [ 75.142731560613001, 25.044027207889311 ], [ 75.133326450655133, 25.040022284001164 ], [ 75.130845981956426, 25.035423081809761 ], [ 75.129295689244628, 25.031340644455152 ], [ 75.125678338984116, 25.01803396249732 ], [ 75.122887811023631, 25.01250458431911 ], [ 75.119167107975599, 25.007362778869144 ], [ 75.113586052953949, 25.001600856694147 ], [ 75.100873651098055, 24.991265570749473 ], [ 75.097876417562574, 24.987674058910667 ], [ 75.095912713700699, 24.984315090169268 ], [ 75.09384565615207, 24.97777802253767 ], [ 75.103147414221752, 24.940415961527371 ], [ 75.10376753094674, 24.927496853197219 ], [ 75.099633416748745, 24.905146796487426 ], [ 75.095395948863924, 24.89659434725132 ], [ 75.090641717041564, 24.89165924737636 ], [ 75.084440546194216, 24.888894557837542 ], [ 75.07803266797319, 24.888868720315138 ], [ 75.071521436964687, 24.890806585755278 ], [ 75.054984979273328, 24.898118801541436 ], [ 75.048887160314152, 24.898480535848016 ], [ 75.042996046929986, 24.89587087683946 ], [ 75.014263951320274, 24.872719835352079 ], [ 75.003101841276916, 24.866311957131067 ], [ 74.995143671243383, 24.864115709272536 ], [ 74.98139773971387, 24.863030504554096 ], [ 74.966824985884301, 24.866208604343566 ], [ 74.951942172792982, 24.872849026561308 ], [ 74.930134719341751, 24.887163397972408 ], [ 74.919799431598435, 24.891219997804619 ], [ 74.909670852128087, 24.893312892875706 ], [ 74.899645623646549, 24.89716278713291 ], [ 74.891997511975532, 24.902821357419665 ], [ 74.875874465434194, 24.919357815111081 ], [ 74.86171512185534, 24.927031765203758 ], [ 74.845592076213322, 24.932380276228734 ], [ 74.824301384900906, 24.932509467437963 ], [ 74.817066685279244, 24.927496853197219 ], [ 74.815309686093073, 24.916515611206471 ], [ 74.834119907807434, 24.871479601002758 ], [ 74.83753055159363, 24.859413154293627 ], [ 74.838357374792949, 24.848276881772669 ], [ 74.837220493231129, 24.836442979060219 ], [ 74.831226027059458, 24.806315619470237 ], [ 74.832569615095608, 24.800527858873576 ], [ 74.83784061085548, 24.797143053509096 ], [ 74.849209425574472, 24.79543773026699 ], [ 74.879388462007896, 24.795721951107108 ], [ 74.895098098298533, 24.794352525548611 ], [ 74.918662550935935, 24.787608751442686 ], [ 74.928894484093107, 24.785774237890728 ], [ 74.93902306536215, 24.786988633818392 ], [ 74.948841587369301, 24.789598293726264 ], [ 74.958143345438984, 24.791019395228879 ], [ 74.966514926622523, 24.790218411350558 ], [ 74.974266391980379, 24.785748399469007 ], [ 74.979227329377679, 24.777454331751979 ], [ 74.97840050617836, 24.763398341859947 ], [ 74.971269159344203, 24.748748074563984 ], [ 74.967755160971862, 24.73740509736734 ], [ 74.967135044246831, 24.725390325702953 ], [ 74.968168573021188, 24.71239370390628 ], [ 74.96537804595998, 24.694048570185366 ], [ 74.956903111089659, 24.683015652250553 ], [ 74.944810825958811, 24.674644070167684 ], [ 74.932305128778623, 24.669088853567697 ], [ 74.91897260929845, 24.666582546447327 ], [ 74.881145461194009, 24.664877224104597 ], [ 74.869673292788192, 24.665574856094729 ], [ 74.858511183644154, 24.671931057472303 ], [ 74.851069776648814, 24.681697903535387 ], [ 74.839907668404109, 24.704435532973427 ], [ 74.833396437395649, 24.71107595519117 ], [ 74.816756626017408, 24.720455226727317 ], [ 74.810348748695759, 24.726733913739107 ], [ 74.806524692860236, 24.735777289390391 ], [ 74.802493931449746, 24.761382962054025 ], [ 74.797636345940575, 24.774508775059925 ], [ 74.791331822305708, 24.781562608427627 ], [ 74.781409946611674, 24.781743476480241 ], [ 74.775828891590024, 24.775438951046731 ], [ 74.771384719029513, 24.763630885856678 ], [ 74.769214308693321, 24.730971380724604 ], [ 74.770454543042703, 24.704719753813546 ], [ 74.773141717316363, 24.695211290168906 ], [ 74.783580356947851, 24.678907376474221 ], [ 74.784303827359722, 24.668132839159163 ], [ 74.748957147054668, 24.591160794235233 ], [ 74.71929487455877, 24.545220445567104 ], [ 74.71526411314828, 24.536435452334214 ], [ 74.711853469362083, 24.523852239888921 ], [ 74.711956822149588, 24.514963893868575 ], [ 74.714643996423248, 24.506514797419921 ], [ 74.720225051444899, 24.500313626572559 ], [ 74.817066685279244, 24.474552924278036 ], [ 74.833499790183083, 24.466362210247773 ], [ 74.844868604902146, 24.454993393730085 ], [ 74.846832309663327, 24.435511379346671 ], [ 74.838357374792949, 24.420034287952028 ], [ 74.823681268175946, 24.404479682191546 ], [ 74.766423780732836, 24.358720201576027 ], [ 74.761152784973021, 24.348384914732033 ], [ 74.75960249226118, 24.335698351297872 ], [ 74.75898237463683, 24.320996406259091 ], [ 74.754021437239473, 24.304124049984917 ], [ 74.745649855156657, 24.291437486550759 ], [ 74.733454217238304, 24.277329819815286 ], [ 74.730973749438917, 24.267769680226529 ], [ 74.735004509950144, 24.260612494071321 ], [ 74.745649855156657, 24.257279365550286 ], [ 74.759292433898665, 24.256685086347652 ], [ 74.807248163272092, 24.263041286825903 ], [ 74.823887973750942, 24.261258450117332 ], [ 74.84052778512914, 24.255961615036476 ], [ 74.85603071494549, 24.247176621803639 ], [ 74.869983352050028, 24.23611786544711 ], [ 74.879595167582849, 24.221777656513606 ], [ 74.884969517029546, 24.204982815504529 ], [ 74.888276808927557, 24.155347602210036 ], [ 74.893134392638075, 24.134496161368755 ], [ 74.9002657412709, 24.117391261997106 ], [ 74.909360792866252, 24.101681627505112 ], [ 74.919179314873446, 24.088297431181498 ], [ 74.929204543354942, 24.077161160459177 ], [ 74.951115349593678, 24.061089788962583 ], [ 74.961037225287654, 24.052278958207346 ], [ 74.968478631383647, 24.041297716216597 ], [ 74.968168573021188, 24.032771104502835 ], [ 74.962174106849517, 24.023934434426561 ], [ 74.955042759115983, 24.015201117137842 ], [ 74.946774529820672, 24.001997788866841 ], [ 74.908327264091923, 23.896732896106236 ], [ 74.903056268332065, 23.855262559319605 ], [ 74.902229445132761, 23.824153346899429 ], [ 74.903779737844602, 23.805549832558704 ], [ 74.906570265805072, 23.791312975513389 ], [ 74.916698846174754, 23.779272366326605 ], [ 74.932201775991118, 23.75242645931365 ], [ 74.938506301424624, 23.721678982099316 ], [ 74.939746534874615, 23.705168361930355 ], [ 74.93902306536215, 23.687365831467954 ], [ 74.934992303052283, 23.666411037839104 ], [ 74.926724073756972, 23.651812446487209 ], [ 74.917112258224094, 23.639952704453712 ], [ 74.908120559416247, 23.630961004746549 ], [ 74.899438918071539, 23.620393174805137 ], [ 74.893547804687373, 23.609566962445339 ], [ 74.879905226844684, 23.569905299889676 ], [ 74.871843703124327, 23.551921902273929 ], [ 74.862955357103971, 23.538279324431237 ], [ 74.853343539772467, 23.526962184756989 ], [ 74.82295779776409, 23.500116279542617 ], [ 74.814896274943109, 23.496498928382827 ], [ 74.789884880582733, 23.491331285410464 ], [ 74.77903283070053, 23.487429714309819 ], [ 74.722395460881771, 23.452186387691594 ], [ 74.699554477756905, 23.444822495961368 ], [ 74.648188103697962, 23.430559801393709 ], [ 74.631444940431592, 23.420353704859561 ], [ 74.569536573953698, 23.367850450138118 ], [ 74.556514112835984, 23.351339829969156 ], [ 74.521270786217741, 23.28974152275304 ], [ 74.519927199080925, 23.276305650485366 ], [ 74.523027785403926, 23.26547943812556 ], [ 74.530469190600613, 23.25594513605915 ], [ 74.536360304884099, 23.250906684296009 ], [ 74.542044711793977, 23.247831936394729 ], [ 74.550519646664313, 23.244808865336829 ], [ 74.581215447934525, 23.239305325580283 ], [ 74.611497837155383, 23.228117377115261 ], [ 74.622039828675085, 23.226644598769209 ], [ 74.646017694261147, 23.227781480331025 ], [ 74.65842003775451, 23.226463730716599 ], [ 74.669685499685997, 23.221218573378447 ], [ 74.676816848318865, 23.215120754419271 ], [ 74.687462192626057, 23.200108751018032 ], [ 74.69542036265959, 23.192667344922025 ], [ 74.715884229873254, 23.179205634232627 ], [ 74.719604933820605, 23.16943878816954 ], [ 74.710716586900944, 23.161945706129412 ], [ 74.667205030987347, 23.147269599512406 ], [ 74.611911249204738, 23.112672227141555 ], [ 74.550002882726773, 23.098745429358072 ], [ 74.47610558480487, 23.062365221177966 ], [ 74.4562618352155, 23.060298162730017 ], [ 74.43796837833797, 23.063450425896399 ], [ 74.422568801309112, 23.068773098499655 ], [ 74.407892693792732, 23.072338771916744 ], [ 74.387428826579011, 23.072597154335192 ], [ 74.374819776611375, 23.070013332848983 ], [ 74.363347609104821, 23.065052395451684 ], [ 74.355286086283783, 23.059290473276686 ], [ 74.341126742704986, 23.046578071420864 ], [ 74.323453404351071, 23.03606191742352 ], [ 74.316115350143235, 23.054872138238572 ], [ 74.308053827322212, 23.06947073048979 ], [ 74.301542596313695, 23.07574941750158 ], [ 74.292860955868363, 23.080942897996344 ], [ 74.2815954930375, 23.085438748299563 ], [ 74.274154086941479, 23.090089627334404 ], [ 74.256377394900809, 23.118408310894832 ], [ 74.252553339065273, 23.12882111300393 ], [ 74.244905227394256, 23.141300970863078 ], [ 74.233329706200919, 23.1558995631143 ], [ 74.205941196828732, 23.172074286499079 ], [ 74.193125441286028, 23.177164415105658 ], [ 74.184753859203212, 23.177500311889837 ], [ 74.171731398085498, 23.166493232376745 ], [ 74.165220167976287, 23.162772529328716 ], [ 74.157261997043491, 23.160007838890628 ], [ 74.146720004624427, 23.158069973450488 ], [ 74.134731073180419, 23.161428941292563 ], [ 74.121915317637757, 23.17021393542478 ], [ 74.108996210206882, 23.191117052210185 ], [ 74.106102328559558, 23.207265937173243 ], [ 74.106102328559558, 23.222277940574482 ], [ 74.107445916595722, 23.235532944789547 ], [ 74.105792271096377, 23.247676906763839 ], [ 74.097524041801066, 23.260027574313078 ], [ 74.083674758383367, 23.271525580241295 ], [ 74.030034621200784, 23.297673855264176 ], [ 73.995721469670045, 23.330307521974525 ], [ 73.959547967065006, 23.358832912908607 ], [ 73.946422154059107, 23.362269395116467 ], [ 73.938463983126255, 23.362191880750679 ], [ 73.93557010327757, 23.357566840137562 ], [ 73.931642693755279, 23.348420111698765 ], [ 73.929162225056572, 23.344079291026443 ], [ 73.925441522008597, 23.340126043981737 ], [ 73.91986046698689, 23.336973781714612 ], [ 73.911592237691579, 23.33457082828107 ], [ 73.904460890857408, 23.333382269875806 ], [ 73.895675896725194, 23.335113429740993 ], [ 73.885443963568022, 23.339221707315911 ], [ 73.855574986396419, 23.369555772480901 ], [ 73.818161249442056, 23.424255275960199 ], [ 73.811856724008564, 23.43461640122592 ], [ 73.803485141925691, 23.438802192267357 ], [ 73.789532504821167, 23.439809881720628 ], [ 73.710674270401213, 23.415031033155621 ], [ 73.698375278796021, 23.416322944348387 ], [ 73.676877882808, 23.436528429143657 ], [ 73.666129184813983, 23.441825263325196 ], [ 73.627165155147722, 23.438698839479848 ], [ 73.618793573064906, 23.451876329329135 ], [ 73.629645623846429, 23.474458930035546 ], [ 73.631712681395058, 23.487739773571658 ], [ 73.629542271058924, 23.498152573882177 ], [ 73.621790805701082, 23.512337754983371 ], [ 73.616519809941209, 23.524972643372784 ], [ 73.61538292837939, 23.544454656856882 ], [ 73.619103631427421, 23.561559557127843 ], [ 73.620550572251076, 23.582591865122478 ], [ 73.61538292837939, 23.601789659565092 ], [ 73.5944022972282, 23.62739533132946 ], [ 73.579829543398645, 23.635172634209706 ], [ 73.566393671130967, 23.63540517820638 ], [ 73.556471796336297, 23.628971462463021 ], [ 73.536524693060116, 23.6111430935789 ], [ 73.524432407929211, 23.603107408280259 ], [ 73.513580357147745, 23.599851793225636 ], [ 73.504175246290544, 23.602642320286858 ], [ 73.500764601605042, 23.607319036844039 ], [ 73.499834425618175, 23.619540514083436 ], [ 73.501694776692531, 23.634268297543876 ], [ 73.502004835954367, 23.65930552852728 ], [ 73.504485304653016, 23.669511624162105 ], [ 73.508619418851069, 23.678038234976547 ], [ 73.510789829187203, 23.684497789141624 ], [ 73.509859654099714, 23.691396592878444 ], [ 73.502728306366222, 23.701706041300721 ], [ 73.497974073644556, 23.706356920335562 ], [ 73.489085727624158, 23.710491034533614 ], [ 73.462730747026328, 23.714702663996714 ], [ 73.449708285908599, 23.719792791703977 ], [ 73.438959588813916, 23.729404609035434 ], [ 73.430898065093558, 23.742840481303169 ], [ 73.424386834984418, 23.760100409406327 ], [ 73.4185990743877, 23.770926621766129 ], [ 73.411674432229219, 23.779220689483218 ], [ 73.403302850146332, 23.783949082883844 ], [ 73.39493126806353, 23.785886949223304 ], [ 73.361651646206468, 23.784233302824639 ], [ 73.358137647834141, 23.787359727569363 ], [ 73.356897414384136, 23.794361884093629 ], [ 73.365062289992622, 23.839578762349955 ], [ 73.365579054829468, 23.851929429899254 ], [ 73.363408645392596, 23.876837470572802 ], [ 73.364028762117627, 23.889084784435219 ], [ 73.368162876315623, 23.899626776854227 ], [ 73.375397576836676, 23.90895437334563 ], [ 73.391313917803004, 23.919393012077812 ], [ 73.405783318845053, 23.926705226964653 ], [ 73.418289016025241, 23.935567735462595 ], [ 73.423870070147572, 23.940942084009968 ], [ 73.418185663237722, 23.968614814222285 ], [ 73.406196729995074, 23.985719712694554 ], [ 73.399375440624041, 23.99982737942997 ], [ 73.39875532389901, 24.002307848128677 ], [ 73.398341912749046, 24.007527167045104 ], [ 73.39875532389901, 24.02905040145486 ], [ 73.395964796837845, 24.042227892203467 ], [ 73.388523390741838, 24.057472438702057 ], [ 73.35410688732297, 24.104730536085352 ], [ 73.346768833115078, 24.108115343248464 ], [ 73.338087192669761, 24.103025213742619 ], [ 73.331265904198048, 24.093826809359761 ], [ 73.319690383004726, 24.067523504705942 ], [ 73.312662388058726, 24.055999661255321 ], [ 73.303670689250836, 24.045457668836317 ], [ 73.294678990442989, 24.038817247517947 ], [ 73.255818311765651, 24.014916897197047 ], [ 73.245586378608408, 24.015537013922021 ], [ 73.229773391328919, 24.029515489448269 ], [ 73.207965936079049, 24.0540359564942 ], [ 73.203935173769182, 24.062795112204633 ], [ 73.200731235558052, 24.078633937905913 ], [ 73.19659712136, 24.086566270417048 ], [ 73.189465772727189, 24.09374929499392 ], [ 73.169415317562795, 24.101914171501786 ], [ 73.161973910567482, 24.106823432055698 ], [ 73.148227979937289, 24.122843125809592 ], [ 73.140063104328746, 24.128656724827973 ], [ 73.117325473991386, 24.13899201077265 ], [ 73.107196892722399, 24.149585680035095 ], [ 73.101615838600011, 24.159430040463967 ], [ 73.094381138079015, 24.179558009994132 ], [ 73.079291620311992, 24.204311021036798 ], [ 73.077534621125821, 24.214336249518279 ], [ 73.080325148186986, 24.226841945799144 ], [ 73.107506951984178, 24.29229014727246 ], [ 73.113708123730859, 24.29931814221845 ], [ 73.122389764176248, 24.305364285233559 ], [ 73.13076134625905, 24.31347748489798 ], [ 73.134068638157075, 24.321539007719021 ], [ 73.135102166931389, 24.330556545847905 ], [ 73.137169223580756, 24.335930894395226 ], [ 73.141613397040572, 24.336706040751146 ], [ 73.15174197830963, 24.334690660045901 ], [ 73.165694615414097, 24.333269558543286 ], [ 73.180887485968682, 24.333269558543286 ], [ 73.192669711837695, 24.33613759997024 ], [ 73.200317824408032, 24.33959992149914 ], [ 73.207965936079049, 24.346679592389243 ], [ 73.213340284626369, 24.356136379190495 ], [ 73.216647577423686, 24.369029649098984 ], [ 73.216027459799406, 24.379700832727217 ], [ 73.211996698388859, 24.387426458764018 ], [ 73.203935173769182, 24.391095485867929 ], [ 73.196700474147505, 24.390475369142955 ], [ 73.186158481728498, 24.384713446967961 ], [ 73.179543897932476, 24.379649155883836 ], [ 73.173446078973299, 24.377711290443695 ], [ 73.165694615414097, 24.378383084012111 ], [ 73.115155063655195, 24.394351100922556 ], [ 73.105026483285528, 24.398743598438269 ], [ 73.097275017927686, 24.404298814138937 ], [ 73.09159061101785, 24.410965073879019 ], [ 73.089833611831679, 24.415900172854656 ], [ 73.090143671093514, 24.420783595886228 ], [ 73.098721957852021, 24.442513535870937 ], [ 73.100995720975703, 24.463416653555722 ], [ 73.100995720975703, 24.485094915797728 ], [ 73.099652133838816, 24.492743028368061 ], [ 73.097275017927686, 24.499719347369986 ], [ 73.096551548415206, 24.50111461045088 ], [ 73.095001254804032, 24.503646755093651 ], [ 73.09107384618099, 24.507212429410053 ], [ 73.079705030562636, 24.509124457327793 ], [ 73.062031691309457, 24.507367459041003 ], [ 73.029785598226724, 24.497368068981181 ], [ 73.014902785135376, 24.494810085916694 ], [ 73.004980910340663, 24.494164129870676 ], [ 72.999709913681528, 24.493285630727254 ], [ 72.994542270709175, 24.490055854094347 ], [ 72.984310336652683, 24.480108140877967 ], [ 72.978832635317787, 24.472175808366838 ], [ 72.974491814645475, 24.464191799012266 ], [ 72.972838169146129, 24.458223171262311 ], [ 72.972218052421155, 24.453443101018248 ], [ 72.972011345946825, 24.43964549444399 ], [ 72.971081170859279, 24.432539985132159 ], [ 72.969737582823129, 24.428069973250668 ], [ 72.967050409448788, 24.423961697474333 ], [ 72.963949823125787, 24.420396023157931 ], [ 72.961986118364592, 24.415512600126359 ], [ 72.961366000740313, 24.411326809084919 ], [ 72.961469354427138, 24.401043199084363 ], [ 72.960745884015282, 24.396030584843569 ], [ 72.958678827365901, 24.390061957093614 ], [ 72.954958124317926, 24.384945990065368 ], [ 72.949687127658748, 24.379416611887105 ], [ 72.924572381410229, 24.363396918133269 ], [ 72.911239861930014, 24.360115465556241 ], [ 72.897390577612995, 24.360580553549703 ], [ 72.860907016645442, 24.37189769142531 ], [ 72.835688917609431, 24.376910304766731 ], [ 72.796208124005645, 24.377478746446965 ], [ 72.747012160282949, 24.38065684713575 ], [ 72.73367964080272, 24.384274197396273 ], [ 72.717556594261382, 24.390242825146224 ], [ 72.703914016418693, 24.399906318421809 ], [ 72.696162551060851, 24.407554430092826 ], [ 72.690581496039144, 24.416675320109896 ], [ 72.679109327633327, 24.444322211001229 ], [ 72.673528272611605, 24.453520616283406 ], [ 72.667637160126773, 24.460936183957692 ], [ 72.658335402057077, 24.466801458920195 ], [ 72.648826939311775, 24.469669501246464 ], [ 72.629913364809894, 24.471762397216814 ], [ 72.615650669342855, 24.474656277065488 ], [ 72.599527621902197, 24.480056464034586 ], [ 72.555706007626085, 24.506669827050867 ], [ 72.544543897582784, 24.510132148579764 ], [ 72.525113560042698, 24.5116049260265 ], [ 72.514881625986206, 24.509615382843599 ], [ 72.508060336615173, 24.506463121475857 ], [ 72.505579867916524, 24.503750107881153 ], [ 72.503616164054662, 24.500804552088365 ], [ 72.500928989781002, 24.496050320266015 ], [ 72.484805943239664, 24.443753770220322 ], [ 72.482635532903473, 24.440265611169018 ], [ 72.479534946580472, 24.436648260908491 ], [ 72.476434361156791, 24.433961087534154 ], [ 72.47157677564762, 24.431403103570339 ], [ 72.464962192750974, 24.42969778122761 ], [ 72.457004021818122, 24.430550441949318 ], [ 72.449149203672775, 24.434813748255856 ], [ 72.440777621589902, 24.446156725452504 ], [ 72.43209598204389, 24.464450182330037 ], [ 72.421967400774903, 24.481296698383908 ], [ 72.418763461664398, 24.488815618845699 ], [ 72.417419875426873, 24.49902171537985 ], [ 72.417729933789332, 24.500959580819991 ], [ 72.419693637651207, 24.509770413373868 ], [ 72.418556756089387, 24.517289333835656 ], [ 72.413595818692031, 24.522973740745496 ], [ 72.397266065676348, 24.525221666346788 ], [ 72.385690546281623, 24.524369004725763 ], [ 72.373081496313915, 24.522043564758686 ], [ 72.364399854969278, 24.522043564758686 ], [ 72.356028272886462, 24.524679063088278 ], [ 72.349206984414749, 24.532378852502003 ], [ 72.345279574892444, 24.539923611385511 ], [ 72.342385695043717, 24.548321030990785 ], [ 72.338458286420732, 24.552713528506494 ], [ 72.330706821962195, 24.555865789874296 ], [ 72.314893832883996, 24.557571113116349 ], [ 72.303111607014998, 24.557726141847915 ], [ 72.288952264335464, 24.56121430089922 ], [ 72.275206332805936, 24.568397325476148 ], [ 72.255362583216581, 24.584055284024139 ], [ 72.248748000319935, 24.59271108694707 ], [ 72.247197706708775, 24.599532376318102 ], [ 72.250711704181725, 24.603640652094377 ], [ 72.255775995265921, 24.606534531943051 ], [ 72.261667107750753, 24.608239854285834 ], [ 72.3085893092492, 24.611469630918684 ], [ 72.320061476755697, 24.613820909307485 ], [ 72.32843305883857, 24.6171540387279 ], [ 72.332153761886545, 24.621184801037707 ], [ 72.333393996235856, 24.627075914421876 ], [ 72.33246382024906, 24.635085761298846 ], [ 72.327502882851704, 24.6421654321889 ], [ 72.318511184043857, 24.645421047243524 ], [ 72.302491490290024, 24.643664048956673 ], [ 72.265904574736268, 24.635421658083029 ], [ 72.206269973180653, 24.630073147058052 ], [ 72.172783644849275, 24.634000556580414 ], [ 72.099403110864827, 24.656557318865161 ], [ 72.080696241937957, 24.668597927152568 ], [ 72.06881066328144, 24.690327867137334 ], [ 72.061059197923598, 24.701645005912262 ], [ 72.050930616654611, 24.708362942495789 ], [ 72.0344975117507, 24.706502590522117 ], [ 71.986748487952269, 24.695288805434011 ], [ 71.978790317918808, 24.691490587120878 ], [ 71.97341596937143, 24.687589016020233 ], [ 71.957396274718278, 24.669786485557829 ], [ 71.947887811073585, 24.662629299402617 ], [ 71.934761997168366, 24.658159288420386 ], [ 71.920499301701369, 24.656944892492781 ], [ 71.901482375311318, 24.661828315524296 ], [ 71.893317498803455, 24.667771103953267 ], [ 71.883085564746963, 24.681852932267017 ], [ 71.876677687425271, 24.685573635314988 ], [ 71.867375930254909, 24.686555488145238 ], [ 71.856833936936582, 24.684927680168293 ], [ 71.841434360807028, 24.678442288480817 ], [ 71.833579542661695, 24.6711817495381 ], [ 71.82965213403871, 24.663326931392753 ], [ 71.829342074776875, 24.657022406858566 ], [ 71.830478957238014, 24.643767401744181 ], [ 71.828721958051901, 24.638263861987632 ], [ 71.821487258430167, 24.635705878023824 ], [ 71.807844679688159, 24.636119290073161 ], [ 71.784796990988283, 24.643069769754046 ], [ 71.775805292180436, 24.650433661484268 ], [ 71.771464470608791, 24.661130683534221 ], [ 71.768880650021956, 24.67100088148549 ], [ 71.762782831062779, 24.676581936507141 ], [ 71.750897250607565, 24.678132229218981 ], [ 71.651885207336406, 24.658004258789497 ], [ 71.637002395144393, 24.657642524482917 ], [ 71.620052525403679, 24.662086697043431 ], [ 71.6096138848728, 24.667900296061813 ], [ 71.591010369632826, 24.681904609110397 ], [ 71.571890089555936, 24.686245428883403 ], [ 71.545845168219884, 24.688054104013638 ], [ 71.46905399044924, 24.686426296036696 ], [ 71.449623651110571, 24.681852932267017 ], [ 71.438978305904058, 24.676194362879521 ], [ 71.408695916683186, 24.655317084515836 ], [ 71.393503046128657, 24.648935044716492 ], [ 71.378413526562937, 24.646661282492168 ], [ 71.358259718611052, 24.650485338327648 ], [ 71.335935500323018, 24.660045477916462 ], [ 71.321982863218508, 24.662319241040105 ], [ 71.296041293770642, 24.658262641207894 ], [ 71.280021600016795, 24.653508409385545 ], [ 71.266999138899095, 24.647358914482304 ], [ 71.251496209982051, 24.63681692116398 ], [ 71.235063104178877, 24.635964260442215 ], [ 71.222350702322998, 24.63681692116398 ], [ 71.129746534574892, 24.660949815481555 ], [ 71.086751742598821, 24.687433987288667 ], [ 71.056632329418434, 24.692819747333424 ], [ 71.036934855459194, 24.720740255158599 ], [ 71.003190144709365, 24.808202617456793 ], [ 70.943038777417584, 24.894063009300393 ], [ 70.915236856895362, 24.946617940865274 ], [ 70.893326049757363, 25.001885885125482 ], [ 70.859891398269369, 25.13944854871152 ], [ 70.848574259494427, 25.163323060610757 ], [ 70.831417684178732, 25.183321838931697 ], [ 70.768372437038281, 25.233086243435363 ], [ 70.734886108706903, 25.267347717223341 ], [ 70.72310388193857, 25.287294820499532 ], [ 70.71855635569122, 25.310807597192813 ], [ 70.710494832870197, 25.335870667497254 ], [ 70.670393920742796, 25.37555816757537 ], [ 70.654477579776412, 25.396590475569944 ], [ 70.646622763429747, 25.431368713295448 ], [ 70.652823934277123, 25.545883687282291 ], [ 70.657474813311964, 25.633630270420603 ], [ 70.653857463051438, 25.67445465116122 ], [ 70.632308390219961, 25.701378073439336 ], [ 70.592259155835322, 25.708819479535343 ], [ 70.554432006831618, 25.698794251053805 ], [ 70.516656534671299, 25.683859762018354 ], [ 70.477227417011633, 25.676315003134839 ], [ 70.360128622437955, 25.673472799230289 ], [ 70.303697957294816, 25.684583232430207 ], [ 70.26457889799768, 25.697295634286085 ], [ 70.249230997812262, 25.70768259707415 ], [ 70.234451538407697, 25.730988668192477 ], [ 70.213987671194019, 25.786334127717787 ], [ 70.195590862428318, 25.806953024562397 ], [ 70.154249715052273, 25.83940582322014 ], [ 70.114975627023497, 25.881728821627796 ], [ 70.08324629697897, 25.929942933419621 ], [ 70.064642781738925, 25.980327454648311 ], [ 70.064281047432345, 25.99552032520284 ], [ 70.072911011034293, 26.04745513914332 ], [ 70.073892862965209, 26.083111878710209 ], [ 70.078285360480919, 26.099648336401565 ], [ 70.132028850451022, 26.180470276482076 ], [ 70.146911661743772, 26.217418925443035 ], [ 70.151614218521317, 26.254057516041534 ], [ 70.144017781895045, 26.294313456900504 ], [ 70.142467489183261, 26.313692118496469 ], [ 70.147945191417406, 26.333225810622643 ], [ 70.157143595800264, 26.353999736198823 ], [ 70.160502564541659, 26.371311340246102 ], [ 70.156988566169375, 26.410947164380097 ], [ 70.162931355497605, 26.493319397172392 ], [ 70.158073770887754, 26.530113017401785 ], [ 70.129600056797116, 26.562514140115461 ], [ 70.093684937509792, 26.58039418584297 ], [ 70.056064494081099, 26.589075826288301 ], [ 69.815562377701539, 26.580290833055464 ], [ 69.772257527362953, 26.595070292460029 ], [ 69.700220581414655, 26.652999573471497 ], [ 69.659396199774775, 26.677700908570039 ], [ 69.504160196935501, 26.735165101588162 ], [ 69.472844278940258, 26.766584371471531 ], [ 69.465092814481736, 26.807770487418047 ], [ 69.485970092845477, 26.926832988551546 ], [ 69.507570842520323, 27.050081278927841 ], [ 69.534442586156374, 27.12558054640504 ], [ 69.575577026158768, 27.18841908797048 ], [ 69.666114135458926, 27.270016174406912 ], [ 69.730606323423032, 27.310323792109266 ], [ 69.848015177258603, 27.410369365054116 ], [ 69.908063191762821, 27.497289124093804 ], [ 69.993536010878174, 27.571083069228216 ], [ 70.016893757940508, 27.600590312093225 ], [ 70.090687703974297, 27.793550110249377 ], [ 70.10195316590584, 27.811740214339402 ], [ 70.189027842161167, 27.891790496534149 ], [ 70.199001505315195, 27.900959574924393 ], [ 70.267731160264802, 27.94527211651495 ], [ 70.323851766146021, 28.000436707088337 ], [ 70.341938517448554, 28.01146962502315 ], [ 70.359508504813604, 28.016327210532317 ], [ 70.398265828904854, 28.021649882236254 ], [ 70.436919800208543, 28.035344136922383 ], [ 70.456246785860444, 28.039788310382214 ], [ 70.477227417011633, 28.037256164840127 ], [ 70.506786336720012, 28.028962097123035 ], [ 70.534898316504083, 28.015965474427098 ], [ 70.559806356278258, 27.998447163905489 ], [ 70.592879273459673, 27.964495748479969 ], [ 70.621197957919364, 27.94413523405381 ], [ 70.633186889363387, 27.931629536873622 ], [ 70.641610148289644, 27.911269022447406 ], [ 70.637631062823218, 27.874217021598263 ], [ 70.640731649146218, 27.854786682259537 ], [ 70.671737507879627, 27.791095479972391 ], [ 70.710391479183372, 27.741150207416119 ], [ 70.761757853242315, 27.709782613476811 ], [ 70.831572712910301, 27.701462707338059 ], [ 70.913789916971027, 27.717818299674768 ], [ 71.02758142144539, 27.768047790373195 ], [ 71.150674683090116, 27.822411397967635 ], [ 71.226328979298884, 27.845355733880005 ], [ 71.311440063208281, 27.861711324418074 ], [ 71.397791382366378, 27.868377584158161 ], [ 71.477114705679057, 27.862434793930554 ], [ 71.560727172820734, 27.86853261468837 ], [ 71.701390421830453, 27.906773173043458 ], [ 71.860863891655228, 27.950207215490586 ], [ 71.874403116710411, 27.959689840713558 ], [ 71.879984171732119, 27.974908550589127 ], [ 71.891559692925441, 28.097097474668708 ], [ 71.896934041472761, 28.115545959378487 ], [ 71.90830285619181, 28.135570577020466 ], [ 71.988194621184775, 28.228097230402845 ], [ 72.110977824466985, 28.317626648451032 ], [ 72.149941854133189, 28.353774313533727 ], [ 72.177640421867892, 28.397053325450592 ], [ 72.197794230719097, 28.444879863614794 ], [ 72.256498657187237, 28.645591125330149 ], [ 72.280269816298912, 28.687164816702925 ], [ 72.354580526270226, 28.767185771106416 ], [ 72.382175740318118, 28.784006450537216 ], [ 72.525629516389003, 28.849919739104671 ], [ 72.658541300940257, 28.911001282383261 ], [ 72.77253951009024, 28.963349507473762 ], [ 72.901523885119133, 29.022622376521436 ], [ 72.918163696497331, 29.032854310577928 ], [ 72.93035933441567, 29.047685445027238 ], [ 72.962915486760252, 29.116828512026185 ], [ 72.988650349733788, 29.154629822608218 ], [ 73.050868775473575, 29.22821706126836 ], [ 73.128900188492864, 29.36030202351952 ], [ 73.177992798528791, 29.443449402667788 ], [ 73.23287316916138, 29.536596170976498 ], [ 73.284756307157792, 29.683744813472341 ], [ 73.327441039872028, 29.805210266240739 ], [ 73.370332479060593, 29.927321675954538 ], [ 73.385215291252663, 29.942307840934109 ], [ 73.557814574982601, 30.012536113550762 ], [ 73.73971561678222, 30.048451232838087 ], [ 73.778266235298446, 30.067313131395899 ], [ 73.944354288919243, 30.188287659547818 ], [ 73.946831022733463, 30.204076838175521 ], [ 73.970400017846458, 30.196322537255291 ], [ 73.97711795443, 30.178054917900106 ], [ 73.975981072868166, 30.161156725002851 ], [ 73.971330193833339, 30.141855576873347 ], [ 73.969676548333993, 30.137437241835237 ], [ 73.89846642378636, 30.034911200191736 ], [ 73.886684197917333, 30.007135118091181 ], [ 73.884617141267981, 30.000003770357687 ], [ 73.884617141267981, 29.999538683263602 ], [ 73.887097609067368, 29.984242459022248 ], [ 73.915933059263224, 29.979901638349922 ], [ 74.290587192744709, 29.962460842194098 ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Uttar Pradesh", "admin": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.831456332943375, 29.659895331504337 ], [ 77.923026971017848, 29.700952257140944 ], [ 77.95372277228806, 29.723198961063183 ], [ 77.966538526931444, 29.724413356990791 ], [ 77.982764927159607, 29.718754788502672 ], [ 78.040022413703397, 29.688188178441631 ], [ 78.07609256442025, 29.664055284124053 ], [ 78.084360792816284, 29.660722153804318 ], [ 78.107201775941149, 29.65452098205764 ], [ 78.154950798840261, 29.674984850170681 ], [ 78.18905724479599, 29.706688340894171 ], [ 78.197842238028827, 29.748158678580118 ], [ 78.190504184720311, 29.792600409581208 ], [ 78.160738560336242, 29.877143052709691 ], [ 78.156397739663916, 29.899906521468772 ], [ 78.154950798840261, 29.925434678867298 ], [ 78.159808384349432, 29.938560491873194 ], [ 78.167663201595403, 29.946932073956013 ], [ 78.177275018027586, 29.952590644242825 ], [ 78.193604771043326, 29.956207994503295 ], [ 78.208694288810349, 29.95553620003556 ], [ 78.217685987618182, 29.953675848961257 ], [ 78.228331332824709, 29.947423001270462 ], [ 78.286518996254628, 29.892310085741823 ], [ 78.325379673133384, 29.843088284496719 ], [ 78.352664828818746, 29.787768663393074 ], [ 78.361656529425247, 29.775495510209616 ], [ 78.380570103027807, 29.761568712426136 ], [ 78.478651971211477, 29.721958726713861 ], [ 78.514825473816515, 29.689144191950891 ], [ 78.53611616422954, 29.647803046373486 ], [ 78.554202914632739, 29.620905463416356 ], [ 78.589032831000324, 29.580106920198197 ], [ 78.643086379332857, 29.537577216215531 ], [ 78.806383904993183, 29.453086249031166 ], [ 78.833048943953514, 29.443862006226588 ], [ 78.906429477938033, 29.430451972380574 ], [ 78.919968702993216, 29.422183743085263 ], [ 78.919038527006336, 29.412520249809681 ], [ 78.915111118383365, 29.400092067894597 ], [ 78.906946241875502, 29.388361517969649 ], [ 78.860024042175766, 29.35025014902515 ], [ 78.847518344995578, 29.345263373206073 ], [ 78.838216586925896, 29.346038520461313 ], [ 78.831395297554849, 29.350327664290258 ], [ 78.824987421132533, 29.352627264936299 ], [ 78.816305779787839, 29.349991767506019 ], [ 78.809484491316184, 29.342136949360672 ], [ 78.796772088560985, 29.320768744581862 ], [ 78.787780388853818, 29.318985907873351 ], [ 78.77661827970978, 29.321983141408847 ], [ 78.767316521640097, 29.327564195531174 ], [ 78.761115349893416, 29.330303045748956 ], [ 78.755947706921091, 29.328675239570654 ], [ 78.749229771236884, 29.323843492483142 ], [ 78.730936314359369, 29.320071113491046 ], [ 78.726182081637702, 29.316272895177967 ], [ 78.724941848187697, 29.310304267427959 ], [ 78.726595492787723, 29.30443899246551 ], [ 78.726285435324527, 29.297876085512936 ], [ 78.716053501268036, 29.292889308794535 ], [ 78.714089797406174, 29.290589708148492 ], [ 78.721531202602847, 29.284026801195917 ], [ 78.867672153846783, 29.215167955037082 ], [ 78.885655552361797, 29.197365424574677 ], [ 78.89826460232949, 29.177366645354361 ], [ 78.905085890801146, 29.158788966737397 ], [ 78.913767531246521, 29.105588080025822 ], [ 78.950354445001594, 29.127007962547385 ], [ 79.013399693041364, 29.142019965049307 ], [ 79.036654087316251, 29.153879706183478 ], [ 79.043165318324711, 29.15478404374857 ], [ 79.05587772018059, 29.151760972690731 ], [ 79.130395134827538, 29.115251573301457 ], [ 79.139180128959751, 29.106905828740985 ], [ 79.142797479220221, 29.097707424358131 ], [ 79.143210891269547, 29.087320462469325 ], [ 79.145277947918927, 29.077811997925313 ], [ 79.154889764351068, 29.065125434491158 ], [ 79.170599399742443, 29.05112112144257 ], [ 79.296379835660829, 28.971565253233837 ], [ 79.320047641985056, 28.964537258287802 ], [ 79.340614861986225, 28.962986965575954 ], [ 79.351983676705274, 28.965725815793743 ], [ 79.361285434774956, 28.970325018884516 ], [ 79.371207309569598, 28.969885769312778 ], [ 79.378958774927455, 28.963141995206904 ], [ 79.385780064298487, 28.954615383493145 ], [ 79.401282993215531, 28.940791938497163 ], [ 79.409964633660849, 28.93125763643075 ], [ 79.41668257024439, 28.921775011207782 ], [ 79.430531853662089, 28.876325588055401 ], [ 79.443657667567251, 28.849583034729267 ], [ 79.526236606833876, 28.878418484025808 ], [ 79.566544223636967, 28.879348660012614 ], [ 79.574812452932335, 28.871080430717246 ], [ 79.580393507953971, 28.85947907200153 ], [ 79.588248326099333, 28.849117946735806 ], [ 79.600237258442675, 28.849040432370025 ], [ 79.612329542674203, 28.853277900254842 ], [ 79.632793409887924, 28.863328966258788 ], [ 79.699352655400645, 28.850435696350292 ], [ 79.725604283211027, 28.858910631220617 ], [ 79.729221632572248, 28.866377874839024 ], [ 79.730255161346562, 28.873457545729128 ], [ 79.729945102984033, 28.879607042431012 ], [ 79.743277621564957, 28.885239773396787 ], [ 79.763638136890421, 28.884387111775762 ], [ 79.812627395038163, 28.876868191313967 ], [ 79.832057732578264, 28.865990302110724 ], [ 79.841049432285416, 28.855293280960151 ], [ 79.83794884596243, 28.844751288541087 ], [ 79.828647088792067, 28.824519965324097 ], [ 79.827923618380211, 28.814494736842612 ], [ 79.834124790126893, 28.805787257975563 ], [ 79.844460076970947, 28.804857082888013 ], [ 79.873192172580644, 28.815812486457041 ], [ 79.887041456897677, 28.818008735214953 ], [ 79.893552687906194, 28.814184679379419 ], [ 79.8951029797187, 28.805089626884744 ], [ 79.891175571994992, 28.79322988485125 ], [ 79.890142043220678, 28.782507026178273 ], [ 79.895723098242328, 28.775194810392172 ], [ 79.906575148124531, 28.776150823901382 ], [ 79.91877078604287, 28.780155747789529 ], [ 79.931483188798083, 28.782196966916437 ], [ 79.934067010284224, 28.776615911894787 ], [ 79.929932896086243, 28.768554389073749 ], [ 79.928899367311928, 28.757702338292226 ], [ 79.93479047979676, 28.74759959634428 ], [ 79.953600702410412, 28.736282457569352 ], [ 79.971997512075433, 28.73287181198452 ], [ 79.987190382630033, 28.733569443974655 ], [ 80.000626254897711, 28.737315986343667 ], [ 80.014268832740399, 28.743568834034416 ], [ 80.028014764269912, 28.752250475379121 ], [ 80.055506626429604, 28.77909638149281 ], [ 80.064705030812462, 28.79379832653154 ], [ 80.069665969109138, 28.805167141250525 ], [ 80.073053575861806, 28.820924647554417 ], [ 80.081860799436285, 28.819353129043627 ], [ 80.114210246205843, 28.802584127355594 ], [ 80.147593220850396, 28.763310038427502 ], [ 80.162062621892431, 28.753284810845336 ], [ 80.181182901969279, 28.747290345572985 ], [ 80.216426229486828, 28.741941834548008 ], [ 80.233272746440022, 28.732717590844111 ], [ 80.238957153349915, 28.726258037578354 ], [ 80.249395792981417, 28.710212505402804 ], [ 80.257043904652434, 28.702745259985758 ], [ 80.265208781160297, 28.699282938456797 ], [ 80.283398885250307, 28.695355529833815 ], [ 80.291046996921324, 28.689671122923979 ], [ 80.318332154405354, 28.640113423995267 ], [ 80.329700968225026, 28.627478537404553 ], [ 80.349751424288726, 28.620217998461833 ], [ 80.369078409940627, 28.622646789417779 ], [ 80.388302042804952, 28.627245993407822 ], [ 80.408352498868666, 28.62634165494341 ], [ 80.426542602958691, 28.616807352876997 ], [ 80.468813925422282, 28.571848857039122 ], [ 80.488450969436627, 28.562443746181934 ], [ 80.493411905934678, 28.575647074452881 ], [ 80.4849369710643, 28.639286601695282 ], [ 80.487624145337961, 28.656469015432712 ], [ 80.497546021031994, 28.670137431697068 ], [ 80.517596476196374, 28.680033468070057 ], [ 80.534443800740775, 28.679555368685268 ], [ 80.555837036350098, 28.678948262452302 ], [ 80.559040975460604, 28.673031312445115 ], [ 80.557387329061939, 28.664349671100403 ], [ 80.556870565124413, 28.655022075508381 ], [ 80.563588500808621, 28.647038066153804 ], [ 80.581365193748624, 28.638950704011727 ], [ 80.59852176906432, 28.633783061039416 ], [ 80.635625447656238, 28.62786610923353 ], [ 80.648337850411437, 28.619752910468428 ], [ 80.668181600000793, 28.586344097402154 ], [ 80.678620240531629, 28.574716898466072 ], [ 80.695776814948019, 28.567508036366739 ], [ 80.727092732943206, 28.559679057542432 ], [ 80.743525838746436, 28.549963887423466 ], [ 80.781663045213335, 28.514746399226901 ], [ 80.798406209379024, 28.50570302447499 ], [ 80.817009726417709, 28.502550761308548 ], [ 80.857989135889838, 28.502447409420363 ], [ 80.872251831356877, 28.496866353499392 ], [ 80.880365031021284, 28.481880189419194 ], [ 80.881863647789075, 28.466842347596234 ], [ 80.886669556454805, 28.452786357704205 ], [ 80.90527307169485, 28.440849101304927 ], [ 80.921344442292124, 28.436198222270143 ], [ 80.941188191881494, 28.432684225696441 ], [ 80.960515178432715, 28.43227081454642 ], [ 80.976018107349702, 28.436921692681942 ], [ 80.987800334118091, 28.430978902454335 ], [ 80.991314332490376, 28.420256042882038 ], [ 80.993174682665412, 28.407827860967011 ], [ 81.000409383186408, 28.397001649506471 ], [ 81.047066370116838, 28.38908780435866 ], [ 81.146343627956, 28.372248638463866 ], [ 81.169701375917711, 28.361319072417238 ], [ 81.190371948706428, 28.338116353187097 ], [ 81.210732463132601, 28.278636780363108 ], [ 81.224323364131891, 28.250783182997445 ], [ 81.282355997930921, 28.191587830114251 ], [ 81.295946899829502, 28.16745493669594 ], [ 81.280754028375654, 28.161977234461794 ], [ 81.276774942909213, 28.153786520431531 ], [ 81.283079468342734, 28.14608673101781 ], [ 81.299409220459083, 28.142521058500044 ], [ 81.296205281348634, 28.12831003807775 ], [ 81.3070573321301, 28.123814189573174 ], [ 81.323697144407646, 28.126242981428444 ], [ 81.338114869505574, 28.132728373115917 ], [ 81.347261597045005, 28.144433086417784 ], [ 81.351447388086441, 28.156809591489427 ], [ 81.357906942251503, 28.165982157450568 ], [ 81.373203166492871, 28.16784250942424 ], [ 81.396044148718417, 28.160633647324964 ], [ 81.417334839131485, 28.14701690700462 ], [ 81.435266560803072, 28.129782816423806 ], [ 81.448237345976651, 28.111411845180491 ], [ 81.452939900955613, 28.097045796925947 ], [ 81.454025105674063, 28.086607157294445 ], [ 81.458210896715428, 28.077279562601682 ], [ 81.473455444113412, 28.066401672499175 ], [ 81.561925496764189, 28.025990702908583 ], [ 81.5821826584029, 28.013278300153381 ], [ 81.595101765833803, 27.994881490488346 ], [ 81.595360148252198, 27.994778138600218 ], [ 81.595360148252198, 27.994726460857457 ], [ 81.615048869109998, 27.981238913544978 ], [ 81.665433390338634, 27.970800273014156 ], [ 81.688946167031915, 27.96320383728726 ], [ 81.710391886176552, 27.947520040317606 ], [ 81.750131063097996, 27.909667054690821 ], [ 81.800153849120804, 27.884087220448855 ], [ 81.827852416855521, 27.86563873304106 ], [ 81.855654337377743, 27.85093678800234 ], [ 81.883197876380834, 27.849050599405636 ], [ 81.906090535449806, 27.863106588398288 ], [ 81.946398153152174, 27.905352072440159 ], [ 81.975905396017168, 27.916953430256562 ], [ 82.027220093232685, 27.91240590400923 ], [ 82.050212498807724, 27.905586121901983 ], [ 82.051611369069391, 27.90517120348823 ], [ 82.071661825133091, 27.890030008877766 ], [ 82.090368693160571, 27.872330831202866 ], [ 82.107421915688789, 27.86357167549243 ], [ 82.151036824389891, 27.848275452150396 ], [ 82.270409382986585, 27.760477193067963 ], [ 82.347924032068349, 27.726009013704974 ], [ 82.401925904456888, 27.677174784288862 ], [ 82.440683228548082, 27.666426086294845 ], [ 82.5261560467641, 27.675211080426998 ], [ 82.652143188257455, 27.704149883410359 ], [ 82.673891433043124, 27.696458430711964 ], [ 82.679686727260602, 27.694408874869676 ], [ 82.697050008151322, 27.669397481408616 ], [ 82.709245646069661, 27.630924377258161 ], [ 82.718857463401193, 27.556122742670418 ], [ 82.729709513283339, 27.518166402457492 ], [ 82.752137085258241, 27.494963684126724 ], [ 82.876263875677267, 27.48754811645238 ], [ 82.901275269138338, 27.480365091875449 ], [ 82.947163940963065, 27.457317403175573 ], [ 83.010467571421231, 27.44339060449277 ], [ 83.132785685810674, 27.44421742859145 ], [ 83.169630981984184, 27.431194967473736 ], [ 83.219240356856957, 27.393781230519373 ], [ 83.231591024406185, 27.381223856495744 ], [ 83.243114868756138, 27.362155253262294 ], [ 83.24941939329031, 27.348099263370266 ], [ 83.259496297715913, 27.338125713530811 ], [ 83.282440634527617, 27.330942688054559 ], [ 83.304868204703823, 27.331924540884806 ], [ 83.324350219986613, 27.341691386048577 ], [ 83.341145060096409, 27.356935933446543 ], [ 83.362745808871892, 27.385616354011511 ], [ 83.369567098242939, 27.398173726236443 ], [ 83.37096236222321, 27.410214335423227 ], [ 83.355821168512065, 27.428662821931646 ], [ 83.353857462851565, 27.440290019069089 ], [ 83.355924520400251, 27.452485656987442 ], [ 83.360988811484432, 27.462200826207145 ], [ 83.387033731921164, 27.470469056401836 ], [ 83.480981485906781, 27.46974558509066 ], [ 83.590432169708805, 27.456619771185494 ], [ 83.663399293442566, 27.432280172192172 ], [ 83.801995484004323, 27.36592763315371 ], [ 83.847987509515903, 27.351044820062377 ], [ 83.853340112456166, 27.346194023535354 ], [ 83.85331098791174, 27.34608307507386 ], [ 83.851140577575549, 27.337814845778489 ], [ 83.848866815351172, 27.332698878750243 ], [ 83.848039992151854, 27.329004015023251 ], [ 83.849176873713674, 27.32665273753377 ], [ 83.883283318770097, 27.330063381319967 ], [ 83.890104608141115, 27.32812551498051 ], [ 83.892791783314095, 27.32396556236079 ], [ 83.892171664790425, 27.313733629203618 ], [ 83.884110141969401, 27.28655182540637 ], [ 83.885763788368067, 27.280143948084735 ], [ 83.890724724866104, 27.273090114716972 ], [ 83.904263950820607, 27.26172129999798 ], [ 83.912738884791665, 27.256786200123024 ], [ 83.924107701309282, 27.24833710457369 ], [ 83.929585401744859, 27.242368475924415 ], [ 83.942401158186826, 27.222498887913325 ], [ 83.942401158186826, 27.206039943688431 ], [ 83.938990512602047, 27.189529324418736 ], [ 83.93826704308951, 27.16438873974851 ], [ 83.941367629412511, 27.154027615382113 ], [ 83.948188917884224, 27.144054062844699 ], [ 83.971960076995899, 27.128034369090862 ], [ 83.979711542353726, 27.119843655060599 ], [ 83.992217237735289, 27.091189072917352 ], [ 83.998315056694452, 27.082068182900283 ], [ 84.015781691271997, 27.069562485720091 ], [ 84.023429802943014, 27.05995067018727 ], [ 84.027977329190364, 27.044344387583401 ], [ 84.028907505177173, 27.030572618531487 ], [ 84.027047154102803, 27.00230561001586 ], [ 84.027150506890308, 26.999618434842883 ], [ 84.059706659234891, 26.938950304512893 ], [ 84.070558710016414, 26.923602403428156 ], [ 84.086578403770247, 26.915179145401222 ], [ 84.098567336113632, 26.911225898356513 ], [ 84.110659621244494, 26.905283108128906 ], [ 84.122441848012812, 26.893578395726362 ], [ 84.149003534185724, 26.876344306044864 ], [ 84.158718703405356, 26.876525173198154 ], [ 84.164919875152052, 26.880504259563899 ], [ 84.17194787009808, 26.886162828052072 ], [ 84.17876915856975, 26.890374457515172 ], [ 84.187760858276917, 26.893965969353982 ], [ 84.19768273307163, 26.895774644484213 ], [ 84.207914667128122, 26.895929674115163 ], [ 84.216803013148464, 26.894586086978332 ], [ 84.226104771218147, 26.891511339076992 ], [ 84.233959589363494, 26.88492259370269 ], [ 84.240780877835206, 26.874199734130396 ], [ 84.246361931957537, 26.853451646076557 ], [ 84.247602167206182, 26.836320909182572 ], [ 84.247188755156884, 26.821618964143845 ], [ 84.240160760210856, 26.772216294846082 ], [ 84.241917759397026, 26.763482978456686 ], [ 84.246361931957537, 26.757049261813954 ], [ 84.25669721880152, 26.754181220387007 ], [ 84.274680617316605, 26.755886541830417 ], [ 84.283362257761937, 26.755576484367218 ], [ 84.2936975437066, 26.752140001260038 ], [ 84.306306593674293, 26.744362698379796 ], [ 84.381444125945592, 26.677441718560424 ], [ 84.388368768104073, 26.669354356418403 ], [ 84.392709588776469, 26.661732083169049 ], [ 84.39394982312578, 26.654419867382948 ], [ 84.393639763863959, 26.649200548466521 ], [ 84.382994418657447, 26.641655789583005 ], [ 84.229515415004329, 26.64059642238697 ], [ 84.191791619687464, 26.64609996214352 ], [ 84.164919875152052, 26.653748073814533 ], [ 84.154584589207374, 26.653980617811264 ], [ 84.137841424142366, 26.650440781916526 ], [ 84.106422154258922, 26.650983385175088 ], [ 84.099187452838621, 26.649588121194817 ], [ 84.092366164366965, 26.644988919003364 ], [ 84.086164991720963, 26.637573351329074 ], [ 84.080377232023551, 26.624421699002191 ], [ 84.071385533215718, 26.591684679504333 ], [ 84.066527947706547, 26.58178864223202 ], [ 84.060223423172417, 26.571815089694606 ], [ 84.054022251425735, 26.564761257226216 ], [ 84.045443963767852, 26.55967112951901 ], [ 84.034798618561325, 26.555924588049262 ], [ 83.99438764807141, 26.547759711541453 ], [ 83.990563592235944, 26.545951036411161 ], [ 83.987463006812249, 26.543703110809865 ], [ 83.983535598189277, 26.538923041465175 ], [ 83.971443313058359, 26.520913805427764 ], [ 83.967722609111078, 26.517709866317254 ], [ 83.963485142125563, 26.515927028709367 ], [ 83.95945437981571, 26.517115587114624 ], [ 83.956250440705205, 26.520758774897494 ], [ 83.95408003126839, 26.527476712380341 ], [ 83.95252973765723, 26.534969794420469 ], [ 83.950669386582874, 26.541377671742104 ], [ 83.947878858622389, 26.546183580407892 ], [ 83.944158155574357, 26.549671739459193 ], [ 83.939197219076377, 26.551247869693434 ], [ 83.932789340855365, 26.550317695505207 ], [ 83.925864698696813, 26.546364448460501 ], [ 83.922143995648838, 26.540034085504594 ], [ 83.920076938999486, 26.532670192875052 ], [ 83.919973586211967, 26.50117340682726 ], [ 83.919663526950146, 26.500165717373928 ], [ 83.918423292600821, 26.484559434770055 ], [ 83.920076938999486, 26.473991603929331 ], [ 83.926278110746168, 26.464638169915581 ], [ 83.941470982200016, 26.456964219822844 ], [ 83.955113560042705, 26.453915310343284 ], [ 83.969066197147228, 26.453140163987364 ], [ 83.980745070228721, 26.454432074280753 ], [ 83.990666945023435, 26.45730011570776 ], [ 83.997798292756926, 26.460994981233394 ], [ 84.002139113429266, 26.464173081922176 ], [ 84.006376581314143, 26.468668932225395 ], [ 84.010717401087149, 26.471924547280018 ], [ 84.015988396846964, 26.473449002469458 ], [ 84.026116978115994, 26.469159857741197 ], [ 84.040069615220531, 26.459677232518224 ], [ 84.067354770905894, 26.436577866974964 ], [ 84.086164991720963, 26.426061712977621 ], [ 84.103528272611626, 26.418620306881614 ], [ 84.17763227700793, 26.40428009704879 ], [ 84.184143508016447, 26.40081777641921 ], [ 84.186210564665757, 26.394616603773212 ], [ 84.185900507202618, 26.383041083479206 ], [ 84.179079216932251, 26.368158271287193 ], [ 84.162956171290247, 26.345937404887305 ], [ 84.161715936041546, 26.337927558010385 ], [ 84.163266228753386, 26.328496608731477 ], [ 84.171327753373049, 26.312786974239422 ], [ 84.187244094339434, 26.292788194119847 ], [ 84.186830682290108, 26.287878933565928 ], [ 84.185590447940768, 26.284855862508035 ], [ 84.166986931801404, 26.274520574764718 ], [ 84.146006300650228, 26.276716824421889 ], [ 84.137531365779836, 26.278964749123865 ], [ 84.127402785410169, 26.280515041835706 ], [ 84.120581496039151, 26.280282497838975 ], [ 84.113760206668161, 26.278163764346228 ], [ 84.107972446970777, 26.274546414085702 ], [ 84.09608686741494, 26.26508962728445 ], [ 84.089885694768938, 26.261704820121331 ], [ 84.080377232023551, 26.259250189844344 ], [ 84.023119744580512, 26.254909369172022 ], [ 84.007720167551639, 26.250930283705593 ], [ 84.001518995804972, 26.247984727013542 ], [ 83.997694939969421, 26.245452582370771 ], [ 83.992734002572135, 26.241137600120105 ], [ 83.988496534687243, 26.235013942739265 ], [ 83.985085890901118, 26.227443346333356 ], [ 83.984465773276767, 26.217624824326144 ], [ 83.988083124436599, 26.208555610253192 ], [ 83.99800499923127, 26.199667263333531 ], [ 84.022292922280471, 26.183880113576372 ], [ 84.038312616034361, 26.161969306438319 ], [ 84.064874302207244, 26.103549099011669 ], [ 84.073659296339414, 26.100241808013031 ], [ 84.087715285332109, 26.091741033821616 ], [ 84.096190220202431, 26.091120917096639 ], [ 84.107972446970777, 26.086831773267697 ], [ 84.129676547634503, 26.073473416265124 ], [ 84.140942009566032, 26.070657049882918 ], [ 84.150347121322554, 26.066006170848077 ], [ 84.160475701692206, 26.055024928857328 ], [ 84.168640578200069, 26.042441718210675 ], [ 84.17587527872108, 26.022752997352931 ], [ 84.185177035891442, 26.020246690232561 ], [ 84.196442498722291, 26.019704087873315 ], [ 84.206054315154432, 26.015414944044434 ], [ 84.210705194189288, 26.006991685118173 ], [ 84.219696892997192, 25.974435532773608 ], [ 84.225588007280678, 25.963583481992082 ], [ 84.230445590991152, 25.956762193520369 ], [ 84.243571404896372, 25.943713893980991 ], [ 84.261451450623881, 25.931311550487631 ], [ 84.27995161307642, 25.927074083502127 ], [ 84.298348422741455, 25.928624376213968 ], [ 84.33297163263471, 25.938572089430345 ], [ 84.344960564978038, 25.940458278926421 ], [ 84.374312779111435, 25.940303250194795 ], [ 84.383924594644256, 25.935445664685624 ], [ 84.396533644611935, 25.923689277238331 ], [ 84.407489048180963, 25.909142360931178 ], [ 84.412139927215819, 25.895939031760854 ], [ 84.41968468609933, 25.889556992860882 ], [ 84.45658165911621, 25.869971624790647 ], [ 84.470120884171394, 25.865811672170928 ], [ 84.502470330940966, 25.867672024144547 ], [ 84.519523552569851, 25.866871039366963 ], [ 84.531615838600004, 25.862090969122896 ], [ 84.605513137421312, 25.799795029916645 ], [ 84.610577426706854, 25.791578477464721 ], [ 84.612437778680473, 25.786850084064096 ], [ 84.610474073919349, 25.773879298890499 ], [ 84.59931196477531, 25.761192735456341 ], [ 84.600655551912141, 25.747007555254463 ], [ 84.592180617041805, 25.738351752331475 ], [ 84.585669386932622, 25.735044461332784 ], [ 84.542157831019026, 25.705382187937627 ], [ 84.535853305585505, 25.703134264134967 ], [ 84.524174431604678, 25.700214544965256 ], [ 84.498749627892934, 25.699051824981719 ], [ 84.486657341862767, 25.700731309802105 ], [ 84.479732700603606, 25.703444322497486 ], [ 84.464023065212217, 25.711919257367803 ], [ 84.438081495764351, 25.718688869895399 ], [ 84.419167922161805, 25.730703639761142 ], [ 84.387645297692288, 25.759384060326106 ], [ 84.37276248639958, 25.765068468135265 ], [ 84.355915969446386, 25.760546780309646 ], [ 84.33968956921818, 25.752666123742578 ], [ 84.326150344162997, 25.748506171122862 ], [ 84.314678175757166, 25.742149969745292 ], [ 84.312714470995999, 25.719722397770393 ], [ 84.324806757026153, 25.692075506879117 ], [ 84.326460401626179, 25.686210231916668 ], [ 84.327597284087318, 25.680164088901556 ], [ 84.328217400812349, 25.674066269942379 ], [ 84.328010695237353, 25.668278510245042 ], [ 84.326460401626179, 25.663317572847685 ], [ 84.324186639401802, 25.658899237809571 ], [ 84.318295526017636, 25.654351712461555 ], [ 84.309407179997308, 25.649700833426714 ], [ 84.289976840658639, 25.643732204777386 ], [ 84.276024203554101, 25.641484280075467 ], [ 84.258970981925216, 25.641716824072141 ], [ 84.250496047054853, 25.643422146414927 ], [ 84.243881464158207, 25.645721747060968 ], [ 84.238920525861516, 25.647969671762947 ], [ 84.229928827053683, 25.653499049941153 ], [ 84.226104771218147, 25.656909695525989 ], [ 84.222384068170172, 25.660837104149035 ], [ 84.219386834634662, 25.665643011915442 ], [ 84.216803013148464, 25.670965685418018 ], [ 84.214735955599835, 25.676856797902865 ], [ 84.21339236936231, 25.683109646492987 ], [ 84.212875603626159, 25.689129950187006 ], [ 84.213185662887994, 25.694581813999484 ], [ 84.214115838874804, 25.69928436897845 ], [ 84.215252720436609, 25.708637803891516 ], [ 84.215046013962336, 25.72147939695656 ], [ 84.212875603626159, 25.728042303909199 ], [ 84.179802688243441, 25.745948188058428 ], [ 84.143422479164016, 25.736207180417008 ], [ 84.058156365623717, 25.673730374057463 ], [ 84.003379347778633, 25.608230495740763 ], [ 83.981881951790612, 25.589316921238883 ], [ 83.918113234238305, 25.549267685954927 ], [ 83.908398065018659, 25.538131415232606 ], [ 83.904263950820607, 25.529475613208938 ], [ 83.886900669030609, 25.51702159287219 ], [ 83.854861280623524, 25.501983751049231 ], [ 83.817654250143477, 25.490227362702623 ], [ 83.811349724709984, 25.486041572560506 ], [ 83.805872023375102, 25.476042182500688 ], [ 83.801324497127766, 25.464130764523127 ], [ 83.774866163742431, 25.444958808502172 ], [ 83.67006635897522, 25.388476467415042 ], [ 83.531986932350989, 25.315741889476605 ], [ 83.515553827447121, 25.306801865713503 ], [ 83.483617791827584, 25.284193427484688 ], [ 83.469975213984895, 25.277010402907759 ], [ 83.416128371227302, 25.25437612625722 ], [ 83.384088982820273, 25.235927638849425 ], [ 83.371996697689369, 25.226832587254073 ], [ 83.357320591072366, 25.212828274205489 ], [ 83.34595177635336, 25.19897898988847 ], [ 83.341404250105981, 25.191615099057564 ], [ 83.337683547057992, 25.183295192918816 ], [ 83.334272902372476, 25.172624010189903 ], [ 83.329828728912659, 25.145778103176891 ], [ 83.325487909139653, 25.089683335717318 ], [ 83.323007440440946, 25.079012152988462 ], [ 83.323317498803448, 25.068005073475312 ], [ 83.326521437913968, 25.058419094565515 ], [ 83.337580194270487, 25.038549506554485 ], [ 83.359904412558507, 25.008964749323688 ], [ 83.363521762819047, 25.000774034394162 ], [ 83.364245233230903, 24.99839691848296 ], [ 83.366622349142048, 24.968657130721958 ], [ 83.365692173155239, 24.931295071510302 ], [ 83.363315057244037, 24.91493948007291 ], [ 83.359284295833547, 24.903363958879588 ], [ 83.355563591886181, 24.89716278713291 ], [ 83.35277306482503, 24.888016058694113 ], [ 83.354840122373716, 24.87504527441984 ], [ 83.360214470921036, 24.863263048550827 ], [ 83.381918573383402, 24.843626004536471 ], [ 83.39173709539061, 24.840757962210144 ], [ 83.39824832639907, 24.837140611050351 ], [ 83.404139438883959, 24.83171458655891 ], [ 83.423983189372663, 24.802362372425527 ], [ 83.43256147703049, 24.792492174474258 ], [ 83.444447055687007, 24.783422960401303 ], [ 83.457779576066557, 24.775904039040135 ], [ 83.471835565059209, 24.770348823339528 ], [ 83.508835890863608, 24.762080593144837 ], [ 83.517827589671455, 24.755414334304071 ], [ 83.523615350268173, 24.746345120231066 ], [ 83.529816522014841, 24.726320501689766 ], [ 83.53188357866415, 24.713814806308218 ], [ 83.53095340357666, 24.703582872251726 ], [ 83.512246534649805, 24.675419216523601 ], [ 83.510902948412294, 24.667435208068351 ], [ 83.512453241124135, 24.660407213122362 ], [ 83.523305291905643, 24.638367213875817 ], [ 83.525372348554953, 24.628910427074509 ], [ 83.522375115918791, 24.615939642800239 ], [ 83.520204705582657, 24.592633572581285 ], [ 83.525165642980014, 24.558501288203839 ], [ 83.523098586330647, 24.529665838907302 ], [ 83.437832472790348, 24.520932522517903 ], [ 83.421192661412121, 24.512095852441629 ], [ 83.406929965945139, 24.502794094371943 ], [ 83.401658970185267, 24.498298244967991 ], [ 83.398351678287256, 24.493311469148974 ], [ 83.395871209588591, 24.487704575705603 ], [ 83.394527621552456, 24.481451728014797 ], [ 83.394217564089246, 24.474423733068814 ], [ 83.395251091964241, 24.466904811707646 ], [ 83.397938267137292, 24.457215480909721 ], [ 83.408583612343804, 24.432875881017075 ], [ 83.41519819524045, 24.422333889497388 ], [ 83.421709426248967, 24.413652249051999 ], [ 83.436075473604191, 24.398045966448187 ], [ 83.448684522672508, 24.380424303139076 ], [ 83.452405226619845, 24.37127757380096 ], [ 83.453955520231005, 24.361588243002977 ], [ 83.451578404319875, 24.353681748913566 ], [ 83.446824171598209, 24.345956121977444 ], [ 83.420469191000308, 24.313916734469725 ], [ 83.416231724014821, 24.305364285233559 ], [ 83.415508253602951, 24.296785997575679 ], [ 83.415818312864801, 24.288931179430385 ], [ 83.415301548027941, 24.276735541512032 ], [ 83.412097608917435, 24.268079739488368 ], [ 83.407653436356938, 24.260715846858822 ], [ 83.380574986246558, 24.2321646184024 ], [ 83.366725701929553, 24.210667223313688 ], [ 83.360214470921036, 24.198342393286786 ], [ 83.337063430332975, 24.140232245121972 ], [ 83.326211378652133, 24.124470933786533 ], [ 83.314945916720646, 24.09356842694131 ], [ 83.309778272848959, 24.084318345715072 ], [ 83.301923455602932, 24.077574570709825 ], [ 83.269160597683396, 24.059151923522446 ], [ 83.259962193300552, 24.047783107904078 ], [ 83.255001255003862, 24.034450588423901 ], [ 83.253037551142015, 24.005615139127368 ], [ 83.25179731589337, 23.999956569739876 ], [ 83.248696729570369, 23.993910426724817 ], [ 83.227716099318485, 23.96130259933545 ], [ 83.221308221097473, 23.954222927546024 ], [ 83.215003696563301, 23.948977769308605 ], [ 83.206322056117969, 23.944016831911249 ], [ 83.183584425780538, 23.936446235505336 ], [ 83.15619591730767, 23.930865180483689 ], [ 83.145963983251178, 23.927764594160688 ], [ 83.116405064442105, 23.91510386824887 ], [ 83.104002720049408, 23.912209988400203 ], [ 83.08880984859556, 23.91104726841666 ], [ 83.041474236846483, 23.916964220222546 ], [ 83.005197382353259, 23.917791043421911 ], [ 82.97543175706987, 23.913760281112044 ], [ 82.964372999814017, 23.91391530984367 ], [ 82.936467727403667, 23.920168158433736 ], [ 82.912283156242594, 23.93071015085274 ], [ 82.894093052152556, 23.942156479937577 ], [ 82.839419387094992, 23.989647122216915 ], [ 82.800868767679432, 23.998716336289871 ], [ 82.769656203371014, 24.041297716216597 ], [ 82.749295688944855, 24.058299261901421 ], [ 82.741234165224483, 24.061916612161887 ], [ 82.734516228640956, 24.065869859206597 ], [ 82.732655877566671, 24.072639471734188 ], [ 82.734826287902806, 24.082277127487423 ], [ 82.738650343738342, 24.09390432372555 ], [ 82.738753697425167, 24.107495226523433 ], [ 82.736066522252131, 24.115039985407002 ], [ 82.73048546723048, 24.121034451578673 ], [ 82.717979770949611, 24.128811754458862 ], [ 82.700306430797113, 24.142118435517371 ], [ 82.687077264104389, 24.15581269020344 ], [ 82.679429152433372, 24.166768092873149 ], [ 82.673848098311041, 24.180333157249372 ], [ 82.674984978973541, 24.186896064201957 ], [ 82.680669386782682, 24.190978502455884 ], [ 82.688524204028724, 24.19263214795523 ], [ 82.70898807214175, 24.194234117510511 ], [ 82.721700473997629, 24.201184597191393 ], [ 82.73286258314161, 24.214129543943265 ], [ 82.741130813336298, 24.277794907808747 ], [ 82.757563918240166, 24.304511624511854 ], [ 82.762214797274993, 24.317353217576901 ], [ 82.764798618761219, 24.330039781011063 ], [ 82.766969029097353, 24.386031196582444 ], [ 82.763455030724998, 24.399053656800785 ], [ 82.756943800615858, 24.406960150890253 ], [ 82.739683871613337, 24.413910631470451 ], [ 82.734102818390312, 24.419698391167795 ], [ 82.732552524779152, 24.427294826894745 ], [ 82.73286258314161, 24.440368963956526 ], [ 82.742784457936324, 24.486180121415423 ], [ 82.743301222773184, 24.506695665472588 ], [ 82.735343051840331, 24.527237047052033 ], [ 82.733896111915996, 24.54235240324078 ], [ 82.734412875853465, 24.551628322888739 ], [ 82.739683871613337, 24.55989655218411 ], [ 82.744954869171849, 24.565245063209083 ], [ 82.750225864931664, 24.567958075005144 ], [ 82.756013624629006, 24.568345649532084 ], [ 82.782988722851243, 24.559586492922271 ], [ 82.796941359056447, 24.560904242536758 ], [ 82.808413526562944, 24.566407782293307 ], [ 82.817611931845121, 24.580928860178741 ], [ 82.818025343894462, 24.589403795049062 ], [ 82.814821404783956, 24.596302598785876 ], [ 82.801488885303783, 24.607309679198291 ], [ 82.794770948720256, 24.6167664659996 ], [ 82.789189894597911, 24.628135280718588 ], [ 82.783402134001207, 24.651570543046088 ], [ 82.778957961440696, 24.661492417840801 ], [ 82.772136672069706, 24.668313707211773 ], [ 82.7646952659737, 24.66983816240127 ], [ 82.731725701579805, 24.671491807900619 ], [ 82.723560825971319, 24.673558865449245 ], [ 82.716532831025276, 24.680431829865022 ], [ 82.715292595776631, 24.687666531285338 ], [ 82.717463007012086, 24.710869248716843 ], [ 82.714569126264095, 24.717768053352977 ], [ 82.70816124894246, 24.721514593923352 ], [ 82.700719841947077, 24.721514593923352 ], [ 82.692244907976061, 24.719809272479942 ], [ 82.623928664176432, 24.691878159849175 ], [ 82.611526319783806, 24.688906764735403 ], [ 82.595093214879896, 24.687744046550502 ], [ 82.549101190267649, 24.691878159849175 ], [ 82.453396437995181, 24.722005520338481 ], [ 82.441407504752505, 24.721437079557568 ], [ 82.427144810184785, 24.718569037231241 ], [ 82.424664340586773, 24.710636704720113 ], [ 82.423424107136768, 24.701955064274777 ], [ 82.423320754349263, 24.692730821470199 ], [ 82.424044223861799, 24.683868312972262 ], [ 82.427764926909774, 24.667538559956533 ], [ 82.427454869446635, 24.65877940514542 ], [ 82.423630812711778, 24.647513943213877 ], [ 82.40967817560724, 24.635628364557355 ], [ 82.395208774565262, 24.632166043028455 ], [ 82.357071568098348, 24.636713569275795 ], [ 82.307048781176249, 24.632011013397509 ], [ 82.302707961403243, 24.63813467077841 ], [ 82.30880578036242, 24.646661282492168 ], [ 82.32616906125314, 24.679915065927556 ], [ 82.323378534191974, 24.693764350244571 ], [ 82.319037714418911, 24.702032579539882 ], [ 82.310046013812411, 24.706502590522117 ], [ 82.301984490991444, 24.709318956004999 ], [ 82.294956496045387, 24.709473984736569 ], [ 82.289272089135565, 24.707691148028058 ], [ 82.285137974038193, 24.705055649698462 ], [ 82.280797154265187, 24.704590561705054 ], [ 82.276146275230346, 24.705443224225398 ], [ 82.268084750610726, 24.710869248716843 ], [ 82.265190870761998, 24.7154426133859 ], [ 82.263743930837649, 24.722599799541111 ], [ 82.267154576422499, 24.766059679510587 ], [ 82.26643110511138, 24.785128281844713 ], [ 82.263020461325183, 24.791174424859769 ], [ 82.257852818352802, 24.791717027219018 ], [ 82.253201939317975, 24.786988633818392 ], [ 82.249791293733182, 24.782337754783551 ], [ 82.242349887637133, 24.768824368150032 ], [ 82.238319126226628, 24.763915106696796 ], [ 82.233254836041766, 24.758747462825106 ], [ 82.226020134621464, 24.756266995025779 ], [ 82.218785434999774, 24.757274685378427 ], [ 82.20803673700577, 24.764302680324416 ], [ 82.204936150682769, 24.770658880802664 ], [ 82.205142857157085, 24.778151963742111 ], [ 82.20917361856759, 24.785515855472333 ], [ 82.212894321615607, 24.794585069545288 ], [ 82.216408319088572, 24.806263943526172 ], [ 82.215374790314257, 24.827296251520746 ], [ 82.212377556778776, 24.836908067053621 ], [ 82.208656853730744, 24.843109238800306 ], [ 82.204832797895264, 24.845331325979881 ], [ 82.201422154109068, 24.845925605182511 ], [ 82.195531039825582, 24.843936061999663 ], [ 82.155016717447467, 24.816315009530054 ], [ 82.146645135364665, 24.812387600007693 ], [ 82.137446730082488, 24.809183660897183 ], [ 82.129695265623965, 24.807633368185343 ], [ 82.122150506740454, 24.808098456178808 ], [ 82.118223098117411, 24.808796088168886 ], [ 82.105510695362256, 24.813369451938623 ], [ 82.056624790002019, 24.849284573024583 ], [ 82.033163690152122, 24.859490667760092 ], [ 82.02386193208244, 24.860317490959396 ], [ 81.999780714608264, 24.859929918231096 ], [ 81.980247023381338, 24.861893622092957 ], [ 81.968981560550532, 24.864994208415958 ], [ 81.956062453119657, 24.871014513009349 ], [ 81.881131626423368, 24.921528225447215 ], [ 81.873173456389836, 24.929977321895869 ], [ 81.868729282929991, 24.936953639998471 ], [ 81.866558871694551, 24.942870591804361 ], [ 81.866868930956329, 24.947702337992489 ], [ 81.869349399655022, 24.954136053735848 ], [ 81.873483513853031, 24.961861681571342 ], [ 81.875240513039202, 24.970905056323257 ], [ 81.874000278689877, 24.980206814392936 ], [ 81.861701287984005, 24.997699286492825 ], [ 81.859737583222838, 25.00005056398231 ], [ 81.859737583222838, 25.000980739969176 ], [ 81.853949822626177, 25.013615628358533 ], [ 81.842064243969659, 25.027077338148608 ], [ 81.831005486713806, 25.032865098745269 ], [ 81.817156203296094, 25.035758979493259 ], [ 81.808061150801436, 25.035500597074865 ], [ 81.799999627980398, 25.034415392356433 ], [ 81.792971633034412, 25.032012437124244 ], [ 81.777468703218034, 25.024002590247328 ], [ 81.76578982923715, 25.02066946082692 ], [ 81.752767369018827, 25.02048859277431 ], [ 81.734473911241963, 25.024700222237467 ], [ 81.726722446783441, 25.029842026788053 ], [ 81.721554802911768, 25.038058580139356 ], [ 81.719591099049893, 25.049117337395153 ], [ 81.714630160753288, 25.060511990535925 ], [ 81.70760216670655, 25.065292059880615 ], [ 81.66512413866802, 25.064465237580627 ], [ 81.624816521864929, 25.074309597110183 ], [ 81.599495070041399, 25.076376655558189 ], [ 81.58523237457436, 25.079632269713439 ], [ 81.577894322165193, 25.084541531166732 ], [ 81.573450147806042, 25.091543686791674 ], [ 81.573450147806042, 25.098158271487019 ], [ 81.575103794204708, 25.103377590403447 ], [ 81.578514438890153, 25.108390203744868 ], [ 81.580581496438853, 25.111852525273825 ], [ 81.579961378814545, 25.11650340430861 ], [ 81.576344028554033, 25.123712267307265 ], [ 81.567352328846852, 25.13448680282368 ], [ 81.563321568335624, 25.143039252059786 ], [ 81.558463982826524, 25.170996202212955 ], [ 81.536966586838474, 25.19975413714371 ], [ 81.44446577277715, 25.174691066839266 ], [ 81.425345492700259, 25.164820867988617 ], [ 81.42834272713506, 25.160790107477446 ], [ 81.433407017319922, 25.1564234483834 ], [ 81.462035760142143, 25.140093696267055 ], [ 81.467926874425686, 25.133789170833545 ], [ 81.469167107875691, 25.126942043940172 ], [ 81.46554975761515, 25.117381904351355 ], [ 81.456868117169819, 25.111413275702084 ], [ 81.445706008025795, 25.107382514291597 ], [ 81.418420852340418, 25.104126899236967 ], [ 81.39144575411818, 25.105160427112018 ], [ 81.379146763412365, 25.107770087019894 ], [ 81.369638298868367, 25.111619981277094 ], [ 81.365607538357139, 25.115883287583639 ], [ 81.364884067945326, 25.121231797709292 ], [ 81.36622765508217, 25.128492337551329 ], [ 81.370568474855176, 25.14112722414205 ], [ 81.371395298054523, 25.144512031305162 ], [ 81.370775181329492, 25.148697822346598 ], [ 81.367674595006505, 25.153271186116335 ], [ 81.360543247273, 25.156966050742646 ], [ 81.337908969723102, 25.163348090541938 ], [ 81.325299920654786, 25.168102322364284 ], [ 81.309176874113376, 25.171926378199764 ], [ 81.296774529720693, 25.169962673438583 ], [ 81.281064895228695, 25.164588323991943 ], [ 81.268765903623532, 25.16464000083533 ], [ 81.256983676855128, 25.168257351095857 ], [ 81.243237746224949, 25.169523423866899 ], [ 81.236519809641464, 25.16502757446295 ], [ 81.234039340942772, 25.156371772439336 ], [ 81.241067335888815, 25.125624295225002 ], [ 81.241480747038779, 25.115185654694184 ], [ 81.240447219163784, 25.104617824752772 ], [ 81.239000279239448, 25.098080756221911 ], [ 81.235486280867107, 25.089114894936412 ], [ 81.222567173436275, 25.068495998991118 ], [ 81.206237421319869, 25.049298204548503 ], [ 81.180502557447014, 25.025139471809148 ], [ 81.177091912761497, 25.018731594487456 ], [ 81.174611444062847, 25.011083481917122 ], [ 81.173371209713508, 25.001290798331631 ], [ 81.173371209713508, 25.000360623244141 ], [ 81.173887973650992, 24.999430447257332 ], [ 81.177401971124013, 24.993565172294829 ], [ 81.181432733433823, 24.985348618943583 ], [ 81.183293085407499, 24.980180975971216 ], [ 81.184843378119339, 24.972920437028503 ], [ 81.18453331885749, 24.966280015710133 ], [ 81.181432733433823, 24.958140976724671 ], [ 81.175231560787878, 24.953748481007544 ], [ 81.170477328965532, 24.951733100302302 ], [ 81.14825646436428, 24.950932115524719 ], [ 81.137404412683438, 24.948684189923419 ], [ 81.131203240936756, 24.945376898924728 ], [ 81.124381951565766, 24.939020698446477 ], [ 81.098130323755399, 24.908609117117063 ], [ 81.068674757733831, 24.921295681450541 ], [ 81.030950962416952, 24.952973333752304 ], [ 81.014931267763728, 24.962378445508811 ], [ 81.00469933460657, 24.966435045341022 ], [ 80.998808221222404, 24.965659898085782 ], [ 80.972453240624503, 24.9559705672878 ], [ 80.96046430918048, 24.953360907379924 ], [ 80.943721145014791, 24.953257555491799 ], [ 80.932559034971447, 24.95713328727134 ], [ 80.92491092330043, 24.962249254299643 ], [ 80.915195754080713, 24.974444892217999 ], [ 80.907547642409696, 24.981343695954759 ], [ 80.9004162937769, 24.983901679019251 ], [ 80.892974887680893, 24.984134223015982 ], [ 80.840368280171944, 24.970569159539075 ], [ 80.833236932438439, 24.969664821973929 ], [ 80.80502159986689, 24.968812161252227 ], [ 80.778666620168309, 24.971499335525888 ], [ 80.767091098975001, 24.97700287528243 ], [ 80.76171675042761, 24.983307399816617 ], [ 80.762026808790139, 24.991033026752742 ], [ 80.764507276589455, 24.999197903260601 ], [ 80.76492068863881, 25.00005056398231 ], [ 80.776496209832189, 25.010773424453923 ], [ 80.783110792728834, 25.018731594487456 ], [ 80.78652143831367, 25.024519355084117 ], [ 80.790552198824827, 25.032555040382814 ], [ 80.791792434073528, 25.039479682541291 ], [ 80.792412550798517, 25.050745144472835 ], [ 80.793859490722838, 25.055344347563555 ], [ 80.795719841797208, 25.059943548855696 ], [ 80.799750604107004, 25.065292059880615 ], [ 80.804091423880081, 25.070020453281298 ], [ 80.822074823294415, 25.083327135239067 ], [ 80.82434858641804, 25.087357895750241 ], [ 80.827449171841735, 25.116038316315205 ], [ 80.829929641439747, 25.124849147969762 ], [ 80.858868442624484, 25.187558499225354 ], [ 80.859488560248835, 25.200684312231196 ], [ 80.856181268350824, 25.207996528017354 ], [ 80.848326451104782, 25.214016831711373 ], [ 80.843055454445604, 25.21618724204756 ], [ 80.835407341875268, 25.217737534759401 ], [ 80.828689406191117, 25.21789256439029 ], [ 80.819904412958209, 25.216704005985086 ], [ 80.811842889237923, 25.214378566917325 ], [ 80.806055128641205, 25.21215647973775 ], [ 80.802231072805725, 25.209831041569313 ], [ 80.798820428120194, 25.206523748771978 ], [ 80.796339960320879, 25.202777208201546 ], [ 80.794169549085368, 25.197893785170031 ], [ 80.787761671763676, 25.174225978845804 ], [ 80.783627556666346, 25.168128159886628 ], [ 80.777426384919679, 25.163089708123486 ], [ 80.769778273248662, 25.160014960222206 ], [ 80.76109663280333, 25.158387153144581 ], [ 80.686579217257005, 25.156216741909073 ], [ 80.676243931312328, 25.154588934831448 ], [ 80.670042758666327, 25.152263494864364 ], [ 80.666425409305106, 25.14970551179993 ], [ 80.665805291680826, 25.146191515226231 ], [ 80.668285760379476, 25.142393296913095 ], [ 80.673246697776833, 25.13869843228678 ], [ 80.717275017627898, 25.112162584535604 ], [ 80.725749953397596, 25.104152736759371 ], [ 80.729160598083112, 25.095393581948251 ], [ 80.726370070122556, 25.087822983743703 ], [ 80.717895135252249, 25.081983547202917 ], [ 80.707869907670016, 25.080226548916066 ], [ 80.686165806107041, 25.079787299344382 ], [ 80.675623813687977, 25.077694404273295 ], [ 80.657227004022928, 25.071803289989809 ], [ 80.647201776440781, 25.070097968546399 ], [ 80.638830194357908, 25.073431097966754 ], [ 80.630872023425113, 25.078469549729896 ], [ 80.605860629964056, 25.101362209698205 ], [ 80.59965945821736, 25.110018011721813 ], [ 80.594698520820003, 25.119138901738886 ], [ 80.586223585949696, 25.139111843436801 ], [ 80.579505650265475, 25.147922675091358 ], [ 80.573304477619487, 25.151488349407764 ], [ 80.564622837174156, 25.152444362916974 ], [ 80.558628371002484, 25.150945746149254 ], [ 80.552427199255789, 25.147380072732172 ], [ 80.550876905644643, 25.142341620069708 ], [ 80.551600376056442, 25.135029405182873 ], [ 80.553770786392633, 25.125882676744137 ], [ 80.554287551229478, 25.117433580295476 ], [ 80.551600376056442, 25.111232408548798 ], [ 80.546432733084117, 25.107537543023163 ], [ 80.53868126772629, 25.105289618321187 ], [ 80.530206332855911, 25.104126899236967 ], [ 80.52059451732309, 25.10373932471003 ], [ 80.488245069654198, 25.108777778271808 ], [ 80.472432082374652, 25.116038316315205 ], [ 80.462820265942455, 25.117898668288881 ], [ 80.458479445270129, 25.117046007567176 ], [ 80.457445917395134, 25.113893744400734 ], [ 80.457755974858316, 25.109501247784348 ], [ 80.46033979724379, 25.098726712267926 ], [ 80.462510206680619, 25.092990628514652 ], [ 80.465300733741827, 25.081389268000287 ], [ 80.470261672038461, 25.073741157228593 ], [ 80.478323194859485, 25.067643337370093 ], [ 80.504574822669881, 25.056997992163581 ], [ 80.511086052779063, 25.05332896595899 ], [ 80.513876580739563, 25.05046092453204 ], [ 80.515116815088888, 25.040668240047232 ], [ 80.478219842071979, 25.018344020859836 ], [ 80.469538201626662, 25.016225287367089 ], [ 80.458376091583304, 25.015140081749333 ], [ 80.451968215160932, 25.018654080121671 ], [ 80.446903924076793, 25.023589179097311 ], [ 80.430057408022932, 25.045499986235363 ], [ 80.413520949432197, 25.062424018453662 ], [ 80.406699660061221, 25.063767604691176 ], [ 80.404012485787561, 25.06175222398593 ], [ 80.403702427425031, 25.05715302179447 ], [ 80.40452924972503, 25.051132717201135 ], [ 80.411350539096048, 25.027361558988726 ], [ 80.411143832621732, 25.019506740843376 ], [ 80.407009719323042, 25.013357245040819 ], [ 80.400291782739529, 25.011238512447385 ], [ 80.391816847869194, 25.012065334747369 ], [ 80.384685500135646, 25.014364936292729 ], [ 80.376210565265339, 25.017956448131539 ], [ 80.367115512770667, 25.02066946082692 ], [ 80.351302524591787, 25.023201606369007 ], [ 80.337453241174089, 25.02105703445454 ], [ 80.308307732615717, 25.011367702757234 ], [ 80.297145624370998, 25.012065334747369 ], [ 80.288257276552017, 25.016225287367089 ], [ 80.277095168307298, 25.031418157921614 ], [ 80.271824171648163, 25.041081651197199 ], [ 80.265312940639646, 25.063819282433936 ], [ 80.265312940639646, 25.072268377983217 ], [ 80.266966587038311, 25.084464015901567 ], [ 80.269860466886968, 25.088598130998943 ], [ 80.273891229196849, 25.089424954198247 ], [ 80.27678510904552, 25.086944485499597 ], [ 80.282056104805335, 25.085704251150268 ], [ 80.289187453438203, 25.084877427950907 ], [ 80.30469038325451, 25.089269924567358 ], [ 80.312028435663748, 25.095006008320574 ], [ 80.31977990102159, 25.105625515105423 ], [ 80.339623650610946, 25.124203192823067 ], [ 80.345721469570137, 25.131463730866464 ], [ 80.350165643029968, 25.139576931430206 ], [ 80.354506463702293, 25.143814399315026 ], [ 80.36008751782461, 25.146759955107822 ], [ 80.366598748833141, 25.148878689499892 ], [ 80.372799920579823, 25.151901760557784 ], [ 80.385925733585665, 25.159601549072185 ], [ 80.402358840288215, 25.165751043975483 ], [ 80.413314242957924, 25.171125393422127 ], [ 80.418585239617059, 25.17585378682281 ], [ 80.421995884302575, 25.180737209854325 ], [ 80.421995884302575, 25.185982367192477 ], [ 80.42034223790391, 25.191330878217453 ], [ 80.411970655821037, 25.206497911249578 ], [ 80.409903599171727, 25.212078966271232 ], [ 80.407629836048031, 25.229468085583669 ], [ 80.405769484074341, 25.235074978127724 ], [ 80.40297895701319, 25.24001007710336 ], [ 80.39936160675272, 25.244040839413167 ], [ 80.395020786080337, 25.246676336843443 ], [ 80.390059848683038, 25.247296454467794 ], [ 80.384995559397495, 25.245901191386846 ], [ 80.380241326675815, 25.244118353778951 ], [ 80.375797154115318, 25.244118353778951 ], [ 80.371869744593013, 25.246805528052668 ], [ 80.363394809722621, 25.261920885140736 ], [ 80.359777460361471, 25.266158352126233 ], [ 80.355746698051604, 25.269568996811753 ], [ 80.34210412020893, 25.277165432538649 ], [ 80.326497836705727, 25.282255561145227 ], [ 80.322053664145216, 25.288275864839246 ], [ 80.318953077822229, 25.298585313261576 ], [ 80.317092726747859, 25.337316798931106 ], [ 80.312338494925527, 25.368658556247333 ], [ 80.309237908602526, 25.377805283786806 ], [ 80.305827263917053, 25.384704088422943 ], [ 80.290117629425012, 25.404496161168872 ], [ 80.283606398416495, 25.414469712806973 ], [ 80.275751581170454, 25.416485094411534 ], [ 80.267896763025121, 25.417182726401673 ], [ 80.253530714770619, 25.414728095225364 ], [ 80.234927198631269, 25.409663805040562 ], [ 80.227899203685212, 25.408656113788592 ], [ 80.220974563325385, 25.409586289775458 ], [ 80.205574986296511, 25.415864975887924 ], [ 80.198133579301199, 25.416433417568154 ], [ 80.191105585254519, 25.413332831245153 ], [ 80.187281529418996, 25.408294379482008 ], [ 80.180873651197984, 25.394212551168259 ], [ 80.175189243388814, 25.387262071487381 ], [ 80.167747837292822, 25.380259914963059 ], [ 80.124546339741727, 25.350959378572433 ], [ 80.121342400631221, 25.349693304902068 ], [ 80.116484816021384, 25.349615790536287 ], [ 80.110593702637217, 25.351166083248124 ], [ 80.087029249999816, 25.361630561301347 ], [ 80.015302362414033, 25.330908922508737 ], [ 79.99907596218587, 25.320160224514719 ], [ 79.973134392738004, 25.297190050180625 ], [ 79.93479047979676, 25.270421658432777 ], [ 79.915360142256688, 25.259802150748605 ], [ 79.901097446789706, 25.255771389338115 ], [ 79.87639611169115, 25.254686183720359 ], [ 79.852108188641964, 25.247839056826987 ], [ 79.840429314661066, 25.240681871571091 ], [ 79.834744907751244, 25.2342998317718 ], [ 79.833814731764434, 25.228796292015254 ], [ 79.833814731764434, 25.223602809721847 ], [ 79.834848259639429, 25.217711697237004 ], [ 79.83701867087494, 25.211122951862698 ], [ 79.841566197122276, 25.203087267463385 ], [ 79.847767367969581, 25.195103258108869 ], [ 79.864200473772812, 25.177429917956314 ], [ 79.867714471245776, 25.170582791062934 ], [ 79.869161411170168, 25.163864854479407 ], [ 79.866991000833977, 25.15582916918077 ], [ 79.863270297785931, 25.153245347694615 ], [ 79.850971307080087, 25.150945746149254 ], [ 79.838465610799261, 25.147225043101223 ], [ 79.814487746112533, 25.134900213973644 ], [ 79.801671990569886, 25.131928818859873 ], [ 79.791853468562678, 25.133840846777609 ], [ 79.77934777228181, 25.148852851078168 ], [ 79.773560011685134, 25.15355540605713 ], [ 79.767565546412783, 25.156190904386726 ], [ 79.762501255328615, 25.156914373899205 ], [ 79.736663038668254, 25.152341010129469 ], [ 79.661112095246935, 25.148077703822928 ], [ 79.648503046178561, 25.149266262228188 ], [ 79.61729048007156, 25.157353624370266 ], [ 79.578223097617794, 25.174639390895145 ], [ 79.566130813386252, 25.178360093943176 ], [ 79.56003299262845, 25.179367784295771 ], [ 79.553728468993583, 25.179031887511591 ], [ 79.541636183862721, 25.176551418812885 ], [ 79.531197544231233, 25.168722439089258 ], [ 79.522205845423386, 25.158438829088645 ], [ 79.505876092407703, 25.127562161564462 ], [ 79.500811802222856, 25.120224107356645 ], [ 79.493783807276813, 25.113997097188243 ], [ 79.479521111809831, 25.105548000739638 ], [ 79.468152297090768, 25.103842678396855 ], [ 79.458540479759264, 25.105987250311323 ], [ 79.453269483999449, 25.111103217339569 ], [ 79.450789016200062, 25.117304389086254 ], [ 79.449548780951417, 25.124435736819798 ], [ 79.448205193814587, 25.130223497416459 ], [ 79.445518020440247, 25.136347153898036 ], [ 79.43807661344492, 25.141643988978892 ], [ 79.426914504300882, 25.145080471186752 ], [ 79.408621047423352, 25.144667060036792 ], [ 79.399009230091821, 25.14133392971706 ], [ 79.39384158711951, 25.136812241891441 ], [ 79.392601352770143, 25.130740261353932 ], [ 79.393531528757009, 25.113945421244178 ], [ 79.396011996556339, 25.099476020202125 ], [ 79.396218703030669, 25.085497545575258 ], [ 79.391981236045169, 25.07412872995689 ], [ 79.357668085413735, 25.071105657999674 ], [ 79.347126092095422, 25.075213935574645 ], [ 79.337410922875719, 25.081105048059491 ], [ 79.332553339165244, 25.088985703727239 ], [ 79.330899692766579, 25.09934682899296 ], [ 79.330899692766579, 25.11193004053893 ], [ 79.333070103102713, 25.127200426358563 ], [ 79.335860630163864, 25.138362535502605 ], [ 79.339064569274385, 25.147405911153832 ], [ 79.344232212246752, 25.154201362103144 ], [ 79.368726840870963, 25.175001126101044 ], [ 79.37771853967881, 25.187920234431253 ], [ 79.390327589646503, 25.214791978067289 ], [ 79.424744093964691, 25.25719249084073 ], [ 79.439626906156761, 25.286337999399105 ], [ 79.441797315593575, 25.297267564546466 ], [ 79.437973259758095, 25.302202664421426 ], [ 79.430325148087078, 25.299334622095099 ], [ 79.422573683628542, 25.293831082338549 ], [ 79.404900344375307, 25.277863064528781 ], [ 79.39776899574251, 25.274839993470888 ], [ 79.389087355297178, 25.275537625461023 ], [ 79.379475538864966, 25.279671738759696 ], [ 79.369967076119607, 25.280989488374185 ], [ 79.358908318863755, 25.278715725250485 ], [ 79.348056268082232, 25.273496406334058 ], [ 79.340614861986225, 25.26639089612291 ], [ 79.335860630163864, 25.259569606751935 ], [ 79.332553339165244, 25.253316759061128 ], [ 79.328522576855377, 25.247968248036209 ], [ 79.323871697820536, 25.244428412141467 ], [ 79.317567173286349, 25.242413032335541 ], [ 79.310332472765339, 25.243808295416496 ], [ 79.303511184293697, 25.248459174451337 ], [ 79.294519483687139, 25.259414578020362 ], [ 79.290695427851674, 25.269698188020918 ], [ 79.289558547189174, 25.279542548449847 ], [ 79.291005487113509, 25.287371528173473 ], [ 79.292865839087113, 25.293314317501707 ], [ 79.29699995328518, 25.302848619568117 ], [ 79.321701288383721, 25.339358018058075 ], [ 79.324801873807402, 25.349796657689573 ], [ 79.323561638558701, 25.355765286338844 ], [ 79.317567173286349, 25.362173162761216 ], [ 79.311572707114678, 25.364550279571738 ], [ 79.302477654620006, 25.364576117094082 ], [ 79.275915969346485, 25.334035346354135 ], [ 79.264340448153106, 25.308946438527297 ], [ 79.261963332241962, 25.295923977409579 ], [ 79.261859978555137, 25.287190660120864 ], [ 79.263100213803767, 25.274736639784063 ], [ 79.287284784065477, 25.205567735262768 ], [ 79.290695427851674, 25.188772895152962 ], [ 79.290488723175983, 25.177507433221418 ], [ 79.286768020127951, 25.169032498351097 ], [ 79.279533318707635, 25.164278266528751 ], [ 79.268991327187933, 25.164123236897861 ], [ 79.245530227338037, 25.172313950928068 ], [ 79.234678175657194, 25.175078640466886 ], [ 79.226306593574392, 25.175233670097775 ], [ 79.21855512911587, 25.17453603810764 ], [ 79.209976840558724, 25.172934068552419 ], [ 79.192096795730478, 25.180323797804981 ], [ 79.182381625611441, 25.182287503465481 ], [ 79.171529575729309, 25.181667384941811 ], [ 79.160160760110927, 25.174691066839266 ], [ 79.152409295652419, 25.166138616703787 ], [ 79.142797479220221, 25.150713202152524 ], [ 79.133909133199879, 25.145364692026867 ], [ 79.125847608580187, 25.143840236837427 ], [ 79.119233025683556, 25.147845159826254 ], [ 79.115925733785545, 25.153813788475524 ], [ 79.11189497327436, 25.186008206513513 ], [ 79.109001091626993, 25.195025742843704 ], [ 79.100319452080981, 25.196731065186494 ], [ 79.084713168577807, 25.195258286840435 ], [ 79.051536900407584, 25.181279812213511 ], [ 79.0348970890294, 25.176396389181996 ], [ 79.024045038247877, 25.174639390895145 ], [ 79.017223748876845, 25.17838593236484 ], [ 79.01215945779272, 25.184070339274733 ], [ 79.008748814006523, 25.191589259736524 ], [ 79.008232049169678, 25.202932236933172 ], [ 79.011332634593359, 25.213990994189025 ], [ 79.017843865601876, 25.225902411267267 ], [ 79.043992140624752, 25.250552070421683 ], [ 79.047402785310268, 25.256934109321655 ], [ 79.045852491699108, 25.260422268372956 ], [ 79.043372023000401, 25.262825221806501 ], [ 79.032106561068915, 25.267760322580777 ], [ 79.028385858020883, 25.271403510363704 ], [ 79.026215447684677, 25.274142361480749 ], [ 79.02156456864985, 25.277397976535379 ], [ 79.01432986812884, 25.281247869893257 ], [ 78.99862023273748, 25.282694809817595 ], [ 78.990868768278943, 25.280782781899852 ], [ 78.986734654080962, 25.276235256551836 ], [ 78.985804478094153, 25.268483792093313 ], [ 78.986424594819127, 25.258406886768391 ], [ 78.986114535557348, 25.247503160042804 ], [ 78.983427362182951, 25.237374578773764 ], [ 78.972988722551435, 25.228176174390903 ], [ 78.961516555044952, 25.225747382535641 ], [ 78.947770624414758, 25.224145412980413 ], [ 78.937848748720725, 25.219649563576461 ], [ 78.930407341725399, 25.213784287714699 ], [ 78.916868116670216, 25.196188462827244 ], [ 78.907669712287358, 25.186395779241813 ], [ 78.89113325369668, 25.175388698829348 ], [ 78.879454379715796, 25.174794420526034 ], [ 78.869842564182917, 25.180504665857594 ], [ 78.863951450798751, 25.191615099057564 ], [ 78.862091098825076, 25.206833808033814 ], [ 78.863124627599433, 25.221070665079132 ], [ 78.867672153846783, 25.23773631397966 ], [ 78.87501020715527, 25.252283230286817 ], [ 78.885035434737446, 25.265538235401202 ], [ 78.89919477741698, 25.277010402907759 ], [ 78.923069289316217, 25.291402289583964 ], [ 78.929167108275394, 25.296079006141209 ], [ 78.935471632809566, 25.304063015495725 ], [ 78.937538690358195, 25.312796331885174 ], [ 78.937228631995694, 25.321839708435782 ], [ 78.934231397560865, 25.337239285464644 ], [ 78.934128045672693, 25.346489365791562 ], [ 78.936608514371386, 25.357212226263183 ], [ 78.95490197124893, 25.385711777876217 ], [ 78.957485792735085, 25.397726549540604 ], [ 78.959966262333097, 25.426536160415473 ], [ 78.959966262333097, 25.433331611364729 ], [ 78.958105910359436, 25.43777578392524 ], [ 78.953144972962079, 25.442349147694976 ], [ 78.948184034665402, 25.443098456528499 ], [ 78.939399042331885, 25.441858222179171 ], [ 78.928857049013558, 25.43893850390878 ], [ 78.916661411095205, 25.43798249039957 ], [ 78.909116652211694, 25.441393134185766 ], [ 78.906119418676184, 25.446586615579797 ], [ 78.908496534587343, 25.454467271247545 ], [ 78.91314741362217, 25.462890530173802 ], [ 78.91748823429451, 25.474078476840184 ], [ 78.919348586268185, 25.485343940570367 ], [ 78.919141879793855, 25.504593410957106 ], [ 78.916971470357026, 25.514360256120874 ], [ 78.91314741362217, 25.525341498111622 ], [ 78.901158482178147, 25.536193548893145 ], [ 78.89113325369668, 25.538105576810885 ], [ 78.879351026928276, 25.533868109825384 ], [ 78.869739211395412, 25.525057278170827 ], [ 78.861781039563297, 25.515032049689289 ], [ 78.85526981035342, 25.50208710383674 ], [ 78.853512811167249, 25.497255356749289 ], [ 78.852479283292254, 25.491002509058539 ], [ 78.851859164768584, 25.481261502316435 ], [ 78.85475304641588, 25.444726264505498 ], [ 78.853099400017214, 25.434029242455544 ], [ 78.846381464333078, 25.425941881212843 ], [ 78.835529412652235, 25.419740709466165 ], [ 78.81692589741219, 25.417182726401673 ], [ 78.806693964255018, 25.420645046131931 ], [ 78.800802849971475, 25.426872057199656 ], [ 78.799252557259621, 25.43893850390878 ], [ 78.800286086034006, 25.477618312734926 ], [ 78.797185499711006, 25.499761663869656 ], [ 78.795531854211646, 25.503895778967031 ], [ 78.792431267888659, 25.509657701141968 ], [ 78.781889276368972, 25.524023749396513 ], [ 78.763079054654597, 25.510872097069576 ], [ 78.754810826258549, 25.508314114005138 ], [ 78.744165480152716, 25.506686306028193 ], [ 78.73424360535806, 25.501983751049231 ], [ 78.726905552049558, 25.49446482968812 ], [ 78.724115024988322, 25.484413764583557 ], [ 78.722564732276552, 25.461727810190265 ], [ 78.726182081637702, 25.455552475965984 ], [ 78.745199008927088, 25.439300239114736 ], [ 78.747886184100068, 25.433745022514749 ], [ 78.748816359187558, 25.426148586787797 ], [ 78.745715772864557, 25.41679515187473 ], [ 78.735173781344869, 25.402739162882025 ], [ 78.73145307829688, 25.395917874410369 ], [ 78.730316196735018, 25.387882188212409 ], [ 78.732073195021869, 25.380802517322305 ], [ 78.737447543569232, 25.368296821041433 ], [ 78.73827436676855, 25.359796046850075 ], [ 78.736207310119241, 25.351734524029034 ], [ 78.727525668774518, 25.346386013004057 ], [ 78.718844029228507, 25.347807115406052 ], [ 78.710989211083174, 25.353517360737609 ], [ 78.698793573164821, 25.366720689008556 ], [ 78.691042107806965, 25.373154404751965 ], [ 78.675229119628085, 25.382507838765715 ], [ 78.670164829443294, 25.388657335467649 ], [ 78.664893832784088, 25.401628118842602 ], [ 78.660863072272932, 25.405891425149147 ], [ 78.652284783715729, 25.409457099465552 ], [ 78.631510858139549, 25.415503241581288 ], [ 78.611667107650845, 25.415425727215499 ], [ 78.597094353821305, 25.414004624813568 ], [ 78.588516066163479, 25.410826524124779 ], [ 78.582108188841787, 25.406744085870848 ], [ 78.577767368169461, 25.401008002117575 ], [ 78.5758036643076, 25.394031684014973 ], [ 78.576733840294466, 25.387494615484112 ], [ 78.57869754415627, 25.381965237305842 ], [ 78.580454543342441, 25.375169786356533 ], [ 78.579317660881301, 25.369924628119058 ], [ 78.575596957833255, 25.364421088362516 ], [ 78.562264439252417, 25.354421699202017 ], [ 78.555029737832101, 25.347626248252702 ], [ 78.530431757319704, 25.315664374211501 ], [ 78.520199823263212, 25.298817857258307 ], [ 78.51575564980331, 25.289231879247829 ], [ 78.51337853389218, 25.281092841161687 ], [ 78.51358524036651, 25.273367214225509 ], [ 78.51585900259083, 25.266210028969617 ], [ 78.521646763187547, 25.258484402033496 ], [ 78.52888146370853, 25.252076523812484 ], [ 78.548621861409728, 25.2377621533007 ], [ 78.561851027203076, 25.226057440898156 ], [ 78.57373660675897, 25.21215647973775 ], [ 78.609806756576504, 25.136321316375639 ], [ 78.617868280296861, 25.108881130159997 ], [ 78.619521925796207, 25.064671943155638 ], [ 78.640192498584881, 24.964109605373942 ], [ 78.648874139030269, 24.940726019889887 ], [ 78.659106073086761, 24.9243187534077 ], [ 78.697553338815496, 24.888636176318464 ], [ 78.709748976733849, 24.87372752480541 ], [ 78.723701612939053, 24.848716132243673 ], [ 78.729592727222538, 24.830526028153653 ], [ 78.732073195021869, 24.81491974554978 ], [ 78.7315564310844, 24.768591824153358 ], [ 78.735793898069886, 24.737637641364014 ], [ 78.736207310119241, 24.725545356233166 ], [ 78.734346958145565, 24.7158301861142 ], [ 78.731143019934379, 24.708156236021463 ], [ 78.719464145953538, 24.693609321512948 ], [ 78.715433383643685, 24.685108547321583 ], [ 78.715123326180489, 24.668701279940077 ], [ 78.71977420431601, 24.656402289234215 ], [ 78.726802199262053, 24.643405667437602 ], [ 78.733106723796226, 24.635421658083029 ], [ 78.740134718742226, 24.631003323044915 ], [ 78.750366651899384, 24.629840603061378 ], [ 78.762148878667787, 24.632166043028455 ], [ 78.791501091901793, 24.642087917823115 ], [ 78.814135370351011, 24.646273708864548 ], [ 78.827054477781843, 24.647100532063853 ], [ 78.842040642761432, 24.644645900887607 ], [ 78.856510043803411, 24.638599757872491 ], [ 78.87108279763298, 24.625732327285046 ], [ 78.878730910203316, 24.613200792582514 ], [ 78.883795201287441, 24.598602200331239 ], [ 78.887825961798669, 24.582711696887255 ], [ 78.893407016820319, 24.571291205324822 ], [ 78.91314741362217, 24.547545885534184 ], [ 78.922449171691866, 24.533309028488869 ], [ 78.921622349391882, 24.523361314373116 ], [ 78.914801060020849, 24.508116766975199 ], [ 78.913767531246521, 24.502794094371943 ], [ 78.913560825671524, 24.50054617056929 ], [ 78.913767531246521, 24.498091539392981 ], [ 78.914180943295875, 24.494680893808201 ], [ 78.916247999945185, 24.486800239039773 ], [ 78.9203821150425, 24.483131211935863 ], [ 78.928546990651043, 24.480650743237213 ], [ 78.93888227659572, 24.48028900803126 ], [ 78.959862908646286, 24.47705923139841 ], [ 78.978259719210641, 24.467421576544488 ], [ 78.978466423886331, 24.440033067172287 ], [ 78.972368604927155, 24.422566433494065 ], [ 78.964617141367953, 24.405409858178409 ], [ 78.955005324036421, 24.392542425792264 ], [ 78.946943801215397, 24.384506741393004 ], [ 78.935678339283854, 24.375463364842396 ], [ 78.901985305377465, 24.346369534026731 ], [ 78.889066197047313, 24.324148668526217 ], [ 78.879661086190126, 24.296372586425711 ], [ 78.866845330647422, 24.272136339320578 ], [ 78.851652460092893, 24.254514675112144 ], [ 78.825814243432532, 24.230149237697155 ], [ 78.809794548779365, 24.220227362902442 ], [ 78.792121210425464, 24.217385158997892 ], [ 78.77537804625976, 24.224568183574771 ], [ 78.762148878667787, 24.235652778353021 ], [ 78.755844354133586, 24.249192003408208 ], [ 78.75408735494743, 24.260328274130526 ], [ 78.753777296584914, 24.269965928984384 ], [ 78.75140018067377, 24.276580511881086 ], [ 78.746645948851409, 24.279422715785692 ], [ 78.736207310119241, 24.280430406138287 ], [ 78.720911085877887, 24.280120347775828 ], [ 78.688768344683339, 24.282910874836993 ], [ 78.673265414866961, 24.287070828356029 ], [ 78.655902133976255, 24.294589748817824 ], [ 78.640502556947382, 24.304744168508531 ], [ 78.610840285350818, 24.332907823337333 ], [ 78.590376418137154, 24.345361842774818 ], [ 78.535806104967705, 24.388589178747562 ], [ 78.509244418794864, 24.403006903845487 ], [ 78.489400669205494, 24.410784206725733 ], [ 78.477721796123916, 24.411636868346754 ], [ 78.468833449204269, 24.408045356507948 ], [ 78.463252395081938, 24.401766669496165 ], [ 78.457361280798395, 24.393110867472551 ], [ 78.452710401763554, 24.384480902971287 ], [ 78.449196405189909, 24.373680528133825 ], [ 78.447956170840584, 24.363396918133269 ], [ 78.447439406003738, 24.353836778544455 ], [ 78.446199171654399, 24.345568549249144 ], [ 78.442375115818876, 24.337377835218884 ], [ 78.435037061611055, 24.328076077149198 ], [ 78.423461542216373, 24.318257555142047 ], [ 78.408061965187514, 24.308439032235519 ], [ 78.385531040425107, 24.301230170136243 ], [ 78.370544875445589, 24.302470405384888 ], [ 78.35648888465424, 24.309162503546695 ], [ 78.345843540347047, 24.318903510288742 ], [ 78.335714959977366, 24.331021632941994 ], [ 78.330133904955659, 24.342028713354402 ], [ 78.329203728968849, 24.353681748913566 ], [ 78.331890904141844, 24.363706977395047 ], [ 78.350184361019373, 24.392568264213988 ], [ 78.352148064881234, 24.400733140721847 ], [ 78.350494419381889, 24.407967841242844 ], [ 78.344396600422698, 24.414737453770435 ], [ 78.334991489565525, 24.420240994426301 ], [ 78.309256625692669, 24.430834661890113 ], [ 78.291996697589454, 24.441919257567683 ], [ 78.277527297446767, 24.453107205133389 ], [ 78.272256300787589, 24.467421576544488 ], [ 78.26987918487643, 24.477679348123381 ], [ 78.263264601979728, 24.480650743237213 ], [ 78.254272902272575, 24.482071844739831 ], [ 78.244351026578542, 24.487885443758213 ], [ 78.242283969929233, 24.493001409887135 ], [ 78.227401157737219, 24.518193671400802 ], [ 78.223887160264198, 24.51922720017512 ], [ 78.228848097661555, 24.532740586808639 ], [ 78.254272902272575, 24.564857490480787 ], [ 78.264814894691582, 24.583486843243172 ], [ 78.270395948813913, 24.603175564100976 ], [ 78.272256300787589, 24.624440416092281 ], [ 78.270085891350774, 24.628677883077835 ], [ 78.260577426806762, 24.639039008343556 ], [ 78.257993605320593, 24.644930120828402 ], [ 78.263781365917268, 24.662706813768402 ], [ 78.264814894691582, 24.669140530411134 ], [ 78.261300897218561, 24.692653307104415 ], [ 78.2523091984107, 24.707226060034596 ], [ 78.241147089266718, 24.719034125224702 ], [ 78.230708448735854, 24.734304511044339 ], [ 78.226884392900359, 24.752727159131094 ], [ 78.227091099374704, 24.77329437913226 ], [ 78.224920689038512, 24.79411998155188 ], [ 78.197842238028827, 24.839440211696395 ], [ 78.193088007105786, 24.843548489271363 ], [ 78.181925897062442, 24.846571560329203 ], [ 78.173657667767117, 24.854478054418674 ], [ 78.169110142419115, 24.865459296409366 ], [ 78.169213495206563, 24.87768077185012 ], [ 78.180375604350601, 24.892511908098069 ], [ 78.225954216913507, 24.926334133213683 ], [ 78.257270134908751, 24.940209255053045 ], [ 78.312667271277505, 24.987544866802118 ], [ 78.324862909195843, 25.00216929837438 ], [ 78.336541783176685, 25.022994899894677 ], [ 78.340675897374723, 25.045810045497198 ], [ 78.330340611430003, 25.066377265498367 ], [ 78.330443964217508, 25.081983547202917 ], [ 78.335094842353016, 25.087978014273908 ], [ 78.338712192613556, 25.114720566700779 ], [ 78.342226190086578, 25.130533555778978 ], [ 78.345533481984532, 25.139241033746707 ], [ 78.359589470977227, 25.15892975550377 ], [ 78.366307407560768, 25.186008206513513 ], [ 78.364757114848928, 25.196756904507531 ], [ 78.360519646964107, 25.210451158294283 ], [ 78.348117302571424, 25.228253688756688 ], [ 78.297681105398652, 25.327808336185736 ], [ 78.284245233130932, 25.344680691560647 ], [ 78.272256300787589, 25.356204535011269 ], [ 78.256443311709432, 25.37672007906837 ], [ 78.251792433573925, 25.388424791470918 ], [ 78.251172315949574, 25.397829902328105 ], [ 78.254893019896926, 25.403979397231346 ], [ 78.261921013943592, 25.411705024167528 ], [ 78.330030552168225, 25.464776720569201 ], [ 78.346567009859584, 25.486429145288803 ], [ 78.35669559112857, 25.539604194477981 ], [ 78.370544875445589, 25.552678331539759 ], [ 78.460668572696406, 25.574640815521203 ], [ 78.481752556635143, 25.577663886579096 ], [ 78.495705193739624, 25.578258164882406 ], [ 78.526400995009837, 25.572935492279093 ], [ 78.546451451073537, 25.572573757073197 ], [ 78.558440383416936, 25.575545152187026 ], [ 78.572082961259625, 25.582443955923786 ], [ 78.582624952779312, 25.590350450013254 ], [ 78.61611128111069, 25.607610379015735 ], [ 78.714503207656875, 25.625929674314982 ], [ 78.747576124838218, 25.642724514424796 ], [ 78.751710239935548, 25.649235745433252 ], [ 78.753467238222399, 25.653938300412214 ], [ 78.754397414209265, 25.658124091453654 ], [ 78.75450076699677, 25.665100409556256 ], [ 78.75357059100989, 25.674272976416713 ], [ 78.750056594436259, 25.686106879129163 ], [ 78.744888950564572, 25.698069973050785 ], [ 78.731866490346178, 25.720781764966485 ], [ 78.728455844761399, 25.730522773507172 ], [ 78.727112257624555, 25.740212104305154 ], [ 78.727835728036368, 25.750185655043932 ], [ 78.729592727222538, 25.760701809041219 ], [ 78.733313430270499, 25.774163519730614 ], [ 78.739824660379711, 25.789795640756207 ], [ 78.748816359187558, 25.800544337850901 ], [ 78.760908645217782, 25.808760891202148 ], [ 78.77455122306047, 25.815633857416564 ], [ 78.790984327964324, 25.826795966560603 ], [ 78.808347608855044, 25.84154958844271 ], [ 78.823953892358176, 25.876534531743225 ], [ 78.835219354289706, 25.905731716245665 ], [ 78.879661086190126, 25.956090399951954 ], [ 78.886792433923617, 25.969242052278837 ], [ 78.890513136971649, 25.978931383076819 ], [ 78.893407016820319, 26.000041205437235 ], [ 78.914387647971509, 26.04275177747251 ], [ 78.946530389166057, 26.088252874770312 ], [ 78.953144972962079, 26.100319322378816 ], [ 78.954075148049569, 26.109982814755078 ], [ 78.949010857864764, 26.115305488257658 ], [ 78.932681104849024, 26.124658922271401 ], [ 78.924826287603068, 26.133185533085843 ], [ 78.919968702993216, 26.144657701491717 ], [ 78.918418410281376, 26.163442083885055 ], [ 78.921312290130032, 26.172666326689576 ], [ 78.927100050726708, 26.178066515457314 ], [ 78.945290154816732, 26.184319363148056 ], [ 78.954075148049569, 26.191967474819073 ], [ 78.956555616748275, 26.197806912259175 ], [ 78.955625440761409, 26.203904731218355 ], [ 78.944359978829922, 26.21966604345311 ], [ 78.938572219132581, 26.230466417391249 ], [ 78.935781691172039, 26.244780788802355 ], [ 78.938158807083227, 26.254599310809503 ], [ 78.942292922180556, 26.261523952968041 ], [ 78.955832147235739, 26.273228665370588 ], [ 78.963273553331746, 26.27808624908112 ], [ 78.971128370577773, 26.281290188191626 ], [ 78.980636835121786, 26.28400320088701 ], [ 79.008232049169678, 26.289300035068543 ], [ 79.019290806425516, 26.293795885371818 ], [ 79.028385858020883, 26.301108100258595 ], [ 79.036344028953735, 26.310073961544042 ], [ 79.05856489535357, 26.343043525038631 ], [ 79.061148715940462, 26.349373887994481 ], [ 79.060838657577946, 26.355084133326095 ], [ 79.057738072154265, 26.35862396922078 ], [ 79.053293897795115, 26.36226715700365 ], [ 79.049366490071392, 26.364540921026666 ], [ 79.039651319952426, 26.375057074124634 ], [ 79.052053664345095, 26.411488959148123 ], [ 79.049263137283887, 26.440660305228896 ], [ 79.040994907988562, 26.467997137757656 ], [ 79.028075798759048, 26.497556057466049 ], [ 78.974435663375104, 26.571582545697876 ], [ 78.959966262333097, 26.596671454424033 ], [ 78.945703565966753, 26.635583808146233 ], [ 78.938158807083227, 26.668139960490741 ], [ 78.938468866345076, 26.675943101792708 ], [ 78.93774539593322, 26.677725938501219 ], [ 78.93774539593322, 26.686950182205116 ], [ 78.935781691172039, 26.694443264245244 ], [ 78.926066521952393, 26.70622549101358 ], [ 78.919348586268185, 26.707827460568801 ], [ 78.905085890801146, 26.708085842087936 ], [ 78.873459914443444, 26.700566920726768 ], [ 78.861264275625771, 26.7012645527169 ], [ 78.842350702023211, 26.711935737244453 ], [ 78.812171664690524, 26.747669990277807 ], [ 78.792431267888659, 26.762087714476415 ], [ 78.781992629156463, 26.763844712763266 ], [ 78.770830520012439, 26.763560491923151 ], [ 78.761942173092763, 26.76523997674348 ], [ 78.75832482283225, 26.772965602780339 ], [ 78.75450076699677, 26.785729682378921 ], [ 78.745405715401418, 26.789217841430222 ], [ 78.73424360535806, 26.785445462438126 ], [ 78.724115024988322, 26.776376248365118 ], [ 78.710059035096364, 26.798881333806488 ], [ 78.69321251814317, 26.797873643453833 ], [ 78.655282017251224, 26.776376248365118 ], [ 78.642569615395402, 26.775136013116477 ], [ 78.622519159331688, 26.777306423452664 ], [ 78.61425093003632, 26.776376248365118 ], [ 78.606602818365303, 26.771131090127703 ], [ 78.601745232856132, 26.764335639178391 ], [ 78.595234002747006, 26.758392848950784 ], [ 78.583245070403592, 26.755886541830417 ], [ 78.563504672702422, 26.758496201738289 ], [ 78.518029412927007, 26.78319753683683 ], [ 78.498702427275177, 26.788210151077571 ], [ 78.461598748683272, 26.792266750909782 ], [ 78.446095818866908, 26.79996653942424 ], [ 78.438344354408386, 26.808699855813693 ], [ 78.433486769798535, 26.816683865168208 ], [ 78.428112421251214, 26.822549140130711 ], [ 78.418707310394026, 26.82479706483263 ], [ 78.395969680056666, 26.824176948107656 ], [ 78.384910922800813, 26.826812446437252 ], [ 78.371475051432455, 26.851048691743692 ], [ 78.350597772169394, 26.858464260317355 ], [ 78.326103142645863, 26.859807848353505 ], [ 78.286002232317102, 26.854846910056828 ], [ 78.280317823608627, 26.851436266270635 ], [ 78.272256300787589, 26.84464081532132 ], [ 78.25820031089556, 26.82133474420305 ], [ 78.254893019896926, 26.817329820314903 ], [ 78.233912387846345, 26.819784451491209 ], [ 78.219236281229342, 26.823892727267541 ], [ 78.200116001152452, 26.823582668905026 ], [ 78.197842238028827, 26.831153266210258 ], [ 78.193604771043326, 26.839834907554909 ], [ 78.1871968928223, 26.847741400745004 ], [ 78.177585077289436, 26.856991481971299 ], [ 78.173450962192121, 26.863502712979816 ], [ 78.172624138992759, 26.868618679108742 ], [ 78.175311314165739, 26.873476263718594 ], [ 78.179755486726307, 26.875026557329754 ], [ 78.188437128070959, 26.874819850855424 ], [ 78.197532179666297, 26.876137600469853 ], [ 78.208074172085318, 26.882209581007309 ], [ 78.241353793942366, 26.911484279875587 ], [ 78.246521436914719, 26.917840481253158 ], [ 78.246004672977207, 26.92290477143802 ], [ 78.242594029191068, 26.92727143053207 ], [ 78.236909621381855, 26.931353867886678 ], [ 78.231018507997689, 26.934661159784689 ], [ 78.223060337064837, 26.937064114117554 ], [ 78.200736117877483, 26.939182848509624 ], [ 78.190917595870275, 26.941663316308954 ], [ 78.181202426650628, 26.945900784193835 ], [ 78.168800083157279, 26.948923855251671 ], [ 78.1518502143159, 26.950939235956977 ], [ 78.122084589032497, 26.949543971976702 ], [ 78.106891716679328, 26.947296047274726 ], [ 78.094282667610955, 26.940035509231333 ], [ 78.088391555126108, 26.934686998206352 ], [ 78.078883090582096, 26.928666694512337 ], [ 78.07474897728342, 26.92344737379721 ], [ 78.071028273336125, 26.917039496475578 ], [ 78.066067335938769, 26.912311103074952 ], [ 78.058109165005916, 26.910063178372976 ], [ 78.037025181067207, 26.911251735878857 ], [ 78.02927371570938, 26.910011502428851 ], [ 78.023175896750203, 26.905412299338131 ], [ 78.021315545675847, 26.899934597103929 ], [ 78.020902133626507, 26.892803250269758 ], [ 78.021315545675847, 26.874871527698811 ], [ 78.019145135339656, 26.868360296690291 ], [ 78.016251254591651, 26.866654975246881 ], [ 78.009843378169293, 26.870065619033078 ], [ 78.006432732584514, 26.874742337388962 ], [ 78.003848911098302, 26.880607612351408 ], [ 78.000748325674621, 26.890658678355287 ], [ 77.997441033776667, 26.895077013393454 ], [ 77.98906945169378, 26.901278185140079 ], [ 77.976563755412926, 26.90437877056376 ], [ 77.917445916895517, 26.907737739305215 ], [ 77.888817173173919, 26.915024115770329 ], [ 77.879102003954287, 26.915024115770329 ], [ 77.869800245884605, 26.913086249430869 ], [ 77.857294548704417, 26.904895535400605 ], [ 77.852643670568895, 26.90288015379604 ], [ 77.84706261644655, 26.905670680857209 ], [ 77.843651970861728, 26.909288032017052 ], [ 77.838897739938702, 26.912957058221643 ], [ 77.832076450567669, 26.916186834854496 ], [ 77.821844517410497, 26.919364936442655 ], [ 77.760659621344402, 26.926728827273561 ], [ 77.73378787590967, 26.933498439801149 ], [ 77.720455357328817, 26.933963527794553 ], [ 77.704642368250617, 26.92975189923072 ], [ 77.692240024757311, 26.92231049223539 ], [ 77.665058220960063, 26.896782334836864 ], [ 77.641390414635879, 26.883243109781681 ], [ 77.51054568943195, 26.833323676546396 ], [ 77.500623813737988, 26.831179103732602 ], [ 77.492252231655115, 26.830998237478635 ], [ 77.478299594550592, 26.835855821189167 ], [ 77.47209842280391, 26.836553453179302 ], [ 77.466310663106569, 26.833401190912177 ], [ 77.454528436338236, 26.807407945520247 ], [ 77.446260207042869, 26.795341497911803 ], [ 77.431894158788324, 26.78123383207565 ], [ 77.40698611811483, 26.775136013116477 ], [ 77.397891065620158, 26.778882555485545 ], [ 77.395824008970777, 26.78242239048091 ], [ 77.394893832983968, 26.788546046962487 ], [ 77.399234653656308, 26.810431017477462 ], [ 77.400474888005633, 26.832393500559583 ], [ 77.399131300868788, 26.848128974372624 ], [ 77.399544712018823, 26.855518704524563 ], [ 77.402231887191803, 26.864200344070575 ], [ 77.408743117301, 26.872649441418552 ], [ 77.423315871130498, 26.884379991343501 ], [ 77.460832960872423, 26.904223740932871 ], [ 77.628471307205004, 26.973160102356807 ], [ 77.649555292043019, 26.979180406050883 ], [ 77.699991490115153, 26.988714708117236 ], [ 77.712290479921634, 26.994735011811308 ], [ 77.719111770191986, 27.002925726740894 ], [ 77.719215122080172, 27.015793158227659 ], [ 77.713840772633475, 27.023363756432211 ], [ 77.707432896211159, 27.026309312224946 ], [ 77.701438430039488, 27.025275784349954 ], [ 77.695960727805286, 27.022020169295324 ], [ 77.691929966394781, 27.018092759773019 ], [ 77.683351677837592, 27.007163193726392 ], [ 77.678597446914623, 27.005070299554685 ], [ 77.67404992066723, 27.006258857060566 ], [ 77.668158807283064, 27.011969102392122 ], [ 77.65255252467918, 27.03912506776765 ], [ 77.647901645644396, 27.044344387583401 ], [ 77.643044061034544, 27.04661814980772 ], [ 77.638393181999717, 27.046463121076151 ], [ 77.633949009439206, 27.044086005165006 ], [ 77.630331659178665, 27.039771022914344 ], [ 77.627851189580696, 27.035481879085403 ], [ 77.623613722595152, 27.031321926465687 ], [ 77.618962843560311, 27.029952500907193 ], [ 77.594158155674322, 27.031115220890733 ], [ 77.559741652255397, 27.036799627800569 ], [ 77.55074995344755, 27.040081082176183 ], [ 77.543411900139034, 27.045171209883385 ], [ 77.540207961028543, 27.052380072882038 ], [ 77.536590610768016, 27.066539415561575 ], [ 77.532766554932536, 27.07026011771023 ], [ 77.528425734260153, 27.071164456174692 ], [ 77.517987094628651, 27.070957749700362 ], [ 77.51178592288197, 27.072559719255587 ], [ 77.507135043847128, 27.075789495888493 ], [ 77.503414340799154, 27.080466213345055 ], [ 77.500933872100447, 27.085582180373301 ], [ 77.499796991437947, 27.089173692212107 ], [ 77.499486932176112, 27.095090644017993 ], [ 77.500727167424813, 27.099483141533703 ], [ 77.505067987197819, 27.104883328502801 ], [ 77.513439569280635, 27.109224148275807 ], [ 77.574727818134235, 27.1237193868402 ], [ 77.591367628613099, 27.130747381786243 ], [ 77.598809034709163, 27.14335643175388 ], [ 77.600359328320323, 27.152193101830161 ], [ 77.604080031368298, 27.160668035801159 ], [ 77.617309198060966, 27.16570648936294 ], [ 77.640253533973379, 27.177256171235278 ], [ 77.65730675740086, 27.202706814268019 ], [ 77.652242466316721, 27.214540716980473 ], [ 77.645214471370693, 27.217305406519294 ], [ 77.640460240447666, 27.220819403992262 ], [ 77.635499302151047, 27.225444443706063 ], [ 77.62919477671754, 27.24647675170069 ], [ 77.624853956944534, 27.256941229753913 ], [ 77.61586225813663, 27.268413398159787 ], [ 77.61048790868999, 27.279291287362977 ], [ 77.605526971292633, 27.298334052174759 ], [ 77.607180616791979, 27.308772690906942 ], [ 77.607180616791979, 27.317893581823334 ], [ 77.606147088916984, 27.323629666475874 ], [ 77.602116326607117, 27.329494941438377 ], [ 77.593538038949291, 27.332001248558747 ], [ 77.570697055824425, 27.333060614855462 ], [ 77.562325473741538, 27.335851141916628 ], [ 77.556434361256706, 27.338512477768624 ], [ 77.501967400874818, 27.374866848426272 ], [ 77.494732701253071, 27.378199977846684 ], [ 77.484914178346614, 27.380344549761155 ], [ 77.467447543769069, 27.382644151306515 ], [ 77.459799432098052, 27.3850729440611 ], [ 77.450601026815875, 27.390188910190027 ], [ 77.442539503994823, 27.396183377261018 ], [ 77.434064569124516, 27.406131090477395 ], [ 77.427656690903504, 27.417551581140511 ], [ 77.415254348309446, 27.459280300345533 ], [ 77.403265415066798, 27.473103746240888 ], [ 77.387762486149754, 27.496849066930846 ], [ 77.345594517373044, 27.541885077134559 ], [ 77.340116815138842, 27.550463364792442 ], [ 77.336706171352702, 27.560411078008819 ], [ 77.338153111277038, 27.576172390243578 ], [ 77.340943638338189, 27.585784207575099 ], [ 77.341977167112518, 27.592502143259303 ], [ 77.340323520713838, 27.598444933486853 ], [ 77.334432408229006, 27.604878648330946 ], [ 77.322030063836323, 27.612914334528906 ], [ 77.318309360788348, 27.616867581573608 ], [ 77.317482537588972, 27.621983546803214 ], [ 77.319549595137673, 27.629735012161056 ], [ 77.323373650973139, 27.634825140767585 ], [ 77.331331821906005, 27.642499090860319 ], [ 77.334122348967171, 27.64735667636949 ], [ 77.334742465692202, 27.653247788854337 ], [ 77.332882114617846, 27.671024481794397 ], [ 77.32740441328302, 27.690015571561325 ], [ 77.319652947925178, 27.701616930277105 ], [ 77.314898716102832, 27.706371161200131 ], [ 77.309421013868629, 27.709110012317176 ], [ 77.304460077370635, 27.710427761032342 ], [ 77.300429315060782, 27.711823025012556 ], [ 77.296811964800312, 27.715776272057266 ], [ 77.294228143314101, 27.722003282225664 ], [ 77.295468377663425, 27.744172471782115 ], [ 77.293401320114796, 27.768770453193831 ], [ 77.280688918258917, 27.809439806102144 ], [ 77.306837193281794, 27.832099921174397 ], [ 77.313348423390991, 27.836079005741507 ], [ 77.320893182274503, 27.839386298538834 ], [ 77.326370883609329, 27.839773871267134 ], [ 77.333502232242196, 27.841711738505914 ], [ 77.341667107850682, 27.845742499017085 ], [ 77.353035922569731, 27.853778185215045 ], [ 77.390242953949141, 27.860676988052539 ], [ 77.397581008156962, 27.86452688230974 ], [ 77.424452752692318, 27.890752671698401 ], [ 77.435614861836342, 27.892251288466177 ], [ 77.446776970980395, 27.889434922983291 ], [ 77.459179315373078, 27.88499075042278 ], [ 77.469928013367081, 27.888065497424741 ], [ 77.479849888161752, 27.898039049062842 ], [ 77.488841586969585, 27.920027371465999 ], [ 77.493802525266261, 27.92581513116334 ], [ 77.5081685726215, 27.943281764841565 ], [ 77.529252556560181, 27.952506008545406 ], [ 77.526462030398335, 27.974468492526903 ], [ 77.512302686819481, 27.999609076297808 ], [ 77.503827752848494, 28.020227973142418 ], [ 77.495766229128137, 28.028315335284496 ], [ 77.479746535374247, 28.036454373370582 ], [ 77.46806766139342, 28.046815496837663 ], [ 77.476439242576916, 28.071490994413857 ], [ 77.470651482879575, 28.099370429301864 ], [ 77.469721306892765, 28.112728787203757 ], [ 77.503827752848494, 28.092859199192667 ], [ 77.495766229128137, 28.125983792318145 ], [ 77.494939405928775, 28.15184784650091 ], [ 77.507238396634634, 28.170244656165945 ], [ 77.538657668316702, 28.180993354159959 ], [ 77.528632439835164, 28.192930610559181 ], [ 77.501553989724798, 28.196677151129613 ], [ 77.497006464376767, 28.208924464992034 ], [ 77.501657341612983, 28.21161164016501 ], [ 77.511165806156995, 28.213471991239366 ], [ 77.520674269801688, 28.217218532709119 ], [ 77.525015089574694, 28.225693468478759 ], [ 77.525841912773984, 28.232773139368867 ], [ 77.528322382372025, 28.237837429553728 ], [ 77.532559849357526, 28.241170558974087 ], [ 77.538657668316702, 28.24305674936948 ], [ 77.528942499096999, 28.253469550579261 ], [ 77.503621047273469, 28.256725164734512 ], [ 77.49080529173078, 28.263546454105544 ], [ 77.488841586969585, 28.272538153812711 ], [ 77.489461703694616, 28.286361598808689 ], [ 77.487911410982775, 28.298996487198103 ], [ 77.466517367782259, 28.315222887426266 ], [ 77.47209842280391, 28.340440986462333 ], [ 77.497006464376767, 28.393254299546236 ], [ 77.475715773064437, 28.391316433206775 ], [ 77.468171014180925, 28.396690781754153 ], [ 77.469721306892765, 28.424931951848059 ], [ 77.465793898269723, 28.434285386761182 ], [ 77.456698845775037, 28.434595445123641 ], [ 77.438715448159357, 28.42865265579541 ], [ 77.42817345574035, 28.430668036500656 ], [ 77.425176223104174, 28.435628973898012 ], [ 77.424556104580503, 28.441907660010482 ], [ 77.417424757746332, 28.453948269197266 ], [ 77.417114699383816, 28.459761868215644 ], [ 77.415461052985137, 28.464955348710355 ], [ 77.407606235739124, 28.468986111020165 ], [ 77.402335239979308, 28.467332465520823 ], [ 77.385075310976774, 28.457617296301173 ], [ 77.377220492831427, 28.455343533177476 ], [ 77.375980259381421, 28.460692044202453 ], [ 77.378564080867577, 28.472396754806361 ], [ 77.376910435368231, 28.484127306529949 ], [ 77.363267856626223, 28.48947581575629 ], [ 77.352829216994706, 28.491852932566751 ], [ 77.343527459824344, 28.498286648310163 ], [ 77.335155877741542, 28.507872626320641 ], [ 77.32740441328302, 28.519706529033037 ], [ 77.303219842121933, 28.562908027483438 ], [ 77.297845492675307, 28.569393419170918 ], [ 77.301049431785813, 28.583552760951129 ], [ 77.305080194095623, 28.590451564687946 ], [ 77.31097130658047, 28.596497707703001 ], [ 77.326164178034318, 28.608486640046401 ], [ 77.331331821906005, 28.613525091809485 ], [ 77.335672641679011, 28.619519557981214 ], [ 77.337532992753367, 28.6261858177213 ], [ 77.336912876028322, 28.633911445556741 ], [ 77.333812289705335, 28.644427599554028 ], [ 77.318929478412642, 28.681040350831491 ], [ 77.317689243163997, 28.687319036943954 ], [ 77.317069126438966, 28.696000678288666 ], [ 77.313141716916647, 28.707266140220153 ], [ 77.306940546069299, 28.720598659700379 ], [ 77.227152133863825, 28.783592230896705 ], [ 77.220020786130348, 28.805089626884744 ], [ 77.206274854600835, 28.821858629472153 ], [ 77.216713495131657, 28.843511054191755 ], [ 77.200797154165272, 28.876790676048806 ], [ 77.21309614487113, 28.89728038258357 ], [ 77.219917434242163, 28.90603953739468 ], [ 77.220744257441467, 28.914385281055839 ], [ 77.216920200706667, 28.923635362282134 ], [ 77.209685500185614, 28.935133368210352 ], [ 77.202244094089608, 28.942471422418176 ], [ 77.175475702341743, 28.963064479941739 ], [ 77.177646111778571, 28.980608628885076 ], [ 77.189841749696924, 28.988205063712705 ], [ 77.195732863081091, 28.997584337047492 ], [ 77.16937788338258, 29.036470852347911 ], [ 77.14819054575706, 29.099619452275864 ], [ 77.144986606646555, 29.102642524233083 ], [ 77.140129022036689, 29.104735419304109 ], [ 77.135788202263683, 29.108456122352145 ], [ 77.133927850290021, 29.116362616441556 ], [ 77.135064731851841, 29.118998114771152 ], [ 77.137648553337996, 29.120987657054677 ], [ 77.140232374824208, 29.124165757743523 ], [ 77.141369257285348, 29.130341091068477 ], [ 77.130723911179516, 29.280590318088674 ], [ 77.134031203077527, 29.289271959433329 ], [ 77.144779901071544, 29.301648464505028 ], [ 77.15005089683136, 29.313327338485859 ], [ 77.145606724270849, 29.323843492483142 ], [ 77.137958611700512, 29.333532823281125 ], [ 77.133927850290021, 29.342602037354133 ], [ 77.132894322415027, 29.37221263300659 ], [ 77.133927850290021, 29.380170803040123 ], [ 77.138785434899873, 29.388671576332165 ], [ 77.145400017796504, 29.395518704124861 ], [ 77.149844191256349, 29.403373521370888 ], [ 77.14819054575706, 29.41492320414255 ], [ 77.13062055929133, 29.426395372548363 ], [ 77.102715285082283, 29.426937974907609 ], [ 77.076980422108747, 29.42391490295039 ], [ 77.065611607389698, 29.424845078937206 ], [ 77.072742954223926, 29.440089627234492 ], [ 77.10736616411711, 29.469235133994225 ], [ 77.120285272447333, 29.483782050301379 ], [ 77.10519575378099, 29.495409247438769 ], [ 77.077497186046273, 29.49223114674998 ], [ 77.065611607389698, 29.503677476734136 ], [ 77.068712192813365, 29.502979844743994 ], [ 77.070882603149556, 29.511118882830139 ], [ 77.072432895861411, 29.527887885417549 ], [ 77.070262486424525, 29.536388657810271 ], [ 77.060443964417388, 29.548532619784559 ], [ 77.058170201293692, 29.555483100364764 ], [ 77.064681431402889, 29.569513250935753 ], [ 77.079047478758113, 29.576334540306782 ], [ 77.093310174225095, 29.581140448972512 ], [ 77.099821405233612, 29.58902110374094 ], [ 77.095893995711307, 29.600777492986875 ], [ 77.08896935355277, 29.611526190980889 ], [ 77.085868768129089, 29.624006048840041 ], [ 77.093620232587611, 29.640852565793235 ], [ 77.087832472890256, 29.658500068423383 ], [ 77.113877395125627, 29.682219549792354 ], [ 77.106642693705325, 29.702295844277774 ], [ 77.128140089693346, 29.71423309977768 ], [ 77.137545200550491, 29.722785549013839 ], [ 77.141369257285348, 29.733327542332169 ], [ 77.139302198837342, 29.739942125228868 ], [ 77.135064731851841, 29.747564399377485 ], [ 77.132274203891356, 29.75583262777354 ], [ 77.133927850290021, 29.764359239487298 ], [ 77.140542434086043, 29.769733588034619 ], [ 77.148500604119519, 29.76996613203135 ], [ 77.156148715790536, 29.76906179536552 ], [ 77.161833123599749, 29.771206366380671 ], [ 77.180436638839737, 29.804253445140372 ], [ 77.209685500185614, 29.928845323552817 ], [ 77.220950962117158, 29.960729682328971 ], [ 77.229942660925005, 29.976646023295299 ], [ 77.240071242194048, 29.983467311767008 ], [ 77.277278272674081, 30.017599596144404 ], [ 77.279138624647757, 30.021656195976611 ], [ 77.279138624647757, 30.027082221367372 ], [ 77.280068800634567, 30.032895820385754 ], [ 77.284719679669394, 30.038089300880518 ], [ 77.289267205916744, 30.038761095348256 ], [ 77.301049431785813, 30.037004096162086 ], [ 77.305286899670634, 30.038089300880518 ], [ 77.31086795379295, 30.040414740847602 ], [ 77.315208775364667, 30.039458727338392 ], [ 77.317895948739007, 30.040414740847602 ], [ 77.319136183987638, 30.054470729840308 ], [ 77.320273064650152, 30.060103460806026 ], [ 77.323270298185648, 30.06436676711257 ], [ 77.338979933577022, 30.069663601294156 ], [ 77.370089145997255, 30.096431993042014 ], [ 77.403265415066798, 30.11283926042352 ], [ 77.405745883765448, 30.141597195354272 ], [ 77.414324172322637, 30.152449246135795 ], [ 77.444296503181008, 30.1737140981271 ], [ 77.509408806970825, 30.232366847751788 ], [ 77.55137007017251, 30.261383165100987 ], [ 77.570076939099394, 30.278229682054182 ], [ 77.585063104078969, 30.325203559496618 ], [ 77.58795698392764, 30.370446275275349 ], [ 77.586406691215785, 30.380704046854241 ], [ 77.585063104078969, 30.38292613403382 ], [ 77.618962843560311, 30.402020574789663 ], [ 77.636532830925361, 30.401426297385679 ], [ 77.661544224386404, 30.394915066377155 ], [ 77.750634392862864, 30.325616969747319 ], [ 77.811612583354005, 30.29225983352449 ], [ 77.928918085301333, 30.244329942572779 ], [ 77.946074659717709, 30.22833608724061 ], [ 77.939873487971042, 30.215081082126225 ], [ 77.920546503218503, 30.19872549068884 ], [ 77.86918012915956, 30.165755927194247 ], [ 77.834970331315716, 30.131391099719448 ], [ 77.790631952202759, 30.039484564860739 ], [ 77.746396925877363, 29.977343655285434 ], [ 77.743089633979352, 29.959954535073731 ], [ 77.748153924164214, 29.919853623845647 ], [ 77.747017042602394, 29.877995714330716 ], [ 77.750944452124699, 29.860193182968988 ], [ 77.767687616290388, 29.819368801329112 ], [ 77.776369256735777, 29.767485663332646 ], [ 77.783810662831783, 29.741750800359103 ], [ 77.831456332943375, 29.659895331504337 ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Uttaranchal", "admin": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.388363078193478, 31.069474182287639 ], [ 79.394977661090124, 31.036711324368117 ], [ 79.401592244886146, 31.023637187306338 ], [ 79.41440800042885, 31.020381571352395 ], [ 79.430737753444518, 31.023172099312877 ], [ 79.446344035149068, 31.023792216037915 ], [ 79.461640259390407, 31.021105042663567 ], [ 79.476419718794929, 31.01402537087414 ], [ 79.480760539467255, 31.010046285407718 ], [ 79.484274536040957, 31.005447083216314 ], [ 79.486858358426431, 31.000227763400513 ], [ 79.488201946462638, 30.994491679647286 ], [ 79.497607056420449, 30.981210836111181 ], [ 79.512696574187459, 30.966172994288222 ], [ 79.529646443928172, 30.953563945219848 ], [ 79.544219197757727, 30.947414449417284 ], [ 79.565923299320772, 30.942453512019927 ], [ 79.57780887887661, 30.938371074665319 ], [ 79.589487752857437, 30.940231424840359 ], [ 79.630312134497359, 30.962503967184311 ], [ 79.648192179325548, 30.965759583138198 ], [ 79.688499797027973, 30.967413229536866 ], [ 79.739039347887555, 30.97924713135 ], [ 79.760640095763776, 30.977231751544078 ], [ 79.833503865810698, 30.961522115253381 ], [ 79.850350382763892, 30.954494120307391 ], [ 79.862856079044761, 30.941523336033121 ], [ 79.880426066409811, 30.91284291636747 ], [ 79.903163696747171, 30.890208639716942 ], [ 79.914635356136714, 30.883818887331749 ], [ 79.91936951599034, 30.881181945590292 ], [ 79.934893025892379, 30.872535299564383 ], [ 80.005586386502486, 30.847265524584252 ], [ 80.028634074303028, 30.830780741937634 ], [ 80.044447062481922, 30.806699524463447 ], [ 80.062533813784427, 30.784788717325387 ], [ 80.092196085380948, 30.774505107324835 ], [ 80.109249308808486, 30.778122458484624 ], [ 80.140668580490555, 30.793211975352325 ], [ 80.157101684495075, 30.793160299408264 ], [ 80.169297322413442, 30.785253804419536 ], [ 80.196065715060669, 30.748098449883503 ], [ 80.224591105095357, 30.734094136834919 ], [ 80.231412394466403, 30.724947408396122 ], [ 80.207021119529017, 30.686138407461492 ], [ 80.199889770896149, 30.68071238207073 ], [ 80.191724894388344, 30.679678853296416 ], [ 80.182009725168641, 30.680040589401631 ], [ 80.172914672673954, 30.679162089358893 ], [ 80.166610148139782, 30.674407858435863 ], [ 80.166920207401603, 30.661902161255732 ], [ 80.17725549334628, 30.649861552068948 ], [ 80.190588012826467, 30.637975973412434 ], [ 80.199889770896149, 30.625883687382263 ], [ 80.203300416480971, 30.606349996155348 ], [ 80.19782271334752, 30.591363831175837 ], [ 80.188417602490333, 30.576997782921346 ], [ 80.179839314832435, 30.559479472399676 ], [ 80.216219523012555, 30.566817526607558 ], [ 80.252806437666933, 30.565008851477266 ], [ 80.325876912389532, 30.546508687226087 ], [ 80.42499230934753, 30.497829488340177 ], [ 80.475428507419593, 30.48046620744946 ], [ 80.508294719026011, 30.462327779303557 ], [ 80.525141235979206, 30.458607076255522 ], [ 80.545088338356067, 30.461035869010107 ], [ 80.559971151447414, 30.465118306364722 ], [ 80.575267374789448, 30.466255187926539 ], [ 80.596351360526825, 30.459795635560106 ], [ 80.694743286173633, 30.41173655249985 ], [ 80.723061972432021, 30.392047832541426 ], [ 80.735360962238573, 30.378198547325088 ], [ 80.754998006252933, 30.345797425510735 ], [ 80.767193644171272, 30.331431376356925 ], [ 80.781663045213335, 30.320992737624746 ], [ 80.866980834697742, 30.288488261224241 ], [ 80.943772013367649, 30.270143128402641 ], [ 80.976018107349702, 30.25520863846787 ], [ 80.996275268988413, 30.226889954008122 ], [ 81.003303263934455, 30.212730611328649 ], [ 80.996016887469338, 30.196969299993153 ], [ 80.988162068424657, 30.196555887943866 ], [ 80.920827677455264, 30.176660462410371 ], [ 80.903309366933669, 30.180432841402475 ], [ 80.893645875456713, 30.198106181555026 ], [ 80.88387902849432, 30.210405172260884 ], [ 80.867911010684551, 30.200173238204336 ], [ 80.850392700162942, 30.181931458170251 ], [ 80.836440063957738, 30.170045879513726 ], [ 80.849669230650406, 30.143380840553327 ], [ 80.829825480161716, 30.117129211843629 ], [ 80.769674112869936, 30.077286682134623 ], [ 80.755721476664789, 30.064574280278798 ], [ 80.725749145806361, 30.022768047607304 ], [ 80.715827271011719, 30.013311259007359 ], [ 80.680170532344135, 29.992072245437779 ], [ 80.654125610108778, 29.970574849449743 ], [ 80.641413208252885, 29.963443502615512 ], [ 80.622292928176066, 29.958172505956377 ], [ 80.586222778358476, 29.954141745445149 ], [ 80.571339966166448, 29.946855367181453 ], [ 80.562865031296084, 29.929698791865743 ], [ 80.549532511815912, 29.89368031889159 ], [ 80.527311645416063, 29.862416076840468 ], [ 80.476151977831464, 29.806140442227612 ], [ 80.454861287418424, 29.79058583646718 ], [ 80.395226684963504, 29.776581523418535 ], [ 80.368975057153122, 29.757926330435787 ], [ 80.354298951435439, 29.730279440443777 ], [ 80.354402303323567, 29.704880473355153 ], [ 80.363910766968246, 29.679714050263208 ], [ 80.377553344810948, 29.652945659414623 ], [ 80.386751750093111, 29.626823221914147 ], [ 80.385201456481965, 29.604834900410307 ], [ 80.373315877825448, 29.584190165143973 ], [ 80.350784953063098, 29.562072652430967 ], [ 80.345100545253885, 29.558351949382931 ], [ 80.332698201760579, 29.552460835998765 ], [ 80.327220500425696, 29.548585103319844 ], [ 80.323603149265836, 29.541660462060626 ], [ 80.325050090089562, 29.535510966258066 ], [ 80.327633912475036, 29.529929911236415 ], [ 80.327220500425696, 29.524839783529149 ], [ 80.320089151792885, 29.515822245400265 ], [ 80.311510864135002, 29.508122456885864 ], [ 80.291460408970607, 29.494738261461574 ], [ 80.291150349708829, 29.494609070252341 ], [ 80.282055298113491, 29.484299621830065 ], [ 80.273063598406267, 29.478666890864297 ], [ 80.266242309934611, 29.472129822333436 ], [ 80.263451781974126, 29.459236552424951 ], [ 80.257457316701775, 29.450063986463753 ], [ 80.228311808143403, 29.441718241903338 ], [ 80.217666463836196, 29.434638570113911 ], [ 80.213739054313834, 29.416887716494891 ], [ 80.220973754834844, 29.400118713907482 ], [ 80.242161092460407, 29.367407531932027 ], [ 80.249499145768922, 29.326996562341428 ], [ 80.254976847103734, 29.316635437075707 ], [ 80.263555135660951, 29.315317688360601 ], [ 80.272753540043809, 29.315705261088901 ], [ 80.280091593352296, 29.310150045388237 ], [ 80.282778769424596, 29.291313985252195 ], [ 80.27874800621548, 29.268085429399029 ], [ 80.258180786214254, 29.202456359873104 ], [ 80.248672323468881, 29.204394226212568 ], [ 80.23606327440055, 29.213075867557215 ], [ 80.21880334449871, 29.211086324374374 ], [ 80.213739054313834, 29.196565246488881 ], [ 80.230482218479523, 29.154733174496403 ], [ 80.233066039965749, 29.139307759945147 ], [ 80.220663696472386, 29.126078593252423 ], [ 80.20144006450731, 29.121169332698503 ], [ 80.180562785244291, 29.12132436143013 ], [ 80.163509562716101, 29.123365581456415 ], [ 80.132607055870864, 29.110213928230163 ], [ 80.113073365543329, 29.072205912972485 ], [ 80.104701783460456, 29.027609151441137 ], [ 80.107905720772337, 28.994768779155823 ], [ 80.107905720772337, 28.99458791110316 ], [ 80.099430785902015, 28.977276306156565 ], [ 80.085168091334296, 28.967483623470393 ], [ 80.068424927168593, 28.959938864586885 ], [ 80.052921997352243, 28.949112650428436 ], [ 80.040519653858865, 28.932808737633131 ], [ 80.033905070062858, 28.9159363813589 ], [ 80.031114543001692, 28.897797953212937 ], [ 80.030287719802374, 28.877669983682768 ], [ 80.03638553876155, 28.837026469196186 ], [ 80.054782348426599, 28.824184876131081 ], [ 80.073053575861806, 28.820924647554417 ], [ 80.069665969109138, 28.805167141250525 ], [ 80.064705030812462, 28.79379832653154 ], [ 80.055506626429604, 28.77909638149281 ], [ 80.028014764269912, 28.752250475379121 ], [ 80.014268832740399, 28.743568834034416 ], [ 80.000626254897711, 28.737315986343667 ], [ 79.987190382630033, 28.733569443974655 ], [ 79.971997512075433, 28.73287181198452 ], [ 79.953600702410412, 28.736282457569352 ], [ 79.93479047979676, 28.74759959634428 ], [ 79.928899367311928, 28.757702338292226 ], [ 79.929932896086243, 28.768554389073749 ], [ 79.934067010284224, 28.776615911894787 ], [ 79.931483188798083, 28.782196966916437 ], [ 79.91877078604287, 28.780155747789529 ], [ 79.906575148124531, 28.776150823901382 ], [ 79.895723098242328, 28.775194810392172 ], [ 79.890142043220678, 28.782507026178273 ], [ 79.891175571994992, 28.79322988485125 ], [ 79.8951029797187, 28.805089626884744 ], [ 79.893552687906194, 28.814184679379419 ], [ 79.887041456897677, 28.818008735214953 ], [ 79.873192172580644, 28.815812486457041 ], [ 79.844460076970947, 28.804857082888013 ], [ 79.834124790126893, 28.805787257975563 ], [ 79.827923618380211, 28.814494736842612 ], [ 79.828647088792067, 28.824519965324097 ], [ 79.83794884596243, 28.844751288541087 ], [ 79.841049432285416, 28.855293280960151 ], [ 79.832057732578264, 28.865990302110724 ], [ 79.812627395038163, 28.876868191313967 ], [ 79.763638136890421, 28.884387111775762 ], [ 79.743277621564957, 28.885239773396787 ], [ 79.729945102984033, 28.879607042431012 ], [ 79.730255161346562, 28.873457545729128 ], [ 79.729221632572248, 28.866377874839024 ], [ 79.725604283211027, 28.858910631220617 ], [ 79.699352655400645, 28.850435696350292 ], [ 79.632793409887924, 28.863328966258788 ], [ 79.612329542674203, 28.853277900254842 ], [ 79.600237258442675, 28.849040432370025 ], [ 79.588248326099333, 28.849117946735806 ], [ 79.580393507953971, 28.85947907200153 ], [ 79.574812452932335, 28.871080430717246 ], [ 79.566544223636967, 28.879348660012614 ], [ 79.526236606833876, 28.878418484025808 ], [ 79.443657667567251, 28.849583034729267 ], [ 79.430531853662089, 28.876325588055401 ], [ 79.41668257024439, 28.921775011207782 ], [ 79.409964633660849, 28.93125763643075 ], [ 79.401282993215531, 28.940791938497163 ], [ 79.385780064298487, 28.954615383493145 ], [ 79.378958774927455, 28.963141995206904 ], [ 79.371207309569598, 28.969885769312778 ], [ 79.361285434774956, 28.970325018884516 ], [ 79.351983676705274, 28.965725815793743 ], [ 79.340614861986225, 28.962986965575954 ], [ 79.320047641985056, 28.964537258287802 ], [ 79.296379835660829, 28.971565253233837 ], [ 79.170599399742443, 29.05112112144257 ], [ 79.154889764351068, 29.065125434491158 ], [ 79.145277947918927, 29.077811997925313 ], [ 79.143210891269547, 29.087320462469325 ], [ 79.142797479220221, 29.097707424358131 ], [ 79.139180128959751, 29.106905828740985 ], [ 79.130395134827538, 29.115251573301457 ], [ 79.05587772018059, 29.151760972690731 ], [ 79.043165318324711, 29.15478404374857 ], [ 79.036654087316251, 29.153879706183478 ], [ 79.013399693041364, 29.142019965049307 ], [ 78.950354445001594, 29.127007962547385 ], [ 78.913767531246521, 29.105588080025822 ], [ 78.905085890801146, 29.158788966737397 ], [ 78.89826460232949, 29.177366645354361 ], [ 78.885655552361797, 29.197365424574677 ], [ 78.867672153846783, 29.215167955037082 ], [ 78.721531202602847, 29.284026801195917 ], [ 78.714089797406174, 29.290589708148492 ], [ 78.716053501268036, 29.292889308794535 ], [ 78.726285435324527, 29.297876085512936 ], [ 78.726595492787723, 29.30443899246551 ], [ 78.724941848187697, 29.310304267427959 ], [ 78.726182081637702, 29.316272895177967 ], [ 78.730936314359369, 29.320071113491046 ], [ 78.749229771236884, 29.323843492483142 ], [ 78.755947706921091, 29.328675239570654 ], [ 78.761115349893416, 29.330303045748956 ], [ 78.767316521640097, 29.327564195531174 ], [ 78.77661827970978, 29.321983141408847 ], [ 78.787780388853818, 29.318985907873351 ], [ 78.796772088560985, 29.320768744581862 ], [ 78.809484491316184, 29.342136949360672 ], [ 78.816305779787839, 29.349991767506019 ], [ 78.824987421132533, 29.352627264936299 ], [ 78.831395297554849, 29.350327664290258 ], [ 78.838216586925896, 29.346038520461313 ], [ 78.847518344995578, 29.345263373206073 ], [ 78.860024042175766, 29.35025014902515 ], [ 78.906946241875502, 29.388361517969649 ], [ 78.915111118383365, 29.400092067894597 ], [ 78.919038527006336, 29.412520249809681 ], [ 78.919968702993216, 29.422183743085263 ], [ 78.906429477938033, 29.430451972380574 ], [ 78.833048943953514, 29.443862006226588 ], [ 78.806383904993183, 29.453086249031166 ], [ 78.643086379332857, 29.537577216215531 ], [ 78.589032831000324, 29.580106920198197 ], [ 78.554202914632739, 29.620905463416356 ], [ 78.53611616422954, 29.647803046373486 ], [ 78.514825473816515, 29.689144191950891 ], [ 78.478651971211477, 29.721958726713861 ], [ 78.380570103027807, 29.761568712426136 ], [ 78.361656529425247, 29.775495510209616 ], [ 78.352664828818746, 29.787768663393074 ], [ 78.325379673133384, 29.843088284496719 ], [ 78.286518996254628, 29.892310085741823 ], [ 78.228331332824709, 29.947423001270462 ], [ 78.217685987618182, 29.953675848961257 ], [ 78.208694288810349, 29.95553620003556 ], [ 78.193604771043326, 29.956207994503295 ], [ 78.177275018027586, 29.952590644242825 ], [ 78.167663201595403, 29.946932073956013 ], [ 78.159808384349432, 29.938560491873194 ], [ 78.154950798840261, 29.925434678867298 ], [ 78.156397739663916, 29.899906521468772 ], [ 78.160738560336242, 29.877143052709691 ], [ 78.190504184720311, 29.792600409581208 ], [ 78.197842238028827, 29.748158678580118 ], [ 78.18905724479599, 29.706688340894171 ], [ 78.154950798840261, 29.674984850170681 ], [ 78.107201775941149, 29.65452098205764 ], [ 78.084360792816284, 29.660722153804318 ], [ 78.07609256442025, 29.664055284124053 ], [ 78.040022413703397, 29.688188178441631 ], [ 77.982764927159607, 29.718754788502672 ], [ 77.966538526931444, 29.724413356990791 ], [ 77.95372277228806, 29.723198961063183 ], [ 77.923026971017848, 29.700952257140944 ], [ 77.831456332943375, 29.659895331504337 ], [ 77.783810662831783, 29.741750800359103 ], [ 77.776369256735777, 29.767485663332646 ], [ 77.767687616290388, 29.819368801329112 ], [ 77.750944452124699, 29.860193182968988 ], [ 77.747017042602394, 29.877995714330716 ], [ 77.748153924164214, 29.919853623845647 ], [ 77.743089633979352, 29.959954535073731 ], [ 77.746396925877363, 29.977343655285434 ], [ 77.790631952202759, 30.039484564860739 ], [ 77.834970331315716, 30.131391099719448 ], [ 77.86918012915956, 30.165755927194247 ], [ 77.920546503218503, 30.19872549068884 ], [ 77.939873487971042, 30.215081082126225 ], [ 77.946074659717709, 30.22833608724061 ], [ 77.928918085301333, 30.244329942572779 ], [ 77.811612583354005, 30.29225983352449 ], [ 77.750634392862864, 30.325616969747319 ], [ 77.661544224386404, 30.394915066377155 ], [ 77.636532830925361, 30.401426297385679 ], [ 77.618962843560311, 30.402020574789663 ], [ 77.585063104078969, 30.38292613403382 ], [ 77.581445753818429, 30.388920600205484 ], [ 77.567493116713919, 30.406361396361312 ], [ 77.565322707277048, 30.414862168754034 ], [ 77.575864698796721, 30.428737291492773 ], [ 77.597775506834111, 30.437031358310488 ], [ 77.623303664232694, 30.441113797463739 ], [ 77.644491000958894, 30.442173162861128 ], [ 77.664954868172558, 30.445971381174267 ], [ 77.68862267359745, 30.455195623978845 ], [ 77.768514438590429, 30.498190415954916 ], [ 77.79166548007781, 30.507285468449584 ], [ 77.801794061346783, 30.508370673168027 ], [ 77.812956171390155, 30.521057237501505 ], [ 77.815333286401966, 30.5314183618679 ], [ 77.815023228039507, 30.540229194421777 ], [ 77.813782992790806, 30.546662909265816 ], [ 77.808925409080288, 30.551959744346725 ], [ 77.798486770348092, 30.553690904211855 ], [ 77.784740838818593, 30.554672756142729 ], [ 77.773578728775291, 30.557644151256561 ], [ 77.765827264316769, 30.566170762970327 ], [ 77.743296339554362, 30.600561427967527 ], [ 77.745260044315529, 30.605858263048386 ], [ 77.763346795618062, 30.616451931411454 ], [ 77.769031203427275, 30.625572822327843 ], [ 77.770788201714069, 30.635055447550819 ], [ 77.764690382754878, 30.660841987367792 ], [ 77.760349562082567, 30.668567613404594 ], [ 77.744329868328734, 30.685388291936071 ], [ 77.740195754130667, 30.697687283541253 ], [ 77.739265578143858, 30.71946889947008 ], [ 77.734924758370852, 30.73590200527331 ], [ 77.707019484161819, 30.759414781067271 ], [ 77.703402133901292, 30.773599962168472 ], [ 77.705779249812494, 30.791454169474314 ], [ 77.729136996874885, 30.836386826890529 ], [ 77.741746046842522, 30.869743964012677 ], [ 77.751874628111565, 30.883050645071187 ], [ 77.760349562082567, 30.883903306692211 ], [ 77.769341261789734, 30.876875311746222 ], [ 77.773992140824561, 30.874007270319222 ], [ 77.787221306617965, 30.873774726322548 ], [ 77.793422479263981, 30.895737210303988 ], [ 77.792905715326455, 30.919792589356511 ], [ 77.789081658591599, 30.930644640137974 ], [ 77.781433546920582, 30.937130031825454 ], [ 77.771511672125925, 30.94165172055045 ], [ 77.762209914056243, 30.949971624890559 ], [ 77.750117628925381, 30.969040229023328 ], [ 77.749704216876054, 30.979918118226571 ], [ 77.756525507146407, 30.985421657983117 ], [ 77.765207146692418, 30.983897202793617 ], [ 77.775542434435721, 30.980150662223245 ], [ 77.784120721194299, 30.980150662223245 ], [ 77.793215772789637, 30.984052232424563 ], [ 77.802104119709313, 30.992165432088985 ], [ 77.808201938668489, 31.003999334801442 ], [ 77.806961704319164, 31.013068548874394 ], [ 77.796006300750136, 31.031362005751923 ], [ 77.798486770348092, 31.041361395811744 ], [ 77.806031529231603, 31.050508124250531 ], [ 77.865872837261563, 31.10277883587457 ], [ 77.89780887198178, 31.137996324071079 ], [ 77.928918085301333, 31.165255642234047 ], [ 77.941113723219686, 31.172903753905064 ], [ 77.952792596301251, 31.176288561068183 ], [ 77.963747999870222, 31.176133531437294 ], [ 78.008913202182484, 31.169079698069588 ], [ 78.027723422997525, 31.169854845324828 ], [ 78.039712355340868, 31.172180284392585 ], [ 78.070821567761115, 31.185202745510246 ], [ 78.117227004422645, 31.214193224437729 ], [ 78.186163364947262, 31.248092963019811 ], [ 78.234532504571376, 31.261192939402626 ], [ 78.284245233130932, 31.290338447061679 ], [ 78.297371047036151, 31.294265854785341 ], [ 78.312977328740686, 31.294498398782071 ], [ 78.348427361833259, 31.289873359068217 ], [ 78.368684522572593, 31.290028387799843 ], [ 78.378709751054117, 31.287702948732079 ], [ 78.386047805261953, 31.2826128201255 ], [ 78.391112095446815, 31.274344590830189 ], [ 78.401654086966488, 31.268143419083508 ], [ 78.411162550611195, 31.267678331090103 ], [ 78.425011834928199, 31.270236314154534 ], [ 78.433693475373531, 31.268065903818403 ], [ 78.442685174181392, 31.261968084859223 ], [ 78.47369103381412, 31.231918240534348 ], [ 78.490950961917321, 31.222177231993665 ], [ 78.500976190398816, 31.21956757298511 ], [ 78.518856236126325, 31.221557115268627 ], [ 78.539940220065063, 31.226518053565304 ], [ 78.581694776792446, 31.231065578913327 ], [ 78.605155878440982, 31.230032050138952 ], [ 78.621899041707337, 31.22625967114686 ], [ 78.633371210113225, 31.220807807334431 ], [ 78.651561314203249, 31.21538178194367 ], [ 78.666547479182753, 31.214296576325918 ], [ 78.687218051971499, 31.215846869037755 ], [ 78.722564732276552, 31.213805649910789 ], [ 78.753467238222399, 31.209180610196992 ], [ 78.778478631683456, 31.209697374134457 ], [ 78.792741327150495, 31.207010199860797 ], [ 78.800596145295842, 31.199878852127309 ], [ 78.819716423574036, 31.164325466247242 ], [ 78.833565707891054, 31.146832994147349 ], [ 78.846278110646239, 31.135154120166472 ], [ 78.869532504921139, 31.121976630317185 ], [ 78.93319786968587, 31.118514308788285 ], [ 78.946955204618945, 31.120133557018043 ], [ 78.961516555044952, 31.12184743910802 ], [ 78.993245884190159, 31.130787461971742 ], [ 78.997069940025639, 31.147272243719037 ], [ 78.993349236977664, 31.163395291159752 ], [ 78.963583611694261, 31.203134467181872 ], [ 78.936298456008885, 31.240367336983009 ], [ 78.905189242689332, 31.267678331090103 ], [ 78.897747836593325, 31.275119737186106 ], [ 78.878876265826975, 31.299550770251802 ], [ 78.890305623805418, 31.309562887517242 ], [ 78.901261027374446, 31.323670552454015 ], [ 78.91810754432764, 31.354418030567608 ], [ 78.934747355705881, 31.347338359677558 ], [ 78.95955204269255, 31.325117493277666 ], [ 78.976191854070734, 31.32000152624942 ], [ 78.988800903139108, 31.34325592142363 ], [ 78.99562219340946, 31.386819153281291 ], [ 79.014639119799455, 31.425473125484356 ], [ 79.063318318685418, 31.433638001092838 ], [ 79.077787719727425, 31.427178446927762 ], [ 79.105589640249647, 31.406197814877256 ], [ 79.13917932136853, 31.388627828411526 ], [ 79.145380493115198, 31.374778544094507 ], [ 79.149514608212527, 31.359275614278143 ], [ 79.159953246944767, 31.344496154873632 ], [ 79.167808065090057, 31.341447245394015 ], [ 79.186721640491243, 31.339535217476275 ], [ 79.19374963453798, 31.335349426434835 ], [ 79.198400512673444, 31.324910787702656 ], [ 79.197573690373446, 31.315609030532297 ], [ 79.19488651520048, 31.306152241932402 ], [ 79.194163045687944, 31.295351867994263 ], [ 79.1979871024228, 31.287342021117347 ], [ 79.213386679451645, 31.276903381485841 ], [ 79.219071085462176, 31.269461975389838 ], [ 79.219587850299021, 31.260832010888574 ], [ 79.217004028812809, 31.252512106548458 ], [ 79.21555708798914, 31.243727112416305 ], [ 79.219691203086526, 31.233701883934764 ], [ 79.23498742732788, 31.223418273934154 ], [ 79.252144003542853, 31.219749248628879 ], [ 79.266096638848722, 31.212307842532869 ], [ 79.271884399445455, 31.191017151220528 ], [ 79.272297811494738, 31.171896871143637 ], [ 79.27508833945528, 31.154223530991136 ], [ 79.282219686289451, 31.138203837237249 ], [ 79.295655559456449, 31.124147847345277 ], [ 79.321080363168136, 31.112313945532144 ], [ 79.348262166066078, 31.105389302474283 ], [ 79.372343384439574, 31.094072165497998 ], [ 79.382592595371904, 31.078334666411703 ], [ 79.388363078193478, 31.069474182287639 ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Jharkhand", "admin": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.681191033938987, 25.245436103393438 ], [ 87.726149529776905, 25.251611435819079 ], [ 87.749610629626801, 25.248226630454607 ], [ 87.759945917370118, 25.243498237053981 ], [ 87.77017784962797, 25.23698700604546 ], [ 87.778756138185187, 25.227556056766609 ], [ 87.783717075582544, 25.21409434697653 ], [ 87.783510370007519, 25.200296739502896 ], [ 87.779066197447008, 25.191976834263464 ], [ 87.773278435950985, 25.184509588846417 ], [ 87.769454380115505, 25.173140774127429 ], [ 87.768730909703649, 25.159239813866289 ], [ 87.770384556102314, 25.147948513513079 ], [ 87.776275668587147, 25.124719956760593 ], [ 87.776482375061491, 25.117924505811281 ], [ 87.775138787924647, 25.103300076037662 ], [ 87.776275668587147, 25.096788845029145 ], [ 87.781029901308813, 25.089890042191652 ], [ 87.786921013793673, 25.087538763802907 ], [ 87.792605421602872, 25.086582750293697 ], [ 87.797359654324552, 25.083740546389087 ], [ 87.835600213578942, 25.047101955790591 ], [ 87.844075148449278, 25.041546739190661 ], [ 87.84955284978416, 25.030643012465013 ], [ 87.858854607853843, 25.008887234058584 ], [ 87.877458123993136, 24.938865667916215 ], [ 87.880868767779347, 24.915507920853823 ], [ 87.881902296553704, 24.891969305738822 ], [ 87.879111770391816, 24.87868846310209 ], [ 87.866709425999133, 24.862410386929803 ], [ 87.861955194176844, 24.851532497726559 ], [ 87.857924431866962, 24.800527858873576 ], [ 87.856684198416971, 24.79605784789134 ], [ 87.854203728818987, 24.789701646513773 ], [ 87.8486226746966, 24.787091987505217 ], [ 87.841181267701288, 24.788306383432822 ], [ 87.830742628969091, 24.794817613542019 ], [ 87.823714634023062, 24.796884671090702 ], [ 87.815859815877772, 24.794662583911073 ], [ 87.81100223216724, 24.785541693894054 ], [ 87.812449172091576, 24.775697333465125 ], [ 87.817410108589613, 24.767351588904656 ], [ 87.823301222873098, 24.763605048334277 ], [ 87.83043256970727, 24.761382962054025 ], [ 87.853273552832135, 24.758437405361967 ], [ 87.857924431866962, 24.755285143094849 ], [ 87.861128370977468, 24.750995999265903 ], [ 87.867949660348515, 24.736862494108774 ], [ 87.874770948820156, 24.726087957693089 ], [ 87.876838007268177, 24.7161919213201 ], [ 87.877458123993136, 24.702962755526748 ], [ 87.879008416704977, 24.694384466969545 ], [ 87.883039178115524, 24.687123928026828 ], [ 87.88893029239901, 24.680974433123591 ], [ 87.895441521608902, 24.670303250394678 ], [ 87.895338168821397, 24.661828315524296 ], [ 87.890790642574061, 24.655859686875029 ], [ 87.880662063103642, 24.650020250334244 ], [ 87.873427361683341, 24.644258328159303 ], [ 87.87012006978533, 24.63469818857055 ], [ 87.873840772833347, 24.629788927117257 ], [ 87.881592238191203, 24.626998399156772 ], [ 87.888000116412201, 24.626920884790987 ], [ 87.899989047856224, 24.620952257041033 ], [ 87.894821404883857, 24.604415798450297 ], [ 87.888000116412201, 24.597361965082595 ], [ 87.877251418418197, 24.588680325536583 ], [ 87.864228957300483, 24.582711696887255 ], [ 87.84924279232095, 24.579533596198466 ], [ 87.834876744066406, 24.579146023470166 ], [ 87.822991163611263, 24.581393948172146 ], [ 87.81193240815405, 24.586535752722789 ], [ 87.803147414021893, 24.591858425326045 ], [ 87.792915480864721, 24.596586818726671 ], [ 87.782166782870704, 24.599816596258897 ], [ 87.767697381828654, 24.601599432967415 ], [ 87.757465447772162, 24.599299832321371 ], [ 87.75085086487546, 24.59333120457142 ], [ 87.752401157587286, 24.587233384712928 ], [ 87.759842563683293, 24.581497300959647 ], [ 87.77172814323913, 24.578293361849145 ], [ 87.782373488445657, 24.574288437960998 ], [ 87.788988072241679, 24.569560045459689 ], [ 87.790848423316035, 24.562454535248598 ], [ 87.787127720267989, 24.533825792426338 ], [ 87.788574660192339, 24.526410223852729 ], [ 87.797256300637727, 24.51504140913368 ], [ 87.800046827698893, 24.508220119762704 ], [ 87.800460239748233, 24.500778712767382 ], [ 87.798496534987052, 24.494525865076575 ], [ 87.794155715214046, 24.485766710265459 ], [ 87.789298129704861, 24.479901435302956 ], [ 87.780409783684533, 24.471788234739218 ], [ 87.776275668587147, 24.464295151799767 ], [ 87.775345494398991, 24.455510159466254 ], [ 87.778446078923338, 24.446001694922241 ], [ 87.779789666959502, 24.435485540924955 ], [ 87.775758904649678, 24.419310818439492 ], [ 87.733797642347241, 24.334690660045901 ], [ 87.720568474755268, 24.317792467148642 ], [ 87.691836379145556, 24.296553453579005 ], [ 87.666101516171963, 24.280197862141613 ], [ 87.652872348579962, 24.276890571142921 ], [ 87.631478306278751, 24.26937164978181 ], [ 87.623726840920924, 24.260483302862092 ], [ 87.621866489846568, 24.25066478085494 ], [ 87.623313429770889, 24.239993598126027 ], [ 87.623313429770889, 24.23022675206294 ], [ 87.624553664120228, 24.222940374698506 ], [ 87.628997836680739, 24.219607245278148 ], [ 87.634888950964267, 24.220537421264957 ], [ 87.641400181073422, 24.223431301113628 ], [ 87.645947707320758, 24.223482977957072 ], [ 87.652768995792457, 24.218909614187336 ], [ 87.663414340998983, 24.200409450835476 ], [ 87.661553989924627, 24.186198432211874 ], [ 87.650908644718115, 24.17948049652767 ], [ 87.636129185313607, 24.178162746913241 ], [ 87.60543338404338, 24.182090156435546 ], [ 87.594064569324345, 24.178446966854032 ], [ 87.589310336602679, 24.170824692705359 ], [ 87.586829868803335, 24.149223944829142 ], [ 87.581868931405978, 24.136537380495664 ], [ 87.572050409398841, 24.117572130049716 ], [ 87.563265415266628, 24.11206859029317 ], [ 87.551689894972625, 24.1137997501583 ], [ 87.52967573414773, 24.132971707078575 ], [ 87.517273390654381, 24.138914496406862 ], [ 87.506628046347188, 24.140232245121972 ], [ 87.497739699427527, 24.138320217204235 ], [ 87.48854129414535, 24.132429103820066 ], [ 87.486887647746684, 24.124135037002358 ], [ 87.492572055555826, 24.097909246714316 ], [ 87.489988234069671, 24.081579495497287 ], [ 87.49122846931833, 24.055922145990216 ], [ 87.48874799972036, 24.046852931917268 ], [ 87.481720004774374, 24.040186672177182 ], [ 87.472004835554657, 24.034063014796281 ], [ 87.458155552136972, 24.019826157750963 ], [ 87.446580030943593, 24.016699733905561 ], [ 87.417641228859537, 24.023934434426561 ], [ 87.397177361645888, 24.023391832067368 ], [ 87.338059523128408, 24.001842760135268 ], [ 87.332168409744241, 24.002747096801041 ], [ 87.328137648333765, 24.007604682310209 ], [ 87.325450474060105, 24.017526557104922 ], [ 87.324520298073224, 24.03078156221931 ], [ 87.321729771012073, 24.042667140875832 ], [ 87.316148715990423, 24.051090399802089 ], [ 87.309017369156194, 24.056206365931011 ], [ 87.301575962160868, 24.056852321977029 ], [ 87.254757115248637, 24.046672064763975 ], [ 87.235533482384241, 24.040419216173852 ], [ 87.227161900301411, 24.033701280489701 ], [ 87.22571496037709, 24.027345079112077 ], [ 87.231296013600101, 24.019206041025935 ], [ 87.2471090026783, 24.005770168758257 ], [ 87.251449823350626, 24.000499172099065 ], [ 87.251449823350626, 23.993212796533321 ], [ 87.252379999337435, 23.987063299831384 ], [ 87.256720819110441, 23.980707099353133 ], [ 87.276151158449153, 23.966134345523578 ], [ 87.282972446920823, 23.954868882692775 ], [ 87.285142857257014, 23.940683702490841 ], [ 87.282662387658974, 23.927945462213295 ], [ 87.275634392712988, 23.915543117820611 ], [ 87.267262810630115, 23.909832872489055 ], [ 87.255790643123632, 23.909987901220624 ], [ 87.250416293676921, 23.905543727760794 ], [ 87.247625766615769, 23.897508043361476 ], [ 87.24824588424012, 23.875958971429377 ], [ 87.24648888505395, 23.864951891016908 ], [ 87.241217889294063, 23.850844225180815 ], [ 87.232536248848731, 23.845831610940078 ], [ 87.225094841853405, 23.846296698034159 ], [ 87.213002556722557, 23.862910670990622 ], [ 87.20535444505154, 23.868879298740634 ], [ 87.196672804606223, 23.871282253972815 ], [ 87.18602746029903, 23.872780869841272 ], [ 87.16504682824845, 23.878465278549751 ], [ 87.154298130254446, 23.879938055996483 ], [ 87.144686313822248, 23.878129380866191 ], [ 87.139311965274928, 23.873323473099781 ], [ 87.137244907726227, 23.86774241807813 ], [ 87.139415318062433, 23.859939276776167 ], [ 87.146133253746584, 23.852704576255171 ], [ 87.163289829062293, 23.837770087219717 ], [ 87.168457472933966, 23.829424343558564 ], [ 87.170317824008336, 23.823533230174398 ], [ 87.166287062597789, 23.810226549115949 ], [ 87.131870559178907, 23.803121038904802 ], [ 87.079677361920659, 23.81521332403565 ], [ 87.056733026008303, 23.825548610879647 ], [ 87.036992629206438, 23.839113674356547 ], [ 87.015598586005893, 23.859603379991992 ], [ 87.007847120648051, 23.861877143115628 ], [ 86.996271600353992, 23.862083848690641 ], [ 86.979941848237658, 23.863866685399213 ], [ 86.958961216187134, 23.87309092910305 ], [ 86.907284783765689, 23.905776271757524 ], [ 86.889818150087507, 23.91200328192587 ], [ 86.877209100119813, 23.913062649121962 ], [ 86.869767694023807, 23.908385932564723 ], [ 86.86460005105144, 23.902158922396318 ], [ 86.861396111940934, 23.895440985812851 ], [ 86.859639112754763, 23.888154609347733 ], [ 86.857675408892959, 23.882909451110262 ], [ 86.855504998556768, 23.878956204065553 ], [ 86.846306594173925, 23.868104153284033 ], [ 86.827186314097077, 23.855831000100576 ], [ 86.821915318337219, 23.848932197263078 ], [ 86.815094028966172, 23.836684882501284 ], [ 86.809719680418851, 23.81808136636192 ], [ 86.810029737882061, 23.81255198818371 ], [ 86.811373325918197, 23.806531684489638 ], [ 86.815920852165547, 23.796377264798931 ], [ 86.82243208227473, 23.776895250415457 ], [ 86.817884556027408, 23.75012685776823 ], [ 86.799797804724818, 23.725528876356513 ], [ 86.76403771416912, 23.714780178362496 ], [ 86.646112094597441, 23.69690013353431 ], [ 86.58317020114383, 23.677392279829853 ], [ 86.542449172291384, 23.660209866092426 ], [ 86.458526645887943, 23.638609117316882 ], [ 86.410467563727011, 23.616569118969657 ], [ 86.379875116143623, 23.598017280573 ], [ 86.360961541641799, 23.582075100285628 ], [ 86.348352491674092, 23.567941596027815 ], [ 86.34246137918926, 23.5541439894535 ], [ 86.340911085578099, 23.542387600207569 ], [ 86.34122114483992, 23.529907742348424 ], [ 86.340187616065563, 23.518332221155042 ], [ 86.336466913017588, 23.508436183882733 ], [ 86.332436150707707, 23.502674261707792 ], [ 86.330679152420856, 23.500607205058422 ], [ 86.329748977333367, 23.499909573068347 ], [ 86.328095330934701, 23.497842516418977 ], [ 86.323547804687379, 23.494095974049966 ], [ 86.313729282680228, 23.484561671983553 ], [ 86.302463819849365, 23.478076280296072 ], [ 86.273008253827797, 23.45373668130275 ], [ 86.242829217394416, 23.443582262511363 ], [ 86.22794640520236, 23.443246364827868 ], [ 86.214303827359657, 23.449163315734435 ], [ 86.203865187728169, 23.461203924921158 ], [ 86.184848260438841, 23.472262682177014 ], [ 86.157666456641579, 23.483812364049353 ], [ 86.149088168983752, 23.486577052688798 ], [ 86.134205356791753, 23.488282375930901 ], [ 86.126453892333231, 23.492468166972284 ], [ 86.12242313002335, 23.497196560372966 ], [ 86.121699659611565, 23.499263617022276 ], [ 86.121492954036555, 23.500891424999217 ], [ 86.123560011585226, 23.514223945378767 ], [ 86.134515415154212, 23.558872381954863 ], [ 86.129141065707572, 23.5783543972376 ], [ 86.098341913448479, 23.578741969965897 ], [ 86.056380650246723, 23.602513129077629 ], [ 86.039120721244259, 23.60716400811247 ], [ 86.02465132020221, 23.606750596962449 ], [ 86.015556267707538, 23.601789659565092 ], [ 86.00728803931149, 23.59362478305729 ], [ 86.002223749126671, 23.585640773702718 ], [ 86.000363397153009, 23.579517117221137 ], [ 86.001396925927324, 23.572334093543581 ], [ 86.014419387045038, 23.538434353162863 ], [ 86.015866326969359, 23.52931346314579 ], [ 86.010595331209501, 23.518564765151773 ], [ 86.004807569713506, 23.514223945378767 ], [ 85.996435987630647, 23.511510931784066 ], [ 85.942485792984925, 23.502855128861079 ], [ 85.919024693135029, 23.501795763463686 ], [ 85.903004999381125, 23.502674261707792 ], [ 85.849468214986061, 23.493191637384136 ], [ 85.828900994984892, 23.483063056115153 ], [ 85.825490350299376, 23.479316515544721 ], [ 85.822389763976375, 23.470195623729008 ], [ 85.823113234388217, 23.45386587251198 ], [ 85.830657994171048, 23.448388170277831 ], [ 85.836962517805873, 23.439241440939721 ], [ 85.841510044053265, 23.430094713400305 ], [ 85.847194451862421, 23.425883083937148 ], [ 85.878510369857594, 23.428053494273339 ], [ 85.885021599966791, 23.425883083937148 ], [ 85.894840121974013, 23.41647797307996 ], [ 85.894220005248968, 23.409837550862274 ], [ 85.889052362276658, 23.402577012818877 ], [ 85.885021599966791, 23.391130682834724 ], [ 85.883367953568126, 23.367850450138118 ], [ 85.880680780193785, 23.356300768265836 ], [ 85.874789666809619, 23.346766466199419 ], [ 85.859390089780774, 23.329299832521251 ], [ 85.843990512751915, 23.307027289277976 ], [ 85.832725050820358, 23.283126938957022 ], [ 85.829831170971701, 23.260802721568318 ], [ 85.839132928142064, 23.240623074295396 ], [ 85.871172315649787, 23.210702420280423 ], [ 85.878200310595815, 23.188791612243101 ], [ 85.880267369043779, 23.177009386374031 ], [ 85.885538364803651, 23.166338201846539 ], [ 85.888432244652307, 23.163082586791909 ], [ 85.900111118633149, 23.166364041167522 ], [ 85.942485792984925, 23.180342515794447 ], [ 85.959952426663094, 23.179128118967522 ], [ 85.982586704212991, 23.175045680713591 ], [ 86.00191368986485, 23.165097968396477 ], [ 86.020207146742365, 23.152592271216346 ], [ 86.14247358608705, 23.028258775222291 ], [ 86.163557570025745, 23.01105052306314 ], [ 86.178026971067808, 23.005727851359204 ], [ 86.192909784159141, 23.007743232064506 ], [ 86.207585890776201, 23.013841051023682 ], [ 86.218024530407703, 23.019887193139422 ], [ 86.260502556647594, 23.019809678773637 ], [ 86.314039341042687, 23.008595892786214 ], [ 86.450465122167572, 23.004203396169764 ], [ 86.459043409825469, 23.002549749771099 ], [ 86.462143996148455, 23.000844428327689 ], [ 86.462867465660949, 23.000250149125062 ], [ 86.464004348122074, 22.999319973138249 ], [ 86.468345167895151, 22.998467312416491 ], [ 86.477750278752339, 22.995521754825116 ], [ 86.495010206855497, 22.994979153365186 ], [ 86.503071729676535, 22.992033595773812 ], [ 86.506482375261371, 22.9883387311475 ], [ 86.50586225763702, 22.984049587318559 ], [ 86.501108025814659, 22.979269517973869 ], [ 86.495216913329813, 22.976944078006788 ], [ 86.483021275411474, 22.97417938936729 ], [ 86.467208286333275, 22.97247406702456 ], [ 86.452842238078773, 22.968908392708155 ], [ 86.441473423359739, 22.964024970575899 ], [ 86.414808384399379, 22.943457750574733 ], [ 86.410467563727011, 22.935783800481993 ], [ 86.410260858152057, 22.926249498415583 ], [ 86.413878208412527, 22.915423285156461 ], [ 86.414808384399379, 22.905940659933488 ], [ 86.411397739713863, 22.894881904476271 ], [ 86.401889276069184, 22.872867742752131 ], [ 86.400649041719859, 22.862997544800855 ], [ 86.400235629670519, 22.839355576898352 ], [ 86.395584750635663, 22.812664700415546 ], [ 86.394757928335693, 22.799306342513656 ], [ 86.399098749008019, 22.784966131781509 ], [ 86.452325474141261, 22.745356146968614 ], [ 86.469585402244462, 22.742824002325843 ], [ 86.482607863362119, 22.742410590276503 ], [ 86.490772739869982, 22.744064235775848 ], [ 86.498730909903529, 22.743134059788982 ], [ 86.524362420988879, 22.729413967580509 ], [ 86.586890904191804, 22.680683091851158 ], [ 86.594642368650312, 22.632546495324501 ], [ 86.601256952446334, 22.619033107791658 ], [ 86.611385532816016, 22.60425364838715 ], [ 86.625028110658704, 22.595752875095108 ], [ 86.639600865387578, 22.591541246531271 ], [ 86.685386184424814, 22.590791937697752 ], [ 86.702336053266194, 22.585882677143839 ], [ 86.726520624427209, 22.57156830483336 ], [ 86.740059848583059, 22.558209946931466 ], [ 86.749361606652741, 22.544799913085505 ], [ 86.757216424798102, 22.526428940942871 ], [ 86.758973423084953, 22.518677476484353 ], [ 86.759386835134293, 22.512088731110047 ], [ 86.757113072010597, 22.505835883419248 ], [ 86.750911900263901, 22.502683621152183 ], [ 86.74130008293244, 22.502373561890348 ], [ 86.721766391705543, 22.505887559363369 ], [ 86.716288690370718, 22.50557750100085 ], [ 86.713498163309538, 22.502166856315334 ], [ 86.712567987322686, 22.500823269178504 ], [ 86.712257928060907, 22.499815578825856 ], [ 86.712051223385217, 22.498161933326568 ], [ 86.712257928060907, 22.49276174635747 ], [ 86.713601516097057, 22.482943224350318 ], [ 86.718149042344393, 22.469403998395812 ], [ 86.723109978842359, 22.461962592299749 ], [ 86.729827915425886, 22.456097317337306 ], [ 86.760937127846134, 22.441240343566953 ], [ 86.773752883388767, 22.432351995747972 ], [ 86.789875929930176, 22.415634670004007 ], [ 86.795870396101847, 22.398658961841583 ], [ 86.797730747176203, 22.365379339984536 ], [ 86.803311802197854, 22.348377794299719 ], [ 86.816644321678012, 22.336388861956372 ], [ 86.831113722720076, 22.325691839906479 ], [ 86.848373650823277, 22.31008555820193 ], [ 86.852507765920606, 22.302024034481573 ], [ 86.849613885172616, 22.294427598754677 ], [ 86.833904249781241, 22.2883297797955 ], [ 86.795767043314342, 22.285229194371816 ], [ 86.780264112598644, 22.286701971818495 ], [ 86.772305942565126, 22.283911444757333 ], [ 86.767758417217095, 22.277348537804752 ], [ 86.769205357141445, 22.257375597006156 ], [ 86.76703494680531, 22.24670441337798 ], [ 86.761867302933609, 22.240606594418804 ], [ 86.750601841002123, 22.240503240731979 ], [ 86.733858676836391, 22.24673025179964 ], [ 86.728691033864067, 22.246471869381249 ], [ 86.723936802041734, 22.242156887130641 ], [ 86.70667687393852, 22.233010158691851 ], [ 86.693344353559013, 22.224328518246516 ], [ 86.686523065087314, 22.218023992813013 ], [ 86.646628859434244, 22.234870509766207 ], [ 86.602187128433144, 22.272852688400857 ], [ 86.506068964111336, 22.330833645356442 ], [ 86.497180617191688, 22.334683538714327 ], [ 86.486638624772667, 22.336853949050461 ], [ 86.471755812580597, 22.335071113241263 ], [ 86.433721958001883, 22.323133856841988 ], [ 86.419149204172385, 22.320834255296624 ], [ 86.401579216807335, 22.320007432996583 ], [ 86.383492466404149, 22.323237210528813 ], [ 86.36602583182659, 22.330058499000526 ], [ 86.346078728550395, 22.343959459261608 ], [ 86.332746209969557, 22.356671861117484 ], [ 86.322720982387381, 22.368738307826614 ], [ 86.30473758297299, 22.397056993185679 ], [ 86.289544712418476, 22.409045925529025 ], [ 86.26804731643044, 22.422404283430918 ], [ 86.102476026747169, 22.500125637188372 ], [ 86.064752232329596, 22.545885117803945 ], [ 86.057414178121789, 22.552163804815727 ], [ 86.049972772025782, 22.555806993497921 ], [ 86.039844190756739, 22.556737169484787 ], [ 86.030232375223846, 22.552964788693991 ], [ 86.020620558791705, 22.54792633693091 ], [ 86.005324335449671, 22.524413560237569 ], [ 85.997676222879349, 22.519142564477757 ], [ 85.994265578193833, 22.517928168550096 ], [ 85.988271112022161, 22.516636257357387 ], [ 85.973595005405102, 22.514956773436317 ], [ 85.965533481684801, 22.513096422361961 ], [ 85.945586379307912, 22.505603339422574 ], [ 85.938765089936894, 22.500513210815992 ], [ 85.938248325999353, 22.499944770035079 ], [ 85.937834913950084, 22.499169622779839 ], [ 85.937318150012544, 22.495061347003563 ], [ 85.937008090750723, 22.486017971352275 ], [ 85.940625441011235, 22.46813792652409 ], [ 85.950237258342767, 22.452841702282736 ], [ 85.974835239754483, 22.42460053128945 ], [ 85.98248335232482, 22.410828762237539 ], [ 85.986514112835991, 22.393620510078446 ], [ 85.993232050318838, 22.335200304450488 ], [ 85.993025343844494, 22.316364244314396 ], [ 85.989924758420827, 22.300783800132244 ], [ 85.971424595068967, 22.275178128367934 ], [ 85.965223423322271, 22.263189195125214 ], [ 85.964603305697921, 22.244869899825968 ], [ 85.971321242281462, 22.2285401468103 ], [ 85.986824172097826, 22.201694240696604 ], [ 85.988271112022161, 22.18753489801713 ], [ 85.984653761761621, 22.172057807521803 ], [ 85.976592238041277, 22.149785265177847 ], [ 85.972561476630787, 22.133507188106247 ], [ 85.972974887780808, 22.118882758332628 ], [ 85.974111770241947, 22.111441352236621 ], [ 85.974111770241947, 22.104594225343188 ], [ 85.971321242281462, 22.097695420707048 ], [ 85.963983188972961, 22.08560313647552 ], [ 85.916234165174529, 22.022118638864068 ], [ 85.897320590672663, 22.007623399400355 ], [ 85.877476841083279, 21.996099555050414 ], [ 85.834275344431532, 21.986126004311636 ], [ 85.784665968659496, 22.011886704807576 ], [ 85.780635207248935, 22.022196153229853 ], [ 85.777637973713453, 22.039662786908075 ], [ 85.778774855275273, 22.053512071225093 ], [ 85.7784647969128, 22.063821518748053 ], [ 85.779084913637789, 22.071934719311848 ], [ 85.78259891111081, 22.079763699035478 ], [ 85.796551548215334, 22.096816921563683 ], [ 85.800582309625824, 22.106222032420813 ], [ 85.80171919118763, 22.117022406358952 ], [ 85.798308547401504, 22.126014106066119 ], [ 85.792210728442328, 22.129088853068076 ], [ 85.780428500774619, 22.125135606023374 ], [ 85.766682570144425, 22.116712347996433 ], [ 85.755933872150408, 22.10715220840768 ], [ 85.746425409405077, 22.101157742236005 ], [ 85.734333124274187, 22.096145127995268 ], [ 85.717796664784188, 22.091881821688723 ], [ 85.705807733340166, 22.087463487549879 ], [ 85.685343866126431, 22.077050686340094 ], [ 85.679142694379763, 22.075862127934837 ], [ 85.655888300104934, 22.084698798011111 ], [ 85.609586216230852, 22.092140204107118 ], [ 85.550675083288397, 22.107591457979364 ], [ 85.461068149975105, 22.158131007939627 ], [ 85.448562452794917, 22.162523505455393 ], [ 85.43678022692589, 22.164228826898803 ], [ 85.425204705732511, 22.164487210216574 ], [ 85.410011835177983, 22.162006741517867 ], [ 85.396059198073473, 22.157872626420552 ], [ 85.379005974645935, 22.146968898795645 ], [ 85.335081007582389, 22.132447821809532 ], [ 85.324125604013361, 22.126685898735211 ], [ 85.277823521038599, 22.085318914736089 ], [ 85.232038202001348, 22.035321967135069 ], [ 85.225526970992831, 22.030516059368601 ], [ 85.220152622445511, 22.029146632910731 ], [ 85.214881625786333, 22.031058660828531 ], [ 85.208060337314663, 22.036743069537007 ], [ 85.187079706163431, 22.059609890184273 ], [ 85.109151645931647, 22.10849579554451 ], [ 85.09788618400016, 22.113456732941867 ], [ 85.079489374335125, 22.119037787064194 ], [ 85.06202273975758, 22.121234035822052 ], [ 85.050343865776739, 22.120898139037873 ], [ 85.042592401318231, 22.119735419054333 ], [ 85.00321495960263, 22.106196193999146 ], [ 84.991122675371102, 22.104025784562275 ], [ 84.986265089861931, 22.106661281992555 ], [ 84.985231561087616, 22.112784939373451 ], [ 84.992466261608598, 22.127641913143744 ], [ 84.999287550979645, 22.136556098485123 ], [ 85.008899367411829, 22.151542263464645 ], [ 85.040008578932699, 22.216370348212983 ], [ 85.087757602731102, 22.280164903287634 ], [ 85.09333865775281, 22.29021596929152 ], [ 85.098919711875155, 22.304685370333566 ], [ 85.104707473371121, 22.330833645356442 ], [ 85.104707473371121, 22.357498684316788 ], [ 85.100366651799476, 22.393956406862678 ], [ 85.087757602731102, 22.446614692114334 ], [ 85.065536737230588, 22.503200385089652 ], [ 85.038251580645905, 22.482400621091749 ], [ 84.988022089048101, 22.452221585557702 ], [ 84.98337121001326, 22.450335395162305 ], [ 84.95246870316808, 22.447415675992655 ], [ 84.944097121085207, 22.445245266555784 ], [ 84.93758589097601, 22.441059475514347 ], [ 84.921462844434686, 22.424884752129568 ], [ 84.916295200562985, 22.423205268208555 ], [ 84.908337029630147, 22.421965032959854 ], [ 84.87857140524612, 22.434031480568358 ], [ 84.817593214754979, 22.448113307982734 ], [ 84.800850050589275, 22.450180365531416 ], [ 84.77852583230127, 22.448345851979461 ], [ 84.768914015869058, 22.44558116334002 ], [ 84.761886020923072, 22.440775255573552 ], [ 84.757441848362561, 22.435426744548575 ], [ 84.748243443080383, 22.430698351147949 ], [ 84.733670689250843, 22.42728770646249 ], [ 84.530065545888164, 22.423024400155946 ], [ 84.516733026408005, 22.421422431499987 ], [ 84.508154737850788, 22.417004096461877 ], [ 84.505054152427121, 22.410570379819145 ], [ 84.504434034802813, 22.402534695419824 ], [ 84.504950799639616, 22.392535305360006 ], [ 84.503813918077782, 22.384654648792999 ], [ 84.500920038229125, 22.376618964393678 ], [ 84.497302687968585, 22.372200629355515 ], [ 84.490998163434455, 22.3665678983898 ], [ 84.484590285213457, 22.362278754560858 ], [ 84.42082156766115, 22.330988674088015 ], [ 84.408212517693499, 22.328740750285355 ], [ 84.310957472709148, 22.324012355985413 ], [ 84.29276736861911, 22.328172309504449 ], [ 84.230859003040493, 22.357343654685899 ], [ 84.217423129873495, 22.360547593796408 ], [ 84.19582238199726, 22.359772447440484 ], [ 84.188794387051274, 22.360599269740472 ], [ 84.17856245299474, 22.364371650531204 ], [ 84.147763298937022, 22.386773383185069 ], [ 84.13701460184231, 22.400932725864603 ], [ 84.130606723621355, 22.412146510952702 ], [ 84.124302199087182, 22.426745103203924 ], [ 84.067044711644073, 22.499583034829183 ], [ 84.036038852910664, 22.518289902856733 ], [ 84.007410109189138, 22.531519070448716 ], [ 83.970203077809728, 22.539348049273027 ], [ 83.97640424955641, 22.553739935949288 ], [ 83.982605422202411, 22.57407461195373 ], [ 83.985292595576752, 22.579888210972108 ], [ 83.988703241161588, 22.585934353087904 ], [ 83.991907180272094, 22.589680894557599 ], [ 83.9962480000451, 22.592703966514811 ], [ 84.013301222573304, 22.599990342979932 ], [ 84.019502395219291, 22.603788560393745 ], [ 84.026427035579204, 22.60918874826211 ], [ 84.043583611794176, 22.6286707635449 ], [ 84.056502720124371, 22.639316107852093 ], [ 84.061877068671691, 22.641021430194822 ], [ 84.092159457892635, 22.639987901420508 ], [ 84.103321567935936, 22.641228135769829 ], [ 84.111279737969468, 22.643941148465213 ], [ 84.119031203327296, 22.648126939506646 ], [ 84.13908165939101, 22.66701467468749 ], [ 84.190964797387423, 22.700940253489872 ], [ 84.197372673809795, 22.707528997964854 ], [ 84.202540317681468, 22.715978095312831 ], [ 84.218663365122126, 22.766569322116474 ], [ 84.223107537682651, 22.775638536189486 ], [ 84.228275180655018, 22.783079942285493 ], [ 84.235199822813499, 22.789694526081515 ], [ 84.242537876122057, 22.793647773126217 ], [ 84.260521274637071, 22.799435532823562 ], [ 84.266722447283072, 22.804784043848539 ], [ 84.277574497165261, 22.817238064185283 ], [ 84.285222608836278, 22.823439235931968 ], [ 84.324496697764332, 22.849690863742346 ], [ 84.336899042157015, 22.861886502560019 ], [ 84.346510857689893, 22.873823757160658 ], [ 84.352195266398368, 22.885580146406593 ], [ 84.353332147060868, 22.896483873132237 ], [ 84.350955031149709, 22.908421129531455 ], [ 84.346200800226697, 22.920229193822191 ], [ 84.336588982895179, 22.938574327543162 ], [ 84.33297163263471, 22.950279039046389 ], [ 84.331007927873529, 22.970303656688365 ], [ 84.326770460888028, 22.978210150777834 ], [ 84.318398878805155, 22.985393175354712 ], [ 84.291733839844795, 22.997227078067162 ], [ 84.282225376200117, 23.000095120393489 ], [ 84.2725102069804, 23.001232001055993 ], [ 84.263518508172567, 23.001257839477713 ], [ 84.252769810178549, 23.000250149125062 ], [ 84.250909458204873, 22.999707545866553 ], [ 84.243778111370688, 22.996451930811922 ], [ 84.23581994043785, 22.993971462113272 ], [ 84.226414828681328, 22.993868110225087 ], [ 84.217113072410299, 22.995211697361917 ], [ 84.200473260132796, 23.000172633859957 ], [ 84.193651970761749, 23.003195705817173 ], [ 84.160165643329705, 23.023116969772328 ], [ 84.151587354772559, 23.024357205020969 ], [ 84.147556594261374, 23.021075751544682 ], [ 84.147246534999553, 23.015701402097982 ], [ 84.149623650910684, 23.000172633859957 ], [ 84.149416945335673, 22.998906561988232 ], [ 84.148383416561373, 22.996606961342192 ], [ 84.145386183925197, 22.993351345388245 ], [ 84.13908165939101, 22.99118093505211 ], [ 84.132053664445024, 22.99079336232381 ], [ 84.124715611136466, 22.993118801391571 ], [ 84.119341261689826, 22.995676785355322 ], [ 84.1150004410175, 22.998854885144787 ], [ 84.111899854694499, 23.003660793810578 ], [ 84.107869094183272, 23.01275584630525 ], [ 84.102081332687291, 23.032651271838684 ], [ 84.09763716012678, 23.060918281253631 ], [ 84.094536573803765, 23.072648831178579 ], [ 84.089058871569634, 23.084818629775945 ], [ 84.078310173575616, 23.09654918149948 ], [ 84.044823846143558, 23.123265896403943 ], [ 84.028907505177173, 23.146106879528865 ], [ 84.020019159156831, 23.187086289900318 ], [ 84.031491326663314, 23.230132757820506 ], [ 84.038622674396862, 23.30940440518912 ], [ 84.028287387552822, 23.358393663336866 ], [ 84.022499627855481, 23.372139593967059 ], [ 84.01536828012199, 23.382604072020282 ], [ 84.004309522866123, 23.388495185404444 ], [ 83.998935174318802, 23.389399522070274 ], [ 83.991803826585254, 23.386453966277479 ], [ 83.967102492386047, 23.362553615956578 ], [ 83.960901319740046, 23.358703721699378 ], [ 83.956353794392015, 23.358677883277661 ], [ 83.950772740269699, 23.362656968744087 ], [ 83.946948684434147, 23.370020860474309 ], [ 83.943951450898666, 23.382914130382794 ], [ 83.943951450898666, 23.395316473876157 ], [ 83.945088331561209, 23.405212511148473 ], [ 83.951599562569683, 23.431955064474604 ], [ 83.952323032981539, 23.441644395272586 ], [ 83.952219680194034, 23.45048106534886 ], [ 83.95108279773288, 23.459291897003421 ], [ 83.950979444945375, 23.46727590635799 ], [ 83.952219680194034, 23.474924018029007 ], [ 83.956250440705205, 23.482908027383523 ], [ 83.961934849413723, 23.490091051061135 ], [ 83.992837355359583, 23.520502631491237 ], [ 84.004309522866123, 23.534661974170767 ], [ 84.010097284362104, 23.544170436916083 ], [ 84.014541456922615, 23.553988958923295 ], [ 84.015781691271997, 23.561817939546238 ], [ 84.014851516184464, 23.567088935306113 ], [ 83.997488234394424, 23.598869941294758 ], [ 83.994594353646434, 23.610471300010484 ], [ 83.993354120196415, 23.621168321161058 ], [ 83.991183709860294, 23.631761990423506 ], [ 83.986326125250429, 23.639022529366226 ], [ 83.976300896768905, 23.643595893135963 ], [ 83.969272901822919, 23.643518377870802 ], [ 83.962554966138711, 23.641399644378051 ], [ 83.949842564282889, 23.633777371128751 ], [ 83.943538038849383, 23.63119354874328 ], [ 83.933306104792834, 23.628480536047899 ], [ 83.928655226657312, 23.62664602339526 ], [ 83.923694289260013, 23.623493761128138 ], [ 83.921007114986296, 23.619695542815005 ], [ 83.919146763012677, 23.615664781404512 ], [ 83.918113234238305, 23.609773668020349 ], [ 83.918113234238305, 23.597991441252013 ], [ 83.922764113273146, 23.576028958169839 ], [ 83.921833938185657, 23.570060330419885 ], [ 83.919663526950146, 23.566753038521874 ], [ 83.916252883163949, 23.563755804986378 ], [ 83.91232547364163, 23.563600776254809 ], [ 83.906434361156798, 23.564685980973248 ], [ 83.844629348365672, 23.588741360025718 ], [ 83.835637647759171, 23.59036916800266 ], [ 83.826956008213159, 23.590730903208616 ], [ 83.819411249329661, 23.590110785584265 ], [ 83.796260206942961, 23.58576996491194 ], [ 83.788198684121909, 23.585459907448747 ], [ 83.780860629914102, 23.586493435323739 ], [ 83.771868931106255, 23.58959402074742 ], [ 83.761533645161521, 23.596518662905957 ], [ 83.752541944555034, 23.605768744132202 ], [ 83.743343540172177, 23.622537746719612 ], [ 83.731354607828834, 23.65488719348917 ], [ 83.720812616309132, 23.676152045480475 ], [ 83.719262322697986, 23.685298773919268 ], [ 83.719779086635498, 23.692740180015274 ], [ 83.722052849759152, 23.700672512526403 ], [ 83.733214959802496, 23.729068712251259 ], [ 83.735282017351196, 23.738344630999901 ], [ 83.733835077426804, 23.749300035468245 ], [ 83.729804315116994, 23.761263129389867 ], [ 83.71182091660198, 23.800976466990328 ], [ 83.696628046047451, 23.818701483986271 ], [ 83.556791620237036, 23.935800279459325 ], [ 83.540358514433862, 23.956729233767128 ], [ 83.532503697187821, 23.971250312551881 ], [ 83.526922642166113, 23.984505316766953 ], [ 83.523822055843127, 23.999491481746468 ], [ 83.522581822393107, 24.012565618808246 ], [ 83.523305291905643, 24.052563178148141 ], [ 83.521754999193817, 24.065895698527633 ], [ 83.517517531308997, 24.07522329411972 ], [ 83.51069624193795, 24.082897244212457 ], [ 83.475246209744711, 24.101319892299152 ], [ 83.459226515990892, 24.114626573357661 ], [ 83.451475050633036, 24.119354966758287 ], [ 83.442276646250193, 24.121809597035277 ], [ 83.390600213828733, 24.124780992149049 ], [ 83.337063430332975, 24.140232245121972 ], [ 83.360214470921036, 24.198342393286786 ], [ 83.366725701929553, 24.210667223313688 ], [ 83.380574986246558, 24.2321646184024 ], [ 83.407653436356938, 24.260715846858822 ], [ 83.412097608917435, 24.268079739488368 ], [ 83.415301548027941, 24.276735541512032 ], [ 83.415818312864801, 24.288931179430385 ], [ 83.415508253602951, 24.296785997575679 ], [ 83.416231724014821, 24.305364285233559 ], [ 83.420469191000308, 24.313916734469725 ], [ 83.446824171598209, 24.345956121977444 ], [ 83.451578404319875, 24.353681748913566 ], [ 83.453955520231005, 24.361588243002977 ], [ 83.452405226619845, 24.37127757380096 ], [ 83.448684522672508, 24.380424303139076 ], [ 83.436075473604191, 24.398045966448187 ], [ 83.421709426248967, 24.413652249051999 ], [ 83.41519819524045, 24.422333889497388 ], [ 83.408583612343804, 24.432875881017075 ], [ 83.397938267137292, 24.457215480909721 ], [ 83.395251091964241, 24.466904811707646 ], [ 83.394217564089246, 24.474423733068814 ], [ 83.394527621552456, 24.481451728014797 ], [ 83.395871209588591, 24.487704575705603 ], [ 83.398351678287256, 24.493311469148974 ], [ 83.401658970185267, 24.498298244967991 ], [ 83.406929965945139, 24.502794094371943 ], [ 83.421192661412121, 24.512095852441629 ], [ 83.437832472790348, 24.520932522517903 ], [ 83.523098586330647, 24.529665838907302 ], [ 83.538704868934516, 24.531267809361903 ], [ 83.63720014826815, 24.517211819469875 ], [ 83.695904575635595, 24.506282254322564 ], [ 83.750164828643875, 24.508375149393594 ], [ 83.767734816008883, 24.513775336362635 ], [ 83.787888624860088, 24.537313951477635 ], [ 83.808869256910654, 24.542507432871723 ], [ 83.819411249329661, 24.541318875365782 ], [ 83.840598586055847, 24.536228745859937 ], [ 83.849796991338025, 24.535066025876343 ], [ 83.860545689332042, 24.536280421804001 ], [ 83.879769322196395, 24.541344712888183 ], [ 83.918423292600821, 24.543799343165116 ], [ 83.93826704308951, 24.548682766196688 ], [ 83.95387332569338, 24.558888861831459 ], [ 83.965862258036722, 24.576019598725502 ], [ 83.979091423830056, 24.582014064897173 ], [ 83.988703241161588, 24.587905178281343 ], [ 83.992423944209605, 24.591419175754361 ], [ 83.99531782405829, 24.595424098743134 ], [ 83.997798292756926, 24.599764920314776 ], [ 84.011647577073958, 24.63281199817515 ], [ 84.01536828012199, 24.636713569275795 ], [ 84.021672804656177, 24.639039008343556 ], [ 84.029630974689653, 24.634853217302116 ], [ 84.043893671055997, 24.623897812833771 ], [ 84.075726352988724, 24.562144476886086 ], [ 84.09557010257808, 24.504137682408096 ], [ 84.107042270983968, 24.484552314337797 ], [ 84.119651320052327, 24.47416535154974 ], [ 84.130503370833864, 24.469772854033973 ], [ 84.139391716854192, 24.471168118014184 ], [ 84.145386183925197, 24.476645820248386 ], [ 84.149003534185724, 24.484862371800997 ], [ 84.150243767635715, 24.493673204354874 ], [ 84.150347121322554, 24.501657212810123 ], [ 84.152104119609405, 24.5077550317693 ], [ 84.156858352331071, 24.510984809301469 ], [ 84.164816522364532, 24.510287177311337 ], [ 84.169157342137538, 24.505507107067324 ], [ 84.170500930173759, 24.497755641709482 ], [ 84.170190870911924, 24.488557237326628 ], [ 84.174118280434229, 24.47953970009706 ], [ 84.181973097680256, 24.475741481783921 ], [ 84.190241326975624, 24.476594143404945 ], [ 84.1963391459348, 24.481916816008201 ], [ 84.197992792333451, 24.490288398091078 ], [ 84.19613244035979, 24.510364692576495 ], [ 84.197372673809795, 24.518141995456681 ], [ 84.202953728831446, 24.52132009524615 ], [ 84.212152134113609, 24.522586168017195 ], [ 84.224967888757007, 24.520389920158657 ], [ 84.233856235676654, 24.521991888814622 ], [ 84.24005740832267, 24.525402533500078 ], [ 84.246878696794383, 24.526875311846137 ], [ 84.254526809364719, 24.524136460729032 ], [ 84.262071568248231, 24.519072171443547 ], [ 84.268789503932382, 24.517651069041559 ], [ 84.27571414609092, 24.520312404893552 ], [ 84.285842727359906, 24.531577866825096 ], [ 84.29328413255665, 24.533980821157961 ], [ 84.305376417687484, 24.530802721368495 ], [ 84.314058059032149, 24.522896226379711 ], [ 84.324600050551837, 24.502949124002832 ], [ 84.325220168176187, 24.470444648501704 ], [ 84.318398878805155, 24.463364975812961 ], [ 84.311887647796638, 24.451143500372208 ], [ 84.314368117394665, 24.443133653495288 ], [ 84.338759393231371, 24.420628567154605 ], [ 84.352815383123399, 24.40106903750603 ], [ 84.366354608178582, 24.388124090754157 ], [ 84.38092736200808, 24.37778880480948 ], [ 84.409659457617849, 24.364249578854977 ], [ 84.434464146403158, 24.346498725235953 ], [ 84.440975375613036, 24.338230495940586 ], [ 84.447176548259023, 24.328179429936707 ], [ 84.454617954355044, 24.320376287735478 ], [ 84.471981236145083, 24.307353827517087 ], [ 84.484486932425952, 24.302857978113192 ], [ 84.496682570344305, 24.301695258129648 ], [ 84.507534621125828, 24.303168036475707 ], [ 84.519213495106655, 24.307508857148033 ], [ 84.539884067895372, 24.325983181178852 ], [ 84.542674594956551, 24.332907823337333 ], [ 84.544948358080191, 24.341925361466217 ], [ 84.549599237115018, 24.352260647410951 ], [ 84.573163689752434, 24.371820177059526 ], [ 84.579571567973431, 24.382181301425923 ], [ 84.584222447008287, 24.39230988179559 ], [ 84.588253208418763, 24.39442861618766 ], [ 84.594144321802929, 24.391612249805455 ], [ 84.602722608561507, 24.385746974843013 ], [ 84.612334425892968, 24.380734361501531 ], [ 84.623806594298841, 24.380191759142345 ], [ 84.644890578237522, 24.375230820845665 ], [ 84.657602980093415, 24.375049953692375 ], [ 84.664734327826906, 24.382103787060082 ], [ 84.675276320245899, 24.411430161872428 ], [ 84.688195427676803, 24.430705471580207 ], [ 84.704318475117461, 24.443288683126177 ], [ 84.747623326355352, 24.465147813420849 ], [ 84.761782668135567, 24.474656277065488 ], [ 84.77697553869011, 24.482304388736505 ], [ 84.786897414384129, 24.48982331009767 ], [ 84.798472934678145, 24.496592921725941 ], [ 84.813149042194468, 24.495352688275936 ], [ 84.825551384788497, 24.484914049543757 ], [ 84.835163202120029, 24.437940172101257 ], [ 84.843844841666041, 24.433495999540749 ], [ 84.85945112516923, 24.436338202545979 ], [ 84.868546176764568, 24.440110582437391 ], [ 84.876297642122424, 24.436441555333481 ], [ 84.879191521971094, 24.426752224535498 ], [ 84.889010043978303, 24.372827867412123 ], [ 84.895624627774325, 24.362079169418106 ], [ 84.908853793567658, 24.353681748913566 ], [ 84.961460401975941, 24.348384914732033 ], [ 84.98182091730142, 24.35280324977014 ], [ 84.998874138930304, 24.361045641543111 ], [ 85.015410598420303, 24.371794337738486 ], [ 85.080626254997625, 24.393317573047561 ], [ 85.087137486006142, 24.390914617815323 ], [ 85.088481073142958, 24.383318182987743 ], [ 85.082900018121251, 24.358720201576027 ], [ 85.082486606971287, 24.348539944362919 ], [ 85.088997837080441, 24.341951198988617 ], [ 85.097576124738325, 24.344199123690597 ], [ 85.135506625630214, 24.378253892802881 ], [ 85.149355909947218, 24.387969062022584 ], [ 85.157727492030105, 24.395643012115265 ], [ 85.160207960728741, 24.403084418211328 ], [ 85.157934197605044, 24.412282823493509 ], [ 85.160207960728741, 24.421326199144737 ], [ 85.170956658722773, 24.430912177155218 ], [ 85.260977004085404, 24.461788845578717 ], [ 85.271312290030082, 24.467034002916868 ], [ 85.276169874639933, 24.47341604271616 ], [ 85.277513461776763, 24.480909124756288 ], [ 85.280614048099764, 24.487265326133862 ], [ 85.295186801929304, 24.491141058812779 ], [ 85.374561802085424, 24.499641832104821 ], [ 85.391408319038618, 24.509460354112033 ], [ 85.438950637262039, 24.505197047805488 ], [ 85.462515089899441, 24.506204739057459 ], [ 85.482358840388116, 24.509305325380463 ], [ 85.495277947818948, 24.508065090131758 ], [ 85.505509881875511, 24.503207506421283 ], [ 85.517085402169499, 24.499460964052211 ], [ 85.526387160239182, 24.501553860022621 ], [ 85.556566196672563, 24.527934679042172 ], [ 85.56008019414557, 24.533283189167825 ], [ 85.569898716152792, 24.541241360100681 ], [ 85.573929477563283, 24.545659695138788 ], [ 85.578373651023114, 24.55780365711308 ], [ 85.587572056305291, 24.557571113116349 ], [ 85.602351515709856, 24.553307806809805 ], [ 85.619818150287344, 24.549923001445329 ], [ 85.643692661287247, 24.55012970612102 ], [ 85.656818475192424, 24.557648627482131 ], [ 85.66239953021406, 24.568888250991957 ], [ 85.66239953021406, 24.605733547165464 ], [ 85.660332472665431, 24.61717987714956 ], [ 85.657438591917455, 24.626455796797583 ], [ 85.651340772958278, 24.635421658083029 ], [ 85.647413365234556, 24.643250636907332 ], [ 85.647310012447051, 24.648573310409912 ], [ 85.655268181581263, 24.651828925464535 ], [ 85.680796339879109, 24.65854686114869 ], [ 85.688857862700146, 24.668830471149299 ], [ 85.693715448209318, 24.682162991528795 ], [ 85.696919387319824, 24.711541043184575 ], [ 85.700950147830994, 24.724537664981252 ], [ 85.708288202038815, 24.738645330817345 ], [ 85.718520135196044, 24.753786526327129 ], [ 85.731852654676217, 24.766550605026392 ], [ 85.746011997355751, 24.77003876407769 ], [ 85.830864698846696, 24.770917263221119 ], [ 85.849158155724282, 24.764457709055982 ], [ 85.865901319889971, 24.75171946877844 ], [ 85.911583286139702, 24.69846690522348 ], [ 85.959332309938119, 24.703221137045823 ], [ 86.001603632401654, 24.729111030549568 ], [ 86.018140090093013, 24.74298615238899 ], [ 86.04015425001856, 24.74998830801399 ], [ 86.046872185702767, 24.739601345225871 ], [ 86.044081658641559, 24.731436468718012 ], [ 86.037880486894863, 24.722367255544381 ], [ 86.032919550396898, 24.71239370390628 ], [ 86.03767378131991, 24.708362942495789 ], [ 86.048732537676386, 24.707071031303023 ], [ 86.06454552585528, 24.706657620153006 ], [ 86.081495395595965, 24.701102403553076 ], [ 86.097721795824128, 24.690482895868907 ], [ 86.107747023406347, 24.671646837531508 ], [ 86.117668898201018, 24.597026069197735 ], [ 86.125730421921375, 24.58069631618201 ], [ 86.136685826389723, 24.569585882982089 ], [ 86.154875929580427, 24.556098333870974 ], [ 86.174409620807282, 24.552377630822996 ], [ 86.191359491447287, 24.55302358686901 ], [ 86.213683709735378, 24.565606798414986 ], [ 86.223605585429354, 24.567932237482747 ], [ 86.262259555833765, 24.553798733224934 ], [ 86.290474888405342, 24.551550808522958 ], [ 86.296572707364504, 24.542507432871723 ], [ 86.300293410412479, 24.532611396498734 ], [ 86.304634230185485, 24.500313626572559 ], [ 86.303497348623665, 24.491063544446995 ], [ 86.298433059338194, 24.481606756746423 ], [ 86.272491489890257, 24.454450792270219 ], [ 86.270941197178431, 24.445924181455773 ], [ 86.276418897613979, 24.434813748255856 ], [ 86.355070428257633, 24.395281276909369 ], [ 86.416358677111219, 24.351873073783331 ], [ 86.438682896298573, 24.340375067855057 ], [ 86.449741651755787, 24.343113918972158 ], [ 86.456873000388597, 24.352312323355015 ], [ 86.46193728967414, 24.363138535714818 ], [ 86.463384229598475, 24.373525499402255 ], [ 86.461213820161603, 24.383473211719316 ], [ 86.462557408197753, 24.391767280335721 ], [ 86.46751834469579, 24.399906318421809 ], [ 86.475166457266127, 24.403136095054712 ], [ 86.48601850804765, 24.410474148363217 ], [ 86.485191684848346, 24.445226549465637 ], [ 86.494390090130523, 24.479798082515451 ], [ 86.5035884954127, 24.490650133296974 ], [ 86.536247999645397, 24.515635688336314 ], [ 86.58565066894316, 24.561446844895951 ], [ 86.607354771405511, 24.561291816164378 ], [ 86.628955520181051, 24.552920234081505 ], [ 86.649212680920442, 24.542662462502612 ], [ 86.666679314598611, 24.542404080084218 ], [ 86.68972700419782, 24.547778429530858 ], [ 86.702336053266194, 24.547778429530858 ], [ 86.72796756435153, 24.560129096180837 ], [ 86.737889439146244, 24.580851344913636 ], [ 86.745020785980415, 24.586845811085308 ], [ 86.755356072824426, 24.588137722278017 ], [ 86.768068474680305, 24.584675400749113 ], [ 86.781504347847303, 24.577492377071501 ], [ 86.813233676992567, 24.554160468430833 ], [ 86.889921502875012, 24.531603705246763 ], [ 86.891988560423655, 24.536926377850016 ], [ 86.889818150087507, 24.556795965861109 ], [ 86.890748326074316, 24.564547431218951 ], [ 86.900050083244679, 24.576407172353122 ], [ 86.915346306586713, 24.597258613194409 ], [ 86.917826776184683, 24.612684027745665 ], [ 86.9254748878557, 24.613588365310811 ], [ 86.961131625623949, 24.605190944806221 ], [ 87.013118117307187, 24.586044827206987 ], [ 87.029757927786065, 24.584029446501741 ], [ 87.042263624966253, 24.588396103797145 ], [ 87.050015090324095, 24.597026069197735 ], [ 87.051875441398437, 24.618084214714706 ], [ 87.055699497233917, 24.632011013397509 ], [ 87.069445427864167, 24.668055324793379 ], [ 87.066654900802959, 24.699474596475451 ], [ 87.077506951584468, 24.745337428979152 ], [ 87.075956658872641, 24.760452786067212 ], [ 87.071202427050295, 24.770452175227657 ], [ 87.06810184072728, 24.778487861425667 ], [ 87.071202427050295, 24.782751165933512 ], [ 87.077713658058812, 24.788771471426223 ], [ 87.085568475304825, 24.797892361443296 ], [ 87.10262169783303, 24.827477117774716 ], [ 87.112026808690231, 24.8391559917556 ], [ 87.119158156423723, 24.851144924098939 ], [ 87.121741977909878, 24.863753974066633 ], [ 87.117297805349367, 24.970879217901537 ], [ 87.121328565860594, 24.986278794930392 ], [ 87.128149856130889, 25.001626695115871 ], [ 87.150887485568916, 25.031624864395948 ], [ 87.174038527056311, 25.053871568318183 ], [ 87.185510694562865, 25.061984767982661 ], [ 87.216723259770532, 25.072552598823329 ], [ 87.230572544087565, 25.071777452467412 ], [ 87.254240350411791, 25.062914943969467 ], [ 87.261371698145268, 25.063974311165502 ], [ 87.265919224392619, 25.072165025195709 ], [ 87.280698683797183, 25.130740261353932 ], [ 87.282972446920823, 25.14970551179993 ], [ 87.291860792941151, 25.174251817267525 ], [ 87.302506138147677, 25.183915310543107 ], [ 87.315218540003542, 25.187222602441121 ], [ 87.337439406403448, 25.188230291894453 ], [ 87.342090285438275, 25.189961453558219 ], [ 87.348601516446749, 25.193888862181208 ], [ 87.355629509594138, 25.19706696197067 ], [ 87.36379438700132, 25.196498521189763 ], [ 87.376506788857156, 25.189961453558219 ], [ 87.392216425147851, 25.183992824908891 ], [ 87.4066858261899, 25.18104726821684 ], [ 87.423428990355589, 25.188540351156231 ], [ 87.42994021956541, 25.202260444264081 ], [ 87.436141392211397, 25.228796292015254 ], [ 87.441412387971283, 25.23582428606192 ], [ 87.454744908350776, 25.243317369001367 ], [ 87.455675083438322, 25.25166311356184 ], [ 87.459705844848813, 25.265925808129502 ], [ 87.470764602104666, 25.284167589062967 ], [ 87.509108514146561, 25.314992581542409 ], [ 87.523474563300383, 25.323777573875923 ], [ 87.535876905894426, 25.32003103330549 ], [ 87.539804315416788, 25.316517034933209 ], [ 87.54972619021143, 25.315199286218039 ], [ 87.558097772294303, 25.311891995219408 ], [ 87.570190057425165, 25.303468736293151 ], [ 87.581558872144157, 25.289903672816244 ], [ 87.588690219877691, 25.27682953485515 ], [ 87.598715448359172, 25.266700955384742 ], [ 87.659590285163503, 25.255073757347979 ], [ 87.681191033938987, 25.245436103393438 ] ] ] } },
+ { "type": "Feature", "properties": { "name": "West Bengal", "admin": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.90796959731901, 21.530707097954174 ], [ 88.895762565889626, 21.528469143136412 ], [ 88.879730664738346, 21.529974677489346 ], [ 88.862478060713869, 21.523586329845209 ], [ 88.838715040466681, 21.531927802625994 ], [ 88.830821160268258, 21.577378648505825 ], [ 88.841319207315479, 21.613999741894524 ], [ 88.872894727209868, 21.595526434097618 ], [ 88.88851972740342, 21.589544989209852 ], [ 88.902028842257181, 21.580267645035743 ], [ 88.911306186431304, 21.566880601458589 ], [ 88.913910352380782, 21.548407294560999 ], [ 88.90796959731901, 21.530707097954174 ] ] ], [ [ [ 88.139414910469711, 21.630316473626348 ], [ 88.130056185744337, 21.625921941844123 ], [ 88.118500196027171, 21.627671616951542 ], [ 88.091563346870913, 21.636542059268599 ], [ 88.063487175392751, 21.636664130545167 ], [ 88.051768425472389, 21.641587631863722 ], [ 88.043142123010483, 21.657619533015005 ], [ 88.042246941443167, 21.668158269888234 ], [ 88.043955924925953, 21.680853582826554 ], [ 88.050547721699942, 21.705389716062534 ], [ 88.090017122691989, 21.808661200354091 ], [ 88.119313997942612, 21.859523829960771 ], [ 88.146739129507154, 21.869859117704088 ], [ 88.167002800438837, 21.765448309292022 ], [ 88.163422071471331, 21.705471096613785 ], [ 88.132578972041856, 21.684963283128972 ], [ 88.144379102513511, 21.657782294117563 ], [ 88.1460067072437, 21.643744207928815 ], [ 88.139414910469711, 21.630316473626348 ] ] ], [ [ [ 88.649180535153548, 21.842352606487562 ], [ 88.64633222665087, 21.78790924701411 ], [ 88.636241082360002, 21.792669989028749 ], [ 88.599619988071922, 21.803656317584963 ], [ 88.591807488424806, 21.804388738949108 ], [ 88.590505405000357, 21.812892971033758 ], [ 88.584971549997007, 21.826605535916709 ], [ 88.58432050918411, 21.835760809713573 ], [ 88.586273634320705, 21.843003648199776 ], [ 88.598643425053965, 21.869859117704088 ], [ 88.616465691138643, 21.897935289182211 ], [ 88.636241082360002, 21.921372789022993 ], [ 88.650157097272185, 21.927435614462006 ], [ 88.663259311168233, 21.921291408471685 ], [ 88.670583530205676, 21.907416083385495 ], [ 88.667002800338921, 21.890326239564267 ], [ 88.655284050418544, 21.866603908243743 ], [ 88.649180535153548, 21.842352606487562 ] ] ], [ [ [ 88.104991082072715, 21.861151434690949 ], [ 88.080902540519773, 21.849351304219276 ], [ 88.072276238057881, 21.856756902908721 ], [ 88.07105553518474, 21.87360260597546 ], [ 88.073903841888722, 21.892157294323678 ], [ 88.07732181065299, 21.904608466507508 ], [ 88.084727410241712, 21.921576239052165 ], [ 88.09424889427099, 21.937892971683251 ], [ 88.105723504336183, 21.947577215915768 ], [ 88.118907096984898, 21.945013738892893 ], [ 88.132578972041856, 21.920477606556286 ], [ 88.125010613149215, 21.888657945008159 ], [ 88.104991082072715, 21.861151434690949 ] ] ], [ [ [ 88.118166945048401, 27.138498847144028 ], [ 88.148552687956141, 27.137852891997337 ], [ 88.193407831006525, 27.143537298907173 ], [ 88.233095331084584, 27.137103583163814 ], [ 88.336551547815631, 27.098966375797598 ], [ 88.343166131611653, 27.091524969701588 ], [ 88.348540481058293, 27.087959296284446 ], [ 88.357428827078621, 27.085117092379896 ], [ 88.371691521646341, 27.08457449002065 ], [ 88.403627557265878, 27.090827337711453 ], [ 88.423988071692094, 27.099896551784404 ], [ 88.447655878016263, 27.114495144035622 ], [ 88.518039177565967, 27.176222643360283 ], [ 88.542327102413807, 27.178082994434639 ], [ 88.613537225162744, 27.168135281218209 ], [ 88.664490188071653, 27.173354601033957 ], [ 88.671724887693344, 27.171210029119543 ], [ 88.693325637368204, 27.155112820100548 ], [ 88.719370558704242, 27.146198634759166 ], [ 88.732909783759425, 27.148937485876267 ], [ 88.733082315096723, 27.14897238766553 ], [ 88.742572469443857, 27.142737122620069 ], [ 88.805255981378409, 27.113023173280787 ], [ 88.827631877409189, 27.097881979569699 ], [ 88.840809367258416, 27.075247701120468 ], [ 88.845615275024883, 27.049564514091056 ], [ 88.845615275024883, 26.994942525876862 ], [ 88.845615275024883, 26.994839172190037 ], [ 88.85171309398406, 26.94543650469091 ], [ 88.867112671012904, 26.964246725505966 ], [ 88.886439656664763, 26.97897450806709 ], [ 88.906645141460032, 26.98109324245916 ], [ 88.924473511243477, 26.961662903120434 ], [ 88.926953979942169, 26.949415588358697 ], [ 88.925403686331009, 26.939028626469899 ], [ 88.925300334442824, 26.929365133194317 ], [ 88.93232832848949, 26.91923655192533 ], [ 88.942766968121006, 26.913707174646387 ], [ 88.954549194889395, 26.912621969028628 ], [ 88.965814656820882, 26.915464172933234 ], [ 88.975323120465561, 26.9217170215233 ], [ 88.996613810878586, 26.922750549398295 ], [ 89.021573527496258, 26.912673644972692 ], [ 89.044879599513862, 26.897119039212264 ], [ 89.060692586793351, 26.881461080664334 ], [ 89.07433516553543, 26.856398010359889 ], [ 89.082448364300518, 26.836037495933674 ], [ 89.096504354192547, 26.821413066160058 ], [ 89.128078655505519, 26.813454895227203 ], [ 89.184612670738133, 26.810561015378532 ], [ 89.212828003309639, 26.813041484077182 ], [ 89.240836629406871, 26.819759420660713 ], [ 89.252618856175204, 26.826787415606695 ], [ 89.262954142119924, 26.836347555195509 ], [ 89.27359948732645, 26.843892314079021 ], [ 89.286363566025699, 26.844977519696776 ], [ 89.300161173499276, 26.84440907801649 ], [ 89.341657348707642, 26.854330953710527 ], [ 89.368894557038089, 26.837358592824778 ], [ 89.407338094177618, 26.813403219283138 ], [ 89.442891480057682, 26.797021789424029 ], [ 89.505419962361287, 26.803688049164116 ], [ 89.546502726419618, 26.797538554260818 ], [ 89.586086873710173, 26.78405100514976 ], [ 89.611356648690318, 26.765964253847237 ], [ 89.613475383082388, 26.748549296113076 ], [ 89.597507365272619, 26.720954081165864 ], [ 89.609806355978463, 26.712220765675788 ], [ 89.628306518431003, 26.712530823138927 ], [ 89.663239786686717, 26.725501607413204 ], [ 89.685150594724107, 26.724571431426391 ], [ 89.738739054163972, 26.703280741912685 ], [ 89.754669662874605, 26.700988567868073 ], [ 89.760288126995405, 26.700180156489004 ], [ 89.80007897986097, 26.7004902139522 ], [ 89.804058065327396, 26.699766744439664 ], [ 89.81366988175958, 26.696149394179194 ], [ 89.817287232020064, 26.696201070123259 ], [ 89.822093139786531, 26.701006979688309 ], [ 89.825245402053582, 26.707673239428452 ], [ 89.826795694765423, 26.713512675069857 ], [ 89.826744018821373, 26.715683085406049 ], [ 89.827260782758842, 26.717905172585624 ], [ 89.827674194808168, 26.72245269793364 ], [ 89.829741251457548, 26.727620340906007 ], [ 89.834960571273285, 26.731547750428312 ], [ 89.839043010426536, 26.731237691166477 ], [ 89.847001180460083, 26.724829813844785 ], [ 89.850773559452165, 26.723176168345443 ], [ 89.858700634526571, 26.722056524089275 ], [ 89.853978306153834, 26.709429430124082 ], [ 89.87464887894258, 26.654445705804672 ], [ 89.878989698715586, 26.636979072126444 ], [ 89.888498163259584, 26.532902736871783 ], [ 89.873408644593198, 26.510371812109433 ], [ 89.871858351881343, 26.507038682689021 ], [ 89.870824823107029, 26.50393809726534 ], [ 89.869894647120219, 26.500062363687103 ], [ 89.85852583240117, 26.471046047237273 ], [ 89.853564895003814, 26.451796575951214 ], [ 89.843436313734841, 26.382162584335784 ], [ 89.841575961761151, 26.379294542009458 ], [ 89.839302198637526, 26.376994941363417 ], [ 89.826589796781647, 26.369966946417428 ], [ 89.818218214698774, 26.364205024242434 ], [ 89.815220982062598, 26.360975246710264 ], [ 89.814807570013315, 26.356246853309639 ], [ 89.815117629275093, 26.347901108749163 ], [ 89.825452915219813, 26.340382188287315 ], [ 89.829793735892153, 26.334206854962357 ], [ 89.828863559905272, 26.327850654484106 ], [ 89.822042271433617, 26.324595038530159 ], [ 89.806539340717947, 26.320409247488776 ], [ 89.781527948156196, 26.308678697563828 ], [ 89.778634068307539, 26.30557811124083 ], [ 89.774293246735894, 26.2973615587889 ], [ 89.758790317818836, 26.263177599366706 ], [ 89.743184035214981, 26.253565782035192 ], [ 89.732642042795959, 26.250646063764798 ], [ 89.730368279672334, 26.244057319289816 ], [ 89.732642042795959, 26.237546088281299 ], [ 89.737913038555845, 26.230388902126087 ], [ 89.738843215441975, 26.218503323469569 ], [ 89.735329217069619, 26.211707872520261 ], [ 89.727267694248638, 26.206204331864395 ], [ 89.708354119746758, 26.201036688892085 ], [ 89.687063430233053, 26.193001004492764 ], [ 89.657828608203644, 26.187174483115875 ], [ 89.658382202076922, 26.207858784954958 ], [ 89.653007854428878, 26.22268992120285 ], [ 89.634921102227025, 26.225842183469972 ], [ 89.613320353451485, 26.219382629304896 ], [ 89.606395711292961, 26.211011047222023 ], [ 89.608462768841648, 26.18067698205703 ], [ 89.61528405821268, 26.169101460863708 ], [ 89.614405558169935, 26.164192200309795 ], [ 89.593993367799655, 26.169721578488058 ], [ 89.586758667278602, 26.169204814550532 ], [ 89.579937377907626, 26.166104228227532 ], [ 89.573426147798415, 26.160729879680158 ], [ 89.562780803491236, 26.142591452433571 ], [ 89.569395386387939, 26.130085754354063 ], [ 89.585776815347671, 26.12290273157577 ], [ 89.604225300956827, 26.120732320340263 ], [ 89.592546427875305, 26.113962708711988 ], [ 89.577870321258246, 26.107244771229198 ], [ 89.566914916789898, 26.098976542833149 ], [ 89.567018270476737, 26.087090963277312 ], [ 89.57694014527145, 26.082646790716801 ], [ 89.590789428689149, 26.085023906627946 ], [ 89.603863567549567, 26.084662171422046 ], [ 89.611356648690318, 26.072208150185979 ], [ 89.602881713819983, 26.055258280445283 ], [ 89.559163452331376, 26.022237040107306 ], [ 89.550688517461055, 25.995055237209378 ], [ 89.551825399022889, 25.981516012154195 ], [ 89.549086547905773, 25.968855286242441 ], [ 89.541696818653222, 25.959708558703021 ], [ 89.528415975117113, 25.957124735418169 ], [ 89.518184041959941, 25.962085674614165 ], [ 89.509450724671169, 25.972627665234533 ], [ 89.495343058835005, 25.995055237209378 ], [ 89.490640502956779, 25.997329000333078 ], [ 89.485627890514678, 25.998724263414026 ], [ 89.480615275374618, 25.999241028250815 ], [ 89.426406697411082, 25.995055237209378 ], [ 89.426406697411082, 25.995003560365994 ], [ 89.426355021467018, 25.99495188442193 ], [ 89.426355021467018, 25.994900208477809 ], [ 89.42118737849465, 25.993194885235763 ], [ 89.416123087410526, 25.992626444454849 ], [ 89.41126550280066, 25.993194885235763 ], [ 89.406614624665153, 25.995055237209378 ], [ 89.391421753211304, 26.015467428479038 ], [ 89.379742879230406, 26.015312398848089 ], [ 89.367753946887063, 26.0054421999975 ], [ 89.351475870714793, 25.99686391233967 ], [ 89.335301147330014, 25.998569235581723 ], [ 89.315147339378171, 26.00678578713433 ], [ 89.29690555844472, 26.018154603652015 ], [ 89.272979371500725, 26.043476054576214 ], [ 89.237632690296351, 26.058100484349829 ], [ 89.229261108213549, 26.067195536844501 ], [ 89.223059936466854, 26.086574198440466 ], [ 89.212621297734614, 26.098976542833149 ], [ 89.197841837430801, 26.107709859222602 ], [ 89.13159265117983, 26.133754781457974 ], [ 89.11919030768648, 26.146622212944742 ], [ 89.111697224747076, 26.164502259571574 ], [ 89.103377320406963, 26.225170389901557 ], [ 89.095884237467516, 26.24103505492382 ], [ 89.075885457347951, 26.271059062625621 ], [ 89.069425903182818, 26.28738881564129 ], [ 89.068857462401894, 26.314260559277383 ], [ 89.080329630807782, 26.315604146414213 ], [ 89.094799031849774, 26.309506327455033 ], [ 89.103532349138533, 26.313692118496469 ], [ 89.102912232413502, 26.327334696339157 ], [ 89.095729207836627, 26.334517720916089 ], [ 89.071854695937404, 26.340615539875266 ], [ 89.055214885458525, 26.347023417196901 ], [ 89.0540780029974, 26.353948059355442 ], [ 89.057281942107906, 26.36262970070009 ], [ 89.052631063073051, 26.374618632144113 ], [ 89.043742717052723, 26.381078186309249 ], [ 89.021780233071212, 26.38624582928156 ], [ 89.010876505446305, 26.390173239703238 ], [ 89.001781453850967, 26.397149556906523 ], [ 88.986536906452983, 26.412704163566268 ], [ 88.975323120465561, 26.417871806538635 ], [ 88.959303426711742, 26.428568828588531 ], [ 88.950156697373615, 26.436940410671408 ], [ 88.941009968934893, 26.439420878470735 ], [ 88.924576864030968, 26.432134501106297 ], [ 88.911967814063289, 26.42123077438071 ], [ 88.899462117782477, 26.404487610215021 ], [ 88.89124556533055, 26.385780741288151 ], [ 88.89186568205551, 26.368779196502711 ], [ 88.91243290205675, 26.348935445114698 ], [ 88.941216675409166, 26.340098775038424 ], [ 88.966021362395878, 26.328471577900977 ], [ 88.975323120465561, 26.299946187866276 ], [ 88.981730997787267, 26.291832987302481 ], [ 88.989689168720119, 26.289404195447212 ], [ 88.998629192483207, 26.291522928940019 ], [ 89.007982626496954, 26.297155659905734 ], [ 89.004365275337122, 26.275709941660459 ], [ 89.011599975858175, 26.269198711551265 ], [ 89.023537231358063, 26.268836975446042 ], [ 89.034337606195521, 26.265788065966429 ], [ 89.039711954742856, 26.247184549827061 ], [ 89.019454793104131, 26.234472147971239 ], [ 88.975323120465561, 26.224343567601515 ], [ 88.946849406374938, 26.232921855259399 ], [ 88.902717732837033, 26.272919414599293 ], [ 88.875794311458236, 26.277363586260485 ], [ 88.855640504405685, 26.265116272398014 ], [ 88.840654338526846, 26.232043355216653 ], [ 88.824841349448647, 26.226565653881771 ], [ 88.807994832495453, 26.233438619196868 ], [ 88.798486368850817, 26.247649638719842 ], [ 88.792026814685684, 26.264599508460545 ], [ 88.784016967808768, 26.279947409545283 ], [ 88.747946817991178, 26.292504782669536 ], [ 88.663404174862748, 26.264444478829596 ], [ 88.645834188397018, 26.276019999123655 ], [ 88.653275594493024, 26.283099670913082 ], [ 88.690120890666535, 26.299842835078774 ], [ 88.702988322153303, 26.309661357085922 ], [ 88.71223840337953, 26.328264872325967 ], [ 88.709706258736759, 26.340615539875266 ], [ 88.696270386469095, 26.350279032251528 ], [ 88.673377727400165, 26.36071767188303 ], [ 88.667434937172558, 26.368159077979037 ], [ 88.668520141890994, 26.385729065344091 ], [ 88.661078735794973, 26.388881328510472 ], [ 88.65224206571871, 26.391516825940752 ], [ 88.649864949807494, 26.398389791255845 ], [ 88.651932007356194, 26.407071432600496 ], [ 88.6562728271292, 26.415132955421534 ], [ 88.6330184328543, 26.42009389371821 ], [ 88.622373088547121, 26.424538066278721 ], [ 88.611521036866279, 26.430842591712228 ], [ 88.603562866832803, 26.440196024826655 ], [ 88.59787845902359, 26.451461487657518 ], [ 88.591160522440106, 26.461228332821285 ], [ 88.579171590096777, 26.466034241487016 ], [ 88.55798425337052, 26.465724182225181 ], [ 88.549767700019274, 26.466654358212047 ], [ 88.526823364106903, 26.475387676400139 ], [ 88.50682458488663, 26.48763498936324 ], [ 88.498659709278087, 26.494869689884233 ], [ 88.487911011284083, 26.50577341840852 ], [ 88.475405314103895, 26.514971823690693 ], [ 88.462382852986238, 26.528821106209076 ], [ 88.446466512019839, 26.535539043691866 ], [ 88.4110164798266, 26.545099182381357 ], [ 88.397890665921437, 26.558690084279924 ], [ 88.394996786072781, 26.578378805137724 ], [ 88.395926961160271, 26.599566141863924 ], [ 88.39437666844843, 26.6180146283724 ], [ 88.385281616853078, 26.62354400744999 ], [ 88.372517537254495, 26.611606751050708 ], [ 88.360270223392007, 26.593106588598172 ], [ 88.352828817296015, 26.578688864399563 ], [ 88.332364950082351, 26.514661764428858 ], [ 88.319342488964637, 26.494921367626993 ], [ 88.319342488964637, 26.494869689884233 ], [ 88.313864786730491, 26.481537170404064 ], [ 88.315105021079816, 26.465052389556085 ], [ 88.322546427175823, 26.451771546020034 ], [ 88.335620565136907, 26.448205872602895 ], [ 88.340219767328307, 26.454148661931178 ], [ 88.343010294389529, 26.477196351530374 ], [ 88.346524291862508, 26.484017639102714 ], [ 88.353552286808551, 26.484586079883677 ], [ 88.376910034770248, 26.475335999556702 ], [ 88.434580932464016, 26.465155741444274 ], [ 88.461142619536218, 26.453890280412104 ], [ 88.475405314103895, 26.432031148318792 ], [ 88.495455770167595, 26.378080953673074 ], [ 88.497626181403092, 26.352707825006114 ], [ 88.475405314103895, 26.355808411329114 ], [ 88.46791223206381, 26.354051412142944 ], [ 88.457990356369777, 26.353017883368576 ], [ 88.44863692235603, 26.353431295417916 ], [ 88.442022339459328, 26.356118470590893 ], [ 88.431687053514651, 26.362216289550069 ], [ 88.426002644806189, 26.357927144821868 ], [ 88.421196737039722, 26.348728740439007 ], [ 88.413807006887779, 26.340202129624565 ], [ 88.366781454400524, 26.313433736078018 ], [ 88.351691935734181, 26.30097971753991 ], [ 88.336602417067837, 26.281807760619639 ], [ 88.332933390863246, 26.267235005890761 ], [ 88.334535360418485, 26.230803120867328 ], [ 88.32626713112316, 26.215920309574578 ], [ 88.30869714375811, 26.206101787567427 ], [ 88.250302775652514, 26.188015035365588 ], [ 88.229787232494729, 26.184035949899162 ], [ 88.218883504869808, 26.180160217220241 ], [ 88.211958862711285, 26.173752339898549 ], [ 88.205654338177084, 26.166414287489367 ], [ 88.196921020888325, 26.159644674062456 ], [ 88.163796427762904, 26.140472717142181 ], [ 88.155631551255041, 26.128483785698105 ], [ 88.144469442111003, 26.095875957409472 ], [ 88.141368855788002, 26.090501607063512 ], [ 88.139921915863653, 26.085333964091145 ], [ 88.141162150212992, 26.075463766139869 ], [ 88.144779500473518, 26.070502827843193 ], [ 88.150980672220186, 26.066988830370232 ], [ 88.156406698510281, 26.06140777624784 ], [ 88.157905314378667, 26.050452373578132 ], [ 88.15103234906357, 26.031332093501302 ], [ 88.125865925971624, 26.013400370930349 ], [ 88.106538940319794, 25.979965719442355 ], [ 88.088038777867254, 25.923224995936774 ], [ 88.082664429319934, 25.915938619471714 ], [ 88.077393432660728, 25.912786357204592 ], [ 88.074396200024566, 25.908135478169747 ], [ 88.082044311695583, 25.863848775900287 ], [ 88.088968953854064, 25.848655904446382 ], [ 88.087573689873835, 25.83997426400105 ], [ 88.087573689873835, 25.830982564293883 ], [ 88.103335002108608, 25.814807840909104 ], [ 88.108037557087499, 25.806281230094665 ], [ 88.114910522402596, 25.787264303704653 ], [ 88.127726277945314, 25.774913635256034 ], [ 88.146433145972864, 25.775740458455395 ], [ 88.166225220517489, 25.783646953444126 ], [ 88.182710002264727, 25.792431946676963 ], [ 88.227461793426954, 25.80426584938942 ], [ 88.259914592084712, 25.789021301092127 ], [ 88.320272664951489, 25.725252584439197 ], [ 88.392981404468202, 25.680759176594727 ], [ 88.419439737853537, 25.653784078372489 ], [ 88.423780559425239, 25.592237447100498 ], [ 88.437784872473827, 25.579835104506451 ], [ 88.475405314103895, 25.562575176403236 ], [ 88.485585571317003, 25.542628072227725 ], [ 88.512767375114194, 25.523714498625164 ], [ 88.520467164527957, 25.509296774426556 ], [ 88.530285686535166, 25.50020172103256 ], [ 88.55095625842452, 25.496481017984589 ], [ 88.593589315194691, 25.495085754903638 ], [ 88.613174683264944, 25.486404114458303 ], [ 88.645420776347663, 25.467335510325537 ], [ 88.666349732454108, 25.462891338664342 ], [ 88.678080281479751, 25.465888570401198 ], [ 88.687071981186918, 25.473898417278114 ], [ 88.695650268844787, 25.483613586497817 ], [ 88.706192261263809, 25.491675110218122 ], [ 88.714150431297341, 25.492811992679314 ], [ 88.723142131004508, 25.491416728699047 ], [ 88.732650595548506, 25.491003317549023 ], [ 88.742572469443857, 25.495189108590459 ], [ 88.741952351819506, 25.51275909415687 ], [ 88.77233809472726, 25.501958720218731 ], [ 88.780968058329151, 25.495189108590459 ], [ 88.793112020303425, 25.481959940998472 ], [ 88.805824422159318, 25.471676330997859 ], [ 88.814919474653976, 25.458602193036764 ], [ 88.816314737734885, 25.43720815163487 ], [ 88.799313192050121, 25.401706442598247 ], [ 88.799623250412623, 25.395608623639074 ], [ 88.810371948406654, 25.388425598162822 ], [ 88.813265828255311, 25.380054016079946 ], [ 88.814040976409871, 25.370390524603003 ], [ 88.818330119339507, 25.359641826608986 ], [ 88.841997924764343, 25.332821757118374 ], [ 88.8490259197104, 25.327189026152602 ], [ 88.859257853766891, 25.324708557453956 ], [ 88.880186808074697, 25.323468323104628 ], [ 88.886129598302233, 25.319075826488184 ], [ 88.902872762467922, 25.303417867040931 ], [ 88.926488891948779, 25.30047231034882 ], [ 88.975323120465561, 25.302642721584327 ], [ 88.982712849718183, 25.294477844177148 ], [ 88.984934936897773, 25.284969381431772 ], [ 88.982351115411618, 25.274892477006169 ], [ 88.975323120465561, 25.265228984629907 ], [ 88.937754353880266, 25.240165914325466 ], [ 88.929072713434934, 25.229417216331449 ], [ 88.927987508716484, 25.215929667220333 ], [ 88.930778035777649, 25.202648825482861 ], [ 88.927884155928979, 25.192726948889565 ], [ 88.909642374995585, 25.189161275472479 ], [ 88.924163451981698, 25.167870585059454 ], [ 88.898635295482421, 25.169317525883109 ], [ 88.830215698895344, 25.191331686707937 ], [ 88.823601115099308, 25.194845683281638 ], [ 88.817089884990125, 25.196809387143496 ], [ 88.80913171405733, 25.195259094431655 ], [ 88.802517131160627, 25.188127747597427 ], [ 88.792336873947519, 25.166578675665328 ], [ 88.784223673383778, 25.160945944699556 ], [ 88.724537394085402, 25.166475321978503 ], [ 88.664592733267952, 25.186887512348783 ], [ 88.634258667203682, 25.192261862694799 ], [ 88.599118693372972, 25.193140360938905 ], [ 88.590126993665749, 25.19014312740341 ], [ 88.577724650172428, 25.177482401491595 ], [ 88.570696655226399, 25.173244935405414 ], [ 88.559379516451457, 25.170764466706764 ], [ 88.554676961472566, 25.171126201013344 ], [ 88.550026082437725, 25.173141582617912 ], [ 88.523154337902298, 25.179807841458679 ], [ 88.491838419907126, 25.191124980233603 ], [ 88.475405314103895, 25.195104065700029 ], [ 88.441298869047543, 25.189729716253392 ], [ 88.431480347040335, 25.173038228931087 ], [ 88.434167521313995, 25.116659241530719 ], [ 88.425795939231165, 25.051056010426517 ], [ 88.414117065250295, 25.021522929139845 ], [ 88.391017701505675, 24.99509043417617 ], [ 88.387865438339233, 24.968761292 ], [ 88.37566980042088, 24.945610251411942 ], [ 88.340891560896793, 24.904139912826672 ], [ 88.322753134549458, 24.874684347704481 ], [ 88.31360640521136, 24.868302307005813 ], [ 88.296811564202272, 24.869697570986087 ], [ 88.254850301000516, 24.879955343464299 ], [ 88.242758015869668, 24.880601299510367 ], [ 88.241879516726257, 24.898765564279351 ], [ 88.232836141075026, 24.918273417084485 ], [ 88.218780151182997, 24.9351457724594 ], [ 88.202450399066578, 24.945300191250791 ], [ 88.183020061526548, 24.946979675171853 ], [ 88.164519897275369, 24.941114400209351 ], [ 88.114910522402596, 24.916413066010186 ], [ 88.114910522402596, 24.912020569393743 ], [ 88.120336547793372, 24.906775411156268 ], [ 88.124935750884148, 24.89814544755432 ], [ 88.138061563889991, 24.863496399239402 ], [ 88.140955445537358, 24.844582825636842 ], [ 88.131240275418321, 24.831767070094198 ], [ 88.117390991101317, 24.81926137291401 ], [ 88.107779174669105, 24.801097107245706 ], [ 88.094808390394846, 24.803112487950951 ], [ 88.08824548344225, 24.796136169848349 ], [ 88.085351604492914, 24.784018046295781 ], [ 88.08400801645675, 24.770452983718197 ], [ 88.076980022410041, 24.761177063170916 ], [ 88.064267618755508, 24.75916168246567 ], [ 88.053208862399046, 24.75497589142423 ], [ 88.048454631476019, 24.711205953092243 ], [ 88.035432169458971, 24.693816834679176 ], [ 88.027163941062994, 24.675730082477283 ], [ 88.021789592515603, 24.645602721987977 ], [ 88.040909871693174, 24.640435079015667 ], [ 88.057239623809522, 24.63410471605976 ], [ 88.067264852291061, 24.613666687267759 ], [ 88.081837606120558, 24.599869080693502 ], [ 88.084989868387638, 24.59387461452183 ], [ 88.084989868387638, 24.541733093207647 ], [ 88.086023397162009, 24.536720479866226 ], [ 88.090002483527741, 24.532999777717571 ], [ 88.098787475861272, 24.522483623720227 ], [ 88.107934204300065, 24.507962544935474 ], [ 88.10994958500531, 24.500986226832875 ], [ 88.138785034301847, 24.495250143079595 ], [ 88.401301311506273, 24.369418030317828 ], [ 88.475405314103895, 24.315467835672049 ], [ 88.498349650016266, 24.31097198536883 ], [ 88.563100219499503, 24.308207295830012 ], [ 88.612451212853131, 24.292885234066258 ], [ 88.63451705052141, 24.294125468415636 ], [ 88.649503215500914, 24.315364481985224 ], [ 88.660148559808121, 24.338257141054207 ], [ 88.681800985427103, 24.333890482859481 ], [ 88.71456384334661, 24.315416157929345 ], [ 88.737508179258981, 24.287097473469597 ], [ 88.743037557437262, 24.247539165500083 ], [ 88.744949585354988, 24.243379211981047 ], [ 88.747481729997759, 24.226971945498853 ], [ 88.749807169964853, 24.223251242450882 ], [ 88.74639652527938, 24.214078675590368 ], [ 88.734821004086001, 24.198420715243795 ], [ 88.731617065874815, 24.189842428485285 ], [ 88.731455734694322, 24.189771315493768 ], [ 88.715907430483455, 24.182917786326747 ], [ 88.693789916871125, 24.175321351499175 ], [ 88.683764689288907, 24.166536356467642 ], [ 88.678080281479751, 24.154289043504541 ], [ 88.678286987954067, 24.144651388650626 ], [ 88.682989542932987, 24.124290873325144 ], [ 88.681800985427103, 24.112663676187704 ], [ 88.675393107206091, 24.0918380746674 ], [ 88.67410119691263, 24.082639669385223 ], [ 88.679010457466561, 24.07121917782279 ], [ 88.697820679180921, 24.056258850365616 ], [ 88.700921265503922, 24.043649801297242 ], [ 88.725002482078793, 24.03837880553743 ], [ 88.725467570072254, 24.028896179415135 ], [ 88.713840372934825, 24.014685161690856 ], [ 88.701593058173032, 23.995280659874535 ], [ 88.708362670700623, 23.983550109949586 ], [ 88.714357136872295, 23.964403992350352 ], [ 88.717147664832837, 23.943139140359047 ], [ 88.714150431297341, 23.925155741843977 ], [ 88.704435262077624, 23.91370941185982 ], [ 88.666504761185749, 23.879499614015963 ], [ 88.653120564862135, 23.869784445695579 ], [ 88.63394860884118, 23.866141256114069 ], [ 88.613174683264944, 23.867846578456799 ], [ 88.593589315194691, 23.866916402469993 ], [ 88.577621297384923, 23.855160014123321 ], [ 88.57436568233031, 23.845625712056968 ], [ 88.575450887048731, 23.836556498883279 ], [ 88.577621297384923, 23.827616476019553 ], [ 88.577517945496737, 23.818521424424198 ], [ 88.572350302524384, 23.806894226387435 ], [ 88.557674194108742, 23.785681051239518 ], [ 88.552713256711385, 23.774984029189564 ], [ 88.552506551136361, 23.765423890500127 ], [ 88.559741251657371, 23.750282694990343 ], [ 88.561188192481012, 23.741006775342377 ], [ 88.540104208542331, 23.649952901205374 ], [ 88.541551148466652, 23.638764954538996 ], [ 88.55095625842452, 23.634424133866666 ], [ 88.561239868425147, 23.632486268426526 ], [ 88.566355835453393, 23.628739726057514 ], [ 88.564392130692198, 23.616208191354925 ], [ 88.561084838794187, 23.608611756527345 ], [ 88.561704956418538, 23.602023010253667 ], [ 88.571420126537575, 23.592333679455741 ], [ 88.581548706007922, 23.588328756466918 ], [ 88.601289103709107, 23.590344137172163 ], [ 88.609247273742625, 23.588793844460323 ], [ 88.624233440520783, 23.573859355424865 ], [ 88.647642864426572, 23.535076192911951 ], [ 88.664489380480447, 23.518307190324542 ], [ 88.693789916871125, 23.499807027872006 ], [ 88.704641967652648, 23.495181986359565 ], [ 88.719421427956476, 23.468103536249195 ], [ 88.731927124237345, 23.472625224074811 ], [ 88.743709351005677, 23.48931671139712 ], [ 88.756835164910896, 23.498799337519408 ], [ 88.770167684391055, 23.488825785881314 ], [ 88.767893921267358, 23.467276713049834 ], [ 88.719266398325587, 23.348291728080763 ], [ 88.695030151220436, 23.31260915189085 ], [ 88.685935100524418, 23.293308004660666 ], [ 88.686606893193499, 23.271603902198304 ], [ 88.696580444831611, 23.252354432710884 ], [ 88.710016317099289, 23.241218160189923 ], [ 88.775697063468655, 23.221632792119632 ], [ 88.786187378144945, 23.221529439332123 ], [ 88.794197225021875, 23.224965922439363 ], [ 88.800966838448787, 23.230753683036024 ], [ 88.809545125207293, 23.236050517217556 ], [ 88.822670939112513, 23.237962545135357 ], [ 88.839620808853212, 23.234810282868235 ], [ 88.909642374995585, 23.212434388636094 ], [ 88.918065633022522, 23.208584493479574 ], [ 88.926953979942169, 23.206517435930888 ], [ 88.954239136526866, 23.207421773496034 ], [ 88.959975220280143, 23.202693380095408 ], [ 88.95982019154853, 23.19445098922176 ], [ 88.954704224520285, 23.183805644015244 ], [ 88.945867554443993, 23.174348857213992 ], [ 88.919099161796836, 23.153859152477875 ], [ 88.864787231945158, 23.100270691239412 ], [ 88.851299682834025, 23.075130107468446 ], [ 88.84871586134787, 23.023841248674668 ], [ 88.839414103278187, 22.99536753458403 ], [ 88.83879398745249, 22.975808004036136 ], [ 88.842773071120263, 22.964568380526309 ], [ 88.861738322465541, 22.942399190070539 ], [ 88.872176961197724, 22.926767069944326 ], [ 88.893467652510125, 22.879638164669526 ], [ 88.905146526490938, 22.866434835499255 ], [ 88.93310347484541, 22.858114929360507 ], [ 88.944523966407857, 22.8480121874125 ], [ 88.946797730430873, 22.834524638301385 ], [ 88.945144084032208, 22.815094299862032 ], [ 88.941216675409166, 22.795663961422687 ], [ 88.93687585473684, 22.782331441043137 ], [ 88.926230510429633, 22.767035218600419 ], [ 88.914965048498146, 22.754400330211066 ], [ 88.908143758227808, 22.740783589890722 ], [ 88.910572550982394, 22.722593486700013 ], [ 88.922509806482353, 22.693706360560096 ], [ 88.925920451167812, 22.680838928173948 ], [ 88.930002889421743, 22.658618063572757 ], [ 88.942353556971042, 22.637482401891297 ], [ 88.952017049347305, 22.611902568548651 ], [ 88.956409545963737, 22.584979146270538 ], [ 88.950311727004504, 22.561983134414099 ], [ 88.927987508716484, 22.548133850097081 ], [ 88.959045044293291, 22.536816711322157 ], [ 88.970982299793235, 22.527928365301811 ], [ 88.979974000399736, 22.490928039497412 ], [ 88.998370809165451, 22.451240539419352 ], [ 89.002504923363432, 22.42798614514447 ], [ 89.000747925076652, 22.420131327898442 ], [ 88.992169637418755, 22.406953837149839 ], [ 88.989482463145094, 22.396670227149226 ], [ 88.9895858159326, 22.386903381985459 ], [ 89.001523071432572, 22.333676655952896 ], [ 89.00694909682332, 22.321429342090422 ], [ 89.023537231358063, 22.294815979074141 ], [ 89.009119507159454, 22.285617575590603 ], [ 89.018627970804161, 22.264688619484158 ], [ 89.062294555449313, 22.21156524713842 ], [ 89.07071781437557, 22.194822082972731 ], [ 89.076195517509049, 22.175030009327426 ], [ 89.078159220471576, 22.15084543906573 ], [ 89.060692586793351, 22.130484925538834 ], [ 89.060404308212213, 22.129810510446696 ], [ 89.060394726835085, 22.129868881843375 ], [ 89.060313347183168, 22.1306013041069 ], [ 89.043711784870908, 22.137396552708701 ], [ 89.048594597262806, 22.122951565562285 ], [ 89.045664910007517, 22.112046617557322 ], [ 89.039886915148983, 22.100897527898546 ], [ 89.036875847342429, 22.085598049010738 ], [ 89.040049675352165, 22.069525458033461 ], [ 89.054047070815599, 22.043646552446425 ], [ 89.057383659927922, 22.031236070088536 ], [ 89.0656030614321, 21.967108466382623 ], [ 89.06088300924344, 21.938462631944898 ], [ 89.036875847342429, 21.925116278193681 ], [ 89.023122591734179, 21.931097723081447 ], [ 89.013031446543991, 21.929429429424594 ], [ 89.008067254500119, 21.920558986208217 ], [ 89.009532097228472, 21.904608466507508 ], [ 88.993011915467477, 21.912665106009793 ], [ 88.960459831655882, 21.934312242715798 ], [ 88.944672071259021, 21.938788153250638 ], [ 88.937836133730556, 21.948716539136964 ], [ 88.934580925169513, 21.969305731374384 ], [ 88.928721549759672, 21.986558335398851 ], [ 88.913910352380782, 21.986558335398851 ], [ 88.905039910063721, 21.969427802650952 ], [ 88.910817904922311, 21.946478583419886 ], [ 88.924082879021597, 21.926336981066807 ], [ 88.937836133730556, 21.917669989678242 ], [ 88.951914909745241, 21.913885808882974 ], [ 88.968272332202318, 21.904730535985433 ], [ 88.995860222171459, 21.884182033573946 ], [ 89.015879754147292, 21.853338934144457 ], [ 89.030935092280615, 21.770453192061147 ], [ 89.043711784870908, 21.733343817163412 ], [ 89.047862174999324, 21.72801341398786 ], [ 89.067881706975157, 21.709133205233222 ], [ 89.082774284905241, 21.678208726151748 ], [ 89.085215690651566, 21.674709376836226 ], [ 89.088226759357426, 21.633734442390555 ], [ 89.082692905253325, 21.617336330107541 ], [ 89.064219597456415, 21.609198309154632 ], [ 89.0532332689002, 21.609808661040852 ], [ 89.04468834698956, 21.613511460385546 ], [ 89.038828972479024, 21.619452216346694 ], [ 89.036875847342429, 21.626898504862076 ], [ 89.03394616008714, 21.63324616088158 ], [ 89.02759850406764, 21.624579169493071 ], [ 89.021657748106563, 21.61180247600344 ], [ 89.019786004420538, 21.606105861696157 ], [ 89.000254753953683, 21.603420315195358 ], [ 88.975759311443014, 21.615912177205185 ], [ 88.933848503805379, 21.643947657958044 ], [ 88.896983268762796, 21.650132554673629 ], [ 88.891612174861947, 21.653509833611899 ], [ 88.886078320757846, 21.661810613868731 ], [ 88.881602410222996, 21.672023830335487 ], [ 88.872080925294398, 21.749009507183015 ], [ 88.866058789681333, 21.766831773267707 ], [ 88.858653190991944, 21.766831773267707 ], [ 88.855723503736655, 21.748846746979776 ], [ 88.841563347170663, 21.716253973342187 ], [ 88.838226758957688, 21.70197174729827 ], [ 88.842946811146348, 21.684149481213577 ], [ 88.859873893865057, 21.652573960419936 ], [ 88.858653190991944, 21.636542059268599 ], [ 88.844248893671448, 21.622219143398745 ], [ 88.823985221840445, 21.617254950455553 ], [ 88.805837436248595, 21.622870184211585 ], [ 88.797862175498935, 21.64020416968668 ], [ 88.814789259116978, 21.653876043844317 ], [ 88.818369988084427, 21.657619533015005 ], [ 88.818532748287666, 21.665838934519169 ], [ 88.816661003702322, 21.675034898142023 ], [ 88.810883008843732, 21.69171784100552 ], [ 88.804942253781959, 21.671861070132245 ], [ 88.800466342347747, 21.661851304593988 ], [ 88.794200065980235, 21.657619533015005 ], [ 88.784027540238739, 21.655951239358213 ], [ 88.77906334729559, 21.65119049734357 ], [ 88.777110222158939, 21.643540757000316 ], [ 88.776866082303769, 21.633449610910809 ], [ 88.781748893796333, 21.614243882649017 ], [ 88.791026237970456, 21.598863023209951 ], [ 88.796641471726474, 21.584418036063479 ], [ 88.790537957360783, 21.568264065434271 ], [ 88.762461784983358, 21.555853583076381 ], [ 88.727875196383167, 21.559881902827549 ], [ 88.707530144000856, 21.578314519899145 ], [ 88.722178582075841, 21.609198309154632 ], [ 88.687998894433377, 21.678127346499817 ], [ 88.684906446075601, 21.697211005283627 ], [ 88.703623893727681, 21.810614325490686 ], [ 88.698008659971649, 21.825506903420823 ], [ 88.69450931065613, 21.839829820190001 ], [ 88.714691601935826, 21.89785390863096 ], [ 88.716970248378217, 21.951971747697993 ], [ 88.722178582075841, 21.966131903364605 ], [ 88.733164909732736, 21.977199611572807 ], [ 88.74683678478975, 21.98712799745908 ], [ 88.758311393955623, 21.999457098366403 ], [ 88.763031446144254, 22.017279364451095 ], [ 88.754649285336171, 22.037583726108036 ], [ 88.717051628929454, 22.058050847968214 ], [ 88.70850670701887, 22.072211005433523 ], [ 88.71485436303837, 22.086981512087103 ], [ 88.730153841926196, 22.103583075298666 ], [ 88.763031446144254, 22.130560614280906 ], [ 88.743907097534446, 22.129339911407776 ], [ 88.726573112958746, 22.121161200628872 ], [ 88.71216881653757, 22.109035548851462 ], [ 88.701670769490349, 22.09585195530348 ], [ 88.694834831961856, 22.081529039433629 ], [ 88.692881706825261, 22.065863348514704 ], [ 88.69947350449857, 22.053208726301644 ], [ 88.718516471657765, 22.048041083329334 ], [ 88.730723503986468, 22.037176825150365 ], [ 88.723317905297037, 22.013088283597362 ], [ 88.701670769490349, 21.976019598525621 ], [ 88.69841556092932, 21.962591864223153 ], [ 88.689952018670667, 21.945990301910907 ], [ 88.678721550259283, 21.936672267910801 ], [ 88.667002800338921, 21.945013738892893 ], [ 88.656260613436515, 21.941066799693029 ], [ 88.642588738379501, 21.940904039489791 ], [ 88.630869988459139, 21.945461330575931 ], [ 88.625987175167921, 21.955511785940129 ], [ 88.627452018795537, 21.970404363870266 ], [ 88.631683790374595, 21.979803778421623 ], [ 88.64633222665087, 22.000230210455804 ], [ 88.653493686384451, 22.01801178671456 ], [ 88.652598503917744, 22.031805731249502 ], [ 88.64877363419582, 22.046047268366742 ], [ 88.645030144125812, 22.075140692688812 ], [ 88.639496290021711, 22.097235419279169 ], [ 88.639496290021711, 22.109523830360441 ], [ 88.656993034800649, 22.151068426866399 ], [ 88.674001498070623, 22.162054755422613 ], [ 88.683116082041508, 22.184963283029045 ], [ 88.679942254031729, 22.204413152944646 ], [ 88.660166862810428, 22.205023504830873 ], [ 88.66114342492908, 22.198960679391799 ], [ 88.656016471782706, 22.18325429954626 ], [ 88.649668815763206, 22.169094142980267 ], [ 88.64633222665087, 22.167792059555889 ], [ 88.64429772186233, 22.162298895277782 ], [ 88.634938998036304, 22.144964911601384 ], [ 88.630869988459139, 22.125799872266267 ], [ 88.622080924894689, 22.116034247482496 ], [ 88.619151238538763, 22.109523830360441 ], [ 88.618337435724001, 22.102972723412446 ], [ 88.619965040454161, 22.078314520698534 ], [ 88.625498893658957, 22.059271552640034 ], [ 88.625987175167921, 22.048041083329334 ], [ 88.620371941411904, 22.029974677389411 ], [ 88.602549675327211, 22.006415106272126 ], [ 88.598643425053965, 21.990301825468858 ], [ 88.600271029784125, 21.94721100568335 ], [ 88.598399285198795, 21.929348048873344 ], [ 88.567067905159632, 21.850816147846949 ], [ 88.564626498514002, 21.832342840949302 ], [ 88.565440300429472, 21.771185614324615 ], [ 88.564626498514002, 21.766831773267707 ], [ 88.581309441377556, 21.769435940116519 ], [ 88.604177280057385, 21.778753973217242 ], [ 88.624034050031327, 21.778021551853097 ], [ 88.632823112696414, 21.750067449852899 ], [ 88.630218945847602, 21.731756903158548 ], [ 88.623383009218429, 21.710272528454421 ], [ 88.612640821416718, 21.697495834964794 ], [ 88.598643425053965, 21.705389716062534 ], [ 88.591807488424806, 21.705389716062534 ], [ 88.599619988071922, 21.637274481532071 ], [ 88.595062696086515, 21.61212799730918 ], [ 88.578135613367792, 21.623439846271875 ], [ 88.578135613367792, 21.571682033299162 ], [ 88.572276237957936, 21.557928778590217 ], [ 88.558929884206719, 21.555568752495894 ], [ 88.544769726741407, 21.561997789066702 ], [ 88.536468946484632, 21.575100002063433 ], [ 88.530284049768994, 21.564398504987022 ], [ 88.529633008956168, 21.55337148660481 ], [ 88.534434440796744, 21.542914130282892 ], [ 88.543955924826008, 21.534084376892444 ], [ 88.5129500660926, 21.524644273414474 ], [ 88.493907097134795, 21.534816799155916 ], [ 88.487966342072966, 21.556545315513855 ], [ 88.49561608241622, 21.581854559040657 ], [ 88.502126497739638, 21.589341539180676 ], [ 88.508799675064878, 21.594387110876418 ], [ 88.514008008762559, 21.600816148346549 ], [ 88.516123894102392, 21.612616277918843 ], [ 88.516612174712051, 21.626410223353098 ], [ 88.518809441502441, 21.639146226117415 ], [ 88.522959832530191, 21.649888413919136 ], [ 88.529633008956168, 21.657619533015005 ], [ 88.509532097328403, 21.712307033242947 ], [ 88.504893424791675, 21.741522527942259 ], [ 88.512705925338111, 21.763413804503436 ], [ 88.532888217517197, 21.795314846602874 ], [ 88.531016472032519, 21.824123440344461 ], [ 88.515879754247223, 21.850816147846949 ], [ 88.49561608241622, 21.876695054333251 ], [ 88.514659050474705, 21.916205145151302 ], [ 88.514984570881182, 21.937201239245773 ], [ 88.49561608241622, 21.951808986595434 ], [ 88.499847852196567, 21.933661200104265 ], [ 88.492360872955871, 21.922023829835833 ], [ 88.481211785095724, 21.9098981789578 ], [ 88.474457227219176, 21.890326239564267 ], [ 88.477061394067988, 21.871812241941367 ], [ 88.492035352549451, 21.837144273689258 ], [ 88.49561608241622, 21.818670965892348 ], [ 88.493500196177067, 21.805161851038573 ], [ 88.488291863378763, 21.803656317584963 ], [ 88.481455924950893, 21.805161851038573 ], [ 88.474457227219176, 21.8009707701849 ], [ 88.468272332302234, 21.777248440663012 ], [ 88.457692904703762, 21.75885651251803 ], [ 88.453379754372108, 21.741766669596128 ], [ 88.452159049700342, 21.722805080290183 ], [ 88.454763217448473, 21.705389716062534 ], [ 88.468597851809349, 21.67715078348186 ], [ 88.472178581676175, 21.66327545839567 ], [ 88.468272332302234, 21.643947657958044 ], [ 88.456309440728077, 21.624009507432785 ], [ 88.441905144306901, 21.616156317060355 ], [ 88.426117383910068, 21.611029363913982 ], [ 88.40967858180106, 21.599269924167622 ], [ 88.3930770194888, 21.600246486286316 ], [ 88.383555535459521, 21.63141510612223 ], [ 88.382823113196068, 21.671332097897956 ], [ 88.392588737979835, 21.698553778534055 ], [ 88.38062584730497, 21.696193752439676 ], [ 88.364512566501702, 21.686957098091565 ], [ 88.355723503836572, 21.684963283128972 ], [ 88.346202018907974, 21.688625393547053 ], [ 88.340668164803873, 21.697495834964794 ], [ 88.33643639412422, 21.708726304275494 ], [ 88.331228061325902, 21.719061591119495 ], [ 88.326345248034713, 21.711086330369817 ], [ 88.324717644203858, 21.701361395412043 ], [ 88.327403190704644, 21.6911074891193 ], [ 88.345713738298329, 21.670599677433128 ], [ 88.349457227469017, 21.660956122127342 ], [ 88.348806185756786, 21.650295314876864 ], [ 88.34546959754384, 21.636542059268599 ], [ 88.335459832005569, 21.615790105928621 ], [ 88.321787956948626, 21.605658270013119 ], [ 88.309743685722452, 21.610174872172589 ], [ 88.304453972372841, 21.633449610910809 ], [ 88.302012565727267, 21.745184637461019 ], [ 88.298187696005343, 21.764105536041651 ], [ 88.28980553519726, 21.780218816844918 ], [ 88.273122592333706, 21.797919012552363 ], [ 88.261566601717249, 21.798651433916515 ], [ 88.26417076946538, 21.775295315526357 ], [ 88.295420768953292, 21.67658112232089 ], [ 88.297048372784133, 21.653876043844317 ], [ 88.294444206834598, 21.642808335636172 ], [ 88.284190300541908, 21.621242580380734 ], [ 88.283376497727119, 21.609198309154632 ], [ 88.287608269306119, 21.600287177011577 ], [ 88.300629101751596, 21.589341539180676 ], [ 88.304453972372841, 21.581854559040657 ], [ 88.30583743634854, 21.571682033299162 ], [ 88.303721550109387, 21.56879303586987 ], [ 88.297862174699532, 21.566555080152792 ], [ 88.287119987797141, 21.558294988822635 ], [ 88.278981966844228, 21.555161851538166 ], [ 88.266123893702655, 21.553859768113792 ], [ 88.254405143782307, 21.554673570029188 ], [ 88.249278191535254, 21.558294988822635 ], [ 88.24594160242296, 21.579901433904009 ], [ 88.237478061063641, 21.601711329913933 ], [ 88.224375847167522, 21.613023178876571 ], [ 88.208262566364255, 21.602972723512373 ], [ 88.189463738160939, 21.64179108369154 ], [ 88.181895379268312, 21.665228583532265 ], [ 88.180918816250298, 21.684963283128972 ], [ 88.190440300279576, 21.7040876326381 ], [ 88.203461134523678, 21.724351304469103 ], [ 88.21045983225541, 21.747259832974912 ], [ 88.20142662883579, 21.7743187525084 ], [ 88.209727409991942, 21.788560289625643 ], [ 88.203786654930113, 21.805405992692382 ], [ 88.154063346745986, 21.888088282947869 ], [ 88.156423372840294, 21.89785390863096 ], [ 88.159434441546153, 21.906154690686428 ], [ 88.146739129507154, 21.959214585284879 ], [ 88.149912957516946, 21.976385809657355 ], [ 88.156260613536432, 21.990871486629768 ], [ 88.164317253938037, 22.003119207885103 ], [ 88.206797721837319, 22.053371486504883 ], [ 88.222422722030927, 22.0779483095668 ], [ 88.212738476899148, 22.100043036157153 ], [ 88.203379753972442, 22.151760158404553 ], [ 88.198008660071565, 22.167792059555889 ], [ 88.165293816056689, 22.185003972855039 ], [ 88.118418816375225, 22.200181382264979 ], [ 88.081309441477501, 22.217352606637458 ], [ 88.07732181065299, 22.240423895346449 ], [ 88.059743686222063, 22.229478257515549 ], [ 88.043467644316294, 22.224758205326903 ], [ 88.027028842207216, 22.227850653684694 ], [ 88.009043815919284, 22.240423895346449 ], [ 87.985118035468901, 22.26593659160039 ], [ 87.972666863285085, 22.28318919562485 ], [ 87.967458530486709, 22.298488674512718 ], [ 87.964203321026361, 22.319281317678637 ], [ 87.950694207071905, 22.356187242547204 ], [ 87.947520379062183, 22.373846747529335 ], [ 87.946136915086498, 22.394924221275797 ], [ 87.94044029987991, 22.41303131704165 ], [ 87.927989129494662, 22.424221096526363 ], [ 87.906586134442506, 22.424750066962016 ], [ 87.906586134442506, 22.418605860971688 ], [ 87.922862175448969, 22.397772527979779 ], [ 87.935801629141821, 22.355169989703253 ], [ 87.947520379062183, 22.277655341520752 ], [ 87.952810092411795, 22.262437242284872 ], [ 87.965342644247571, 22.244818427128671 ], [ 87.991953972098074, 22.215887762110519 ], [ 88.008474154758389, 22.204901434453628 ], [ 88.025401238376375, 22.200913804528451 ], [ 88.057383660127726, 22.198879298840545 ], [ 88.095469597144103, 22.191229559396614 ], [ 88.132578972041856, 22.179144598344514 ], [ 88.160980664825772, 22.156561591144506 ], [ 88.17351321666159, 22.116888739223892 ], [ 88.164317253938037, 22.089789129864407 ], [ 88.140635613342823, 22.06012604438143 ], [ 88.111175976989699, 22.034857488881979 ], [ 88.084727410241712, 22.020697333215363 ], [ 88.048594597462667, 22.0207380230413 ], [ 88.043142123010483, 22.017279364451095 ], [ 88.0451766286984, 22.006537177548687 ], [ 88.049001498420324, 21.995428778615228 ], [ 88.050791863353737, 21.985012111219927 ], [ 88.046885613080491, 21.976019598525621 ], [ 88.032399936108092, 21.957180080496297 ], [ 87.983653190941979, 21.854193427684542 ], [ 87.970469597393944, 21.836493231077721 ], [ 87.957774285354944, 21.828924872185095 ], [ 87.948008659671856, 21.825384833043582 ], [ 87.909027540188774, 21.798814195019069 ], [ 87.902191601760961, 21.796820380056484 ], [ 87.899180534853755, 21.794826565093896 ], [ 87.895681186437557, 21.789374091541045 ], [ 87.89478600397085, 21.778753973217242 ], [ 87.892914259385492, 21.7743187525084 ], [ 87.867198113102376, 21.750799872116371 ], [ 87.833994988477883, 21.729315497412237 ], [ 87.755707227306615, 21.69171784100552 ], [ 87.703786655030029, 21.655503648574491 ], [ 87.683848504504837, 21.650132554673629 ], [ 87.642100457070384, 21.652085678910961 ], [ 87.621348503730403, 21.650620835283288 ], [ 87.477386914674341, 21.613592840936857 ], [ 87.468284133405959, 21.630049546749145 ], [ 87.436554803361432, 21.675628160211424 ], [ 87.430870395552262, 21.689322414897497 ], [ 87.4278731629161, 21.70366262473032 ], [ 87.427459750866745, 21.718183701716438 ], [ 87.43128380670224, 21.746450711131381 ], [ 87.431593865964075, 21.761591904842525 ], [ 87.424462518230584, 21.774743557169408 ], [ 87.408546177264199, 21.786138211209444 ], [ 87.275014275987957, 21.813965969254067 ], [ 87.251966587288081, 21.822105007340205 ], [ 87.239667595682903, 21.832595322915775 ], [ 87.231502720074417, 21.848098252732136 ], [ 87.225611606690251, 21.863575344126779 ], [ 87.219617141417899, 21.884995225749034 ], [ 87.214656203121223, 21.924140123467904 ], [ 87.20680138497589, 21.941425889992782 ], [ 87.190678339333815, 21.956205349397347 ], [ 87.155435011816266, 21.972095851942008 ], [ 87.136624790101948, 21.977237657391974 ], [ 87.120811801923068, 21.976927599029459 ], [ 87.112956983777707, 21.971398219951876 ], [ 87.10623904809357, 21.96173472757561 ], [ 87.100761345859368, 21.951296087944051 ], [ 87.094146762962666, 21.942201036348699 ], [ 87.085155064154819, 21.936619981327052 ], [ 87.076163365346972, 21.932899278279073 ], [ 87.069135370400986, 21.927576606575137 ], [ 87.063450961692453, 21.918171494818633 ], [ 87.059213494706952, 21.907190252827885 ], [ 87.047844679987961, 21.902177639486464 ], [ 87.03141157418473, 21.907991238504845 ], [ 87.004953240799395, 21.936981716532951 ], [ 86.995858189204029, 21.957032171697332 ], [ 86.993687778867837, 21.972483425569628 ], [ 87.004746535224371, 22.000052802095123 ], [ 87.005573358423675, 22.004832872339186 ], [ 87.00567671121118, 22.013979600777922 ], [ 87.004746535224371, 22.025710150702871 ], [ 87.000922479388848, 22.045218004407385 ], [ 86.999372185777688, 22.049894720964566 ], [ 86.996271600353992, 22.055475775986274 ], [ 86.987383254333665, 22.066586209186191 ], [ 86.971260206893007, 22.079531155038747 ], [ 86.943768344733243, 22.096403510413662 ], [ 86.892712029936192, 22.116583156787211 ], [ 86.876588983394782, 22.119812934319434 ], [ 86.861396111940934, 22.120510566309573 ], [ 86.848166945248281, 22.119296170381908 ], [ 86.833904249781241, 22.121750799759578 ], [ 86.781607700634808, 22.155185452146892 ], [ 86.766724888442781, 22.167716986849424 ], [ 86.749051548290296, 22.174305732223722 ], [ 86.732101677650263, 22.178155626480983 ], [ 86.715461867171342, 22.183504137505903 ], [ 86.70460981638989, 22.188697618000667 ], [ 86.686523065087314, 22.218023992813013 ], [ 86.693344353559013, 22.224328518246516 ], [ 86.70667687393852, 22.233010158691851 ], [ 86.723936802041734, 22.242156887130641 ], [ 86.728691033864067, 22.246471869381249 ], [ 86.733858676836391, 22.24673025179964 ], [ 86.750601841002123, 22.240503240731979 ], [ 86.761867302933609, 22.240606594418804 ], [ 86.76703494680531, 22.24670441337798 ], [ 86.769205357141445, 22.257375597006156 ], [ 86.767758417217095, 22.277348537804752 ], [ 86.772305942565126, 22.283911444757333 ], [ 86.780264112598644, 22.286701971818495 ], [ 86.795767043314342, 22.285229194371816 ], [ 86.833904249781241, 22.2883297797955 ], [ 86.849613885172616, 22.294427598754677 ], [ 86.852507765920606, 22.302024034481573 ], [ 86.848373650823277, 22.31008555820193 ], [ 86.831113722720076, 22.325691839906479 ], [ 86.816644321678012, 22.336388861956372 ], [ 86.803311802197854, 22.348377794299719 ], [ 86.797730747176203, 22.365379339984536 ], [ 86.795870396101847, 22.398658961841583 ], [ 86.789875929930176, 22.415634670004007 ], [ 86.773752883388767, 22.432351995747972 ], [ 86.760937127846134, 22.441240343566953 ], [ 86.729827915425886, 22.456097317337306 ], [ 86.723109978842359, 22.461962592299749 ], [ 86.718149042344393, 22.469403998395812 ], [ 86.713601516097057, 22.482943224350318 ], [ 86.712257928060907, 22.49276174635747 ], [ 86.712051223385217, 22.498161933326568 ], [ 86.712257928060907, 22.499815578825856 ], [ 86.712567987322686, 22.500823269178504 ], [ 86.713498163309538, 22.502166856315334 ], [ 86.716288690370718, 22.50557750100085 ], [ 86.721766391705543, 22.505887559363369 ], [ 86.74130008293244, 22.502373561890348 ], [ 86.750911900263901, 22.502683621152183 ], [ 86.757113072010597, 22.505835883419248 ], [ 86.759386835134293, 22.512088731110047 ], [ 86.758973423084953, 22.518677476484353 ], [ 86.757216424798102, 22.526428940942871 ], [ 86.749361606652741, 22.544799913085505 ], [ 86.740059848583059, 22.558209946931466 ], [ 86.726520624427209, 22.57156830483336 ], [ 86.702336053266194, 22.585882677143839 ], [ 86.685386184424814, 22.590791937697752 ], [ 86.639600865387578, 22.591541246531271 ], [ 86.625028110658704, 22.595752875095108 ], [ 86.611385532816016, 22.60425364838715 ], [ 86.601256952446334, 22.619033107791658 ], [ 86.594642368650312, 22.632546495324501 ], [ 86.586890904191804, 22.680683091851158 ], [ 86.524362420988879, 22.729413967580509 ], [ 86.498730909903529, 22.743134059788982 ], [ 86.490772739869982, 22.744064235775848 ], [ 86.482607863362119, 22.742410590276503 ], [ 86.469585402244462, 22.742824002325843 ], [ 86.452325474141261, 22.745356146968614 ], [ 86.399098749008019, 22.784966131781509 ], [ 86.394757928335693, 22.799306342513656 ], [ 86.395584750635663, 22.812664700415546 ], [ 86.400235629670519, 22.839355576898352 ], [ 86.400649041719859, 22.862997544800855 ], [ 86.401889276069184, 22.872867742752131 ], [ 86.411397739713863, 22.894881904476271 ], [ 86.414808384399379, 22.905940659933488 ], [ 86.413878208412527, 22.915423285156461 ], [ 86.410260858152057, 22.926249498415583 ], [ 86.410467563727011, 22.935783800481993 ], [ 86.414808384399379, 22.943457750574733 ], [ 86.441473423359739, 22.964024970575899 ], [ 86.452842238078773, 22.968908392708155 ], [ 86.467208286333275, 22.97247406702456 ], [ 86.483021275411474, 22.97417938936729 ], [ 86.495216913329813, 22.976944078006788 ], [ 86.501108025814659, 22.979269517973869 ], [ 86.50586225763702, 22.984049587318559 ], [ 86.506482375261371, 22.9883387311475 ], [ 86.503071729676535, 22.992033595773812 ], [ 86.495010206855497, 22.994979153365186 ], [ 86.477750278752339, 22.995521754825116 ], [ 86.468345167895151, 22.998467312416491 ], [ 86.464004348122074, 22.999319973138249 ], [ 86.462867465660949, 23.000250149125062 ], [ 86.462143996148455, 23.000844428327689 ], [ 86.459043409825469, 23.002549749771099 ], [ 86.450465122167572, 23.004203396169764 ], [ 86.314039341042687, 23.008595892786214 ], [ 86.260502556647594, 23.019809678773637 ], [ 86.218024530407703, 23.019887193139422 ], [ 86.207585890776201, 23.013841051023682 ], [ 86.192909784159141, 23.007743232064506 ], [ 86.178026971067808, 23.005727851359204 ], [ 86.163557570025745, 23.01105052306314 ], [ 86.14247358608705, 23.028258775222291 ], [ 86.020207146742365, 23.152592271216346 ], [ 86.00191368986485, 23.165097968396477 ], [ 85.982586704212991, 23.175045680713591 ], [ 85.959952426663094, 23.179128118967522 ], [ 85.942485792984925, 23.180342515794447 ], [ 85.900111118633149, 23.166364041167522 ], [ 85.888432244652307, 23.163082586791909 ], [ 85.885538364803651, 23.166338201846539 ], [ 85.880267369043779, 23.177009386374031 ], [ 85.878200310595815, 23.188791612243101 ], [ 85.871172315649787, 23.210702420280423 ], [ 85.839132928142064, 23.240623074295396 ], [ 85.829831170971701, 23.260802721568318 ], [ 85.832725050820358, 23.283126938957022 ], [ 85.843990512751915, 23.307027289277976 ], [ 85.859390089780774, 23.329299832521251 ], [ 85.874789666809619, 23.346766466199419 ], [ 85.880680780193785, 23.356300768265836 ], [ 85.883367953568126, 23.367850450138118 ], [ 85.885021599966791, 23.391130682834724 ], [ 85.889052362276658, 23.402577012818877 ], [ 85.894220005248968, 23.409837550862274 ], [ 85.894840121974013, 23.41647797307996 ], [ 85.885021599966791, 23.425883083937148 ], [ 85.878510369857594, 23.428053494273339 ], [ 85.847194451862421, 23.425883083937148 ], [ 85.841510044053265, 23.430094713400305 ], [ 85.836962517805873, 23.439241440939721 ], [ 85.830657994171048, 23.448388170277831 ], [ 85.823113234388217, 23.45386587251198 ], [ 85.822389763976375, 23.470195623729008 ], [ 85.825490350299376, 23.479316515544721 ], [ 85.828900994984892, 23.483063056115153 ], [ 85.849468214986061, 23.493191637384136 ], [ 85.903004999381125, 23.502674261707792 ], [ 85.919024693135029, 23.501795763463686 ], [ 85.942485792984925, 23.502855128861079 ], [ 85.996435987630647, 23.511510931784066 ], [ 86.004807569713506, 23.514223945378767 ], [ 86.010595331209501, 23.518564765151773 ], [ 86.015866326969359, 23.52931346314579 ], [ 86.014419387045038, 23.538434353162863 ], [ 86.001396925927324, 23.572334093543581 ], [ 86.000363397153009, 23.579517117221137 ], [ 86.002223749126671, 23.585640773702718 ], [ 86.00728803931149, 23.59362478305729 ], [ 86.015556267707538, 23.601789659565092 ], [ 86.02465132020221, 23.606750596962449 ], [ 86.039120721244259, 23.60716400811247 ], [ 86.056380650246723, 23.602513129077629 ], [ 86.098341913448479, 23.578741969965897 ], [ 86.129141065707572, 23.5783543972376 ], [ 86.134515415154212, 23.558872381954863 ], [ 86.123560011585226, 23.514223945378767 ], [ 86.121492954036555, 23.500891424999217 ], [ 86.121699659611565, 23.499263617022276 ], [ 86.12242313002335, 23.497196560372966 ], [ 86.126453892333231, 23.492468166972284 ], [ 86.134205356791753, 23.488282375930901 ], [ 86.149088168983752, 23.486577052688798 ], [ 86.157666456641579, 23.483812364049353 ], [ 86.184848260438841, 23.472262682177014 ], [ 86.203865187728169, 23.461203924921158 ], [ 86.214303827359657, 23.449163315734435 ], [ 86.22794640520236, 23.443246364827868 ], [ 86.242829217394416, 23.443582262511363 ], [ 86.273008253827797, 23.45373668130275 ], [ 86.302463819849365, 23.478076280296072 ], [ 86.313729282680228, 23.484561671983553 ], [ 86.323547804687379, 23.494095974049966 ], [ 86.328095330934701, 23.497842516418977 ], [ 86.329748977333367, 23.499909573068347 ], [ 86.330679152420856, 23.500607205058422 ], [ 86.332436150707707, 23.502674261707792 ], [ 86.336466913017588, 23.508436183882733 ], [ 86.340187616065563, 23.518332221155042 ], [ 86.34122114483992, 23.529907742348424 ], [ 86.340911085578099, 23.542387600207569 ], [ 86.34246137918926, 23.5541439894535 ], [ 86.348352491674092, 23.567941596027815 ], [ 86.360961541641799, 23.582075100285628 ], [ 86.379875116143623, 23.598017280573 ], [ 86.410467563727011, 23.616569118969657 ], [ 86.458526645887943, 23.638609117316882 ], [ 86.542449172291384, 23.660209866092426 ], [ 86.58317020114383, 23.677392279829853 ], [ 86.646112094597441, 23.69690013353431 ], [ 86.76403771416912, 23.714780178362496 ], [ 86.799797804724818, 23.725528876356513 ], [ 86.817884556027408, 23.75012685776823 ], [ 86.82243208227473, 23.776895250415457 ], [ 86.815920852165547, 23.796377264798931 ], [ 86.811373325918197, 23.806531684489638 ], [ 86.810029737882061, 23.81255198818371 ], [ 86.809719680418851, 23.81808136636192 ], [ 86.815094028966172, 23.836684882501284 ], [ 86.821915318337219, 23.848932197263078 ], [ 86.827186314097077, 23.855831000100576 ], [ 86.846306594173925, 23.868104153284033 ], [ 86.855504998556768, 23.878956204065553 ], [ 86.857675408892959, 23.882909451110262 ], [ 86.859639112754763, 23.888154609347733 ], [ 86.861396111940934, 23.895440985812851 ], [ 86.86460005105144, 23.902158922396318 ], [ 86.869767694023807, 23.908385932564723 ], [ 86.877209100119813, 23.913062649121962 ], [ 86.889818150087507, 23.91200328192587 ], [ 86.907284783765689, 23.905776271757524 ], [ 86.958961216187134, 23.87309092910305 ], [ 86.979941848237658, 23.863866685399213 ], [ 86.996271600353992, 23.862083848690641 ], [ 87.007847120648051, 23.861877143115628 ], [ 87.015598586005893, 23.859603379991992 ], [ 87.036992629206438, 23.839113674356547 ], [ 87.056733026008303, 23.825548610879647 ], [ 87.079677361920659, 23.81521332403565 ], [ 87.131870559178907, 23.803121038904802 ], [ 87.166287062597789, 23.810226549115949 ], [ 87.170317824008336, 23.823533230174398 ], [ 87.168457472933966, 23.829424343558564 ], [ 87.163289829062293, 23.837770087219717 ], [ 87.146133253746584, 23.852704576255171 ], [ 87.139415318062433, 23.859939276776167 ], [ 87.137244907726227, 23.86774241807813 ], [ 87.139311965274928, 23.873323473099781 ], [ 87.144686313822248, 23.878129380866191 ], [ 87.154298130254446, 23.879938055996483 ], [ 87.16504682824845, 23.878465278549751 ], [ 87.18602746029903, 23.872780869841272 ], [ 87.196672804606223, 23.871282253972815 ], [ 87.20535444505154, 23.868879298740634 ], [ 87.213002556722557, 23.862910670990622 ], [ 87.225094841853405, 23.846296698034159 ], [ 87.232536248848731, 23.845831610940078 ], [ 87.241217889294063, 23.850844225180815 ], [ 87.24648888505395, 23.864951891016908 ], [ 87.24824588424012, 23.875958971429377 ], [ 87.247625766615769, 23.897508043361476 ], [ 87.250416293676921, 23.905543727760794 ], [ 87.255790643123632, 23.909987901220624 ], [ 87.267262810630115, 23.909832872489055 ], [ 87.275634392712988, 23.915543117820611 ], [ 87.282662387658974, 23.927945462213295 ], [ 87.285142857257014, 23.940683702490841 ], [ 87.282972446920823, 23.954868882692775 ], [ 87.276151158449153, 23.966134345523578 ], [ 87.256720819110441, 23.980707099353133 ], [ 87.252379999337435, 23.987063299831384 ], [ 87.251449823350626, 23.993212796533321 ], [ 87.251449823350626, 24.000499172099065 ], [ 87.2471090026783, 24.005770168758257 ], [ 87.231296013600101, 24.019206041025935 ], [ 87.22571496037709, 24.027345079112077 ], [ 87.227161900301411, 24.033701280489701 ], [ 87.235533482384241, 24.040419216173852 ], [ 87.254757115248637, 24.046672064763975 ], [ 87.301575962160868, 24.056852321977029 ], [ 87.309017369156194, 24.056206365931011 ], [ 87.316148715990423, 24.051090399802089 ], [ 87.321729771012073, 24.042667140875832 ], [ 87.324520298073224, 24.03078156221931 ], [ 87.325450474060105, 24.017526557104922 ], [ 87.328137648333765, 24.007604682310209 ], [ 87.332168409744241, 24.002747096801041 ], [ 87.338059523128408, 24.001842760135268 ], [ 87.397177361645888, 24.023391832067368 ], [ 87.417641228859537, 24.023934434426561 ], [ 87.446580030943593, 24.016699733905561 ], [ 87.458155552136972, 24.019826157750963 ], [ 87.472004835554657, 24.034063014796281 ], [ 87.481720004774374, 24.040186672177182 ], [ 87.48874799972036, 24.046852931917268 ], [ 87.49122846931833, 24.055922145990216 ], [ 87.489988234069671, 24.081579495497287 ], [ 87.492572055555826, 24.097909246714316 ], [ 87.486887647746684, 24.124135037002358 ], [ 87.48854129414535, 24.132429103820066 ], [ 87.497739699427527, 24.138320217204235 ], [ 87.506628046347188, 24.140232245121972 ], [ 87.517273390654381, 24.138914496406862 ], [ 87.52967573414773, 24.132971707078575 ], [ 87.551689894972625, 24.1137997501583 ], [ 87.563265415266628, 24.11206859029317 ], [ 87.572050409398841, 24.117572130049716 ], [ 87.581868931405978, 24.136537380495664 ], [ 87.586829868803335, 24.149223944829142 ], [ 87.589310336602679, 24.170824692705359 ], [ 87.594064569324345, 24.178446966854032 ], [ 87.60543338404338, 24.182090156435546 ], [ 87.636129185313607, 24.178162746913241 ], [ 87.650908644718115, 24.17948049652767 ], [ 87.661553989924627, 24.186198432211874 ], [ 87.663414340998983, 24.200409450835476 ], [ 87.652768995792457, 24.218909614187336 ], [ 87.645947707320758, 24.223482977957072 ], [ 87.641400181073422, 24.223431301113628 ], [ 87.634888950964267, 24.220537421264957 ], [ 87.628997836680739, 24.219607245278148 ], [ 87.624553664120228, 24.222940374698506 ], [ 87.623313429770889, 24.23022675206294 ], [ 87.623313429770889, 24.239993598126027 ], [ 87.621866489846568, 24.25066478085494 ], [ 87.623726840920924, 24.260483302862092 ], [ 87.631478306278751, 24.26937164978181 ], [ 87.652872348579962, 24.276890571142921 ], [ 87.666101516171963, 24.280197862141613 ], [ 87.691836379145556, 24.296553453579005 ], [ 87.720568474755268, 24.317792467148642 ], [ 87.733797642347241, 24.334690660045901 ], [ 87.775758904649678, 24.419310818439492 ], [ 87.779789666959502, 24.435485540924955 ], [ 87.778446078923338, 24.446001694922241 ], [ 87.775345494398991, 24.455510159466254 ], [ 87.776275668587147, 24.464295151799767 ], [ 87.780409783684533, 24.471788234739218 ], [ 87.789298129704861, 24.479901435302956 ], [ 87.794155715214046, 24.485766710265459 ], [ 87.798496534987052, 24.494525865076575 ], [ 87.800460239748233, 24.500778712767382 ], [ 87.800046827698893, 24.508220119762704 ], [ 87.797256300637727, 24.51504140913368 ], [ 87.788574660192339, 24.526410223852729 ], [ 87.787127720267989, 24.533825792426338 ], [ 87.790848423316035, 24.562454535248598 ], [ 87.788988072241679, 24.569560045459689 ], [ 87.782373488445657, 24.574288437960998 ], [ 87.77172814323913, 24.578293361849145 ], [ 87.759842563683293, 24.581497300959647 ], [ 87.752401157587286, 24.587233384712928 ], [ 87.75085086487546, 24.59333120457142 ], [ 87.757465447772162, 24.599299832321371 ], [ 87.767697381828654, 24.601599432967415 ], [ 87.782166782870704, 24.599816596258897 ], [ 87.792915480864721, 24.596586818726671 ], [ 87.803147414021893, 24.591858425326045 ], [ 87.81193240815405, 24.586535752722789 ], [ 87.822991163611263, 24.581393948172146 ], [ 87.834876744066406, 24.579146023470166 ], [ 87.84924279232095, 24.579533596198466 ], [ 87.864228957300483, 24.582711696887255 ], [ 87.877251418418197, 24.588680325536583 ], [ 87.888000116412201, 24.597361965082595 ], [ 87.894821404883857, 24.604415798450297 ], [ 87.899989047856224, 24.620952257041033 ], [ 87.888000116412201, 24.626920884790987 ], [ 87.881592238191203, 24.626998399156772 ], [ 87.873840772833347, 24.629788927117257 ], [ 87.87012006978533, 24.63469818857055 ], [ 87.873427361683341, 24.644258328159303 ], [ 87.880662063103642, 24.650020250334244 ], [ 87.890790642574061, 24.655859686875029 ], [ 87.895338168821397, 24.661828315524296 ], [ 87.895441521608902, 24.670303250394678 ], [ 87.88893029239901, 24.680974433123591 ], [ 87.883039178115524, 24.687123928026828 ], [ 87.879008416704977, 24.694384466969545 ], [ 87.877458123993136, 24.702962755526748 ], [ 87.876838007268177, 24.7161919213201 ], [ 87.874770948820156, 24.726087957693089 ], [ 87.867949660348515, 24.736862494108774 ], [ 87.861128370977468, 24.750995999265903 ], [ 87.857924431866962, 24.755285143094849 ], [ 87.853273552832135, 24.758437405361967 ], [ 87.83043256970727, 24.761382962054025 ], [ 87.823301222873098, 24.763605048334277 ], [ 87.817410108589613, 24.767351588904656 ], [ 87.812449172091576, 24.775697333465125 ], [ 87.81100223216724, 24.785541693894054 ], [ 87.815859815877772, 24.794662583911073 ], [ 87.823714634023062, 24.796884671090702 ], [ 87.830742628969091, 24.794817613542019 ], [ 87.841181267701288, 24.788306383432822 ], [ 87.8486226746966, 24.787091987505217 ], [ 87.854203728818987, 24.789701646513773 ], [ 87.856684198416971, 24.79605784789134 ], [ 87.857924431866962, 24.800527858873576 ], [ 87.861955194176844, 24.851532497726559 ], [ 87.866709425999133, 24.862410386929803 ], [ 87.879111770391816, 24.87868846310209 ], [ 87.881902296553704, 24.891969305738822 ], [ 87.880868767779347, 24.915507920853823 ], [ 87.877458123993136, 24.938865667916215 ], [ 87.858854607853843, 25.008887234058584 ], [ 87.84955284978416, 25.030643012465013 ], [ 87.844075148449278, 25.041546739190661 ], [ 87.835600213578942, 25.047101955790591 ], [ 87.797359654324552, 25.083740546389087 ], [ 87.792605421602872, 25.086582750293697 ], [ 87.786921013793673, 25.087538763802907 ], [ 87.781029901308813, 25.089890042191652 ], [ 87.776275668587147, 25.096788845029145 ], [ 87.775138787924647, 25.103300076037662 ], [ 87.776482375061491, 25.117924505811281 ], [ 87.776275668587147, 25.124719956760593 ], [ 87.770384556102314, 25.147948513513079 ], [ 87.768730909703649, 25.159239813866289 ], [ 87.769454380115505, 25.173140774127429 ], [ 87.773278435950985, 25.184509588846417 ], [ 87.779066197447008, 25.191976834263464 ], [ 87.783510370007519, 25.200296739502896 ], [ 87.783717075582544, 25.21409434697653 ], [ 87.817100051126403, 25.246676336843443 ], [ 87.838080682277607, 25.277759710841956 ], [ 87.839010858264459, 25.288301703260963 ], [ 87.829192336257265, 25.302150987577981 ], [ 87.821234165324412, 25.3228732372101 ], [ 87.816789991864582, 25.341115017244245 ], [ 87.813689406440901, 25.347342027412591 ], [ 87.806868117069868, 25.354990139083604 ], [ 87.798806594248887, 25.365945543551952 ], [ 87.796326124650847, 25.368115952988823 ], [ 87.792708775289697, 25.369123643341421 ], [ 87.788884718554854, 25.368916937766468 ], [ 87.782063430083198, 25.366720689008556 ], [ 87.778239374247661, 25.366203925071083 ], [ 87.774828728662825, 25.366979072326323 ], [ 87.77203820160166, 25.368968613710532 ], [ 87.770384556102314, 25.371681627305229 ], [ 87.766663853054339, 25.381965237305842 ], [ 87.763356561156314, 25.388734849833433 ], [ 87.761186150820137, 25.391473700051215 ], [ 87.758395623758958, 25.393514920077504 ], [ 87.747750278552459, 25.397390651857048 ], [ 87.744959750591974, 25.399457709405731 ], [ 87.74382286992946, 25.402635810094516 ], [ 87.745579869115574, 25.406873277080077 ], [ 87.749713983313626, 25.411317450539908 ], [ 87.759532505320792, 25.417906195914206 ], [ 87.764183384355619, 25.422350369374037 ], [ 87.766973911416855, 25.426381129885211 ], [ 87.767904087403664, 25.429714260204943 ], [ 87.768317498553671, 25.43317658083452 ], [ 87.76800744019117, 25.43627716715752 ], [ 87.786094190594355, 25.446121528485715 ], [ 87.819373814250056, 25.457438666361323 ], [ 87.849966261833444, 25.471107083525048 ], [ 87.863195427626849, 25.478600165565176 ], [ 87.869706658635295, 25.486067410082903 ], [ 87.878181594405007, 25.499761663869656 ], [ 87.878491651868202, 25.500071723131494 ], [ 87.878801711130023, 25.500355943072289 ], [ 87.880352003841864, 25.501286119059095 ], [ 87.885519646814188, 25.503663234970301 ], [ 87.922623326305398, 25.514437771386039 ], [ 87.942880487044789, 25.525367337432662 ], [ 87.955799595374941, 25.534074815400395 ], [ 87.974919874552512, 25.528312893225401 ], [ 87.988665806082039, 25.518287664743916 ], [ 87.990216098793866, 25.514592800117605 ], [ 87.990526158055715, 25.507693997280107 ], [ 88.005822382297069, 25.501208603793991 ], [ 88.067420688613865, 25.491080024323644 ], [ 88.065250279176979, 25.50653127729657 ], [ 88.064940219915158, 25.519863795877477 ], [ 88.062769809579009, 25.524592190177422 ], [ 88.058945753743487, 25.529914862780682 ], [ 88.050470818873166, 25.537511298507578 ], [ 88.046129999100089, 25.542627265535881 ], [ 88.043132765564607, 25.547097276518052 ], [ 88.04406294065214, 25.55691579852526 ], [ 88.052124465271831, 25.58456269031586 ], [ 88.056775344306615, 25.614121609124929 ], [ 88.056671990619833, 25.621278795280141 ], [ 88.055535109057971, 25.627428290183438 ], [ 88.050470818873166, 25.645670071116847 ], [ 88.046440056563299, 25.668872789447672 ], [ 88.042822707202149, 25.67814870909563 ], [ 88.032900832407435, 25.691326198944914 ], [ 88.005098910985893, 25.710808214227708 ], [ 87.942570427782968, 25.735328681273579 ], [ 87.932235141838291, 25.751296699083348 ], [ 87.910531040275245, 25.765120144079383 ], [ 87.904123162953539, 25.773310859008909 ], [ 87.897508579157517, 25.7865658641233 ], [ 87.892650995447056, 25.804187527432411 ], [ 87.887069940425349, 25.813308417449488 ], [ 87.882419061390493, 25.818760281261966 ], [ 87.878078240718168, 25.822558499575045 ], [ 87.86505577960051, 25.843900865032875 ], [ 87.854927199230801, 25.849843655260482 ], [ 87.824334750748093, 25.862840277956419 ], [ 87.805421177145533, 25.873666490316278 ], [ 87.800977003685702, 25.878782457344524 ], [ 87.798289829412042, 25.88312327711753 ], [ 87.797359654324552, 25.886999009796448 ], [ 87.79611941907585, 25.890487168847752 ], [ 87.794465772677228, 25.893665269536534 ], [ 87.78919477691737, 25.902372748403589 ], [ 87.787954542568045, 25.906351833870016 ], [ 87.787437778630519, 25.911674506473268 ], [ 87.789504836179205, 25.919167589412716 ], [ 87.79322553922718, 25.923379217976496 ], [ 87.800770298110692, 25.926195584358702 ], [ 87.81100223216724, 25.928546860948863 ], [ 87.814412875953423, 25.931802476003437 ], [ 87.817100051126403, 25.937073473561945 ], [ 87.824541457222423, 25.966296494687462 ], [ 87.828365513057889, 25.975443224025518 ], [ 87.829915805769744, 25.986579494747836 ], [ 87.828882276995429, 25.99996369107145 ], [ 87.82898562978292, 26.000118719803076 ], [ 87.82898562978292, 26.000428779064855 ], [ 87.831362745694079, 26.010557359434578 ], [ 87.839424270313756, 26.022313747781194 ], [ 87.867329542724164, 26.049185492316603 ], [ 87.936679315298122, 26.09900157276433 ], [ 87.970268996417005, 26.138301500114089 ], [ 87.979364048012343, 26.145794583053537 ], [ 87.985565219759039, 26.146983141458797 ], [ 87.992386509130014, 26.146828110928535 ], [ 87.999414504076043, 26.146027127050271 ], [ 88.006545851809548, 26.146905626193693 ], [ 88.016467726604262, 26.150884710760746 ], [ 88.038068475379788, 26.171116033977732 ], [ 88.047473586236976, 26.17711050104878 ], [ 88.067730746976324, 26.1851203479257 ], [ 88.079823033006477, 26.192820136440098 ], [ 88.097909784309053, 26.211113593317631 ], [ 88.118580357097727, 26.226487331924822 ], [ 88.154443801340307, 26.265425523169309 ], [ 88.167466261558644, 26.277181912415298 ], [ 88.180488722676373, 26.28552765607645 ], [ 88.208910759923555, 26.293589178897484 ], [ 88.220072869966927, 26.29945445385993 ], [ 88.251078728700335, 26.326765448866347 ], [ 88.263687778667958, 26.332708238194638 ], [ 88.276503534210676, 26.334904486952492 ], [ 88.292523227964566, 26.33513703094922 ], [ 88.297174106999393, 26.336222236566918 ], [ 88.300171339635583, 26.338935248362983 ], [ 88.302445102759208, 26.34389618576034 ], [ 88.303892042683557, 26.351751003905683 ], [ 88.303685337108547, 26.35996755635761 ], [ 88.299551222910551, 26.368804226433888 ], [ 88.292213168702716, 26.376452338104908 ], [ 88.278673943647533, 26.383557848315995 ], [ 88.259450310783137, 26.390844224781112 ], [ 88.254489374285171, 26.3960377061752 ], [ 88.253765903873315, 26.403582465058715 ], [ 88.257796665283792, 26.410868842423096 ], [ 88.263997837030487, 26.415674750189563 ], [ 88.274229771087022, 26.420842393161873 ], [ 88.278363885285032, 26.423684597066476 ], [ 88.282291293908003, 26.428438828888826 ], [ 88.278673943647533, 26.435001735841404 ], [ 88.27081912640152, 26.444225979545301 ], [ 88.237436150857633, 26.474637559975399 ], [ 88.227824335324769, 26.481458849346378 ], [ 88.216455519706386, 26.484843654710851 ], [ 88.208704055247864, 26.488693548968108 ], [ 88.199609002753192, 26.495979926332488 ], [ 88.195268182080866, 26.500139878952208 ], [ 88.195268182080866, 26.500243231739709 ], [ 88.194958123718365, 26.501483466089091 ], [ 88.196198358067747, 26.512619736811352 ], [ 88.205810175399208, 26.539724026242816 ], [ 88.203433058588729, 26.547191269861166 ], [ 88.194027947731556, 26.54951670982825 ], [ 88.150206332556124, 26.535305691204648 ], [ 88.13098270059109, 26.531197415428373 ], [ 88.121887648096418, 26.530499783438238 ], [ 88.104627719993218, 26.535434882413874 ], [ 88.087136240744869, 26.539100004661456 ], [ 88.101681355709943, 26.58194447945413 ], [ 88.14663985244718, 26.661216125923424 ], [ 88.163383015713549, 26.705141092987041 ], [ 88.167517130810879, 26.725036519419799 ], [ 88.169067424422039, 26.74400176986574 ], [ 88.16782718917338, 26.76291534436762 ], [ 88.159042195940543, 26.802551169400935 ], [ 88.155321492892526, 26.845597636421754 ], [ 88.151394084269526, 26.862805888580844 ], [ 88.142815795712337, 26.878412170285394 ], [ 88.120439901480196, 26.908849589137212 ], [ 88.111809936978929, 26.924300842110135 ], [ 88.096823771100091, 26.959337464052673 ], [ 88.076876668723202, 26.99179026360974 ], [ 88.05594771441541, 27.018041891420118 ], [ 88.042821900510233, 27.028945618145762 ], [ 88.02737064753731, 27.035353495467401 ], [ 88.009490600910439, 27.04563710546801 ], [ 87.991300496820401, 27.08150055060991 ], [ 87.975487509540841, 27.095143128452602 ], [ 87.970733276819246, 27.102739563280174 ], [ 87.969182983208029, 27.110801087000532 ], [ 87.970836630506014, 27.119224345027469 ], [ 87.985461059380313, 27.148369853585841 ], [ 87.989336792059234, 27.218391418828894 ], [ 88.004662758679316, 27.249163088705579 ], [ 88.023185663187718, 27.24244599118952 ], [ 88.036208124305446, 27.229320177284304 ], [ 88.069591098949985, 27.209037177223927 ], [ 88.077342564307841, 27.198831082488418 ], [ 88.081166620143364, 27.189400133209567 ], [ 88.081993443342668, 27.169582221142541 ], [ 88.084473911142013, 27.159427802351154 ], [ 88.088814731814381, 27.151650499470968 ], [ 88.100596957683393, 27.1433822701756 ], [ 88.118166945048401, 27.138498847144028 ] ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Bihar", "admin": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.195253134524449, 27.436052551184268 ], [ 84.225535522846059, 27.440393371856594 ], [ 84.239023071057815, 27.431143291529672 ], [ 84.248893269908407, 27.412436422602806 ], [ 84.267703492522088, 27.388561910703565 ], [ 84.289407593185828, 27.376107890366818 ], [ 84.577038614840134, 27.329030660136816 ], [ 84.606545857705143, 27.310478820840892 ], [ 84.631918986372099, 27.277044169352898 ], [ 84.648197063443646, 27.240715637116914 ], [ 84.657653849345621, 27.203405252950059 ], [ 84.65982425968177, 27.16511301685221 ], [ 84.654398234290994, 27.125373840830086 ], [ 84.644528035440416, 27.103721415211105 ], [ 84.630368693660245, 27.080828756142175 ], [ 84.621480346740526, 27.057987773017313 ], [ 84.627268107337258, 27.036490377029278 ], [ 84.640238892510851, 27.028377177364799 ], [ 84.760696655825981, 26.99902496323147 ], [ 84.771962117757468, 26.999179992862359 ], [ 84.785501342812651, 27.008481750932042 ], [ 84.801934449515201, 27.013752747591177 ], [ 84.81748905437631, 27.010600484424792 ], [ 84.828134400482128, 26.994942525876862 ], [ 84.828289429213697, 26.994839172190037 ], [ 84.851750529063594, 26.982126770334155 ], [ 84.901566610410711, 26.967192281298704 ], [ 84.92404585832962, 26.955668436948763 ], [ 84.938566935315734, 26.936599834614633 ], [ 84.944251343124947, 26.915722554452309 ], [ 84.952726277995268, 26.89763580314979 ], [ 84.97577396669513, 26.886887105155772 ], [ 84.988176310188507, 26.883786520631411 ], [ 85.000837036100265, 26.88223622702025 ], [ 85.018045288259415, 26.874433086617607 ], [ 85.016856730753474, 26.859240214264439 ], [ 85.018562052196884, 26.845804341996761 ], [ 85.043986857707267, 26.843737284448075 ], [ 85.1002108154767, 26.86352935809338 ], [ 85.122845093026541, 26.865699768429572 ], [ 85.162015828267826, 26.851023662711832 ], [ 85.165529825740791, 26.820792949435024 ], [ 85.165684855371723, 26.786273092329331 ], [ 85.19493371581828, 26.758884582957133 ], [ 85.287279500248673, 26.736973776718393 ], [ 85.302369018915016, 26.737335510125654 ], [ 85.337043904752335, 26.746792297826282 ], [ 85.353218628137128, 26.757592672663684 ], [ 85.355352458549063, 26.759912352473059 ], [ 85.369238321891018, 26.775007629498468 ], [ 85.385878133269188, 26.788443502665466 ], [ 85.403189738215801, 26.787616679466161 ], [ 85.4215348719367, 26.782655742068805 ], [ 85.439621623239276, 26.787720032253667 ], [ 85.475691773056823, 26.805238343674596 ], [ 85.519461710489495, 26.826425680400796 ], [ 85.598578328227205, 26.854382630553907 ], [ 85.609378703064621, 26.851023662711832 ], [ 85.687771850390533, 26.811852926571298 ], [ 85.701827840282576, 26.796608378274009 ], [ 85.709630982483802, 26.762450256374215 ], [ 85.70224125143254, 26.688449606564056 ], [ 85.712886597538372, 26.653206279046511 ], [ 85.727045939318586, 26.637599996442638 ], [ 85.780996134863685, 26.599204407557345 ], [ 85.789987833671518, 26.597033997221153 ], [ 85.80006473809712, 26.600703023425744 ], [ 85.809728231372716, 26.603028463392825 ], [ 85.81763472546217, 26.596723937959318 ], [ 85.81954675337991, 26.588300679932381 ], [ 85.819753458954935, 26.579515687598867 ], [ 85.82161381002922, 26.571712545397638 ], [ 85.828538452187772, 26.56613149037593 ], [ 85.844764852415935, 26.568508606287136 ], [ 85.866365601191475, 26.579929097849568 ], [ 85.934681844091799, 26.632897441463733 ], [ 85.952148478669272, 26.64204416900315 ], [ 85.975712931306674, 26.64436960897023 ], [ 86.011369669974258, 26.654446513395833 ], [ 86.04170373513918, 26.645454814587985 ], [ 86.110691773406558, 26.606749166440856 ], [ 86.115859415479548, 26.602563375399424 ], [ 86.122060588125564, 26.60028961227578 ], [ 86.144798218462981, 26.601529847524429 ], [ 86.146354618470795, 26.601355776547841 ], [ 86.152653035708951, 26.60065134748168 ], [ 86.167794230319416, 26.59662058517187 ], [ 86.174460490059502, 26.593313293273859 ], [ 86.179266398725289, 26.588610738294896 ], [ 86.185364217684466, 26.584424947253464 ], [ 86.195854533260018, 26.582667948966666 ], [ 86.202882528206075, 26.584579976884406 ], [ 86.225155071449336, 26.59739573242711 ], [ 86.26308557144192, 26.609074606407937 ], [ 86.284427937799052, 26.612020162200675 ], [ 86.301377808439085, 26.609022930463873 ], [ 86.308612508060762, 26.60214996335008 ], [ 86.309025920110102, 26.587990622469242 ], [ 86.316002238212633, 26.580962627523199 ], [ 86.323185261890259, 26.580084127480458 ], [ 86.344837688408546, 26.582616272123225 ], [ 86.353674358484767, 26.582616272123225 ], [ 86.383646688443875, 26.572849426959458 ], [ 86.444831584509956, 26.543083802575431 ], [ 86.475475708037408, 26.531973368476141 ], [ 86.494906046476828, 26.527839254278142 ], [ 86.510615681868146, 26.520139466663007 ], [ 86.524309937453594, 26.509080709407208 ], [ 86.537745808821938, 26.494869689884233 ], [ 86.537952515296283, 26.494869689884233 ], [ 86.557899617673144, 26.484017639102714 ], [ 86.625337361430041, 26.45631907136805 ], [ 86.695203897941482, 26.418233540845215 ], [ 86.713600709405156, 26.414564515539944 ], [ 86.724091024081446, 26.42195424389319 ], [ 86.730705606978105, 26.433788148404286 ], [ 86.738198689917553, 26.443710022299676 ], [ 86.751892945503002, 26.445518697429911 ], [ 86.787239624009402, 26.433064677093164 ], [ 86.796438029291579, 26.431514384381323 ], [ 86.8218628339026, 26.438128967277969 ], [ 86.846357463426131, 26.452650045163402 ], [ 86.865684448178669, 26.472442119708028 ], [ 86.875968058179268, 26.494921367626993 ], [ 86.907128947442899, 26.511509501262474 ], [ 86.935153472654562, 26.520289335984039 ], [ 86.972447957707047, 26.531973368476141 ], [ 86.98521203640631, 26.540655008921526 ], [ 87.015442748783798, 26.568973694280537 ], [ 87.02991214982579, 26.579774068218679 ], [ 87.041332641388223, 26.580187480267959 ], [ 87.044433227711224, 26.561170552978631 ], [ 87.04500166849212, 26.544272359181996 ], [ 87.056473836897993, 26.494921367626993 ], [ 87.056473836897993, 26.494869689884233 ], [ 87.056680542473018, 26.494869689884233 ], [ 87.066705770055165, 26.465620829437675 ], [ 87.083293905489285, 26.432082825162233 ], [ 87.106289917345734, 26.404745993532735 ], [ 87.135022013854822, 26.394204000214408 ], [ 87.188455445462395, 26.399578349661109 ], [ 87.219099568989847, 26.408104960475548 ], [ 87.229434854934567, 26.398751526461744 ], [ 87.236307821148998, 26.383300273488821 ], [ 87.245299519956831, 26.370226136427043 ], [ 87.258425333861993, 26.362939758163289 ], [ 87.300489949851269, 26.345989888422586 ], [ 87.314029174906452, 26.343767802142331 ], [ 87.326224812824805, 26.353327942630408 ], [ 87.34493168175166, 26.389346416503876 ], [ 87.356403849258172, 26.403712463859101 ], [ 87.384205769780394, 26.418646952894555 ], [ 87.416451863762447, 26.426966858133987 ], [ 87.449628133731309, 26.428620504532653 ], [ 87.480323934102188, 26.423401185616221 ], [ 87.552050823486681, 26.386710917274961 ], [ 87.586984089943755, 26.378029276829629 ], [ 87.623984415748154, 26.392912089021642 ], [ 87.648744952317642, 26.409993271472267 ], [ 87.659641154415667, 26.417510071332678 ], [ 87.681190226347823, 26.424228007016886 ], [ 87.697571655307598, 26.416269836983354 ], [ 87.710904174787785, 26.405676168620282 ], [ 87.727543986165955, 26.403764140702485 ], [ 87.742220092783015, 26.410482076386693 ], [ 87.749454793304025, 26.425726624683982 ], [ 87.756172729887481, 26.446913961410186 ], [ 87.768988485430199, 26.451461487657518 ], [ 87.785938354271579, 26.445983785423316 ], [ 87.804438518522758, 26.437353820922052 ], [ 87.821595092939134, 26.437508851452314 ], [ 87.852084187735016, 26.460659892040379 ], [ 87.869809204730956, 26.464638978406121 ], [ 87.870687703874381, 26.46071156888376 ], [ 87.894768921348586, 26.442934875943759 ], [ 87.897301065991357, 26.443451639881225 ], [ 87.902003621869568, 26.435286763373419 ], [ 87.908514851978779, 26.417820130594514 ], [ 87.914767701468222, 26.408259990106437 ], [ 87.928978719192486, 26.396426086494664 ], [ 87.961224813174553, 26.378959453715815 ], [ 87.975487509540841, 26.366557108423816 ], [ 88.00664839700589, 26.36986440032177 ], [ 88.04432051637869, 26.405676168620282 ], [ 88.074189494449541, 26.453941955456848 ], [ 88.082251017270593, 26.494869689884233 ], [ 88.082251017270593, 26.494921367626993 ], [ 88.079150431846898, 26.507375387064421 ], [ 88.079822225415313, 26.517555644277532 ], [ 88.087136240744869, 26.539100004661456 ], [ 88.104627719993218, 26.535434882413874 ], [ 88.121887648096418, 26.530499783438238 ], [ 88.13098270059109, 26.531197415428373 ], [ 88.150206332556124, 26.535305691204648 ], [ 88.194027947731556, 26.54951670982825 ], [ 88.203433058588729, 26.547191269861166 ], [ 88.205810175399208, 26.539724026242816 ], [ 88.196198358067747, 26.512619736811352 ], [ 88.194958123718365, 26.501483466089091 ], [ 88.195268182080866, 26.500243231739709 ], [ 88.195268182080866, 26.500139878952208 ], [ 88.199609002753192, 26.495979926332488 ], [ 88.208704055247864, 26.488693548968108 ], [ 88.216455519706386, 26.484843654710851 ], [ 88.227824335324769, 26.481458849346378 ], [ 88.237436150857633, 26.474637559975399 ], [ 88.27081912640152, 26.444225979545301 ], [ 88.278673943647533, 26.435001735841404 ], [ 88.282291293908003, 26.428438828888826 ], [ 88.278363885285032, 26.423684597066476 ], [ 88.274229771087022, 26.420842393161873 ], [ 88.263997837030487, 26.415674750189563 ], [ 88.257796665283792, 26.410868842423096 ], [ 88.253765903873315, 26.403582465058715 ], [ 88.254489374285171, 26.3960377061752 ], [ 88.259450310783137, 26.390844224781112 ], [ 88.278673943647533, 26.383557848315995 ], [ 88.292213168702716, 26.376452338104908 ], [ 88.299551222910551, 26.368804226433888 ], [ 88.303685337108547, 26.35996755635761 ], [ 88.303892042683557, 26.351751003905683 ], [ 88.302445102759208, 26.34389618576034 ], [ 88.300171339635583, 26.338935248362983 ], [ 88.297174106999393, 26.336222236566918 ], [ 88.292523227964566, 26.33513703094922 ], [ 88.276503534210676, 26.334904486952492 ], [ 88.263687778667958, 26.332708238194638 ], [ 88.251078728700335, 26.326765448866347 ], [ 88.220072869966927, 26.29945445385993 ], [ 88.208910759923555, 26.293589178897484 ], [ 88.180488722676373, 26.28552765607645 ], [ 88.167466261558644, 26.277181912415298 ], [ 88.154443801340307, 26.265425523169309 ], [ 88.118580357097727, 26.226487331924822 ], [ 88.097909784309053, 26.211113593317631 ], [ 88.079823033006477, 26.192820136440098 ], [ 88.067730746976324, 26.1851203479257 ], [ 88.047473586236976, 26.17711050104878 ], [ 88.038068475379788, 26.171116033977732 ], [ 88.016467726604262, 26.150884710760746 ], [ 88.006545851809548, 26.146905626193693 ], [ 87.999414504076043, 26.146027127050271 ], [ 87.992386509130014, 26.146828110928535 ], [ 87.985565219759039, 26.146983141458797 ], [ 87.979364048012343, 26.145794583053537 ], [ 87.970268996417005, 26.138301500114089 ], [ 87.936679315298122, 26.09900157276433 ], [ 87.867329542724164, 26.049185492316603 ], [ 87.839424270313756, 26.022313747781194 ], [ 87.831362745694079, 26.010557359434578 ], [ 87.82898562978292, 26.000428779064855 ], [ 87.82898562978292, 26.000118719803076 ], [ 87.828882276995429, 25.99996369107145 ], [ 87.829915805769744, 25.986579494747836 ], [ 87.828365513057889, 25.975443224025518 ], [ 87.824541457222423, 25.966296494687462 ], [ 87.817100051126403, 25.937073473561945 ], [ 87.814412875953423, 25.931802476003437 ], [ 87.81100223216724, 25.928546860948863 ], [ 87.800770298110692, 25.926195584358702 ], [ 87.79322553922718, 25.923379217976496 ], [ 87.789504836179205, 25.919167589412716 ], [ 87.787437778630519, 25.911674506473268 ], [ 87.787954542568045, 25.906351833870016 ], [ 87.78919477691737, 25.902372748403589 ], [ 87.794465772677228, 25.893665269536534 ], [ 87.79611941907585, 25.890487168847752 ], [ 87.797359654324552, 25.886999009796448 ], [ 87.798289829412042, 25.88312327711753 ], [ 87.800977003685702, 25.878782457344524 ], [ 87.805421177145533, 25.873666490316278 ], [ 87.824334750748093, 25.862840277956419 ], [ 87.854927199230801, 25.849843655260482 ], [ 87.86505577960051, 25.843900865032875 ], [ 87.878078240718168, 25.822558499575045 ], [ 87.882419061390493, 25.818760281261966 ], [ 87.887069940425349, 25.813308417449488 ], [ 87.892650995447056, 25.804187527432411 ], [ 87.897508579157517, 25.7865658641233 ], [ 87.904123162953539, 25.773310859008909 ], [ 87.910531040275245, 25.765120144079383 ], [ 87.932235141838291, 25.751296699083348 ], [ 87.942570427782968, 25.735328681273579 ], [ 88.005098910985893, 25.710808214227708 ], [ 88.032900832407435, 25.691326198944914 ], [ 88.042822707202149, 25.67814870909563 ], [ 88.046440056563299, 25.668872789447672 ], [ 88.050470818873166, 25.645670071116847 ], [ 88.055535109057971, 25.627428290183438 ], [ 88.056671990619833, 25.621278795280141 ], [ 88.056775344306615, 25.614121609124929 ], [ 88.052124465271831, 25.58456269031586 ], [ 88.04406294065214, 25.55691579852526 ], [ 88.043132765564607, 25.547097276518052 ], [ 88.046129999100089, 25.542627265535881 ], [ 88.050470818873166, 25.537511298507578 ], [ 88.058945753743487, 25.529914862780682 ], [ 88.062769809579009, 25.524592190177422 ], [ 88.064940219915158, 25.519863795877477 ], [ 88.065250279176979, 25.50653127729657 ], [ 88.067420688613865, 25.491080024323644 ], [ 88.005822382297069, 25.501208603793991 ], [ 87.990526158055715, 25.507693997280107 ], [ 87.990216098793866, 25.514592800117605 ], [ 87.988665806082039, 25.518287664743916 ], [ 87.974919874552512, 25.528312893225401 ], [ 87.955799595374941, 25.534074815400395 ], [ 87.942880487044789, 25.525367337432662 ], [ 87.922623326305398, 25.514437771386039 ], [ 87.885519646814188, 25.503663234970301 ], [ 87.880352003841864, 25.501286119059095 ], [ 87.878801711130023, 25.500355943072289 ], [ 87.878491651868202, 25.500071723131494 ], [ 87.878181594405007, 25.499761663869656 ], [ 87.869706658635295, 25.486067410082903 ], [ 87.863195427626849, 25.478600165565176 ], [ 87.849966261833444, 25.471107083525048 ], [ 87.819373814250056, 25.457438666361323 ], [ 87.786094190594355, 25.446121528485715 ], [ 87.76800744019117, 25.43627716715752 ], [ 87.768317498553671, 25.43317658083452 ], [ 87.767904087403664, 25.429714260204943 ], [ 87.766973911416855, 25.426381129885211 ], [ 87.764183384355619, 25.422350369374037 ], [ 87.759532505320792, 25.417906195914206 ], [ 87.749713983313626, 25.411317450539908 ], [ 87.745579869115574, 25.406873277080077 ], [ 87.74382286992946, 25.402635810094516 ], [ 87.744959750591974, 25.399457709405731 ], [ 87.747750278552459, 25.397390651857048 ], [ 87.758395623758958, 25.393514920077504 ], [ 87.761186150820137, 25.391473700051215 ], [ 87.763356561156314, 25.388734849833433 ], [ 87.766663853054339, 25.381965237305842 ], [ 87.770384556102314, 25.371681627305229 ], [ 87.77203820160166, 25.368968613710532 ], [ 87.774828728662825, 25.366979072326323 ], [ 87.778239374247661, 25.366203925071083 ], [ 87.782063430083198, 25.366720689008556 ], [ 87.788884718554854, 25.368916937766468 ], [ 87.792708775289697, 25.369123643341421 ], [ 87.796326124650847, 25.368115952988823 ], [ 87.798806594248887, 25.365945543551952 ], [ 87.806868117069868, 25.354990139083604 ], [ 87.813689406440901, 25.347342027412591 ], [ 87.816789991864582, 25.341115017244245 ], [ 87.821234165324412, 25.3228732372101 ], [ 87.829192336257265, 25.302150987577981 ], [ 87.839010858264459, 25.288301703260963 ], [ 87.838080682277607, 25.277759710841956 ], [ 87.817100051126403, 25.246676336843443 ], [ 87.783717075582544, 25.21409434697653 ], [ 87.778756138185187, 25.227556056766609 ], [ 87.77017784962797, 25.23698700604546 ], [ 87.759945917370118, 25.243498237053981 ], [ 87.749610629626801, 25.248226630454607 ], [ 87.726149529776905, 25.251611435819079 ], [ 87.681191033938987, 25.245436103393438 ], [ 87.659590285163503, 25.255073757347979 ], [ 87.598715448359172, 25.266700955384742 ], [ 87.588690219877691, 25.27682953485515 ], [ 87.581558872144157, 25.289903672816244 ], [ 87.570190057425165, 25.303468736293151 ], [ 87.558097772294303, 25.311891995219408 ], [ 87.54972619021143, 25.315199286218039 ], [ 87.539804315416788, 25.316517034933209 ], [ 87.535876905894426, 25.32003103330549 ], [ 87.523474563300383, 25.323777573875923 ], [ 87.509108514146561, 25.314992581542409 ], [ 87.470764602104666, 25.284167589062967 ], [ 87.459705844848813, 25.265925808129502 ], [ 87.455675083438322, 25.25166311356184 ], [ 87.454744908350776, 25.243317369001367 ], [ 87.441412387971283, 25.23582428606192 ], [ 87.436141392211397, 25.228796292015254 ], [ 87.42994021956541, 25.202260444264081 ], [ 87.423428990355589, 25.188540351156231 ], [ 87.4066858261899, 25.18104726821684 ], [ 87.392216425147851, 25.183992824908891 ], [ 87.376506788857156, 25.189961453558219 ], [ 87.36379438700132, 25.196498521189763 ], [ 87.355629509594138, 25.19706696197067 ], [ 87.348601516446749, 25.193888862181208 ], [ 87.342090285438275, 25.189961453558219 ], [ 87.337439406403448, 25.188230291894453 ], [ 87.315218540003542, 25.187222602441121 ], [ 87.302506138147677, 25.183915310543107 ], [ 87.291860792941151, 25.174251817267525 ], [ 87.282972446920823, 25.14970551179993 ], [ 87.280698683797183, 25.130740261353932 ], [ 87.265919224392619, 25.072165025195709 ], [ 87.261371698145268, 25.063974311165502 ], [ 87.254240350411791, 25.062914943969467 ], [ 87.230572544087565, 25.071777452467412 ], [ 87.216723259770532, 25.072552598823329 ], [ 87.185510694562865, 25.061984767982661 ], [ 87.174038527056311, 25.053871568318183 ], [ 87.150887485568916, 25.031624864395948 ], [ 87.128149856130889, 25.001626695115871 ], [ 87.121328565860594, 24.986278794930392 ], [ 87.117297805349367, 24.970879217901537 ], [ 87.121741977909878, 24.863753974066633 ], [ 87.119158156423723, 24.851144924098939 ], [ 87.112026808690231, 24.8391559917556 ], [ 87.10262169783303, 24.827477117774716 ], [ 87.085568475304825, 24.797892361443296 ], [ 87.077713658058812, 24.788771471426223 ], [ 87.071202427050295, 24.782751165933512 ], [ 87.06810184072728, 24.778487861425667 ], [ 87.071202427050295, 24.770452175227657 ], [ 87.075956658872641, 24.760452786067212 ], [ 87.077506951584468, 24.745337428979152 ], [ 87.066654900802959, 24.699474596475451 ], [ 87.069445427864167, 24.668055324793379 ], [ 87.055699497233917, 24.632011013397509 ], [ 87.051875441398437, 24.618084214714706 ], [ 87.050015090324095, 24.597026069197735 ], [ 87.042263624966253, 24.588396103797145 ], [ 87.029757927786065, 24.584029446501741 ], [ 87.013118117307187, 24.586044827206987 ], [ 86.961131625623949, 24.605190944806221 ], [ 86.9254748878557, 24.613588365310811 ], [ 86.917826776184683, 24.612684027745665 ], [ 86.915346306586713, 24.597258613194409 ], [ 86.900050083244679, 24.576407172353122 ], [ 86.890748326074316, 24.564547431218951 ], [ 86.889818150087507, 24.556795965861109 ], [ 86.891988560423655, 24.536926377850016 ], [ 86.889921502875012, 24.531603705246763 ], [ 86.813233676992567, 24.554160468430833 ], [ 86.781504347847303, 24.577492377071501 ], [ 86.768068474680305, 24.584675400749113 ], [ 86.755356072824426, 24.588137722278017 ], [ 86.745020785980415, 24.586845811085308 ], [ 86.737889439146244, 24.580851344913636 ], [ 86.72796756435153, 24.560129096180837 ], [ 86.702336053266194, 24.547778429530858 ], [ 86.68972700419782, 24.547778429530858 ], [ 86.666679314598611, 24.542404080084218 ], [ 86.649212680920442, 24.542662462502612 ], [ 86.628955520181051, 24.552920234081505 ], [ 86.607354771405511, 24.561291816164378 ], [ 86.58565066894316, 24.561446844895951 ], [ 86.536247999645397, 24.515635688336314 ], [ 86.5035884954127, 24.490650133296974 ], [ 86.494390090130523, 24.479798082515451 ], [ 86.485191684848346, 24.445226549465637 ], [ 86.48601850804765, 24.410474148363217 ], [ 86.475166457266127, 24.403136095054712 ], [ 86.46751834469579, 24.399906318421809 ], [ 86.462557408197753, 24.391767280335721 ], [ 86.461213820161603, 24.383473211719316 ], [ 86.463384229598475, 24.373525499402255 ], [ 86.46193728967414, 24.363138535714818 ], [ 86.456873000388597, 24.352312323355015 ], [ 86.449741651755787, 24.343113918972158 ], [ 86.438682896298573, 24.340375067855057 ], [ 86.416358677111219, 24.351873073783331 ], [ 86.355070428257633, 24.395281276909369 ], [ 86.276418897613979, 24.434813748255856 ], [ 86.270941197178431, 24.445924181455773 ], [ 86.272491489890257, 24.454450792270219 ], [ 86.298433059338194, 24.481606756746423 ], [ 86.303497348623665, 24.491063544446995 ], [ 86.304634230185485, 24.500313626572559 ], [ 86.300293410412479, 24.532611396498734 ], [ 86.296572707364504, 24.542507432871723 ], [ 86.290474888405342, 24.551550808522958 ], [ 86.262259555833765, 24.553798733224934 ], [ 86.223605585429354, 24.567932237482747 ], [ 86.213683709735378, 24.565606798414986 ], [ 86.191359491447287, 24.55302358686901 ], [ 86.174409620807282, 24.552377630822996 ], [ 86.154875929580427, 24.556098333870974 ], [ 86.136685826389723, 24.569585882982089 ], [ 86.125730421921375, 24.58069631618201 ], [ 86.117668898201018, 24.597026069197735 ], [ 86.107747023406347, 24.671646837531508 ], [ 86.097721795824128, 24.690482895868907 ], [ 86.081495395595965, 24.701102403553076 ], [ 86.06454552585528, 24.706657620153006 ], [ 86.048732537676386, 24.707071031303023 ], [ 86.03767378131991, 24.708362942495789 ], [ 86.032919550396898, 24.71239370390628 ], [ 86.037880486894863, 24.722367255544381 ], [ 86.044081658641559, 24.731436468718012 ], [ 86.046872185702767, 24.739601345225871 ], [ 86.04015425001856, 24.74998830801399 ], [ 86.018140090093013, 24.74298615238899 ], [ 86.001603632401654, 24.729111030549568 ], [ 85.959332309938119, 24.703221137045823 ], [ 85.911583286139702, 24.69846690522348 ], [ 85.865901319889971, 24.75171946877844 ], [ 85.849158155724282, 24.764457709055982 ], [ 85.830864698846696, 24.770917263221119 ], [ 85.746011997355751, 24.77003876407769 ], [ 85.731852654676217, 24.766550605026392 ], [ 85.718520135196044, 24.753786526327129 ], [ 85.708288202038815, 24.738645330817345 ], [ 85.700950147830994, 24.724537664981252 ], [ 85.696919387319824, 24.711541043184575 ], [ 85.693715448209318, 24.682162991528795 ], [ 85.688857862700146, 24.668830471149299 ], [ 85.680796339879109, 24.65854686114869 ], [ 85.655268181581263, 24.651828925464535 ], [ 85.647310012447051, 24.648573310409912 ], [ 85.647413365234556, 24.643250636907332 ], [ 85.651340772958278, 24.635421658083029 ], [ 85.657438591917455, 24.626455796797583 ], [ 85.660332472665431, 24.61717987714956 ], [ 85.66239953021406, 24.605733547165464 ], [ 85.66239953021406, 24.568888250991957 ], [ 85.656818475192424, 24.557648627482131 ], [ 85.643692661287247, 24.55012970612102 ], [ 85.619818150287344, 24.549923001445329 ], [ 85.602351515709856, 24.553307806809805 ], [ 85.587572056305291, 24.557571113116349 ], [ 85.578373651023114, 24.55780365711308 ], [ 85.573929477563283, 24.545659695138788 ], [ 85.569898716152792, 24.541241360100681 ], [ 85.56008019414557, 24.533283189167825 ], [ 85.556566196672563, 24.527934679042172 ], [ 85.526387160239182, 24.501553860022621 ], [ 85.517085402169499, 24.499460964052211 ], [ 85.505509881875511, 24.503207506421283 ], [ 85.495277947818948, 24.508065090131758 ], [ 85.482358840388116, 24.509305325380463 ], [ 85.462515089899441, 24.506204739057459 ], [ 85.438950637262039, 24.505197047805488 ], [ 85.391408319038618, 24.509460354112033 ], [ 85.374561802085424, 24.499641832104821 ], [ 85.295186801929304, 24.491141058812779 ], [ 85.280614048099764, 24.487265326133862 ], [ 85.277513461776763, 24.480909124756288 ], [ 85.276169874639933, 24.47341604271616 ], [ 85.271312290030082, 24.467034002916868 ], [ 85.260977004085404, 24.461788845578717 ], [ 85.170956658722773, 24.430912177155218 ], [ 85.160207960728741, 24.421326199144737 ], [ 85.157934197605044, 24.412282823493509 ], [ 85.160207960728741, 24.403084418211328 ], [ 85.157727492030105, 24.395643012115265 ], [ 85.149355909947218, 24.387969062022584 ], [ 85.135506625630214, 24.378253892802881 ], [ 85.097576124738325, 24.344199123690597 ], [ 85.088997837080441, 24.341951198988617 ], [ 85.082486606971287, 24.348539944362919 ], [ 85.082900018121251, 24.358720201576027 ], [ 85.088481073142958, 24.383318182987743 ], [ 85.087137486006142, 24.390914617815323 ], [ 85.080626254997625, 24.393317573047561 ], [ 85.015410598420303, 24.371794337738486 ], [ 84.998874138930304, 24.361045641543111 ], [ 84.98182091730142, 24.35280324977014 ], [ 84.961460401975941, 24.348384914732033 ], [ 84.908853793567658, 24.353681748913566 ], [ 84.895624627774325, 24.362079169418106 ], [ 84.889010043978303, 24.372827867412123 ], [ 84.879191521971094, 24.426752224535498 ], [ 84.876297642122424, 24.436441555333481 ], [ 84.868546176764568, 24.440110582437391 ], [ 84.85945112516923, 24.436338202545979 ], [ 84.843844841666041, 24.433495999540749 ], [ 84.835163202120029, 24.437940172101257 ], [ 84.825551384788497, 24.484914049543757 ], [ 84.813149042194468, 24.495352688275936 ], [ 84.798472934678145, 24.496592921725941 ], [ 84.786897414384129, 24.48982331009767 ], [ 84.77697553869011, 24.482304388736505 ], [ 84.761782668135567, 24.474656277065488 ], [ 84.747623326355352, 24.465147813420849 ], [ 84.704318475117461, 24.443288683126177 ], [ 84.688195427676803, 24.430705471580207 ], [ 84.675276320245899, 24.411430161872428 ], [ 84.664734327826906, 24.382103787060082 ], [ 84.657602980093415, 24.375049953692375 ], [ 84.644890578237522, 24.375230820845665 ], [ 84.623806594298841, 24.380191759142345 ], [ 84.612334425892968, 24.380734361501531 ], [ 84.602722608561507, 24.385746974843013 ], [ 84.594144321802929, 24.391612249805455 ], [ 84.588253208418763, 24.39442861618766 ], [ 84.584222447008287, 24.39230988179559 ], [ 84.579571567973431, 24.382181301425923 ], [ 84.573163689752434, 24.371820177059526 ], [ 84.549599237115018, 24.352260647410951 ], [ 84.544948358080191, 24.341925361466217 ], [ 84.542674594956551, 24.332907823337333 ], [ 84.539884067895372, 24.325983181178852 ], [ 84.519213495106655, 24.307508857148033 ], [ 84.507534621125828, 24.303168036475707 ], [ 84.496682570344305, 24.301695258129648 ], [ 84.484486932425952, 24.302857978113192 ], [ 84.471981236145083, 24.307353827517087 ], [ 84.454617954355044, 24.320376287735478 ], [ 84.447176548259023, 24.328179429936707 ], [ 84.440975375613036, 24.338230495940586 ], [ 84.434464146403158, 24.346498725235953 ], [ 84.409659457617849, 24.364249578854977 ], [ 84.38092736200808, 24.37778880480948 ], [ 84.366354608178582, 24.388124090754157 ], [ 84.352815383123399, 24.40106903750603 ], [ 84.338759393231371, 24.420628567154605 ], [ 84.314368117394665, 24.443133653495288 ], [ 84.311887647796638, 24.451143500372208 ], [ 84.318398878805155, 24.463364975812961 ], [ 84.325220168176187, 24.470444648501704 ], [ 84.324600050551837, 24.502949124002832 ], [ 84.314058059032149, 24.522896226379711 ], [ 84.305376417687484, 24.530802721368495 ], [ 84.29328413255665, 24.533980821157961 ], [ 84.285842727359906, 24.531577866825096 ], [ 84.27571414609092, 24.520312404893552 ], [ 84.268789503932382, 24.517651069041559 ], [ 84.262071568248231, 24.519072171443547 ], [ 84.254526809364719, 24.524136460729032 ], [ 84.246878696794383, 24.526875311846137 ], [ 84.24005740832267, 24.525402533500078 ], [ 84.233856235676654, 24.521991888814622 ], [ 84.224967888757007, 24.520389920158657 ], [ 84.212152134113609, 24.522586168017195 ], [ 84.202953728831446, 24.52132009524615 ], [ 84.197372673809795, 24.518141995456681 ], [ 84.19613244035979, 24.510364692576495 ], [ 84.197992792333451, 24.490288398091078 ], [ 84.1963391459348, 24.481916816008201 ], [ 84.190241326975624, 24.476594143404945 ], [ 84.181973097680256, 24.475741481783921 ], [ 84.174118280434229, 24.47953970009706 ], [ 84.170190870911924, 24.488557237326628 ], [ 84.170500930173759, 24.497755641709482 ], [ 84.169157342137538, 24.505507107067324 ], [ 84.164816522364532, 24.510287177311337 ], [ 84.156858352331071, 24.510984809301469 ], [ 84.152104119609405, 24.5077550317693 ], [ 84.150347121322554, 24.501657212810123 ], [ 84.150243767635715, 24.493673204354874 ], [ 84.149003534185724, 24.484862371800997 ], [ 84.145386183925197, 24.476645820248386 ], [ 84.139391716854192, 24.471168118014184 ], [ 84.130503370833864, 24.469772854033973 ], [ 84.119651320052327, 24.47416535154974 ], [ 84.107042270983968, 24.484552314337797 ], [ 84.09557010257808, 24.504137682408096 ], [ 84.075726352988724, 24.562144476886086 ], [ 84.043893671055997, 24.623897812833771 ], [ 84.029630974689653, 24.634853217302116 ], [ 84.021672804656177, 24.639039008343556 ], [ 84.01536828012199, 24.636713569275795 ], [ 84.011647577073958, 24.63281199817515 ], [ 83.997798292756926, 24.599764920314776 ], [ 83.99531782405829, 24.595424098743134 ], [ 83.992423944209605, 24.591419175754361 ], [ 83.988703241161588, 24.587905178281343 ], [ 83.979091423830056, 24.582014064897173 ], [ 83.965862258036722, 24.576019598725502 ], [ 83.95387332569338, 24.558888861831459 ], [ 83.93826704308951, 24.548682766196688 ], [ 83.918423292600821, 24.543799343165116 ], [ 83.879769322196395, 24.541344712888183 ], [ 83.860545689332042, 24.536280421804001 ], [ 83.849796991338025, 24.535066025876343 ], [ 83.840598586055847, 24.536228745859937 ], [ 83.819411249329661, 24.541318875365782 ], [ 83.808869256910654, 24.542507432871723 ], [ 83.787888624860088, 24.537313951477635 ], [ 83.767734816008883, 24.513775336362635 ], [ 83.750164828643875, 24.508375149393594 ], [ 83.695904575635595, 24.506282254322564 ], [ 83.63720014826815, 24.517211819469875 ], [ 83.538704868934516, 24.531267809361903 ], [ 83.523098586330647, 24.529665838907302 ], [ 83.525165642980014, 24.558501288203839 ], [ 83.520204705582657, 24.592633572581285 ], [ 83.522375115918791, 24.615939642800239 ], [ 83.525372348554953, 24.628910427074509 ], [ 83.523305291905643, 24.638367213875817 ], [ 83.512453241124135, 24.660407213122362 ], [ 83.510902948412294, 24.667435208068351 ], [ 83.512246534649805, 24.675419216523601 ], [ 83.53095340357666, 24.703582872251726 ], [ 83.53188357866415, 24.713814806308218 ], [ 83.529816522014841, 24.726320501689766 ], [ 83.523615350268173, 24.746345120231066 ], [ 83.517827589671455, 24.755414334304071 ], [ 83.508835890863608, 24.762080593144837 ], [ 83.471835565059209, 24.770348823339528 ], [ 83.457779576066557, 24.775904039040135 ], [ 83.444447055687007, 24.783422960401303 ], [ 83.43256147703049, 24.792492174474258 ], [ 83.423983189372663, 24.802362372425527 ], [ 83.404139438883959, 24.83171458655891 ], [ 83.39824832639907, 24.837140611050351 ], [ 83.39173709539061, 24.840757962210144 ], [ 83.381918573383402, 24.843626004536471 ], [ 83.360214470921036, 24.863263048550827 ], [ 83.354840122373716, 24.87504527441984 ], [ 83.35277306482503, 24.888016058694113 ], [ 83.355563591886181, 24.89716278713291 ], [ 83.359284295833547, 24.903363958879588 ], [ 83.363315057244037, 24.91493948007291 ], [ 83.365692173155239, 24.931295071510302 ], [ 83.366622349142048, 24.968657130721958 ], [ 83.364245233230903, 24.99839691848296 ], [ 83.363521762819047, 25.000774034394162 ], [ 83.359904412558507, 25.008964749323688 ], [ 83.337580194270487, 25.038549506554485 ], [ 83.326521437913968, 25.058419094565515 ], [ 83.323317498803448, 25.068005073475312 ], [ 83.323007440440946, 25.079012152988462 ], [ 83.325487909139653, 25.089683335717318 ], [ 83.329828728912659, 25.145778103176891 ], [ 83.334272902372476, 25.172624010189903 ], [ 83.337683547057992, 25.183295192918816 ], [ 83.341404250105981, 25.191615099057564 ], [ 83.34595177635336, 25.19897898988847 ], [ 83.357320591072366, 25.212828274205489 ], [ 83.371996697689369, 25.226832587254073 ], [ 83.384088982820273, 25.235927638849425 ], [ 83.416128371227302, 25.25437612625722 ], [ 83.469975213984895, 25.277010402907759 ], [ 83.483617791827584, 25.284193427484688 ], [ 83.515553827447121, 25.306801865713503 ], [ 83.531986932350989, 25.315741889476605 ], [ 83.67006635897522, 25.388476467415042 ], [ 83.774866163742431, 25.444958808502172 ], [ 83.801324497127766, 25.464130764523127 ], [ 83.805872023375102, 25.476042182500688 ], [ 83.811349724709984, 25.486041572560506 ], [ 83.817654250143477, 25.490227362702623 ], [ 83.854861280623524, 25.501983751049231 ], [ 83.886900669030609, 25.51702159287219 ], [ 83.904263950820607, 25.529475613208938 ], [ 83.908398065018659, 25.538131415232606 ], [ 83.918113234238305, 25.549267685954927 ], [ 83.981881951790612, 25.589316921238883 ], [ 84.003379347778633, 25.608230495740763 ], [ 84.058156365623717, 25.673730374057463 ], [ 84.143422479164016, 25.736207180417008 ], [ 84.179802688243441, 25.745948188058428 ], [ 84.212875603626159, 25.728042303909199 ], [ 84.215046013962336, 25.72147939695656 ], [ 84.215252720436609, 25.708637803891516 ], [ 84.214115838874804, 25.69928436897845 ], [ 84.213185662887994, 25.694581813999484 ], [ 84.212875603626159, 25.689129950187006 ], [ 84.21339236936231, 25.683109646492987 ], [ 84.214735955599835, 25.676856797902865 ], [ 84.216803013148464, 25.670965685418018 ], [ 84.219386834634662, 25.665643011915442 ], [ 84.222384068170172, 25.660837104149035 ], [ 84.226104771218147, 25.656909695525989 ], [ 84.229928827053683, 25.653499049941153 ], [ 84.238920525861516, 25.647969671762947 ], [ 84.243881464158207, 25.645721747060968 ], [ 84.250496047054853, 25.643422146414927 ], [ 84.258970981925216, 25.641716824072141 ], [ 84.276024203554101, 25.641484280075467 ], [ 84.289976840658639, 25.643732204777386 ], [ 84.309407179997308, 25.649700833426714 ], [ 84.318295526017636, 25.654351712461555 ], [ 84.324186639401802, 25.658899237809571 ], [ 84.326460401626179, 25.663317572847685 ], [ 84.328010695237353, 25.668278510245042 ], [ 84.328217400812349, 25.674066269942379 ], [ 84.327597284087318, 25.680164088901556 ], [ 84.326460401626179, 25.686210231916668 ], [ 84.324806757026153, 25.692075506879117 ], [ 84.312714470995999, 25.719722397770393 ], [ 84.314678175757166, 25.742149969745292 ], [ 84.326150344162997, 25.748506171122862 ], [ 84.33968956921818, 25.752666123742578 ], [ 84.355915969446386, 25.760546780309646 ], [ 84.37276248639958, 25.765068468135265 ], [ 84.387645297692288, 25.759384060326106 ], [ 84.419167922161805, 25.730703639761142 ], [ 84.438081495764351, 25.718688869895399 ], [ 84.464023065212217, 25.711919257367803 ], [ 84.479732700603606, 25.703444322497486 ], [ 84.486657341862767, 25.700731309802105 ], [ 84.498749627892934, 25.699051824981719 ], [ 84.524174431604678, 25.700214544965256 ], [ 84.535853305585505, 25.703134264134967 ], [ 84.542157831019026, 25.705382187937627 ], [ 84.585669386932622, 25.735044461332784 ], [ 84.592180617041805, 25.738351752331475 ], [ 84.600655551912141, 25.747007555254463 ], [ 84.59931196477531, 25.761192735456341 ], [ 84.610474073919349, 25.773879298890499 ], [ 84.612437778680473, 25.786850084064096 ], [ 84.610577426706854, 25.791578477464721 ], [ 84.605513137421312, 25.799795029916645 ], [ 84.531615838600004, 25.862090969122896 ], [ 84.519523552569851, 25.866871039366963 ], [ 84.502470330940966, 25.867672024144547 ], [ 84.470120884171394, 25.865811672170928 ], [ 84.45658165911621, 25.869971624790647 ], [ 84.41968468609933, 25.889556992860882 ], [ 84.412139927215819, 25.895939031760854 ], [ 84.407489048180963, 25.909142360931178 ], [ 84.396533644611935, 25.923689277238331 ], [ 84.383924594644256, 25.935445664685624 ], [ 84.374312779111435, 25.940303250194795 ], [ 84.344960564978038, 25.940458278926421 ], [ 84.33297163263471, 25.938572089430345 ], [ 84.298348422741455, 25.928624376213968 ], [ 84.27995161307642, 25.927074083502127 ], [ 84.261451450623881, 25.931311550487631 ], [ 84.243571404896372, 25.943713893980991 ], [ 84.230445590991152, 25.956762193520369 ], [ 84.225588007280678, 25.963583481992082 ], [ 84.219696892997192, 25.974435532773608 ], [ 84.210705194189288, 26.006991685118173 ], [ 84.206054315154432, 26.015414944044434 ], [ 84.196442498722291, 26.019704087873315 ], [ 84.185177035891442, 26.020246690232561 ], [ 84.17587527872108, 26.022752997352931 ], [ 84.168640578200069, 26.042441718210675 ], [ 84.160475701692206, 26.055024928857328 ], [ 84.150347121322554, 26.066006170848077 ], [ 84.140942009566032, 26.070657049882918 ], [ 84.129676547634503, 26.073473416265124 ], [ 84.107972446970777, 26.086831773267697 ], [ 84.096190220202431, 26.091120917096639 ], [ 84.087715285332109, 26.091741033821616 ], [ 84.073659296339414, 26.100241808013031 ], [ 84.064874302207244, 26.103549099011669 ], [ 84.038312616034361, 26.161969306438319 ], [ 84.022292922280471, 26.183880113576372 ], [ 83.99800499923127, 26.199667263333531 ], [ 83.988083124436599, 26.208555610253192 ], [ 83.984465773276767, 26.217624824326144 ], [ 83.985085890901118, 26.227443346333356 ], [ 83.988496534687243, 26.235013942739265 ], [ 83.992734002572135, 26.241137600120105 ], [ 83.997694939969421, 26.245452582370771 ], [ 84.001518995804972, 26.247984727013542 ], [ 84.007720167551639, 26.250930283705593 ], [ 84.023119744580512, 26.254909369172022 ], [ 84.080377232023551, 26.259250189844344 ], [ 84.089885694768938, 26.261704820121331 ], [ 84.09608686741494, 26.26508962728445 ], [ 84.107972446970777, 26.274546414085702 ], [ 84.113760206668161, 26.278163764346228 ], [ 84.120581496039151, 26.280282497838975 ], [ 84.127402785410169, 26.280515041835706 ], [ 84.137531365779836, 26.278964749123865 ], [ 84.146006300650228, 26.276716824421889 ], [ 84.166986931801404, 26.274520574764718 ], [ 84.185590447940768, 26.284855862508035 ], [ 84.186830682290108, 26.287878933565928 ], [ 84.187244094339434, 26.292788194119847 ], [ 84.171327753373049, 26.312786974239422 ], [ 84.163266228753386, 26.328496608731477 ], [ 84.161715936041546, 26.337927558010385 ], [ 84.162956171290247, 26.345937404887305 ], [ 84.179079216932251, 26.368158271287193 ], [ 84.185900507202618, 26.383041083479206 ], [ 84.186210564665757, 26.394616603773212 ], [ 84.184143508016447, 26.40081777641921 ], [ 84.17763227700793, 26.40428009704879 ], [ 84.103528272611626, 26.418620306881614 ], [ 84.086164991720963, 26.426061712977621 ], [ 84.067354770905894, 26.436577866974964 ], [ 84.040069615220531, 26.459677232518224 ], [ 84.026116978115994, 26.469159857741197 ], [ 84.015988396846964, 26.473449002469458 ], [ 84.010717401087149, 26.471924547280018 ], [ 84.006376581314143, 26.468668932225395 ], [ 84.002139113429266, 26.464173081922176 ], [ 83.997798292756926, 26.460994981233394 ], [ 83.990666945023435, 26.45730011570776 ], [ 83.980745070228721, 26.454432074280753 ], [ 83.969066197147228, 26.453140163987364 ], [ 83.955113560042705, 26.453915310343284 ], [ 83.941470982200016, 26.456964219822844 ], [ 83.926278110746168, 26.464638169915581 ], [ 83.920076938999486, 26.473991603929331 ], [ 83.918423292600821, 26.484559434770055 ], [ 83.919663526950146, 26.500165717373928 ], [ 83.919973586211967, 26.50117340682726 ], [ 83.920076938999486, 26.532670192875052 ], [ 83.922143995648838, 26.540034085504594 ], [ 83.925864698696813, 26.546364448460501 ], [ 83.932789340855365, 26.550317695505207 ], [ 83.939197219076377, 26.551247869693434 ], [ 83.944158155574357, 26.549671739459193 ], [ 83.947878858622389, 26.546183580407892 ], [ 83.950669386582874, 26.541377671742104 ], [ 83.95252973765723, 26.534969794420469 ], [ 83.95408003126839, 26.527476712380341 ], [ 83.956250440705205, 26.520758774897494 ], [ 83.95945437981571, 26.517115587114624 ], [ 83.963485142125563, 26.515927028709367 ], [ 83.967722609111078, 26.517709866317254 ], [ 83.971443313058359, 26.520913805427764 ], [ 83.983535598189277, 26.538923041465175 ], [ 83.987463006812249, 26.543703110809865 ], [ 83.990563592235944, 26.545951036411161 ], [ 83.99438764807141, 26.547759711541453 ], [ 84.034798618561325, 26.555924588049262 ], [ 84.045443963767852, 26.55967112951901 ], [ 84.054022251425735, 26.564761257226216 ], [ 84.060223423172417, 26.571815089694606 ], [ 84.066527947706547, 26.58178864223202 ], [ 84.071385533215718, 26.591684679504333 ], [ 84.080377232023551, 26.624421699002191 ], [ 84.086164991720963, 26.637573351329074 ], [ 84.092366164366965, 26.644988919003364 ], [ 84.099187452838621, 26.649588121194817 ], [ 84.106422154258922, 26.650983385175088 ], [ 84.137841424142366, 26.650440781916526 ], [ 84.154584589207374, 26.653980617811264 ], [ 84.164919875152052, 26.653748073814533 ], [ 84.191791619687464, 26.64609996214352 ], [ 84.229515415004329, 26.64059642238697 ], [ 84.382994418657447, 26.641655789583005 ], [ 84.393639763863959, 26.649200548466521 ], [ 84.39394982312578, 26.654419867382948 ], [ 84.392709588776469, 26.661732083169049 ], [ 84.388368768104073, 26.669354356418403 ], [ 84.381444125945592, 26.677441718560424 ], [ 84.306306593674293, 26.744362698379796 ], [ 84.2936975437066, 26.752140001260038 ], [ 84.283362257761937, 26.755576484367218 ], [ 84.274680617316605, 26.755886541830417 ], [ 84.25669721880152, 26.754181220387007 ], [ 84.246361931957537, 26.757049261813954 ], [ 84.241917759397026, 26.763482978456686 ], [ 84.240160760210856, 26.772216294846082 ], [ 84.247188755156884, 26.821618964143845 ], [ 84.247602167206182, 26.836320909182572 ], [ 84.246361931957537, 26.853451646076557 ], [ 84.240780877835206, 26.874199734130396 ], [ 84.233959589363494, 26.88492259370269 ], [ 84.226104771218147, 26.891511339076992 ], [ 84.216803013148464, 26.894586086978332 ], [ 84.207914667128122, 26.895929674115163 ], [ 84.19768273307163, 26.895774644484213 ], [ 84.187760858276917, 26.893965969353982 ], [ 84.17876915856975, 26.890374457515172 ], [ 84.17194787009808, 26.886162828052072 ], [ 84.164919875152052, 26.880504259563899 ], [ 84.158718703405356, 26.876525173198154 ], [ 84.149003534185724, 26.876344306044864 ], [ 84.122441848012812, 26.893578395726362 ], [ 84.110659621244494, 26.905283108128906 ], [ 84.098567336113632, 26.911225898356513 ], [ 84.086578403770247, 26.915179145401222 ], [ 84.070558710016414, 26.923602403428156 ], [ 84.059706659234891, 26.938950304512893 ], [ 84.027150506890308, 26.999618434842883 ], [ 84.027047154102803, 27.00230561001586 ], [ 84.028907505177173, 27.030572618531487 ], [ 84.027977329190364, 27.044344387583401 ], [ 84.023429802943014, 27.05995067018727 ], [ 84.015781691271997, 27.069562485720091 ], [ 83.998315056694452, 27.082068182900283 ], [ 83.992217237735289, 27.091189072917352 ], [ 83.979711542353726, 27.119843655060599 ], [ 83.971960076995899, 27.128034369090862 ], [ 83.948188917884224, 27.144054062844699 ], [ 83.941367629412511, 27.154027615382113 ], [ 83.93826704308951, 27.16438873974851 ], [ 83.938990512602047, 27.189529324418736 ], [ 83.942401158186826, 27.206039943688431 ], [ 83.942401158186826, 27.222498887913325 ], [ 83.929585401744859, 27.242368475924415 ], [ 83.924107701309282, 27.24833710457369 ], [ 83.912738884791665, 27.256786200123024 ], [ 83.904263950820607, 27.26172129999798 ], [ 83.890724724866104, 27.273090114716972 ], [ 83.885763788368067, 27.280143948084735 ], [ 83.884110141969401, 27.28655182540637 ], [ 83.892171664790425, 27.313733629203618 ], [ 83.892791783314095, 27.32396556236079 ], [ 83.890104608141115, 27.32812551498051 ], [ 83.883283318770097, 27.330063381319967 ], [ 83.849176873713674, 27.32665273753377 ], [ 83.848039992151854, 27.329004015023251 ], [ 83.848866815351172, 27.332698878750243 ], [ 83.851140577575549, 27.337814845778489 ], [ 83.85331098791174, 27.34608307507386 ], [ 83.853340112456166, 27.346194023535354 ], [ 83.854602092412605, 27.345050353890706 ], [ 83.861733439246777, 27.354507142490601 ], [ 83.867521199843438, 27.358382873370878 ], [ 83.877391398694016, 27.361741842112274 ], [ 83.877649780213162, 27.369906719519456 ], [ 83.873670694746721, 27.380086974933928 ], [ 83.871190226048029, 27.389440409846991 ], [ 83.842716511957377, 27.418069153568577 ], [ 83.834086548355444, 27.434037170479023 ], [ 83.853516886794836, 27.440961813536823 ], [ 83.899870647512302, 27.443855692486174 ], [ 83.922043109701676, 27.449695761250375 ], [ 83.923021688100377, 27.449953511445351 ], [ 83.935940796430572, 27.446077780565069 ], [ 83.975835002083656, 27.439721578288179 ], [ 84.007667684016369, 27.440806783006614 ], [ 84.028906698485272, 27.453725891336767 ], [ 84.079601278076467, 27.509536437956221 ], [ 84.099548380453356, 27.516874491264726 ], [ 84.117170043762471, 27.513282979425917 ], [ 84.12156254127818, 27.494963684126724 ], [ 84.130967651236048, 27.486411234890561 ], [ 84.141716349230066, 27.480752666402392 ], [ 84.165745890760178, 27.472174377845246 ], [ 84.175099324773996, 27.462975973462385 ], [ 84.185848022767999, 27.438636374469063 ], [ 84.195253134524449, 27.436052551184268 ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Sikkim", "admin": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.817503296140131, 27.994881490488346 ], [ 88.817710001715156, 27.994881490488346 ], [ 88.817710001715156, 27.994726460857457 ], [ 88.819673706476337, 27.977337342444393 ], [ 88.809751831681609, 27.94449696925971 ], [ 88.810682006769156, 27.927857157881526 ], [ 88.818898560120402, 27.915196431969711 ], [ 88.842773071120263, 27.892407125688287 ], [ 88.851558065252419, 27.877162577391001 ], [ 88.855072062725455, 27.859179178875983 ], [ 88.85388350432018, 27.843676249059619 ], [ 88.805669393427678, 27.655108948419237 ], [ 88.783086791821958, 27.622036031237819 ], [ 88.767377156430584, 27.58619842541696 ], [ 88.748153524465508, 27.560127666558564 ], [ 88.741022176732017, 27.545709941460579 ], [ 88.741642293457048, 27.531679789090951 ], [ 88.757558634423361, 27.511448465873961 ], [ 88.757196899217476, 27.494963684126724 ], [ 88.754354696212175, 27.46421620691239 ], [ 88.759780722502271, 27.435070699253338 ], [ 88.773578329076571, 27.408509013080444 ], [ 88.795385783427122, 27.385926412374026 ], [ 88.808201538070449, 27.378381653490518 ], [ 88.819828735207906, 27.373627422567488 ], [ 88.830835816519638, 27.367322896234661 ], [ 88.852023153245881, 27.342363180516365 ], [ 88.864632202314212, 27.332389627978948 ], [ 88.892330770048929, 27.315543111025754 ], [ 88.884630982433848, 27.28634592742258 ], [ 88.876115605051083, 27.280485679670328 ], [ 88.861428263203692, 27.270377910512131 ], [ 88.801173543124477, 27.256425273407608 ], [ 88.775852091300905, 27.240870667647183 ], [ 88.754354696212175, 27.212603658232233 ], [ 88.738438354346542, 27.17978912346927 ], [ 88.730066772263669, 27.150953674172676 ], [ 88.733082315096723, 27.14897238766553 ], [ 88.732909783759425, 27.148937485876267 ], [ 88.719370558704242, 27.146198634759166 ], [ 88.693325637368204, 27.155112820100548 ], [ 88.671724887693344, 27.171210029119543 ], [ 88.664490188071653, 27.173354601033957 ], [ 88.613537225162744, 27.168135281218209 ], [ 88.542327102413807, 27.178082994434639 ], [ 88.518039177565967, 27.176222643360283 ], [ 88.447655878016263, 27.114495144035622 ], [ 88.423988071692094, 27.099896551784404 ], [ 88.403627557265878, 27.090827337711453 ], [ 88.371691521646341, 27.08457449002065 ], [ 88.357428827078621, 27.085117092379896 ], [ 88.348540481058293, 27.087959296284446 ], [ 88.343166131611653, 27.091524969701588 ], [ 88.336551547815631, 27.098966375797598 ], [ 88.233095331084584, 27.137103583163814 ], [ 88.193407831006525, 27.143537298907173 ], [ 88.148552687956141, 27.137852891997337 ], [ 88.118166945048401, 27.138498847144028 ], [ 88.100596957683393, 27.1433822701756 ], [ 88.088814731814381, 27.151650499470968 ], [ 88.084473911142013, 27.159427802351154 ], [ 88.081993443342668, 27.169582221142541 ], [ 88.081166620143364, 27.189400133209567 ], [ 88.077342564307841, 27.198831082488418 ], [ 88.069591098949985, 27.209037177223927 ], [ 88.036208124305446, 27.229320177284304 ], [ 88.023185663187718, 27.24244599118952 ], [ 88.004662758679316, 27.249163088705579 ], [ 88.029024292137294, 27.298076477347529 ], [ 88.03512211109647, 27.32257110597174 ], [ 88.032538290509635, 27.333888245645987 ], [ 88.020135946116937, 27.353370260029457 ], [ 88.015795125444612, 27.3642223117103 ], [ 88.014761596670311, 27.378071594228683 ], [ 88.017242065368961, 27.389233704272037 ], [ 88.02582035302683, 27.412074686497583 ], [ 88.02959273291826, 27.418740947136993 ], [ 88.034812052734011, 27.423805237321794 ], [ 88.039307902137907, 27.429489644231687 ], [ 88.041633342104987, 27.438067933688153 ], [ 88.039772990131297, 27.442357077517094 ], [ 88.030781291323464, 27.45072865959991 ], [ 88.028094116150484, 27.455121155317038 ], [ 88.023339884328138, 27.474654847443212 ], [ 88.022099649978813, 27.484240825453689 ], [ 88.023339884328138, 27.494912008182602 ], [ 88.048764688939201, 27.54534820625468 ], [ 88.11087976099212, 27.639502666714687 ], [ 88.134857625678805, 27.723166808901109 ], [ 88.14932702672084, 27.748772482464055 ], [ 88.159662312665532, 27.774119772709291 ], [ 88.154598022480727, 27.815150859024918 ], [ 88.166586954824069, 27.833599346432656 ], [ 88.164623250962208, 27.845355733880005 ], [ 88.156406698510281, 27.851272685685895 ], [ 88.143022502186668, 27.855716858246403 ], [ 88.118217814300607, 27.860884501218713 ], [ 88.104885294820448, 27.879720561354809 ], [ 88.097495564668506, 27.904008484404013 ], [ 88.099924357423092, 27.928322245874931 ], [ 88.115737346501291, 27.947261657899155 ], [ 88.126692749170999, 27.95043975948726 ], [ 88.15118737779521, 27.947209981955091 ], [ 88.162969605462862, 27.946899923592575 ], [ 88.174855184119366, 27.949767965019529 ], [ 88.197851196875192, 27.958294575833968 ], [ 88.378770385844547, 27.982634176625929 ], [ 88.399751017895113, 27.994726460857457 ], [ 88.399854370682633, 27.994726460857457 ], [ 88.399906047526002, 27.994726460857457 ], [ 88.399906047526002, 27.994881490488346 ], [ 88.455768270089536, 28.031520081086846 ], [ 88.475405314103895, 28.036248474487472 ], [ 88.502070353064298, 28.02888458365657 ], [ 88.517159871730627, 28.039581603907884 ], [ 88.530802450472649, 28.059011943246553 ], [ 88.55281660949889, 28.078054708058286 ], [ 88.594002726344655, 28.106605937414081 ], [ 88.610487508091964, 28.105830790158841 ], [ 88.631674845717484, 28.083351542239875 ], [ 88.652035360143685, 28.069398906034671 ], [ 88.710119669886794, 28.061983337461008 ], [ 88.735647827285376, 28.055265402676177 ], [ 88.780141235129847, 28.028341980398061 ], [ 88.802930542310634, 28.011004537029741 ], [ 88.817503296140131, 27.994881490488346 ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Chhattisgarh", "admin": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 83.788198684121909, 23.585459907448747 ], [ 83.796260206942961, 23.58576996491194 ], [ 83.819411249329661, 23.590110785584265 ], [ 83.826956008213159, 23.590730903208616 ], [ 83.835637647759171, 23.59036916800266 ], [ 83.844629348365672, 23.588741360025718 ], [ 83.906434361156798, 23.564685980973248 ], [ 83.91232547364163, 23.563600776254809 ], [ 83.916252883163949, 23.563755804986378 ], [ 83.919663526950146, 23.566753038521874 ], [ 83.921833938185657, 23.570060330419885 ], [ 83.922764113273146, 23.576028958169839 ], [ 83.918113234238305, 23.597991441252013 ], [ 83.918113234238305, 23.609773668020349 ], [ 83.919146763012677, 23.615664781404512 ], [ 83.921007114986296, 23.619695542815005 ], [ 83.923694289260013, 23.623493761128138 ], [ 83.928655226657312, 23.62664602339526 ], [ 83.933306104792834, 23.628480536047899 ], [ 83.943538038849383, 23.63119354874328 ], [ 83.949842564282889, 23.633777371128751 ], [ 83.962554966138711, 23.641399644378051 ], [ 83.969272901822919, 23.643518377870802 ], [ 83.976300896768905, 23.643595893135963 ], [ 83.986326125250429, 23.639022529366226 ], [ 83.991183709860294, 23.631761990423506 ], [ 83.993354120196415, 23.621168321161058 ], [ 83.994594353646434, 23.610471300010484 ], [ 83.997488234394424, 23.598869941294758 ], [ 84.014851516184464, 23.567088935306113 ], [ 84.015781691271997, 23.561817939546238 ], [ 84.014541456922615, 23.553988958923295 ], [ 84.010097284362104, 23.544170436916083 ], [ 84.004309522866123, 23.534661974170767 ], [ 83.992837355359583, 23.520502631491237 ], [ 83.961934849413723, 23.490091051061135 ], [ 83.956250440705205, 23.482908027383523 ], [ 83.952219680194034, 23.474924018029007 ], [ 83.950979444945375, 23.46727590635799 ], [ 83.95108279773288, 23.459291897003421 ], [ 83.952219680194034, 23.45048106534886 ], [ 83.952323032981539, 23.441644395272586 ], [ 83.951599562569683, 23.431955064474604 ], [ 83.945088331561209, 23.405212511148473 ], [ 83.943951450898666, 23.395316473876157 ], [ 83.943951450898666, 23.382914130382794 ], [ 83.946948684434147, 23.370020860474309 ], [ 83.950772740269699, 23.362656968744087 ], [ 83.956353794392015, 23.358677883277661 ], [ 83.960901319740046, 23.358703721699378 ], [ 83.967102492386047, 23.362553615956578 ], [ 83.991803826585254, 23.386453966277479 ], [ 83.998935174318802, 23.389399522070274 ], [ 84.004309522866123, 23.388495185404444 ], [ 84.01536828012199, 23.382604072020282 ], [ 84.022499627855481, 23.372139593967059 ], [ 84.028287387552822, 23.358393663336866 ], [ 84.038622674396862, 23.30940440518912 ], [ 84.031491326663314, 23.230132757820506 ], [ 84.020019159156831, 23.187086289900318 ], [ 84.028907505177173, 23.146106879528865 ], [ 84.044823846143558, 23.123265896403943 ], [ 84.078310173575616, 23.09654918149948 ], [ 84.089058871569634, 23.084818629775945 ], [ 84.094536573803765, 23.072648831178579 ], [ 84.09763716012678, 23.060918281253631 ], [ 84.102081332687291, 23.032651271838684 ], [ 84.107869094183272, 23.01275584630525 ], [ 84.111899854694499, 23.003660793810578 ], [ 84.1150004410175, 22.998854885144787 ], [ 84.119341261689826, 22.995676785355322 ], [ 84.124715611136466, 22.993118801391571 ], [ 84.132053664445024, 22.99079336232381 ], [ 84.13908165939101, 22.99118093505211 ], [ 84.145386183925197, 22.993351345388245 ], [ 84.148383416561373, 22.996606961342192 ], [ 84.149416945335673, 22.998906561988232 ], [ 84.149623650910684, 23.000172633859957 ], [ 84.147246534999553, 23.015701402097982 ], [ 84.147556594261374, 23.021075751544682 ], [ 84.151587354772559, 23.024357205020969 ], [ 84.160165643329705, 23.023116969772328 ], [ 84.193651970761749, 23.003195705817173 ], [ 84.200473260132796, 23.000172633859957 ], [ 84.217113072410299, 22.995211697361917 ], [ 84.226414828681328, 22.993868110225087 ], [ 84.23581994043785, 22.993971462113272 ], [ 84.243778111370688, 22.996451930811922 ], [ 84.250909458204873, 22.999707545866553 ], [ 84.252769810178549, 23.000250149125062 ], [ 84.263518508172567, 23.001257839477713 ], [ 84.2725102069804, 23.001232001055993 ], [ 84.282225376200117, 23.000095120393489 ], [ 84.291733839844795, 22.997227078067162 ], [ 84.318398878805155, 22.985393175354712 ], [ 84.326770460888028, 22.978210150777834 ], [ 84.331007927873529, 22.970303656688365 ], [ 84.33297163263471, 22.950279039046389 ], [ 84.336588982895179, 22.938574327543162 ], [ 84.346200800226697, 22.920229193822191 ], [ 84.350955031149709, 22.908421129531455 ], [ 84.353332147060868, 22.896483873132237 ], [ 84.352195266398368, 22.885580146406593 ], [ 84.346510857689893, 22.873823757160658 ], [ 84.336899042157015, 22.861886502560019 ], [ 84.324496697764332, 22.849690863742346 ], [ 84.285222608836278, 22.823439235931968 ], [ 84.277574497165261, 22.817238064185283 ], [ 84.266722447283072, 22.804784043848539 ], [ 84.260521274637071, 22.799435532823562 ], [ 84.242537876122057, 22.793647773126217 ], [ 84.235199822813499, 22.789694526081515 ], [ 84.228275180655018, 22.783079942285493 ], [ 84.223107537682651, 22.775638536189486 ], [ 84.218663365122126, 22.766569322116474 ], [ 84.202540317681468, 22.715978095312831 ], [ 84.197372673809795, 22.707528997964854 ], [ 84.190964797387423, 22.700940253489872 ], [ 84.13908165939101, 22.66701467468749 ], [ 84.119031203327296, 22.648126939506646 ], [ 84.111279737969468, 22.643941148465213 ], [ 84.103321567935936, 22.641228135769829 ], [ 84.092159457892635, 22.639987901420508 ], [ 84.061877068671691, 22.641021430194822 ], [ 84.056502720124371, 22.639316107852093 ], [ 84.043583611794176, 22.6286707635449 ], [ 84.026427035579204, 22.60918874826211 ], [ 84.019502395219291, 22.603788560393745 ], [ 84.013301222573304, 22.599990342979932 ], [ 83.9962480000451, 22.592703966514811 ], [ 83.991907180272094, 22.589680894557599 ], [ 83.988703241161588, 22.585934353087904 ], [ 83.985292595576752, 22.579888210972108 ], [ 83.982605422202411, 22.57407461195373 ], [ 83.97640424955641, 22.553739935949288 ], [ 83.970203077809728, 22.539348049273027 ], [ 83.968136021160419, 22.52255320916327 ], [ 83.970616489859054, 22.516041978154757 ], [ 83.990563592235944, 22.483253281813457 ], [ 83.99500776569576, 22.468990587245791 ], [ 83.997074823244461, 22.4517564975643 ], [ 83.99645470562011, 22.440542711576878 ], [ 83.994697707333259, 22.431576850291375 ], [ 83.992527296997125, 22.424419664136163 ], [ 83.989116652311594, 22.417107449249379 ], [ 83.984362421388582, 22.41028615987835 ], [ 83.955733676767736, 22.378711860364028 ], [ 83.945811801973022, 22.371192939002917 ], [ 83.931859164868484, 22.365456855249644 ], [ 83.918423292600821, 22.36276968007666 ], [ 83.876978794235896, 22.359152329816133 ], [ 83.841425409255152, 22.348584499874729 ], [ 83.816724074156625, 22.332513129277455 ], [ 83.733111607015005, 22.262284858459449 ], [ 83.721639438609131, 22.255050157039072 ], [ 83.664175245591053, 22.235025540296412 ], [ 83.639990676228692, 22.223269151050481 ], [ 83.623660923212967, 22.213269761889986 ], [ 83.605367466335423, 22.195983995365051 ], [ 83.556998325812032, 22.129424749852316 ], [ 83.548730095617344, 22.112939968105017 ], [ 83.546249627818028, 22.10162283022941 ], [ 83.550280389228504, 22.094801540858381 ], [ 83.560719028860007, 22.083846137289409 ], [ 83.565369907894862, 22.079737861513077 ], [ 83.570020786030369, 22.074182644013771 ], [ 83.57219119726588, 22.067774766692136 ], [ 83.571054314804755, 22.058369655834948 ], [ 83.564853143058073, 22.052116808144145 ], [ 83.55668826744953, 22.04764679626259 ], [ 83.545939568556193, 22.044132798789629 ], [ 83.528782994139803, 22.035166938403446 ], [ 83.522168410343824, 22.028371487454134 ], [ 83.518034296145785, 22.020258286890392 ], [ 83.513073357849109, 21.982792873991905 ], [ 83.512866652274155, 21.973051866350541 ], [ 83.515347120972805, 21.963853461068361 ], [ 83.521238234356971, 21.956360379028236 ], [ 83.530126581276619, 21.94951325123554 ], [ 83.558858676886402, 21.933984482997452 ], [ 83.566403435769914, 21.928196723300115 ], [ 83.57064090365472, 21.923054917850148 ], [ 83.571674432429049, 21.916311142844958 ], [ 83.570124138817889, 21.907577826455505 ], [ 83.561339145585038, 21.883625800190483 ], [ 83.559582147298187, 21.875099189376037 ], [ 83.560408969598228, 21.869673163085956 ], [ 83.564853143058073, 21.853575954966342 ], [ 83.557101677700217, 21.834920762882856 ], [ 83.552760857927211, 21.833370470171015 ], [ 83.546456333393039, 21.832207750187475 ], [ 83.527852818152994, 21.833525498902638 ], [ 83.522168410343824, 21.830269883848015 ], [ 83.519687940745811, 21.826523342378316 ], [ 83.519067824020837, 21.81071035419944 ], [ 83.515553827447121, 21.799677436264627 ], [ 83.511213006774796, 21.796240953157444 ], [ 83.506252069377439, 21.796576849941626 ], [ 83.500671014355802, 21.801744492913993 ], [ 83.49426313703411, 21.8061628279521 ], [ 83.486408318888763, 21.808462429497521 ], [ 83.473179152196039, 21.807170518304755 ], [ 83.466874627661909, 21.799987493727819 ], [ 83.463877395025719, 21.790530706926567 ], [ 83.463257277401368, 21.766139431089865 ], [ 83.458916456729057, 21.748026842264942 ], [ 83.444033645436363, 21.718597113765778 ], [ 83.351946241625711, 21.577262071187587 ], [ 83.343264602079657, 21.560027981506149 ], [ 83.342541131667844, 21.549615180296307 ], [ 83.335099724672517, 21.520004583744534 ], [ 83.327658318576454, 21.499153143802509 ], [ 83.326211378652133, 21.487836005027585 ], [ 83.327348260213995, 21.46367727318761 ], [ 83.329932081700164, 21.453341987242872 ], [ 83.334582960735005, 21.444221096326537 ], [ 83.341300897318533, 21.436159573505503 ], [ 83.375407342374885, 21.40660065379711 ], [ 83.381195102971589, 21.399546821328723 ], [ 83.384915806019563, 21.389444078481397 ], [ 83.387499628405038, 21.377067573409754 ], [ 83.38832645070508, 21.357766425280257 ], [ 83.385329217169598, 21.34647512492705 ], [ 83.379748163047211, 21.339188748461929 ], [ 83.370756464239349, 21.336656602020518 ], [ 83.361041294120383, 21.336759954808027 ], [ 83.353083124086865, 21.338361925262625 ], [ 83.344814894791497, 21.340894069905396 ], [ 83.301096633302947, 21.358696601267123 ], [ 83.290037876047094, 21.359626777253929 ], [ 83.279392530840568, 21.358799954054625 ], [ 83.271744419169551, 21.351539415111912 ], [ 83.265853305785384, 21.343090317763934 ], [ 83.260478957238021, 21.332780870240917 ], [ 83.257068312552505, 21.3239442001647 ], [ 83.255311314265711, 21.316528632490357 ], [ 83.255207960578886, 21.311593533514717 ], [ 83.256241490252521, 21.308828843975956 ], [ 83.258928663626861, 21.305469876133881 ], [ 83.259652134038717, 21.299656277115499 ], [ 83.257068312552505, 21.290328681523413 ], [ 83.23422732942764, 21.26151906974922 ], [ 83.227199335380959, 21.249633490193382 ], [ 83.198260533296917, 21.172558092481943 ], [ 83.186168247266764, 21.153541165192614 ], [ 83.173972609348397, 21.140053616081499 ], [ 83.156299270095161, 21.12599762618947 ], [ 83.143586867340034, 21.12062327674283 ], [ 83.12911746629797, 21.117936103368432 ], [ 83.078164504288381, 21.114551296205317 ], [ 83.06937951015621, 21.116773383384889 ], [ 83.062558220785192, 21.120726630429655 ], [ 83.047882115067509, 21.135738633830893 ], [ 83.039200473722858, 21.141526394427554 ], [ 83.030312127702459, 21.144833686325562 ], [ 83.018839960195962, 21.147469183755785 ], [ 83.008918085401248, 21.150905666863018 ], [ 83.001476678405922, 21.155685737107088 ], [ 82.995895624283577, 21.160775864814294 ], [ 82.989074334912559, 21.168682358903702 ], [ 82.976982048882391, 21.176175441843153 ], [ 82.964579706288347, 21.178526720231954 ], [ 82.861640252595507, 21.161886907954393 ], [ 82.841589797431183, 21.161189276863631 ], [ 82.822262810879948, 21.157856147443223 ], [ 82.81048058501095, 21.153980413864982 ], [ 82.797458123893236, 21.147262478180831 ], [ 82.79043012894725, 21.145014553478855 ], [ 82.782161899651882, 21.14491119979203 ], [ 82.775030551918391, 21.148657742161042 ], [ 82.769346145008555, 21.153980413864982 ], [ 82.761387974075689, 21.158062852118913 ], [ 82.752602979943546, 21.160078232824159 ], [ 82.668163689602565, 21.155479031532078 ], [ 82.656691522095997, 21.152610989205751 ], [ 82.649043410424994, 21.149019477366942 ], [ 82.644702589752669, 21.144420274276222 ], [ 82.642738884991488, 21.140363674444011 ], [ 82.642842237778993, 21.136203721824298 ], [ 82.64687300008886, 21.123439643125035 ], [ 82.644082473027638, 21.104293525525744 ], [ 82.627235956074429, 21.080935777564086 ], [ 82.606875440748951, 21.024143378114385 ], [ 82.562123651385349, 20.954457708756248 ], [ 82.54817101428084, 20.939368190989224 ], [ 82.537939081123668, 20.933063666455038 ], [ 82.527913852642129, 20.932236843255676 ], [ 82.522436151307289, 20.929523831459612 ], [ 82.514581333161956, 20.923736069963635 ], [ 82.498561639408067, 20.907328803481498 ], [ 82.487709588626544, 20.892213447292757 ], [ 82.472930129222036, 20.867072861723155 ], [ 82.463008254427322, 20.855393989540968 ], [ 82.453499789883367, 20.846867376927886 ], [ 82.438203565641999, 20.839529324518704 ], [ 82.422700636724969, 20.834594225543064 ], [ 82.415879348253256, 20.833819078287824 ], [ 82.410918409956579, 20.835369370999668 ], [ 82.40750776617044, 20.838702501319339 ], [ 82.405130650259238, 20.844051012344316 ], [ 82.405027296572413, 20.849399522469977 ], [ 82.406577590183574, 20.861362616391599 ], [ 82.406577590183574, 20.865290025014637 ], [ 82.404820590997403, 20.86908824332772 ], [ 82.400996535161909, 20.872421372748132 ], [ 82.394898716202746, 20.875211899809294 ], [ 82.364926385344319, 20.882317410020445 ], [ 82.359862095159528, 20.882394924386229 ], [ 82.353040805788481, 20.880534573311873 ], [ 82.34911339716551, 20.876762193420458 ], [ 82.345909458055004, 20.872447211169849 ], [ 82.343222283781344, 20.866840317726481 ], [ 82.341982049431962, 20.860820014032409 ], [ 82.344152459768154, 20.747932848022508 ], [ 82.34663292756747, 20.737365017181784 ], [ 82.350353632414141, 20.726590480766045 ], [ 82.360275507208854, 20.705790716768146 ], [ 82.364202914932534, 20.69478363725505 ], [ 82.366993442893019, 20.682303779395905 ], [ 82.36761355961805, 20.669255478957151 ], [ 82.36668338363117, 20.657085680359835 ], [ 82.362755975008199, 20.639489854573124 ], [ 82.357484979248312, 20.624658718325172 ], [ 82.340225051145154, 20.556342475424909 ], [ 82.340121698357649, 20.542493191107891 ], [ 82.343635694931308, 20.529367377202668 ], [ 82.359035271960153, 20.499782619971935 ], [ 82.359655388685184, 20.499446723187699 ], [ 82.361205682296358, 20.499240016713369 ], [ 82.363892856570018, 20.500041002390329 ], [ 82.366373326168045, 20.502263087771265 ], [ 82.368957146754866, 20.50505361573175 ], [ 82.372677849802841, 20.506862290862042 ], [ 82.376398552850887, 20.506526394077802 ], [ 82.380946079098209, 20.500971178377135 ], [ 82.381359491147563, 20.499446723187699 ], [ 82.382496371810049, 20.483995470214772 ], [ 82.386940546169214, 20.466167101330651 ], [ 82.39128136594222, 20.458157253554415 ], [ 82.396449008914587, 20.453299668944563 ], [ 82.401926711148732, 20.453299668944563 ], [ 82.40730105969611, 20.456503608055069 ], [ 82.411951938730937, 20.46017263425966 ], [ 82.417532993752602, 20.462498074226737 ], [ 82.420323520813767, 20.451620185023497 ], [ 82.421873814424927, 20.428029893065112 ], [ 82.411538526681611, 20.345425116276086 ], [ 82.411641880368435, 20.32679576351364 ], [ 82.414329054642096, 20.320362046870962 ], [ 82.418979933676923, 20.31434174227757 ], [ 82.423114047874932, 20.306151028247307 ], [ 82.427144810184785, 20.293981227851354 ], [ 82.427971633384104, 20.241452134708247 ], [ 82.435826450630117, 20.198767401994012 ], [ 82.435826450630117, 20.173730170111234 ], [ 82.433656040293997, 20.159002387550114 ], [ 82.413398878655286, 20.093347480501784 ], [ 82.41246870266842, 20.076991889064399 ], [ 82.415569288991406, 20.066966661482237 ], [ 82.464455194351714, 20.045779323856717 ], [ 82.470759718885844, 20.04136098881855 ], [ 82.486572707064724, 20.026994941463382 ], [ 82.49091352683773, 20.02459198713046 ], [ 82.495874465134406, 20.02304169441862 ], [ 82.509827102238916, 20.021853136013412 ], [ 82.550341423717654, 20.024488634342951 ], [ 82.557989536287991, 20.024101059816015 ], [ 82.565844354433324, 20.02226654716338 ], [ 82.572562290117546, 20.019165960840379 ], [ 82.578350050714192, 20.014618435492363 ], [ 82.589925571907571, 20.000123196028646 ], [ 82.594266391680577, 19.995885728143829 ], [ 82.598503858666092, 19.992785141820828 ], [ 82.603774855325284, 19.990330512443162 ], [ 82.61121626232061, 19.988134264584623 ], [ 82.618140903579757, 19.988935248462944 ], [ 82.62630578008762, 19.991880805155002 ], [ 82.637157830869143, 19.99898631446683 ], [ 82.638708123580997, 20.00030406318194 ], [ 82.643152297040814, 20.002862047145751 ], [ 82.647699823288164, 20.004102281495076 ], [ 82.653384230198, 20.005032457481882 ], [ 82.665373163440648, 20.004954942216781 ], [ 82.688214145666265, 20.002371120730626 ], [ 82.692554966338591, 20.001440944743759 ], [ 82.695035435037241, 20.00053660717867 ], [ 82.696275669386566, 19.998107815323401 ], [ 82.700409783584604, 19.98009857838667 ], [ 82.700926548421407, 19.968781440511062 ], [ 82.699066197347108, 19.955009670559829 ], [ 82.685423618605043, 19.905994573990366 ], [ 82.684493442618219, 19.895400906526614 ], [ 82.685526971392534, 19.887571925903611 ], [ 82.688214145666265, 19.882688502872096 ], [ 82.691108026414241, 19.878657742360925 ], [ 82.709091424029936, 19.862818914861005 ], [ 82.713328891914756, 19.855532538395885 ], [ 82.712812127977301, 19.849563909746614 ], [ 82.707851189680625, 19.843207709268363 ], [ 82.69172814313923, 19.828764145748718 ], [ 82.682323033181348, 19.822666326789538 ], [ 82.660722284405864, 19.815690008686936 ], [ 82.650283644774319, 19.811168320861324 ], [ 82.639328241205277, 19.805096340323807 ], [ 82.601087681051567, 19.774607245527928 ], [ 82.592716098968751, 19.769103704872062 ], [ 82.575249465290526, 19.768070176997067 ], [ 82.574009230041867, 19.770964056845738 ], [ 82.573182407741896, 19.774917303890444 ], [ 82.574009230041867, 19.782100328467376 ], [ 82.574319289303716, 19.790911160121929 ], [ 82.572562290117546, 19.805018825958022 ], [ 82.572872349379381, 19.814682319233608 ], [ 82.575042758816181, 19.824888413969116 ], [ 82.577833285877418, 19.833492540048663 ], [ 82.579073521126048, 19.843156033324245 ], [ 82.573699171679365, 19.847419337832147 ], [ 82.564500767296508, 19.849331365749883 ], [ 82.526156854355264, 19.850339057001854 ], [ 82.513961216436925, 19.854473171199849 ], [ 82.488743117400901, 19.867909044366908 ], [ 82.475927361858211, 19.872379055349082 ], [ 82.381359491147563, 19.885944118825986 ], [ 82.370404086679216, 19.885401516466796 ], [ 82.361102328609533, 19.88390289969902 ], [ 82.353350865050331, 19.880595607801066 ], [ 82.346942986829319, 19.876590683912919 ], [ 82.341465284595174, 19.871629747414879 ], [ 82.337951288021472, 19.867237249899112 ], [ 82.333300408986631, 19.860545151737362 ], [ 82.319347771882093, 19.834086819251294 ], [ 82.313456659397261, 19.826154486740158 ], [ 82.3048783708401, 19.823312282835555 ], [ 82.298057082368388, 19.826412869158556 ], [ 82.29030561701056, 19.836050523113151 ], [ 82.228397251431986, 19.95873037450718 ], [ 82.217855259012921, 19.972993069074839 ], [ 82.21010379365508, 19.97875499124984 ], [ 82.203592564445245, 19.980331122383344 ], [ 82.181061638783518, 19.976791287387979 ], [ 82.170829705626346, 19.977075507328774 ], [ 82.164731886667184, 19.979426784818255 ], [ 82.160597771569854, 19.982889106347155 ], [ 82.158530714920502, 19.986377265398453 ], [ 82.156567010159307, 19.991544908370823 ], [ 82.155326775809996, 19.995704860990536 ], [ 82.153466423836321, 19.999994004819424 ], [ 82.148815545700799, 20.005704251050297 ], [ 82.14106408124232, 20.012680569152899 ], [ 82.126801384875961, 20.022809150421946 ], [ 82.096208938191893, 20.050636908466512 ], [ 82.090731235957691, 20.054693508298723 ], [ 82.085150180936054, 20.056993109844139 ], [ 82.081326125100517, 20.057871608987565 ], [ 82.075124953353878, 20.058388372925034 ], [ 82.07078413268151, 20.05725149226253 ], [ 82.065926548071658, 20.053685817946128 ], [ 82.061275669036874, 20.047691351774453 ], [ 82.057865025250678, 20.042058620808682 ], [ 82.04959679595531, 20.023351751881815 ], [ 82.046082797582955, 20.017874050546986 ], [ 82.040295037885627, 20.014049993812133 ], [ 82.032853631789621, 20.011879584375318 ], [ 82.021898228220593, 20.011672877900985 ], [ 82.016317173198928, 20.016866360194339 ], [ 82.015076938849617, 20.023119207885138 ], [ 82.015800409261416, 20.029527086106096 ], [ 82.014250115650256, 20.035599067542929 ], [ 82.009289178252899, 20.044487413563267 ], [ 81.960609979366978, 20.097610785009689 ], [ 81.952031690809847, 20.103708603968865 ], [ 81.944900343975604, 20.105568955942537 ], [ 81.939629348215803, 20.104664618377392 ], [ 81.929810826208595, 20.097791653062298 ], [ 81.897564732226527, 20.061902371297375 ], [ 81.878961216087163, 20.051024482094132 ], [ 81.867799106943181, 20.046657823000086 ], [ 81.860150995272164, 20.037020169045544 ], [ 81.819326612732922, 19.965706691710459 ], [ 81.815295852221752, 19.955888169703254 ], [ 81.813125440986227, 19.945527045336856 ], [ 81.813745558610577, 19.935088405705354 ], [ 81.817156203296094, 19.924339707711336 ], [ 81.824184198242094, 19.913255112933083 ], [ 81.833175897049941, 19.903798326131831 ], [ 81.845268182180774, 19.894729112058879 ], [ 81.929397414159311, 19.849253852283422 ], [ 81.937148878617776, 19.841812446187415 ], [ 81.943453404051283, 19.832097276068392 ], [ 81.954512160407816, 19.804011134706055 ], [ 81.960093215429524, 19.796337185512694 ], [ 81.968774854975536, 19.791143704118607 ], [ 81.978076613045218, 19.788198147426549 ], [ 82.011666294164101, 19.784890855528538 ], [ 82.020141229034422, 19.78197113725815 ], [ 82.029132927842269, 19.776467597501604 ], [ 82.036160922788312, 19.767088324166817 ], [ 82.037814569186978, 19.756727199800419 ], [ 82.02809939996726, 19.716264553366436 ], [ 82.027272576767956, 19.695593980577705 ], [ 82.031199986290275, 19.676499538922538 ], [ 82.038744745173787, 19.651901557510879 ], [ 82.040605096248143, 19.637354641203721 ], [ 82.039054802636983, 19.624358018507728 ], [ 82.032130161377808, 19.594773261276995 ], [ 82.029029575954141, 19.517852892297125 ], [ 82.031923455802811, 19.508447781439937 ], [ 82.038124628448799, 19.502479152790666 ], [ 82.066856724058511, 19.497208157030794 ], [ 82.074814894991377, 19.49410757070779 ], [ 82.081016065838739, 19.488810737425577 ], [ 82.086080356922864, 19.48056834655193 ], [ 82.102203404363564, 19.445815945449507 ], [ 82.106440871349079, 19.440209052006136 ], [ 82.111401808746436, 19.436772568898899 ], [ 82.117706333280623, 19.434550483517963 ], [ 82.142614373954117, 19.428685208555514 ], [ 82.15098595603699, 19.424731961510812 ], [ 82.158840773283004, 19.418169054558174 ], [ 82.167522413728335, 19.405224106906982 ], [ 82.170002883326376, 19.395147203380699 ], [ 82.168659296189531, 19.386594753245273 ], [ 82.163388298631034, 19.380832831070276 ], [ 82.146335077002135, 19.370652573857168 ], [ 82.139617141317927, 19.364683946107213 ], [ 82.135276319746296, 19.355769762564471 ], [ 82.136516554994941, 19.350421251539498 ], [ 82.141787550754813, 19.344891873361231 ], [ 82.158530714920502, 19.334711615248803 ], [ 82.168452589715216, 19.325616562754131 ], [ 82.171759881613156, 19.316857407943015 ], [ 82.170829705626346, 19.306909694726638 ], [ 82.153156366373182, 19.271433824111678 ], [ 82.148195428076505, 19.25815298147489 ], [ 82.145404901015326, 19.244226182792083 ], [ 82.145714960277104, 19.225312608290206 ], [ 82.148505487338326, 19.212884426375176 ], [ 82.152846307111332, 19.20167064128702 ], [ 82.165972121016509, 19.178984686893777 ], [ 82.168659296189531, 19.166246445716862 ], [ 82.16741906094083, 19.154929307841254 ], [ 82.160597771569854, 19.132863471072309 ], [ 82.159667595583002, 19.122838243490147 ], [ 82.164628533879679, 19.115913601331609 ], [ 82.187882928154565, 19.100901597930367 ], [ 82.195014275888056, 19.09263336773574 ], [ 82.197701451061093, 19.083874212924567 ], [ 82.200595330909763, 19.05811351242863 ], [ 82.20648644429393, 19.046537991235308 ], [ 82.221369257385248, 19.024394640100521 ], [ 82.224986606746469, 19.015196234818344 ], [ 82.225710077158254, 19.005196844758583 ], [ 82.225400017896433, 18.996334337159904 ], [ 82.22788048659514, 18.933960882688545 ], [ 82.224469841909624, 18.921946112822805 ], [ 82.220025669349113, 18.915202337817615 ], [ 82.214237908752452, 18.913548692318269 ], [ 82.188813104141374, 18.900784614518326 ], [ 82.184678989943379, 18.897658188874281 ], [ 82.181268345257863, 18.89393748582631 ], [ 82.178891229346718, 18.889751694784874 ], [ 82.175893995811222, 18.885850125482872 ], [ 82.169072707339495, 18.878718776850061 ], [ 82.166178826591519, 18.873835353818489 ], [ 82.164628533879679, 18.867169094078402 ], [ 82.16380171068036, 18.83667999928252 ], [ 82.154499952610692, 18.79143728350379 ], [ 82.152639602435656, 18.786889757256457 ], [ 82.150159132837686, 18.782781480580859 ], [ 82.143234490679149, 18.766064154836837 ], [ 82.138893670906143, 18.747253933122519 ], [ 82.127421503399589, 18.749243476305363 ], [ 82.118326450904917, 18.755057074424425 ], [ 82.106440871349079, 18.767536933182893 ], [ 82.102410109039255, 18.770017401881599 ], [ 82.098689405991237, 18.770611681084169 ], [ 82.095278762205041, 18.768828844375658 ], [ 82.091558059157066, 18.763790391713197 ], [ 82.076778598853181, 18.730226549015978 ], [ 82.069853956694701, 18.719762070962812 ], [ 82.059105258700683, 18.712424018553573 ], [ 82.044532504871114, 18.708548284975333 ], [ 82.005568475204925, 18.705861110701672 ], [ 81.998437128370739, 18.704078273993158 ], [ 81.989548780551701, 18.700202542213553 ], [ 81.979213494607023, 18.693794663992541 ], [ 81.968981560550532, 18.685733141171507 ], [ 81.961333448879515, 18.67730988224525 ], [ 81.947794223824332, 18.658137926224295 ], [ 81.940869581665808, 18.650980740069084 ], [ 81.933428175569802, 18.646665757818418 ], [ 81.925780063898785, 18.644882921109907 ], [ 81.916788365090937, 18.644185289119768 ], [ 81.909657017357389, 18.641394762058606 ], [ 81.90335249192394, 18.634082546272449 ], [ 81.902422315937059, 18.627002875382399 ], [ 81.903662551185718, 18.621912746775816 ], [ 81.90841678300805, 18.615944119025865 ], [ 81.915754836316566, 18.610673123265993 ], [ 81.934048293194152, 18.600932114725307 ], [ 81.941903111339442, 18.593981635044422 ], [ 81.948310987761815, 18.579512234002376 ], [ 81.947070754311795, 18.567600816024818 ], [ 81.940869581665808, 18.558531601951866 ], [ 81.93280805884477, 18.554216619701204 ], [ 81.92422977118693, 18.550780138392664 ], [ 81.913274366718596, 18.544914863430161 ], [ 81.889606561293732, 18.52687978807176 ], [ 81.869452753341861, 18.508198757566614 ], [ 81.843717888569614, 18.477709661871355 ], [ 81.804753858903425, 18.449339301467543 ], [ 81.792351516309381, 18.438435573842636 ], [ 81.772301060245681, 18.413217474806626 ], [ 81.740571730201154, 18.357897853702976 ], [ 81.733130324105147, 18.349577948463541 ], [ 81.72548221243413, 18.344048570285278 ], [ 81.717110630351257, 18.340973822383997 ], [ 81.691375767377707, 18.336865545708342 ], [ 81.682694126033013, 18.3337132843406 ], [ 81.675562779198827, 18.329760037295838 ], [ 81.670498488114646, 18.324850775842599 ], [ 81.658406202983812, 18.303275865488782 ], [ 81.652721796073962, 18.297772324832916 ], [ 81.643833449154315, 18.292372137863875 ], [ 81.593397251082223, 18.27224416833371 ], [ 81.574793735842192, 18.267154038827808 ], [ 81.565388624985005, 18.266533922102774 ], [ 81.558050571676489, 18.268110053236335 ], [ 81.553709751004163, 18.269815375579125 ], [ 81.548438755244305, 18.268575141229743 ], [ 81.542547641860139, 18.262451483848903 ], [ 81.529318475167457, 18.229456081932593 ], [ 81.521773716283903, 18.218087267213601 ], [ 81.516192661262252, 18.207881171578773 ], [ 81.513815546250427, 18.200827338211067 ], [ 81.512885370263561, 18.194290268780883 ], [ 81.513712192563602, 18.188838405867724 ], [ 81.515262486174763, 18.183748277261142 ], [ 81.523634068257564, 18.168942979434913 ], [ 81.524874301707584, 18.160287177411302 ], [ 81.52311730342079, 18.150339464194925 ], [ 81.518466424385934, 18.135482489525256 ], [ 81.516192661262252, 18.117809150272016 ], [ 81.506270785568276, 18.085588893812368 ], [ 81.503066848256395, 18.079852810059091 ], [ 81.499552849884068, 18.075331122233472 ], [ 81.495935499623528, 18.071868800704575 ], [ 81.48818403516502, 18.061171780453261 ], [ 81.48291303940519, 18.051430771912575 ], [ 81.481052688330848, 18.043575955565863 ], [ 81.480742629068999, 18.03649628287712 ], [ 81.482292921780839, 18.028176378537008 ], [ 81.482189568993348, 17.994095771002996 ], [ 81.477848749220342, 17.971435655031424 ], [ 81.474438103635507, 17.960015164368311 ], [ 81.471027459849353, 17.953193874997336 ], [ 81.463689405641489, 17.944279690555273 ], [ 81.459245233080978, 17.937484238706642 ], [ 81.453147414121801, 17.925004380847493 ], [ 81.450666945423151, 17.915495917202801 ], [ 81.449323358286321, 17.905651556773929 ], [ 81.449116651811991, 17.89234487571542 ], [ 81.447256300737635, 17.885032659929315 ], [ 81.44415571531394, 17.879735825747726 ], [ 81.439504836279113, 17.877358709836582 ], [ 81.434647250769942, 17.876428533849715 ], [ 81.429686314271947, 17.877332872314181 ], [ 81.425552199174589, 17.879684149803662 ], [ 81.417800733816748, 17.885704454397054 ], [ 81.413253207569397, 17.888029893464815 ], [ 81.408292271071431, 17.88896006945162 ], [ 81.402607863262219, 17.887487291105568 ], [ 81.397336866603084, 17.883146471332562 ], [ 81.394959750691882, 17.877978827460872 ], [ 81.394236281179388, 17.87232025807344 ], [ 81.393306105192536, 17.854233506770917 ], [ 81.390722283706381, 17.83702525551109 ], [ 81.390928990180697, 17.818783474577682 ], [ 81.394029575604392, 17.806691189446834 ], [ 81.319408807270563, 17.808939114148753 ], [ 81.274657017007698, 17.803848985542228 ], [ 81.24520145098613, 17.803693955911339 ], [ 81.221636997449394, 17.808887437305369 ], [ 81.203033482209349, 17.816613064241491 ], [ 81.177608676699009, 17.83149587733288 ], [ 81.167376742642517, 17.836198432311786 ], [ 81.157248163172127, 17.837903753755192 ], [ 81.147739698628115, 17.836560167517685 ], [ 81.135544060709762, 17.82994558372172 ], [ 81.108672316174406, 17.811755478732319 ], [ 81.082937453200856, 17.799895738497522 ], [ 81.057926059739799, 17.782325751132472 ], [ 81.044903598622142, 17.776072903441726 ], [ 81.029400668805792, 17.776977240107552 ], [ 81.015448032600574, 17.785219630981139 ], [ 80.999945102784224, 17.806949570965905 ], [ 80.985579055429, 17.840461737719007 ], [ 80.978964470733715, 17.963942572092034 ], [ 80.974003534235678, 17.980194809842597 ], [ 80.955193313420622, 18.012776801508149 ], [ 80.947958612000292, 18.028615628108746 ], [ 80.941550733779295, 18.048175156858004 ], [ 80.938140089993084, 18.066158556272338 ], [ 80.937519973268124, 18.08631236422422 ], [ 80.94186079304113, 18.102564601974787 ], [ 80.949198846349631, 18.117214871069443 ], [ 80.957053663595659, 18.130133979399599 ], [ 80.961394484267984, 18.139823310197581 ], [ 80.959120721144288, 18.148246568224518 ], [ 80.951472608573951, 18.153052475990929 ], [ 80.934522739732614, 18.155300400692905 ], [ 80.921396925827409, 18.151424668913304 ], [ 80.896902297203198, 18.140675970919286 ], [ 80.884913364859855, 18.136877753505527 ], [ 80.873544549241487, 18.137575385495602 ], [ 80.864242792071124, 18.143466497980452 ], [ 80.857008090650794, 18.155558783111356 ], [ 80.854837681213994, 18.169563097059264 ], [ 80.854217563589643, 18.183128160536164 ], [ 80.852357211615967, 18.196357327228835 ], [ 80.847189568643657, 18.208036200310399 ], [ 80.836544224336407, 18.21421153453468 ], [ 80.828275995041082, 18.215296739253116 ], [ 80.820317824108244, 18.212919623341914 ], [ 80.816287062697739, 18.209302273081445 ], [ 80.813496534737197, 18.203540350906447 ], [ 80.809155714964191, 18.182947293382878 ], [ 80.807192010203082, 18.176849474423701 ], [ 80.80471154240368, 18.172456976907934 ], [ 80.799440545744545, 18.16873627385996 ], [ 80.791172316449178, 18.166281643582973 ], [ 80.77928673689334, 18.164783026815197 ], [ 80.753448521132313, 18.164188748511943 ], [ 80.74259647035079, 18.166979275573109 ], [ 80.735051710567959, 18.1737488881007 ], [ 80.729780714808086, 18.187236436312439 ], [ 80.729470656445571, 18.197985134306457 ], [ 80.732054477931769, 18.207261053954479 ], [ 80.737015415329083, 18.214108180847855 ], [ 80.744766879787605, 18.219637559026122 ], [ 80.763680454289485, 18.227750758690544 ], [ 80.772258741947311, 18.232711696987216 ], [ 80.774945917120334, 18.238861191890457 ], [ 80.774222446708492, 18.248524685166043 ], [ 80.770088331611163, 18.259015000741666 ], [ 80.74528364462445, 18.297100531264501 ], [ 80.72047895673839, 18.35161916848983 ], [ 80.711900669080563, 18.382056586442271 ], [ 80.705802850121387, 18.396836045846836 ], [ 80.696191033689203, 18.412287298819759 ], [ 80.679034458373479, 18.431252550165024 ], [ 80.665185174056475, 18.449985255714974 ], [ 80.64410119011778, 18.470268255775348 ], [ 80.629321729813952, 18.490396226204833 ], [ 80.583433058888517, 18.541375027535477 ], [ 80.561212193387959, 18.560469469190647 ], [ 80.551807081631438, 18.566903184034679 ], [ 80.529999628180221, 18.576980089359605 ], [ 80.52038781084876, 18.583439643524738 ], [ 80.5026111179087, 18.599950262794376 ], [ 80.486591424154852, 18.606177272962778 ], [ 80.464370558654295, 18.606668199377904 ], [ 80.427886996787421, 18.597237250098996 ], [ 80.409076775972352, 18.588865668016123 ], [ 80.394297315668538, 18.593051459057559 ], [ 80.390576612620492, 18.604213569100914 ], [ 80.383548617674521, 18.61237844470946 ], [ 80.372076451067272, 18.615556545398245 ], [ 80.369699335156142, 18.61005300474238 ], [ 80.36122440028582, 18.599381822013463 ], [ 80.352025995003643, 18.592276312701639 ], [ 80.347891879906271, 18.597547309360831 ], [ 80.344481236120075, 18.610698960788394 ], [ 80.336419712399774, 18.621189277263337 ], [ 80.327117954330078, 18.631033636792889 ], [ 80.319883253809039, 18.642247422780311 ], [ 80.317506137897894, 18.652143460052624 ], [ 80.316162550761049, 18.673304959256424 ], [ 80.313682082062414, 18.683200994730097 ], [ 80.309134555815064, 18.694182236720845 ], [ 80.30314008964335, 18.705060125924032 ], [ 80.294665154773028, 18.713380032062783 ], [ 80.282676223329005, 18.716713162382515 ], [ 80.270377231723828, 18.713690090425299 ], [ 80.264796176702106, 18.731751003306155 ], [ 80.26138553291598, 18.744515082005417 ], [ 80.260558709716605, 18.755522162417829 ], [ 80.266036411051502, 18.768208725851988 ], [ 80.274821405183644, 18.77694204404008 ], [ 80.33890018109841, 18.813348089742526 ], [ 80.349235467043087, 18.830918077107579 ], [ 80.344171176858296, 18.850710150752825 ], [ 80.283916456779011, 18.920266628002476 ], [ 80.271410759598822, 18.946957506283862 ], [ 80.271824171648163, 18.979436143363326 ], [ 80.290427687787528, 19.019304511493992 ], [ 80.346238234406925, 19.081497097013422 ], [ 80.366598748833141, 19.117386378778345 ], [ 80.370629510243631, 19.13712677737885 ], [ 80.373109978942338, 19.151363634424168 ], [ 80.397087843629023, 19.234175115888885 ], [ 80.405356072924377, 19.250401516117048 ], [ 80.413934360582218, 19.256111762347924 ], [ 80.437085402069599, 19.265310166730782 ], [ 80.44731733612609, 19.272131456101814 ], [ 80.456515741408268, 19.285128078797751 ], [ 80.471088495237822, 19.315849718489684 ], [ 80.480803663558206, 19.328562120345563 ], [ 80.489795363265358, 19.334349880042904 ], [ 80.508502232192185, 19.340473538323121 ], [ 80.516977167062549, 19.345201930824427 ], [ 80.526382277020431, 19.355330512093413 ], [ 80.5427120300361, 19.378584906368296 ], [ 80.553460728030117, 19.386904812507051 ], [ 80.575991651893148, 19.391969101792593 ], [ 80.587050409148986, 19.381918035788711 ], [ 80.600279575841711, 19.341687934250725 ], [ 80.617436151157364, 19.318562730285745 ], [ 80.633559197698773, 19.31677989357723 ], [ 80.652989536138108, 19.322412625442265 ], [ 80.67996463436036, 19.32153412539952 ], [ 80.690093214730027, 19.311147161712139 ], [ 80.710453729156242, 19.278694363054395 ], [ 80.716654900902924, 19.262700506822902 ], [ 80.72047895673839, 19.261563626160406 ], [ 80.724509719048271, 19.264483344430797 ], [ 80.737222120904079, 19.278565171845166 ], [ 80.751174758008617, 19.291045029704318 ], [ 80.761199985590835, 19.29846059827798 ], [ 80.784351027078159, 19.31161224970554 ], [ 80.823004999281224, 19.326081650747536 ], [ 80.830963169314742, 19.334246528154718 ], [ 80.832203403664082, 19.345408637298757 ], [ 80.823315056744406, 19.363081977451255 ], [ 80.805435011916217, 19.386129666151128 ], [ 80.80254113206756, 19.394320380181394 ], [ 80.805745070278746, 19.403337918310282 ], [ 80.813806593999047, 19.408453884439208 ], [ 80.825485467080611, 19.411166897134589 ], [ 80.854217563589643, 19.414448349711559 ], [ 80.869410435043491, 19.419357612064115 ], [ 80.880985956236813, 19.427910061300274 ], [ 80.888944126270346, 19.438813788025865 ], [ 80.895352003592038, 19.452197984349478 ], [ 80.897005649990703, 19.468605251730988 ], [ 80.893905063667702, 19.484444078331531 ], [ 80.878195428276314, 19.507130031825508 ], [ 80.854630974739663, 19.526715399895746 ], [ 80.838094517048248, 19.543122667277252 ], [ 80.830963169314742, 19.547101751844362 ], [ 80.822384881656916, 19.548600369511401 ], [ 80.814736769985899, 19.548910426974597 ], [ 80.806365187903026, 19.551365058150903 ], [ 80.776496209832189, 19.573120836557329 ], [ 80.761199985590835, 19.580071316238215 ], [ 80.712934197854892, 19.592602850940803 ], [ 80.70135867666157, 19.597512112394039 ], [ 80.691540154654362, 19.607718207129547 ], [ 80.685028923645831, 19.622239285014981 ], [ 80.675727167374788, 19.676551214866659 ], [ 80.667665642755182, 19.689005235203407 ], [ 80.659087355097299, 19.696007391727729 ], [ 80.649785597926936, 19.701252549965197 ], [ 80.63852013509613, 19.705179959487506 ], [ 80.59996951657989, 19.713654893458564 ], [ 80.587153761936491, 19.718900050796659 ], [ 80.574544711968798, 19.728770250546624 ], [ 80.565553013160965, 19.73977733005972 ], [ 80.558111607064959, 19.755176907088579 ], [ 80.548499789733427, 19.792306423202824 ], [ 80.544572382009775, 19.802073269265971 ], [ 80.537751091739423, 19.810909939342192 ], [ 80.528449334569061, 19.815509142432965 ], [ 80.518424106986899, 19.816310126311233 ], [ 80.509225701704722, 19.814656479912625 ], [ 80.500750766834386, 19.810909939342192 ], [ 80.494342888613389, 19.805690619526441 ], [ 80.489795363265358, 19.799205226939645 ], [ 80.487624952929181, 19.793262436712038 ], [ 80.486901483416702, 19.788198147426549 ], [ 80.48721154177916, 19.783469753126607 ], [ 80.487935012191016, 19.778405462941741 ], [ 80.488245069654198, 19.774271348743749 ], [ 80.487314894566666, 19.771119086476627 ], [ 80.48421430914297, 19.768096015418731 ], [ 80.47883995969633, 19.766468207441783 ], [ 80.469538201626662, 19.766158149079271 ], [ 80.458686150845125, 19.767346707484531 ], [ 80.431607700734759, 19.773289495913495 ], [ 80.419825473966384, 19.777992051791724 ], [ 80.411453891883554, 19.78367645870156 ], [ 80.408973423184861, 19.791996364840369 ], [ 80.411040479834227, 19.799050198208075 ], [ 80.418171827567718, 19.805871487579047 ], [ 80.428197056049243, 19.810599880080357 ], [ 80.447213983338571, 19.816697699039533 ], [ 80.463026970618131, 19.824113266713876 ], [ 80.471811964750302, 19.830159409728932 ], [ 80.475429315010828, 19.833880112776964 ], [ 80.478943313383169, 19.838556830233525 ], [ 80.483180780368656, 19.846024074751252 ], [ 80.486074660217341, 19.854989936036699 ], [ 80.485041132342346, 19.866255397968242 ], [ 80.4807003107707, 19.871138820999757 ], [ 80.473362258361462, 19.873955186482643 ], [ 80.444423456277406, 19.878451035886592 ], [ 80.437188754857104, 19.880879827741861 ], [ 80.431814406309726, 19.883851222855633 ], [ 80.427473585637401, 19.888243720371399 ], [ 80.425096469726256, 19.892817084141083 ], [ 80.426646763337402, 19.901395371798966 ], [ 80.431194288685433, 19.911523953067949 ], [ 80.444836867427441, 19.931212673026433 ], [ 80.452278272624127, 19.938240667972419 ], [ 80.46023644355698, 19.941031195932904 ], [ 80.46716108571546, 19.938550727234254 ], [ 80.498270298135694, 19.923254502992897 ], [ 80.509535760067237, 19.919533799944869 ], [ 80.51883751813692, 19.918190211908716 ], [ 80.525968865870411, 19.918577786435659 ], [ 80.531136508842764, 19.920696519029089 ], [ 80.534960564678258, 19.929869085889603 ], [ 80.53868126772629, 19.944751898980932 ], [ 80.544779086685452, 19.998960476045109 ], [ 80.551807081631438, 20.024876207071255 ], [ 80.554287551229478, 20.031335761236388 ], [ 80.555527784679484, 20.03619334584624 ], [ 80.557181431078149, 20.048337306921152 ], [ 80.553150668768282, 20.073245348494023 ], [ 80.530619744905252, 20.134869493232479 ], [ 80.521834750773095, 20.138486843493006 ], [ 80.514806756726372, 20.140476385776591 ], [ 80.506951938581025, 20.14194916412259 ], [ 80.426336704075581, 20.146238307951531 ], [ 80.418171827567718, 20.148873806281127 ], [ 80.414244418944733, 20.155178330815314 ], [ 80.414141066157214, 20.165177720875072 ], [ 80.424062940951927, 20.197217109282175 ], [ 80.42416629373939, 20.211583157536662 ], [ 80.42323611775258, 20.222409368997141 ], [ 80.424373000213706, 20.234088242978025 ], [ 80.431194288685433, 20.246903998520676 ], [ 80.441116164379395, 20.253311875842364 ], [ 80.453828566235273, 20.257316798831194 ], [ 80.510465936054047, 20.262872016330441 ], [ 80.52121463404805, 20.264964911401528 ], [ 80.534237095165778, 20.269383246439642 ], [ 80.547362909070927, 20.27767731415673 ], [ 80.575061476805658, 20.3028695738717 ], [ 80.585603469224665, 20.310724392017043 ], [ 80.595525344019379, 20.315814521522949 ], [ 80.615885858445523, 20.322765001203827 ], [ 80.62239708855472, 20.325891425049232 ], [ 80.626737909227046, 20.333229478357733 ], [ 80.626427849965268, 20.342608750793197 ], [ 80.620950147731065, 20.361522325295081 ], [ 80.616505975170554, 20.371444200089737 ], [ 80.612888624910042, 20.385215969141647 ], [ 80.611545037773197, 20.401235662895484 ], [ 80.614438917621882, 20.464306749356975 ], [ 80.617126091895585, 20.473505153739833 ], [ 80.62405073405408, 20.489964097964727 ], [ 80.630561965062597, 20.500480251962014 ], [ 80.634902784835603, 20.512339993096187 ], [ 80.628908318663932, 20.523812161502001 ], [ 80.62498091004089, 20.527972114121773 ], [ 80.622500441342225, 20.534095771502617 ], [ 80.620950147731065, 20.541640530386129 ], [ 80.62270714691725, 20.58561717429313 ], [ 80.623637322904059, 20.591172389993798 ], [ 80.623740675691565, 20.596185004234535 ], [ 80.62239708855472, 20.600913398534484 ], [ 80.614645624096212, 20.606184394294353 ], [ 80.608134393087695, 20.609569200558148 ], [ 80.600796339779194, 20.612437241985102 ], [ 80.586016880374672, 20.616493841817313 ], [ 80.579505650265475, 20.617010605754839 ], [ 80.571444125645812, 20.616080431566669 ], [ 80.565139602011001, 20.613780829121932 ], [ 80.547259556283436, 20.601300971262781 ], [ 80.532480095979608, 20.593136094754922 ], [ 80.523695102746771, 20.589957994066136 ], [ 80.515013462301383, 20.588846950926037 ], [ 80.506435173744237, 20.590087185275358 ], [ 80.501060826096165, 20.592645169239173 ], [ 80.497030063786369, 20.596185004234535 ], [ 80.494859654349497, 20.601171780053559 ], [ 80.494549595087719, 20.609595038080496 ], [ 80.496203240586993, 20.618948472993619 ], [ 80.50302452995804, 20.633288682826443 ], [ 80.509122348917217, 20.64132436812508 ], [ 80.517183871738254, 20.648223170962577 ], [ 80.558938430264305, 20.667188422307841 ], [ 80.566069777098491, 20.672511094911098 ], [ 80.571030715395167, 20.682381292862367 ], [ 80.572994419256972, 20.697574164316215 ], [ 80.556768019928128, 20.780824897151259 ], [ 80.556561314353104, 20.8780282661915 ], [ 80.555837843941319, 20.898983058921026 ], [ 80.554700962379442, 20.907845567418967 ], [ 80.552117140893287, 20.919317734925524 ], [ 80.547569614645951, 20.927275905858377 ], [ 80.541161737324259, 20.933993842441847 ], [ 80.533927035903929, 20.937507839015545 ], [ 80.527415805794746, 20.937869574221448 ], [ 80.51883751813692, 20.936086738412254 ], [ 80.50323123643237, 20.930944932962284 ], [ 80.497960239773178, 20.930066432919542 ], [ 80.491242303189708, 20.930169785707044 ], [ 80.481320428394994, 20.931978460837282 ], [ 80.471708611962782, 20.93626760556554 ], [ 80.46333702987998, 20.942210394893774 ], [ 80.455688918208963, 20.950814520973321 ], [ 80.450107863187299, 20.959160265533793 ], [ 80.441012810692584, 20.978823147070553 ], [ 80.435328403782748, 20.999235338340149 ], [ 80.434604934270268, 21.013653062538758 ], [ 80.436258578870294, 21.024685981372894 ], [ 80.44731733612609, 21.061376247915515 ], [ 80.456825798871463, 21.125455023830281 ], [ 80.459616326831949, 21.135867825040059 ], [ 80.465197381853656, 21.147960110170906 ], [ 80.472742140737168, 21.157184352975488 ], [ 80.48452436660618, 21.167700506972775 ], [ 80.548499789733427, 21.206664537538352 ], [ 80.625601026765921, 21.24265717209078 ], [ 80.637383254433573, 21.251700547742072 ], [ 80.666425409305106, 21.279554145107678 ], [ 80.6784143407492, 21.30198171618326 ], [ 80.679034458373479, 21.351151842383612 ], [ 80.697948032875374, 21.398564968498473 ], [ 80.705802850121387, 21.434531765528554 ], [ 80.72140913272527, 21.473211575253966 ], [ 80.724199659786436, 21.497964586296568 ], [ 80.717585076889733, 21.585556138904675 ], [ 80.720582310425229, 21.602686875798664 ], [ 80.724303012573941, 21.615838528125547 ], [ 80.730504185219942, 21.714307969936836 ], [ 80.739805943289625, 21.741463935312364 ], [ 80.754068637857287, 21.75647593781428 ], [ 80.787761671763676, 21.761204332114229 ], [ 80.805124952654396, 21.774304308497047 ], [ 80.821558059356875, 21.802778021688304 ], [ 80.837887810573974, 21.846134547971012 ], [ 80.832926874075937, 21.907836208873899 ], [ 80.835097284412058, 21.950986030480916 ], [ 80.84439904158242, 21.977676906963659 ], [ 80.884913364859855, 22.057361965482297 ], [ 80.903413527312381, 22.085293077213741 ], [ 80.919019809916264, 22.097462876710374 ], [ 80.934729445307568, 22.099943346308347 ], [ 80.949818963973982, 22.092889512940637 ], [ 80.977724237283638, 22.052840278556001 ], [ 80.98547570174216, 22.049352117706057 ], [ 80.993330519887522, 22.051987616035653 ], [ 81.002218865907849, 22.063123888556614 ], [ 81.003355746570421, 22.077748318330233 ], [ 80.998498162859889, 22.09074494102617 ], [ 80.987336052816531, 22.108004869129381 ], [ 80.986405877729041, 22.114541938559622 ], [ 80.990746698401367, 22.118495184705008 ], [ 81.007489861667736, 22.123456122102304 ], [ 81.016068150224882, 22.129476426695696 ], [ 81.020822382047214, 22.140871079836469 ], [ 81.023509556320946, 22.193968613760482 ], [ 81.030640904054422, 22.210660101982107 ], [ 81.044076776322115, 22.225723782226734 ], [ 81.053688591854979, 22.233630276316202 ], [ 81.095443150381044, 22.256703803437741 ], [ 81.118904250230898, 22.294608465907963 ], [ 81.122211542128909, 22.311687526857835 ], [ 81.124071893203265, 22.337603257884034 ], [ 81.120764602204574, 22.3650692807227 ], [ 81.122521599592105, 22.400519313815263 ], [ 81.130893181674921, 22.422869371424323 ], [ 81.164792922055639, 22.465295721720164 ], [ 81.178022088748364, 22.478421536524646 ], [ 81.190011021091706, 22.483795885072023 ], [ 81.19941613194888, 22.481754665945054 ], [ 81.204997186071225, 22.472168687035257 ], [ 81.212128533804716, 22.452350775867608 ], [ 81.222050408599429, 22.447183131995924 ], [ 81.234866164142119, 22.444495957722264 ], [ 81.258223911204468, 22.454366156572853 ], [ 81.277344191281358, 22.4698432479675 ], [ 81.292743768310217, 22.474649155733907 ], [ 81.320338983257429, 22.477956448531241 ], [ 81.344523552619805, 22.497154242074597 ], [ 81.358062778574308, 22.497955226852234 ], [ 81.372635533303182, 22.492684231092365 ], [ 81.384211052697864, 22.481134548320703 ], [ 81.40291792162472, 22.448371690401181 ], [ 81.417800733816748, 22.437493801197942 ], [ 81.432063430183106, 22.440439357890053 ], [ 81.448186476724445, 22.449792791903796 ], [ 81.459658645130318, 22.462040107564913 ], [ 81.478262160370363, 22.472478746297096 ], [ 81.491491327063017, 22.481702989101617 ], [ 81.512265252639267, 22.501598416433744 ], [ 81.539550409223949, 22.519995226098779 ], [ 81.559600865287649, 22.523457545829043 ], [ 81.578204379628374, 22.530795600036861 ], [ 81.603319125876894, 22.533689479885592 ], [ 81.623989698665611, 22.54105337251513 ], [ 81.642283156442474, 22.550846056100564 ], [ 81.648794386551671, 22.560819606839342 ], [ 81.650241327375326, 22.575314846303108 ], [ 81.654995559197658, 22.591179511325372 ], [ 81.669568313027156, 22.609292101049611 ], [ 81.727342564407749, 22.647196764419103 ], [ 81.751527133770182, 22.651072496198701 ], [ 81.766409946861501, 22.66399160452891 ], [ 81.76672000522403, 22.682233385462322 ], [ 81.760828891839864, 22.702206326260917 ], [ 81.761759067826674, 22.716365668041128 ], [ 81.767960239573355, 22.725357366848975 ], [ 81.78522016767657, 22.744296779772522 ], [ 81.783463169389705, 22.780883694426954 ], [ 81.776848585593683, 22.812923081934681 ], [ 81.779329055191653, 22.835815741003611 ], [ 81.788527459574524, 22.85294647879692 ], [ 81.807130974814569, 22.861808987294914 ], [ 81.84578494701762, 22.872712714020505 ], [ 81.865318638244489, 22.881471868831674 ], [ 81.906453078246926, 22.912736110882797 ], [ 81.940249464940777, 22.945834866485875 ], [ 81.944590284713826, 22.963043117745652 ], [ 81.933428175569802, 22.999216620350747 ], [ 81.934151645981601, 23.017329210074987 ], [ 81.946140578324986, 23.042960720261018 ], [ 81.96598432791437, 23.055466417441206 ], [ 82.020451288296258, 23.071434434351655 ], [ 82.07078413268151, 23.100347398013977 ], [ 82.089801059970881, 23.103628852389587 ], [ 82.11109175038392, 23.101613470785018 ], [ 82.129385207261436, 23.096497503756773 ], [ 82.141684197967308, 23.113214830400064 ], [ 82.156567010159307, 23.14830312828672 ], [ 82.157290479671843, 23.170472316943854 ], [ 82.164628533879679, 23.210237332287015 ], [ 82.189743280128241, 23.28873383240045 ], [ 82.186332635442724, 23.309430242711525 ], [ 82.173723586374351, 23.326354274929823 ], [ 82.135276319746296, 23.349892890044824 ], [ 82.124941033801619, 23.362191880750679 ], [ 82.113262159820778, 23.368832302069045 ], [ 82.098172642053711, 23.371726182817035 ], [ 82.043395624208614, 23.363638821574334 ], [ 82.034403923602142, 23.367617906141444 ], [ 82.029959751041616, 23.376170356276923 ], [ 82.02592898963114, 23.387694199727484 ], [ 82.017350701973243, 23.39221588845248 ], [ 82.0053617696299, 23.39221588845248 ], [ 81.99140913342471, 23.400535793691912 ], [ 81.975492791559006, 23.420043647396362 ], [ 81.950584750885511, 23.466707465577024 ], [ 81.927537063084941, 23.495413722765072 ], [ 81.90717654775942, 23.505180568828159 ], [ 81.858187289611678, 23.507712714370253 ], [ 81.800619744705429, 23.530992947066856 ], [ 81.779018995929874, 23.536496486823406 ], [ 81.759485304702977, 23.543524481769389 ], [ 81.744602491611644, 23.542594305782583 ], [ 81.734060500091957, 23.53597972288588 ], [ 81.713699985665741, 23.518254705889937 ], [ 81.68558800678106, 23.507092596745903 ], [ 81.657682732571999, 23.487197171212465 ], [ 81.644143508416136, 23.482055364863182 ], [ 81.62833052023727, 23.487817287937439 ], [ 81.620268995617593, 23.500219631430802 ], [ 81.614067823870897, 23.516084296453066 ], [ 81.60104536275324, 23.536289781248396 ], [ 81.595154250268394, 23.549415595153558 ], [ 81.591433547220376, 23.561171983500223 ], [ 81.594534132644043, 23.566830552887659 ], [ 81.601458774802524, 23.57184316712846 ], [ 81.608590121636766, 23.579052029227736 ], [ 81.614687940595928, 23.591764431083611 ], [ 81.618925409380068, 23.627343655385339 ], [ 81.62543663858996, 23.635379339784659 ], [ 81.646934034577995, 23.642975776410928 ], [ 81.655615675922647, 23.648479316167478 ], [ 81.67070519368967, 23.668400580122629 ], [ 81.679593539710012, 23.677754015035752 ], [ 81.686208124405354, 23.690311388160005 ], [ 81.685898065143519, 23.706511949067188 ], [ 81.680937127746219, 23.724831244366438 ], [ 81.66512413866802, 23.74787893306631 ], [ 81.639492629381309, 23.806557522011978 ], [ 81.62491987465242, 23.824411729317827 ], [ 81.622025994803764, 23.833791001753294 ], [ 81.630397576886637, 23.846219184567698 ], [ 81.629260695324746, 23.858285631276821 ], [ 81.619545526105099, 23.867561550025464 ], [ 81.641249627668159, 23.885312405443127 ], [ 81.681867302833709, 23.885131537390517 ], [ 81.701711053322384, 23.870532945139296 ], [ 81.74491255087348, 23.824876817311232 ], [ 81.778192172730527, 23.801880805454797 ], [ 81.80868126842573, 23.794749456821926 ], [ 81.836069776898597, 23.795395412868 ], [ 81.860977817572163, 23.805213934875148 ], [ 81.910173781294901, 23.832137356253945 ], [ 81.936942173042809, 23.840663967068387 ], [ 82.004948357580574, 23.836400662560489 ], [ 82.030269810303466, 23.82725393322243 ], [ 82.077398715578212, 23.801364041517271 ], [ 82.10768110479907, 23.798573513556786 ], [ 82.203592564445245, 23.800485541474522 ], [ 82.242970005261483, 23.788367417921954 ], [ 82.262503697387658, 23.785576890860792 ], [ 82.415362583416453, 23.783070583740422 ], [ 82.498664992195572, 23.772399400112189 ], [ 82.531737909376972, 23.775370795226017 ], [ 82.544657016807804, 23.782863878165411 ], [ 82.553028598890691, 23.794000148887726 ], [ 82.567911411082704, 23.804128730156773 ], [ 82.612146438307406, 23.820820217479021 ], [ 82.643048944253323, 23.837072455229581 ], [ 82.650800408711831, 23.844823919688107 ], [ 82.653590935772996, 23.856761176087382 ], [ 82.653900995034846, 23.870507106717575 ], [ 82.657725050870312, 23.884537258187887 ], [ 82.670024041576184, 23.895570177022016 ], [ 82.69162479035171, 23.905104478189109 ], [ 82.719633417348277, 23.908437608508788 ], [ 82.736686638977162, 23.914070339474559 ], [ 82.768105909759853, 23.928953152565892 ], [ 82.779061314228201, 23.939004218569828 ], [ 82.784228957200554, 23.950295518023719 ], [ 82.784539015563084, 23.963137111988086 ], [ 82.786502720324208, 23.974195868344619 ], [ 82.786502720324208, 23.980862128084702 ], [ 82.800868767679432, 23.998716336289871 ], [ 82.839419387094992, 23.989647122216915 ], [ 82.894093052152556, 23.942156479937577 ], [ 82.912283156242594, 23.93071015085274 ], [ 82.936467727403667, 23.920168158433736 ], [ 82.964372999814017, 23.91391530984367 ], [ 82.97543175706987, 23.913760281112044 ], [ 83.005197382353259, 23.917791043421911 ], [ 83.041474236846483, 23.916964220222546 ], [ 83.08880984859556, 23.91104726841666 ], [ 83.104002720049408, 23.912209988400203 ], [ 83.116405064442105, 23.91510386824887 ], [ 83.145963983251178, 23.927764594160688 ], [ 83.15619591730767, 23.930865180483689 ], [ 83.183584425780538, 23.936446235505336 ], [ 83.206322056117969, 23.944016831911249 ], [ 83.215003696563301, 23.948977769308605 ], [ 83.221308221097473, 23.954222927546024 ], [ 83.227716099318485, 23.96130259933545 ], [ 83.248696729570369, 23.993910426724817 ], [ 83.25179731589337, 23.999956569739876 ], [ 83.253037551142015, 24.005615139127368 ], [ 83.255001255003862, 24.034450588423901 ], [ 83.259962193300552, 24.047783107904078 ], [ 83.269160597683396, 24.059151923522446 ], [ 83.301923455602932, 24.077574570709825 ], [ 83.309778272848959, 24.084318345715072 ], [ 83.314945916720646, 24.09356842694131 ], [ 83.326211378652133, 24.124470933786533 ], [ 83.337063430332975, 24.140232245121972 ], [ 83.390600213828733, 24.124780992149049 ], [ 83.442276646250193, 24.121809597035277 ], [ 83.451475050633036, 24.119354966758287 ], [ 83.459226515990892, 24.114626573357661 ], [ 83.475246209744711, 24.101319892299152 ], [ 83.51069624193795, 24.082897244212457 ], [ 83.517517531308997, 24.07522329411972 ], [ 83.521754999193817, 24.065895698527633 ], [ 83.523305291905643, 24.052563178148141 ], [ 83.522581822393107, 24.012565618808246 ], [ 83.523822055843127, 23.999491481746468 ], [ 83.526922642166113, 23.984505316766953 ], [ 83.532503697187821, 23.971250312551881 ], [ 83.540358514433862, 23.956729233767128 ], [ 83.556791620237036, 23.935800279459325 ], [ 83.696628046047451, 23.818701483986271 ], [ 83.71182091660198, 23.800976466990328 ], [ 83.729804315116994, 23.761263129389867 ], [ 83.733835077426804, 23.749300035468245 ], [ 83.735282017351196, 23.738344630999901 ], [ 83.733214959802496, 23.729068712251259 ], [ 83.722052849759152, 23.700672512526403 ], [ 83.719779086635498, 23.692740180015274 ], [ 83.719262322697986, 23.685298773919268 ], [ 83.720812616309132, 23.676152045480475 ], [ 83.731354607828834, 23.65488719348917 ], [ 83.743343540172177, 23.622537746719612 ], [ 83.752541944555034, 23.605768744132202 ], [ 83.761533645161521, 23.596518662905957 ], [ 83.771868931106255, 23.58959402074742 ], [ 83.780860629914102, 23.586493435323739 ], [ 83.788198684121909, 23.585459907448747 ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Madhya Pradesh", "admin": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.395969680056666, 26.824176948107656 ], [ 78.418707310394026, 26.82479706483263 ], [ 78.428112421251214, 26.822549140130711 ], [ 78.433486769798535, 26.816683865168208 ], [ 78.438344354408386, 26.808699855813693 ], [ 78.446095818866908, 26.79996653942424 ], [ 78.461598748683272, 26.792266750909782 ], [ 78.498702427275177, 26.788210151077571 ], [ 78.518029412927007, 26.78319753683683 ], [ 78.563504672702422, 26.758496201738289 ], [ 78.583245070403592, 26.755886541830417 ], [ 78.595234002747006, 26.758392848950784 ], [ 78.601745232856132, 26.764335639178391 ], [ 78.606602818365303, 26.771131090127703 ], [ 78.61425093003632, 26.776376248365118 ], [ 78.622519159331688, 26.777306423452664 ], [ 78.642569615395402, 26.775136013116477 ], [ 78.655282017251224, 26.776376248365118 ], [ 78.69321251814317, 26.797873643453833 ], [ 78.710059035096364, 26.798881333806488 ], [ 78.724115024988322, 26.776376248365118 ], [ 78.73424360535806, 26.785445462438126 ], [ 78.745405715401418, 26.789217841430222 ], [ 78.75450076699677, 26.785729682378921 ], [ 78.75832482283225, 26.772965602780339 ], [ 78.761942173092763, 26.76523997674348 ], [ 78.770830520012439, 26.763560491923151 ], [ 78.781992629156463, 26.763844712763266 ], [ 78.792431267888659, 26.762087714476415 ], [ 78.812171664690524, 26.747669990277807 ], [ 78.842350702023211, 26.711935737244453 ], [ 78.861264275625771, 26.7012645527169 ], [ 78.873459914443444, 26.700566920726768 ], [ 78.905085890801146, 26.708085842087936 ], [ 78.919348586268185, 26.707827460568801 ], [ 78.926066521952393, 26.70622549101358 ], [ 78.935781691172039, 26.694443264245244 ], [ 78.93774539593322, 26.686950182205116 ], [ 78.93774539593322, 26.677725938501219 ], [ 78.938468866345076, 26.675943101792708 ], [ 78.938158807083227, 26.668139960490741 ], [ 78.945703565966753, 26.635583808146233 ], [ 78.959966262333097, 26.596671454424033 ], [ 78.974435663375104, 26.571582545697876 ], [ 79.028075798759048, 26.497556057466049 ], [ 79.040994907988562, 26.467997137757656 ], [ 79.049263137283887, 26.440660305228896 ], [ 79.052053664345095, 26.411488959148123 ], [ 79.039651319952426, 26.375057074124634 ], [ 79.049366490071392, 26.364540921026666 ], [ 79.053293897795115, 26.36226715700365 ], [ 79.057738072154265, 26.35862396922078 ], [ 79.060838657577946, 26.355084133326095 ], [ 79.061148715940462, 26.349373887994481 ], [ 79.05856489535357, 26.343043525038631 ], [ 79.036344028953735, 26.310073961544042 ], [ 79.028385858020883, 26.301108100258595 ], [ 79.019290806425516, 26.293795885371818 ], [ 79.008232049169678, 26.289300035068543 ], [ 78.980636835121786, 26.28400320088701 ], [ 78.971128370577773, 26.281290188191626 ], [ 78.963273553331746, 26.27808624908112 ], [ 78.955832147235739, 26.273228665370588 ], [ 78.942292922180556, 26.261523952968041 ], [ 78.938158807083227, 26.254599310809503 ], [ 78.935781691172039, 26.244780788802355 ], [ 78.938572219132581, 26.230466417391249 ], [ 78.944359978829922, 26.21966604345311 ], [ 78.955625440761409, 26.203904731218355 ], [ 78.956555616748275, 26.197806912259175 ], [ 78.954075148049569, 26.191967474819073 ], [ 78.945290154816732, 26.184319363148056 ], [ 78.927100050726708, 26.178066515457314 ], [ 78.921312290130032, 26.172666326689576 ], [ 78.918418410281376, 26.163442083885055 ], [ 78.919968702993216, 26.144657701491717 ], [ 78.924826287603068, 26.133185533085843 ], [ 78.932681104849024, 26.124658922271401 ], [ 78.949010857864764, 26.115305488257658 ], [ 78.954075148049569, 26.109982814755078 ], [ 78.953144972962079, 26.100319322378816 ], [ 78.946530389166057, 26.088252874770312 ], [ 78.914387647971509, 26.04275177747251 ], [ 78.893407016820319, 26.000041205437235 ], [ 78.890513136971649, 25.978931383076819 ], [ 78.886792433923617, 25.969242052278837 ], [ 78.879661086190126, 25.956090399951954 ], [ 78.835219354289706, 25.905731716245665 ], [ 78.823953892358176, 25.876534531743225 ], [ 78.808347608855044, 25.84154958844271 ], [ 78.790984327964324, 25.826795966560603 ], [ 78.77455122306047, 25.815633857416564 ], [ 78.760908645217782, 25.808760891202148 ], [ 78.748816359187558, 25.800544337850901 ], [ 78.739824660379711, 25.789795640756207 ], [ 78.733313430270499, 25.774163519730614 ], [ 78.729592727222538, 25.760701809041219 ], [ 78.727835728036368, 25.750185655043932 ], [ 78.727112257624555, 25.740212104305154 ], [ 78.728455844761399, 25.730522773507172 ], [ 78.731866490346178, 25.720781764966485 ], [ 78.744888950564572, 25.698069973050785 ], [ 78.750056594436259, 25.686106879129163 ], [ 78.75357059100989, 25.674272976416713 ], [ 78.75450076699677, 25.665100409556256 ], [ 78.754397414209265, 25.658124091453654 ], [ 78.753467238222399, 25.653938300412214 ], [ 78.751710239935548, 25.649235745433252 ], [ 78.747576124838218, 25.642724514424796 ], [ 78.714503207656875, 25.625929674314982 ], [ 78.61611128111069, 25.607610379015735 ], [ 78.582624952779312, 25.590350450013254 ], [ 78.572082961259625, 25.582443955923786 ], [ 78.558440383416936, 25.575545152187026 ], [ 78.546451451073537, 25.572573757073197 ], [ 78.526400995009837, 25.572935492279093 ], [ 78.495705193739624, 25.578258164882406 ], [ 78.481752556635143, 25.577663886579096 ], [ 78.460668572696406, 25.574640815521203 ], [ 78.370544875445589, 25.552678331539759 ], [ 78.35669559112857, 25.539604194477981 ], [ 78.346567009859584, 25.486429145288803 ], [ 78.330030552168225, 25.464776720569201 ], [ 78.261921013943592, 25.411705024167528 ], [ 78.254893019896926, 25.403979397231346 ], [ 78.251172315949574, 25.397829902328105 ], [ 78.251792433573925, 25.388424791470918 ], [ 78.256443311709432, 25.37672007906837 ], [ 78.272256300787589, 25.356204535011269 ], [ 78.284245233130932, 25.344680691560647 ], [ 78.297681105398652, 25.327808336185736 ], [ 78.348117302571424, 25.228253688756688 ], [ 78.360519646964107, 25.210451158294283 ], [ 78.364757114848928, 25.196756904507531 ], [ 78.366307407560768, 25.186008206513513 ], [ 78.359589470977227, 25.15892975550377 ], [ 78.345533481984532, 25.139241033746707 ], [ 78.342226190086578, 25.130533555778978 ], [ 78.338712192613556, 25.114720566700779 ], [ 78.335094842353016, 25.087978014273908 ], [ 78.330443964217508, 25.081983547202917 ], [ 78.330340611430003, 25.066377265498367 ], [ 78.340675897374723, 25.045810045497198 ], [ 78.336541783176685, 25.022994899894677 ], [ 78.324862909195843, 25.00216929837438 ], [ 78.312667271277505, 24.987544866802118 ], [ 78.257270134908751, 24.940209255053045 ], [ 78.225954216913507, 24.926334133213683 ], [ 78.180375604350601, 24.892511908098069 ], [ 78.169213495206563, 24.87768077185012 ], [ 78.169110142419115, 24.865459296409366 ], [ 78.173657667767117, 24.854478054418674 ], [ 78.181925897062442, 24.846571560329203 ], [ 78.193088007105786, 24.843548489271363 ], [ 78.197842238028827, 24.839440211696395 ], [ 78.224920689038512, 24.79411998155188 ], [ 78.227091099374704, 24.77329437913226 ], [ 78.226884392900359, 24.752727159131094 ], [ 78.230708448735854, 24.734304511044339 ], [ 78.241147089266718, 24.719034125224702 ], [ 78.2523091984107, 24.707226060034596 ], [ 78.261300897218561, 24.692653307104415 ], [ 78.264814894691582, 24.669140530411134 ], [ 78.263781365917268, 24.662706813768402 ], [ 78.257993605320593, 24.644930120828402 ], [ 78.260577426806762, 24.639039008343556 ], [ 78.270085891350774, 24.628677883077835 ], [ 78.272256300787589, 24.624440416092281 ], [ 78.270395948813913, 24.603175564100976 ], [ 78.264814894691582, 24.583486843243172 ], [ 78.254272902272575, 24.564857490480787 ], [ 78.228848097661555, 24.532740586808639 ], [ 78.223887160264198, 24.51922720017512 ], [ 78.227401157737219, 24.518193671400802 ], [ 78.242283969929233, 24.493001409887135 ], [ 78.244351026578542, 24.487885443758213 ], [ 78.254272902272575, 24.482071844739831 ], [ 78.263264601979728, 24.480650743237213 ], [ 78.26987918487643, 24.477679348123381 ], [ 78.272256300787589, 24.467421576544488 ], [ 78.277527297446767, 24.453107205133389 ], [ 78.291996697589454, 24.441919257567683 ], [ 78.309256625692669, 24.430834661890113 ], [ 78.334991489565525, 24.420240994426301 ], [ 78.344396600422698, 24.414737453770435 ], [ 78.350494419381889, 24.407967841242844 ], [ 78.352148064881234, 24.400733140721847 ], [ 78.350184361019373, 24.392568264213988 ], [ 78.331890904141844, 24.363706977395047 ], [ 78.329203728968849, 24.353681748913566 ], [ 78.330133904955659, 24.342028713354402 ], [ 78.335714959977366, 24.331021632941994 ], [ 78.345843540347047, 24.318903510288742 ], [ 78.35648888465424, 24.309162503546695 ], [ 78.370544875445589, 24.302470405384888 ], [ 78.385531040425107, 24.301230170136243 ], [ 78.408061965187514, 24.308439032235519 ], [ 78.423461542216373, 24.318257555142047 ], [ 78.435037061611055, 24.328076077149198 ], [ 78.442375115818876, 24.337377835218884 ], [ 78.446199171654399, 24.345568549249144 ], [ 78.447439406003738, 24.353836778544455 ], [ 78.447956170840584, 24.363396918133269 ], [ 78.449196405189909, 24.373680528133825 ], [ 78.452710401763554, 24.384480902971287 ], [ 78.457361280798395, 24.393110867472551 ], [ 78.463252395081938, 24.401766669496165 ], [ 78.468833449204269, 24.408045356507948 ], [ 78.477721796123916, 24.411636868346754 ], [ 78.489400669205494, 24.410784206725733 ], [ 78.509244418794864, 24.403006903845487 ], [ 78.535806104967705, 24.388589178747562 ], [ 78.590376418137154, 24.345361842774818 ], [ 78.610840285350818, 24.332907823337333 ], [ 78.640502556947382, 24.304744168508531 ], [ 78.655902133976255, 24.294589748817824 ], [ 78.673265414866961, 24.287070828356029 ], [ 78.688768344683339, 24.282910874836993 ], [ 78.720911085877887, 24.280120347775828 ], [ 78.736207310119241, 24.280430406138287 ], [ 78.746645948851409, 24.279422715785692 ], [ 78.75140018067377, 24.276580511881086 ], [ 78.753777296584914, 24.269965928984384 ], [ 78.75408735494743, 24.260328274130526 ], [ 78.755844354133586, 24.249192003408208 ], [ 78.762148878667787, 24.235652778353021 ], [ 78.77537804625976, 24.224568183574771 ], [ 78.792121210425464, 24.217385158997892 ], [ 78.809794548779365, 24.220227362902442 ], [ 78.825814243432532, 24.230149237697155 ], [ 78.851652460092893, 24.254514675112144 ], [ 78.866845330647422, 24.272136339320578 ], [ 78.879661086190126, 24.296372586425711 ], [ 78.889066197047313, 24.324148668526217 ], [ 78.901985305377465, 24.346369534026731 ], [ 78.935678339283854, 24.375463364842396 ], [ 78.946943801215397, 24.384506741393004 ], [ 78.955005324036421, 24.392542425792264 ], [ 78.964617141367953, 24.405409858178409 ], [ 78.972368604927155, 24.422566433494065 ], [ 78.978466423886331, 24.440033067172287 ], [ 78.978259719210641, 24.467421576544488 ], [ 78.959862908646286, 24.47705923139841 ], [ 78.93888227659572, 24.48028900803126 ], [ 78.928546990651043, 24.480650743237213 ], [ 78.9203821150425, 24.483131211935863 ], [ 78.916247999945185, 24.486800239039773 ], [ 78.914180943295875, 24.494680893808201 ], [ 78.913767531246521, 24.498091539392981 ], [ 78.913560825671524, 24.50054617056929 ], [ 78.913767531246521, 24.502794094371943 ], [ 78.914801060020849, 24.508116766975199 ], [ 78.921622349391882, 24.523361314373116 ], [ 78.922449171691866, 24.533309028488869 ], [ 78.91314741362217, 24.547545885534184 ], [ 78.893407016820319, 24.571291205324822 ], [ 78.887825961798669, 24.582711696887255 ], [ 78.883795201287441, 24.598602200331239 ], [ 78.878730910203316, 24.613200792582514 ], [ 78.87108279763298, 24.625732327285046 ], [ 78.856510043803411, 24.638599757872491 ], [ 78.842040642761432, 24.644645900887607 ], [ 78.827054477781843, 24.647100532063853 ], [ 78.814135370351011, 24.646273708864548 ], [ 78.791501091901793, 24.642087917823115 ], [ 78.762148878667787, 24.632166043028455 ], [ 78.750366651899384, 24.629840603061378 ], [ 78.740134718742226, 24.631003323044915 ], [ 78.733106723796226, 24.635421658083029 ], [ 78.726802199262053, 24.643405667437602 ], [ 78.71977420431601, 24.656402289234215 ], [ 78.715123326180489, 24.668701279940077 ], [ 78.715433383643685, 24.685108547321583 ], [ 78.719464145953538, 24.693609321512948 ], [ 78.731143019934379, 24.708156236021463 ], [ 78.734346958145565, 24.7158301861142 ], [ 78.736207310119241, 24.725545356233166 ], [ 78.735793898069886, 24.737637641364014 ], [ 78.7315564310844, 24.768591824153358 ], [ 78.732073195021869, 24.81491974554978 ], [ 78.729592727222538, 24.830526028153653 ], [ 78.723701612939053, 24.848716132243673 ], [ 78.709748976733849, 24.87372752480541 ], [ 78.697553338815496, 24.888636176318464 ], [ 78.659106073086761, 24.9243187534077 ], [ 78.648874139030269, 24.940726019889887 ], [ 78.640192498584881, 24.964109605373942 ], [ 78.619521925796207, 25.064671943155638 ], [ 78.617868280296861, 25.108881130159997 ], [ 78.609806756576504, 25.136321316375639 ], [ 78.57373660675897, 25.21215647973775 ], [ 78.561851027203076, 25.226057440898156 ], [ 78.548621861409728, 25.2377621533007 ], [ 78.52888146370853, 25.252076523812484 ], [ 78.521646763187547, 25.258484402033496 ], [ 78.51585900259083, 25.266210028969617 ], [ 78.51358524036651, 25.273367214225509 ], [ 78.51337853389218, 25.281092841161687 ], [ 78.51575564980331, 25.289231879247829 ], [ 78.520199823263212, 25.298817857258307 ], [ 78.530431757319704, 25.315664374211501 ], [ 78.555029737832101, 25.347626248252702 ], [ 78.562264439252417, 25.354421699202017 ], [ 78.575596957833255, 25.364421088362516 ], [ 78.579317660881301, 25.369924628119058 ], [ 78.580454543342441, 25.375169786356533 ], [ 78.57869754415627, 25.381965237305842 ], [ 78.576733840294466, 25.387494615484112 ], [ 78.5758036643076, 25.394031684014973 ], [ 78.577767368169461, 25.401008002117575 ], [ 78.582108188841787, 25.406744085870848 ], [ 78.588516066163479, 25.410826524124779 ], [ 78.597094353821305, 25.414004624813568 ], [ 78.611667107650845, 25.415425727215499 ], [ 78.631510858139549, 25.415503241581288 ], [ 78.652284783715729, 25.409457099465552 ], [ 78.660863072272932, 25.405891425149147 ], [ 78.664893832784088, 25.401628118842602 ], [ 78.670164829443294, 25.388657335467649 ], [ 78.675229119628085, 25.382507838765715 ], [ 78.691042107806965, 25.373154404751965 ], [ 78.698793573164821, 25.366720689008556 ], [ 78.710989211083174, 25.353517360737609 ], [ 78.718844029228507, 25.347807115406052 ], [ 78.727525668774518, 25.346386013004057 ], [ 78.736207310119241, 25.351734524029034 ], [ 78.73827436676855, 25.359796046850075 ], [ 78.737447543569232, 25.368296821041433 ], [ 78.732073195021869, 25.380802517322305 ], [ 78.730316196735018, 25.387882188212409 ], [ 78.73145307829688, 25.395917874410369 ], [ 78.735173781344869, 25.402739162882025 ], [ 78.745715772864557, 25.41679515187473 ], [ 78.748816359187558, 25.426148586787797 ], [ 78.747886184100068, 25.433745022514749 ], [ 78.745199008927088, 25.439300239114736 ], [ 78.726182081637702, 25.455552475965984 ], [ 78.722564732276552, 25.461727810190265 ], [ 78.724115024988322, 25.484413764583557 ], [ 78.726905552049558, 25.49446482968812 ], [ 78.73424360535806, 25.501983751049231 ], [ 78.744165480152716, 25.506686306028193 ], [ 78.754810826258549, 25.508314114005138 ], [ 78.763079054654597, 25.510872097069576 ], [ 78.781889276368972, 25.524023749396513 ], [ 78.792431267888659, 25.509657701141968 ], [ 78.795531854211646, 25.503895778967031 ], [ 78.797185499711006, 25.499761663869656 ], [ 78.800286086034006, 25.477618312734926 ], [ 78.799252557259621, 25.43893850390878 ], [ 78.800802849971475, 25.426872057199656 ], [ 78.806693964255018, 25.420645046131931 ], [ 78.81692589741219, 25.417182726401673 ], [ 78.835529412652235, 25.419740709466165 ], [ 78.846381464333078, 25.425941881212843 ], [ 78.853099400017214, 25.434029242455544 ], [ 78.85475304641588, 25.444726264505498 ], [ 78.851859164768584, 25.481261502316435 ], [ 78.852479283292254, 25.491002509058539 ], [ 78.853512811167249, 25.497255356749289 ], [ 78.85526981035342, 25.50208710383674 ], [ 78.861781039563297, 25.515032049689289 ], [ 78.869739211395412, 25.525057278170827 ], [ 78.879351026928276, 25.533868109825384 ], [ 78.89113325369668, 25.538105576810885 ], [ 78.901158482178147, 25.536193548893145 ], [ 78.91314741362217, 25.525341498111622 ], [ 78.916971470357026, 25.514360256120874 ], [ 78.919141879793855, 25.504593410957106 ], [ 78.919348586268185, 25.485343940570367 ], [ 78.91748823429451, 25.474078476840184 ], [ 78.91314741362217, 25.462890530173802 ], [ 78.908496534587343, 25.454467271247545 ], [ 78.906119418676184, 25.446586615579797 ], [ 78.909116652211694, 25.441393134185766 ], [ 78.916661411095205, 25.43798249039957 ], [ 78.928857049013558, 25.43893850390878 ], [ 78.939399042331885, 25.441858222179171 ], [ 78.948184034665402, 25.443098456528499 ], [ 78.953144972962079, 25.442349147694976 ], [ 78.958105910359436, 25.43777578392524 ], [ 78.959966262333097, 25.433331611364729 ], [ 78.959966262333097, 25.426536160415473 ], [ 78.957485792735085, 25.397726549540604 ], [ 78.95490197124893, 25.385711777876217 ], [ 78.936608514371386, 25.357212226263183 ], [ 78.934128045672693, 25.346489365791562 ], [ 78.934231397560865, 25.337239285464644 ], [ 78.937228631995694, 25.321839708435782 ], [ 78.937538690358195, 25.312796331885174 ], [ 78.935471632809566, 25.304063015495725 ], [ 78.929167108275394, 25.296079006141209 ], [ 78.923069289316217, 25.291402289583964 ], [ 78.89919477741698, 25.277010402907759 ], [ 78.885035434737446, 25.265538235401202 ], [ 78.87501020715527, 25.252283230286817 ], [ 78.867672153846783, 25.23773631397966 ], [ 78.863124627599433, 25.221070665079132 ], [ 78.862091098825076, 25.206833808033814 ], [ 78.863951450798751, 25.191615099057564 ], [ 78.869842564182917, 25.180504665857594 ], [ 78.879454379715796, 25.174794420526034 ], [ 78.89113325369668, 25.175388698829348 ], [ 78.907669712287358, 25.186395779241813 ], [ 78.916868116670216, 25.196188462827244 ], [ 78.930407341725399, 25.213784287714699 ], [ 78.937848748720725, 25.219649563576461 ], [ 78.947770624414758, 25.224145412980413 ], [ 78.961516555044952, 25.225747382535641 ], [ 78.972988722551435, 25.228176174390903 ], [ 78.983427362182951, 25.237374578773764 ], [ 78.986114535557348, 25.247503160042804 ], [ 78.986424594819127, 25.258406886768391 ], [ 78.985804478094153, 25.268483792093313 ], [ 78.986734654080962, 25.276235256551836 ], [ 78.990868768278943, 25.280782781899852 ], [ 78.99862023273748, 25.282694809817595 ], [ 79.01432986812884, 25.281247869893257 ], [ 79.02156456864985, 25.277397976535379 ], [ 79.026215447684677, 25.274142361480749 ], [ 79.028385858020883, 25.271403510363704 ], [ 79.032106561068915, 25.267760322580777 ], [ 79.043372023000401, 25.262825221806501 ], [ 79.045852491699108, 25.260422268372956 ], [ 79.047402785310268, 25.256934109321655 ], [ 79.043992140624752, 25.250552070421683 ], [ 79.017843865601876, 25.225902411267267 ], [ 79.011332634593359, 25.213990994189025 ], [ 79.008232049169678, 25.202932236933172 ], [ 79.008748814006523, 25.191589259736524 ], [ 79.01215945779272, 25.184070339274733 ], [ 79.017223748876845, 25.17838593236484 ], [ 79.024045038247877, 25.174639390895145 ], [ 79.0348970890294, 25.176396389181996 ], [ 79.051536900407584, 25.181279812213511 ], [ 79.084713168577807, 25.195258286840435 ], [ 79.100319452080981, 25.196731065186494 ], [ 79.109001091626993, 25.195025742843704 ], [ 79.11189497327436, 25.186008206513513 ], [ 79.115925733785545, 25.153813788475524 ], [ 79.119233025683556, 25.147845159826254 ], [ 79.125847608580187, 25.143840236837427 ], [ 79.133909133199879, 25.145364692026867 ], [ 79.142797479220221, 25.150713202152524 ], [ 79.152409295652419, 25.166138616703787 ], [ 79.160160760110927, 25.174691066839266 ], [ 79.171529575729309, 25.181667384941811 ], [ 79.182381625611441, 25.182287503465481 ], [ 79.192096795730478, 25.180323797804981 ], [ 79.209976840558724, 25.172934068552419 ], [ 79.21855512911587, 25.17453603810764 ], [ 79.226306593574392, 25.175233670097775 ], [ 79.234678175657194, 25.175078640466886 ], [ 79.245530227338037, 25.172313950928068 ], [ 79.268991327187933, 25.164123236897861 ], [ 79.279533318707635, 25.164278266528751 ], [ 79.286768020127951, 25.169032498351097 ], [ 79.290488723175983, 25.177507433221418 ], [ 79.290695427851674, 25.188772895152962 ], [ 79.287284784065477, 25.205567735262768 ], [ 79.263100213803767, 25.274736639784063 ], [ 79.261859978555137, 25.287190660120864 ], [ 79.261963332241962, 25.295923977409579 ], [ 79.264340448153106, 25.308946438527297 ], [ 79.275915969346485, 25.334035346354135 ], [ 79.302477654620006, 25.364576117094082 ], [ 79.311572707114678, 25.364550279571738 ], [ 79.317567173286349, 25.362173162761216 ], [ 79.323561638558701, 25.355765286338844 ], [ 79.324801873807402, 25.349796657689573 ], [ 79.321701288383721, 25.339358018058075 ], [ 79.29699995328518, 25.302848619568117 ], [ 79.292865839087113, 25.293314317501707 ], [ 79.291005487113509, 25.287371528173473 ], [ 79.289558547189174, 25.279542548449847 ], [ 79.290695427851674, 25.269698188020918 ], [ 79.294519483687139, 25.259414578020362 ], [ 79.303511184293697, 25.248459174451337 ], [ 79.310332472765339, 25.243808295416496 ], [ 79.317567173286349, 25.242413032335541 ], [ 79.323871697820536, 25.244428412141467 ], [ 79.328522576855377, 25.247968248036209 ], [ 79.332553339165244, 25.253316759061128 ], [ 79.335860630163864, 25.259569606751935 ], [ 79.340614861986225, 25.26639089612291 ], [ 79.348056268082232, 25.273496406334058 ], [ 79.358908318863755, 25.278715725250485 ], [ 79.369967076119607, 25.280989488374185 ], [ 79.379475538864966, 25.279671738759696 ], [ 79.389087355297178, 25.275537625461023 ], [ 79.39776899574251, 25.274839993470888 ], [ 79.404900344375307, 25.277863064528781 ], [ 79.422573683628542, 25.293831082338549 ], [ 79.430325148087078, 25.299334622095099 ], [ 79.437973259758095, 25.302202664421426 ], [ 79.441797315593575, 25.297267564546466 ], [ 79.439626906156761, 25.286337999399105 ], [ 79.424744093964691, 25.25719249084073 ], [ 79.390327589646503, 25.214791978067289 ], [ 79.37771853967881, 25.187920234431253 ], [ 79.368726840870963, 25.175001126101044 ], [ 79.344232212246752, 25.154201362103144 ], [ 79.339064569274385, 25.147405911153832 ], [ 79.335860630163864, 25.138362535502605 ], [ 79.333070103102713, 25.127200426358563 ], [ 79.330899692766579, 25.11193004053893 ], [ 79.330899692766579, 25.09934682899296 ], [ 79.332553339165244, 25.088985703727239 ], [ 79.337410922875719, 25.081105048059491 ], [ 79.347126092095422, 25.075213935574645 ], [ 79.357668085413735, 25.071105657999674 ], [ 79.391981236045169, 25.07412872995689 ], [ 79.396218703030669, 25.085497545575258 ], [ 79.396011996556339, 25.099476020202125 ], [ 79.393531528757009, 25.113945421244178 ], [ 79.392601352770143, 25.130740261353932 ], [ 79.39384158711951, 25.136812241891441 ], [ 79.399009230091821, 25.14133392971706 ], [ 79.408621047423352, 25.144667060036792 ], [ 79.426914504300882, 25.145080471186752 ], [ 79.43807661344492, 25.141643988978892 ], [ 79.445518020440247, 25.136347153898036 ], [ 79.448205193814587, 25.130223497416459 ], [ 79.449548780951417, 25.124435736819798 ], [ 79.450789016200062, 25.117304389086254 ], [ 79.453269483999449, 25.111103217339569 ], [ 79.458540479759264, 25.105987250311323 ], [ 79.468152297090768, 25.103842678396855 ], [ 79.479521111809831, 25.105548000739638 ], [ 79.493783807276813, 25.113997097188243 ], [ 79.500811802222856, 25.120224107356645 ], [ 79.505876092407703, 25.127562161564462 ], [ 79.522205845423386, 25.158438829088645 ], [ 79.531197544231233, 25.168722439089258 ], [ 79.541636183862721, 25.176551418812885 ], [ 79.553728468993583, 25.179031887511591 ], [ 79.56003299262845, 25.179367784295771 ], [ 79.566130813386252, 25.178360093943176 ], [ 79.578223097617794, 25.174639390895145 ], [ 79.61729048007156, 25.157353624370266 ], [ 79.648503046178561, 25.149266262228188 ], [ 79.661112095246935, 25.148077703822928 ], [ 79.736663038668254, 25.152341010129469 ], [ 79.762501255328615, 25.156914373899205 ], [ 79.767565546412783, 25.156190904386726 ], [ 79.773560011685134, 25.15355540605713 ], [ 79.77934777228181, 25.148852851078168 ], [ 79.791853468562678, 25.133840846777609 ], [ 79.801671990569886, 25.131928818859873 ], [ 79.814487746112533, 25.134900213973644 ], [ 79.838465610799261, 25.147225043101223 ], [ 79.850971307080087, 25.150945746149254 ], [ 79.863270297785931, 25.153245347694615 ], [ 79.866991000833977, 25.15582916918077 ], [ 79.869161411170168, 25.163864854479407 ], [ 79.867714471245776, 25.170582791062934 ], [ 79.864200473772812, 25.177429917956314 ], [ 79.847767367969581, 25.195103258108869 ], [ 79.841566197122276, 25.203087267463385 ], [ 79.83701867087494, 25.211122951862698 ], [ 79.834848259639429, 25.217711697237004 ], [ 79.833814731764434, 25.223602809721847 ], [ 79.833814731764434, 25.228796292015254 ], [ 79.834744907751244, 25.2342998317718 ], [ 79.840429314661066, 25.240681871571091 ], [ 79.852108188641964, 25.247839056826987 ], [ 79.87639611169115, 25.254686183720359 ], [ 79.901097446789706, 25.255771389338115 ], [ 79.915360142256688, 25.259802150748605 ], [ 79.93479047979676, 25.270421658432777 ], [ 79.973134392738004, 25.297190050180625 ], [ 79.99907596218587, 25.320160224514719 ], [ 80.015302362414033, 25.330908922508737 ], [ 80.087029249999816, 25.361630561301347 ], [ 80.110593702637217, 25.351166083248124 ], [ 80.116484816021384, 25.349615790536287 ], [ 80.121342400631221, 25.349693304902068 ], [ 80.124546339741727, 25.350959378572433 ], [ 80.167747837292822, 25.380259914963059 ], [ 80.175189243388814, 25.387262071487381 ], [ 80.180873651197984, 25.394212551168259 ], [ 80.187281529418996, 25.408294379482008 ], [ 80.191105585254519, 25.413332831245153 ], [ 80.198133579301199, 25.416433417568154 ], [ 80.205574986296511, 25.415864975887924 ], [ 80.220974563325385, 25.409586289775458 ], [ 80.227899203685212, 25.408656113788592 ], [ 80.234927198631269, 25.409663805040562 ], [ 80.253530714770619, 25.414728095225364 ], [ 80.267896763025121, 25.417182726401673 ], [ 80.275751581170454, 25.416485094411534 ], [ 80.283606398416495, 25.414469712806973 ], [ 80.290117629425012, 25.404496161168872 ], [ 80.305827263917053, 25.384704088422943 ], [ 80.309237908602526, 25.377805283786806 ], [ 80.312338494925527, 25.368658556247333 ], [ 80.317092726747859, 25.337316798931106 ], [ 80.318953077822229, 25.298585313261576 ], [ 80.322053664145216, 25.288275864839246 ], [ 80.326497836705727, 25.282255561145227 ], [ 80.34210412020893, 25.277165432538649 ], [ 80.355746698051604, 25.269568996811753 ], [ 80.359777460361471, 25.266158352126233 ], [ 80.363394809722621, 25.261920885140736 ], [ 80.371869744593013, 25.246805528052668 ], [ 80.375797154115318, 25.244118353778951 ], [ 80.380241326675815, 25.244118353778951 ], [ 80.384995559397495, 25.245901191386846 ], [ 80.390059848683038, 25.247296454467794 ], [ 80.395020786080337, 25.246676336843443 ], [ 80.39936160675272, 25.244040839413167 ], [ 80.40297895701319, 25.24001007710336 ], [ 80.405769484074341, 25.235074978127724 ], [ 80.407629836048031, 25.229468085583669 ], [ 80.409903599171727, 25.212078966271232 ], [ 80.411970655821037, 25.206497911249578 ], [ 80.42034223790391, 25.191330878217453 ], [ 80.421995884302575, 25.185982367192477 ], [ 80.421995884302575, 25.180737209854325 ], [ 80.418585239617059, 25.17585378682281 ], [ 80.413314242957924, 25.171125393422127 ], [ 80.402358840288215, 25.165751043975483 ], [ 80.385925733585665, 25.159601549072185 ], [ 80.372799920579823, 25.151901760557784 ], [ 80.366598748833141, 25.148878689499892 ], [ 80.36008751782461, 25.146759955107822 ], [ 80.354506463702293, 25.143814399315026 ], [ 80.350165643029968, 25.139576931430206 ], [ 80.345721469570137, 25.131463730866464 ], [ 80.339623650610946, 25.124203192823067 ], [ 80.31977990102159, 25.105625515105423 ], [ 80.312028435663748, 25.095006008320574 ], [ 80.30469038325451, 25.089269924567358 ], [ 80.289187453438203, 25.084877427950907 ], [ 80.282056104805335, 25.085704251150268 ], [ 80.27678510904552, 25.086944485499597 ], [ 80.273891229196849, 25.089424954198247 ], [ 80.269860466886968, 25.088598130998943 ], [ 80.266966587038311, 25.084464015901567 ], [ 80.265312940639646, 25.072268377983217 ], [ 80.265312940639646, 25.063819282433936 ], [ 80.271824171648163, 25.041081651197199 ], [ 80.277095168307298, 25.031418157921614 ], [ 80.288257276552017, 25.016225287367089 ], [ 80.297145624370998, 25.012065334747369 ], [ 80.308307732615717, 25.011367702757234 ], [ 80.337453241174089, 25.02105703445454 ], [ 80.351302524591787, 25.023201606369007 ], [ 80.367115512770667, 25.02066946082692 ], [ 80.376210565265339, 25.017956448131539 ], [ 80.384685500135646, 25.014364936292729 ], [ 80.391816847869194, 25.012065334747369 ], [ 80.400291782739529, 25.011238512447385 ], [ 80.407009719323042, 25.013357245040819 ], [ 80.411143832621732, 25.019506740843376 ], [ 80.411350539096048, 25.027361558988726 ], [ 80.40452924972503, 25.051132717201135 ], [ 80.403702427425031, 25.05715302179447 ], [ 80.404012485787561, 25.06175222398593 ], [ 80.406699660061221, 25.063767604691176 ], [ 80.413520949432197, 25.062424018453662 ], [ 80.430057408022932, 25.045499986235363 ], [ 80.446903924076793, 25.023589179097311 ], [ 80.451968215160932, 25.018654080121671 ], [ 80.458376091583304, 25.015140081749333 ], [ 80.469538201626662, 25.016225287367089 ], [ 80.478219842071979, 25.018344020859836 ], [ 80.515116815088888, 25.040668240047232 ], [ 80.513876580739563, 25.05046092453204 ], [ 80.511086052779063, 25.05332896595899 ], [ 80.504574822669881, 25.056997992163581 ], [ 80.478323194859485, 25.067643337370093 ], [ 80.470261672038461, 25.073741157228593 ], [ 80.465300733741827, 25.081389268000287 ], [ 80.462510206680619, 25.092990628514652 ], [ 80.46033979724379, 25.098726712267926 ], [ 80.457755974858316, 25.109501247784348 ], [ 80.457445917395134, 25.113893744400734 ], [ 80.458479445270129, 25.117046007567176 ], [ 80.462820265942455, 25.117898668288881 ], [ 80.472432082374652, 25.116038316315205 ], [ 80.488245069654198, 25.108777778271808 ], [ 80.52059451732309, 25.10373932471003 ], [ 80.530206332855911, 25.104126899236967 ], [ 80.53868126772629, 25.105289618321187 ], [ 80.546432733084117, 25.107537543023163 ], [ 80.551600376056442, 25.111232408548798 ], [ 80.554287551229478, 25.117433580295476 ], [ 80.553770786392633, 25.125882676744137 ], [ 80.551600376056442, 25.135029405182873 ], [ 80.550876905644643, 25.142341620069708 ], [ 80.552427199255789, 25.147380072732172 ], [ 80.558628371002484, 25.150945746149254 ], [ 80.564622837174156, 25.152444362916974 ], [ 80.573304477619487, 25.151488349407764 ], [ 80.579505650265475, 25.147922675091358 ], [ 80.586223585949696, 25.139111843436801 ], [ 80.594698520820003, 25.119138901738886 ], [ 80.59965945821736, 25.110018011721813 ], [ 80.605860629964056, 25.101362209698205 ], [ 80.630872023425113, 25.078469549729896 ], [ 80.638830194357908, 25.073431097966754 ], [ 80.647201776440781, 25.070097968546399 ], [ 80.657227004022928, 25.071803289989809 ], [ 80.675623813687977, 25.077694404273295 ], [ 80.686165806107041, 25.079787299344382 ], [ 80.707869907670016, 25.080226548916066 ], [ 80.717895135252249, 25.081983547202917 ], [ 80.726370070122556, 25.087822983743703 ], [ 80.729160598083112, 25.095393581948251 ], [ 80.725749953397596, 25.104152736759371 ], [ 80.717275017627898, 25.112162584535604 ], [ 80.673246697776833, 25.13869843228678 ], [ 80.668285760379476, 25.142393296913095 ], [ 80.665805291680826, 25.146191515226231 ], [ 80.666425409305106, 25.14970551179993 ], [ 80.670042758666327, 25.152263494864364 ], [ 80.676243931312328, 25.154588934831448 ], [ 80.686579217257005, 25.156216741909073 ], [ 80.76109663280333, 25.158387153144581 ], [ 80.769778273248662, 25.160014960222206 ], [ 80.777426384919679, 25.163089708123486 ], [ 80.783627556666346, 25.168128159886628 ], [ 80.787761671763676, 25.174225978845804 ], [ 80.794169549085368, 25.197893785170031 ], [ 80.796339960320879, 25.202777208201546 ], [ 80.798820428120194, 25.206523748771978 ], [ 80.802231072805725, 25.209831041569313 ], [ 80.806055128641205, 25.21215647973775 ], [ 80.811842889237923, 25.214378566917325 ], [ 80.819904412958209, 25.216704005985086 ], [ 80.828689406191117, 25.21789256439029 ], [ 80.835407341875268, 25.217737534759401 ], [ 80.843055454445604, 25.21618724204756 ], [ 80.848326451104782, 25.214016831711373 ], [ 80.856181268350824, 25.207996528017354 ], [ 80.859488560248835, 25.200684312231196 ], [ 80.858868442624484, 25.187558499225354 ], [ 80.829929641439747, 25.124849147969762 ], [ 80.827449171841735, 25.116038316315205 ], [ 80.82434858641804, 25.087357895750241 ], [ 80.822074823294415, 25.083327135239067 ], [ 80.804091423880081, 25.070020453281298 ], [ 80.799750604107004, 25.065292059880615 ], [ 80.795719841797208, 25.059943548855696 ], [ 80.793859490722838, 25.055344347563555 ], [ 80.792412550798517, 25.050745144472835 ], [ 80.791792434073528, 25.039479682541291 ], [ 80.790552198824827, 25.032555040382814 ], [ 80.78652143831367, 25.024519355084117 ], [ 80.783110792728834, 25.018731594487456 ], [ 80.776496209832189, 25.010773424453923 ], [ 80.76492068863881, 25.00005056398231 ], [ 80.764507276589455, 24.999197903260601 ], [ 80.762026808790139, 24.991033026752742 ], [ 80.76171675042761, 24.983307399816617 ], [ 80.767091098975001, 24.97700287528243 ], [ 80.778666620168309, 24.971499335525888 ], [ 80.80502159986689, 24.968812161252227 ], [ 80.833236932438439, 24.969664821973929 ], [ 80.840368280171944, 24.970569159539075 ], [ 80.892974887680893, 24.984134223015982 ], [ 80.9004162937769, 24.983901679019251 ], [ 80.907547642409696, 24.981343695954759 ], [ 80.915195754080713, 24.974444892217999 ], [ 80.92491092330043, 24.962249254299643 ], [ 80.932559034971447, 24.95713328727134 ], [ 80.943721145014791, 24.953257555491799 ], [ 80.96046430918048, 24.953360907379924 ], [ 80.972453240624503, 24.9559705672878 ], [ 80.998808221222404, 24.965659898085782 ], [ 81.00469933460657, 24.966435045341022 ], [ 81.014931267763728, 24.962378445508811 ], [ 81.030950962416952, 24.952973333752304 ], [ 81.068674757733831, 24.921295681450541 ], [ 81.098130323755399, 24.908609117117063 ], [ 81.124381951565766, 24.939020698446477 ], [ 81.131203240936756, 24.945376898924728 ], [ 81.137404412683438, 24.948684189923419 ], [ 81.14825646436428, 24.950932115524719 ], [ 81.170477328965532, 24.951733100302302 ], [ 81.175231560787878, 24.953748481007544 ], [ 81.181432733433823, 24.958140976724671 ], [ 81.18453331885749, 24.966280015710133 ], [ 81.184843378119339, 24.972920437028503 ], [ 81.183293085407499, 24.980180975971216 ], [ 81.181432733433823, 24.985348618943583 ], [ 81.177401971124013, 24.993565172294829 ], [ 81.173887973650992, 24.999430447257332 ], [ 81.173371209713508, 25.000360623244141 ], [ 81.173371209713508, 25.001290798331631 ], [ 81.174611444062847, 25.011083481917122 ], [ 81.177091912761497, 25.018731594487456 ], [ 81.180502557447014, 25.025139471809148 ], [ 81.206237421319869, 25.049298204548503 ], [ 81.222567173436275, 25.068495998991118 ], [ 81.235486280867107, 25.089114894936412 ], [ 81.239000279239448, 25.098080756221911 ], [ 81.240447219163784, 25.104617824752772 ], [ 81.241480747038779, 25.115185654694184 ], [ 81.241067335888815, 25.125624295225002 ], [ 81.234039340942772, 25.156371772439336 ], [ 81.236519809641464, 25.16502757446295 ], [ 81.243237746224949, 25.169523423866899 ], [ 81.256983676855128, 25.168257351095857 ], [ 81.268765903623532, 25.16464000083533 ], [ 81.281064895228695, 25.164588323991943 ], [ 81.296774529720693, 25.169962673438583 ], [ 81.309176874113376, 25.171926378199764 ], [ 81.325299920654786, 25.168102322364284 ], [ 81.337908969723102, 25.163348090541938 ], [ 81.360543247273, 25.156966050742646 ], [ 81.367674595006505, 25.153271186116335 ], [ 81.370775181329492, 25.148697822346598 ], [ 81.371395298054523, 25.144512031305162 ], [ 81.370568474855176, 25.14112722414205 ], [ 81.36622765508217, 25.128492337551329 ], [ 81.364884067945326, 25.121231797709292 ], [ 81.365607538357139, 25.115883287583639 ], [ 81.369638298868367, 25.111619981277094 ], [ 81.379146763412365, 25.107770087019894 ], [ 81.39144575411818, 25.105160427112018 ], [ 81.418420852340418, 25.104126899236967 ], [ 81.445706008025795, 25.107382514291597 ], [ 81.456868117169819, 25.111413275702084 ], [ 81.46554975761515, 25.117381904351355 ], [ 81.469167107875691, 25.126942043940172 ], [ 81.467926874425686, 25.133789170833545 ], [ 81.462035760142143, 25.140093696267055 ], [ 81.433407017319922, 25.1564234483834 ], [ 81.42834272713506, 25.160790107477446 ], [ 81.425345492700259, 25.164820867988617 ], [ 81.44446577277715, 25.174691066839266 ], [ 81.536966586838474, 25.19975413714371 ], [ 81.558463982826524, 25.170996202212955 ], [ 81.563321568335624, 25.143039252059786 ], [ 81.567352328846852, 25.13448680282368 ], [ 81.576344028554033, 25.123712267307265 ], [ 81.579961378814545, 25.11650340430861 ], [ 81.580581496438853, 25.111852525273825 ], [ 81.578514438890153, 25.108390203744868 ], [ 81.575103794204708, 25.103377590403447 ], [ 81.573450147806042, 25.098158271487019 ], [ 81.573450147806042, 25.091543686791674 ], [ 81.577894322165193, 25.084541531166732 ], [ 81.58523237457436, 25.079632269713439 ], [ 81.599495070041399, 25.076376655558189 ], [ 81.624816521864929, 25.074309597110183 ], [ 81.66512413866802, 25.064465237580627 ], [ 81.70760216670655, 25.065292059880615 ], [ 81.714630160753288, 25.060511990535925 ], [ 81.719591099049893, 25.049117337395153 ], [ 81.721554802911768, 25.038058580139356 ], [ 81.726722446783441, 25.029842026788053 ], [ 81.734473911241963, 25.024700222237467 ], [ 81.752767369018827, 25.02048859277431 ], [ 81.76578982923715, 25.02066946082692 ], [ 81.777468703218034, 25.024002590247328 ], [ 81.792971633034412, 25.032012437124244 ], [ 81.799999627980398, 25.034415392356433 ], [ 81.808061150801436, 25.035500597074865 ], [ 81.817156203296094, 25.035758979493259 ], [ 81.831005486713806, 25.032865098745269 ], [ 81.842064243969659, 25.027077338148608 ], [ 81.853949822626177, 25.013615628358533 ], [ 81.859737583222838, 25.000980739969176 ], [ 81.859737583222838, 25.00005056398231 ], [ 81.861701287984005, 24.997699286492825 ], [ 81.874000278689877, 24.980206814392936 ], [ 81.875240513039202, 24.970905056323257 ], [ 81.873483513853031, 24.961861681571342 ], [ 81.869349399655022, 24.954136053735848 ], [ 81.866868930956329, 24.947702337992489 ], [ 81.866558871694551, 24.942870591804361 ], [ 81.868729282929991, 24.936953639998471 ], [ 81.873173456389836, 24.929977321895869 ], [ 81.881131626423368, 24.921528225447215 ], [ 81.956062453119657, 24.871014513009349 ], [ 81.968981560550532, 24.864994208415958 ], [ 81.980247023381338, 24.861893622092957 ], [ 81.999780714608264, 24.859929918231096 ], [ 82.02386193208244, 24.860317490959396 ], [ 82.033163690152122, 24.859490667760092 ], [ 82.056624790002019, 24.849284573024583 ], [ 82.105510695362256, 24.813369451938623 ], [ 82.118223098117411, 24.808796088168886 ], [ 82.122150506740454, 24.808098456178808 ], [ 82.129695265623965, 24.807633368185343 ], [ 82.137446730082488, 24.809183660897183 ], [ 82.146645135364665, 24.812387600007693 ], [ 82.155016717447467, 24.816315009530054 ], [ 82.195531039825582, 24.843936061999663 ], [ 82.201422154109068, 24.845925605182511 ], [ 82.204832797895264, 24.845331325979881 ], [ 82.208656853730744, 24.843109238800306 ], [ 82.212377556778776, 24.836908067053621 ], [ 82.215374790314257, 24.827296251520746 ], [ 82.216408319088572, 24.806263943526172 ], [ 82.212894321615607, 24.794585069545288 ], [ 82.20917361856759, 24.785515855472333 ], [ 82.205142857157085, 24.778151963742111 ], [ 82.204936150682769, 24.770658880802664 ], [ 82.20803673700577, 24.764302680324416 ], [ 82.218785434999774, 24.757274685378427 ], [ 82.226020134621464, 24.756266995025779 ], [ 82.233254836041766, 24.758747462825106 ], [ 82.238319126226628, 24.763915106696796 ], [ 82.242349887637133, 24.768824368150032 ], [ 82.249791293733182, 24.782337754783551 ], [ 82.253201939317975, 24.786988633818392 ], [ 82.257852818352802, 24.791717027219018 ], [ 82.263020461325183, 24.791174424859769 ], [ 82.26643110511138, 24.785128281844713 ], [ 82.267154576422499, 24.766059679510587 ], [ 82.263743930837649, 24.722599799541111 ], [ 82.265190870761998, 24.7154426133859 ], [ 82.268084750610726, 24.710869248716843 ], [ 82.276146275230346, 24.705443224225398 ], [ 82.280797154265187, 24.704590561705054 ], [ 82.285137974038193, 24.705055649698462 ], [ 82.289272089135565, 24.707691148028058 ], [ 82.294956496045387, 24.709473984736569 ], [ 82.301984490991444, 24.709318956004999 ], [ 82.310046013812411, 24.706502590522117 ], [ 82.319037714418911, 24.702032579539882 ], [ 82.323378534191974, 24.693764350244571 ], [ 82.32616906125314, 24.679915065927556 ], [ 82.30880578036242, 24.646661282492168 ], [ 82.302707961403243, 24.63813467077841 ], [ 82.307048781176249, 24.632011013397509 ], [ 82.357071568098348, 24.636713569275795 ], [ 82.395208774565262, 24.632166043028455 ], [ 82.40967817560724, 24.635628364557355 ], [ 82.423630812711778, 24.647513943213877 ], [ 82.427454869446635, 24.65877940514542 ], [ 82.427764926909774, 24.667538559956533 ], [ 82.424044223861799, 24.683868312972262 ], [ 82.423320754349263, 24.692730821470199 ], [ 82.423424107136768, 24.701955064274777 ], [ 82.424664340586773, 24.710636704720113 ], [ 82.427144810184785, 24.718569037231241 ], [ 82.441407504752505, 24.721437079557568 ], [ 82.453396437995181, 24.722005520338481 ], [ 82.549101190267649, 24.691878159849175 ], [ 82.595093214879896, 24.687744046550502 ], [ 82.611526319783806, 24.688906764735403 ], [ 82.623928664176432, 24.691878159849175 ], [ 82.692244907976061, 24.719809272479942 ], [ 82.700719841947077, 24.721514593923352 ], [ 82.70816124894246, 24.721514593923352 ], [ 82.714569126264095, 24.717768053352977 ], [ 82.717463007012086, 24.710869248716843 ], [ 82.715292595776631, 24.687666531285338 ], [ 82.716532831025276, 24.680431829865022 ], [ 82.723560825971319, 24.673558865449245 ], [ 82.731725701579805, 24.671491807900619 ], [ 82.7646952659737, 24.66983816240127 ], [ 82.772136672069706, 24.668313707211773 ], [ 82.778957961440696, 24.661492417840801 ], [ 82.783402134001207, 24.651570543046088 ], [ 82.789189894597911, 24.628135280718588 ], [ 82.794770948720256, 24.6167664659996 ], [ 82.801488885303783, 24.607309679198291 ], [ 82.814821404783956, 24.596302598785876 ], [ 82.818025343894462, 24.589403795049062 ], [ 82.817611931845121, 24.580928860178741 ], [ 82.808413526562944, 24.566407782293307 ], [ 82.796941359056447, 24.560904242536758 ], [ 82.782988722851243, 24.559586492922271 ], [ 82.756013624629006, 24.568345649532084 ], [ 82.750225864931664, 24.567958075005144 ], [ 82.744954869171849, 24.565245063209083 ], [ 82.739683871613337, 24.55989655218411 ], [ 82.734412875853465, 24.551628322888739 ], [ 82.733896111915996, 24.54235240324078 ], [ 82.735343051840331, 24.527237047052033 ], [ 82.743301222773184, 24.506695665472588 ], [ 82.742784457936324, 24.486180121415423 ], [ 82.73286258314161, 24.440368963956526 ], [ 82.732552524779152, 24.427294826894745 ], [ 82.734102818390312, 24.419698391167795 ], [ 82.739683871613337, 24.413910631470451 ], [ 82.756943800615858, 24.406960150890253 ], [ 82.763455030724998, 24.399053656800785 ], [ 82.766969029097353, 24.386031196582444 ], [ 82.764798618761219, 24.330039781011063 ], [ 82.762214797274993, 24.317353217576901 ], [ 82.757563918240166, 24.304511624511854 ], [ 82.741130813336298, 24.277794907808747 ], [ 82.73286258314161, 24.214129543943265 ], [ 82.721700473997629, 24.201184597191393 ], [ 82.70898807214175, 24.194234117510511 ], [ 82.688524204028724, 24.19263214795523 ], [ 82.680669386782682, 24.190978502455884 ], [ 82.674984978973541, 24.186896064201957 ], [ 82.673848098311041, 24.180333157249372 ], [ 82.679429152433372, 24.166768092873149 ], [ 82.687077264104389, 24.15581269020344 ], [ 82.700306430797113, 24.142118435517371 ], [ 82.717979770949611, 24.128811754458862 ], [ 82.73048546723048, 24.121034451578673 ], [ 82.736066522252131, 24.115039985407002 ], [ 82.738753697425167, 24.107495226523433 ], [ 82.738650343738342, 24.09390432372555 ], [ 82.734826287902806, 24.082277127487423 ], [ 82.732655877566671, 24.072639471734188 ], [ 82.734516228640956, 24.065869859206597 ], [ 82.741234165224483, 24.061916612161887 ], [ 82.749295688944855, 24.058299261901421 ], [ 82.769656203371014, 24.041297716216597 ], [ 82.800868767679432, 23.998716336289871 ], [ 82.786502720324208, 23.980862128084702 ], [ 82.786502720324208, 23.974195868344619 ], [ 82.784539015563084, 23.963137111988086 ], [ 82.784228957200554, 23.950295518023719 ], [ 82.779061314228201, 23.939004218569828 ], [ 82.768105909759853, 23.928953152565892 ], [ 82.736686638977162, 23.914070339474559 ], [ 82.719633417348277, 23.908437608508788 ], [ 82.69162479035171, 23.905104478189109 ], [ 82.670024041576184, 23.895570177022016 ], [ 82.657725050870312, 23.884537258187887 ], [ 82.653900995034846, 23.870507106717575 ], [ 82.653590935772996, 23.856761176087382 ], [ 82.650800408711831, 23.844823919688107 ], [ 82.643048944253323, 23.837072455229581 ], [ 82.612146438307406, 23.820820217479021 ], [ 82.567911411082704, 23.804128730156773 ], [ 82.553028598890691, 23.794000148887726 ], [ 82.544657016807804, 23.782863878165411 ], [ 82.531737909376972, 23.775370795226017 ], [ 82.498664992195572, 23.772399400112189 ], [ 82.415362583416453, 23.783070583740422 ], [ 82.262503697387658, 23.785576890860792 ], [ 82.242970005261483, 23.788367417921954 ], [ 82.203592564445245, 23.800485541474522 ], [ 82.10768110479907, 23.798573513556786 ], [ 82.077398715578212, 23.801364041517271 ], [ 82.030269810303466, 23.82725393322243 ], [ 82.004948357580574, 23.836400662560489 ], [ 81.936942173042809, 23.840663967068387 ], [ 81.910173781294901, 23.832137356253945 ], [ 81.860977817572163, 23.805213934875148 ], [ 81.836069776898597, 23.795395412868 ], [ 81.80868126842573, 23.794749456821926 ], [ 81.778192172730527, 23.801880805454797 ], [ 81.74491255087348, 23.824876817311232 ], [ 81.701711053322384, 23.870532945139296 ], [ 81.681867302833709, 23.885131537390517 ], [ 81.641249627668159, 23.885312405443127 ], [ 81.619545526105099, 23.867561550025464 ], [ 81.629260695324746, 23.858285631276821 ], [ 81.630397576886637, 23.846219184567698 ], [ 81.622025994803764, 23.833791001753294 ], [ 81.62491987465242, 23.824411729317827 ], [ 81.639492629381309, 23.806557522011978 ], [ 81.66512413866802, 23.74787893306631 ], [ 81.680937127746219, 23.724831244366438 ], [ 81.685898065143519, 23.706511949067188 ], [ 81.686208124405354, 23.690311388160005 ], [ 81.679593539710012, 23.677754015035752 ], [ 81.67070519368967, 23.668400580122629 ], [ 81.655615675922647, 23.648479316167478 ], [ 81.646934034577995, 23.642975776410928 ], [ 81.62543663858996, 23.635379339784659 ], [ 81.618925409380068, 23.627343655385339 ], [ 81.614687940595928, 23.591764431083611 ], [ 81.608590121636766, 23.579052029227736 ], [ 81.601458774802524, 23.57184316712846 ], [ 81.594534132644043, 23.566830552887659 ], [ 81.591433547220376, 23.561171983500223 ], [ 81.595154250268394, 23.549415595153558 ], [ 81.60104536275324, 23.536289781248396 ], [ 81.614067823870897, 23.516084296453066 ], [ 81.620268995617593, 23.500219631430802 ], [ 81.62833052023727, 23.487817287937439 ], [ 81.644143508416136, 23.482055364863182 ], [ 81.657682732571999, 23.487197171212465 ], [ 81.68558800678106, 23.507092596745903 ], [ 81.713699985665741, 23.518254705889937 ], [ 81.734060500091957, 23.53597972288588 ], [ 81.744602491611644, 23.542594305782583 ], [ 81.759485304702977, 23.543524481769389 ], [ 81.779018995929874, 23.536496486823406 ], [ 81.800619744705429, 23.530992947066856 ], [ 81.858187289611678, 23.507712714370253 ], [ 81.90717654775942, 23.505180568828159 ], [ 81.927537063084941, 23.495413722765072 ], [ 81.950584750885511, 23.466707465577024 ], [ 81.975492791559006, 23.420043647396362 ], [ 81.99140913342471, 23.400535793691912 ], [ 82.0053617696299, 23.39221588845248 ], [ 82.017350701973243, 23.39221588845248 ], [ 82.02592898963114, 23.387694199727484 ], [ 82.029959751041616, 23.376170356276923 ], [ 82.034403923602142, 23.367617906141444 ], [ 82.043395624208614, 23.363638821574334 ], [ 82.098172642053711, 23.371726182817035 ], [ 82.113262159820778, 23.368832302069045 ], [ 82.124941033801619, 23.362191880750679 ], [ 82.135276319746296, 23.349892890044824 ], [ 82.173723586374351, 23.326354274929823 ], [ 82.186332635442724, 23.309430242711525 ], [ 82.189743280128241, 23.28873383240045 ], [ 82.164628533879679, 23.210237332287015 ], [ 82.157290479671843, 23.170472316943854 ], [ 82.156567010159307, 23.14830312828672 ], [ 82.141684197967308, 23.113214830400064 ], [ 82.129385207261436, 23.096497503756773 ], [ 82.11109175038392, 23.101613470785018 ], [ 82.089801059970881, 23.103628852389587 ], [ 82.07078413268151, 23.100347398013977 ], [ 82.020451288296258, 23.071434434351655 ], [ 81.96598432791437, 23.055466417441206 ], [ 81.946140578324986, 23.042960720261018 ], [ 81.934151645981601, 23.017329210074987 ], [ 81.933428175569802, 22.999216620350747 ], [ 81.944590284713826, 22.963043117745652 ], [ 81.940249464940777, 22.945834866485875 ], [ 81.906453078246926, 22.912736110882797 ], [ 81.865318638244489, 22.881471868831674 ], [ 81.84578494701762, 22.872712714020505 ], [ 81.807130974814569, 22.861808987294914 ], [ 81.788527459574524, 22.85294647879692 ], [ 81.779329055191653, 22.835815741003611 ], [ 81.776848585593683, 22.812923081934681 ], [ 81.783463169389705, 22.780883694426954 ], [ 81.78522016767657, 22.744296779772522 ], [ 81.767960239573355, 22.725357366848975 ], [ 81.761759067826674, 22.716365668041128 ], [ 81.760828891839864, 22.702206326260917 ], [ 81.76672000522403, 22.682233385462322 ], [ 81.766409946861501, 22.66399160452891 ], [ 81.751527133770182, 22.651072496198701 ], [ 81.727342564407749, 22.647196764419103 ], [ 81.669568313027156, 22.609292101049611 ], [ 81.654995559197658, 22.591179511325372 ], [ 81.650241327375326, 22.575314846303108 ], [ 81.648794386551671, 22.560819606839342 ], [ 81.642283156442474, 22.550846056100564 ], [ 81.623989698665611, 22.54105337251513 ], [ 81.603319125876894, 22.533689479885592 ], [ 81.578204379628374, 22.530795600036861 ], [ 81.559600865287649, 22.523457545829043 ], [ 81.539550409223949, 22.519995226098779 ], [ 81.512265252639267, 22.501598416433744 ], [ 81.491491327063017, 22.481702989101617 ], [ 81.478262160370363, 22.472478746297096 ], [ 81.459658645130318, 22.462040107564913 ], [ 81.448186476724445, 22.449792791903796 ], [ 81.432063430183106, 22.440439357890053 ], [ 81.417800733816748, 22.437493801197942 ], [ 81.40291792162472, 22.448371690401181 ], [ 81.384211052697864, 22.481134548320703 ], [ 81.372635533303182, 22.492684231092365 ], [ 81.358062778574308, 22.497955226852234 ], [ 81.344523552619805, 22.497154242074597 ], [ 81.320338983257429, 22.477956448531241 ], [ 81.292743768310217, 22.474649155733907 ], [ 81.277344191281358, 22.4698432479675 ], [ 81.258223911204468, 22.454366156572853 ], [ 81.234866164142119, 22.444495957722264 ], [ 81.222050408599429, 22.447183131995924 ], [ 81.212128533804716, 22.452350775867608 ], [ 81.204997186071225, 22.472168687035257 ], [ 81.19941613194888, 22.481754665945054 ], [ 81.190011021091706, 22.483795885072023 ], [ 81.178022088748364, 22.478421536524646 ], [ 81.164792922055639, 22.465295721720164 ], [ 81.130893181674921, 22.422869371424323 ], [ 81.122521599592105, 22.400519313815263 ], [ 81.120764602204574, 22.3650692807227 ], [ 81.124071893203265, 22.337603257884034 ], [ 81.122211542128909, 22.311687526857835 ], [ 81.118904250230898, 22.294608465907963 ], [ 81.095443150381044, 22.256703803437741 ], [ 81.053688591854979, 22.233630276316202 ], [ 81.044076776322115, 22.225723782226734 ], [ 81.030640904054422, 22.210660101982107 ], [ 81.023509556320946, 22.193968613760482 ], [ 81.020822382047214, 22.140871079836469 ], [ 81.016068150224882, 22.129476426695696 ], [ 81.007489861667736, 22.123456122102304 ], [ 80.990746698401367, 22.118495184705008 ], [ 80.986405877729041, 22.114541938559622 ], [ 80.987336052816531, 22.108004869129381 ], [ 80.998498162859889, 22.09074494102617 ], [ 81.003355746570421, 22.077748318330233 ], [ 81.002218865907849, 22.063123888556614 ], [ 80.993330519887522, 22.051987616035653 ], [ 80.98547570174216, 22.049352117706057 ], [ 80.977724237283638, 22.052840278556001 ], [ 80.949818963973982, 22.092889512940637 ], [ 80.934729445307568, 22.099943346308347 ], [ 80.919019809916264, 22.097462876710374 ], [ 80.903413527312381, 22.085293077213741 ], [ 80.884913364859855, 22.057361965482297 ], [ 80.84439904158242, 21.977676906963659 ], [ 80.835097284412058, 21.950986030480916 ], [ 80.832926874075937, 21.907836208873899 ], [ 80.837887810573974, 21.846134547971012 ], [ 80.821558059356875, 21.802778021688304 ], [ 80.805124952654396, 21.774304308497047 ], [ 80.787761671763676, 21.761204332114229 ], [ 80.754068637857287, 21.75647593781428 ], [ 80.739805943289625, 21.741463935312364 ], [ 80.730504185219942, 21.714307969936836 ], [ 80.724303012573941, 21.615838528125547 ], [ 80.720582310425229, 21.602686875798664 ], [ 80.717585076889733, 21.585556138904675 ], [ 80.724199659786436, 21.497964586296568 ], [ 80.72140913272527, 21.473211575253966 ], [ 80.705802850121387, 21.434531765528554 ], [ 80.697948032875374, 21.398564968498473 ], [ 80.679034458373479, 21.351151842383612 ], [ 80.662911410932821, 21.346345933717824 ], [ 80.64410119011778, 21.332419135035021 ], [ 80.639140252720424, 21.329396063977121 ], [ 80.633352492123748, 21.327354844850216 ], [ 80.625601026765921, 21.326476344807471 ], [ 80.611958448923232, 21.331721503044882 ], [ 80.502714470696191, 21.395309353443899 ], [ 80.484421013818675, 21.401820584452363 ], [ 80.473568963936472, 21.403603420261614 ], [ 80.464680617016796, 21.40352590589583 ], [ 80.456619094195773, 21.402053128449094 ], [ 80.429643995973592, 21.393810737575443 ], [ 80.420652297165731, 21.392286282386006 ], [ 80.409903599171727, 21.392053738389276 ], [ 80.402668897751354, 21.394327501512972 ], [ 80.395640903704688, 21.399572658851124 ], [ 80.393367140581049, 21.407840888146431 ], [ 80.395330845342173, 21.414868883092478 ], [ 80.412900831807903, 21.432929795973276 ], [ 80.416001418130904, 21.437477322220609 ], [ 80.41734500526772, 21.441327216477813 ], [ 80.417551710842744, 21.446830756234416 ], [ 80.414761183781565, 21.460240790080373 ], [ 80.411763951145403, 21.468741563372415 ], [ 80.402668897751354, 21.480213730878965 ], [ 80.387786085559341, 21.492564399327527 ], [ 80.337453241174089, 21.525533961922797 ], [ 80.32360395685707, 21.541140245425989 ], [ 80.320089960283369, 21.550803737802248 ], [ 80.31884972503471, 21.560570583865335 ], [ 80.318643020359019, 21.568554592320535 ], [ 80.316059197973544, 21.575763455319183 ], [ 80.310168084589378, 21.580233466301419 ], [ 80.276061638633664, 21.58470347728365 ], [ 80.248053013435751, 21.596795763313818 ], [ 80.202887811123546, 21.625476182979465 ], [ 80.186661410895326, 21.63948049602805 ], [ 80.1822172383348, 21.632504177026131 ], [ 80.174879185026313, 21.626561387697841 ], [ 80.164130487032295, 21.621187039150524 ], [ 80.108423293200346, 21.604237169409821 ], [ 80.088682896398481, 21.591783149073073 ], [ 80.080311314315665, 21.571577664277751 ], [ 80.005277133932552, 21.548323269103541 ], [ 79.989774204116188, 21.547806505166072 ], [ 79.984709913931312, 21.548323269103541 ], [ 79.979852329321474, 21.55113963548575 ], [ 79.978612094972135, 21.555609646467978 ], [ 79.97871544775964, 21.559821275031819 ], [ 79.97788862456035, 21.561965846946229 ], [ 79.965279576391296, 21.56258596457058 ], [ 79.945332473115101, 21.556307278458114 ], [ 79.933550246346769, 21.554524440850226 ], [ 79.92197472515339, 21.542457994141095 ], [ 79.915360142256688, 21.538117174368089 ], [ 79.896446567754865, 21.532510280924722 ], [ 79.880323521213469, 21.52953888581089 ], [ 79.862133417123431, 21.528169461151716 ], [ 79.849731072730748, 21.529409695501037 ], [ 79.840325961873575, 21.534344794476674 ], [ 79.833918084551939, 21.543233141396335 ], [ 79.828543736004548, 21.557004910448253 ], [ 79.82213585778355, 21.56945892988568 ], [ 79.813144158975703, 21.579768378308014 ], [ 79.798364698671875, 21.587804062707331 ], [ 79.781311477042991, 21.592144884278973 ], [ 79.758780552280641, 21.594082749719114 ], [ 79.704830356735542, 21.584031683715235 ], [ 79.672584262753489, 21.586951401985569 ], [ 79.660285272047631, 21.585194403698775 ], [ 79.650466750040408, 21.581551215016528 ], [ 79.633103469149759, 21.570776679500167 ], [ 79.613879836285363, 21.555454616837089 ], [ 79.60013390475585, 21.547367254695015 ], [ 79.576982863268455, 21.539925849498324 ], [ 79.565200637399457, 21.538814806358229 ], [ 79.555588820067939, 21.542716376559493 ], [ 79.551558058657434, 21.550028591446331 ], [ 79.548560826021273, 21.570492459559315 ], [ 79.546597121260078, 21.578528143958629 ], [ 79.543289829362067, 21.585892034789534 ], [ 79.539879184676565, 21.591421413867121 ], [ 79.537398715977901, 21.597932643976318 ], [ 79.533057896204895, 21.61927501123278 ], [ 79.498331332624829, 21.639661363181343 ], [ 79.486342401180806, 21.663484198237139 ], [ 79.470942824151948, 21.671984972428501 ], [ 79.426397740363356, 21.68725535734881 ], [ 79.413065219983864, 21.689813341312625 ], [ 79.399112582879326, 21.690407620515256 ], [ 79.385366652249147, 21.689606634838292 ], [ 79.369140252920303, 21.691389472446186 ], [ 79.331933220641574, 21.69027842930603 ], [ 79.308782180053498, 21.694102485141567 ], [ 79.295036249423305, 21.697978216921168 ], [ 79.258656040343951, 21.714256293093449 ], [ 79.240052525103906, 21.712757677224992 ], [ 79.237572056405241, 21.70934703253948 ], [ 79.236021762794081, 21.704024359936223 ], [ 79.236021762794081, 21.694360867559958 ], [ 79.23436811729475, 21.682191067164009 ], [ 79.227340122348707, 21.663923447808823 ], [ 79.215764602054691, 21.654570013795073 ], [ 79.19447391074236, 21.646973578068177 ], [ 79.166671991119458, 21.640410671115543 ], [ 79.115925733785545, 21.621936347084723 ], [ 79.08150923036662, 21.612867133011768 ], [ 78.99613976403883, 21.603436183732864 ], [ 78.950354445001594, 21.590362047570405 ], [ 78.932060988124064, 21.582300522950728 ], [ 78.92193240775434, 21.572275295368563 ], [ 78.923069289316217, 21.563826198919909 ], [ 78.926789992364192, 21.553206692135113 ], [ 78.931130812137198, 21.543879096543034 ], [ 78.93226769369906, 21.534680691260856 ], [ 78.929270461062899, 21.525043036406995 ], [ 78.917591587082015, 21.513906764785357 ], [ 78.904155714814337, 21.509281725071556 ], [ 78.865295037935581, 21.50605194843865 ], [ 78.838836703650927, 21.501168525407078 ], [ 78.79956261562215, 21.489308783373637 ], [ 78.73806766119354, 21.483960273247984 ], [ 78.716053501268036, 21.476312161576967 ], [ 78.696003046103641, 21.474761867965807 ], [ 78.626653272630378, 21.479412747000644 ], [ 78.561230909578782, 21.496104234322953 ], [ 78.554409621107055, 21.499747423005143 ], [ 78.535185988242731, 21.515612087128083 ], [ 78.526297642222374, 21.521244818993178 ], [ 78.513688592254681, 21.526593329118832 ], [ 78.497152133664017, 21.528531196357616 ], [ 78.485679966157463, 21.526825873115509 ], [ 78.474724561689115, 21.521115627783949 ], [ 78.466663038868077, 21.515560411184019 ], [ 78.455087517674755, 21.509359239437341 ], [ 78.446405878128743, 21.50718882910115 ], [ 78.437414178421577, 21.506646225842637 ], [ 78.43193647708668, 21.50739553557548 ], [ 78.427905714776884, 21.508480740293916 ], [ 78.426872186002512, 21.509591783434015 ], [ 78.427182245264348, 21.511891384080112 ], [ 78.428422478714353, 21.515689602393188 ], [ 78.428835890763693, 21.526231593912936 ], [ 78.425942010015703, 21.550338649808843 ], [ 78.422014602292037, 21.562689317358089 ], [ 78.414263136934196, 21.578838202321148 ], [ 78.413332960947329, 21.606304226059191 ], [ 78.405891554851308, 21.616071072122278 ], [ 78.393799269720475, 21.622298082290623 ], [ 78.387701450761298, 21.623693346270894 ], [ 78.365997349198253, 21.625424506136021 ], [ 78.3580391782654, 21.62480438941105 ], [ 78.348013950683239, 21.62286652307159 ], [ 78.340365839012222, 21.619895127957758 ], [ 78.333234491278674, 21.614572455354502 ], [ 78.310186801679478, 21.586331285260595 ], [ 78.264194777067232, 21.570957545754137 ], [ 78.20838423044782, 21.559433702303515 ], [ 78.192674595056459, 21.551113796164767 ], [ 78.179032017213771, 21.538143011890494 ], [ 78.167043084870414, 21.522355862133335 ], [ 78.144408807320573, 21.498662218286704 ], [ 78.125495232818693, 21.48468374276052 ], [ 78.085601027165623, 21.462411200416561 ], [ 78.029170362921874, 21.437684027795619 ], [ 77.910211216374464, 21.400580349203718 ], [ 77.8908842298233, 21.397402249414252 ], [ 77.87145389228327, 21.398099880505068 ], [ 77.852850376143905, 21.403577581839894 ], [ 77.805411410708004, 21.422930405913455 ], [ 77.794456008038296, 21.42455821389046 ], [ 77.787531365879744, 21.42300792117862 ], [ 77.762209914056243, 21.406859036215504 ], [ 77.743916457178713, 21.40011526121031 ], [ 77.71260053918347, 21.380271510721624 ], [ 77.702988722751329, 21.377920234131462 ], [ 77.695237258292792, 21.379754746784098 ], [ 77.690069615320439, 21.385930081008432 ], [ 77.683971796361263, 21.391821194392602 ], [ 77.676220331003421, 21.395102646969573 ], [ 77.65038211524238, 21.396162014165608 ], [ 77.638083123637188, 21.398771674073483 ], [ 77.627024367280654, 21.399469306063619 ], [ 77.616999138799187, 21.396704617424117 ], [ 77.600979445045283, 21.388565579337975 ], [ 77.59043745262629, 21.38541331617159 ], [ 77.578035109132927, 21.384457301763057 ], [ 77.568423292700729, 21.386421007423561 ], [ 77.560361769879748, 21.390374254468263 ], [ 77.553540479609396, 21.397298895727427 ], [ 77.546719191137726, 21.40585134496359 ], [ 77.539277785041676, 21.412388414393771 ], [ 77.531526319683834, 21.416109117441803 ], [ 77.519537388239812, 21.417659410153643 ], [ 77.513749627643151, 21.416264146173368 ], [ 77.509098748608309, 21.411251531932631 ], [ 77.501347284149773, 21.396704617424117 ], [ 77.493802525266261, 21.391201076768251 ], [ 77.490185174106429, 21.392932237532701 ], [ 77.488014763770295, 21.401045437197123 ], [ 77.486051059908434, 21.412775987122071 ], [ 77.481813592023613, 21.423886420322045 ], [ 77.454631789125742, 21.461248481332344 ], [ 77.433134393137706, 21.498817247018334 ], [ 77.432204217150826, 21.500858466145299 ], [ 77.430653924438985, 21.511607164139317 ], [ 77.430343866076484, 21.522200833401708 ], [ 77.43199751157583, 21.534215603267452 ], [ 77.435614861836342, 21.542302965409529 ], [ 77.443986443919229, 21.547134710698341 ], [ 77.456802198562542, 21.548504137156211 ], [ 77.555194126008061, 21.542483832562819 ], [ 77.566356236051419, 21.544344184536492 ], [ 77.574934522809912, 21.548323269103541 ], [ 77.577104934045423, 21.556462307189687 ], [ 77.573384230098085, 21.564058742916639 ], [ 77.5662528832639, 21.572895412992914 ], [ 77.561395297754743, 21.58354075819943 ], [ 77.560671828242192, 21.597079983254613 ], [ 77.562015415379093, 21.611394355565032 ], [ 77.562015415379093, 21.626199653391261 ], [ 77.551783482221865, 21.696763820993507 ], [ 77.548372836637029, 21.70743500372242 ], [ 77.541448195377868, 21.715909939492118 ], [ 77.531629673370659, 21.721878567242069 ], [ 77.50930545418332, 21.729630031700591 ], [ 77.503724400060975, 21.732885646755157 ], [ 77.500933872100447, 21.737355657737393 ], [ 77.499073521026148, 21.741334744103135 ], [ 77.497316521839977, 21.747225857487305 ], [ 77.49328576042943, 21.754770616370813 ], [ 77.487394647045264, 21.760816759385929 ], [ 77.474062127565091, 21.767302151073405 ], [ 77.460729608084904, 21.770041002190503 ], [ 77.332985467405351, 21.774459337228613 ], [ 77.316449008814658, 21.769808458193772 ], [ 77.305286899670634, 21.760894272852394 ], [ 77.296501906437797, 21.74810435573141 ], [ 77.285546502868769, 21.740688788057124 ], [ 77.257641228659708, 21.735056057091349 ], [ 77.251129998550525, 21.731206162834152 ], [ 77.242861770154533, 21.716865953001328 ], [ 77.237074008658539, 21.709657090901995 ], [ 77.229632602562489, 21.704566962295466 ], [ 77.218987258255297, 21.700846259247438 ], [ 77.210719028959986, 21.700923774512543 ], [ 77.203897739588953, 21.70340424231193 ], [ 77.198523391041633, 21.707874254193477 ], [ 77.194492628731766, 21.712938544378286 ], [ 77.19149539609559, 21.717666937778912 ], [ 77.187051222635759, 21.721439316771004 ], [ 77.178886346127896, 21.72616771107101 ], [ 77.167207473046375, 21.728157254253855 ], [ 77.115531039725667, 21.724048977578256 ], [ 77.069332310437716, 21.712292589231591 ], [ 77.028817987160309, 21.693585720304718 ], [ 76.917403598597147, 21.618086452827523 ], [ 76.899730259343968, 21.612660427436758 ], [ 76.843609654361998, 21.613358059426897 ], [ 76.814050733754286, 21.600128891834853 ], [ 76.793690220227447, 21.577003688769189 ], [ 76.7889359884051, 21.549925239558142 ], [ 76.788005812418234, 21.537445379900358 ], [ 76.786662225281404, 21.53070160579443 ], [ 76.785215285357069, 21.50853241623798 ], [ 76.785525343719584, 21.5047083604025 ], [ 76.785525343719584, 21.501685289344604 ], [ 76.78490522699461, 21.498145453449919 ], [ 76.783251580595945, 21.493132839209117 ], [ 76.777050408849263, 21.480110378091464 ], [ 76.76867882676639, 21.471661282542126 ], [ 76.756379836060518, 21.462023626788941 ], [ 76.749455193902037, 21.453031927981094 ], [ 76.729508090625856, 21.413008531118802 ], [ 76.720413039030504, 21.403448391530045 ], [ 76.709560988248981, 21.396239529430712 ], [ 76.670907016945236, 21.37605988215784 ], [ 76.646412388321011, 21.358722438789524 ], [ 76.637110630251343, 21.349213976044151 ], [ 76.633389927203311, 21.341049099536285 ], [ 76.635560336640168, 21.331463121525811 ], [ 76.639591098949992, 21.320481879535119 ], [ 76.653337029580186, 21.293816840574717 ], [ 76.653957147204537, 21.251312975013768 ], [ 76.6451721539717, 21.233587958017832 ], [ 76.636283807051981, 21.219997057018528 ], [ 76.625948521107304, 21.208834946975223 ], [ 76.614062940652147, 21.202478746496919 ], [ 76.541819289128838, 21.195244045076603 ], [ 76.523629185038814, 21.191575018872012 ], [ 76.498307733215228, 21.180361232884586 ], [ 76.481874628311388, 21.166511949466891 ], [ 76.469472283918691, 21.151758328484046 ], [ 76.449628534329335, 21.12240611435066 ], [ 76.436606073211678, 21.107807522099446 ], [ 76.410354445401296, 21.096722927321192 ], [ 76.378831821831042, 21.086826890948256 ], [ 76.317440220189937, 21.081865953550899 ], [ 76.286641066132276, 21.074812120183193 ], [ 76.186802198762436, 21.085819199696285 ], [ 76.166855096385561, 21.094319972988327 ], [ 76.14391075957387, 21.106877346112636 ], [ 76.108564081067456, 21.153127753143277 ], [ 76.10484337801941, 21.159949042514253 ], [ 76.103396437195769, 21.164108995134026 ], [ 76.10360314277078, 21.166925361516171 ], [ 76.104223260395131, 21.169302476528053 ], [ 76.106186965156255, 21.172222194798447 ], [ 76.109287550579921, 21.174005032406281 ], [ 76.115385370438432, 21.175348619543112 ], [ 76.122103306122639, 21.175400295487229 ], [ 76.131198357717992, 21.176278795529978 ], [ 76.138846470288328, 21.18100718803128 ], [ 76.142877231698819, 21.193125312483172 ], [ 76.132645297642327, 21.237231146700019 ], [ 76.130474888205455, 21.280122585888588 ], [ 76.108047316230611, 21.332419135035021 ], [ 76.093784620763572, 21.358644924423682 ], [ 76.082932569982049, 21.368075872803267 ], [ 76.070840284851201, 21.369522812727606 ], [ 76.059058058982188, 21.36652558009143 ], [ 76.048929477713202, 21.365233669797981 ], [ 76.039627719643519, 21.365698756892069 ], [ 75.986711052872735, 21.378385322124924 ], [ 75.952294548554548, 21.390916855928133 ], [ 75.936791619637503, 21.392544663905081 ], [ 75.907336052716616, 21.391769517549157 ], [ 75.877777133907543, 21.399779365325454 ], [ 75.814008417254612, 21.383372097044624 ], [ 75.706521437314436, 21.378152778128193 ], [ 75.66321658697585, 21.380168157934115 ], [ 75.625182733296455, 21.385464993014971 ], [ 75.609473097905081, 21.384095567456477 ], [ 75.592316521690051, 21.380839952401853 ], [ 75.569785597827021, 21.380374864408449 ], [ 75.534748976783803, 21.371796575851302 ], [ 75.521106398041795, 21.371770738328898 ], [ 75.4799719580394, 21.376292426154514 ], [ 75.381269973130699, 21.376292426154514 ], [ 75.368247512013042, 21.379315497212414 ], [ 75.359875929930155, 21.382286892326185 ], [ 75.347473586436806, 21.384689845759731 ], [ 75.311920200556727, 21.381460069126881 ], [ 75.209497511700746, 21.402879949849758 ], [ 75.153170201143823, 21.422697861916784 ], [ 75.140457798388624, 21.429131578559456 ], [ 75.129915805969617, 21.437684027795619 ], [ 75.121957635036765, 21.44840688736792 ], [ 75.116066521652584, 21.459284776571163 ], [ 75.106247999645447, 21.48313345004868 ], [ 75.067697381129207, 21.534732367204978 ], [ 75.047956984327342, 21.554059352856822 ], [ 75.037104934445139, 21.560983995015359 ], [ 75.011473423359718, 21.573489692195487 ], [ 75.004962193250591, 21.575427558534951 ], [ 74.956076287890355, 21.577933864756055 ], [ 74.940986770123274, 21.58315318457181 ], [ 74.928481072943086, 21.591318061079612 ], [ 74.912978143126779, 21.603720405472295 ], [ 74.903676385057096, 21.608991401232167 ], [ 74.894064568624884, 21.612040309812407 ], [ 74.864712355390836, 21.616122748066342 ], [ 74.853860304609313, 21.616458644850578 ], [ 74.763839960146001, 21.608448797973605 ], [ 74.731077102226422, 21.608603826705231 ], [ 74.708132766314051, 21.611161811568302 ], [ 74.694800245934559, 21.616923732843979 ], [ 74.682707960803711, 21.626173814070221 ], [ 74.672579380433987, 21.636147365708322 ], [ 74.66090050555384, 21.645294094147115 ], [ 74.608190546156692, 21.658910834467402 ], [ 74.591550733879203, 21.667876694853582 ], [ 74.55951134637148, 21.692087104436322 ], [ 74.534499952910423, 21.707564194931642 ], [ 74.521167434329556, 21.717563584991403 ], [ 74.512485792984918, 21.72691701900521 ], [ 74.509178501086907, 21.736063748343263 ], [ 74.506904737963211, 21.763736476757 ], [ 74.503494094177071, 21.772909044516773 ], [ 74.491608513721857, 21.794561469236381 ], [ 74.488197869935718, 21.805077623233725 ], [ 74.486957634687016, 21.820141303478348 ], [ 74.491918572983693, 21.90427053545681 ], [ 74.494192336107389, 21.917008774835089 ], [ 74.485614048449506, 21.945973416240172 ], [ 74.428046502643937, 22.006150621054296 ], [ 74.407685988217722, 22.023048813951554 ], [ 74.391769647251394, 22.021705226814724 ], [ 74.351978794385829, 21.98651357703994 ], [ 74.342366977953631, 21.982043565158389 ], [ 74.320559522703761, 21.976126614251822 ], [ 74.306090121661711, 21.969847927240032 ], [ 74.294617954155214, 21.967858384956454 ], [ 74.289967076019678, 21.966023871404495 ], [ 74.288726840771048, 21.962458197987413 ], [ 74.288623487983543, 21.956489570237459 ], [ 74.287796664784182, 21.949978339228945 ], [ 74.284386020998042, 21.944939887465804 ], [ 74.267746209619844, 21.935922350236236 ], [ 74.249039340692988, 21.929772854433676 ], [ 74.228162062329247, 21.926181341695546 ], [ 74.204907668054418, 21.92507029945471 ], [ 74.182790155341337, 21.92925609049615 ], [ 74.151164178084329, 21.94757538489608 ], [ 74.128839959796238, 21.951761175937516 ], [ 74.129046665371263, 22.024650784406155 ], [ 74.141862420913967, 22.062813829294779 ], [ 74.140622185665265, 22.071469631318386 ], [ 74.132457310056779, 22.08446625401438 ], [ 74.123258904774602, 22.093277086568257 ], [ 74.11726443860293, 22.102036241379434 ], [ 74.114163853179249, 22.112449041689896 ], [ 74.111063266856249, 22.135522568811492 ], [ 74.106515740608913, 22.152369085764686 ], [ 74.096387160239189, 22.173504747446142 ], [ 74.088222283731383, 22.183814194969095 ], [ 74.071479119565694, 22.197792670495343 ], [ 74.066208123805822, 22.205621650218966 ], [ 74.064141066257136, 22.215388495382733 ], [ 74.065588006181471, 22.245179959087803 ], [ 74.063831007894677, 22.258305772093699 ], [ 74.058560012134805, 22.276754259501441 ], [ 74.0563896017986, 22.294169216336226 ], [ 74.059386835334109, 22.320627549721618 ], [ 74.065691358968962, 22.334890245188653 ], [ 74.072202589977493, 22.344295356045841 ], [ 74.078403761724175, 22.347990221571472 ], [ 74.084914991833358, 22.349411323074087 ], [ 74.091426222841875, 22.348687851762911 ], [ 74.098454216888541, 22.345845648757681 ], [ 74.105792271096377, 22.340497137732708 ], [ 74.120054965664096, 22.326957913576841 ], [ 74.126876255035071, 22.323004666532139 ], [ 74.136798129829785, 22.320911770561729 ], [ 74.148683710284942, 22.321040960871635 ], [ 74.180102980168357, 22.327087103886694 ], [ 74.196536085971545, 22.332693997330065 ], [ 74.211728957425393, 22.340497137732708 ], [ 74.224338005594447, 22.34920461749908 ], [ 74.234259881288423, 22.358893948297062 ], [ 74.239634229835801, 22.36584442797794 ], [ 74.244491815344972, 22.375404568466017 ], [ 74.245732048794977, 22.385610663201525 ], [ 74.243561639358106, 22.394783230061982 ], [ 74.234569939650939, 22.403361517719866 ], [ 74.221547479432601, 22.409433499156645 ], [ 74.196536085971545, 22.414937038913187 ], [ 74.164393344776997, 22.416719876521082 ], [ 74.124395786336422, 22.410957953446765 ], [ 74.113026970718039, 22.41067373350597 ], [ 74.09814415942536, 22.416926581196716 ], [ 74.081814406409691, 22.427830308821679 ], [ 74.036029087372455, 22.468473823308269 ], [ 74.025693801427721, 22.479610094030587 ], [ 74.024866978228417, 22.491340643955535 ], [ 74.033445265886243, 22.509634100833061 ], [ 74.04243696469409, 22.516429551782377 ], [ 74.050395134727623, 22.520537828457968 ], [ 74.057629836147996, 22.521364650758013 ], [ 74.063107538382141, 22.520899562764605 ], [ 74.1197449082009, 22.504388943494913 ], [ 74.129666782995614, 22.50387217955744 ], [ 74.139898716152786, 22.505810044997581 ], [ 74.151474237346108, 22.510305894401476 ], [ 74.161189405666491, 22.516662095779051 ], [ 74.197569614745859, 22.555600287023587 ], [ 74.272707147017158, 22.609653836255511 ], [ 74.280768670737515, 22.61223765684235 ], [ 74.292137486355884, 22.613994656028517 ], [ 74.31787234932942, 22.61360708330022 ], [ 74.330171340035278, 22.615234890377845 ], [ 74.338026158180625, 22.617999579017347 ], [ 74.350118443311473, 22.624588324391645 ], [ 74.36024702278182, 22.632417304115272 ], [ 74.368928664126528, 22.641176458926392 ], [ 74.376370070222535, 22.651046657777037 ], [ 74.458122186289799, 22.804112250280124 ], [ 74.459052362276665, 22.822457384001037 ], [ 74.451921013643798, 22.840931708031857 ], [ 74.426599561820268, 22.871627509302066 ], [ 74.412543572827573, 22.879637356179042 ], [ 74.400864698846746, 22.881601060040843 ], [ 74.392493116763873, 22.876459255490197 ], [ 74.384741652305351, 22.873281154801411 ], [ 74.377093539735014, 22.872170112560635 ], [ 74.370582309625817, 22.872790229285606 ], [ 74.365001254604167, 22.874960638722481 ], [ 74.35931684769433, 22.883797308798755 ], [ 74.354976027022005, 22.898938504308482 ], [ 74.343917270665457, 22.986917628745566 ], [ 74.323453404351071, 23.03606191742352 ], [ 74.341126742704986, 23.046578071420864 ], [ 74.355286086283783, 23.059290473276686 ], [ 74.363347609104821, 23.065052395451684 ], [ 74.374819776611375, 23.070013332848983 ], [ 74.387428826579011, 23.072597154335192 ], [ 74.407892693792732, 23.072338771916744 ], [ 74.422568801309112, 23.068773098499655 ], [ 74.43796837833797, 23.063450425896399 ], [ 74.4562618352155, 23.060298162730017 ], [ 74.47610558480487, 23.062365221177966 ], [ 74.550002882726773, 23.098745429358072 ], [ 74.611911249204738, 23.112672227141555 ], [ 74.667205030987347, 23.147269599512406 ], [ 74.710716586900944, 23.161945706129412 ], [ 74.719604933820605, 23.16943878816954 ], [ 74.715884229873254, 23.179205634232627 ], [ 74.69542036265959, 23.192667344922025 ], [ 74.687462192626057, 23.200108751018032 ], [ 74.676816848318865, 23.215120754419271 ], [ 74.669685499685997, 23.221218573378447 ], [ 74.65842003775451, 23.226463730716599 ], [ 74.646017694261147, 23.227781480331025 ], [ 74.622039828675085, 23.226644598769209 ], [ 74.611497837155383, 23.228117377115261 ], [ 74.581215447934525, 23.239305325580283 ], [ 74.550519646664313, 23.244808865336829 ], [ 74.542044711793977, 23.247831936394729 ], [ 74.536360304884099, 23.250906684296009 ], [ 74.530469190600613, 23.25594513605915 ], [ 74.523027785403926, 23.26547943812556 ], [ 74.519927199080925, 23.276305650485366 ], [ 74.521270786217741, 23.28974152275304 ], [ 74.556514112835984, 23.351339829969156 ], [ 74.569536573953698, 23.367850450138118 ], [ 74.631444940431592, 23.420353704859561 ], [ 74.648188103697962, 23.430559801393709 ], [ 74.699554477756905, 23.444822495961368 ], [ 74.722395460881771, 23.452186387691594 ], [ 74.77903283070053, 23.487429714309819 ], [ 74.789884880582733, 23.491331285410464 ], [ 74.814896274943109, 23.496498928382827 ], [ 74.82295779776409, 23.500116279542617 ], [ 74.853343539772467, 23.526962184756989 ], [ 74.862955357103971, 23.538279324431237 ], [ 74.871843703124327, 23.551921902273929 ], [ 74.879905226844684, 23.569905299889676 ], [ 74.893547804687373, 23.609566962445339 ], [ 74.899438918071539, 23.620393174805137 ], [ 74.908120559416247, 23.630961004746549 ], [ 74.917112258224094, 23.639952704453712 ], [ 74.926724073756972, 23.651812446487209 ], [ 74.934992303052283, 23.666411037839104 ], [ 74.93902306536215, 23.687365831467954 ], [ 74.939746534874615, 23.705168361930355 ], [ 74.938506301424624, 23.721678982099316 ], [ 74.932201775991118, 23.75242645931365 ], [ 74.916698846174754, 23.779272366326605 ], [ 74.906570265805072, 23.791312975513389 ], [ 74.903779737844602, 23.805549832558704 ], [ 74.902229445132761, 23.824153346899429 ], [ 74.903056268332065, 23.855262559319605 ], [ 74.908327264091923, 23.896732896106236 ], [ 74.946774529820672, 24.001997788866841 ], [ 74.955042759115983, 24.015201117137842 ], [ 74.962174106849517, 24.023934434426561 ], [ 74.968168573021188, 24.032771104502835 ], [ 74.968478631383647, 24.041297716216597 ], [ 74.961037225287654, 24.052278958207346 ], [ 74.951115349593678, 24.061089788962583 ], [ 74.929204543354942, 24.077161160459177 ], [ 74.919179314873446, 24.088297431181498 ], [ 74.909360792866252, 24.101681627505112 ], [ 74.9002657412709, 24.117391261997106 ], [ 74.893134392638075, 24.134496161368755 ], [ 74.888276808927557, 24.155347602210036 ], [ 74.884969517029546, 24.204982815504529 ], [ 74.879595167582849, 24.221777656513606 ], [ 74.869983352050028, 24.23611786544711 ], [ 74.85603071494549, 24.247176621803639 ], [ 74.84052778512914, 24.255961615036476 ], [ 74.823887973750942, 24.261258450117332 ], [ 74.807248163272092, 24.263041286825903 ], [ 74.759292433898665, 24.256685086347652 ], [ 74.745649855156657, 24.257279365550286 ], [ 74.735004509950144, 24.260612494071321 ], [ 74.730973749438917, 24.267769680226529 ], [ 74.733454217238304, 24.277329819815286 ], [ 74.745649855156657, 24.291437486550759 ], [ 74.754021437239473, 24.304124049984917 ], [ 74.75898237463683, 24.320996406259091 ], [ 74.75960249226118, 24.335698351297872 ], [ 74.761152784973021, 24.348384914732033 ], [ 74.766423780732836, 24.358720201576027 ], [ 74.823681268175946, 24.404479682191546 ], [ 74.838357374792949, 24.420034287952028 ], [ 74.846832309663327, 24.435511379346671 ], [ 74.844868604902146, 24.454993393730085 ], [ 74.833499790183083, 24.466362210247773 ], [ 74.817066685279244, 24.474552924278036 ], [ 74.720225051444899, 24.500313626572559 ], [ 74.714643996423248, 24.506514797419921 ], [ 74.711956822149588, 24.514963893868575 ], [ 74.711853469362083, 24.523852239888921 ], [ 74.71526411314828, 24.536435452334214 ], [ 74.71929487455877, 24.545220445567104 ], [ 74.748957147054668, 24.591160794235233 ], [ 74.784303827359722, 24.668132839159163 ], [ 74.783580356947851, 24.678907376474221 ], [ 74.773141717316363, 24.695211290168906 ], [ 74.770454543042703, 24.704719753813546 ], [ 74.769214308693321, 24.730971380724604 ], [ 74.771384719029513, 24.763630885856678 ], [ 74.775828891590024, 24.775438951046731 ], [ 74.781409946611674, 24.781743476480241 ], [ 74.791331822305708, 24.781562608427627 ], [ 74.797636345940575, 24.774508775059925 ], [ 74.802493931449746, 24.761382962054025 ], [ 74.806524692860236, 24.735777289390391 ], [ 74.810348748695759, 24.726733913739107 ], [ 74.816756626017408, 24.720455226727317 ], [ 74.833396437395649, 24.71107595519117 ], [ 74.839907668404109, 24.704435532973427 ], [ 74.851069776648814, 24.681697903535387 ], [ 74.858511183644154, 24.671931057472303 ], [ 74.869673292788192, 24.665574856094729 ], [ 74.881145461194009, 24.664877224104597 ], [ 74.91897260929845, 24.666582546447327 ], [ 74.932305128778623, 24.669088853567697 ], [ 74.944810825958811, 24.674644070167684 ], [ 74.956903111089659, 24.683015652250553 ], [ 74.96537804595998, 24.694048570185366 ], [ 74.968168573021188, 24.71239370390628 ], [ 74.967135044246831, 24.725390325702953 ], [ 74.967755160971862, 24.73740509736734 ], [ 74.971269159344203, 24.748748074563984 ], [ 74.97840050617836, 24.763398341859947 ], [ 74.979227329377679, 24.777454331751979 ], [ 74.974266391980379, 24.785748399469007 ], [ 74.966514926622523, 24.790218411350558 ], [ 74.958143345438984, 24.791019395228879 ], [ 74.948841587369301, 24.789598293726264 ], [ 74.93902306536215, 24.786988633818392 ], [ 74.928894484093107, 24.785774237890728 ], [ 74.918662550935935, 24.787608751442686 ], [ 74.895098098298533, 24.794352525548611 ], [ 74.879388462007896, 24.795721951107108 ], [ 74.849209425574472, 24.79543773026699 ], [ 74.83784061085548, 24.797143053509096 ], [ 74.832569615095608, 24.800527858873576 ], [ 74.831226027059458, 24.806315619470237 ], [ 74.837220493231129, 24.836442979060219 ], [ 74.838357374792949, 24.848276881772669 ], [ 74.83753055159363, 24.859413154293627 ], [ 74.834119907807434, 24.871479601002758 ], [ 74.815309686093073, 24.916515611206471 ], [ 74.817066685279244, 24.927496853197219 ], [ 74.824301384900906, 24.932509467437963 ], [ 74.845592076213322, 24.932380276228734 ], [ 74.86171512185534, 24.927031765203758 ], [ 74.875874465434194, 24.919357815111081 ], [ 74.891997511975532, 24.902821357419665 ], [ 74.899645623646549, 24.89716278713291 ], [ 74.909670852128087, 24.893312892875706 ], [ 74.919799431598435, 24.891219997804619 ], [ 74.930134719341751, 24.887163397972408 ], [ 74.951942172792982, 24.872849026561308 ], [ 74.966824985884301, 24.866208604343566 ], [ 74.98139773971387, 24.863030504554096 ], [ 74.995143671243383, 24.864115709272536 ], [ 75.003101841276916, 24.866311957131067 ], [ 75.014263951320274, 24.872719835352079 ], [ 75.042996046929986, 24.89587087683946 ], [ 75.048887160314152, 24.898480535848016 ], [ 75.054984979273328, 24.898118801541436 ], [ 75.071521436964687, 24.890806585755278 ], [ 75.07803266797319, 24.888868720315138 ], [ 75.084440546194216, 24.888894557837542 ], [ 75.090641717041564, 24.89165924737636 ], [ 75.095395948863924, 24.89659434725132 ], [ 75.099633416748745, 24.905146796487426 ], [ 75.10376753094674, 24.927496853197219 ], [ 75.103147414221752, 24.940415961527371 ], [ 75.09384565615207, 24.97777802253767 ], [ 75.095912713700699, 24.984315090169268 ], [ 75.097876417562574, 24.987674058910667 ], [ 75.100873651098055, 24.991265570749473 ], [ 75.113586052953949, 25.001600856694147 ], [ 75.119167107975599, 25.007362778869144 ], [ 75.122887811023631, 25.01250458431911 ], [ 75.125678338984116, 25.01803396249732 ], [ 75.129295689244628, 25.031340644455152 ], [ 75.130845981956426, 25.035423081809761 ], [ 75.133326450655133, 25.040022284001164 ], [ 75.142731560613001, 25.044027207889311 ], [ 75.157821079279344, 25.045810045497198 ], [ 75.206190219802735, 25.040668240047232 ], [ 75.235129021886763, 25.040228990475491 ], [ 75.271199171704353, 25.048264674874808 ], [ 75.304892205610756, 25.058005683415551 ], [ 75.313573846056073, 25.05942678491817 ], [ 75.319361606652805, 25.059555976127392 ], [ 75.323702427325131, 25.05808319778134 ], [ 75.323805780112636, 25.053768215530674 ], [ 75.32060184100213, 25.043872179157738 ], [ 75.309749790220607, 25.029712836478204 ], [ 75.291559686130583, 24.99627818499021 ], [ 75.293006626054904, 24.986666368558012 ], [ 75.294556918766759, 24.983436591025846 ], [ 75.299517857063378, 24.975865993720614 ], [ 75.317914666728399, 24.955247096876004 ], [ 75.321635369776445, 24.944575914147087 ], [ 75.320291782639615, 24.935248318555004 ], [ 75.314193963680424, 24.929486396380064 ], [ 75.305202263973271, 24.926024074851167 ], [ 75.294970330816042, 24.926954250837973 ], [ 75.283188104047696, 24.930519924255062 ], [ 75.267995232593847, 24.936953639998471 ], [ 75.258176710586653, 24.938193875247116 ], [ 75.251355422114997, 24.93654022884845 ], [ 75.247841423742642, 24.932199408176128 ], [ 75.245464308730831, 24.926980089259693 ], [ 75.244224074381506, 24.919512843842647 ], [ 75.245154250368316, 24.911425483499265 ], [ 75.253215773189353, 24.901038519811827 ], [ 75.268098586280686, 24.893287055353309 ], [ 75.297657505089759, 24.887628485965816 ], [ 75.32153201698894, 24.888248602690844 ], [ 75.344166293639475, 24.89165924737636 ], [ 75.387264439302371, 24.904578354807196 ], [ 75.397909783609549, 24.904526678863132 ], [ 75.405144484130616, 24.901891181432852 ], [ 75.407004836104235, 24.895767524051955 ], [ 75.40576460175491, 24.890212307452025 ], [ 75.401423781082585, 24.882254137418496 ], [ 75.394189080561588, 24.873262436812009 ], [ 75.384370558554366, 24.863805650010697 ], [ 75.370831332599863, 24.854839788725254 ], [ 75.355018345320318, 24.847320868263459 ], [ 75.337034946805289, 24.842411606810167 ], [ 75.31884484181596, 24.839982814954904 ], [ 75.297450798615415, 24.839388535752271 ], [ 75.27936404821223, 24.840990505307552 ], [ 75.26220747289652, 24.845253810714773 ], [ 75.24732465980513, 24.852049262563405 ], [ 75.234818964423624, 24.861712754939671 ], [ 75.212701450811252, 24.884889634848768 ], [ 75.202469516754761, 24.892925320147405 ], [ 75.193684522622547, 24.895767524051955 ], [ 75.186863234150877, 24.892899481725689 ], [ 75.183245883890365, 24.886129869198097 ], [ 75.183866000615396, 24.877964992690231 ], [ 75.188103469399536, 24.867061265964647 ], [ 75.20184940002973, 24.846080633914077 ], [ 75.207327102263932, 24.834892686348375 ], [ 75.210427686788279, 24.82104340293068 ], [ 75.208050571776397, 24.809493720159018 ], [ 75.201539340767894, 24.801070462132085 ], [ 75.18066206240421, 24.785903429099953 ], [ 75.173634068357543, 24.774663804690814 ], [ 75.171980421958878, 24.762545681138242 ], [ 75.175081008281879, 24.750530911272499 ], [ 75.18200565044036, 24.740789902731812 ], [ 75.192237582698198, 24.731901556711474 ], [ 75.203709751104071, 24.724951077030532 ], [ 75.22076297363229, 24.720816961933217 ], [ 75.242363723307136, 24.720196845208246 ], [ 75.279053989849714, 24.724175929775292 ], [ 75.308612908658787, 24.724692695511457 ], [ 75.341892531415155, 24.719731757214785 ], [ 75.387574496765566, 24.704745592235263 ], [ 75.416513298849594, 24.700973212343847 ], [ 75.448035923319182, 24.703143621780718 ], [ 75.549941848237651, 24.725777900229893 ], [ 75.598517694336053, 24.727483222572626 ], [ 75.648953892408173, 24.738335273354146 ], [ 75.71747684088345, 24.774663804690814 ], [ 75.732152948399786, 24.779469713356541 ], [ 75.74703575969248, 24.780089830081575 ], [ 75.758817987360175, 24.777376817386195 ], [ 75.767809686168036, 24.771589056789534 ], [ 75.781865676060065, 24.759083360508662 ], [ 75.813388298730942, 24.717664700565475 ], [ 75.818555942602629, 24.697536729236667 ], [ 75.817625766615762, 24.685237739430129 ], [ 75.813698357992777, 24.675109158161089 ], [ 75.813698357992777, 24.663895372173666 ], [ 75.820106236213789, 24.651286323105293 ], [ 75.839949985803145, 24.63281199817515 ], [ 75.869405551824713, 24.59937734578784 ], [ 75.874883254058872, 24.51426626187844 ], [ 75.873953078072063, 24.50108877202916 ], [ 75.872816197409563, 24.497445584246289 ], [ 75.869405551824713, 24.491838690802915 ], [ 75.861033969741854, 24.480728258502317 ], [ 75.849458449447852, 24.472615057938579 ], [ 75.837572869891943, 24.4699795605083 ], [ 75.825377231973604, 24.473157660297769 ], [ 75.792200962004742, 24.494164129870676 ], [ 75.777214797025223, 24.496205348997645 ], [ 75.765432570256877, 24.493363145093038 ], [ 75.754167108325348, 24.483622138350992 ], [ 75.74496870304317, 24.468842678047107 ], [ 75.735356886610958, 24.439981391228223 ], [ 75.734426710624149, 24.423961697474333 ], [ 75.737423944159659, 24.410551662729002 ], [ 75.741144647207634, 24.399596259160028 ], [ 75.746415642967506, 24.35716990796487 ], [ 75.751789992414146, 24.342261257351133 ], [ 75.759128045722704, 24.333967190533368 ], [ 75.769670038141712, 24.32854116514266 ], [ 75.78062544081142, 24.324794622773588 ], [ 75.789513787731082, 24.320660509474912 ], [ 75.796645134565253, 24.314071764100614 ], [ 75.800882603349393, 24.306268621899385 ], [ 75.803983188773074, 24.292522691269134 ], [ 75.802536248848739, 24.27221385278704 ], [ 75.794784784390217, 24.251646632785874 ], [ 75.75923139761089, 24.211597398401178 ], [ 75.747759230104336, 24.190048326469078 ], [ 75.746415642967506, 24.171884059901394 ], [ 75.751789992414146, 24.153409735870575 ], [ 75.76346886639503, 24.141007392377212 ], [ 75.805016716648126, 24.119122422761556 ], [ 75.810804478144107, 24.108270371980037 ], [ 75.806153599109251, 24.097702542038686 ], [ 75.794061313978418, 24.080442613036148 ], [ 75.765329216570066, 24.05535370520931 ], [ 75.751169874789852, 24.035406601933111 ], [ 75.742694939919474, 24.020756333737772 ], [ 75.738767531296489, 24.00995595979969 ], [ 75.729982538063652, 24.000680040151728 ], [ 75.726778598953132, 24.000059923426701 ], [ 75.722644483855774, 24.001041775357631 ], [ 75.712722609061117, 24.005460110395742 ], [ 75.692982212259238, 24.0216089953588 ], [ 75.683577102301385, 24.024632066416697 ], [ 75.672828404307353, 24.022384141714721 ], [ 75.64492313009832, 23.999517320168192 ], [ 75.633554315379328, 23.995486558757641 ], [ 75.621772088610939, 23.99522817633925 ], [ 75.609163038643246, 23.999491481746468 ], [ 75.596657342362434, 24.009465033384565 ], [ 75.589319289053876, 24.01318573733186 ], [ 75.574126417600027, 24.016906440379895 ], [ 75.56668501240334, 24.020833849002877 ], [ 75.548701612989007, 24.035458278776495 ], [ 75.538883090981784, 24.041375230582386 ], [ 75.529477980124611, 24.042589627409363 ], [ 75.523586866740445, 24.041220200951496 ], [ 75.513044875220757, 24.036026720456782 ], [ 75.503123000426086, 24.014270942050299 ], [ 75.486069776998576, 23.988923651805063 ], [ 75.487206658560396, 23.979621893735377 ], [ 75.490307244883397, 23.939934394556641 ], [ 75.50136600123993, 23.921744290466613 ], [ 75.507463820199092, 23.916654160960711 ], [ 75.524206984364795, 23.905001126300927 ], [ 75.57815717990988, 23.875726427432646 ], [ 75.58342817566971, 23.8678974468097 ], [ 75.589009229792097, 23.855469264894616 ], [ 75.590146112253223, 23.836090603298651 ], [ 75.597070754411703, 23.817900499208626 ], [ 75.637585076789819, 23.813818060954755 ], [ 75.653088005706863, 23.810381577847515 ], [ 75.665800409361367, 23.804671332515962 ], [ 75.684817335751376, 23.789840196268013 ], [ 75.692878858572428, 23.789142564277878 ], [ 75.699803500730908, 23.793199164110089 ], [ 75.705384555752616, 23.803456935689034 ], [ 75.708071730026276, 23.813172104908681 ], [ 75.709622022738117, 23.822628893508632 ], [ 75.711792433973628, 23.83105215153557 ], [ 75.726675246165641, 23.858776556792627 ], [ 75.728535598139317, 23.867432358816295 ], [ 75.726985305427476, 23.877767646559612 ], [ 75.720887485568966, 23.898980820808212 ], [ 75.720267367944629, 23.906473903747663 ], [ 75.723264602379444, 23.9122358259226 ], [ 75.72874230281495, 23.916240749810747 ], [ 75.739697707283284, 23.916938380901506 ], [ 75.748275994941181, 23.912313341187705 ], [ 75.757267693749014, 23.903502509533151 ], [ 75.766362746243701, 23.892805488382571 ], [ 75.776491326613368, 23.883141995106989 ], [ 75.792511021266577, 23.881875922335944 ], [ 75.812354770855947, 23.886914374099085 ], [ 75.847598098373496, 23.904665229516688 ], [ 75.899377882683083, 23.91833364488178 ], [ 75.973378534291882, 23.95538564752956 ], [ 75.986711052872735, 23.964894111174257 ], [ 75.994152459868062, 23.976366279580127 ], [ 75.997873162916093, 23.983936875986039 ], [ 76.00097374923908, 23.993910426724817 ], [ 76.001800572438398, 23.997967027456351 ], [ 76.001593865964068, 24.000602524886567 ], [ 76.000250278827238, 24.004064846415524 ], [ 75.986090936147761, 24.018043321042391 ], [ 75.980199822763524, 24.02594981513186 ], [ 75.984747349010874, 24.036853542756766 ], [ 75.999010043578593, 24.051116238223806 ], [ 76.083242629243884, 24.098141790711047 ], [ 76.116625603888437, 24.134031073375294 ], [ 76.119209426273969, 24.150283311125914 ], [ 76.11910607258713, 24.160024318767277 ], [ 76.116108839950968, 24.183433743572373 ], [ 76.116005487163463, 24.19609446948413 ], [ 76.119519483737164, 24.23177704477478 ], [ 76.116728956675942, 24.25143992811018 ], [ 76.117659132662808, 24.261723538110793 ], [ 76.122826775635104, 24.282445786843589 ], [ 76.123963658096315, 24.312004706551924 ], [ 76.127167596307501, 24.321900742924917 ], [ 76.132748651329138, 24.329393825864368 ], [ 76.140706822262004, 24.335284939248531 ], [ 76.154969516829667, 24.343243110181383 ], [ 76.173573032969031, 24.351485501055034 ], [ 76.182461378989373, 24.35295827940103 ], [ 76.18897260909857, 24.352079780257608 ], [ 76.192176548209076, 24.345516873305023 ], [ 76.192486606571592, 24.338488878359041 ], [ 76.189386021147911, 24.323399359692694 ], [ 76.18897260909857, 24.317249863890076 ], [ 76.190212844347201, 24.310609443471034 ], [ 76.194967076169561, 24.301798610917157 ], [ 76.2023051285788, 24.292522691269134 ], [ 76.214500767396473, 24.283763536458022 ], [ 76.230313754675976, 24.277872423073852 ], [ 76.253774855425192, 24.27888011342645 ], [ 76.28684777170723, 24.284926256441558 ], [ 76.304727818334101, 24.283143418833671 ], [ 76.358574660192389, 24.265056668430471 ], [ 76.381518996104745, 24.260018214868687 ], [ 76.408184035065105, 24.259553127774605 ], [ 76.456139764438532, 24.265030829109431 ], [ 76.466888462432536, 24.262033596473255 ], [ 76.477533806739743, 24.253455308815425 ], [ 76.483631625698919, 24.242422389981297 ], [ 76.49076297433173, 24.221183377310975 ], [ 76.494793735742277, 24.21441376388406 ], [ 76.502028436263274, 24.210512192783419 ], [ 76.511536899907952, 24.209091091280804 ], [ 76.53045047440979, 24.211106471986049 ], [ 76.542749465115648, 24.215188910239981 ], [ 76.55205122318533, 24.221390081986662 ], [ 76.555875279020867, 24.227797960207674 ], [ 76.566003859390534, 24.262085273316693 ], [ 76.572515090399051, 24.273247382460735 ], [ 76.581713494781894, 24.282445786843589 ], [ 76.592978956713452, 24.289344591479672 ], [ 76.621504347647473, 24.301100978927021 ], [ 76.649202915382176, 24.309395045744729 ], [ 76.660778435676193, 24.309601752219063 ], [ 76.669770135383416, 24.305881049171084 ], [ 76.674110956055742, 24.29477061597111 ], [ 76.672870720807097, 24.283815212402086 ], [ 76.668736606609031, 24.273841660763985 ], [ 76.658814731814388, 24.25676259981412 ], [ 76.655094028766342, 24.248235988999674 ], [ 76.653957147204537, 24.24053620048522 ], [ 76.655817499178212, 24.234800115832677 ], [ 76.669150017759065, 24.223586330744517 ], [ 76.725063918065345, 24.188885606485535 ], [ 76.742943963792854, 24.174726263806001 ], [ 76.766611770117009, 24.160334378029113 ], [ 76.794723749001761, 24.161445421169212 ], [ 76.814464145803626, 24.172013251110624 ], [ 76.822215611161454, 24.17449371980927 ], [ 76.829450310783145, 24.17451955823099 ], [ 76.839682244839679, 24.173046779884938 ], [ 76.851981236444871, 24.172865911832325 ], [ 76.862729934438889, 24.17503632306784 ], [ 76.870274693322401, 24.181650905964538 ], [ 76.874305453833571, 24.190358384831594 ], [ 76.878646275405202, 24.203070786687412 ], [ 76.88536421108941, 24.212605088753826 ], [ 76.891875441198621, 24.220227362902442 ], [ 76.894149204322261, 24.229658311282034 ], [ 76.891565382836106, 24.24092377411284 ], [ 76.878026157780923, 24.261103421385766 ], [ 76.831620721119336, 24.316164659171644 ], [ 76.820458611975283, 24.337300319953776 ], [ 76.814567498591117, 24.360115465556241 ], [ 76.816427849665487, 24.426054592545363 ], [ 76.80836632684445, 24.452978013924159 ], [ 76.805782505358295, 24.462098903941236 ], [ 76.805575798883964, 24.469075222043838 ], [ 76.806402622083269, 24.475948188258254 ], [ 76.814154087441111, 24.5018639192844 ], [ 76.814464145803626, 24.505843003851506 ], [ 76.814464145803626, 24.51294851316333 ], [ 76.813637322604308, 24.521165066514577 ], [ 76.806195917407635, 24.555788276407831 ], [ 76.806712681345104, 24.565400091940653 ], [ 76.810743442755651, 24.571446234955765 ], [ 76.821698846324622, 24.576329657087964 ], [ 76.82841678290815, 24.576639716349799 ], [ 76.835031365804852, 24.574934394007066 ], [ 76.842059360750838, 24.571213690959034 ], [ 76.849087354797561, 24.568733222260384 ], [ 76.855391880231068, 24.567337958280113 ], [ 76.86965457569805, 24.567260443914332 ], [ 76.875752394657226, 24.565296739153151 ], [ 76.880506625580239, 24.561860256045968 ], [ 76.885054151827589, 24.556253364401236 ], [ 76.889084914137456, 24.550000514911794 ], [ 76.896319614658438, 24.53392914521384 ], [ 76.898076612945303, 24.526410223852729 ], [ 76.898800083357102, 24.520441596102781 ], [ 76.897869908269598, 24.503879299090382 ], [ 76.898800083357102, 24.500081082575885 ], [ 76.900350376068943, 24.499150905689699 ], [ 76.903967727228789, 24.497548936134471 ], [ 76.912029250049827, 24.496205348997645 ], [ 76.922261184106318, 24.496076157788416 ], [ 76.938590936222653, 24.49902171537985 ], [ 76.942931756894978, 24.500236111307451 ], [ 77.035225865381321, 24.538399156196071 ], [ 77.048765090436504, 24.547390855003922 ], [ 77.051865675860185, 24.552610174819669 ], [ 77.058893670806228, 24.561627712049237 ], [ 77.060857374668032, 24.577854112277461 ], [ 77.059100376381224, 24.602322903379267 ], [ 77.046181268051029, 24.64958099986324 ], [ 77.037396274818192, 24.670303250394678 ], [ 77.027371047235974, 24.685961208942608 ], [ 77.014555291693327, 24.699164537213612 ], [ 76.96680626789491, 24.737482611733125 ], [ 76.956367629162727, 24.742598577862047 ], [ 76.945722283956215, 24.744226385838996 ], [ 76.938177525072703, 24.743141181120613 ], [ 76.931046177339141, 24.741099961993648 ], [ 76.921434360906957, 24.73970469801338 ], [ 76.877819452205912, 24.743916327476533 ], [ 76.848053826922509, 24.759703477233639 ], [ 76.795240512939287, 24.816780097523459 ], [ 76.782734815759099, 24.826753648262237 ], [ 76.780564406322227, 24.837140611050351 ], [ 76.786972283643919, 24.846468207541697 ], [ 76.791933221041276, 24.851687527357448 ], [ 76.797204216801092, 24.85499481925546 ], [ 76.805472446995779, 24.856390082336411 ], [ 76.82655643093446, 24.857785346316682 ], [ 76.847330357410016, 24.862410386929803 ], [ 76.857562289667868, 24.866441148340297 ], [ 76.868621046923735, 24.87295237934881 ], [ 76.877612745731582, 24.882719225411897 ], [ 76.881746860828898, 24.890522365814483 ], [ 76.883193800753233, 24.896956082457216 ], [ 76.882263624766424, 24.919512843842647 ], [ 76.878232863355933, 24.935403347286631 ], [ 76.863763462313884, 24.967184353275279 ], [ 76.848363885285011, 24.994340317751433 ], [ 76.845883416586375, 25.000153916769811 ], [ 76.845573358223859, 25.002220974318497 ], [ 76.845470005436354, 25.006587633412543 ], [ 76.847330357410016, 25.012375393109888 ], [ 76.851051059558671, 25.019248359324305 ], [ 76.860972935252718, 25.033795273832819 ], [ 76.869034458073756, 25.040151476109706 ], [ 76.883503859115748, 25.046714382162971 ], [ 76.915026482686002, 25.052786362700481 ], [ 76.999362421138798, 25.087719630956194 ], [ 77.007010532809815, 25.088959866204839 ], [ 77.017449172441317, 25.089140733358128 ], [ 77.038326450805002, 25.087487086959463 ], [ 77.08803917756596, 25.093688258706148 ], [ 77.187361280998275, 25.127510483821762 ], [ 77.200383742115918, 25.129344998273037 ], [ 77.217747023006652, 25.123970648826337 ], [ 77.234903599221681, 25.122549547323722 ], [ 77.254333936761697, 25.130120143729634 ], [ 77.266012810742595, 25.130456041413137 ], [ 77.279758742272108, 25.126890367096728 ], [ 77.294951612826637, 25.117226873821146 ], [ 77.309731073130465, 25.109966335777749 ], [ 77.328851353207355, 25.108622747741599 ], [ 77.341253696700718, 25.113997097188243 ], [ 77.350658806658529, 25.123247179313861 ], [ 77.355516392167686, 25.129732571001334 ], [ 77.360477328665723, 25.134538478767745 ], [ 77.366265090161718, 25.136631374738155 ], [ 77.374429965770261, 25.138491725812454 ], [ 77.382388136703113, 25.142910060850621 ], [ 77.387969190825444, 25.151591702195272 ], [ 77.389209426074075, 25.16195282656167 ], [ 77.386522250901109, 25.182804267403007 ], [ 77.387969190825444, 25.190891629545028 ], [ 77.391793246660981, 25.198152166689109 ], [ 77.397374301682632, 25.205025132903522 ], [ 77.398924595293792, 25.212233995002858 ], [ 77.396650832170096, 25.220657253929115 ], [ 77.39117312993595, 25.228770452694214 ], [ 77.370089145997255, 25.251533922352618 ], [ 77.362957798263707, 25.262127589816366 ], [ 77.360063918415037, 25.269801540808427 ], [ 77.357893508078902, 25.27993012117815 ], [ 77.357583448817067, 25.289593614453729 ], [ 77.358306919228866, 25.296414902925385 ], [ 77.361097447189394, 25.30377879555493 ], [ 77.364714796550544, 25.311478583170064 ], [ 77.365955030899883, 25.316672065463415 ], [ 77.365334914174895, 25.324423529921937 ], [ 77.361407504652547, 25.332174994380463 ], [ 77.349108513946689, 25.348659776127754 ], [ 77.344664341386178, 25.357909858253315 ], [ 77.342803990311879, 25.367676703417082 ], [ 77.343424107036853, 25.379123033401235 ], [ 77.346214634098004, 25.388269761840029 ], [ 77.35086551313286, 25.395969550354433 ], [ 77.354896275442727, 25.40131806137941 ], [ 77.358616977591382, 25.407105821076748 ], [ 77.358513624803876, 25.411860052899094 ], [ 77.355516392167686, 25.418913886266804 ], [ 77.351485629857891, 25.425373440431937 ], [ 77.346524693359854, 25.431342068181884 ], [ 77.341253696700718, 25.436147975948295 ], [ 77.334535760117191, 25.440333766989731 ], [ 77.327714470746145, 25.443201809316001 ], [ 77.311798129779831, 25.445604762749603 ], [ 77.301979607772623, 25.445604762749603 ], [ 77.281205682196443, 25.442659206956815 ], [ 77.255470819222907, 25.433512478518018 ], [ 77.237074008658539, 25.422247015687212 ], [ 77.228392368213164, 25.413177802513523 ], [ 77.222501254828998, 25.402739162882025 ], [ 77.212786085609295, 25.373722846432194 ], [ 77.208135206574454, 25.364808661090812 ], [ 77.201623977364619, 25.355610255808635 ], [ 77.193562452744956, 25.348401393709302 ], [ 77.181056757363407, 25.34253611874686 ], [ 77.164830357135244, 25.339745591685695 ], [ 77.141265903598523, 25.341967677965947 ], [ 77.126486444194001, 25.345920925010656 ], [ 77.107676223378959, 25.354266669571128 ], [ 77.095790642923802, 25.355377711811908 ], [ 77.080597772369273, 25.353181463953369 ], [ 77.057550082770078, 25.343776353096182 ], [ 77.029644810359656, 25.327885851450837 ], [ 77.001532830575613, 25.31755056370752 ], [ 76.946962518305526, 25.318558254060175 ], [ 76.92866906142801, 25.307602851390467 ], [ 76.922777948043844, 25.306388455462802 ], [ 76.913476189974162, 25.309308172833877 ], [ 76.878646275405202, 25.334087022298199 ], [ 76.86965457569805, 25.337936917454776 ], [ 76.827796665283842, 25.344629014717206 ], [ 76.819115024838467, 25.344473985086321 ], [ 76.811776970630646, 25.342768662743591 ], [ 76.780150995172264, 25.332019964749573 ], [ 76.773123000226221, 25.332174994380463 ], [ 76.765888298805905, 25.334655463079109 ], [ 76.759170363121697, 25.338402004548865 ], [ 76.717105747132493, 25.368038437723719 ], [ 76.705943637988454, 25.372637640814439 ], [ 76.693748000070087, 25.376203315130844 ], [ 76.682379185351053, 25.37749522632361 ], [ 76.661915318137389, 25.377624417532836 ], [ 76.652303500805871, 25.37917471024468 ], [ 76.641451450923654, 25.384859117154516 ], [ 76.633389927203311, 25.392662258456422 ], [ 76.61065229686595, 25.430799464923318 ], [ 76.602900832407428, 25.43741404871934 ], [ 76.591635369576608, 25.443796088518631 ], [ 76.577062615747067, 25.446457424370628 ], [ 76.567554152102375, 25.448033556403452 ], [ 76.559079217232053, 25.452529404908084 ], [ 76.551431104661717, 25.460125841534357 ], [ 76.546986932101191, 25.470797024263213 ], [ 76.541302525191298, 25.49430980095655 ], [ 76.521458774702623, 25.550172024419389 ], [ 76.492209914256065, 25.686752835175177 ], [ 76.487662388008729, 25.698225003581051 ], [ 76.481771274624563, 25.708870347888244 ], [ 76.478360629939047, 25.719799913035551 ], [ 76.481151157899589, 25.732150579685474 ], [ 76.487455682433776, 25.737111517982154 ], [ 76.505955844886245, 25.740444648301825 ], [ 76.512673780570466, 25.744630439343265 ], [ 76.517531366079623, 25.757394518042528 ], [ 76.516704542880277, 25.785325628874652 ], [ 76.517944777229658, 25.799252428456775 ], [ 76.523112421101288, 25.812145698365264 ], [ 76.545953404226154, 25.848293362548638 ], [ 76.554841750246553, 25.851548976703892 ], [ 76.559389275594569, 25.854339503765054 ], [ 76.582747022656889, 25.875449327024793 ], [ 76.591945427939066, 25.880591132474759 ], [ 76.610548944078445, 25.88144379319646 ], [ 76.620574171660664, 25.885061143456987 ], [ 76.627498813819145, 25.893045151912183 ], [ 76.636180454264476, 25.91423249043708 ], [ 76.641141391661833, 25.920433661284441 ], [ 76.651786736868331, 25.922655748464017 ], [ 76.704289991589789, 25.918702501419254 ], [ 76.715555454420652, 25.916067003089715 ], [ 76.727027621927149, 25.916299547086389 ], [ 76.740153435832354, 25.923224189244927 ], [ 76.759997186321058, 25.945858465895462 ], [ 76.77022912037755, 25.953971666459204 ], [ 76.779117466397878, 25.957924913503913 ], [ 76.787695754055775, 25.96025035257167 ], [ 76.796067336138577, 25.964539496400612 ], [ 76.804335565433945, 25.974435532773608 ], [ 76.807539503645145, 25.985339260398515 ], [ 76.807539503645145, 25.996837267226049 ], [ 76.80877973799447, 26.008231920366818 ], [ 76.815497673678621, 26.018825587830573 ], [ 76.873375278746067, 26.051950181855368 ], [ 76.887534621425615, 26.063809922989545 ], [ 76.892702264397926, 26.073705960261854 ], [ 76.895286085884081, 26.082516791017095 ], [ 76.899110141719618, 26.090655829103177 ], [ 76.90799848773996, 26.098588162513686 ], [ 76.937454054660847, 26.104246731001801 ], [ 76.945515578381205, 26.10819997804651 ], [ 76.959881625736358, 26.122876085562886 ], [ 76.969390090280385, 26.12938731477271 ], [ 76.991921014143401, 26.135898545781224 ], [ 76.998638950726942, 26.145045274220021 ], [ 77.003703240911804, 26.156259060207439 ], [ 77.010421176595941, 26.166232611845537 ], [ 77.018896112365653, 26.171658637236302 ], [ 77.0490751478997, 26.184267686304675 ], [ 77.061890904341723, 26.186722317480921 ], [ 77.075740186860102, 26.184500230301349 ], [ 77.082458124342892, 26.185275377556589 ], [ 77.089899530438956, 26.190443020528956 ], [ 77.094963819724441, 26.19865957298088 ], [ 77.097030878172433, 26.214885973209043 ], [ 77.099821405233612, 26.221448879262361 ], [ 77.124729445007844, 26.237856147543134 ], [ 77.152324659955056, 26.239587307408268 ], [ 77.181056757363407, 26.237391059549729 ], [ 77.209685500185614, 26.241964423319466 ], [ 77.230149367399335, 26.262454128954854 ], [ 77.254230584873511, 26.274675605294924 ], [ 77.266322870004373, 26.284468288880415 ], [ 77.281102329408924, 26.294183458100058 ], [ 77.288130324354924, 26.299997057118439 ], [ 77.294434848889111, 26.308265286413807 ], [ 77.301359491047648, 26.32444000889927 ], [ 77.305286899670634, 26.331338813535403 ], [ 77.323373650973139, 26.351983547003094 ], [ 77.335775995365836, 26.361104437919433 ], [ 77.349625278783535, 26.364850979389182 ], [ 77.380527784729438, 26.364153347399046 ], [ 77.395100538558935, 26.366168728104292 ], [ 77.407606235739124, 26.372292385485189 ], [ 77.415150994622635, 26.364850979389182 ], [ 77.431274042063336, 26.373661811043739 ], [ 77.432307569938331, 26.386193345746271 ], [ 77.431480746739041, 26.400145981951475 ], [ 77.441816033583038, 26.413271795856698 ], [ 77.459592727422361, 26.416759954907995 ], [ 77.499900344225452, 26.411643988779012 ], [ 77.514369745267501, 26.416372382179695 ], [ 77.526048618349009, 26.426268419451951 ], [ 77.565322707277048, 26.44740408023409 ], [ 77.616792434123482, 26.482983302737232 ], [ 77.631055128691202, 26.488383489706273 ], [ 77.645731236207538, 26.490502224098343 ], [ 77.680767857250757, 26.49990733495553 ], [ 77.699371371591482, 26.5020260693476 ], [ 77.715081007882176, 26.506030992336427 ], [ 77.726656529075484, 26.515487779137679 ], [ 77.744019809966218, 26.536158351926353 ], [ 77.77275190557593, 26.548457343531531 ], [ 77.808925409080288, 26.55928355589139 ], [ 77.831456332943375, 26.575768338537948 ], [ 77.819157342237517, 26.60506887492863 ], [ 77.869903598672096, 26.619331570395609 ], [ 77.880652296666128, 26.625558580564011 ], [ 77.885923293325263, 26.634162705744238 ], [ 77.889023878748944, 26.651655177844187 ], [ 77.894294875408136, 26.65969086404214 ], [ 77.902769810278457, 26.664031683815146 ], [ 77.91362186105998, 26.665969550154607 ], [ 77.9321220226132, 26.666512153413116 ], [ 77.950002069240028, 26.669819444411807 ], [ 77.978424107386601, 26.68428884545386 ], [ 78.003642206422612, 26.693823147520213 ], [ 78.012840610805455, 26.695580145807064 ], [ 78.021522251250857, 26.691032620459048 ], [ 78.029067010134369, 26.68524485896307 ], [ 78.038472120991557, 26.681808376755153 ], [ 78.048807407835554, 26.680232244722269 ], [ 78.059349400254561, 26.680154731255808 ], [ 78.079399855418927, 26.682919419895306 ], [ 78.085187616015602, 26.689430650004446 ], [ 78.084980910440592, 26.701574611978735 ], [ 78.087358026351794, 26.721134142526633 ], [ 78.090148553412959, 26.72800710694241 ], [ 78.098520134596498, 26.74100373053772 ], [ 78.100380486570131, 26.742864080712756 ], [ 78.099863722632662, 26.753457749975148 ], [ 78.094282667610955, 26.770252590084961 ], [ 78.09293908137343, 26.779786892151318 ], [ 78.101207309769478, 26.795108953915072 ], [ 78.120017530584548, 26.794643865921664 ], [ 78.151540155054064, 26.78319753683683 ], [ 78.164976027321742, 26.791930854125603 ], [ 78.16900678873229, 26.822161567402411 ], [ 78.182235956324263, 26.817329820314903 ], [ 78.200116001152452, 26.823582668905026 ], [ 78.219236281229342, 26.823892727267541 ], [ 78.233912387846345, 26.819784451491209 ], [ 78.254893019896926, 26.817329820314903 ], [ 78.25820031089556, 26.82133474420305 ], [ 78.272256300787589, 26.84464081532132 ], [ 78.280317823608627, 26.851436266270635 ], [ 78.286002232317102, 26.854846910056828 ], [ 78.326103142645863, 26.859807848353505 ], [ 78.350597772169394, 26.858464260317355 ], [ 78.371475051432455, 26.851048691743692 ], [ 78.384910922800813, 26.826812446437252 ], [ 78.395969680056666, 26.824176948107656 ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Puducherry", "admin": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 79.777280714733109, 10.971811225008024 ], [ 79.785032180090965, 10.970906887442878 ], [ 79.789993116589002, 10.975919500784299 ], [ 79.806116164029717, 10.985427965328311 ], [ 79.824926384844716, 10.984756170860576 ], [ 79.846688115863785, 10.97983369386986 ], [ 79.840668164703999, 10.950140692438991 ], [ 79.847341342029253, 10.809637761973132 ], [ 79.847344278315731, 10.809574402936333 ], [ 79.840222609086069, 10.809107978550342 ], [ 79.814591098900038, 10.81869395656082 ], [ 79.813040806188198, 10.826290391388453 ], [ 79.807459751166547, 10.830424506485766 ], [ 79.797537876371834, 10.83587637029825 ], [ 79.793300409386333, 10.845100613102771 ], [ 79.798054641208665, 10.850785020012664 ], [ 79.796297642022495, 10.854454047116574 ], [ 79.79557417161071, 10.858510646948785 ], [ 79.803428989756, 10.865176906688871 ], [ 79.802705520243521, 10.870809638553963 ], [ 79.79547081882319, 10.873496811928302 ], [ 79.789889763801483, 10.874737047176948 ], [ 79.784205356891661, 10.875072943961182 ], [ 79.774386834884453, 10.871843167328276 ], [ 79.771596306923968, 10.875512193532867 ], [ 79.772423130123329, 10.880834866136125 ], [ 79.770872837411474, 10.885279038696636 ], [ 79.767358839938467, 10.888560492172983 ], [ 79.758987257855594, 10.888638007438086 ], [ 79.750202263723438, 10.88352204040984 ], [ 79.742967564101761, 10.886570949889402 ], [ 79.739970330566265, 10.895691839906474 ], [ 79.731288690120877, 10.899593411007116 ], [ 79.72116010885189, 10.899696763794621 ], [ 79.712375115619054, 10.903779202048495 ], [ 79.705450474359822, 10.910445460889317 ], [ 79.706070591084853, 10.92129751257016 ], [ 79.714442173167683, 10.929048977028625 ], [ 79.71733605301641, 10.93530182471943 ], [ 79.710101353394677, 10.937265530379928 ], [ 79.704313591898696, 10.943621730858181 ], [ 79.705037063209858, 10.951554063369313 ], [ 79.72074669770187, 10.951683254578537 ], [ 79.732632277257764, 10.941115423737809 ], [ 79.737489861867545, 10.941709702940441 ], [ 79.742967564101761, 10.943828437332511 ], [ 79.744311151238591, 10.946644801916078 ], [ 79.743277621564957, 10.95958974956727 ], [ 79.739763624991241, 10.96827138911328 ], [ 79.733252394882044, 10.971113593017888 ], [ 79.728704867735402, 10.976074530415245 ], [ 79.730875278970913, 10.983205878148734 ], [ 79.737489861867545, 10.986228949206632 ], [ 79.75764367071875, 10.9806220575619 ], [ 79.777280714733109, 10.971811225008024 ] ] ], [ [ [ 79.72116010885189, 11.974644070367559 ], [ 79.731185337333415, 11.972938748024772 ], [ 79.76084760892995, 11.978132229418859 ], [ 79.768599074287778, 11.977486274272106 ], [ 79.772939894960103, 11.971931056772856 ], [ 79.772939894960103, 11.966892605009717 ], [ 79.771079542986499, 11.961311549988009 ], [ 79.768289015925276, 11.957022406159123 ], [ 79.754646438082588, 11.942604681960514 ], [ 79.753096145370748, 11.938031318190777 ], [ 79.754336378820739, 11.933871365571061 ], [ 79.757850376293774, 11.930848294513167 ], [ 79.767255487150962, 11.925293077013858 ], [ 79.771286248561438, 11.921779080440215 ], [ 79.777797478670649, 11.91415680629154 ], [ 79.783998651316651, 11.913614203033031 ], [ 79.791129999050142, 11.916818142143537 ], [ 79.811387159789533, 11.936325994948673 ], [ 79.825856560831568, 11.947074692942691 ], [ 79.849007603218283, 11.955084539819662 ], [ 79.849560964167139, 11.955175973892038 ], [ 79.849538607920394, 11.955064195356327 ], [ 79.84498131593493, 11.9332542993464 ], [ 79.820323113221022, 11.878648179669764 ], [ 79.810869171874728, 11.832976638361172 ], [ 79.810767043064558, 11.832973131005188 ], [ 79.804152460167856, 11.832740587008457 ], [ 79.777177361945675, 11.832353014280155 ], [ 79.755990025219404, 11.836538805321592 ], [ 79.750615675772778, 11.838373317974229 ], [ 79.745964796737937, 11.839329332382759 ], [ 79.741107212128085, 11.839303493961037 ], [ 79.73583621636827, 11.838399156395948 ], [ 79.731392042908382, 11.839070949964363 ], [ 79.727051223135376, 11.841628933028799 ], [ 79.718989699415005, 11.851395779091941 ], [ 79.71433882038022, 11.854651394146513 ], [ 79.708551059783517, 11.856718450795878 ], [ 79.703073358448691, 11.858113714776092 ], [ 79.699869419338185, 11.862402859504355 ], [ 79.69997277212569, 11.869043279923401 ], [ 79.705450474359822, 11.87906850840494 ], [ 79.708551059783517, 11.886742459396938 ], [ 79.711031529381529, 11.896250922142311 ], [ 79.711031529381529, 11.905397651480426 ], [ 79.709171177407868, 11.914130967869879 ], [ 79.705863884610537, 11.917799994074469 ], [ 79.698009068263829, 11.920771389188245 ], [ 79.694701776365818, 11.924957180229681 ], [ 79.693461542016479, 11.93015066252303 ], [ 79.693461542016479, 11.936481025478939 ], [ 79.69408165874151, 11.942604681960514 ], [ 79.693461542016479, 11.947410589726926 ], [ 79.690671014056008, 11.953740953582152 ], [ 79.672584262753489, 11.96970897139192 ], [ 79.670723910779799, 11.975858466295161 ], [ 79.672067498815963, 11.982292182038574 ], [ 79.676408318588969, 11.988906764935219 ], [ 79.686020135021167, 11.999939682870032 ], [ 79.686640252645518, 12.0004822861286 ], [ 79.688087192569853, 12.001360785272023 ], [ 79.692531366029669, 12.001980902896317 ], [ 79.698732537776365, 11.999112861469369 ], [ 79.707104119859167, 11.98932017698456 ], [ 79.712891879556523, 11.980535182852403 ], [ 79.72116010885189, 11.974644070367559 ] ] ], [ [ [ 75.396876254835249, 12.142928371846889 ], [ 75.396876254835249, 12.128769029167357 ], [ 75.382303501005694, 12.12907908842919 ], [ 75.371761508586687, 12.120474962349643 ], [ 75.357912225168988, 12.11285268820097 ], [ 75.348300408736847, 12.104248562121423 ], [ 75.337965121892793, 12.098383287158979 ], [ 75.330523715796772, 12.103137518981324 ], [ 75.323909132900141, 12.10690989797342 ], [ 75.309543084645597, 12.093706569702418 ], [ 75.30168826739957, 12.069754544336716 ], [ 75.30571902881006, 12.057636419884826 ], [ 75.304209832417811, 12.043158270237994 ], [ 75.264333530468008, 12.013332424551717 ], [ 75.260508659846707, 11.997788804010096 ], [ 75.276703321201282, 11.967433986089587 ], [ 75.245616081916623, 12.002915757156469 ], [ 75.239268424997746, 12.008368231608582 ], [ 75.233246290284043, 12.010484116948417 ], [ 75.228200716789601, 12.015082097860498 ], [ 75.224457226719593, 12.019354559265478 ], [ 75.222178582075841, 12.022040106665596 ], [ 75.221796503305924, 12.038645331017218 ], [ 75.222933383968424, 12.100166123867494 ], [ 75.240503371333475, 12.1092095004181 ], [ 75.258073357799134, 12.104610297327325 ], [ 75.27616010910171, 12.100967109544452 ], [ 75.28184451691088, 12.109080308309554 ], [ 75.288355747020077, 12.115488186530566 ], [ 75.302618443386365, 12.12303294541408 ], [ 75.309853143008112, 12.131998805800205 ], [ 75.322462192975792, 12.143393459840295 ], [ 75.338585240416464, 12.140551255935687 ], [ 75.354191522121013, 12.13520274491071 ], [ 75.369901158411707, 12.141300563869887 ], [ 75.38147667780639, 12.147579250881732 ], [ 75.396876254835249, 12.142928371846889 ] ] ], [ [ [ 82.217441847862958, 16.722958888741683 ], [ 82.23036095619311, 16.719315700958813 ], [ 82.263330519687685, 16.719651597743049 ], [ 82.272632276858047, 16.721951199288409 ], [ 82.279763624591538, 16.727428901522554 ], [ 82.287101677900054, 16.737686672202127 ], [ 82.291235792997412, 16.742079168818574 ], [ 82.294956496045387, 16.741691596090273 ], [ 82.298160435155893, 16.738177599516572 ], [ 82.301054315004578, 16.733294176485057 ], [ 82.301364374266399, 16.717662055459467 ], [ 82.295059848832906, 16.70962637016083 ], [ 82.284001091577039, 16.707404282981255 ], [ 82.271392043407985, 16.708515326121411 ], [ 82.2718054536587, 16.708411974233226 ], [ 82.266534457898885, 16.70308930073065 ], [ 82.285137974038193, 16.697869980914842 ], [ 82.272838983332392, 16.692314765214231 ], [ 82.260643345413982, 16.69032522203133 ], [ 82.248654413070639, 16.692159736482662 ], [ 82.22467654838394, 16.703657742410879 ], [ 82.201318801321563, 16.706577459781951 ], [ 82.189743280128241, 16.710427354039151 ], [ 82.177650994997393, 16.718592231446333 ], [ 82.177961053359851, 16.722933051219339 ], [ 82.184885694619069, 16.726369534326519 ], [ 82.192740512764402, 16.731795558817961 ], [ 82.199148390985414, 16.738461819457367 ], [ 82.20617638503208, 16.74414622636726 ], [ 82.213721144814912, 16.748280341464575 ], [ 82.221782667635964, 16.75029572216982 ], [ 82.213721144814912, 16.732441514863975 ], [ 82.217441847862958, 16.722958888741683 ] ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Tamil Nadu", "admin": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 80.313731316347102, 13.44090403938986 ], [ 80.306895378818609, 13.44090403938986 ], [ 80.277761263771239, 13.512518622336527 ], [ 80.277757267184072, 13.512528423148179 ], [ 80.278542108231633, 13.51434337015041 ], [ 80.285156691128336, 13.523180040226631 ], [ 80.288104472743186, 13.527068062141323 ], [ 80.309580925319409, 13.479315497712035 ], [ 80.313731316347102, 13.44090403938986 ] ] ], [ [ [ 80.10253217981618, 13.459359645830997 ], [ 80.112040642561539, 13.457421780390856 ], [ 80.136638624872589, 13.459669705092775 ], [ 80.152761672313304, 13.459411321775061 ], [ 80.2022676943985, 13.448481757527073 ], [ 80.225625440561586, 13.450600491019825 ], [ 80.259215121680469, 13.466000068048682 ], [ 80.260145297667279, 13.468377183060507 ], [ 80.260168796952357, 13.468436103043697 ], [ 80.260174932127356, 13.468451486846616 ], [ 80.260183139340356, 13.468451239533064 ], [ 80.265879754546958, 13.46824778950389 ], [ 80.26238040523144, 13.451239325334594 ], [ 80.274750195964685, 13.440008856023891 ], [ 80.293142123210359, 13.429144597844921 ], [ 80.306895378818609, 13.413031317041655 ], [ 80.312266471820166, 13.423163152957098 ], [ 80.313731316347102, 13.427232164332903 ], [ 80.326996290446388, 13.430365302516687 ], [ 80.333994988178105, 13.413031317041655 ], [ 80.344004753716362, 13.375433661534258 ], [ 80.347829623438301, 13.349066473538922 ], [ 80.345550976995966, 13.321234441915916 ], [ 80.336273633721177, 13.270941473470199 ], [ 80.334157748381344, 13.242905992717393 ], [ 80.323741081885359, 13.246893622642572 ], [ 80.319834832511489, 13.249172268185585 ], [ 80.318044466678757, 13.23090241131723 ], [ 80.313731316347102, 13.21503327036913 ], [ 80.318207226881938, 13.216986395505725 ], [ 80.334157748381344, 13.221177476359454 ], [ 80.332774285304978, 13.1981468774764 ], [ 80.324229363394323, 13.180365302116964 ], [ 80.31381269599909, 13.164292710240371 ], [ 80.306895378818609, 13.146063544097272 ], [ 80.307139518673779, 13.135646877601285 ], [ 80.313731316347102, 13.105780341189753 ], [ 80.307953321488569, 13.096014716406042 ], [ 80.289724155345468, 13.076727606693677 ], [ 80.285817905072207, 13.067572332896813 ], [ 80.282725456714431, 13.029364325503192 ], [ 80.269053581657417, 12.95726146014823 ], [ 80.263194207146896, 12.835353907856526 ], [ 80.251719597081689, 12.762518622036735 ], [ 80.233653191141769, 12.711004950717889 ], [ 80.228688998198649, 12.674994208316033 ], [ 80.222178581975911, 12.659979559109328 ], [ 80.203868035281559, 12.632147528385698 ], [ 80.196462435692794, 12.613714911314101 ], [ 80.185069207078172, 12.567124742213078 ], [ 80.183360221796747, 12.546820380556081 ], [ 80.179698113177309, 12.532619533264834 ], [ 80.156016471682776, 12.474514065171942 ], [ 80.121267122879345, 12.41681549713746 ], [ 80.117035352199693, 12.400946356189364 ], [ 80.095957879352611, 12.362250067286764 ], [ 80.087168815788147, 12.351019597976059 ], [ 80.063731315947436, 12.337469794195609 ], [ 80.05982506567419, 12.334214585634582 ], [ 80.057465040479187, 12.331244208553354 ], [ 80.025726759482311, 12.276516018499418 ], [ 80.005137566345567, 12.2560488948406 ], [ 79.952159050499716, 12.229925848499075 ], [ 79.943858269343579, 12.217840887446979 ], [ 79.953135613517688, 12.213568426941318 ], [ 79.973806186306419, 12.222398179432444 ], [ 80.005137566345567, 12.241766669696059 ], [ 79.947601759413629, 12.153631903189758 ], [ 79.93360436305089, 12.138739325259618 ], [ 79.927500846886488, 12.129868882043237 ], [ 79.896983268762796, 12.068752346143864 ], [ 79.870127800157803, 12.03742096610466 ], [ 79.861827019001666, 12.022040106665596 ], [ 79.860524936476608, 12.01154205961836 ], [ 79.861827019001666, 11.977972722962758 ], [ 79.859629754009902, 11.972723700338459 ], [ 79.850352409835793, 11.959133204933435 ], [ 79.849560964167139, 11.955175973892038 ], [ 79.849007603218283, 11.955084539819662 ], [ 79.825856560831568, 11.947074692942691 ], [ 79.811387159789533, 11.936325994948673 ], [ 79.791129999050142, 11.916818142143537 ], [ 79.783998651316651, 11.913614203033031 ], [ 79.777797478670649, 11.91415680629154 ], [ 79.771286248561438, 11.921779080440215 ], [ 79.767255487150962, 11.925293077013858 ], [ 79.757850376293774, 11.930848294513167 ], [ 79.754336378820739, 11.933871365571061 ], [ 79.753096145370748, 11.938031318190777 ], [ 79.754646438082588, 11.942604681960514 ], [ 79.768289015925276, 11.957022406159123 ], [ 79.771079542986499, 11.961311549988009 ], [ 79.772939894960103, 11.966892605009717 ], [ 79.772939894960103, 11.971931056772856 ], [ 79.768599074287778, 11.977486274272106 ], [ 79.76084760892995, 11.978132229418859 ], [ 79.731185337333415, 11.972938748024772 ], [ 79.72116010885189, 11.974644070367559 ], [ 79.712891879556523, 11.980535182852403 ], [ 79.707104119859167, 11.98932017698456 ], [ 79.698732537776365, 11.999112861469369 ], [ 79.692531366029669, 12.001980902896317 ], [ 79.688087192569853, 12.001360785272023 ], [ 79.686640252645518, 12.0004822861286 ], [ 79.686020135021167, 11.999939682870032 ], [ 79.676408318588969, 11.988906764935219 ], [ 79.672067498815963, 11.982292182038574 ], [ 79.670723910779799, 11.975858466295161 ], [ 79.672584262753489, 11.96970897139192 ], [ 79.690671014056008, 11.953740953582152 ], [ 79.693461542016479, 11.947410589726926 ], [ 79.69408165874151, 11.942604681960514 ], [ 79.693461542016479, 11.936481025478939 ], [ 79.693461542016479, 11.93015066252303 ], [ 79.694701776365818, 11.924957180229681 ], [ 79.698009068263829, 11.920771389188245 ], [ 79.705863884610537, 11.917799994074469 ], [ 79.709171177407868, 11.914130967869879 ], [ 79.711031529381529, 11.905397651480426 ], [ 79.711031529381529, 11.896250922142311 ], [ 79.708551059783517, 11.886742459396938 ], [ 79.705450474359822, 11.87906850840494 ], [ 79.69997277212569, 11.869043279923401 ], [ 79.699869419338185, 11.862402859504355 ], [ 79.703073358448691, 11.858113714776092 ], [ 79.708551059783517, 11.856718450795878 ], [ 79.71433882038022, 11.854651394146513 ], [ 79.718989699415005, 11.851395779091941 ], [ 79.727051223135376, 11.841628933028799 ], [ 79.731392042908382, 11.839070949964363 ], [ 79.73583621636827, 11.838399156395948 ], [ 79.741107212128085, 11.839303493961037 ], [ 79.745964796737937, 11.839329332382759 ], [ 79.750615675772778, 11.838373317974229 ], [ 79.755990025219404, 11.836538805321592 ], [ 79.777177361945675, 11.832353014280155 ], [ 79.804152460167856, 11.832740587008457 ], [ 79.810767043064558, 11.832973131005188 ], [ 79.810869171874728, 11.832976638361172 ], [ 79.803233269399783, 11.796087957992878 ], [ 79.792735222352562, 11.78807200741721 ], [ 79.785899284824069, 11.769191799561892 ], [ 79.767100457520073, 11.673651434366203 ], [ 79.763438347101982, 11.634263413925392 ], [ 79.754161003827193, 11.596991277925095 ], [ 79.751963737936123, 11.57697174684864 ], [ 79.757334831836971, 11.5360781920549 ], [ 79.78077233167771, 11.465073960095195 ], [ 79.785980665375334, 11.426174221163363 ], [ 79.792979363107051, 11.426174221163363 ], [ 79.797373893989956, 11.434881903277185 ], [ 79.799164258923369, 11.442206122314699 ], [ 79.797618034744445, 11.448309637579708 ], [ 79.792979363107051, 11.453517971277334 ], [ 79.809336784664808, 11.451361395212185 ], [ 79.816661003702322, 11.44306061405609 ], [ 79.821950717051877, 11.391058661228211 ], [ 79.819346550203065, 11.381496486473676 ], [ 79.810313346783502, 11.378892320524185 ], [ 79.782725456814291, 11.378892320524185 ], [ 79.776052280388384, 11.380357164151802 ], [ 79.769297722511837, 11.380926825312711 ], [ 79.758799675464587, 11.378363348289893 ], [ 79.749847851696956, 11.373683985927185 ], [ 79.740407748218942, 11.366441148340297 ], [ 79.684336784914635, 11.312201238896021 ], [ 79.676280144513029, 11.296454169224488 ], [ 79.683116082041508, 11.296454169224488 ], [ 79.696299674690167, 11.303412177130266 ], [ 79.742035352049797, 11.335598048910809 ], [ 79.751963737936123, 11.340521552028004 ], [ 79.75928795697358, 11.358343817213379 ], [ 79.776377799895485, 11.362982488850774 ], [ 79.796885613380283, 11.359035549650853 ], [ 79.82374108198529, 11.346665757118952 ], [ 79.829925976902274, 11.346096095958043 ], [ 79.833018425260079, 11.341986395655622 ], [ 79.834971550396673, 11.263861395586899 ], [ 79.855316601879608, 11.159857489031875 ], [ 79.852224155320457, 11.006984767832758 ], [ 79.846690300317036, 10.979844468647283 ], [ 79.846688115863785, 10.97983369386986 ], [ 79.824926384844716, 10.984756170860576 ], [ 79.806116164029717, 10.985427965328311 ], [ 79.789993116589002, 10.975919500784299 ], [ 79.785032180090965, 10.970906887442878 ], [ 79.777280714733109, 10.971811225008024 ], [ 79.75764367071875, 10.9806220575619 ], [ 79.737489861867545, 10.986228949206632 ], [ 79.730875278970913, 10.983205878148734 ], [ 79.728704867735402, 10.976074530415245 ], [ 79.733252394882044, 10.971113593017888 ], [ 79.739763624991241, 10.96827138911328 ], [ 79.743277621564957, 10.95958974956727 ], [ 79.744311151238591, 10.946644801916078 ], [ 79.742967564101761, 10.943828437332511 ], [ 79.737489861867545, 10.941709702940441 ], [ 79.732632277257764, 10.941115423737809 ], [ 79.72074669770187, 10.951683254578537 ], [ 79.705037063209858, 10.951554063369313 ], [ 79.704313591898696, 10.943621730858181 ], [ 79.710101353394677, 10.937265530379928 ], [ 79.71733605301641, 10.93530182471943 ], [ 79.714442173167683, 10.929048977028625 ], [ 79.706070591084853, 10.92129751257016 ], [ 79.705450474359822, 10.910445460889317 ], [ 79.712375115619054, 10.903779202048495 ], [ 79.72116010885189, 10.899696763794621 ], [ 79.731288690120877, 10.899593411007116 ], [ 79.739970330566265, 10.895691839906474 ], [ 79.742967564101761, 10.886570949889402 ], [ 79.750202263723438, 10.88352204040984 ], [ 79.758987257855594, 10.888638007438086 ], [ 79.767358839938467, 10.888560492172983 ], [ 79.770872837411474, 10.885279038696636 ], [ 79.772423130123329, 10.880834866136125 ], [ 79.771596306923968, 10.875512193532867 ], [ 79.774386834884453, 10.871843167328276 ], [ 79.784205356891661, 10.875072943961182 ], [ 79.789889763801483, 10.874737047176948 ], [ 79.79547081882319, 10.873496811928302 ], [ 79.802705520243521, 10.870809638553963 ], [ 79.803428989756, 10.865176906688871 ], [ 79.79557417161071, 10.858510646948785 ], [ 79.796297642022495, 10.854454047116574 ], [ 79.798054641208665, 10.850785020012664 ], [ 79.793300409386333, 10.845100613102771 ], [ 79.797537876371834, 10.83587637029825 ], [ 79.807459751166547, 10.830424506485766 ], [ 79.813040806188198, 10.826290391388453 ], [ 79.814591098900038, 10.81869395656082 ], [ 79.840222609086069, 10.809107978550342 ], [ 79.847344278315731, 10.809574402936333 ], [ 79.84986412922612, 10.755194403398999 ], [ 79.850271030183862, 10.592108466632393 ], [ 79.859629754009902, 10.551459052593199 ], [ 79.863780144138303, 10.378729559621487 ], [ 79.856700065855279, 10.293280341414626 ], [ 79.85132897195443, 10.282212632307104 ], [ 79.834320508684456, 10.278753973716901 ], [ 79.81462649801442, 10.272406317697401 ], [ 79.79509524844687, 10.269232489687621 ], [ 79.778575065786626, 10.275376695677945 ], [ 79.780039910313562, 10.296616929627586 ], [ 79.757090691082482, 10.309068100912098 ], [ 79.633148634002211, 10.328599351378951 ], [ 79.62126712297929, 10.324164130670054 ], [ 79.614105665044335, 10.309556382421075 ], [ 79.630381706950146, 10.310492255613097 ], [ 79.646494987753428, 10.309637762073063 ], [ 79.661794467540616, 10.307074285949508 ], [ 79.676280144513029, 10.302720444892598 ], [ 79.684580924769804, 10.298732814967421 ], [ 79.694672070859312, 10.291652736684453 ], [ 79.703623893727681, 10.289048569835639 ], [ 79.730804884537733, 10.289048569835639 ], [ 79.75896243566784, 10.282212632307104 ], [ 79.773692254294062, 10.27366771039652 ], [ 79.772471550521615, 10.261704820620933 ], [ 79.759776238482559, 10.258246161131407 ], [ 79.580088738504443, 10.29588450736412 ], [ 79.563487175292877, 10.297105210237246 ], [ 79.556651237764328, 10.29865143441617 ], [ 79.552744988390458, 10.302720444892598 ], [ 79.551768425372458, 10.313299872491084 ], [ 79.556895379418151, 10.316066799543135 ], [ 79.565196159674983, 10.315741278237393 ], [ 79.573903841788805, 10.31696198111052 ], [ 79.604014518954827, 10.329087631988612 ], [ 79.607106967312617, 10.336004950068396 ], [ 79.586924675133602, 10.343695380237588 ], [ 79.56771894597253, 10.335882880590473 ], [ 79.528575066286223, 10.338324286336727 ], [ 79.53223717490566, 10.330023505180632 ], [ 79.53223717490566, 10.323187567652097 ], [ 79.511485222464998, 10.316595769978788 ], [ 79.459727410391608, 10.308294988822635 ], [ 79.437266471770187, 10.309556382421075 ], [ 79.411957227344132, 10.320990302660332 ], [ 79.398122592083936, 10.324652411279768 ], [ 79.385508659696811, 10.3201358091203 ], [ 79.363780144238177, 10.301906642977197 ], [ 79.304942253881876, 10.268133856292421 ], [ 79.286143424779183, 10.252834377404552 ], [ 79.272227409867, 10.23444245015895 ], [ 79.270274284730405, 10.223334052124811 ], [ 79.270681185688133, 10.209540106690552 ], [ 79.269216342060517, 10.19782135587087 ], [ 79.26197350447363, 10.192857163827055 ], [ 79.248301629416616, 10.189195054308298 ], [ 79.240000847361145, 10.179754949931008 ], [ 79.236338737842445, 10.16657135638297 ], [ 79.237478061063641, 10.151922919207321 ], [ 79.244313997692799, 10.084947006998787 ], [ 79.254161003927138, 10.054266669571117 ], [ 79.279063347395535, 10.035834052499521 ], [ 79.24073326872535, 10.010565497000071 ], [ 79.200368686165902, 9.970282294092611 ], [ 79.14185631621595, 9.89118073100593 ], [ 79.121348504529792, 9.850246486386196 ], [ 79.103526238445099, 9.830145575657751 ], [ 79.100840691044979, 9.826076565181323 ], [ 79.094086134067808, 9.802313544034801 ], [ 79.077810092161982, 9.782171942581041 ], [ 79.03882897177958, 9.747219142849131 ], [ 78.980804884237941, 9.667181708369124 ], [ 78.979828321219983, 9.658636786458485 ], [ 78.980235222177697, 9.649115302429264 ], [ 78.977305534922408, 9.637925522944498 ], [ 78.972829623488266, 9.631293036344514 ], [ 78.962087435686541, 9.622707424607936 ], [ 78.956797722336987, 9.617499090910313 ], [ 78.947520379062198, 9.602850652835341 ], [ 78.938324415439396, 9.583685614399597 ], [ 78.931488477011541, 9.561672268360494 ], [ 78.9253035820946, 9.513617255631855 ], [ 78.91325931086844, 9.474269924117662 ], [ 78.915293815657023, 9.453029690168078 ], [ 78.933441602148179, 9.416449286605255 ], [ 78.959727410491524, 9.384955145463604 ], [ 79.039886915348788, 9.314683334867992 ], [ 79.074717643804192, 9.299872137489158 ], [ 79.115570508771924, 9.291245835027267 ], [ 79.251719597281564, 9.28851959870053 ], [ 79.273773634045924, 9.296698309479378 ], [ 79.297129754234703, 9.312648830079407 ], [ 79.320078971667144, 9.323309637329883 ], [ 79.341075065761615, 9.315863347915181 ], [ 79.345713738298329, 9.306545315713718 ], [ 79.342539910288593, 9.299017644848389 ], [ 79.33668053487871, 9.290472722937805 ], [ 79.333669467072227, 9.278265692407782 ], [ 79.335703971860752, 9.267645574983304 ], [ 79.340586785151956, 9.260931707832013 ], [ 79.34522545678935, 9.255926825062884 ], [ 79.347341342129184, 9.250311591306852 ], [ 79.353526237945488, 9.240912177654875 ], [ 79.367930535265927, 9.227606511930956 ], [ 79.438243034788158, 9.176336981366601 ], [ 79.453623894227277, 9.15900299769015 ], [ 79.44027754047606, 9.151353257346953 ], [ 79.424001497670915, 9.159084377342138 ], [ 79.361013217186184, 9.21344635626434 ], [ 79.292735222452478, 9.250311591306852 ], [ 79.232432488468518, 9.257879950199536 ], [ 79.216970248478148, 9.267401434228814 ], [ 79.201019726978728, 9.266506252661426 ], [ 79.184092644260062, 9.271795966010982 ], [ 79.165375195708677, 9.274237372656613 ], [ 79.12940514403212, 9.256333726020612 ], [ 79.098643425153895, 9.257228908487319 ], [ 79.087168815988022, 9.253810940622369 ], [ 79.060801628892008, 9.26459381735077 ], [ 79.025726758782852, 9.273749091147634 ], [ 78.988942905190854, 9.278265692407782 ], [ 78.956797722336987, 9.274847723643514 ], [ 78.94898522179048, 9.270493882586605 ], [ 78.928965690713966, 9.253810940622369 ], [ 78.918467643666787, 9.251613673831967 ], [ 78.911306185731846, 9.252142645166938 ], [ 78.904470248203367, 9.253566798968562 ], [ 78.895518425334984, 9.253810940622369 ], [ 78.861013217286072, 9.248968817157161 ], [ 78.843760613261665, 9.243963934388033 ], [ 78.81519616027451, 9.228420315645051 ], [ 78.777110222358814, 9.219387111326112 ], [ 78.761566601817194, 9.209702867093652 ], [ 78.75196373813597, 9.200588283122725 ], [ 78.740733268825224, 9.192816473301603 ], [ 78.727793816031735, 9.18744538030006 ], [ 78.676280143813514, 9.184149481013716 ], [ 78.661306186231428, 9.177191473107994 ], [ 78.655121290415181, 9.161566472914386 ], [ 78.648936393699543, 9.151434636998884 ], [ 78.634776238032927, 9.144598700369725 ], [ 78.618825717432827, 9.14052968989324 ], [ 78.485850456932994, 9.124823309148379 ], [ 78.449880405256451, 9.116603908543537 ], [ 78.412119987747161, 9.099839585128732 ], [ 78.377452019495067, 9.077460027957894 ], [ 78.239756706806517, 8.96556224210377 ], [ 78.21762129039017, 8.938950914253267 ], [ 78.182790561035503, 8.877101955191049 ], [ 78.1779077477443, 8.86107005403977 ], [ 78.174489779879409, 8.794419664036239 ], [ 78.170420769402924, 8.771877346662221 ], [ 78.162364129001318, 8.753485419416561 ], [ 78.175791863303786, 8.76390208501317 ], [ 78.188731316097332, 8.765448309192093 ], [ 78.200450066017694, 8.76968007987176 ], [ 78.210215690801462, 8.788275458045915 ], [ 78.215179883744597, 8.765448309192093 ], [ 78.20460045704543, 8.753322658314001 ], [ 78.186534050206191, 8.744940497505921 ], [ 78.169200066529797, 8.733628648543284 ], [ 78.164805534747572, 8.726507880434324 ], [ 78.154958530311873, 8.69887929884055 ], [ 78.140472852440141, 8.680609441972136 ], [ 78.136729363269453, 8.669867255069731 ], [ 78.142588737779974, 8.657904364394879 ], [ 78.114593945953786, 8.657904364394879 ], [ 78.135508660396326, 8.625799872266269 ], [ 78.142344597025485, 8.593085028251435 ], [ 78.1282658210108, 8.488023179026468 ], [ 78.123301628966914, 8.477525131979233 ], [ 78.114593945953786, 8.466131903364611 ], [ 78.087168816187884, 8.440497137632802 ], [ 78.07984459715037, 8.431952216621481 ], [ 78.062754754228465, 8.373195705017734 ], [ 78.055918815800666, 8.363714911713769 ], [ 78.038828971979441, 8.360907293936462 ], [ 77.999766471945051, 8.344916083510439 ], [ 77.806162957054752, 8.228664455700082 ], [ 77.793467644116433, 8.215318101049489 ], [ 77.768321159893532, 8.181545315264087 ], [ 77.752452018945448, 8.173814195268902 ], [ 77.643809440753031, 8.155707098603726 ], [ 77.595225456689406, 8.138983465914178 ], [ 77.56104576904697, 8.114569403055496 ], [ 77.565277539726637, 8.082505601652199 ], [ 77.510915560804435, 8.075995184530141 ], [ 77.449717644353754, 8.087469794595334 ], [ 77.31560306153203, 8.127752997502794 ], [ 77.308604362900994, 8.130926825512573 ], [ 77.29468834708949, 8.14704010631584 ], [ 77.286794466891067, 8.153509833611905 ], [ 77.262950066092614, 8.168402411542045 ], [ 77.238942905090923, 8.175116278693279 ], [ 77.225271030033966, 8.184393621968068 ], [ 77.12875410182032, 8.271795966210844 ], [ 77.110362175473981, 8.285183010687375 ], [ 77.110349214444668, 8.285192397810873 ], [ 77.118528273261163, 8.293499253887431 ], [ 77.121318801221648, 8.294584459505186 ], [ 77.127209913706494, 8.295127060965056 ], [ 77.146020135420855, 8.293111681159131 ], [ 77.154701775866187, 8.295902208220296 ], [ 77.162349888436538, 8.301715807238677 ], [ 77.165553826647709, 8.307451890092635 ], [ 77.167104120258884, 8.314350693829452 ], [ 77.167310825833894, 8.320810247994528 ], [ 77.165863885010239, 8.331507270044481 ], [ 77.16607059058525, 8.336933295435243 ], [ 77.170824823306916, 8.34804372773584 ], [ 77.181986931551577, 8.368352566217935 ], [ 77.203484328438932, 8.393570665254002 ], [ 77.212165968884321, 8.4077816838776 ], [ 77.215886671932296, 8.418788764290012 ], [ 77.214129672746125, 8.427573757522849 ], [ 77.205964797137625, 8.456202501244432 ], [ 77.204724561888995, 8.465349228783849 ], [ 77.205034621150773, 8.474728502118635 ], [ 77.206068149925144, 8.478914293160072 ], [ 77.2079285009995, 8.480645453025202 ], [ 77.210098911335635, 8.479999497878508 ], [ 77.212476027246836, 8.478216661169936 ], [ 77.219400669405317, 8.471317857433176 ], [ 77.224671665165189, 8.467597154385144 ], [ 77.23273318888549, 8.46945750635882 ], [ 77.244102003604539, 8.476511338827207 ], [ 77.262912225318914, 8.495915838844891 ], [ 77.27262739543788, 8.510566107939495 ], [ 77.278828566285242, 8.526404934540095 ], [ 77.278518507922726, 8.536507677387361 ], [ 77.274797804874751, 8.54673961054459 ], [ 77.269113397065581, 8.555498765355706 ], [ 77.2509232929755, 8.575290839001012 ], [ 77.203794386801448, 8.611981106442895 ], [ 77.196042922342912, 8.621050320515847 ], [ 77.191185336833755, 8.629835312849421 ], [ 77.18767134026011, 8.639369614915777 ], [ 77.185914341073939, 8.64905894571376 ], [ 77.185294224348908, 8.665750433935385 ], [ 77.183743930737748, 8.673889472021527 ], [ 77.180643345314067, 8.682596950888579 ], [ 77.178886346127896, 8.695231838378616 ], [ 77.180746698101558, 8.703680934827274 ], [ 77.192115512820621, 8.718512071075223 ], [ 77.235420363159193, 8.784141139701829 ], [ 77.252680292161685, 8.839925848798883 ], [ 77.253403761674221, 8.850726222736965 ], [ 77.252163527324896, 8.854446925784996 ], [ 77.249269646576906, 8.859097804819838 ], [ 77.243998650817019, 8.864756375106591 ], [ 77.235833775208491, 8.871190089950685 ], [ 77.217540318330961, 8.881292832798009 ], [ 77.202554151552803, 8.894160265184096 ], [ 77.191392043308085, 8.921161200029358 ], [ 77.16803429624575, 8.984232286490792 ], [ 77.164933709922749, 9.001001288178882 ], [ 77.166690708209543, 9.003946844870994 ], [ 77.173511996681256, 9.009915473520264 ], [ 77.210098911335635, 9.035211086022796 ], [ 77.229942660925005, 9.064149889006158 ], [ 77.254540643236041, 9.122105007540027 ], [ 77.312108189041652, 9.3008796254943 ], [ 77.338876580789517, 9.344003607780278 ], [ 77.363474562201233, 9.416169744937745 ], [ 77.369779086735406, 9.429037177323833 ], [ 77.375876905694597, 9.43727956819748 ], [ 77.403782179903644, 9.461076564831613 ], [ 77.404505650315443, 9.486372179132728 ], [ 77.398614536031957, 9.499963080132032 ], [ 77.367608677298549, 9.536498317943026 ], [ 77.360373976777538, 9.549779161479078 ], [ 77.352519158632205, 9.568692735081639 ], [ 77.34724816287239, 9.575772405971746 ], [ 77.340633579076368, 9.579958197013182 ], [ 77.33391564339216, 9.580810859533525 ], [ 77.316138951351476, 9.580268256275017 ], [ 77.30869754435615, 9.578717963563177 ], [ 77.263222283681372, 9.557375597206031 ], [ 77.254540643236041, 9.557220567575142 ], [ 77.243998650817019, 9.558305772293521 ], [ 77.238520948582888, 9.562956651328362 ], [ 77.229529249774984, 9.57218089413294 ], [ 77.225188430001978, 9.57582408281513 ], [ 77.219297315718492, 9.57879547792896 ], [ 77.212476027246836, 9.58127594572829 ], [ 77.204207797951469, 9.583368841698697 ], [ 77.197593215054752, 9.585771796031564 ], [ 77.192735630444901, 9.588097235998644 ], [ 77.189635044121914, 9.59127533578811 ], [ 77.186844517060749, 9.596778876443976 ], [ 77.186534457798913, 9.603781032968296 ], [ 77.18767134026011, 9.612772731776145 ], [ 77.235420363159193, 9.764675605195007 ], [ 77.237590772596022, 9.778809109452821 ], [ 77.237694126282847, 9.796637478336946 ], [ 77.231389601748646, 9.818677475784851 ], [ 77.225911900413834, 9.858881740699754 ], [ 77.226842076400644, 9.871826687451627 ], [ 77.229322544200031, 9.883402207745688 ], [ 77.256711052672912, 9.936525580091425 ], [ 77.260225051045182, 9.952364406692025 ], [ 77.260225051045182, 9.962208767120897 ], [ 77.239554478256522, 10.025305691104732 ], [ 77.224258254015169, 10.057810167505234 ], [ 77.224361606802674, 10.0655616319637 ], [ 77.227772250588856, 10.07594859475182 ], [ 77.274797804874751, 10.173565374942084 ], [ 77.279035271860252, 10.19180715587555 ], [ 77.279138624647757, 10.202891751553066 ], [ 77.276968215210943, 10.210100612753079 ], [ 77.272937452901076, 10.214208889428674 ], [ 77.260535109407712, 10.222192897883927 ], [ 77.254540643236041, 10.230667832754246 ], [ 77.248649529851875, 10.24462046985877 ], [ 77.247099237140034, 10.265110175494213 ], [ 77.241621534905889, 10.284437161146057 ], [ 77.234903599221681, 10.29373891831642 ], [ 77.211649204047475, 10.333710639234594 ], [ 77.207825148211995, 10.338516547001003 ], [ 77.19149539609559, 10.351306464121988 ], [ 77.167930942558911, 10.344717718747685 ], [ 77.13175743995383, 10.325158189099112 ], [ 77.087522413628434, 10.309500230551178 ], [ 77.074810011772556, 10.303273220382774 ], [ 77.064578077716064, 10.296296902280172 ], [ 77.020343052289974, 10.25503327106861 ], [ 76.986339960021084, 10.231287950378597 ], [ 76.969803501430405, 10.224699205004297 ], [ 76.956987745887702, 10.22345897155429 ], [ 76.942001580908183, 10.231598008741114 ], [ 76.936730585148311, 10.233458359815414 ], [ 76.92804894380366, 10.23555125578582 ], [ 76.921847772056978, 10.239039414837121 ], [ 76.912959426036636, 10.247255968188368 ], [ 76.892908969972936, 10.270226142522459 ], [ 76.880816684842088, 10.281491604453944 ], [ 76.869241163648709, 10.290405788896008 ], [ 76.848880650121856, 10.303118190751885 ], [ 76.841542595914049, 10.310662950534718 ], [ 76.838131952127853, 10.321127427688619 ], [ 76.837718540078512, 10.333762315178715 ], [ 76.840509068038997, 10.360530706926564 ], [ 76.838131952127853, 10.372881375375185 ], [ 76.831827426694346, 10.384741116509302 ], [ 76.817564732126627, 10.405075792513797 ], [ 76.812913853091771, 10.415256048827583 ], [ 76.81012332603062, 10.425255438887403 ], [ 76.808573033318766, 10.43711518002152 ], [ 76.811673617843141, 10.468922024431889 ], [ 76.821388787962164, 10.490962021879792 ], [ 76.822008904687138, 10.495767931444842 ], [ 76.822939080674004, 10.499333603962608 ], [ 76.826659783721979, 10.551552638743258 ], [ 76.821078728700328, 10.633175564500673 ], [ 76.822835727886485, 10.645836290412431 ], [ 76.829346957995639, 10.652967638145979 ], [ 76.839268832790353, 10.654285386861089 ], [ 76.851567824395516, 10.657463487549874 ], [ 76.863763462313884, 10.663587144031451 ], [ 76.875545689082216, 10.678495795544503 ], [ 76.878542921718392, 10.693068549374059 ], [ 76.878852980080907, 10.730404771063316 ], [ 76.881333448779614, 10.742884629821786 ], [ 76.887327914951285, 10.75895600041906 ], [ 76.88949832618674, 10.76957550720385 ], [ 76.889705030862416, 10.780039985257073 ], [ 76.886914503801265, 10.791770535182023 ], [ 76.883607211903254, 10.797351589304409 ], [ 76.878026157780923, 10.801072293251705 ], [ 76.870584750785596, 10.803630276316195 ], [ 76.862523227964545, 10.807893581723418 ], [ 76.854358352356016, 10.814895738247682 ], [ 76.847950474135004, 10.825437729767426 ], [ 76.843919711825194, 10.834894517467999 ], [ 76.838958775327143, 10.850733344068543 ], [ 76.834411249079821, 10.861275336487548 ], [ 76.828726841270651, 10.86959524172698 ], [ 76.819838495250323, 10.87595144310461 ], [ 76.768988885128891, 10.899309190167001 ], [ 76.719586215831143, 10.914036974526764 ], [ 76.703773227652263, 10.921891790873415 ], [ 76.69044070817209, 10.933363959279289 ], [ 76.677521599841938, 10.956256619247538 ], [ 76.673387485643886, 10.974937648853368 ], [ 76.672457309657077, 10.989303697107912 ], [ 76.674421014418257, 11.002868761484136 ], [ 76.678451775828748, 11.01723480883936 ], [ 76.682585890926063, 11.02576142055312 ], [ 76.687650181110925, 11.033461209067521 ], [ 76.69292117687074, 11.038267116833934 ], [ 76.700259230179299, 11.041290187891828 ], [ 76.70873416504962, 11.041600247153665 ], [ 76.717932570331797, 11.039119778455015 ], [ 76.737672967133662, 11.030257269957016 ], [ 76.746457961265875, 11.028939521241908 ], [ 76.755656365648733, 11.031497504306341 ], [ 76.762581007807213, 11.036561794491202 ], [ 76.76754194520457, 11.046096096557617 ], [ 76.766508417329575, 11.052219753039136 ], [ 76.761340772558555, 11.056793117708194 ], [ 76.754106072936892, 11.060281276759495 ], [ 76.745527785279009, 11.070616562704171 ], [ 76.737156203196193, 11.086894639775776 ], [ 76.72630415241467, 11.121750392766385 ], [ 76.719172804681122, 11.138726100928803 ], [ 76.71028445776146, 11.149991562860347 ], [ 76.702119582152918, 11.155882677143833 ], [ 76.695608352043777, 11.162316391987869 ], [ 76.688580357097734, 11.173814398815464 ], [ 76.687650181110925, 11.18141083454236 ], [ 76.689820591447116, 11.189162299000881 ], [ 76.696331821556257, 11.200479437775808 ], [ 76.701292758953613, 11.212597561328378 ], [ 76.703773227652263, 11.23076182699668 ], [ 76.702739698877949, 11.238048204361119 ], [ 76.698398879104943, 11.240063585066364 ], [ 76.691060825796441, 11.236342882018388 ], [ 76.662638787649868, 11.21554311802049 ], [ 76.655714146390693, 11.211822414972458 ], [ 76.641244745348658, 11.208644314283671 ], [ 76.57344526638586, 11.20515615523237 ], [ 76.550294223999217, 11.200324408144919 ], [ 76.540682407567019, 11.200427760932424 ], [ 76.531070591134807, 11.202753200899506 ], [ 76.506886020873125, 11.213372708583618 ], [ 76.500994908388279, 11.214845486030354 ], [ 76.495827263617272, 11.215078030027028 ], [ 76.490452915069952, 11.213915310043486 ], [ 76.466268344808185, 11.205233668698837 ], [ 76.456656529275378, 11.204691067238965 ], [ 76.448388299080676, 11.206861477575101 ], [ 76.441050245772189, 11.214070338775114 ], [ 76.440326776259653, 11.223372096844797 ], [ 76.44415083209519, 11.234094957316413 ], [ 76.464821404883864, 11.262258613044535 ], [ 76.473709750904206, 11.270707709493193 ], [ 76.533757766307801, 11.313134059789032 ], [ 76.542749465115648, 11.337964586096744 ], [ 76.516704542880277, 11.352098090354557 ], [ 76.495413853366571, 11.384757595486629 ], [ 76.485181919310079, 11.392509059945153 ], [ 76.472779575816702, 11.398090114966802 ], [ 76.461410760198405, 11.40129405407731 ], [ 76.448181594405, 11.406332505840449 ], [ 76.439396600272843, 11.412611191952918 ], [ 76.418932733059108, 11.431628119242303 ], [ 76.409114211051971, 11.436821601535652 ], [ 76.300800408811739, 11.47033376738943 ], [ 76.256255324123842, 11.478446967053854 ], [ 76.246953566054145, 11.48710276907752 ], [ 76.242509392594329, 11.495241807163664 ], [ 76.241579216607505, 11.498781643058349 ], [ 76.241579216607505, 11.500280259826123 ], [ 76.240752395206798, 11.504517726811626 ], [ 76.239202101595623, 11.510331325830007 ], [ 76.237031691259503, 11.515188910439857 ], [ 76.233000929848998, 11.522191066964181 ], [ 76.230520461150306, 11.529141547544381 ], [ 76.231140577875337, 11.536660468006174 ], [ 76.236618280109468, 11.552654324237663 ], [ 76.237341749622004, 11.560328274330399 ], [ 76.232277460336462, 11.576968084809264 ], [ 76.231760694600311, 11.585675564575636 ], [ 76.234137811410832, 11.594357205020968 ], [ 76.240752395206798, 11.603969021453166 ], [ 76.266073846131036, 11.600842596708445 ], [ 76.277235956174408, 11.595339056951897 ], [ 76.299456821674923, 11.587535916549312 ], [ 76.315579868216318, 11.58691579802564 ], [ 76.339247673641168, 11.591489162694698 ], [ 76.351443311559507, 11.60037750871504 ], [ 76.360435012166008, 11.611978868330082 ], [ 76.365809360713385, 11.622055771856365 ], [ 76.374180942796187, 11.631590073922776 ], [ 76.386273227927106, 11.639703274486518 ], [ 76.402499628155269, 11.643191433537819 ], [ 76.410664503763812, 11.646136990229875 ], [ 76.415315382798653, 11.648746650137749 ], [ 76.417795852396608, 11.652157293923947 ], [ 76.419036085846628, 11.656808172958787 ], [ 76.419346145108463, 11.659598700019954 ], [ 76.415935500422947, 11.666833401440325 ], [ 76.421413201757829, 11.677401231381735 ], [ 76.425133904805804, 11.682698066462589 ], [ 76.430818311715626, 11.68944184056846 ], [ 76.439396600272843, 11.697632555498044 ], [ 76.451282179828681, 11.70662425430589 ], [ 76.46533816882139, 11.714969997967042 ], [ 76.48373497938573, 11.719543361736724 ], [ 76.503578728975114, 11.719155789008424 ], [ 76.532207472696641, 11.709078884582821 ], [ 76.544093052252535, 11.697115789761877 ], [ 76.549260695224845, 11.684480903171103 ], [ 76.547193637676216, 11.663526109542316 ], [ 76.547503696937994, 11.654146837106849 ], [ 76.550190871211697, 11.645439358239795 ], [ 76.556805454108357, 11.638773098499653 ], [ 76.5669340353774, 11.633760484258913 ], [ 76.583367141180574, 11.631409206769488 ], [ 76.605381301106135, 11.631176662772758 ], [ 76.750798781038881, 11.642338771916794 ], [ 76.766921827580219, 11.640452582420719 ], [ 76.820768671237133, 11.625595607751105 ], [ 76.826969842084495, 11.632830308272101 ], [ 76.832447544318626, 11.641873683923334 ], [ 76.844229771087029, 11.704712226388093 ], [ 76.8683109876619, 11.745614122393816 ], [ 76.907688430276764, 11.800184433764567 ], [ 76.918230421796508, 11.807341619919779 ], [ 76.931459589388496, 11.812018337376342 ], [ 76.953163690052222, 11.81276764620986 ], [ 76.96804650314354, 11.814576321340152 ], [ 76.987476840683584, 11.82315460899798 ], [ 76.997398716377617, 11.825919298536801 ], [ 77.012694939719637, 11.821966051492039 ], [ 77.02654422403667, 11.814033718081586 ], [ 77.082561477130398, 11.756776231537852 ], [ 77.096204054973086, 11.750420030160225 ], [ 77.10736616411711, 11.752745470127307 ], [ 77.114807570213131, 11.76579376876742 ], [ 77.118734978836173, 11.78641266471271 ], [ 77.121938917946679, 11.79253632209355 ], [ 77.130827263967007, 11.796670437190924 ], [ 77.14508996033338, 11.800391140238897 ], [ 77.172891879956225, 11.804189358552035 ], [ 77.220950962117158, 11.802277329734974 ], [ 77.234800246434176, 11.8058688424731 ], [ 77.247719353865065, 11.812405911003962 ], [ 77.259191522270868, 11.816901760407912 ], [ 77.272007276914266, 11.816281642783562 ], [ 77.280998976621419, 11.811708279013825 ], [ 77.298258904724648, 11.806437283254009 ], [ 77.306630486807464, 11.802432359365863 ], [ 77.324820590897488, 11.787704575905421 ], [ 77.338566522426987, 11.783467108919918 ], [ 77.353862745769021, 11.783699652916649 ], [ 77.378977492017583, 11.79083099975082 ], [ 77.40812299967665, 11.79160614700606 ], [ 77.418975051357492, 11.795740261204056 ], [ 77.433857862650186, 11.811527410961217 ], [ 77.442746209569847, 11.828580634388741 ], [ 77.461969842434243, 11.882401637825295 ], [ 77.468997837380229, 11.894700629430472 ], [ 77.484914178346614, 11.915577907794212 ], [ 77.489771762956465, 11.926119900213221 ], [ 77.505894810397123, 11.935189114286173 ], [ 77.517677036266122, 11.94035675725854 ], [ 77.622890253082673, 11.949736029694005 ], [ 77.642320590622688, 11.954128526310395 ], [ 77.651105584754859, 11.957900906201868 ], [ 77.659683872412742, 11.962939357964954 ], [ 77.670845981556766, 11.971310940047825 ], [ 77.682628208325099, 11.996761583080568 ], [ 77.717148065430806, 12.039032905544159 ], [ 77.725933058663699, 12.058049831934168 ], [ 77.736164991820871, 12.065697944504505 ], [ 77.745466749890554, 12.074922187309081 ], [ 77.75249474483654, 12.081872666989964 ], [ 77.755698683947045, 12.084559841263623 ], [ 77.759419386995063, 12.088358059576759 ], [ 77.761899854794407, 12.092182115412298 ], [ 77.764070266029918, 12.096290391188573 ], [ 77.765827264316769, 12.10068288780502 ], [ 77.768101027440395, 12.110036321818766 ], [ 77.768721145064745, 12.114919744850338 ], [ 77.768721145064745, 12.120035711878584 ], [ 77.765000441117408, 12.12907908842919 ], [ 77.736785109445222, 12.174089260211188 ], [ 77.728723585724865, 12.179696152755238 ], [ 77.724486117840044, 12.184812119783484 ], [ 77.698647902078946, 12.198015448054489 ], [ 77.667848748920605, 12.203880723916253 ], [ 77.492148878867596, 12.205456855049814 ], [ 77.483363884735454, 12.207549750120844 ], [ 77.478402948237417, 12.214551907544488 ], [ 77.480470004886783, 12.231501777285185 ], [ 77.476542596263741, 12.241707872020637 ], [ 77.464760370394728, 12.249304306848272 ], [ 77.464760370394728, 12.261525784087663 ], [ 77.466310663106569, 12.264729723198169 ], [ 77.471891717228885, 12.274238185943485 ], [ 77.479953240949257, 12.282532252761253 ], [ 77.490081822218286, 12.288940130982265 ], [ 77.529045851884504, 12.30821543979067 ], [ 77.560775181029712, 12.339660548995138 ], [ 77.572143995748746, 12.357954005872667 ], [ 77.590644159100606, 12.378237005933043 ], [ 77.598188917984132, 12.389890042391524 ], [ 77.604596796205144, 12.405780544036871 ], [ 77.618859490772792, 12.466629544218048 ], [ 77.619789666759672, 12.480659694789093 ], [ 77.615448846087347, 12.49197683446334 ], [ 77.61017785032746, 12.495439155092921 ], [ 77.602426384969633, 12.495258287040313 ], [ 77.593848098211126, 12.492803655864007 ], [ 77.586096632853284, 12.491615099257384 ], [ 77.580205520368438, 12.492493598400811 ], [ 77.576794874783602, 12.49502574304358 ], [ 77.574727818134235, 12.49944407808175 ], [ 77.574727818134235, 12.500064194806722 ], [ 77.581135694556608, 12.519158637361212 ], [ 77.581135694556608, 12.527220160182249 ], [ 77.576278110846076, 12.539157416581473 ], [ 77.571213819761937, 12.545281073063048 ], [ 77.568733351962564, 12.559569606951808 ], [ 77.571833937386245, 12.581764634929923 ], [ 77.585786573591434, 12.624087633337579 ], [ 77.60935102712817, 12.672792669745885 ], [ 77.63281212787733, 12.681215929571463 ], [ 77.640150181185888, 12.682068590293168 ], [ 77.6507955263924, 12.681603502299762 ], [ 77.669088983269916, 12.677107651996547 ], [ 77.678597446914623, 12.676177476009682 ], [ 77.689759556058604, 12.677960312718252 ], [ 77.701128370777653, 12.682120266237288 ], [ 77.744329868328734, 12.706899114802294 ], [ 77.753528272711577, 12.71030976038713 ], [ 77.760039503720051, 12.713797919438431 ], [ 77.765310500379229, 12.718733018414069 ], [ 77.764690382754878, 12.727853909330461 ], [ 77.761589797331212, 12.733331611564605 ], [ 77.757455682233896, 12.739403591202741 ], [ 77.75538862468521, 12.744777939750119 ], [ 77.756215447884571, 12.752942817157246 ], [ 77.760246210194381, 12.762761339164452 ], [ 77.778229607810076, 12.788056952566304 ], [ 77.78980512900344, 12.810742906060224 ], [ 77.801277297409271, 12.85655406351918 ], [ 77.845822382097168, 12.871540229398075 ], [ 77.895018344920615, 12.87278046284808 ], [ 77.904836866927823, 12.871462714132914 ], [ 77.91475874172248, 12.868362127809913 ], [ 77.92643761570335, 12.860920721713908 ], [ 77.934602492211226, 12.853453477196179 ], [ 77.941423780682882, 12.845288600688376 ], [ 77.947935011691399, 12.835702623577218 ], [ 77.964884882331418, 12.8164531522911 ], [ 77.975736932213621, 12.808805039720763 ], [ 77.987415806194434, 12.804360867160252 ], [ 78.002091912811451, 12.807151394221474 ], [ 78.007052850208808, 12.811259669997749 ], [ 78.00911990775748, 12.817512519487194 ], [ 78.010050082844984, 12.821801663316077 ], [ 78.013564081217325, 12.82758942301342 ], [ 78.029583774971215, 12.848699246273153 ], [ 78.040642531327677, 12.850327053350835 ], [ 78.05624881393156, 12.84593455673439 ], [ 78.089011671851139, 12.826039130301577 ], [ 78.133246698176521, 12.790511582843234 ], [ 78.163839145759923, 12.775292873867041 ], [ 78.229571568073339, 12.759893296838182 ], [ 78.27442671112378, 12.697442328001042 ], [ 78.299128046222322, 12.67501475692546 ], [ 78.352768181606265, 12.641502590172363 ], [ 78.378916456629142, 12.633880316923065 ], [ 78.388321568385649, 12.63245921542045 ], [ 78.398553500643501, 12.631916612161884 ], [ 78.419120720644671, 12.63264008257374 ], [ 78.425735305340012, 12.633828640079681 ], [ 78.43586388481036, 12.637704372758602 ], [ 78.447439406003738, 12.643517970877664 ], [ 78.490640903554819, 12.688347276405691 ], [ 78.495705193739624, 12.704625352577917 ], [ 78.49725548735077, 12.718629666525882 ], [ 78.496221957677136, 12.730954494754084 ], [ 78.49777225128831, 12.740023708827092 ], [ 78.500356072774466, 12.744803779071102 ], [ 78.504076775822497, 12.746121527786269 ], [ 78.510794712406025, 12.743124294250773 ], [ 78.516789177678376, 12.737233180866607 ], [ 78.524540643036218, 12.734210109808712 ], [ 78.53363569463157, 12.735992947416547 ], [ 78.571462843635274, 12.764595851817088 ], [ 78.577664016281275, 12.770486965201254 ], [ 78.582624952779312, 12.778212592137377 ], [ 78.610530226988359, 12.849939479723215 ], [ 78.628203566241538, 12.916240342817556 ], [ 78.635334913975029, 12.93368113897338 ], [ 78.637712029886231, 12.944197292970667 ], [ 78.639262322598071, 12.972335110277125 ], [ 78.642052849659237, 12.984117336146138 ], [ 78.644740024832203, 12.991997991813829 ], [ 78.65445519405192, 13.006338202545972 ], [ 78.661586541785397, 13.01365041833213 ], [ 78.670474887805753, 13.017991238105136 ], [ 78.682980584985941, 13.018301296467653 ], [ 78.695279575691785, 13.019954941966997 ], [ 78.703651157774658, 13.025846056250483 ], [ 78.709542271158824, 13.035096137476724 ], [ 78.717500441192371, 13.052407742423382 ], [ 78.724941848187697, 13.057782090970701 ], [ 78.736207310119241, 13.060960190760166 ], [ 78.776928338971615, 13.065895291534442 ], [ 78.799872673984652, 13.072871608737724 ], [ 78.81382531108919, 13.075739651064051 ], [ 78.858680454139616, 13.080468044464677 ], [ 78.869739211395412, 13.075093695917301 ], [ 78.875423618305305, 13.064344997923284 ], [ 78.878524203728986, 13.05194265442992 ], [ 78.883691847600602, 13.041142280491838 ], [ 78.891753371320974, 13.036672267710966 ], [ 78.901365186853852, 13.037809150172105 ], [ 78.91500776559586, 13.045560613731309 ], [ 78.922449171691866, 13.054578151860195 ], [ 78.926376581214228, 13.063208116361464 ], [ 78.927100050726708, 13.072148139225245 ], [ 78.930820753774739, 13.087005112995538 ], [ 78.936298456008885, 13.091655992030379 ], [ 78.944153273254898, 13.093387152794831 ], [ 78.961206495783117, 13.093232123163942 ], [ 78.985804478094153, 13.089408067328403 ], [ 78.992935825827644, 13.086875921786371 ], [ 78.99882693921181, 13.083749497940968 ], [ 79.002547642259842, 13.080726426883073 ], [ 79.005131463745997, 13.07625641500152 ], [ 79.008232049169678, 13.062097073221306 ], [ 79.012469517054498, 13.055585842212846 ], [ 79.020324335199845, 13.052717799886519 ], [ 79.046265903748392, 13.050289008031253 ], [ 79.057324660104911, 13.046878363345794 ], [ 79.066419711700277, 13.040987249961573 ], [ 79.077581821743635, 13.035587062992532 ], [ 79.092361281148143, 13.033933417493186 ], [ 79.11396202992367, 13.039436957249787 ], [ 79.149825474166263, 13.042382513941842 ], [ 79.161607700934596, 13.044914659483934 ], [ 79.172253046141108, 13.051839300743094 ], [ 79.179074334612821, 13.057678738183196 ], [ 79.204395786436336, 13.087961127404068 ], [ 79.23932905469205, 13.137983914326181 ], [ 79.250801223097923, 13.147750759489949 ], [ 79.262893508228771, 13.150618800916899 ], [ 79.277776320420784, 13.147983303486624 ], [ 79.287078077591147, 13.140102646919612 ], [ 79.294726190161484, 13.132273668095305 ], [ 79.303717888969331, 13.129276435459129 ], [ 79.314879999012689, 13.13198944725519 ], [ 79.329452752842244, 13.143564968448512 ], [ 79.350536736780938, 13.170023301833904 ], [ 79.369036900132798, 13.185965481221952 ], [ 79.378648715665619, 13.198212795084428 ], [ 79.386710240285296, 13.203716334840973 ], [ 79.42019656771734, 13.219994411912577 ], [ 79.426604445039047, 13.231931668311798 ], [ 79.427327914551583, 13.243558865449243 ], [ 79.424847446752196, 13.253584093031462 ], [ 79.424123977239702, 13.260586249555782 ], [ 79.425467564376547, 13.268156846860959 ], [ 79.435596144746214, 13.288026434872048 ], [ 79.437146438357374, 13.296475531320706 ], [ 79.438386671807422, 13.314123033051541 ], [ 79.440763787718581, 13.321538600725829 ], [ 79.444794549129057, 13.327352199744208 ], [ 79.449548780951417, 13.331150418057346 ], [ 79.466912062741457, 13.337248237016521 ], [ 79.490683220953812, 13.339883735346117 ], [ 79.505152621995862, 13.339470323296776 ], [ 79.522205845423386, 13.33624054576455 ], [ 79.533367953668105, 13.331150418057346 ], [ 79.544220005348876, 13.323528143908671 ], [ 79.556932408104089, 13.307844346939019 ], [ 79.564063754938303, 13.294072576987842 ], [ 79.57171186660932, 13.284073187827342 ], [ 79.582047154352651, 13.277897854502383 ], [ 79.600443964017671, 13.277458604031322 ], [ 79.667933383718648, 13.291282049926618 ], [ 79.680129021637001, 13.289137478012204 ], [ 79.688500603719802, 13.282936306265523 ], [ 79.692117953980343, 13.266761582880745 ], [ 79.691291131680359, 13.257072252082763 ], [ 79.689637486181013, 13.249449977934145 ], [ 79.691187778892854, 13.243248806187463 ], [ 79.69676883301517, 13.235807400091399 ], [ 79.720850051388695, 13.222526557454668 ], [ 79.736663038668254, 13.224102687688852 ], [ 79.755886672431913, 13.224102687688852 ], [ 79.764878371239803, 13.220821235111883 ], [ 79.776040480383799, 13.220821235111883 ], [ 79.78492882730346, 13.224025173323067 ], [ 79.790613234213353, 13.23526479683289 ], [ 79.790199823063332, 13.241931057472298 ], [ 79.786582472802806, 13.247692978747976 ], [ 79.780381301056124, 13.252679755466316 ], [ 79.773560011685134, 13.257098090504481 ], [ 79.766325311164152, 13.260586249555782 ], [ 79.760020785730632, 13.264539495701168 ], [ 79.755990025219404, 13.27017222756626 ], [ 79.754336378820739, 13.277045192881356 ], [ 79.754749789970774, 13.285261746232603 ], [ 79.75816043465629, 13.29329743153124 ], [ 79.764051548040456, 13.29807750087593 ], [ 79.775730422021283, 13.29825836802922 ], [ 79.784308709679166, 13.293995063521319 ], [ 79.798674757933696, 13.291928005073371 ], [ 79.816348098086209, 13.294925237709547 ], [ 79.873295526267484, 13.317197780952823 ], [ 79.956701287834093, 13.365773627051224 ], [ 79.964762810655131, 13.378460191384701 ], [ 79.965176222704457, 13.387555242980055 ], [ 79.963522577205126, 13.395358385181336 ], [ 79.960835402032131, 13.402308864862219 ], [ 79.960111931620276, 13.407631537465473 ], [ 79.961972283593965, 13.416545721907537 ], [ 79.969206984114962, 13.427139391169927 ], [ 79.984399854669491, 13.443701687283006 ], [ 79.999799431698349, 13.456465765982269 ], [ 80.01995324144886, 13.465224920793442 ], [ 80.042897577361231, 13.471787827746024 ], [ 80.049822218620463, 13.47618032526179 ], [ 80.054163039292789, 13.483854275354528 ], [ 80.054886508805254, 13.492070827806455 ], [ 80.053026157730969, 13.497264309200487 ], [ 80.048995396320421, 13.502251085019562 ], [ 80.040933871700744, 13.507237860838583 ], [ 80.034422641591604, 13.512560533441839 ], [ 80.029461704194247, 13.519381821913552 ], [ 80.028324822632413, 13.524110216213499 ], [ 80.030081821818598, 13.529665431914108 ], [ 80.034112583229089, 13.534135443795659 ], [ 80.041347283750085, 13.535866604560111 ], [ 80.047961866646787, 13.534445502158174 ], [ 80.069665969109138, 13.519381821913552 ], [ 80.084548781301166, 13.513051458957644 ], [ 80.108629998775342, 13.512121282970835 ], [ 80.110283645174007, 13.509227403122164 ], [ 80.109973585912186, 13.498788764389925 ], [ 80.108733351562847, 13.49390534135841 ], [ 80.106562941226727, 13.487833359921577 ], [ 80.10108523989183, 13.479384264372296 ], [ 80.099431594392485, 13.475120958065755 ], [ 80.097984653568844, 13.46917816783815 ], [ 80.09757124241888, 13.463752143346706 ], [ 80.10253217981618, 13.459359645830997 ] ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Gujarat", "admin": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.206269973180653, 24.630073147058052 ], [ 72.265904574736268, 24.635421658083029 ], [ 72.302491490290024, 24.643664048956673 ], [ 72.318511184043857, 24.645421047243524 ], [ 72.327502882851704, 24.6421654321889 ], [ 72.33246382024906, 24.635085761298846 ], [ 72.333393996235856, 24.627075914421876 ], [ 72.332153761886545, 24.621184801037707 ], [ 72.32843305883857, 24.6171540387279 ], [ 72.320061476755697, 24.613820909307485 ], [ 72.3085893092492, 24.611469630918684 ], [ 72.261667107750753, 24.608239854285834 ], [ 72.255775995265921, 24.606534531943051 ], [ 72.250711704181725, 24.603640652094377 ], [ 72.247197706708775, 24.599532376318102 ], [ 72.248748000319935, 24.59271108694707 ], [ 72.255362583216581, 24.584055284024139 ], [ 72.275206332805936, 24.568397325476148 ], [ 72.288952264335464, 24.56121430089922 ], [ 72.303111607014998, 24.557726141847915 ], [ 72.314893832883996, 24.557571113116349 ], [ 72.330706821962195, 24.555865789874296 ], [ 72.338458286420732, 24.552713528506494 ], [ 72.342385695043717, 24.548321030990785 ], [ 72.345279574892444, 24.539923611385511 ], [ 72.349206984414749, 24.532378852502003 ], [ 72.356028272886462, 24.524679063088278 ], [ 72.364399854969278, 24.522043564758686 ], [ 72.373081496313915, 24.522043564758686 ], [ 72.385690546281623, 24.524369004725763 ], [ 72.397266065676348, 24.525221666346788 ], [ 72.413595818692031, 24.522973740745496 ], [ 72.418556756089387, 24.517289333835656 ], [ 72.419693637651207, 24.509770413373868 ], [ 72.417729933789332, 24.500959580819991 ], [ 72.417419875426873, 24.49902171537985 ], [ 72.418763461664398, 24.488815618845699 ], [ 72.421967400774903, 24.481296698383908 ], [ 72.43209598204389, 24.464450182330037 ], [ 72.440777621589902, 24.446156725452504 ], [ 72.449149203672775, 24.434813748255856 ], [ 72.457004021818122, 24.430550441949318 ], [ 72.464962192750974, 24.42969778122761 ], [ 72.47157677564762, 24.431403103570339 ], [ 72.476434361156791, 24.433961087534154 ], [ 72.479534946580472, 24.436648260908491 ], [ 72.482635532903473, 24.440265611169018 ], [ 72.484805943239664, 24.443753770220322 ], [ 72.500928989781002, 24.496050320266015 ], [ 72.503616164054662, 24.500804552088365 ], [ 72.505579867916524, 24.503750107881153 ], [ 72.508060336615173, 24.506463121475857 ], [ 72.514881625986206, 24.509615382843599 ], [ 72.525113560042698, 24.5116049260265 ], [ 72.544543897582784, 24.510132148579764 ], [ 72.555706007626085, 24.506669827050867 ], [ 72.599527621902197, 24.480056464034586 ], [ 72.615650669342855, 24.474656277065488 ], [ 72.629913364809894, 24.471762397216814 ], [ 72.648826939311775, 24.469669501246464 ], [ 72.658335402057077, 24.466801458920195 ], [ 72.667637160126773, 24.460936183957692 ], [ 72.673528272611605, 24.453520616283406 ], [ 72.679109327633327, 24.444322211001229 ], [ 72.690581496039144, 24.416675320109896 ], [ 72.696162551060851, 24.407554430092826 ], [ 72.703914016418693, 24.399906318421809 ], [ 72.717556594261382, 24.390242825146224 ], [ 72.73367964080272, 24.384274197396273 ], [ 72.747012160282949, 24.38065684713575 ], [ 72.796208124005645, 24.377478746446965 ], [ 72.835688917609431, 24.376910304766731 ], [ 72.860907016645442, 24.37189769142531 ], [ 72.897390577612995, 24.360580553549703 ], [ 72.911239861930014, 24.360115465556241 ], [ 72.924572381410229, 24.363396918133269 ], [ 72.949687127658748, 24.379416611887105 ], [ 72.954958124317926, 24.384945990065368 ], [ 72.958678827365901, 24.390061957093614 ], [ 72.960745884015282, 24.396030584843569 ], [ 72.961469354427138, 24.401043199084363 ], [ 72.961366000740313, 24.411326809084919 ], [ 72.961986118364592, 24.415512600126359 ], [ 72.963949823125787, 24.420396023157931 ], [ 72.967050409448788, 24.423961697474333 ], [ 72.969737582823129, 24.428069973250668 ], [ 72.971081170859279, 24.432539985132159 ], [ 72.972011345946825, 24.43964549444399 ], [ 72.972218052421155, 24.453443101018248 ], [ 72.972838169146129, 24.458223171262311 ], [ 72.974491814645475, 24.464191799012266 ], [ 72.978832635317787, 24.472175808366838 ], [ 72.984310336652683, 24.480108140877967 ], [ 72.994542270709175, 24.490055854094347 ], [ 72.999709913681528, 24.493285630727254 ], [ 73.004980910340663, 24.494164129870676 ], [ 73.014902785135376, 24.494810085916694 ], [ 73.029785598226724, 24.497368068981181 ], [ 73.062031691309457, 24.507367459041003 ], [ 73.079705030562636, 24.509124457327793 ], [ 73.09107384618099, 24.507212429410053 ], [ 73.095001254804032, 24.503646755093651 ], [ 73.096551548415206, 24.50111461045088 ], [ 73.097275017927686, 24.499719347369986 ], [ 73.099652133838816, 24.492743028368061 ], [ 73.100995720975703, 24.485094915797728 ], [ 73.100995720975703, 24.463416653555722 ], [ 73.098721957852021, 24.442513535870937 ], [ 73.090143671093514, 24.420783595886228 ], [ 73.089833611831679, 24.415900172854656 ], [ 73.09159061101785, 24.410965073879019 ], [ 73.097275017927686, 24.404298814138937 ], [ 73.105026483285528, 24.398743598438269 ], [ 73.115155063655195, 24.394351100922556 ], [ 73.165694615414097, 24.378383084012111 ], [ 73.173446078973299, 24.377711290443695 ], [ 73.179543897932476, 24.379649155883836 ], [ 73.186158481728498, 24.384713446967961 ], [ 73.196700474147505, 24.390475369142955 ], [ 73.203935173769182, 24.391095485867929 ], [ 73.211996698388859, 24.387426458764018 ], [ 73.216027459799406, 24.379700832727217 ], [ 73.216647577423686, 24.369029649098984 ], [ 73.213340284626369, 24.356136379190495 ], [ 73.207965936079049, 24.346679592389243 ], [ 73.200317824408032, 24.33959992149914 ], [ 73.192669711837695, 24.33613759997024 ], [ 73.180887485968682, 24.333269558543286 ], [ 73.165694615414097, 24.333269558543286 ], [ 73.15174197830963, 24.334690660045901 ], [ 73.141613397040572, 24.336706040751146 ], [ 73.137169223580756, 24.335930894395226 ], [ 73.135102166931389, 24.330556545847905 ], [ 73.134068638157075, 24.321539007719021 ], [ 73.13076134625905, 24.31347748489798 ], [ 73.122389764176248, 24.305364285233559 ], [ 73.113708123730859, 24.29931814221845 ], [ 73.107506951984178, 24.29229014727246 ], [ 73.080325148186986, 24.226841945799144 ], [ 73.077534621125821, 24.214336249518279 ], [ 73.079291620311992, 24.204311021036798 ], [ 73.094381138079015, 24.179558009994132 ], [ 73.101615838600011, 24.159430040463967 ], [ 73.107196892722399, 24.149585680035095 ], [ 73.117325473991386, 24.13899201077265 ], [ 73.140063104328746, 24.128656724827973 ], [ 73.148227979937289, 24.122843125809592 ], [ 73.161973910567482, 24.106823432055698 ], [ 73.169415317562795, 24.101914171501786 ], [ 73.189465772727189, 24.09374929499392 ], [ 73.19659712136, 24.086566270417048 ], [ 73.200731235558052, 24.078633937905913 ], [ 73.203935173769182, 24.062795112204633 ], [ 73.207965936079049, 24.0540359564942 ], [ 73.229773391328919, 24.029515489448269 ], [ 73.245586378608408, 24.015537013922021 ], [ 73.255818311765651, 24.014916897197047 ], [ 73.294678990442989, 24.038817247517947 ], [ 73.303670689250836, 24.045457668836317 ], [ 73.312662388058726, 24.055999661255321 ], [ 73.319690383004726, 24.067523504705942 ], [ 73.331265904198048, 24.093826809359761 ], [ 73.338087192669761, 24.103025213742619 ], [ 73.346768833115078, 24.108115343248464 ], [ 73.35410688732297, 24.104730536085352 ], [ 73.388523390741838, 24.057472438702057 ], [ 73.395964796837845, 24.042227892203467 ], [ 73.39875532389901, 24.02905040145486 ], [ 73.398341912749046, 24.007527167045104 ], [ 73.39875532389901, 24.002307848128677 ], [ 73.399375440624041, 23.99982737942997 ], [ 73.406196729995074, 23.985719712694554 ], [ 73.418185663237722, 23.968614814222285 ], [ 73.423870070147572, 23.940942084009968 ], [ 73.418289016025241, 23.935567735462595 ], [ 73.405783318845053, 23.926705226964653 ], [ 73.391313917803004, 23.919393012077812 ], [ 73.375397576836676, 23.90895437334563 ], [ 73.368162876315623, 23.899626776854227 ], [ 73.364028762117627, 23.889084784435219 ], [ 73.363408645392596, 23.876837470572802 ], [ 73.365579054829468, 23.851929429899254 ], [ 73.365062289992622, 23.839578762349955 ], [ 73.356897414384136, 23.794361884093629 ], [ 73.358137647834141, 23.787359727569363 ], [ 73.361651646206468, 23.784233302824639 ], [ 73.39493126806353, 23.785886949223304 ], [ 73.403302850146332, 23.783949082883844 ], [ 73.411674432229219, 23.779220689483218 ], [ 73.4185990743877, 23.770926621766129 ], [ 73.424386834984418, 23.760100409406327 ], [ 73.430898065093558, 23.742840481303169 ], [ 73.438959588813916, 23.729404609035434 ], [ 73.449708285908599, 23.719792791703977 ], [ 73.462730747026328, 23.714702663996714 ], [ 73.489085727624158, 23.710491034533614 ], [ 73.497974073644556, 23.706356920335562 ], [ 73.502728306366222, 23.701706041300721 ], [ 73.509859654099714, 23.691396592878444 ], [ 73.510789829187203, 23.684497789141624 ], [ 73.508619418851069, 23.678038234976547 ], [ 73.504485304653016, 23.669511624162105 ], [ 73.502004835954367, 23.65930552852728 ], [ 73.501694776692531, 23.634268297543876 ], [ 73.499834425618175, 23.619540514083436 ], [ 73.500764601605042, 23.607319036844039 ], [ 73.504175246290544, 23.602642320286858 ], [ 73.513580357147745, 23.599851793225636 ], [ 73.524432407929211, 23.603107408280259 ], [ 73.536524693060116, 23.6111430935789 ], [ 73.556471796336297, 23.628971462463021 ], [ 73.566393671130967, 23.63540517820638 ], [ 73.579829543398645, 23.635172634209706 ], [ 73.5944022972282, 23.62739533132946 ], [ 73.61538292837939, 23.601789659565092 ], [ 73.620550572251076, 23.582591865122478 ], [ 73.619103631427421, 23.561559557127843 ], [ 73.61538292837939, 23.544454656856882 ], [ 73.616519809941209, 23.524972643372784 ], [ 73.621790805701082, 23.512337754983371 ], [ 73.629542271058924, 23.498152573882177 ], [ 73.631712681395058, 23.487739773571658 ], [ 73.629645623846429, 23.474458930035546 ], [ 73.618793573064906, 23.451876329329135 ], [ 73.627165155147722, 23.438698839479848 ], [ 73.666129184813983, 23.441825263325196 ], [ 73.676877882808, 23.436528429143657 ], [ 73.698375278796021, 23.416322944348387 ], [ 73.710674270401213, 23.415031033155621 ], [ 73.789532504821167, 23.439809881720628 ], [ 73.803485141925691, 23.438802192267357 ], [ 73.811856724008564, 23.43461640122592 ], [ 73.818161249442056, 23.424255275960199 ], [ 73.855574986396419, 23.369555772480901 ], [ 73.885443963568022, 23.339221707315911 ], [ 73.895675896725194, 23.335113429740993 ], [ 73.904460890857408, 23.333382269875806 ], [ 73.911592237691579, 23.33457082828107 ], [ 73.91986046698689, 23.336973781714612 ], [ 73.925441522008597, 23.340126043981737 ], [ 73.929162225056572, 23.344079291026443 ], [ 73.931642693755279, 23.348420111698765 ], [ 73.93557010327757, 23.357566840137562 ], [ 73.938463983126255, 23.362191880750679 ], [ 73.946422154059107, 23.362269395116467 ], [ 73.959547967065006, 23.358832912908607 ], [ 73.995721469670045, 23.330307521974525 ], [ 74.030034621200784, 23.297673855264176 ], [ 74.083674758383367, 23.271525580241295 ], [ 74.097524041801066, 23.260027574313078 ], [ 74.105792271096377, 23.247676906763839 ], [ 74.107445916595722, 23.235532944789547 ], [ 74.106102328559558, 23.222277940574482 ], [ 74.106102328559558, 23.207265937173243 ], [ 74.108996210206882, 23.191117052210185 ], [ 74.121915317637757, 23.17021393542478 ], [ 74.134731073180419, 23.161428941292563 ], [ 74.146720004624427, 23.158069973450488 ], [ 74.157261997043491, 23.160007838890628 ], [ 74.165220167976287, 23.162772529328716 ], [ 74.171731398085498, 23.166493232376745 ], [ 74.184753859203212, 23.177500311889837 ], [ 74.193125441286028, 23.177164415105658 ], [ 74.205941196828732, 23.172074286499079 ], [ 74.233329706200919, 23.1558995631143 ], [ 74.244905227394256, 23.141300970863078 ], [ 74.252553339065273, 23.12882111300393 ], [ 74.256377394900809, 23.118408310894832 ], [ 74.274154086941479, 23.090089627334404 ], [ 74.2815954930375, 23.085438748299563 ], [ 74.292860955868363, 23.080942897996344 ], [ 74.301542596313695, 23.07574941750158 ], [ 74.308053827322212, 23.06947073048979 ], [ 74.316115350143235, 23.054872138238572 ], [ 74.323453404351071, 23.03606191742352 ], [ 74.343917270665457, 22.986917628745566 ], [ 74.354976027022005, 22.898938504308482 ], [ 74.35931684769433, 22.883797308798755 ], [ 74.365001254604167, 22.874960638722481 ], [ 74.370582309625817, 22.872790229285606 ], [ 74.377093539735014, 22.872170112560635 ], [ 74.384741652305351, 22.873281154801411 ], [ 74.392493116763873, 22.876459255490197 ], [ 74.400864698846746, 22.881601060040843 ], [ 74.412543572827573, 22.879637356179042 ], [ 74.426599561820268, 22.871627509302066 ], [ 74.451921013643798, 22.840931708031857 ], [ 74.459052362276665, 22.822457384001037 ], [ 74.458122186289799, 22.804112250280124 ], [ 74.376370070222535, 22.651046657777037 ], [ 74.368928664126528, 22.641176458926392 ], [ 74.36024702278182, 22.632417304115272 ], [ 74.350118443311473, 22.624588324391645 ], [ 74.338026158180625, 22.617999579017347 ], [ 74.330171340035278, 22.615234890377845 ], [ 74.31787234932942, 22.61360708330022 ], [ 74.292137486355884, 22.613994656028517 ], [ 74.280768670737515, 22.61223765684235 ], [ 74.272707147017158, 22.609653836255511 ], [ 74.197569614745859, 22.555600287023587 ], [ 74.161189405666491, 22.516662095779051 ], [ 74.151474237346108, 22.510305894401476 ], [ 74.139898716152786, 22.505810044997581 ], [ 74.129666782995614, 22.50387217955744 ], [ 74.1197449082009, 22.504388943494913 ], [ 74.063107538382141, 22.520899562764605 ], [ 74.057629836147996, 22.521364650758013 ], [ 74.050395134727623, 22.520537828457968 ], [ 74.04243696469409, 22.516429551782377 ], [ 74.033445265886243, 22.509634100833061 ], [ 74.024866978228417, 22.491340643955535 ], [ 74.025693801427721, 22.479610094030587 ], [ 74.036029087372455, 22.468473823308269 ], [ 74.081814406409691, 22.427830308821679 ], [ 74.09814415942536, 22.416926581196716 ], [ 74.113026970718039, 22.41067373350597 ], [ 74.124395786336422, 22.410957953446765 ], [ 74.164393344776997, 22.416719876521082 ], [ 74.196536085971545, 22.414937038913187 ], [ 74.221547479432601, 22.409433499156645 ], [ 74.234569939650939, 22.403361517719866 ], [ 74.243561639358106, 22.394783230061982 ], [ 74.245732048794977, 22.385610663201525 ], [ 74.244491815344972, 22.375404568466017 ], [ 74.239634229835801, 22.36584442797794 ], [ 74.234259881288423, 22.358893948297062 ], [ 74.224338005594447, 22.34920461749908 ], [ 74.211728957425393, 22.340497137732708 ], [ 74.196536085971545, 22.332693997330065 ], [ 74.180102980168357, 22.327087103886694 ], [ 74.148683710284942, 22.321040960871635 ], [ 74.136798129829785, 22.320911770561729 ], [ 74.126876255035071, 22.323004666532139 ], [ 74.120054965664096, 22.326957913576841 ], [ 74.105792271096377, 22.340497137732708 ], [ 74.098454216888541, 22.345845648757681 ], [ 74.091426222841875, 22.348687851762911 ], [ 74.084914991833358, 22.349411323074087 ], [ 74.078403761724175, 22.347990221571472 ], [ 74.072202589977493, 22.344295356045841 ], [ 74.065691358968962, 22.334890245188653 ], [ 74.059386835334109, 22.320627549721618 ], [ 74.0563896017986, 22.294169216336226 ], [ 74.058560012134805, 22.276754259501441 ], [ 74.063831007894677, 22.258305772093699 ], [ 74.065588006181471, 22.245179959087803 ], [ 74.064141066257136, 22.215388495382733 ], [ 74.066208123805822, 22.205621650218966 ], [ 74.071479119565694, 22.197792670495343 ], [ 74.088222283731383, 22.183814194969095 ], [ 74.096387160239189, 22.173504747446142 ], [ 74.106515740608913, 22.152369085764686 ], [ 74.111063266856249, 22.135522568811492 ], [ 74.114163853179249, 22.112449041689896 ], [ 74.11726443860293, 22.102036241379434 ], [ 74.123258904774602, 22.093277086568257 ], [ 74.132457310056779, 22.08446625401438 ], [ 74.140622185665265, 22.071469631318386 ], [ 74.141862420913967, 22.062813829294779 ], [ 74.129046665371263, 22.024650784406155 ], [ 74.128839959796238, 21.951761175937516 ], [ 74.061040479934135, 21.94031484595336 ], [ 73.97463748573135, 21.901169949133809 ], [ 73.965025669299152, 21.887785752810196 ], [ 73.942701451011132, 21.874608262960972 ], [ 73.91758670386325, 21.866882636024791 ], [ 73.899499952560731, 21.869828192716902 ], [ 73.870871209738468, 21.854661160584094 ], [ 73.832940707947259, 21.84355072738412 ], [ 73.824155714714408, 21.842155463403909 ], [ 73.809376255309914, 21.836471056494013 ], [ 73.797594029440845, 21.813423366894821 ], [ 73.796043735829684, 21.805155138498826 ], [ 73.79676720624154, 21.794483953971277 ], [ 73.805035434637517, 21.766527003818165 ], [ 73.806068964311223, 21.753840440384007 ], [ 73.803485141925691, 21.739784451391298 ], [ 73.807515904235558, 21.724514065571665 ], [ 73.815680779844044, 21.714152940305947 ], [ 73.827359653824928, 21.707409166200016 ], [ 73.837178175832079, 21.697590644192864 ], [ 73.83914187969394, 21.682191067164009 ], [ 73.828599888174253, 21.650926825112887 ], [ 73.810926548021754, 21.634726264205707 ], [ 73.792736443931673, 21.626742254851134 ], [ 73.762040642661447, 21.623770859737359 ], [ 73.754082472627985, 21.618835760761723 ], [ 73.751602003929278, 21.611032620359136 ], [ 73.757183058950986, 21.596304836898693 ], [ 73.763280877910148, 21.585659490792857 ], [ 73.792736443931673, 21.552586575410086 ], [ 73.800177850027737, 21.540468450958194 ], [ 73.811236607283533, 21.518040879882669 ], [ 73.815577427056539, 21.511529648874156 ], [ 73.820848422816397, 21.508325711562346 ], [ 73.827256301037423, 21.509049181074825 ], [ 73.856401808696475, 21.520883083787275 ], [ 73.923891229296757, 21.531321723418781 ], [ 73.954897088929485, 21.543775742856209 ], [ 73.995928176144375, 21.555325426527183 ], [ 74.018975864844236, 21.558891099944272 ], [ 74.03788943934606, 21.559330349516014 ], [ 74.108996210206882, 21.552612412932486 ], [ 74.119434848939065, 21.554834500112062 ], [ 74.125119255848958, 21.559407863881798 ], [ 74.128736607008747, 21.56485972679496 ], [ 74.131837193331748, 21.567779445964611 ], [ 74.137211541879125, 21.569717312304075 ], [ 74.146513299049488, 21.570699164235002 ], [ 74.155504998756655, 21.568838813160703 ], [ 74.161499464928326, 21.566229153252774 ], [ 74.169354283073673, 21.560053819028493 ], [ 74.175555453921035, 21.553232530556837 ], [ 74.182583448867021, 21.547418932437775 ], [ 74.191575147674868, 21.545506904520035 ], [ 74.229609003152902, 21.552431544879873 ], [ 74.239634229835801, 21.555377102471308 ], [ 74.248832635117978, 21.559640407878472 ], [ 74.265369093708657, 21.569536445150785 ], [ 74.272913852592168, 21.572740383361968 ], [ 74.279838494750706, 21.574032294554733 ], [ 74.285419548873037, 21.573102118567867 ], [ 74.288830193558553, 21.570647488290938 ], [ 74.291310663156523, 21.566306668517932 ], [ 74.297201775641369, 21.553077500925891 ], [ 74.299578891552571, 21.545506904520035 ], [ 74.300819125901896, 21.536980291906954 ], [ 74.299992302702535, 21.527911077833945 ], [ 74.296788365390725, 21.520185451797143 ], [ 74.291517367832213, 21.513855088841236 ], [ 74.280768670737515, 21.505405992392632 ], [ 74.264955681659316, 21.496362615842024 ], [ 74.24056440582261, 21.486130683584175 ], [ 74.108686150945033, 21.451559150534361 ], [ 74.098247512212865, 21.450913194488287 ], [ 74.087395461431342, 21.452876899249468 ], [ 74.063417595845337, 21.462695421256679 ], [ 74.053495721050624, 21.465718492314572 ], [ 74.042230259119137, 21.46179108279221 ], [ 74.030448033250067, 21.452101751994228 ], [ 74.007090285288399, 21.427245388164117 ], [ 73.991897413834508, 21.416186631807584 ], [ 73.974430780156339, 21.406859036215504 ], [ 73.960168084689286, 21.394379177457036 ], [ 73.946422154059107, 21.373501899093352 ], [ 73.929472284318408, 21.308518784714121 ], [ 73.918620232637565, 21.291568914973418 ], [ 73.909628533829718, 21.286918035938577 ], [ 73.853714634422815, 21.267771918339342 ], [ 73.841312290030132, 21.265808214477484 ], [ 73.832010532859769, 21.268495387851821 ], [ 73.81661095583091, 21.283507392152384 ], [ 73.808446079323048, 21.285884508063582 ], [ 73.800074497240232, 21.280949408188629 ], [ 73.792736443931673, 21.264878038490675 ], [ 73.77744021969032, 21.216638088277129 ], [ 73.766898228170618, 21.203796495212085 ], [ 73.755632766239131, 21.197156072994343 ], [ 73.744470656195787, 21.19508901634503 ], [ 73.733205194264229, 21.191264960509493 ], [ 73.723386672257092, 21.186278183791153 ], [ 73.71470503091237, 21.180593776881263 ], [ 73.69806522043352, 21.165581773480024 ], [ 73.696101515672325, 21.164677435914935 ], [ 73.693000930248658, 21.164884142389266 ], [ 73.687419875227008, 21.166434434201726 ], [ 73.680288526594197, 21.169173285318831 ], [ 73.671606887048114, 21.171627916495137 ], [ 73.662615187340961, 21.172480577216838 ], [ 73.653726841320605, 21.170232652514866 ], [ 73.646595492687808, 21.166511949466891 ], [ 73.639154086591802, 21.164522406283989 ], [ 73.632022739757574, 21.165917670264257 ], [ 73.576935662650655, 21.194598089929908 ], [ 73.566703728594163, 21.197595323465404 ], [ 73.55833214741061, 21.198112087402873 ], [ 73.553474561901439, 21.195476589073333 ], [ 73.551924270088918, 21.190670681306866 ], [ 73.552751092388959, 21.184831243866761 ], [ 73.55988244012245, 21.174185899559568 ], [ 73.597399529864376, 21.139898587349929 ], [ 73.633986443619435, 21.119383043292768 ], [ 73.651659783771933, 21.118530382571059 ], [ 73.664268832840307, 21.119253852083595 ], [ 73.675430942883665, 21.123284614393409 ], [ 73.684629348165842, 21.12374970148749 ], [ 73.695171339685515, 21.122638658347391 ], [ 73.705093215379563, 21.118711248825029 ], [ 73.714291619762406, 21.111993313140882 ], [ 73.725867140955742, 21.097188015314654 ], [ 73.730518019990569, 21.087731228513345 ], [ 73.742300245859596, 21.073106797840403 ], [ 73.774649692629154, 21.062125555849711 ], [ 73.789842564083003, 21.058482367167468 ], [ 73.798627557315882, 21.048612169216192 ], [ 73.814337192707214, 21.025176906888699 ], [ 73.832837355159754, 21.003705349322384 ], [ 73.847410108989308, 20.990346991420491 ], [ 73.859502395019462, 20.982285467700134 ], [ 73.868287388252313, 20.974766547238342 ], [ 73.87500532393652, 20.962777614894996 ], [ 73.884617141267981, 20.92652659792412 ], [ 73.894539016062694, 20.907457993791347 ], [ 73.902910598145567, 20.883867702732282 ], [ 73.911488884904074, 20.806275540184 ], [ 73.911178827440878, 20.790359198318352 ], [ 73.909008417104744, 20.775708930123013 ], [ 73.904977654794877, 20.762686469005299 ], [ 73.8988798358357, 20.750955919080408 ], [ 73.889164666615997, 20.74064647155739 ], [ 73.839761997318291, 20.705325628774741 ], [ 73.811029900809203, 20.676903591527484 ], [ 73.809686313672373, 20.669849758159781 ], [ 73.811960076796069, 20.651530462860531 ], [ 73.810306431296723, 20.639308987419835 ], [ 73.806275668986899, 20.626441555033686 ], [ 73.800487909289515, 20.615408637098874 ], [ 73.792323032781709, 20.606184394294353 ], [ 73.78054080601332, 20.599388943345044 ], [ 73.763900994635136, 20.593730373957552 ], [ 73.736925897312275, 20.58104380872475 ], [ 73.712844679838085, 20.566471055794576 ], [ 73.699822218720371, 20.562414455962365 ], [ 73.647629022361443, 20.559158840008418 ], [ 73.637913853141725, 20.560554103988686 ], [ 73.62995568220893, 20.563861395886697 ], [ 73.623031040050407, 20.571147773251138 ], [ 73.599466587413005, 20.604582423839751 ], [ 73.586030715145327, 20.615408637098874 ], [ 73.569494255655314, 20.624865423900186 ], [ 73.538901808971247, 20.638766384161269 ], [ 73.501488072016841, 20.66460460082163 ], [ 73.495907016995176, 20.667395127882852 ], [ 73.487122022863034, 20.670495714205853 ], [ 73.481024203903857, 20.673725490838699 ], [ 73.475753208143971, 20.678712267557099 ], [ 73.464694451787452, 20.703051866550361 ], [ 73.460250279226941, 20.710648302277313 ], [ 73.45353234174415, 20.717211209229898 ], [ 73.447227818109283, 20.720027573813461 ], [ 73.438959588813916, 20.719149075569355 ], [ 73.433998651416559, 20.716281033243085 ], [ 73.429037714019259, 20.710389919858923 ], [ 73.418289016025241, 20.6836990424768 ], [ 73.404233026133213, 20.669849758159781 ], [ 73.371676873788644, 20.659488633793384 ], [ 73.364648878842658, 20.652667345321728 ], [ 73.364132114905132, 20.648455714959251 ], [ 73.366509229916957, 20.64191864732771 ], [ 73.3724003442005, 20.638611355429699 ], [ 73.380048455871517, 20.636906033086909 ], [ 73.389660272303658, 20.636518460358612 ], [ 73.396791620037206, 20.635588284371799 ], [ 73.403716262195687, 20.633598741188955 ], [ 73.406816847619368, 20.630317287712611 ], [ 73.40888390516804, 20.62471039516856 ], [ 73.411984490591735, 20.601843572722711 ], [ 73.413948195352859, 20.595978297760208 ], [ 73.416945427989091, 20.592593492395732 ], [ 73.422009719073216, 20.590319729272089 ], [ 73.427694125983052, 20.588950303713542 ], [ 73.439476352751441, 20.587632554998375 ], [ 73.443817173423767, 20.586676541489165 ], [ 73.446400994909922, 20.58406688158129 ], [ 73.448571405246113, 20.579803575274745 ], [ 73.45063846189548, 20.573834947524798 ], [ 73.45869998561578, 20.538023180125656 ], [ 73.45373904821848, 20.52029816312972 ], [ 73.442060174237582, 20.495545152087054 ], [ 73.392864211414164, 20.418495591898019 ], [ 73.364648878842658, 20.382270413348859 ], [ 73.360721470219616, 20.369377143440367 ], [ 73.363511997280781, 20.36299510274176 ], [ 73.367232700328813, 20.358912665387201 ], [ 73.376327752823485, 20.356199652691824 ], [ 73.380151808659008, 20.35364166872801 ], [ 73.383252394982023, 20.348706569752377 ], [ 73.385422805318143, 20.34105845808136 ], [ 73.386663038768162, 20.332661038476143 ], [ 73.387283156392513, 20.318346666165663 ], [ 73.394104444864155, 20.270390936792289 ], [ 73.392554152152329, 20.255921535750243 ], [ 73.389143508366189, 20.244371852978581 ], [ 73.380048455871517, 20.228326320803031 ], [ 73.377878046434645, 20.218636990005049 ], [ 73.378498163159662, 20.209955349559717 ], [ 73.383872511706997, 20.194194037324959 ], [ 73.383149042194518, 20.186313380757891 ], [ 73.377878046434645, 20.18031891548554 ], [ 73.363822055643297, 20.178303533880971 ], [ 73.355037062410446, 20.179311225132889 ], [ 73.337777134307245, 20.183729560171056 ], [ 73.271838006418804, 20.193418890969035 ], [ 73.262536249248441, 20.190938422270328 ], [ 73.25540490061563, 20.186365058500652 ], [ 73.247446729682778, 20.175332140565839 ], [ 73.244966261883448, 20.166779690430356 ], [ 73.244552849834093, 20.160242621000119 ], [ 73.245586378608408, 20.152723700538328 ], [ 73.244966261883448, 20.145824896801511 ], [ 73.243312616384102, 20.138641873123895 ], [ 73.237731561362395, 20.131381334181182 ], [ 73.23101362477891, 20.125722764793743 ], [ 73.216647577423686, 20.117971300335224 ], [ 73.202281529169213, 20.113242906035278 ], [ 73.19297977109953, 20.111020819755023 ], [ 73.166314732139128, 20.114870714012223 ], [ 73.170035435187145, 20.164531764829061 ], [ 73.164454380165438, 20.170758774997463 ], [ 73.154739210945806, 20.17783844678689 ], [ 73.119185825065742, 20.182437648978286 ], [ 73.114018182093375, 20.181662503521686 ], [ 73.109677362320369, 20.178639431564473 ], [ 73.106266716735519, 20.171688950984269 ], [ 73.104716424023692, 20.163704942529076 ], [ 73.103786248936203, 20.151405950923895 ], [ 73.102235956224362, 20.146806748732441 ], [ 73.096344841940876, 20.142672634534446 ], [ 73.086112908783633, 20.139236152326529 ], [ 73.065752395256808, 20.138254299496275 ], [ 73.053660109226584, 20.142207546541041 ], [ 73.045598586405603, 20.148873806281127 ], [ 73.041774529670747, 20.157736313879749 ], [ 73.033919712424719, 20.192411199717068 ], [ 73.033609654062261, 20.19806977000388 ], [ 73.033919712424719, 20.202875677770287 ], [ 73.035573357924065, 20.208198351272866 ], [ 73.037433709897741, 20.212048245530067 ], [ 73.040947707370762, 20.21638906530313 ], [ 73.046838819855608, 20.221324164278766 ], [ 73.112157831019005, 20.254913845397645 ], [ 73.117635533253221, 20.260288193944969 ], [ 73.121149529826866, 20.266980292106776 ], [ 73.123216587375552, 20.278142402150131 ], [ 73.121356236301196, 20.284162705844206 ], [ 73.117015414729551, 20.287159939379698 ], [ 73.109057244696018, 20.287340807432312 ], [ 73.099342074577038, 20.285428779514511 ], [ 73.090557082243478, 20.285015367465231 ], [ 73.082495559422497, 20.286178087448768 ], [ 73.07412397733961, 20.291733303149382 ], [ 73.071333449379139, 20.296642563703355 ], [ 73.071850214215985, 20.303903103545391 ], [ 73.074330682015315, 20.313282375980858 ], [ 73.076294386776496, 20.327958481698541 ], [ 73.071333449379139, 20.335632432690598 ], [ 73.065132276733138, 20.337337755033325 ], [ 73.05727746038643, 20.334753933547173 ], [ 73.049939406178609, 20.330258084143221 ], [ 73.017796664984061, 20.304187323486186 ], [ 72.997642857032176, 20.293593655123058 ], [ 72.99195844922302, 20.293051051864548 ], [ 72.985447219113809, 20.294239610269752 ], [ 72.974491814645475, 20.29850291657629 ], [ 72.968187290111288, 20.29808950452701 ], [ 72.963536411076447, 20.295247301521723 ], [ 72.958885532940926, 20.287960924157286 ], [ 72.945346306986423, 20.255921535750243 ], [ 72.942865839187093, 20.253544419839095 ], [ 72.936354608178576, 20.252846787848963 ], [ 72.927052850108893, 20.253931993466715 ], [ 72.91061974520504, 20.257549342827868 ], [ 72.902661574272187, 20.258272813239721 ], [ 72.895530227438016, 20.255921535750243 ], [ 72.892429641115001, 20.251839098395628 ], [ 72.888708937167664, 20.244216824247015 ], [ 72.887985466755865, 20.238609930803644 ], [ 72.888708937167664, 20.233054714203657 ], [ 72.891706170703159, 20.227396144816218 ], [ 72.896667108100516, 20.221505032331375 ], [ 72.903798455833993, 20.215923977309668 ], [ 72.921471795986562, 20.20499441216236 ], [ 72.929533318807543, 20.198457342732176 ], [ 72.935424432191766, 20.191868598257194 ], [ 72.939351840814751, 20.184298000951966 ], [ 72.941522251150928, 20.17745087315927 ], [ 72.944622836574624, 20.137995917077884 ], [ 72.947206658960098, 20.127402248714812 ], [ 72.897597284087325, 20.107145087076098 ], [ 72.872585890626326, 20.101796576051122 ], [ 72.8562561376106, 20.1016673848419 ], [ 72.83083133299958, 20.104044500753098 ], [ 72.822976515753552, 20.101822415372165 ], [ 72.81656863843186, 20.098334255421545 ], [ 72.810884229723371, 20.093037421239952 ], [ 72.805819940437829, 20.092546494824884 ], [ 72.782565546162957, 20.101744900107057 ], [ 72.776881138353801, 20.10148651768861 ], [ 72.770783319394624, 20.099652004136654 ], [ 72.758070916639426, 20.091564642893953 ], [ 72.751559685630966, 20.086190294346572 ], [ 72.732025995303374, 20.07569997787169 ], [ 72.708151483404194, 20.072651069291393 ], [ 72.708101837229933, 20.072644470066219 ], [ 72.710297070653255, 20.082912502010341 ], [ 72.728282096941186, 20.129461981285367 ], [ 72.734548373308755, 20.173529364088886 ], [ 72.737640820767211, 20.184271551890614 ], [ 72.752289258842197, 20.203762111632098 ], [ 72.755625847055157, 20.215155341146041 ], [ 72.753591342266574, 20.218207097879255 ], [ 72.749034050281168, 20.218329169155819 ], [ 72.744395379543093, 20.219387110926387 ], [ 72.741953971998143, 20.225043036307049 ], [ 72.741953971998143, 20.245550847993226 ], [ 72.743011914668088, 20.247748113884306 ], [ 72.748220248365712, 20.280340887521895 ], [ 72.756602410073114, 20.295965887715507 ], [ 72.767832879383818, 20.31195709814153 ], [ 72.777517122717015, 20.330064195706026 ], [ 72.781586134092763, 20.352280992673677 ], [ 72.786794466891067, 20.352240301948367 ], [ 72.798187696405009, 20.359320380231331 ], [ 72.810313347283099, 20.368841864260613 ], [ 72.817067905159647, 20.375921942543577 ], [ 72.818111857975836, 20.378770118845857 ], [ 72.818159459991065, 20.378764517868198 ], [ 72.838973144594874, 20.376315849197049 ], [ 72.866038017640378, 20.380826662420528 ], [ 72.881825859875477, 20.392103691432165 ], [ 72.884081266037569, 20.419168564477669 ], [ 72.879570453713413, 20.439467218137562 ], [ 72.86378261057898, 20.462021278858909 ], [ 72.847043964607209, 20.468298271547948 ], [ 72.847003983447038, 20.468313264145817 ], [ 72.879161004077034, 20.512437242184937 ], [ 72.886485222215171, 20.531561591694064 ], [ 72.890391472488417, 20.552679755266464 ], [ 72.891449415158363, 20.575140692089231 ], [ 72.890635613242907, 20.587062892938146 ], [ 72.886241082360002, 20.608465887090968 ], [ 72.885264519342044, 20.61920807489275 ], [ 72.888438347351823, 20.628485419066802 ], [ 72.902598503917758, 20.641913153369327 ], [ 72.905772331927537, 20.653306381983949 ], [ 72.90943444144628, 20.698675848211785 ], [ 72.907969596919301, 20.718329169055885 ], [ 72.898936394399058, 20.73216380431608 ], [ 72.940277539976464, 20.759426173878801 ], [ 72.946787957098522, 20.759466864604118 ], [ 72.944997592165109, 20.77000560147729 ], [ 72.936371289703217, 20.77627187694554 ], [ 72.926442904716211, 20.780991929134181 ], [ 72.919444206984494, 20.787420966604312 ], [ 72.919118685678754, 20.795599677383159 ], [ 72.922862174849442, 20.802679755666187 ], [ 72.924978061088595, 20.810614325690548 ], [ 72.919444206984494, 20.821519273695511 ], [ 72.900238476924116, 20.799139716524671 ], [ 72.885752799951703, 20.807114976375026 ], [ 72.880137566195657, 20.829901434503594 ], [ 72.888438347351823, 20.851955471267953 ], [ 72.90040123802666, 20.868109441897214 ], [ 72.893809441252671, 20.870062567033809 ], [ 72.881195508865616, 20.865668036150904 ], [ 72.875336134355081, 20.862494208141182 ], [ 72.836924675133602, 20.835842190464685 ], [ 72.845876498001914, 20.851792710165391 ], [ 72.854258659709316, 20.88715241085503 ], [ 72.86491946695979, 20.897284247669855 ], [ 72.836680535278433, 20.929917710234115 ], [ 72.856455924701123, 20.9479841170733 ], [ 72.886485222215171, 20.962103582913976 ], [ 72.888438347351823, 20.982611395499472 ], [ 72.875987175167936, 20.981350001901031 ], [ 72.853770379099657, 20.9749209662296 ], [ 72.832692905353255, 20.972357489206725 ], [ 72.823090039873406, 20.982611395499472 ], [ 72.821299674939993, 20.991603908193774 ], [ 72.816091342141689, 20.999009506883219 ], [ 72.808360222146504, 21.003973699826354 ], [ 72.799327018726885, 21.005845445311021 ], [ 72.787608268806522, 21.006903387081646 ], [ 72.78199303505049, 21.010158596541991 ], [ 72.771983269512234, 21.023871161424946 ], [ 72.76685631636586, 21.038560289325854 ], [ 72.783946160187085, 21.040432033011879 ], [ 72.823090039873406, 21.033840236237886 ], [ 72.844981316434584, 21.038316148571361 ], [ 72.849864128826411, 21.048000393703202 ], [ 72.815928581938451, 21.121486721235154 ], [ 72.809580925019631, 21.130031643145795 ], [ 72.799571160380694, 21.128810940272665 ], [ 72.755625847055157, 21.109564520386296 ], [ 72.752777540351175, 21.113714911414029 ], [ 72.746348503780368, 21.118353583051366 ], [ 72.741953971998143, 21.123236395443254 ], [ 72.737640820767211, 21.117377020033413 ], [ 72.735606315978643, 21.110744533433429 ], [ 72.734548373308755, 21.092474677464388 ], [ 72.730153842425835, 21.087836004927677 ], [ 72.700368685666248, 21.074774480857563 ], [ 72.705821160118418, 21.106350002550577 ], [ 72.720550976946001, 21.129706121840055 ], [ 72.728688997898914, 21.148098049085657 ], [ 72.714040560723262, 21.164129950236994 ], [ 72.706553582381886, 21.157700914565506 ], [ 72.686696811508611, 21.158148505349228 ], [ 72.676442905215865, 21.153631903189758 ], [ 72.672699415145857, 21.145738022991335 ], [ 72.671885613230401, 21.134426174028697 ], [ 72.673024936451597, 21.112616278018773 ], [ 72.671234571518241, 21.099798895602529 ], [ 72.666351759126357, 21.097398179682212 ], [ 72.658702018783089, 21.097601630610761 ], [ 72.63786868579119, 21.085394598282043 ], [ 72.629649285186289, 21.087958075304918 ], [ 72.615000847111375, 21.105861721041546 ], [ 72.615489129519673, 21.119818427578362 ], [ 72.630381707449814, 21.135972398207567 ], [ 72.69353274813777, 21.178452867006168 ], [ 72.71176191518019, 21.194037177373836 ], [ 72.721039259354299, 21.198797919388419 ], [ 72.734548373308755, 21.198919988866344 ], [ 72.723643425303791, 21.209133205333156 ], [ 72.687673372727929, 21.220445054295787 ], [ 72.679860873080756, 21.228989976206432 ], [ 72.673187695755516, 21.239081122295939 ], [ 72.659353061394626, 21.244696356051971 ], [ 72.646983268862741, 21.253607489094342 ], [ 72.645762565989557, 21.273382880315634 ], [ 72.625173372852814, 21.259344794126942 ], [ 72.618418815875586, 21.252915757556135 ], [ 72.6061304047943, 21.266587632613149 ], [ 72.602061394317829, 21.277655340821294 ], [ 72.59791100418947, 21.30756256705882 ], [ 72.588633660015361, 21.331976629917502 ], [ 72.586761915430003, 21.341213283366297 ], [ 72.590505405500025, 21.348537502403811 ], [ 72.603200717539011, 21.35272858325748 ], [ 72.638519727503351, 21.357163803966383 ], [ 72.645762565989557, 21.362779039521051 ], [ 72.638682487706589, 21.371242579981065 ], [ 72.623383008818777, 21.370266017862427 ], [ 72.594086134467474, 21.362779039521051 ], [ 72.578868035231594, 21.367010809301402 ], [ 72.567637565920876, 21.376410222953375 ], [ 72.56462649811435, 21.385809637504732 ], [ 72.57374108208522, 21.390082098010392 ], [ 72.63510175873914, 21.407456773311416 ], [ 72.672862175349039, 21.428127346100094 ], [ 72.676442905215865, 21.431626695415613 ], [ 72.728282096941186, 21.465806382158799 ], [ 72.747080925144516, 21.452866929365253 ], [ 72.752614780147937, 21.463568427341038 ], [ 72.748545768772189, 21.479641018318311 ], [ 72.738291863378763, 21.48285553615403 ], [ 72.683278841845024, 21.465806382158799 ], [ 72.665049674802589, 21.457220770422218 ], [ 72.6124780608138, 21.421861070631902 ], [ 72.583669467072227, 21.417425848124363 ], [ 72.589854362888488, 21.432766018636805 ], [ 72.61963951874877, 21.48737213741418 ], [ 72.63510175873914, 21.499335028089032 ], [ 72.651052280238488, 21.50702545825828 ], [ 72.690114780272822, 21.540676174565757 ], [ 72.703949415533074, 21.548407294560999 ], [ 72.726817254212889, 21.553168036575578 ], [ 72.751149936520321, 21.565130927250486 ], [ 72.77320397238536, 21.580511786689609 ], [ 72.789073113333444, 21.595526434097618 ], [ 72.810394726935016, 21.635077216540306 ], [ 72.823090039873406, 21.643947657958044 ], [ 72.833994987878313, 21.644476630192283 ], [ 72.858734571143472, 21.637600001938488 ], [ 72.87159264428503, 21.636542059268599 ], [ 72.88965905022495, 21.640529690093096 ], [ 72.935557487787761, 21.658351955278473 ], [ 72.965342644547363, 21.678778387312715 ], [ 73.022471550521615, 21.698553778534055 ], [ 73.084971550396673, 21.729681708543971 ], [ 73.108164910382285, 21.733343817163412 ], [ 73.116953972148039, 21.737250067436655 ], [ 73.126963737686296, 21.746771552365253 ], [ 73.132009311180724, 21.757798569848088 ], [ 73.126149935770897, 21.766831773267707 ], [ 73.118825716733383, 21.764715887028554 ], [ 73.083994988278036, 21.746405341233462 ], [ 73.046641471726474, 21.733343817163412 ], [ 73.041026237970456, 21.730169989153634 ], [ 73.022471550521615, 21.716009833487014 ], [ 73.012461784983358, 21.712836005477239 ], [ 72.991465690888873, 21.708441473695014 ], [ 72.950205924963413, 21.689154363982706 ], [ 72.926931186225175, 21.684963283128972 ], [ 72.882823112696457, 21.693019924429954 ], [ 72.858164909982548, 21.694973049566553 ], [ 72.84034264389787, 21.688381251893244 ], [ 72.81918379049948, 21.675034898142023 ], [ 72.798106315853758, 21.673529364688417 ], [ 72.755625847055157, 21.684963283128972 ], [ 72.73324628988432, 21.687486070325853 ], [ 72.676442905215865, 21.678127346499817 ], [ 72.653005405375083, 21.680568752246071 ], [ 72.634938998535901, 21.684637761823236 ], [ 72.616058789781263, 21.685451565537274 ], [ 72.570485873524191, 21.670477606156563 ], [ 72.550303582244496, 21.666693427159935 ], [ 72.534678582050887, 21.67291901190287 ], [ 72.528493686234569, 21.695135808870472 ], [ 72.532074415202075, 21.713853257421867 ], [ 72.550140821141937, 21.751939195337563 ], [ 72.556325716958199, 21.7743187525084 ], [ 72.562754754428312, 21.83942291923233 ], [ 72.566905143657422, 21.849351304219276 ], [ 72.585459832005583, 21.858872789147878 ], [ 72.598806185756786, 21.881008205564221 ], [ 72.618418815875586, 21.925116278193681 ], [ 72.634043816069195, 21.93748606982626 ], [ 72.6521102220091, 21.941066799693029 ], [ 72.690114780272822, 21.938788153250638 ], [ 72.7023218108029, 21.947577215915768 ], [ 72.706797722237056, 21.966131903364605 ], [ 72.714040560723262, 21.982977606431344 ], [ 72.734548373308755, 21.986558335398851 ], [ 72.734548373308755, 21.994045315538862 ], [ 72.726410352355842, 21.995754299021652 ], [ 72.719899936133103, 21.996323960182618 ], [ 72.713715040316785, 21.995794988847646 ], [ 72.707774285255013, 21.994045315538862 ], [ 72.700938346827201, 21.988918361493173 ], [ 72.697520378962267, 21.982123114689948 ], [ 72.695648634376923, 21.975897528148373 ], [ 72.69353274813777, 21.972316799180927 ], [ 72.6230574884123, 21.966620183974268 ], [ 72.611582879246413, 21.955511785940129 ], [ 72.602712436030046, 21.943589585091271 ], [ 72.581797722486883, 21.928168035826154 ], [ 72.55860436340059, 21.915269272858662 ], [ 72.542735222452478, 21.91083405214976 ], [ 72.533376497727133, 21.920314846353047 ], [ 72.507090691182427, 21.96230703364267 ], [ 72.501719597281564, 21.976019598525621 ], [ 72.504567904884865, 21.994208074842781 ], [ 72.517751498432844, 22.032131252555242 ], [ 72.522227409867, 22.054266668971589 ], [ 72.521494988502852, 22.06614817909519 ], [ 72.519541863366257, 22.077541408609076 ], [ 72.519541863366257, 22.088446356614035 ], [ 72.530039910413493, 22.107489325571915 ], [ 72.533376497727133, 22.118557032880737 ], [ 72.535899284924014, 22.140529689993169 ], [ 72.542165561291583, 22.156724351347744 ], [ 72.557383660527464, 22.176662501872951 ], [ 72.575450066467326, 22.194525458682953 ], [ 72.590505405500025, 22.205023504830873 ], [ 72.614105665543988, 22.211737371982103 ], [ 72.634450717026922, 22.210394597832412 ], [ 72.652354362763603, 22.202337958330073 ], [ 72.669606966788066, 22.188910223128286 ], [ 72.681895378768658, 22.181586004990091 ], [ 72.691661004451745, 22.181952216121882 ], [ 72.699717643954031, 22.184963283029045 ], [ 72.707774285255013, 22.185777084944501 ], [ 72.719411655523444, 22.182196355977052 ], [ 72.729258659959129, 22.177435613962412 ], [ 72.748220248365712, 22.164048570385201 ], [ 72.79021243565532, 22.21723053626021 ], [ 72.812266472419694, 22.234116929152943 ], [ 72.847422722180838, 22.240423895346449 ], [ 72.865082227163029, 22.233465887440726 ], [ 72.881114129213628, 22.220404364269989 ], [ 72.897227410016896, 22.213039455406538 ], [ 72.916026238220269, 22.223089911670051 ], [ 72.922129754384613, 22.236517645073256 ], [ 72.922699415545523, 22.254584051912442 ], [ 72.917491081847899, 22.271429754979174 ], [ 72.905772331927537, 22.28139883069144 ], [ 72.899668815763206, 22.269191799262096 ], [ 72.8860783212575, 22.262396552458934 ], [ 72.869476758945197, 22.262396552458934 ], [ 72.854258659709316, 22.270819403092954 ], [ 72.838633660415027, 22.276556708125547 ], [ 72.818207227481523, 22.273423569941766 ], [ 72.798675977014668, 22.265570380468656 ], [ 72.785411003814701, 22.256903387281447 ], [ 72.756602410073114, 22.243719794632788 ], [ 72.7265731134584, 22.248928127431093 ], [ 72.659434441046571, 22.273911851450745 ], [ 72.646494988253082, 22.273911851450745 ], [ 72.635264518942321, 22.27163320500841 ], [ 72.625010613548952, 22.271389065153237 ], [ 72.606618686303293, 22.283840236437747 ], [ 72.596364780010546, 22.286932683896222 ], [ 72.57374108208522, 22.288234768219976 ], [ 72.553070509296546, 22.282456773361382 ], [ 72.521169467197112, 22.253119208284826 ], [ 72.501719597281564, 22.240423895346449 ], [ 72.479014518804931, 22.233384506889472 ], [ 72.466156445663373, 22.23257070497402 ], [ 72.457041863491142, 22.236721096001755 ], [ 72.454844596700738, 22.245306708637653 ], [ 72.466970248478148, 22.255845445510882 ], [ 72.463877800120358, 22.263983466463792 ], [ 72.448741082335047, 22.266831773167773 ], [ 72.432302280225969, 22.255845445510882 ], [ 72.413747591877822, 22.246323960582284 ], [ 72.39185631621595, 22.253485419416556 ], [ 72.386241082459932, 22.266506251862033 ], [ 72.381032747862989, 22.289943752602081 ], [ 72.380381707050091, 22.312404690324168 ], [ 72.388194206697207, 22.322333075311175 ], [ 72.404958530112012, 22.332953191836335 ], [ 72.408050976671163, 22.35346100532109 ], [ 72.397227410116827, 22.36676666924637 ], [ 72.371348504529792, 22.355902411067401 ], [ 72.361013216786475, 22.343451238883571 ], [ 72.349619988171838, 22.324367580099697 ], [ 72.340505405100302, 22.303208726701367 ], [ 72.336599154827113, 22.284816799455704 ], [ 72.328298372771641, 22.260728257003446 ], [ 72.309092644509903, 22.257228908587244 ], [ 72.288340691169921, 22.261297919063672 ], [ 72.275157096722566, 22.260321356045718 ], [ 72.26319420694702, 22.276353257197055 ], [ 72.265961133999085, 22.28733958485395 ], [ 72.26465904967533, 22.295233465951689 ], [ 72.240407747919207, 22.301906643276933 ], [ 72.223399285548538, 22.30316803597605 ], [ 72.208506706719092, 22.300441799649317 ], [ 72.200938346927146, 22.291449286055691 ], [ 72.206309440827994, 22.273911851450745 ], [ 72.161794467240824, 22.280951239008456 ], [ 72.148773633896027, 22.277899481375918 ], [ 72.166026237920491, 22.260321356045718 ], [ 72.190684441533719, 22.251288153525415 ], [ 72.20923912898256, 22.259426174478328 ], [ 72.240407747919207, 22.288234768219976 ], [ 72.246104363125809, 22.27558014510759 ], [ 72.243174674971186, 22.26593659160039 ], [ 72.237315300460679, 22.256293036294544 ], [ 72.234141472450958, 22.243557033530234 ], [ 72.239105665394092, 22.238918360993516 ], [ 72.268321160093407, 22.226752020289492 ], [ 72.306488476761771, 22.22955963716748 ], [ 72.317230665462816, 22.184881903377114 ], [ 72.30762779998291, 22.079006252236749 ], [ 72.298024936301701, 22.061672268560294 ], [ 72.295664910207378, 22.051174221513115 ], [ 72.291758659934189, 22.053412177230193 ], [ 72.283457878778023, 22.043605860821792 ], [ 72.27613365974058, 22.031642971046264 ], [ 72.275157096722566, 22.027533269844522 ], [ 72.257660351943613, 22.012152411304719 ], [ 72.249359570787504, 22.00828685085747 ], [ 72.237315300460679, 22.007025458158346 ], [ 72.220957878902922, 22.010972398257532 ], [ 72.216481967468766, 22.007798570247811 ], [ 72.214366082128919, 21.994045315538862 ], [ 72.206309440827994, 21.994045315538862 ], [ 72.19988040515652, 22.006984768332352 ], [ 72.195160352068555, 22.003648179220075 ], [ 72.191172722143378, 21.993638414581135 ], [ 72.186371290302745, 21.986558335398851 ], [ 72.182465040029555, 21.982733466576175 ], [ 72.173106316203459, 21.975653387393887 ], [ 72.163422071071679, 21.973211981647633 ], [ 72.159190300391998, 21.983140367533899 ], [ 72.151703321151317, 21.993882554436308 ], [ 72.134287956923615, 22.004584052412092 ], [ 72.113780144338122, 22.010565497299861 ], [ 72.097015820923374, 22.007025458158346 ], [ 72.119313998442223, 21.993638414581135 ], [ 72.128103061107353, 21.983547268491627 ], [ 72.124847852546324, 21.972316799180927 ], [ 72.114919466659998, 21.969387111026318 ], [ 72.076508009237187, 21.979722397870372 ], [ 72.082530143950962, 21.973374741850815 ], [ 72.10450280016407, 21.959214585284879 ], [ 72.10482832146981, 21.951483466189014 ], [ 72.10206139441776, 21.945054429618203 ], [ 72.096202019007919, 21.943019923930304 ], [ 72.087412957242094, 21.94843170855648 ], [ 72.073252799776853, 21.954494533096177 ], [ 72.055186393836934, 21.95351797097754 ], [ 72.038422071321506, 21.947577215915768 ], [ 72.028656446537738, 21.938788153250638 ], [ 72.087575717445347, 21.919663804640827 ], [ 72.10450280016407, 21.917669989678242 ], [ 72.142100457470107, 21.924994208715756 ], [ 72.156504753891198, 21.925848700457149 ], [ 72.145355665131802, 21.917669989678242 ], [ 72.145355665131802, 21.91083405214976 ], [ 72.159190300391998, 21.904608466507508 ], [ 72.152354362863534, 21.89785390863096 ], [ 72.169769727091179, 21.890448309042192 ], [ 72.167328321344925, 21.879136460079561 ], [ 72.160004102307411, 21.865912177604908 ], [ 72.162608269156223, 21.852850653534798 ], [ 72.169444206684759, 21.841376044368925 ], [ 72.161875846892755, 21.839178778477837 ], [ 72.130869988159404, 21.846258855861485 ], [ 72.123301629266706, 21.853745835102185 ], [ 72.111338737692549, 21.869859117704088 ], [ 72.098480665450296, 21.880519924055246 ], [ 72.077647332458397, 21.894435939866689 ], [ 72.057953320888984, 21.898749091097667 ], [ 72.049327019326412, 21.880438544403258 ], [ 72.052907748293919, 21.876532294130065 ], [ 72.06153404985649, 21.873114325365801 ], [ 72.071787957048556, 21.870794989097472 ], [ 72.08033287895914, 21.869859117704088 ], [ 72.086436394224151, 21.865627346125105 ], [ 72.10450280016407, 21.835760809713573 ], [ 72.086761915529948, 21.830267645435466 ], [ 72.062836134180188, 21.834377346637208 ], [ 72.004161004027068, 21.857733465926678 ], [ 71.997325066498576, 21.854925848149371 ], [ 71.994639519098456, 21.839504298884261 ], [ 71.994151238488811, 21.812201239495604 ], [ 71.996104362726086, 21.799505927456547 ], [ 72.001475457526325, 21.78790924701411 ], [ 72.005381706900195, 21.792954820508552 ], [ 72.009613476680528, 21.795599677183358 ], [ 72.02182050900926, 21.8009707701849 ], [ 72.021494987703448, 21.794419664136168 ], [ 72.022308790518238, 21.780910549282389 ], [ 72.02182050900926, 21.7743187525084 ], [ 72.054942253981764, 21.785589911645101 ], [ 72.07390384238839, 21.788723048929562 ], [ 72.087412957242094, 21.784491278249895 ], [ 72.103200716739636, 21.77521393407579 ], [ 72.117442253856879, 21.776597398051475 ], [ 72.166026237920491, 21.793931382627189 ], [ 72.171071811414919, 21.790961005545963 ], [ 72.172699415245788, 21.777736721272671 ], [ 72.177012566476705, 21.766669012165146 ], [ 72.195811393780772, 21.757798569848088 ], [ 72.200043165359759, 21.750067449852899 ], [ 72.202403191454081, 21.748114325615624 ], [ 72.214366082128919, 21.712836005477239 ], [ 72.219004753766313, 21.706000067049438 ], [ 72.22380618650628, 21.700588283322585 ], [ 72.230235222177711, 21.695990302410504 ], [ 72.240407747919207, 21.69171784100552 ], [ 72.251800977433092, 21.690904039090125 ], [ 72.263031445844476, 21.692328191992424 ], [ 72.271739128857675, 21.690904039090125 ], [ 72.278330924732344, 21.671942450683556 ], [ 72.285411003914632, 21.665025132603766 ], [ 72.292491082197643, 21.659491278499665 ], [ 72.295664910207378, 21.653876043844317 ], [ 72.296641472326016, 21.642157293923955 ], [ 72.29851321691136, 21.633978583145048 ], [ 72.298838738217157, 21.626288152975857 ], [ 72.295664910207378, 21.61603424758243 ], [ 72.292002799789358, 21.611761786177446 ], [ 72.27914472754712, 21.600531316866746 ], [ 72.275157096722566, 21.595526434097618 ], [ 72.242198112852563, 21.480780341539511 ], [ 72.21989993623302, 21.444728908412394 ], [ 72.166840039835947, 21.392075913872301 ], [ 72.159190300391998, 21.37327708566897 ], [ 72.151621941499329, 21.360174872672243 ], [ 72.11605878988118, 21.322739976468707 ], [ 72.10450280016407, 21.315008856473522 ], [ 72.110036655167434, 21.304836329832707 ], [ 72.111501497895773, 21.296087957892947 ], [ 72.107758008725085, 21.28998444262788 ], [ 72.097015820923374, 21.287665106359547 ], [ 72.102549675027419, 21.274400132260265 ], [ 72.099375847017697, 21.264960027882974 ], [ 72.093597852159107, 21.258205470905743 ], [ 72.090830925107056, 21.252915757556135 ], [ 72.093516472507176, 21.243557032830772 ], [ 72.10450280016407, 21.222154039577269 ], [ 72.10474694091856, 21.205064194856671 ], [ 72.090830925107056, 21.191473700350961 ], [ 72.084808790393282, 21.188706773298911 ], [ 72.075450065667937, 21.185695705492375 ], [ 72.066661003902183, 21.18134186443546 ], [ 72.062836134180188, 21.174709376936161 ], [ 72.055023634533072, 21.168361720916661 ], [ 71.990733268825224, 21.136379299165291 ], [ 71.972422722130872, 21.13226959796355 ], [ 71.926280143813514, 21.130031643145795 ], [ 71.80616295735453, 21.062079169717883 ], [ 71.788584832024327, 21.047512111294903 ], [ 71.762950066292476, 21.032294012058966 ], [ 71.74366295747943, 21.027573959870317 ], [ 71.730235222277642, 21.030707098054101 ], [ 71.717621289890573, 21.032049872203796 ], [ 71.683360221696816, 21.011460679067053 ], [ 71.639984571330828, 20.996812241891458 ], [ 71.58350670706885, 20.958238023366047 ], [ 71.549571160180832, 20.951239325634329 ], [ 71.557302280176017, 20.966009833187226 ], [ 71.56234785187182, 20.972967841092949 ], [ 71.569346550502857, 20.979193427634581 ], [ 71.551117384359756, 20.973578192079849 ], [ 71.536794466691248, 20.9643008479058 ], [ 71.49341881632526, 20.929144598144656 ], [ 71.484385612905641, 20.917141018543131 ], [ 71.480723504286274, 20.900376695128379 ], [ 71.462250196489308, 20.88532135609568 ], [ 71.378103060807561, 20.859442450508645 ], [ 71.318614128738986, 20.849310614593143 ], [ 71.140635613142976, 20.76569245024637 ], [ 71.116953972547762, 20.7669131531195 ], [ 71.110118035019227, 20.759466864604118 ], [ 71.095469596944312, 20.763739325109722 ], [ 71.083262566414234, 20.756537177348829 ], [ 71.072601759163817, 20.745672919169859 ], [ 71.062347851971737, 20.738959052018622 ], [ 71.04444420713439, 20.740545966023486 ], [ 71.024180535303387, 20.744533595948663 ], [ 71.007660351743809, 20.741603908693431 ], [ 71.005952390790171, 20.73656135422311 ], [ 70.999152797563497, 20.738825473017123 ], [ 70.990950216978874, 20.739571162079468 ], [ 70.982001946432646, 20.738079783954841 ], [ 70.976036433034935, 20.732859960518734 ], [ 70.971562297761793, 20.724657378135472 ], [ 70.971562297761793, 20.715709108488564 ], [ 70.973008613556644, 20.70962239525732 ], [ 70.972992384390949, 20.709621486042746 ], [ 70.840179884094354, 20.701890366946881 ], [ 70.819672071508862, 20.702948309616769 ], [ 70.801605664669623, 20.709051824881779 ], [ 70.785166863459935, 20.722154039677147 ], [ 70.774587435861449, 20.727362372475508 ], [ 70.763194207246826, 20.724554755597463 ], [ 70.751638217529646, 20.719631252480319 ], [ 70.74024498801576, 20.718491929259127 ], [ 70.730804884537733, 20.723211981447772 ], [ 70.698578321132558, 20.746405341433327 ], [ 70.541514519079769, 20.807847398638497 ], [ 70.484141472351027, 20.843939520692281 ], [ 70.463063997705305, 20.848863022910162 ], [ 70.451426629235513, 20.855902411367193 ], [ 70.417002799939183, 20.890448309242053 ], [ 70.398773633796097, 20.903509833312111 ], [ 70.33668053487871, 20.927069403530133 ], [ 70.299978060938685, 20.958563544671843 ], [ 70.263519726853858, 20.980414130507707 ], [ 70.152191602160642, 21.078517970927575 ], [ 70.05762779998291, 21.149237372306853 ], [ 69.971202018758092, 21.254136460429258 ], [ 69.966156446163026, 21.26341380460337 ], [ 69.958262565964603, 21.273342190489696 ], [ 69.911631707037586, 21.315008856473522 ], [ 69.844981316134792, 21.38959381740073 ], [ 69.814707878765532, 21.433661200204195 ], [ 69.808604363500521, 21.465806382158799 ], [ 69.788747591727926, 21.469305731474318 ], [ 69.771494987703463, 21.478420315445188 ], [ 69.756358269018833, 21.49042389504671 ], [ 69.629730665437805, 21.61603424758243 ], [ 69.568207226782064, 21.650132554673629 ], [ 69.552744987690957, 21.665187893706328 ], [ 69.519786003820954, 21.704779364176314 ], [ 69.499359570887449, 21.72020091434069 ], [ 69.478526237895537, 21.752630926875778 ], [ 69.446299675389682, 21.766302801932735 ], [ 69.427419467534364, 21.781236070588186 ], [ 69.39771569132607, 21.815252997128081 ], [ 69.391774936264241, 21.832180079846804 ], [ 69.395192905028495, 21.861314194894128 ], [ 69.390879753797535, 21.876695054333251 ], [ 69.367849154914538, 21.856105861196507 ], [ 69.355479363281958, 21.853176173941272 ], [ 69.336192254468898, 21.862453518115327 ], [ 69.243907096934933, 21.94594961118559 ], [ 69.212250196489308, 21.967474677514357 ], [ 69.198415561229112, 21.979722397870372 ], [ 69.150645379080956, 22.041205144901475 ], [ 69.119313998142431, 22.062079169518022 ], [ 69.103037957135982, 22.076361395561943 ], [ 69.092051629479087, 22.099595445373492 ], [ 69.048187695805481, 22.157904364394874 ], [ 69.012543165434678, 22.185614325640582 ], [ 68.994151238189019, 22.203924872334991 ], [ 68.980479363132062, 22.235541082954619 ], [ 68.95329837322133, 22.276027735891258 ], [ 68.94459069110745, 22.295070704849131 ], [ 68.944021029946541, 22.318264064834686 ], [ 68.951426629535305, 22.334865627146932 ], [ 68.960622592258787, 22.349514065221904 ], [ 68.965017123141692, 22.36676666924637 ], [ 68.96762128999049, 22.387193101280555 ], [ 68.974375846967732, 22.404730535885498 ], [ 68.983246290184098, 22.419378973061153 ], [ 68.992930535315892, 22.431586005389814 ], [ 69.007497591940293, 22.443182684033612 ], [ 69.047536654992584, 22.464016017924841 ], [ 69.073578320782858, 22.481878972936212 ], [ 69.081390821329293, 22.480536200585156 ], [ 69.085215691051232, 22.472886460241902 ], [ 69.082286003796, 22.459540106490685 ], [ 69.074473504148827, 22.449448960401178 ], [ 69.056000196351917, 22.441839911682557 ], [ 69.048187695805481, 22.431586005389814 ], [ 69.062266471820166, 22.407700913866048 ], [ 69.071787956748764, 22.399481512361884 ], [ 69.088552280163569, 22.396877346412388 ], [ 69.09742272248063, 22.398871161374981 ], [ 69.113780144038387, 22.407863674069286 ], [ 69.122731966906699, 22.411078191905002 ], [ 69.132009311080807, 22.410467840918098 ], [ 69.139821810727923, 22.407131252705138 ], [ 69.146983268662879, 22.404852606262743 ], [ 69.154633009006133, 22.407700913866048 ], [ 69.168793164672749, 22.42064036755891 ], [ 69.178558790355837, 22.427639065290627 ], [ 69.188243035487659, 22.426418361518124 ], [ 69.2021590503998, 22.41486237270032 ], [ 69.205739780266626, 22.398667710446485 ], [ 69.182139519323286, 22.36644114794063 ], [ 69.185313347333064, 22.349676825425146 ], [ 69.169688347139456, 22.327948309067207 ], [ 69.173838738167191, 22.308294989122423 ], [ 69.190440300479437, 22.292303778696404 ], [ 69.212087436286126, 22.28139883069144 ], [ 69.212087436286126, 22.273911851450745 ], [ 69.286468946284785, 22.284613348527213 ], [ 69.335703972060614, 22.306138413956599 ], [ 69.346446159862339, 22.324896552333993 ], [ 69.359873894164863, 22.329169011940333 ], [ 69.435394727384718, 22.3303897166121 ], [ 69.468923373315008, 22.337836005127539 ], [ 69.479665561116718, 22.342230536010383 ], [ 69.485362175424001, 22.347560940085312 ], [ 69.500010613498986, 22.36676666924637 ], [ 69.502696159999729, 22.372259833524478 ], [ 69.50855553540957, 22.374253648487066 ], [ 69.51514733218356, 22.37518951988039 ], [ 69.519867384372262, 22.37763092742534 ], [ 69.525645379230795, 22.392075914571759 ], [ 69.522797070728174, 22.403876044144106 ], [ 69.516937696217653, 22.41608307557345 ], [ 69.513682487656624, 22.431586005389814 ], [ 69.515961134099015, 22.448146876976743 ], [ 69.521983268812775, 22.448919989066205 ], [ 69.530772332377168, 22.446112372188217 ], [ 69.541026237770595, 22.452093817075983 ], [ 69.547862175299116, 22.452093817075983 ], [ 69.559825065973982, 22.411525783588043 ], [ 69.561696811458646, 22.391587632163457 ], [ 69.554698112827609, 22.37763092742534 ], [ 69.569021030496103, 22.370550848243052 ], [ 69.601084831899399, 22.363836981091762 ], [ 69.616058790380848, 22.355902411067401 ], [ 69.617442254356533, 22.365057683964945 ], [ 69.619883660102786, 22.371039130651347 ], [ 69.629730665437805, 22.383775132516345 ], [ 69.640391471788959, 22.375962631969848 ], [ 69.647227410216757, 22.380438544303384 ], [ 69.652354363363131, 22.389878648680671 ], [ 69.657725457263993, 22.396877346412388 ], [ 69.661306186231442, 22.400213934625349 ], [ 69.665212436504689, 22.404974677539311 ], [ 69.669444207184355, 22.409247137145652 ], [ 69.674652539982716, 22.411078191905002 ], [ 69.680837435798978, 22.409613348277386 ], [ 69.694509310855992, 22.40395742469536 ], [ 69.699392123247819, 22.404282945101833 ], [ 69.708994987828405, 22.418890692451491 ], [ 69.725352410285481, 22.464544989259814 ], [ 69.733409049787767, 22.480047919076178 ], [ 69.742198113352217, 22.472967841692533 ], [ 69.788747591727926, 22.423163152957095 ], [ 69.794932488443564, 22.418605860971688 ], [ 69.806976758770347, 22.420965887066011 ], [ 69.812998894383426, 22.429510808976655 ], [ 69.816905143757353, 22.440985419041844 ], [ 69.822276237658215, 22.452093817075983 ], [ 69.83326256621443, 22.463812566996349 ], [ 69.841807488125013, 22.466376044019164 ], [ 69.851084832299122, 22.465236721697345 ], [ 69.863780144338122, 22.465765692132944 ], [ 69.884776238432593, 22.473578192679433 ], [ 69.905284050118766, 22.486395575095681 ], [ 69.962087435686541, 22.535345770291023 ], [ 69.972992383691505, 22.541449286455357 ], [ 69.973887566158211, 22.539984441928418 ], [ 69.996267123329048, 22.541449286455357 ], [ 70.002696159899799, 22.543158269938196 ], [ 70.020843946390968, 22.555121161512368 ], [ 70.059092644509903, 22.558417059000071 ], [ 70.144704622919932, 22.547796942474911 ], [ 70.178477410504044, 22.56195709814153 ], [ 70.189707878915428, 22.577785549263691 ], [ 70.207286004245631, 22.61497630471268 ], [ 70.234873894214772, 22.648871160875327 ], [ 70.267263216923865, 22.705959377023582 ], [ 70.319102410447826, 22.778265692407782 ], [ 70.323252799676922, 22.787665106059759 ], [ 70.321543816194136, 22.811712958686083 ], [ 70.322520379212094, 22.82265859651698 ], [ 70.325450066467326, 22.826320705136418 ], [ 70.342946811246279, 22.843166408203157 ], [ 70.375254754303427, 22.902655341171048 ], [ 70.387705924688632, 22.912014064997091 ], [ 70.404633009205938, 22.919501044237787 ], [ 70.436859570812473, 22.95490143385404 ], [ 70.453379754372108, 22.966620184673779 ], [ 70.462738477298828, 22.966538804122475 ], [ 70.474294467016009, 22.964056708550228 ], [ 70.486338738242111, 22.96369049741849 ], [ 70.497569206653495, 22.970038153437994 ], [ 70.50473066548777, 22.979559637467268 ], [ 70.512380404931704, 22.995347397864119 ], [ 70.517914259035805, 23.003892320674023 ], [ 70.527191602310523, 23.023586330444793 ], [ 70.528493685734972, 23.047064520111512 ], [ 70.523692253894339, 23.070379950474312 ], [ 70.514903191229266, 23.089544988910117 ], [ 70.502940299655037, 23.104396877014263 ], [ 70.484222852002958, 23.122137762547705 ], [ 70.467133009081053, 23.129706122339648 ], [ 70.459646029840357, 23.113999742494109 ], [ 70.450938346827201, 23.105658270612704 ], [ 70.410655143919698, 23.08600495066792 ], [ 70.398773633796097, 23.06903717722394 ], [ 70.398936393999335, 23.059068101511681 ], [ 70.401052280238488, 23.045396226454667 ], [ 70.404470248103436, 23.033351955228504 ], [ 70.410980665225495, 23.023179429487065 ], [ 70.401866082153944, 22.999253648137305 ], [ 70.402028842357112, 22.990220445617066 ], [ 70.403819207290525, 22.981878972836277 ], [ 70.403493685984799, 22.96784088754691 ], [ 70.401621941399455, 22.953843492083475 ], [ 70.398773633796097, 22.945502020202063 ], [ 70.392425976877277, 22.940863348564669 ], [ 70.384532096678853, 22.938869533602084 ], [ 70.363536004383022, 22.938706773398845 ], [ 70.357676628973181, 22.936712958436253 ], [ 70.352386914724292, 22.93305084801818 ], [ 70.346690300416967, 22.9313011747094 ], [ 70.339528842482068, 22.935288804634574 ], [ 70.334483268987626, 22.940130927200524 ], [ 70.330414259410517, 22.943304755210246 ], [ 70.325694207221801, 22.945013739592408 ], [ 70.319102410447826, 22.945502020202063 ], [ 70.31462649811435, 22.943508205239478 ], [ 70.308767122704509, 22.939764716068787 ], [ 70.303477410254217, 22.938137111338612 ], [ 70.300059441490006, 22.944281317328883 ], [ 70.293630404919199, 22.951402085437842 ], [ 70.291758660333855, 22.95302969016802 ], [ 70.269297721712448, 22.958563544272121 ], [ 70.258311394055553, 22.971869208197401 ], [ 70.249685092492982, 22.987453518565015 ], [ 70.233083530180735, 23.000148830604012 ], [ 70.23194420695954, 22.974920965829874 ], [ 70.222015821073214, 22.959173895259024 ], [ 70.20411217533659, 22.952215887353301 ], [ 70.178477410504044, 22.95302969016802 ], [ 70.171722851728177, 22.951971747498131 ], [ 70.167735221802999, 22.949123439894827 ], [ 70.163096550165605, 22.948960679691588 ], [ 70.154307488399851, 22.956040757075236 ], [ 70.150726759432345, 22.961004950018427 ], [ 70.149668815863137, 22.964300848405394 ], [ 70.147471549971996, 22.966050523512813 ], [ 70.140635613342837, 22.966620184673779 ], [ 70.129079622726323, 22.969305731174522 ], [ 70.125010613149229, 22.975978908499822 ], [ 70.126231316022341, 22.98480866099089 ], [ 70.130625846905261, 22.993963933888434 ], [ 70.109548373158859, 22.959173895259024 ], [ 70.120453321163822, 22.952582098485035 ], [ 70.132334832186686, 22.941066799493168 ], [ 70.135427280544533, 22.929999091285023 ], [ 70.120127799858025, 22.925034898341888 ], [ 70.061778191010646, 22.918198959914033 ], [ 69.996918165041265, 22.893784897954671 ], [ 69.940684441533719, 22.886135158510733 ], [ 69.8842879569236, 22.867824610917062 ], [ 69.852875196333216, 22.863592841136658 ], [ 69.833181185663122, 22.858465887090968 ], [ 69.806813997667788, 22.84528229444231 ], [ 69.780121290165354, 22.827460028357617 ], [ 69.76010175908884, 22.80833567884849 ], [ 69.72885175870168, 22.754828192567 ], [ 69.715830925356883, 22.74689362254264 ], [ 69.694346549753433, 22.749701239420627 ], [ 69.653819206990747, 22.760484117048343 ], [ 69.585703972460337, 22.761175848586497 ], [ 69.57569420692208, 22.764349677495598 ], [ 69.55697675927, 22.778509833162268 ], [ 69.544444207434182, 22.781683661171989 ], [ 69.510752800401391, 22.78050364812486 ], [ 69.500010613498986, 22.781683661171989 ], [ 69.489431185900443, 22.784735419703843 ], [ 69.482595248371965, 22.788478907975215 ], [ 69.477305535022353, 22.79205963694266 ], [ 69.47217858187598, 22.794663804690792 ], [ 69.424652540482313, 22.804266669271321 ], [ 69.405935091930914, 22.813666082923358 ], [ 69.372569207103183, 22.818996486098907 ], [ 69.338145378706244, 22.833075262113649 ], [ 69.23878014378856, 22.841945705330026 ], [ 69.20191491054463, 22.852240302348033 ], [ 69.135590040048257, 22.888373114227811 ], [ 69.039886915548649, 22.950506902971192 ], [ 68.866221550284294, 23.019964911651353 ], [ 68.691254102494767, 23.130519924255108 ], [ 68.660655143819767, 23.154242255575635 ], [ 68.654063347045778, 23.157782294717087 ], [ 68.650645379180887, 23.162054755222751 ], [ 68.651133659790545, 23.171454168874785 ], [ 68.649668816162873, 23.180853583426138 ], [ 68.622569206803391, 23.19155508050255 ], [ 68.609141472500923, 23.206773178839107 ], [ 68.599945508878065, 23.225043036606845 ], [ 68.595713738198398, 23.240383205320651 ], [ 68.59831790504721, 23.236965236556379 ], [ 68.609385613255412, 23.226711330263637 ], [ 68.620127800157803, 23.245428777915773 ], [ 68.623220248515608, 23.256170966616814 ], [ 68.623057488312369, 23.267645574883371 ], [ 68.605316601879608, 23.259588934481705 ], [ 68.577810092461775, 23.255275783250788 ], [ 68.55225670728116, 23.259711004858953 ], [ 68.541026237970456, 23.278225002481854 ], [ 68.56104576904697, 23.316107489469058 ], [ 68.568532748287666, 23.318426824838063 ], [ 68.599131706962666, 23.322251695459379 ], [ 68.606944207509102, 23.325588283672339 ], [ 68.603037957235912, 23.332831122158549 ], [ 68.592051628679698, 23.340073960644755 ], [ 68.578379754522004, 23.343410548857715 ], [ 68.571055535484547, 23.346380926838258 ], [ 68.566661003702308, 23.352972723612307 ], [ 68.563731316447033, 23.35993073151803 ], [ 68.56104576904697, 23.363918361443204 ], [ 68.555186394536449, 23.363959052168521 ], [ 68.548513217211152, 23.361517645522888 ], [ 68.54314212331029, 23.358587958267655 ], [ 68.541026237970456, 23.357001044262738 ], [ 68.529470248253332, 23.363104559527752 ], [ 68.520681186487508, 23.369208075692136 ], [ 68.515147332383407, 23.377020575339252 ], [ 68.513194207246826, 23.3880882835474 ], [ 68.515147332383407, 23.399318751958837 ], [ 68.520762566139453, 23.407538153463001 ], [ 68.529551628804583, 23.41193268434591 ], [ 68.541026237970456, 23.41168854449074 ], [ 68.536387566333062, 23.421332097997883 ], [ 68.530121289965493, 23.425685939954118 ], [ 68.522146030115138, 23.424750067661474 ], [ 68.513194207246826, 23.418524481119896 ], [ 68.501475457326464, 23.423285223134535 ], [ 68.496429883832022, 23.417873440306998 ], [ 68.49048912877025, 23.409328518396357 ], [ 68.47535241008562, 23.404852606062882 ], [ 68.462575717495312, 23.409125067467865 ], [ 68.458832227425304, 23.419826565443593 ], [ 68.461110872968362, 23.433172919194867 ], [ 68.465505404750587, 23.445786851581939 ], [ 68.451914910244838, 23.437730210280957 ], [ 68.440440300179645, 23.434271552590072 ], [ 68.430918816150424, 23.436590887059758 ], [ 68.423675976764898, 23.445786851581939 ], [ 68.43295332093895, 23.465887762310381 ], [ 68.447438997911362, 23.487453518465081 ], [ 68.465586785301852, 23.505275783650458 ], [ 68.485850457132855, 23.514105536141578 ], [ 68.481293165147392, 23.525132554523729 ], [ 68.475596549940789, 23.524115302579098 ], [ 68.468028191048106, 23.519842841174178 ], [ 68.458669467222066, 23.521470445005029 ], [ 68.454112175236659, 23.526271876845605 ], [ 68.444021030046471, 23.54120514550106 ], [ 68.437347851821855, 23.548814195119004 ], [ 68.441416863197659, 23.532049872603515 ], [ 68.447438997911362, 23.516343491858656 ], [ 68.446950717301704, 23.502997137208123 ], [ 68.431162956904913, 23.493597723556086 ], [ 68.411631707337378, 23.494696356051971 ], [ 68.406097852333957, 23.508734442240716 ], [ 68.410817905421979, 23.548814195119004 ], [ 68.404958530012081, 23.597601630111111 ], [ 68.408864780285327, 23.621323960532315 ], [ 68.427500847386156, 23.631415106621823 ], [ 68.471527540363624, 23.618638414031576 ], [ 68.491465690888887, 23.618841864060752 ], [ 68.492686393762014, 23.637600002438145 ], [ 68.486175977539276, 23.64142487216008 ], [ 68.476898634264487, 23.639349677545564 ], [ 68.46876061331163, 23.64081452027386 ], [ 68.465505404750587, 23.655259507420332 ], [ 68.469411655023791, 23.659247137345513 ], [ 68.488942905490646, 23.664780992348874 ], [ 68.504730664988173, 23.674221095826901 ], [ 68.523936394149231, 23.675930080209007 ], [ 68.53353925872976, 23.679185289669359 ], [ 68.538828972079372, 23.684027411335929 ], [ 68.55469811302747, 23.706488348158693 ], [ 68.583506706769057, 23.735296941900337 ], [ 68.601735872912158, 23.748683986376868 ], [ 68.637868685691259, 23.761542059518426 ], [ 68.654551629454076, 23.799058335373839 ], [ 68.670746289909331, 23.81574127823739 ], [ 68.680186394286622, 23.817775783025915 ], [ 68.715586784802255, 23.81574127823739 ], [ 68.725596550340455, 23.818915106247115 ], [ 68.745127799907991, 23.833075261913788 ], [ 68.756521030321252, 23.836249090822886 ], [ 68.768809441402581, 23.841131903214709 ], [ 68.82162519614586, 23.87840403921501 ], [ 68.805674675545774, 23.884426173928766 ], [ 68.780039909813951, 23.874090887084773 ], [ 68.766937695917861, 23.87840403921501 ], [ 68.740244988415427, 23.853461005021352 ], [ 68.71778404979402, 23.841009832837464 ], [ 68.691905144206984, 23.836655992679873 ], [ 68.654063347045778, 23.836249090822886 ], [ 68.633474154808354, 23.833075261913788 ], [ 68.623057488312369, 23.824408270525218 ], [ 68.609385613255412, 23.79523346655122 ], [ 68.598887566208177, 23.78188711100136 ], [ 68.587738477448724, 23.775702216084362 ], [ 68.55469811302747, 23.768540757250143 ], [ 68.538340691469713, 23.761297919663257 ], [ 68.52475019606463, 23.752020575489151 ], [ 68.510020379237048, 23.744086005464734 ], [ 68.472829622888739, 23.737494208690741 ], [ 68.449717644353754, 23.723334052124805 ], [ 68.427744988140645, 23.714300848705189 ], [ 68.410817905421979, 23.700506903270927 ], [ 68.341970247728725, 23.623968817207121 ], [ 68.351573113208573, 23.617824611216797 ], [ 68.353037956836189, 23.610663153281898 ], [ 68.34888756580844, 23.603420315695015 ], [ 68.341970247728725, 23.59662506709315 ], [ 68.327321811452393, 23.586900132135376 ], [ 68.317637566320556, 23.586127020045918 ], [ 68.308116082291335, 23.589056708200523 ], [ 68.294118685928581, 23.590399481450895 ], [ 68.230804884138067, 23.588080145182513 ], [ 68.18140709725968, 23.594061590969595 ], [ 68.157399936257988, 23.600816147946826 ], [ 68.143402539895234, 23.612697658070424 ], [ 68.150075717220531, 23.631415106621823 ], [ 68.154144726797639, 23.632310289088529 ], [ 68.174327018976712, 23.631415106621823 ], [ 68.178233269249958, 23.634344793877116 ], [ 68.181895378768658, 23.647853907831571 ], [ 68.184255404862981, 23.651922919207319 ], [ 68.198090040123233, 23.659084377142271 ], [ 68.209320509433937, 23.662746486661028 ], [ 68.220062696336328, 23.659247137345513 ], [ 68.232676628723411, 23.64500560112759 ], [ 68.245127800007921, 23.659125066968265 ], [ 68.261892123422726, 23.661444403236597 ], [ 68.27588951888616, 23.665838934119499 ], [ 68.280446810871567, 23.685980536472577 ], [ 68.258962436167437, 23.67470937733588 ], [ 68.240977409879505, 23.674017644898353 ], [ 68.224864129076238, 23.681870835270782 ], [ 68.208750847373651, 23.696234441865947 ], [ 68.197520378962267, 23.714544989459675 ], [ 68.195811393680842, 23.733465887140934 ], [ 68.197927279919995, 23.753404039464836 ], [ 68.197764518817436, 23.774807033617655 ], [ 68.178233269249958, 23.754299221032223 ], [ 68.168142123160393, 23.747463283503688 ], [ 68.163747592277488, 23.75771719069575 ], [ 68.16602623782056, 23.773179428887481 ], [ 68.175629102401089, 23.798244533458437 ], [ 68.179698112877574, 23.827460028157756 ], [ 68.182465039929625, 23.83576080931385 ], [ 68.183034701090534, 23.842108466232727 ], [ 68.183037728208532, 23.842158406485222 ], [ 68.183517293488237, 23.843300272989204 ], [ 68.207288453499288, 23.877019145317256 ], [ 68.21503991705849, 23.881747539617262 ], [ 68.232919962785999, 23.889111430448104 ], [ 68.239947957732042, 23.89311635343693 ], [ 68.243048543155723, 23.893426412698766 ], [ 68.252867065162874, 23.891695251934316 ], [ 68.256794474685236, 23.891927795930989 ], [ 68.260360148102322, 23.89554514619152 ], [ 68.257931356247056, 23.899472555713878 ], [ 68.25374556520562, 23.902779847611832 ], [ 68.251936890075385, 23.904821065839478 ], [ 68.253073772536524, 23.91122894316117 ], [ 68.252660360487184, 23.920091452558491 ], [ 68.25493412271156, 23.929108988888679 ], [ 68.263925822418727, 23.935930277360391 ], [ 68.27400272594501, 23.937687277445882 ], [ 68.277671753048921, 23.933501486404445 ], [ 68.280048868960066, 23.925724183524206 ], [ 68.286198364762683, 23.91637074861114 ], [ 68.300409383386281, 23.910505473648691 ], [ 68.314051961228969, 23.915905661517051 ], [ 68.325989218527567, 23.927791239274253 ], [ 68.335032593279536, 23.940994568444573 ], [ 68.333689005243329, 23.94804840091296 ], [ 68.329864949407849, 23.958151144659546 ], [ 68.330433390188759, 23.966574402686486 ], [ 68.342629028107112, 23.968563944970064 ], [ 68.348881876697234, 23.964610697925362 ], [ 68.352395874170199, 23.956549174205001 ], [ 68.353842814094534, 23.947169902668854 ], [ 68.353636109418829, 23.93928924610179 ], [ 68.385468790452279, 23.960424906883926 ], [ 68.431564168751365, 23.96714284346745 ], [ 68.547836141025059, 23.966316020268088 ], [ 68.646434774045517, 23.965695903543118 ], [ 68.724466187064863, 23.965179139605592 ], [ 68.725086303789837, 24.104059550108154 ], [ 68.725551391783242, 24.208911032618058 ], [ 68.725913126989198, 24.289216206962347 ], [ 68.747307169290409, 24.3311774701641 ], [ 68.799190308186141, 24.329084574193697 ], [ 68.81381473795976, 24.308439839826743 ], [ 68.819654175399805, 24.250303853240204 ], [ 68.838774455476695, 24.236454569822509 ], [ 68.848903035846362, 24.244025167127738 ], [ 68.880115601054101, 24.297355245048486 ], [ 68.883267863321166, 24.305365091925406 ], [ 68.885076538451457, 24.313555806854989 ], [ 68.890295858267208, 24.319472759560195 ], [ 68.904196819427611, 24.320583802700295 ], [ 68.913188517336138, 24.3172506714813 ], [ 68.921973511468352, 24.310506897375369 ], [ 68.929414918463678, 24.30236785928923 ], [ 68.948690226372818, 24.270276794938123 ], [ 68.962642863477342, 24.257228495398742 ], [ 68.980781290723925, 24.25539398184679 ], [ 69.007808064890227, 24.264566549606563 ], [ 69.048477416899217, 24.285237121495918 ], [ 69.067701049763613, 24.288441061505743 ], [ 69.091885620025309, 24.281903992075563 ], [ 69.148212931481552, 24.256660055517152 ], [ 69.166713093934092, 24.253171896465854 ], [ 69.206245565280582, 24.258572083434895 ], [ 69.280814656770971, 24.283738506526838 ], [ 69.5630713298779, 24.27676218752492 ], [ 69.592320190324457, 24.264618226449947 ], [ 69.670558308918757, 24.188705546024092 ], [ 69.714586629669199, 24.168577576493924 ], [ 69.769053589151767, 24.162557271900532 ], [ 69.972038614890138, 24.165218608651852 ], [ 70.015963582853018, 24.174055277828806 ], [ 70.052137085458057, 24.202063903925982 ], [ 70.06298913623958, 24.220305684859451 ], [ 70.087173707400638, 24.282549947222257 ], [ 70.097870727651909, 24.298828023394545 ], [ 70.109704630364362, 24.304900003932001 ], [ 70.144586222676011, 24.307897237467493 ], [ 70.202205444425701, 24.325570578519368 ], [ 70.22277266442687, 24.326707459181868 ], [ 70.242564738072176, 24.330609029383194 ], [ 70.279099975883113, 24.355077820485 ], [ 70.29853031432252, 24.363423564146153 ], [ 70.353203979380098, 24.366265768050706 ], [ 70.370773966745134, 24.372363587009936 ], [ 70.416352580207374, 24.401948344240676 ], [ 70.520945679399546, 24.424918519474087 ], [ 70.562906941701939, 24.424091695375402 ], [ 70.575205932407798, 24.400036316322932 ], [ 70.569211466236126, 24.389881898430868 ], [ 70.551951538132911, 24.379365744433525 ], [ 70.546473836798071, 24.373138733365799 ], [ 70.545647014498101, 24.362183330696148 ], [ 70.555362182818428, 24.327017518443704 ], [ 70.560219767428279, 24.28725250310054 ], [ 70.567661174423606, 24.272808940480211 ], [ 70.58471439605249, 24.257900288967157 ], [ 70.621508016281879, 24.241157125700788 ], [ 70.755453328708128, 24.231441956481088 ], [ 70.776020548709297, 24.236687114718556 ], [ 70.813589315294607, 24.254463807658563 ], [ 70.834104858452392, 24.261285095230953 ], [ 70.851468139343112, 24.264876607069759 ], [ 70.857565959201608, 24.271672058019018 ], [ 70.844543498083951, 24.288286030975538 ], [ 70.84092614782341, 24.305830179918868 ], [ 70.856532430427293, 24.323813578433878 ], [ 70.917717326493388, 24.361718242702686 ], [ 70.936320841733433, 24.367195943138249 ], [ 70.955337769022762, 24.365904032844803 ], [ 70.977145223373313, 24.357248229921872 ], [ 70.996678915499487, 24.35660227567444 ], [ 71.007117554231669, 24.363966167404662 ], [ 71.014352254752723, 24.375205790015166 ], [ 71.025100951847421, 24.386290385692739 ], [ 71.073056681220791, 24.402103373871565 ], [ 71.082771850440494, 24.411508483829429 ], [ 71.075020385981972, 24.436416525402301 ], [ 71.040087117726245, 24.446777648869379 ], [ 71.000089559285684, 24.452901306250279 ], [ 70.977145223373313, 24.464941915437006 ], [ 70.974354695412828, 24.472202453480403 ], [ 70.973114461063503, 24.479643860475782 ], [ 70.973217813851008, 24.487240295303362 ], [ 70.974768107462168, 24.494965922239484 ], [ 70.977145223373313, 24.515068054247301 ], [ 70.980504191215388, 24.521889344517596 ], [ 70.981899455195659, 24.5285297649367 ], [ 70.98086592642133, 24.534730937582701 ], [ 70.977145223373313, 24.540389506070817 ], [ 70.957766560878028, 24.55602162709641 ], [ 70.954821004185973, 24.58452118050803 ], [ 70.962779175118769, 24.615785421659833 ], [ 70.977145223373313, 24.639685771081467 ], [ 71.043342732780829, 24.669063823636517 ], [ 71.063858276837934, 24.682577209370713 ], [ 71.056632329418434, 24.692819747333424 ], [ 71.086751742598821, 24.687433987288667 ], [ 71.129746534574892, 24.660949815481555 ], [ 71.222350702322998, 24.63681692116398 ], [ 71.235063104178877, 24.635964260442215 ], [ 71.251496209982051, 24.63681692116398 ], [ 71.266999138899095, 24.647358914482304 ], [ 71.280021600016795, 24.653508409385545 ], [ 71.296041293770642, 24.658262641207894 ], [ 71.321982863218508, 24.662319241040105 ], [ 71.335935500323018, 24.660045477916462 ], [ 71.358259718611052, 24.650485338327648 ], [ 71.378413526562937, 24.646661282492168 ], [ 71.393503046128657, 24.648935044716492 ], [ 71.408695916683186, 24.655317084515836 ], [ 71.438978305904058, 24.676194362879521 ], [ 71.449623651110571, 24.681852932267017 ], [ 71.46905399044924, 24.686426296036696 ], [ 71.545845168219884, 24.688054104013638 ], [ 71.571890089555936, 24.686245428883403 ], [ 71.591010369632826, 24.681904609110397 ], [ 71.6096138848728, 24.667900296061813 ], [ 71.620052525403679, 24.662086697043431 ], [ 71.637002395144393, 24.657642524482917 ], [ 71.651885207336406, 24.658004258789497 ], [ 71.750897250607565, 24.678132229218981 ], [ 71.762782831062779, 24.676581936507141 ], [ 71.768880650021956, 24.67100088148549 ], [ 71.771464470608791, 24.661130683534221 ], [ 71.775805292180436, 24.650433661484268 ], [ 71.784796990988283, 24.643069769754046 ], [ 71.807844679688159, 24.636119290073161 ], [ 71.821487258430167, 24.635705878023824 ], [ 71.828721958051901, 24.638263861987632 ], [ 71.830478957238014, 24.643767401744181 ], [ 71.829342074776875, 24.657022406858566 ], [ 71.82965213403871, 24.663326931392753 ], [ 71.833579542661695, 24.6711817495381 ], [ 71.841434360807028, 24.678442288480817 ], [ 71.856833936936582, 24.684927680168293 ], [ 71.867375930254909, 24.686555488145238 ], [ 71.876677687425271, 24.685573635314988 ], [ 71.883085564746963, 24.681852932267017 ], [ 71.893317498803455, 24.667771103953267 ], [ 71.901482375311318, 24.661828315524296 ], [ 71.920499301701369, 24.656944892492781 ], [ 71.934761997168366, 24.658159288420386 ], [ 71.947887811073585, 24.662629299402617 ], [ 71.957396274718278, 24.669786485557829 ], [ 71.97341596937143, 24.687589016020233 ], [ 71.978790317918808, 24.691490587120878 ], [ 71.986748487952269, 24.695288805434011 ], [ 72.0344975117507, 24.706502590522117 ], [ 72.050930616654611, 24.708362942495789 ], [ 72.061059197923598, 24.701645005912262 ], [ 72.06881066328144, 24.690327867137334 ], [ 72.080696241937957, 24.668597927152568 ], [ 72.099403110864827, 24.656557318865161 ], [ 72.172783644849275, 24.634000556580414 ], [ 72.206269973180653, 24.630073147058052 ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Goa", "admin": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.990347121122667, 15.613543402805757 ], [ 74.002852818302856, 15.616954047491271 ], [ 74.061557244770981, 15.639510809776024 ], [ 74.100624628124066, 15.640285956131944 ], [ 74.11550744031608, 15.636100165090506 ], [ 74.127599725446927, 15.635169989103698 ], [ 74.140828892139595, 15.637572944335885 ], [ 74.147960239873129, 15.640130927400374 ], [ 74.153851353257309, 15.643231512824055 ], [ 74.167183871838162, 15.652352402841071 ], [ 74.172351515709849, 15.653385932514762 ], [ 74.178966098606494, 15.652042345377932 ], [ 74.19777632032087, 15.645324407895083 ], [ 74.226818475192403, 15.629847317399761 ], [ 74.234053175713413, 15.622793484032055 ], [ 74.237980585235775, 15.616023871504463 ], [ 74.246042108056812, 15.587162583786206 ], [ 74.254103630877793, 15.532824815512807 ], [ 74.257824334825131, 15.51858795846749 ], [ 74.25451704292712, 15.50032033911236 ], [ 74.245421991331781, 15.487659614099865 ], [ 74.236533645311439, 15.472466741746695 ], [ 74.23922081868578, 15.454224961712606 ], [ 74.251003046353432, 15.44267527894095 ], [ 74.254827102188969, 15.436112371988367 ], [ 74.25813439318766, 15.428154201954834 ], [ 74.25906456917447, 15.420092678234479 ], [ 74.258857862700125, 15.415286770468068 ], [ 74.25720421720078, 15.402677721399694 ], [ 74.25720421720078, 15.394176947208331 ], [ 74.25906456917447, 15.385960394756406 ], [ 74.263508741734981, 15.377407945520243 ], [ 74.291517367832213, 15.348779201798717 ], [ 74.295858189403845, 15.342164618002693 ], [ 74.298442009990694, 15.336609402302084 ], [ 74.30019900917685, 15.329012966575132 ], [ 74.304229770587398, 15.289170436866124 ], [ 74.30205936115054, 15.280282090845784 ], [ 74.298338658102566, 15.272918199115562 ], [ 74.289657016757857, 15.266639513003096 ], [ 74.282215610661851, 15.263358059526807 ], [ 74.251416456604133, 15.257518622086703 ], [ 74.247075636831127, 15.256071682162368 ], [ 74.243354933783095, 15.252531847167001 ], [ 74.240874465084445, 15.247312527351252 ], [ 74.241184523446961, 15.237829902128279 ], [ 74.244181756083137, 15.231318671119761 ], [ 74.249142694379813, 15.225453396157317 ], [ 74.278598260401324, 15.209046128775807 ], [ 74.283559197798681, 15.205170396096888 ], [ 74.288106724046017, 15.200597032327151 ], [ 74.291000603894673, 15.194938462939714 ], [ 74.292757603080858, 15.188272203199626 ], [ 74.291827427094049, 15.178712062711496 ], [ 74.288416783307852, 15.167549954466834 ], [ 74.264748976983611, 15.120756944177625 ], [ 74.262475213859986, 15.112772934823051 ], [ 74.259684685899501, 15.097683417056027 ], [ 74.259684685899501, 15.090267849381741 ], [ 74.260304802624475, 15.083084824804811 ], [ 74.267126091995493, 15.049856878891827 ], [ 74.267539504044848, 15.041381944021506 ], [ 74.266609328057982, 15.032312729948499 ], [ 74.264335564934342, 15.022235826422214 ], [ 74.260924921148145, 15.013063259561758 ], [ 74.25503380686466, 15.000247504019054 ], [ 74.247592400768639, 14.97766490331264 ], [ 74.245215284857451, 14.965701809390961 ], [ 74.243664992145597, 14.961231798408727 ], [ 74.241184523446961, 14.95603831611538 ], [ 74.226611769617406, 14.943248398994397 ], [ 74.209868604552398, 14.933481553830626 ], [ 74.197569614745859, 14.928701484485879 ], [ 74.183203565592052, 14.926763617247101 ], [ 74.160672641728965, 14.929192410001686 ], [ 74.154574822769789, 14.927461249237234 ], [ 74.147650180611308, 14.923430487826748 ], [ 74.125325962323231, 14.904801134164982 ], [ 74.091156446013116, 14.887600001938548 ], [ 74.081065299923608, 14.893988348683305 ], [ 74.077159049650376, 14.89838288046553 ], [ 74.035980665175515, 14.921291408072019 ], [ 74.03028404996887, 14.935207423883467 ], [ 74.031016472232338, 14.949774481407188 ], [ 74.035980665175515, 14.979641018718036 ], [ 74.031260612986827, 14.995306707838266 ], [ 74.020192904778682, 15.001776434235008 ], [ 74.006846550128145, 15.004868882592856 ], [ 73.995778841919943, 15.010687567277383 ], [ 73.972992383791436, 15.056870835420678 ], [ 73.964366082228864, 15.064642645241857 ], [ 73.913096549865813, 15.078924872185096 ], [ 73.92253665514248, 15.107855536303926 ], [ 73.928965690813911, 15.12059153906824 ], [ 73.937022332114893, 15.13043854440326 ], [ 73.958262566064533, 15.143133856442315 ], [ 73.96216881633778, 15.152044989484635 ], [ 73.954112175036784, 15.168280341564465 ], [ 73.947276238407639, 15.160834052149761 ], [ 73.891286654755262, 15.343207098628678 ], [ 73.88257897174212, 15.355292059680776 ], [ 73.869476758745378, 15.359564520186433 ], [ 73.848399284998933, 15.360093492420727 ], [ 73.827403190904448, 15.365179754841787 ], [ 73.810394726735225, 15.37759023630036 ], [ 73.782888217317335, 15.407904364394877 ], [ 73.839366082478691, 15.404038803947625 ], [ 73.848399284998933, 15.404486395630611 ], [ 73.860118034919353, 15.407863674568883 ], [ 73.871918165390966, 15.40184153895586 ], [ 73.884938997836443, 15.398016669233867 ], [ 73.899587435911414, 15.407904364394877 ], [ 73.933360221696816, 15.395412502385051 ], [ 73.945323113270987, 15.385687567427278 ], [ 73.954112175036784, 15.366278387337669 ], [ 73.958506706819023, 15.367173570703697 ], [ 73.961680534828744, 15.368231512474322 ], [ 73.964203321126291, 15.370184637610915 ], [ 73.967784050093812, 15.373765367477684 ], [ 73.959971550446639, 15.380682684658149 ], [ 73.937022332114893, 15.411322333159147 ], [ 73.927582226838226, 15.417385158598163 ], [ 73.8859155608544, 15.435207424682913 ], [ 73.879161003877172, 15.435777084944501 ], [ 73.865082226963153, 15.434312242216206 ], [ 73.858571810740429, 15.435207424682913 ], [ 73.854177279857524, 15.438299872141382 ], [ 73.846853060820067, 15.447088933907134 ], [ 73.841563347470455, 15.448879298840549 ], [ 73.806162956954864, 15.452215887053509 ], [ 73.796397332171111, 15.448879298840549 ], [ 73.795176629297984, 15.460760808964148 ], [ 73.800466341748219, 15.475002346081393 ], [ 73.808848504354941, 15.48802317942619 ], [ 73.817556186468764, 15.49664948098876 ], [ 73.828135613167973, 15.501410223003344 ], [ 73.872243685797372, 15.510931707931942 ], [ 73.863129101826516, 15.516343492558118 ], [ 73.859548372859052, 15.521144924398751 ], [ 73.860524935877024, 15.525864976587394 ], [ 73.865977410329194, 15.531398830691442 ], [ 73.865977410329194, 15.537583726507759 ], [ 73.796397332171111, 15.500392971058769 ], [ 73.786387565733534, 15.492173570453868 ], [ 73.766286655005089, 15.497259832874985 ], [ 73.75123131597239, 15.513128972923765 ], [ 73.756114129263594, 15.537583726507759 ], [ 73.741221550434133, 15.559963283678593 ], [ 73.736827018651965, 15.571722723424951 ], [ 73.735118035169123, 15.586004950368132 ], [ 73.73707116030576, 15.598537502203952 ], [ 73.741709831943155, 15.604193427584615 ], [ 73.746592644334996, 15.608384507538968 ], [ 73.748708529674829, 15.61676666924637 ], [ 73.760427280494568, 15.632025458308247 ], [ 73.787364128751491, 15.641791083092011 ], [ 73.838145378706187, 15.654282945101837 ], [ 73.838145378706187, 15.661118882630314 ], [ 73.801036003808505, 15.661851303994464 ], [ 73.783864780335279, 15.659125067667729 ], [ 73.776621940949752, 15.650864976337571 ], [ 73.76823978014167, 15.646918036238386 ], [ 73.733246289684459, 15.625067450402524 ], [ 73.728282096741324, 15.619574286124415 ], [ 73.718272332102387, 15.627142645017043 ], [ 73.707041862791684, 15.643703518402614 ], [ 73.697927279720133, 15.662827867012423 ], [ 73.690765820885858, 15.693793035919834 ], [ 73.685883009393294, 15.704291082967073 ], [ 73.68677819096068, 15.713120835458193 ], [ 73.700856966975422, 15.723211981547701 ], [ 73.722146437008391, 15.734311225382722 ], [ 73.770412224744334, 15.736610826028762 ], [ 73.784261509061352, 15.738652045155728 ], [ 73.792736443931673, 15.74159760184784 ], [ 73.798937615678355, 15.749323227884641 ], [ 73.813096958357889, 15.771879991068712 ], [ 73.817851190180235, 15.77684092936539 ], [ 73.826429477838062, 15.783042100212752 ], [ 73.832320591222285, 15.781491808400231 ], [ 73.835731235907744, 15.777331854881192 ], [ 73.838108351818946, 15.761363837071425 ], [ 73.84027876215508, 15.754129137449693 ], [ 73.843792758728782, 15.749219875996454 ], [ 73.850510695312309, 15.744982408111635 ], [ 73.857745395833305, 15.742889513040549 ], [ 73.876865675910196, 15.739814765139267 ], [ 73.891438429739694, 15.735939032460347 ], [ 73.900326775760036, 15.730538845491306 ], [ 73.908388298581073, 15.721237087421624 ], [ 73.91283247294021, 15.710023302333523 ], [ 73.924821405283566, 15.658346869012798 ], [ 73.9319527530171, 15.644316718441809 ], [ 73.942804802899261, 15.632456977307639 ], [ 73.964405551674787, 15.618814399464949 ], [ 73.979391716654362, 15.614861152420241 ], [ 73.990347121122667, 15.613543402805757 ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Arunachal Pradesh", "admin": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.235293416457964, 29.241213683964297 ], [ 96.267849568802518, 29.241730449700459 ], [ 96.304126424195061, 29.261212464083933 ], [ 96.323246704271909, 29.27501007155751 ], [ 96.337095989488233, 29.279712627435792 ], [ 96.349911743232298, 29.27423492430227 ], [ 96.36624149624798, 29.257233379516823 ], [ 96.366861612972997, 29.244210917499792 ], [ 96.342366984348786, 29.210647075701949 ], [ 96.327484172156773, 29.180442199947542 ], [ 96.316425414900934, 29.171863912289719 ], [ 96.210075317421897, 29.145767314110223 ], [ 96.193642213417348, 29.136930644033942 ], [ 96.183513631249042, 29.123778992606383 ], [ 96.174625285228643, 29.108844503570928 ], [ 96.1953378302766, 29.027014507113783 ], [ 96.280905605209441, 29.077348491839413 ], [ 96.351373184724622, 29.097482086628979 ], [ 96.366568291893074, 29.036536564011207 ], [ 96.457605428747485, 28.99458791110316 ], [ 96.451197551425807, 28.981384582832209 ], [ 96.452127727412602, 28.970377502419801 ], [ 96.460085897446149, 28.963349507473762 ], [ 96.474658651275689, 28.962057597180312 ], [ 96.492228637741377, 28.948001607288337 ], [ 96.50039351424924, 28.929243062417353 ], [ 96.510832153880727, 28.885524800928803 ], [ 96.523751261311631, 28.864414979467707 ], [ 96.576667928082344, 28.808526917583144 ], [ 96.592584269048729, 28.75788401303674 ], [ 96.598009713477424, 28.7099103988458 ], [ 96.502375141599472, 28.644476217803167 ], [ 96.435177856772583, 28.611226297855346 ], [ 96.467141351392215, 28.563941841342903 ], [ 96.4268741636117, 28.51864125419052 ], [ 96.462107952919638, 28.488440863355144 ], [ 96.495225871276872, 28.421470439709022 ], [ 96.512382447491888, 28.428808492118204 ], [ 96.517475337017146, 28.488440863355144 ], [ 96.527542133962285, 28.533741449608208 ], [ 96.557742525696909, 28.584075435233096 ], [ 96.613109908895098, 28.609242427595909 ], [ 96.698677684727301, 28.589108833705659 ], [ 96.769145264242496, 28.51864125419052 ], [ 96.839612843757692, 28.4783740655107 ], [ 96.884913430010698, 28.428040080785074 ], [ 96.89788863175491, 28.354704489520536 ], [ 96.933958782471777, 28.336617737318697 ], [ 96.965791464404475, 28.330468242415456 ], [ 96.997417439862915, 28.337082825312102 ], [ 97.032970825742936, 28.357029928588297 ], [ 97.078446086417699, 28.375142517413217 ], [ 97.115549764110284, 28.36656423065471 ], [ 97.182729126348065, 28.314991150121436 ], [ 97.193271118767058, 28.31139963828263 ], [ 97.20277958241175, 28.31155466701426 ], [ 97.210531046870287, 28.308092346384676 ], [ 97.220762980027445, 28.283391012185454 ], [ 97.229651326947106, 28.274606018053241 ], [ 97.285255167991551, 28.235667827708077 ], [ 97.323495728145275, 28.217477723617996 ], [ 97.328663371117656, 28.19001169898069 ], [ 97.298897745834239, 28.12924021406462 ], [ 97.292903279662568, 28.095082092164823 ], [ 97.306545858404576, 28.069657288453069 ], [ 97.355121705402311, 28.023045146216525 ], [ 97.362253052236525, 27.994881490488346 ], [ 97.356775350002337, 27.980567118177927 ], [ 97.340032185836648, 27.951809184146494 ], [ 97.335691366063642, 27.935608622340048 ], [ 97.336311482788673, 27.91318105126447 ], [ 97.338171834762278, 27.901553853227703 ], [ 97.333520955727451, 27.894164123975141 ], [ 97.314917440487406, 27.884603983487008 ], [ 97.292903279662568, 27.877550151018621 ], [ 97.288665812677067, 27.884345601967929 ], [ 97.288045695052716, 27.897755636713264 ], [ 97.276366821971223, 27.910338847359917 ], [ 97.260657185680529, 27.912044170601966 ], [ 97.24122684724118, 27.90785837956053 ], [ 97.222933390363593, 27.899719341474388 ], [ 97.210944458020251, 27.889513244940296 ], [ 97.198025351488738, 27.873261007189676 ], [ 97.182109008723714, 27.857267150958243 ], [ 97.131776164338447, 27.816856181367648 ], [ 97.123197875781301, 27.812153625489422 ], [ 97.112449178686603, 27.809208069696631 ], [ 97.106041300465606, 27.80553904349204 ], [ 97.098186483219564, 27.791017965606606 ], [ 97.092192017047893, 27.78548858742834 ], [ 97.072348267458537, 27.779184061994833 ], [ 97.06532027251248, 27.773990581500122 ], [ 97.06201298151386, 27.76334523539429 ], [ 97.060359334215875, 27.750451965485802 ], [ 97.056741983955334, 27.746782939281211 ], [ 97.050540812208666, 27.746782939281211 ], [ 97.036174763954108, 27.742920068706209 ], [ 97.00403202365888, 27.734277242101022 ], [ 96.990906209753717, 27.726629130430005 ], [ 96.957006470272333, 27.688078511913766 ], [ 96.939539835694774, 27.67402252202174 ], [ 96.899748982829223, 27.649476217453465 ], [ 96.883522584399685, 27.636324565126579 ], [ 96.870190064020193, 27.619090475445084 ], [ 96.862128540299835, 27.599298400900459 ], [ 96.86202518841165, 27.578369446592657 ], [ 96.866159301710326, 27.568447570898677 ], [ 96.877321411753684, 27.553073832291481 ], [ 96.88031864438986, 27.54384958948696 ], [ 96.881042114801716, 27.534392802685652 ], [ 96.884659465062185, 27.515840963389731 ], [ 96.888483520897736, 27.507185160466744 ], [ 96.890240519184516, 27.492483215428017 ], [ 96.877011352491849, 27.46307932535057 ], [ 96.881352173164174, 27.444114074904626 ], [ 96.90512333227592, 27.408405660292935 ], [ 97.067904093998706, 27.217099508535451 ], [ 97.095499308945904, 27.191261291875087 ], [ 97.101287069542565, 27.183303120942234 ], [ 97.1017004806926, 27.165268046483156 ], [ 97.10438765496626, 27.156017965256858 ], [ 97.111725708274747, 27.148834941579246 ], [ 97.120820760769419, 27.14392568012601 ], [ 97.129295696539117, 27.137879537110898 ], [ 97.134773396974637, 27.12733754559121 ], [ 97.133016398687772, 27.119586080233368 ], [ 97.1228878174188, 27.093696188528263 ], [ 97.119167114370754, 27.087288310307251 ], [ 97.106041300465606, 27.082585754429026 ], [ 97.097979778543873, 27.08589304632698 ], [ 97.089918253924196, 27.092197570861167 ], [ 97.077205851169069, 27.096486715589432 ], [ 97.066973918011826, 27.095246480340784 ], [ 97.058826607062173, 27.092075635382223 ], [ 97.047853637935006, 27.087805074244777 ], [ 97.038035115927798, 27.087029927888857 ], [ 97.02676965399624, 27.091474101348687 ], [ 97.01891483585095, 27.098708801869684 ], [ 97.011886840904921, 27.107028707109116 ], [ 97.002998494884565, 27.114521790048563 ], [ 96.865332479410341, 27.171624247860727 ], [ 96.8426982018605, 27.188522441657305 ], [ 96.84176802587362, 27.204387106679626 ], [ 96.851276490417646, 27.221181945890059 ], [ 96.859648072500519, 27.240715637116914 ], [ 96.853756958216962, 27.248725484893207 ], [ 96.82171756980992, 27.273065083886475 ], [ 96.809935343940921, 27.28577748754099 ], [ 96.789161417465365, 27.317971904679659 ], [ 96.776345662822038, 27.330632630591417 ], [ 96.758879028244493, 27.341743062892014 ], [ 96.724152466463096, 27.356264139878132 ], [ 96.705238891961216, 27.36075998928208 ], [ 96.687255493446202, 27.361741842112274 ], [ 96.675886678727167, 27.357659403858399 ], [ 96.659246867348983, 27.341433004529499 ], [ 96.649014933292491, 27.336213685613068 ], [ 96.636405884224118, 27.335541891145336 ], [ 96.629274536490627, 27.338694153412401 ], [ 96.623176718430756, 27.343655091709074 ], [ 96.614185017824283, 27.348409323531421 ], [ 96.586899862138836, 27.353576966503788 ], [ 96.576047811357313, 27.345412089096605 ], [ 96.567469523699486, 27.328307191523656 ], [ 96.547315714848281, 27.306448059430348 ], [ 96.531812785031931, 27.298541565340933 ], [ 96.510935506668233, 27.292495422325878 ], [ 96.490058227405243, 27.290738424039027 ], [ 96.474658651275689, 27.295389303073868 ], [ 96.407789347400396, 27.298179830135037 ], [ 96.1425858968216, 27.257510478126044 ], [ 96.074166301133843, 27.229863586335391 ], [ 96.013188111542078, 27.190796203881682 ], [ 95.974844197701515, 27.142892151351695 ], [ 95.938360636733904, 27.079898580155309 ], [ 95.916449830495239, 27.051373189221287 ], [ 95.888854615548013, 27.027033590227969 ], [ 95.861466105276506, 27.014217835584638 ], [ 95.804932088245181, 27.00476104788401 ], [ 95.77795699092232, 26.995149231451869 ], [ 95.734962198946249, 26.947296854865947 ], [ 95.709227335972713, 26.907454326056264 ], [ 95.699305461178, 26.896188863225454 ], [ 95.686076294485346, 26.891279603570801 ], [ 95.639980916186275, 26.88642201806169 ], [ 95.624271280794886, 26.880737610252474 ], [ 95.613315877225858, 26.867921855609147 ], [ 95.603394002431216, 26.844254049284924 ], [ 95.591301717300354, 26.823738505227816 ], [ 95.574765258709689, 26.816142070400183 ], [ 95.554404744283474, 26.816607157494325 ], [ 95.531357056482904, 26.820276185497555 ], [ 95.489809204431168, 26.810716044110105 ], [ 95.462730753421482, 26.777178039834659 ], [ 95.439993123983442, 26.735371806263849 ], [ 95.410640909850059, 26.701627096413343 ], [ 95.392657511335003, 26.691756898462067 ], [ 95.315969686351863, 26.669070943169451 ], [ 95.278969361446826, 26.652947897527433 ], [ 95.260572550882486, 26.647625224024857 ], [ 95.24693311796895, 26.648903921478784 ], [ 95.246930259024154, 26.649045445091183 ], [ 95.246310663006611, 26.6797154807848 ], [ 95.227500441292293, 26.723847154322691 ], [ 95.225743443005442, 26.731030178000303 ], [ 95.224813267018632, 26.742140611200224 ], [ 95.227190382929763, 26.759917304140224 ], [ 95.235251906650134, 26.790613105410436 ], [ 95.233081496313929, 26.7980545115065 ], [ 95.225743443005442, 26.806322739902495 ], [ 95.206209751778587, 26.82058543536953 ], [ 95.200215285606902, 26.830145575857607 ], [ 95.197424757646374, 26.84177277299505 ], [ 95.19876834478319, 26.85913605388577 ], [ 95.202178988569386, 26.866732490511986 ], [ 95.208070102852872, 26.872468573365946 ], [ 95.214788039436399, 26.876602688463262 ], [ 95.220472446346236, 26.882132067540844 ], [ 95.225330030956101, 26.889625149580976 ], [ 95.229050734004119, 26.89825511318292 ], [ 95.231634556389594, 26.908073635190075 ], [ 95.234321730663254, 26.945745755462205 ], [ 95.231531203602088, 26.960318508392444 ], [ 95.225433383743592, 26.974219469552843 ], [ 95.209206984414749, 26.988223781702111 ], [ 95.198664991995756, 26.993494778361303 ], [ 95.189673293187852, 26.996026923004074 ], [ 95.179854771180686, 27.003726712417794 ], [ 95.176444125595864, 27.033182278439362 ], [ 95.185022414152996, 27.04201894851564 ], [ 95.190603469174704, 27.044628608423515 ], [ 95.19969852077007, 27.046799017860387 ], [ 95.215821568210728, 27.046488959497871 ], [ 95.238352492073815, 27.042768256449843 ], [ 95.250754835567164, 27.045352077935995 ], [ 95.261193475198681, 27.04886607540902 ], [ 95.304911736687217, 27.079122626208225 ], [ 95.356898228370468, 27.115063584816536 ], [ 95.369300571863818, 27.12201406539679 ], [ 95.386043736029507, 27.128654486715156 ], [ 95.405267368893902, 27.133744615321739 ], [ 95.423767531346442, 27.141289374205254 ], [ 95.448158807183148, 27.159117743089318 ], [ 95.463144973062001, 27.176868598506978 ], [ 95.473273553431667, 27.194826157701009 ], [ 95.478544550090845, 27.210070705998245 ], [ 95.483195428226381, 27.230482896368521 ], [ 95.488053012836218, 27.241541652725058 ], [ 95.493427362282873, 27.250042426017099 ], [ 95.501178826741395, 27.255856025035477 ], [ 95.511100702435428, 27.261979682416374 ], [ 95.534251743922795, 27.271772366001866 ], [ 95.545930617004316, 27.273942776338053 ], [ 95.55957319484699, 27.271384793273562 ], [ 95.57538618392519, 27.26458934232425 ], [ 95.59771040221321, 27.247872016580281 ], [ 95.622411737311765, 27.232963365067228 ], [ 95.643805779612975, 27.230327866737632 ], [ 95.799558547289095, 27.285880031837955 ], [ 95.811857537994939, 27.28634511983142 ], [ 95.845550571901327, 27.282779446414274 ], [ 95.851855096435457, 27.283554591870875 ], [ 95.8609501489302, 27.28577667905045 ], [ 95.870665318149847, 27.287042751821495 ], [ 95.878933547445214, 27.286086738312285 ], [ 95.903738234431927, 27.276087348252467 ], [ 95.909112582979247, 27.277353421023513 ], [ 95.914280226850948, 27.28234019594327 ], [ 95.917690870637074, 27.288360501435982 ], [ 95.921721632946941, 27.298799140168164 ], [ 95.926992628706756, 27.304380195189815 ], [ 95.931643507741612, 27.307687486188509 ], [ 95.950557082243478, 27.312079982804953 ], [ 95.954897902016484, 27.313578600471995 ], [ 95.959238722688823, 27.316265773846332 ], [ 95.961925896962526, 27.31954722732268 ], [ 95.96419966008618, 27.324508164719983 ], [ 95.968747186333516, 27.337478948994253 ], [ 95.972157831019018, 27.343344224856075 ], [ 95.976085239642018, 27.346909898273164 ], [ 95.981769646551911, 27.350656439742856 ], [ 96.000063104328746, 27.359208888979019 ], [ 96.00378380737672, 27.361534328946099 ], [ 96.007194452062251, 27.365125840784906 ], [ 96.009674920760958, 27.369750881398026 ], [ 96.011121860685279, 27.376365465194048 ], [ 96.011845331097078, 27.404658311232076 ], [ 96.009364862398428, 27.413443305364236 ], [ 96.00409386573925, 27.422900092165488 ], [ 95.985076939349241, 27.44517263450944 ], [ 95.978255649978195, 27.449694322335056 ], [ 95.968850539121007, 27.450908718262717 ], [ 95.960995720975674, 27.451063747893606 ], [ 95.952934198154693, 27.450236924694302 ], [ 95.946112908783647, 27.448893338456791 ], [ 95.94032514908632, 27.44687795685223 ], [ 95.935570917263973, 27.444268296944351 ], [ 95.932160271679138, 27.441322740252239 ], [ 95.900947707370705, 27.40527842885637 ], [ 95.893196242012863, 27.399697373834719 ], [ 95.887718539778731, 27.401790268905749 ], [ 95.884824659930061, 27.409748439838602 ], [ 95.889165480602387, 27.428016059193734 ], [ 95.890405714951697, 27.438661404400243 ], [ 95.886685011903737, 27.447833971260756 ], [ 95.880897251307061, 27.451709703040358 ], [ 95.879553664170174, 27.458091741940329 ], [ 95.879553664170174, 27.462613429765945 ], [ 95.895780064398409, 27.497546698920978 ], [ 95.892059361350363, 27.514677435814967 ], [ 95.886788364691228, 27.557000434222623 ], [ 95.879967076219529, 27.569506130503491 ], [ 95.871595494136699, 27.576379095818588 ], [ 95.847514275763132, 27.587308660965896 ], [ 95.837799107442805, 27.594026598448743 ], [ 95.827980585435597, 27.60495616269673 ], [ 95.823639763863952, 27.60779836750066 ], [ 95.811857537994939, 27.613560288776281 ], [ 95.80431277911137, 27.619373887794659 ], [ 95.79852501761539, 27.627719631455811 ], [ 95.795114373829193, 27.636969713581372 ], [ 95.787983026095716, 27.695699978471218 ], [ 95.782195266398361, 27.704846706909954 ], [ 95.775890740964854, 27.717326564769103 ], [ 95.787362909370728, 27.741743679027529 ], [ 95.81340783070678, 27.774429023480646 ], [ 95.900741000896446, 27.865379543930764 ], [ 95.938154737850809, 27.919148871423257 ], [ 95.951487258230287, 27.947855130409941 ], [ 95.966370070422357, 27.969869290335446 ], [ 95.972674594956558, 27.981625677782795 ], [ 95.973088007005828, 27.988808702359727 ], [ 95.964096307298661, 27.993304551763622 ], [ 95.71677290244746, 27.990203966339941 ], [ 95.672331171446359, 27.977956651578204 ], [ 95.588408645042847, 27.930698554194912 ], [ 95.568978305704178, 27.916384181884489 ], [ 95.543553501093157, 27.902069810473328 ], [ 95.493013951132909, 27.885662543091875 ], [ 95.408367954317583, 27.870831406843926 ], [ 95.382633091344061, 27.870443834115626 ], [ 95.366406691115827, 27.872975978758397 ], [ 95.352764113273139, 27.876696681806372 ], [ 95.340878533717301, 27.881192532109644 ], [ 95.313179965982584, 27.895791124360862 ], [ 95.304808383899712, 27.895894477148367 ], [ 95.294059685905694, 27.892380478776026 ], [ 95.247034133418467, 27.866154690286685 ], [ 94.948137648933297, 27.769519762027354 ], [ 94.896187130131906, 27.745813749804704 ], [ 94.82678996868205, 27.714146501759608 ], [ 94.798482701115717, 27.701229355750165 ], [ 94.788977754719525, 27.699440722011666 ], [ 94.722414991958246, 27.686914985238325 ], [ 94.662780388603977, 27.668699041827317 ], [ 94.607073194772042, 27.646504014748466 ], [ 94.562896029028465, 27.618395386737681 ], [ 94.55663699669995, 27.614412950397302 ], [ 94.525941197228391, 27.603896796400015 ], [ 94.51590887759258, 27.604583532204224 ], [ 94.499896274993006, 27.605679633108529 ], [ 94.47457482316949, 27.593871567918477 ], [ 94.449150017659107, 27.616195787105877 ], [ 94.352928501449114, 27.59312225998428 ], [ 94.323472935427546, 27.606816515569726 ], [ 94.312000767021729, 27.610382188087492 ], [ 94.289056431109344, 27.615162258331559 ], [ 94.281511672225847, 27.620226549415683 ], [ 94.271486443744294, 27.633610744839977 ], [ 94.266008742409468, 27.639320991070853 ], [ 94.255156690728626, 27.646839911532645 ], [ 94.25081587095562, 27.648596909819496 ], [ 94.243064405597792, 27.647976793094521 ], [ 94.218983189022921, 27.626634425838056 ], [ 94.2122652533387, 27.612552599323003 ], [ 94.217226189836737, 27.596842963032309 ], [ 94.228595004555729, 27.583045356457994 ], [ 94.240893996160906, 27.574622097531737 ], [ 94.249782343080625, 27.56503611952126 ], [ 94.255785738620872, 27.550767177363291 ], [ 94.256913689914796, 27.548086248881244 ], [ 94.249472283818804, 27.534650377512882 ], [ 94.243064405597792, 27.525968736168231 ], [ 94.112628354814632, 27.422535236312108 ], [ 94.066331007669788, 27.3858222519953 ], [ 94.028503858666099, 27.362542019298751 ], [ 93.993706815217294, 27.336190099993068 ], [ 93.982511834953158, 27.327712103830486 ], [ 93.959524881967667, 27.305926940975546 ], [ 93.846602817765785, 27.19890859595494 ], [ 93.84659022815643, 27.198892401862842 ], [ 93.83451053263488, 27.183353990194455 ], [ 93.827069125639568, 27.167050076499827 ], [ 93.825828892189548, 27.141521918201928 ], [ 93.834923943784901, 27.113875027310652 ], [ 93.8338904150106, 27.106046046687702 ], [ 93.826552361702085, 27.095994981583083 ], [ 93.796476678056166, 27.080621242975944 ], [ 93.772837921632714, 27.064568801309118 ], [ 93.759683058726111, 27.055635687936608 ], [ 93.734775018052545, 27.032639675180853 ], [ 93.718135206674361, 27.019875597380913 ], [ 93.694674106824522, 27.00594879779873 ], [ 93.632042270834106, 26.983366197092316 ], [ 93.602069939975678, 26.977165025345638 ], [ 93.546362746143743, 26.972901719938413 ], [ 93.524968702943212, 26.968095811272626 ], [ 93.479803500630993, 26.949208075192466 ], [ 93.460683220554102, 26.947244371330662 ], [ 93.431020948957595, 26.967475694547655 ], [ 93.419135370301007, 26.977294216554803 ], [ 93.400325147687369, 26.98553660742845 ], [ 93.37500369676313, 26.988792223382397 ], [ 93.020296664759243, 26.953006293505602 ], [ 92.988463982826474, 26.958303127687198 ], [ 92.964589470927294, 26.965718696260801 ], [ 92.944952426912934, 26.978637803691633 ], [ 92.939164667215593, 26.98739695940213 ], [ 92.936994256879387, 26.996104438269182 ], [ 92.937097608767573, 27.000290229310615 ], [ 92.936167433680041, 27.001452949294158 ], [ 92.902577752561157, 27.018376979713814 ], [ 92.814831171221527, 27.050803940849157 ], [ 92.740520461250213, 27.06263784446093 ], [ 92.698765903623467, 27.065919297937224 ], [ 92.678818801246607, 27.061087550849773 ], [ 92.655461053284952, 27.043104153234076 ], [ 92.641198357817899, 27.028479723460457 ], [ 92.626212192838395, 27.018066921351299 ], [ 92.60574832562466, 27.009436956850031 ], [ 92.54735395661973, 26.99943756768959 ], [ 92.475523716246443, 26.976777451718018 ], [ 92.365659621294441, 26.949983222447706 ], [ 92.328866001065052, 26.935746365402387 ], [ 92.315843539947352, 26.933446763857027 ], [ 92.278636508567928, 26.932361559138592 ], [ 92.257655878316072, 26.924558416937366 ], [ 92.210320265667676, 26.912336941496612 ], [ 92.112135043797167, 26.92021759716436 ], [ 92.080370916284707, 26.921570891583364 ], [ 92.083918905433094, 26.937323303227849 ], [ 92.066969034793061, 26.994839172190037 ], [ 92.066969034793061, 26.994942525876862 ], [ 92.049709106689861, 27.026826885552275 ], [ 91.99989302624212, 27.071526998072493 ], [ 91.987697388323781, 27.10403147447294 ], [ 91.98790409389872, 27.122273255406409 ], [ 91.990797973747448, 27.140773417858945 ], [ 91.995862263932267, 27.158033345962103 ], [ 92.002993611665815, 27.172606100690977 ], [ 92.00578806246908, 27.17611234330996 ], [ 92.008471313899946, 27.179479065106754 ], [ 92.021493775017674, 27.191829733555316 ], [ 92.027074829139991, 27.199839580432293 ], [ 92.029968709887996, 27.20846954403418 ], [ 92.033172648099168, 27.227434794480182 ], [ 92.036789998359708, 27.236478170131416 ], [ 92.050639282676713, 27.251412659166867 ], [ 92.081851847884408, 27.275132141435158 ], [ 92.088776489143612, 27.292340394493571 ], [ 92.084849081419904, 27.304225973150089 ], [ 91.997309204755922, 27.448661601151962 ], [ 91.975088338356088, 27.472432760263636 ], [ 91.963306112487075, 27.468918763689992 ], [ 91.933747192778682, 27.449126689145366 ], [ 91.920931437235964, 27.44514760457826 ], [ 91.88434452348092, 27.447162984384185 ], [ 91.857369425258725, 27.443080546130254 ], [ 91.779648072400548, 27.418844299924494 ], [ 91.750089151792878, 27.416157125650777 ], [ 91.74481815603302, 27.423753560478414 ], [ 91.743681274471186, 27.439153138406589 ], [ 91.727091720806229, 27.459941598825701 ], [ 91.727041463093016, 27.46000457744929 ], [ 91.704923950379936, 27.468763733159726 ], [ 91.680222616180714, 27.472846171413661 ], [ 91.657381633055863, 27.479150695947848 ], [ 91.641671997664474, 27.494963684126724 ], [ 91.632887004431652, 27.511655172348291 ], [ 91.604464966285136, 27.532144877084356 ], [ 91.595059855427934, 27.546381734129675 ], [ 91.573252401077383, 27.619710592170058 ], [ 91.579866983974085, 27.657976989846183 ], [ 91.62668583178565, 27.716423035694497 ], [ 91.632887004431652, 27.759443665192968 ], [ 91.773756958117062, 27.763810323387695 ], [ 91.814788045331937, 27.754534404639053 ], [ 91.849411255225206, 27.735259094931273 ], [ 91.864914185041556, 27.729988098272081 ], [ 91.908735799317625, 27.731900126189821 ], [ 91.952247355231222, 27.724820455299771 ], [ 91.975088338356088, 27.726577454485888 ], [ 92.012192016947992, 27.741331075468729 ], [ 92.069656209966055, 27.794041037563822 ], [ 92.106553182083616, 27.810861715195976 ], [ 92.126293578885495, 27.812722066270332 ], [ 92.210009399713982, 27.806262512105199 ], [ 92.221378214432974, 27.807399394566396 ], [ 92.229026327003311, 27.810655010520286 ], [ 92.234917440387477, 27.821171164517629 ], [ 92.233057088413872, 27.830343730478766 ], [ 92.22912967979083, 27.839387105230678 ], [ 92.229336385365841, 27.849205628137206 ], [ 92.239568319422332, 27.86527699783516 ], [ 92.249180134955196, 27.862641500404884 ], [ 92.258275187449868, 27.848197936885235 ], [ 92.275225057190568, 27.811688537495961 ], [ 92.288764282245751, 27.793085022255976 ], [ 92.303853800912108, 27.786160380097435 ], [ 92.317289673179829, 27.803678691518364 ], [ 92.329175252735666, 27.832927551964922 ], [ 92.334652954070506, 27.831273906465579 ], [ 92.339820597942193, 27.815564270174882 ], [ 92.350052531099365, 27.802541809057228 ], [ 92.367932576826917, 27.803833720249994 ], [ 92.375580688497934, 27.821119487674189 ], [ 92.381058390732093, 27.842461853132015 ], [ 92.392840618399745, 27.856026917508238 ], [ 92.40441613779447, 27.853830669649646 ], [ 92.417335246124622, 27.828948466498495 ], [ 92.427567179281866, 27.821171164517629 ], [ 92.439039347687668, 27.82328989711106 ], [ 92.475109498404578, 27.846595968229334 ], [ 92.523478638028649, 27.860006002075288 ], [ 92.538051391858218, 27.869178568935801 ], [ 92.564406372456048, 27.895223490271853 ], [ 92.576498658486273, 27.901011250868514 ], [ 92.600683227848634, 27.904886984446755 ], [ 92.628485148370856, 27.915764873650001 ], [ 92.662384887852213, 27.939122620712336 ], [ 92.687809692463276, 27.967854716322101 ], [ 92.691116984361287, 27.994881490488346 ], [ 92.691116984361287, 27.994933166432471 ], [ 92.690910278786291, 27.994933166432471 ], [ 92.690910278786291, 27.994984843275851 ], [ 92.701348918417779, 28.02524139407506 ], [ 92.701348918417779, 28.037824606520353 ], [ 92.689256632387625, 28.048314921196656 ], [ 92.654220011344393, 28.052087301088072 ], [ 92.638923788002359, 28.057487488057113 ], [ 92.637270142503013, 28.071982728420146 ], [ 92.654840128968701, 28.105830790158841 ], [ 92.678611288080418, 28.1330642699001 ], [ 92.707860149426295, 28.155414328408476 ], [ 92.77007857246808, 28.192182108417562 ], [ 92.779173624962738, 28.195902812364857 ], [ 92.782894328010784, 28.19094187406818 ], [ 92.785374796709434, 28.183293762397163 ], [ 92.790232381319285, 28.178901266680093 ], [ 92.805321899985614, 28.178022767536667 ], [ 92.819894653815183, 28.179263000986673 ], [ 92.834777466007182, 28.183526306393894 ], [ 92.85028039582356, 28.191949565320151 ], [ 92.865369914489904, 28.205204570434539 ], [ 92.889554483852265, 28.235822856439647 ], [ 92.903817179319304, 28.249697978279066 ], [ 92.922007283409343, 28.258638001142792 ], [ 92.960351196350558, 28.270213521436851 ], [ 92.974923950180127, 28.282305807467019 ], [ 93.000762166840474, 28.30871246400897 ], [ 93.093159627214931, 28.366641744121175 ], [ 93.116724080751666, 28.390593770386197 ], [ 93.136361124766026, 28.424467672345198 ], [ 93.149693644246256, 28.461467997250274 ], [ 93.155378052055397, 28.494850973693467 ], [ 93.187666664185116, 28.518108055142584 ], [ 93.220042507855382, 28.541654122939399 ], [ 93.264191384524722, 28.562256931811923 ], [ 93.317170037067484, 28.603462550456292 ], [ 93.355432397686954, 28.624065360228194 ], [ 93.446213012820223, 28.671894429983912 ], [ 93.551736287999219, 28.678948262452302 ], [ 93.607133423468653, 28.672204488346434 ], [ 93.625530233133674, 28.672359517977323 ], [ 93.643410278861239, 28.680240174544387 ], [ 93.659740030977588, 28.693546855602893 ], [ 93.67472619685644, 28.703003642404145 ], [ 93.689195597898475, 28.699127910624544 ], [ 93.705525350014824, 28.691893209204235 ], [ 93.722475219755523, 28.696647441026577 ], [ 93.79141158028014, 28.751011048620963 ], [ 93.807121215671529, 28.759124247386062 ], [ 93.865825643038903, 28.775298971670161 ], [ 93.873680461184264, 28.781965231410251 ], [ 93.877297811444777, 28.79242970856415 ], [ 93.887633097389454, 28.795116882837871 ], [ 93.899828735307807, 28.79527191246876 ], [ 93.90861372944002, 28.798243307582531 ], [ 93.912127726912985, 28.806098124828559 ], [ 93.909957317476184, 28.811782532637771 ], [ 93.906753377466345, 28.817518616390991 ], [ 93.907166789515628, 28.825270080849513 ], [ 93.918535604234691, 28.833228252681689 ], [ 93.938482707510872, 28.836664733990283 ], [ 93.959773397024591, 28.836871440464552 ], [ 93.975069621265945, 28.835036926912601 ], [ 93.992019491006644, 28.844648743344802 ], [ 94.011449829445993, 28.853020325427668 ], [ 94.026849406474838, 28.864182435470976 ], [ 94.079473980639634, 28.883072105093554 ], [ 94.135395891207367, 28.897788397916194 ], [ 94.17365825182678, 28.930164240687127 ], [ 94.250182972166357, 28.933107499611417 ], [ 94.291388589911421, 28.9772563762807 ], [ 94.347310501378473, 29.024348511874269 ], [ 94.309048140759032, 29.059667613569498 ], [ 94.270785781038896, 29.097929973289631 ], [ 94.287505330806297, 29.147937724446411 ], [ 94.323782186198883, 29.146025696528618 ], [ 94.335771119441546, 29.149617208367424 ], [ 94.346313110961248, 29.159073995168733 ], [ 94.362539510290091, 29.185325622979118 ], [ 94.372874797134131, 29.196306864969806 ], [ 94.396439249771475, 29.207081400486228 ], [ 94.422380819219356, 29.21049204517174 ], [ 94.474987426728291, 29.210802104433519 ], [ 94.498241821902511, 29.215220439471686 ], [ 94.514778280493175, 29.221059876012468 ], [ 94.528627563910888, 29.231240133225523 ], [ 94.582681112243478, 29.302915344867241 ], [ 94.599941040346707, 29.316635437075707 ], [ 94.630430135142589, 29.31945180345792 ], [ 94.668463989721303, 29.306610209493552 ], [ 94.704224080277001, 29.284699402355493 ], [ 94.756417278434611, 29.23051666371304 ], [ 94.767682739466778, 29.213851013013819 ], [ 94.761481567720111, 29.174706116194269 ], [ 94.776571085487134, 29.166696269317349 ], [ 94.798791951887011, 29.166437886898958 ], [ 94.815431763265209, 29.168866679653544 ], [ 94.854085735468274, 29.170003560316037 ], [ 94.89129276594835, 29.160495097570667 ], [ 94.965913533382803, 29.130186869928075 ], [ 94.988237753469477, 29.124295757443232 ], [ 94.981829875248465, 29.133080750676065 ], [ 94.964673299033493, 29.150108133883229 ], [ 94.954648071451274, 29.169073385228494 ], [ 94.97201135234198, 29.160107523943047 ], [ 94.989064575769518, 29.153983867461474 ], [ 95.047665649450082, 29.140806377612186 ], [ 95.099032024408331, 29.113779603445941 ], [ 95.116912069236534, 29.108095195636725 ], [ 95.191532838469683, 29.096829733705242 ], [ 95.199697713178836, 29.09424591131971 ], [ 95.207862589686712, 29.089595032284866 ], [ 95.212823527084069, 29.081869405348751 ], [ 95.21406376143338, 29.073084412115911 ], [ 95.216337525456353, 29.064997049973833 ], [ 95.224915812214903, 29.059364319008058 ], [ 95.281553182033662, 29.052672220846311 ], [ 95.274436918628837, 29.112646266112272 ], [ 95.306812762299074, 29.13619233390903 ], [ 95.371564448740259, 29.139135591934 ], [ 95.409826808460409, 29.130305816959883 ], [ 95.424543100383715, 29.177397952553452 ], [ 95.44514591015556, 29.186227727527573 ], [ 95.448089168180474, 29.147965367807441 ], [ 95.466348103681952, 29.122719625410351 ], [ 95.474926392239169, 29.136775614403053 ], [ 95.511306600419204, 29.13178883948336 ], [ 95.52143518078887, 29.137860820020808 ], [ 95.522675415138252, 29.161192729560803 ], [ 95.511926717144235, 29.197547099319134 ], [ 95.515337361829694, 29.209432678875029 ], [ 95.550167277297973, 29.212481588354585 ], [ 95.552027628372258, 29.220129700025602 ], [ 95.550684041235442, 29.230284119716313 ], [ 95.553784628457763, 29.239043275426798 ], [ 95.564429972764941, 29.245606181480063 ], [ 95.572904908534653, 29.247259826979406 ], [ 95.58168990086817, 29.247466533453743 ], [ 95.592335246074668, 29.249688618834679 ], [ 95.646697389572779, 29.228350448714192 ], [ 95.717164969087989, 29.218283650869747 ], [ 95.747365359923364, 29.273651034967255 ], [ 95.744780720953457, 29.340432435508482 ], [ 95.776406698210494, 29.345548401637409 ], [ 95.795940389437348, 29.35288645494591 ], [ 95.863133526590929, 29.323985020592197 ], [ 95.953734700895652, 29.359218810799451 ], [ 96.014135482566402, 29.364252209272017 ], [ 96.074536265136459, 29.369285607744583 ], [ 96.141965780096626, 29.368466899128059 ], [ 96.150957478904488, 29.354075012451851 ], [ 96.166046998470151, 29.303173726386309 ], [ 96.176278930727989, 29.28645640154166 ], [ 96.205424438387041, 29.256949158676711 ], [ 96.235293416457964, 29.241213683964297 ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Mizoram", "admin": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.850901320139755, 24.365541490047683 ], [ 92.863407017319943, 24.365619005312848 ], [ 92.930172968407689, 24.391638088227175 ], [ 92.944125603713559, 24.385281886849551 ], [ 92.976371697695612, 24.380708523079871 ], [ 92.991874628411296, 24.380708523079871 ], [ 93.018436313684887, 24.399131171166569 ], [ 93.022053663945357, 24.390165309881123 ], [ 93.018643020159217, 24.367479356387147 ], [ 93.022880487144718, 24.354250189694479 ], [ 93.041690707959759, 24.340840155848461 ], [ 93.04592817584458, 24.326525784437361 ], [ 93.042724236734074, 24.315182807240713 ], [ 93.026084426255224, 24.299989935786865 ], [ 93.018643020159217, 24.28864695948959 ], [ 93.014302198587501, 24.274461778388336 ], [ 93.013372022600691, 24.261956082107467 ], [ 93.017712844172351, 24.239916082860923 ], [ 93.015542433836202, 24.233017280023425 ], [ 93.009341262089535, 24.215033881508411 ], [ 93.008514438890174, 24.203303331583463 ], [ 93.00717085175333, 24.197127997359182 ], [ 93.002209914355973, 24.184803168231603 ], [ 92.997972447370472, 24.160179348398167 ], [ 92.998282504833682, 24.137674262057541 ], [ 92.997559035321146, 24.131318061579229 ], [ 92.995491977772502, 24.126408800125997 ], [ 92.990944452424486, 24.121680405826048 ], [ 92.985880162239638, 24.117830512468171 ], [ 92.980712518367952, 24.113257147799111 ], [ 92.977921991306772, 24.109303900754405 ], [ 92.979368931231107, 24.104782212928733 ], [ 92.984123163053468, 24.100880641828148 ], [ 92.995491977772502, 24.0952737492841 ], [ 93.070939569305651, 24.071864325378264 ], [ 93.084375440674009, 24.064112860919799 ], [ 93.093263787593656, 24.056593940457955 ], [ 93.098224724991013, 24.05003103350537 ], [ 93.105666131986354, 24.044940903999468 ], [ 93.114347772431671, 24.044088243277766 ], [ 93.123856236076364, 24.048945827887614 ], [ 93.135431757269743, 24.059513657829022 ], [ 93.140909457705263, 24.062071641792837 ], [ 93.148040806338074, 24.061994127426996 ], [ 93.158892857119596, 24.060392156972451 ], [ 93.168091262401774, 24.054836941271784 ], [ 93.170571731100466, 24.051038722958701 ], [ 93.170261671838645, 24.046362006401463 ], [ 93.170261671838645, 24.043545640918573 ], [ 93.172535434962285, 24.040806789801472 ], [ 93.178116489983992, 24.039954129079767 ], [ 93.187418247154355, 24.040290024964683 ], [ 93.204058059431858, 24.044088243277766 ], [ 93.213153111027196, 24.049152533462625 ], [ 93.219354282773892, 24.054759426006679 ], [ 93.223488396971874, 24.062485052942801 ], [ 93.227312452807411, 24.067213447242743 ], [ 93.232893507829075, 24.068841254320425 ], [ 93.238474562850712, 24.066360784722399 ], [ 93.248603143220436, 24.056981513186251 ], [ 93.25242719905593, 24.049307563093514 ], [ 93.25356408061775, 24.041685288944901 ], [ 93.251807082330942, 24.035380764410714 ], [ 93.248603143220436, 24.028766181514069 ], [ 93.246432732884259, 24.022461656080562 ], [ 93.248706496007955, 24.017733263579256 ], [ 93.256768019728256, 24.017655748314095 ], [ 93.293561639058311, 24.035639145929842 ], [ 93.302139926716208, 24.035768337139011 ], [ 93.302559469443878, 24.035774654876374 ], [ 93.301105591249978, 24.016571350287556 ], [ 93.302965942324334, 23.995280659874535 ], [ 93.308133586195964, 23.977503967833847 ], [ 93.316091756229511, 23.961096700452341 ], [ 93.337589152217532, 23.928411356898604 ], [ 93.345960734300405, 23.918696188578217 ], [ 93.351851847684571, 23.91391611743483 ], [ 93.355985961882567, 23.906991475276349 ], [ 93.359189900993087, 23.8909459431008 ], [ 93.358259725006263, 23.85526336691083 ], [ 93.374796184496276, 23.739017232159533 ], [ 93.406318807167153, 23.719121806626042 ], [ 93.412313273338825, 23.70870900541626 ], [ 93.425955851181513, 23.690803121267031 ], [ 93.430296671853881, 23.680338643213808 ], [ 93.432363729402525, 23.647317404674475 ], [ 93.400220988207963, 23.45402170883477 ], [ 93.399807577057956, 23.426090597103379 ], [ 93.405905396017118, 23.367670390576048 ], [ 93.407765747091474, 23.356379089323465 ], [ 93.407248983154005, 23.347258199306445 ], [ 93.403734985680998, 23.338757426014347 ], [ 93.384201294454144, 23.313125915828316 ], [ 93.377896769020623, 23.296822001234368 ], [ 93.376449829096302, 23.279484559664692 ], [ 93.380790649768628, 23.237264913145221 ], [ 93.37272912604827, 23.16982716938832 ], [ 93.373039184410771, 23.154220887683771 ], [ 93.37520959474692, 23.142154439176004 ], [ 93.374899536384461, 23.129726257260923 ], [ 93.333351685232032, 23.052289123444265 ], [ 93.318262167465022, 23.033659770681872 ], [ 93.298831828126282, 23.017950134391182 ], [ 93.272786905890911, 23.005909526103714 ], [ 93.246535278979849, 23.004488424601099 ], [ 93.225554646929339, 23.020378927145767 ], [ 93.212118774661676, 23.039886779950898 ], [ 93.196512492057792, 23.053839417055425 ], [ 93.177082154517763, 23.058438619246878 ], [ 93.152380819419236, 23.04993784595478 ], [ 93.140081827814043, 23.031902771495702 ], [ 93.138221476739687, 23.005263570057704 ], [ 93.143182414137044, 22.977513326378862 ], [ 93.151140584170577, 22.956222635965837 ], [ 93.171087687446771, 22.920436706988422 ], [ 93.177392211980973, 22.900205384670748 ], [ 93.175531860906602, 22.881705220419573 ], [ 93.161062459864553, 22.860982972586093 ], [ 93.12530236840955, 22.821553854027108 ], [ 93.115897258451682, 22.798402812539727 ], [ 93.112383260079326, 22.799953105251571 ], [ 93.079517049372242, 22.772719626409636 ], [ 93.070835408926911, 22.692879537360731 ], [ 93.073935994350606, 22.671898905310222 ], [ 93.081894165283444, 22.652830302076772 ], [ 93.104425090045808, 22.615933329059882 ], [ 93.11052290900497, 22.596347961888906 ], [ 93.109075969080635, 22.574695536269981 ], [ 93.098223918299126, 22.535266419509636 ], [ 93.099154093386673, 22.511960347492046 ], [ 93.109592733018161, 22.479042459941578 ], [ 93.117860962313486, 22.462867737456115 ], [ 93.153517700081721, 22.427521057151061 ], [ 93.165920044474419, 22.386593323622943 ], [ 93.174291627456597, 22.269391174463117 ], [ 93.173671508932927, 22.259417622825023 ], [ 93.1690206298981, 22.246911927443474 ], [ 93.161269165439563, 22.242519429927707 ], [ 93.151450643432355, 22.240969137215867 ], [ 93.129746541869366, 22.2316157023028 ], [ 93.124785604472009, 22.232287495871216 ], [ 93.123545370122699, 22.230685527215307 ], [ 93.123131958073344, 22.218386536509449 ], [ 93.141735474212709, 22.187277324089219 ], [ 93.119514607812832, 22.180972799555033 ], [ 93.104321737258303, 22.187173970402394 ], [ 93.090575805728776, 22.197147522040488 ], [ 93.072489054426256, 22.202470195543068 ], [ 93.045824015465854, 22.206862691260191 ], [ 93.036418905508057, 22.206242575434484 ], [ 93.024533325052829, 22.201901753862835 ], [ 93.022362916515334, 22.196217346053682 ], [ 93.023913208327869, 22.18882761770038 ], [ 93.022569621191025, 22.120976460994878 ], [ 93.02546350103971, 22.112914937274518 ], [ 93.007480103423958, 22.105938619171916 ], [ 92.995181111818766, 22.103251444898259 ], [ 92.98546594349844, 22.095965068433138 ], [ 92.967172485721591, 22.06268544657609 ], [ 92.965312133747915, 22.049559632670874 ], [ 92.96841272007093, 22.036175435447937 ], [ 92.974923950180127, 22.023308003961173 ], [ 92.977921183715608, 22.016486715489517 ], [ 92.979574829214954, 22.009355366856649 ], [ 92.979884888476732, 22.002275695966595 ], [ 92.978954712489923, 21.995351054707381 ], [ 92.977094361415567, 21.99302561563962 ], [ 92.974923950180127, 21.99090688124755 ], [ 92.9681026617084, 21.98723785414364 ], [ 92.961694783487403, 21.986876118937737 ], [ 92.955596965427546, 21.989614970054784 ], [ 92.950325968768411, 21.995351054707381 ], [ 92.937406860438202, 22.013024393960613 ], [ 92.920973756433668, 22.02180938719345 ], [ 92.906194295230463, 22.017313538688821 ], [ 92.898649536346952, 21.995402731550818 ], [ 92.889244425489764, 21.966722310985855 ], [ 92.877462198721432, 21.957007142665468 ], [ 92.867023559989249, 21.966515605410844 ], [ 92.862062623491212, 21.995402731550818 ], [ 92.853897746084073, 22.024134827160534 ], [ 92.836121053144026, 22.046510722291995 ], [ 92.771628866079226, 22.104181620885068 ], [ 92.708066854101986, 22.14795155831774 ], [ 92.6837789310528, 22.15430776059463 ], [ 92.673960409045591, 22.147073059174314 ], [ 92.671066528297587, 22.133895569325027 ], [ 92.674683879457376, 22.10557688396602 ], [ 92.673960409045591, 22.095241598021286 ], [ 92.66951623648508, 22.092657777434447 ], [ 92.664555298188404, 22.093846334041071 ], [ 92.662074829489754, 22.094776510027881 ], [ 92.656183716105588, 22.075294495644407 ], [ 92.656080363318083, 22.060566711284704 ], [ 92.658354126441708, 22.046562398236059 ], [ 92.658354126441708, 22.032816468505182 ], [ 92.650912720345715, 22.019173890662493 ], [ 92.639853963089848, 22.013386129166516 ], [ 92.627554972384004, 22.012352600392198 ], [ 92.615255981678132, 22.008786926075739 ], [ 92.603887166959154, 21.995402731550818 ], [ 92.597996054474294, 21.989304912591646 ], [ 92.591278116991461, 21.984240622406784 ], [ 92.58383671089544, 21.980313211985099 ], [ 92.575878539962602, 21.977574362666697 ], [ 92.575155070450066, 21.986566061474544 ], [ 92.573088012901422, 21.995402731550818 ], [ 92.559962198996217, 22.06134185943926 ], [ 92.537327921446362, 22.128624573565215 ], [ 92.549316853789705, 22.138494772415804 ], [ 92.56419966688108, 22.138339741885542 ], [ 92.575568482499392, 22.143300680182215 ], [ 92.577015422423742, 22.168673807949851 ], [ 92.518931111781313, 22.495372212957243 ], [ 92.517380819069473, 22.512580465116336 ], [ 92.504565064426103, 22.543793030324075 ], [ 92.500844360478808, 22.560536194489764 ], [ 92.50291141802748, 22.618620504232862 ], [ 92.495883423081452, 22.695618388477833 ], [ 92.491542602409126, 22.711069641450756 ], [ 92.480690552526923, 22.726159159217779 ], [ 92.453715454304742, 22.747966614467654 ], [ 92.442036580323858, 22.762926941025505 ], [ 92.435008586277192, 22.793286846410805 ], [ 92.42632694493247, 22.87105987611238 ], [ 92.411857543890477, 22.887932231487291 ], [ 92.378681274820934, 22.900437928667422 ], [ 92.359871053106573, 22.92661204031338 ], [ 92.352222941435556, 22.960330913540808 ], [ 92.353049765534166, 23.029913228312804 ], [ 92.327624959124506, 23.171429138044285 ], [ 92.328555135111316, 23.211194153387449 ], [ 92.332689250208702, 23.226257833632069 ], [ 92.350672648723716, 23.260984395413509 ], [ 92.357493937195372, 23.278941956406122 ], [ 92.356873820470383, 23.28912221361923 ], [ 92.352222941435556, 23.298837381939613 ], [ 92.347055298463175, 23.315425517373679 ], [ 92.346745239201354, 23.325295715325005 ], [ 92.349535767161896, 23.344958598660348 ], [ 92.348605591175016, 23.354105326199825 ], [ 92.344884888127041, 23.359117940440562 ], [ 92.331655721434316, 23.368652243406295 ], [ 92.32669478403696, 23.375266825403621 ], [ 92.325351196900144, 23.382165629140442 ], [ 92.32690149051129, 23.39601491345746 ], [ 92.325351196900144, 23.403507995497588 ], [ 92.319770141878479, 23.412163798420519 ], [ 92.306747680760765, 23.423868509923746 ], [ 92.301476685000949, 23.431800842434932 ], [ 92.296825805966122, 23.446580301839443 ], [ 92.291038045369447, 23.49528534004639 ], [ 92.252797485215737, 23.609309388517428 ], [ 92.250006958154501, 23.642614847896873 ], [ 92.261685832135385, 23.685118713457822 ], [ 92.259736604660503, 23.702640572704233 ], [ 92.26809451704824, 23.719560247707246 ], [ 92.260859815627938, 23.775655016066136 ], [ 92.267060988273926, 23.79653229442982 ], [ 92.270885044109406, 23.805058906143582 ], [ 92.270988396896911, 23.810226549115949 ], [ 92.268197869835745, 23.816117662500112 ], [ 92.268507928198275, 23.822008774984962 ], [ 92.270678339433786, 23.829114285196106 ], [ 92.274915806419273, 23.837795924742117 ], [ 92.278636508567928, 23.842136746313763 ], [ 92.28711144433764, 23.849164740360429 ], [ 92.28948856024877, 23.851541856271634 ], [ 92.292072381734997, 23.853505561032815 ], [ 92.295379672733617, 23.85459076575119 ], [ 92.299203728569154, 23.854254868967015 ], [ 92.302304314892169, 23.852730413777575 ], [ 92.304681430803299, 23.85037913718741 ], [ 92.306645134665175, 23.847717800436097 ], [ 92.309332309838155, 23.845857449361798 ], [ 92.312742953624351, 23.845159817371663 ], [ 92.316877068721666, 23.847459418017699 ], [ 92.318634067907837, 23.85053416591898 ], [ 92.319977655044653, 23.857381292812416 ], [ 92.32111453660653, 23.866734726826159 ], [ 92.320597771769684, 23.876191515426051 ], [ 92.32111453660653, 23.883762111831963 ], [ 92.320907831031533, 23.889084784435219 ], [ 92.319874302257148, 23.893244737054939 ], [ 92.315016717647353, 23.902494819180554 ], [ 92.314086541660501, 23.905802110179248 ], [ 92.313466424935513, 23.912054958769314 ], [ 92.313776483297971, 23.936446235505336 ], [ 92.314706659284852, 23.944404405538869 ], [ 92.316153599209173, 23.950295518023719 ], [ 92.328762648277547, 23.97998362894128 ], [ 92.331966587388052, 23.99484060271163 ], [ 92.33103641230052, 23.999982408161596 ], [ 92.328762648277547, 24.005821844702378 ], [ 92.32266482931837, 24.017914129833226 ], [ 92.320804478244028, 24.020782172159496 ], [ 92.319047479057858, 24.026957506383777 ], [ 92.318117303071048, 24.035949205191621 ], [ 92.318737420695328, 24.057394924336275 ], [ 92.327935825977505, 24.095041205287369 ], [ 92.328762648277547, 24.103076891485323 ], [ 92.32535200359203, 24.188343004126288 ], [ 92.323905063667695, 24.196171982950652 ], [ 92.321217889394035, 24.202993272321628 ], [ 92.317393832659192, 24.208315944924887 ], [ 92.312846307311162, 24.213044338325513 ], [ 92.310055780249996, 24.215369778292594 ], [ 92.30416466686583, 24.222087713976798 ], [ 92.298480259056632, 24.237719835002331 ], [ 92.368863560404961, 24.241569729259588 ], [ 92.416199172154037, 24.239450994867518 ], [ 92.423020460625693, 24.238029893364846 ], [ 92.426947870148055, 24.235471910300411 ], [ 92.428601515647401, 24.232629706395805 ], [ 92.42880822122234, 24.229529120072804 ], [ 92.427257927611194, 24.224645697940609 ], [ 92.424777459811864, 24.219684760543256 ], [ 92.417129348140847, 24.207540798568967 ], [ 92.414958937804641, 24.202140610700603 ], [ 92.414855585017193, 24.195706894957191 ], [ 92.423330519887514, 24.169171047206014 ], [ 92.431288689921061, 24.152996323821235 ], [ 92.436869744942697, 24.145270697784433 ], [ 92.444207798251213, 24.138320217204235 ], [ 92.453302849846551, 24.132325751032564 ], [ 92.463534783903114, 24.128579210462188 ], [ 92.47190636598593, 24.127778224785224 ], [ 92.480174595281298, 24.129225164709563 ], [ 92.48947635335098, 24.13250661908517 ], [ 92.501878696844329, 24.140852362746323 ], [ 92.511180454014692, 24.149508164769991 ], [ 92.524823032756714, 24.165631212210652 ], [ 92.557275832313763, 24.191366075184185 ], [ 92.588488396622139, 24.221312568520197 ], [ 92.599650506665483, 24.228676459351103 ], [ 92.610502557447006, 24.233223984699119 ], [ 92.617840610755522, 24.235110175094455 ], [ 92.624455193652224, 24.238520819779975 ], [ 92.626212192838395, 24.246608181022729 ], [ 92.624971957589693, 24.25521230710228 ], [ 92.622284784215353, 24.265289212427202 ], [ 92.622594842577854, 24.280740465400122 ], [ 92.630863071873222, 24.295132351177067 ], [ 92.679542270759143, 24.342157905462948 ], [ 92.701246372322188, 24.361924139787217 ], [ 92.707344191281365, 24.36957225235755 ], [ 92.710444776705046, 24.376703600091041 ], [ 92.714578891802347, 24.393317573047561 ], [ 92.746308220947569, 24.471090602749083 ], [ 92.751062452769901, 24.479436347309552 ], [ 92.757780389353442, 24.482976183204293 ], [ 92.765221796348754, 24.481296698383908 ], [ 92.777520787054613, 24.470082913295808 ], [ 92.78382531068948, 24.461556301582043 ], [ 92.828680453739921, 24.377323716816075 ], [ 92.837258742297067, 24.367608546697053 ], [ 92.850901320139755, 24.365541490047683 ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Tripura", "admin": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.298480259056632, 24.237719835002331 ], [ 92.30416466686583, 24.222087713976798 ], [ 92.310055780249996, 24.215369778292594 ], [ 92.312846307311162, 24.213044338325513 ], [ 92.317393832659192, 24.208315944924887 ], [ 92.321217889394035, 24.202993272321628 ], [ 92.323905063667695, 24.196171982950652 ], [ 92.32535200359203, 24.188343004126288 ], [ 92.328762648277547, 24.103076891485323 ], [ 92.327935825977505, 24.095041205287369 ], [ 92.318737420695328, 24.057394924336275 ], [ 92.318117303071048, 24.035949205191621 ], [ 92.319047479057858, 24.026957506383777 ], [ 92.320804478244028, 24.020782172159496 ], [ 92.32266482931837, 24.017914129833226 ], [ 92.328762648277547, 24.005821844702378 ], [ 92.33103641230052, 23.999982408161596 ], [ 92.331966587388052, 23.99484060271163 ], [ 92.328762648277547, 23.97998362894128 ], [ 92.316153599209173, 23.950295518023719 ], [ 92.314706659284852, 23.944404405538869 ], [ 92.313776483297971, 23.936446235505336 ], [ 92.313466424935513, 23.912054958769314 ], [ 92.314086541660501, 23.905802110179248 ], [ 92.315016717647353, 23.902494819180554 ], [ 92.319874302257148, 23.893244737054939 ], [ 92.320907831031533, 23.889084784435219 ], [ 92.32111453660653, 23.883762111831963 ], [ 92.320597771769684, 23.876191515426051 ], [ 92.32111453660653, 23.866734726826159 ], [ 92.319977655044653, 23.857381292812416 ], [ 92.318634067907837, 23.85053416591898 ], [ 92.316877068721666, 23.847459418017699 ], [ 92.312742953624351, 23.845159817371663 ], [ 92.309332309838155, 23.845857449361798 ], [ 92.306645134665175, 23.847717800436097 ], [ 92.304681430803299, 23.85037913718741 ], [ 92.302304314892169, 23.852730413777575 ], [ 92.299203728569154, 23.854254868967015 ], [ 92.295379672733617, 23.85459076575119 ], [ 92.292072381734997, 23.853505561032815 ], [ 92.28948856024877, 23.851541856271634 ], [ 92.28711144433764, 23.849164740360429 ], [ 92.278636508567928, 23.842136746313763 ], [ 92.274915806419273, 23.837795924742117 ], [ 92.270678339433786, 23.829114285196106 ], [ 92.268507928198275, 23.822008774984962 ], [ 92.268197869835745, 23.816117662500112 ], [ 92.270988396896911, 23.810226549115949 ], [ 92.270885044109406, 23.805058906143582 ], [ 92.267060988273926, 23.79653229442982 ], [ 92.260859815627938, 23.775655016066136 ], [ 92.26809451704824, 23.719560247707246 ], [ 92.259736604660503, 23.702640572704233 ], [ 92.259308716224183, 23.706486918236685 ], [ 92.238741496223014, 23.716848043502406 ], [ 92.22210168484483, 23.707778829429394 ], [ 92.209389282089631, 23.661605937663861 ], [ 92.194299764322608, 23.648144226075143 ], [ 92.180760539267425, 23.665378317555277 ], [ 92.170631957998381, 23.703644714332079 ], [ 92.150788208409026, 23.731653341328634 ], [ 92.108413534057306, 23.718243307482616 ], [ 92.092187133829071, 23.701345114585358 ], [ 92.059630981484574, 23.659487203271791 ], [ 92.042371053381345, 23.645560405488304 ], [ 92.019013306318968, 23.640056864832438 ], [ 92.003510377401909, 23.647420757461983 ], [ 91.96165246608841, 23.691139018051214 ], [ 91.949146769807541, 23.709768372612295 ], [ 91.936641073526658, 23.723540141664213 ], [ 91.922688436422135, 23.722971699983926 ], [ 91.916487263776148, 23.709871725399804 ], [ 91.914420207126767, 23.688322653467644 ], [ 91.915970499838608, 23.650159607679704 ], [ 91.942325480436509, 23.534430236865941 ], [ 91.940775187724668, 23.495181986359565 ], [ 91.918140910174799, 23.459938660640653 ], [ 91.905118449057085, 23.446631979582143 ], [ 91.889098755303266, 23.43593495843157 ], [ 91.833804973520643, 23.413894959185026 ], [ 91.817681926079985, 23.400924174011372 ], [ 91.791637003844571, 23.368342183245144 ], [ 91.762594848973009, 23.321549173855253 ], [ 91.743681274471186, 23.27232737350948 ], [ 91.749158976705345, 23.23240732943469 ], [ 91.76393843610991, 23.200626323446041 ], [ 91.77902795387692, 23.131767476387886 ], [ 91.791947062207072, 23.101149190382781 ], [ 91.795564412467613, 23.089496154823674 ], [ 91.791326945482112, 23.080375265705921 ], [ 91.776237426815754, 23.065259909517177 ], [ 91.773756958117062, 23.064898173411954 ], [ 91.764248494472355, 23.065647481346154 ], [ 91.76094120347372, 23.065492453513908 ], [ 91.755980265177058, 23.061539206469202 ], [ 91.755566854027023, 23.05683665059092 ], [ 91.756290324438879, 23.052159933134359 ], [ 91.755050090089512, 23.04823252451137 ], [ 91.738306925923823, 23.024668070974652 ], [ 91.731278930977837, 23.01733001856547 ], [ 91.714432414024643, 23.003118998143229 ], [ 91.706991007928636, 22.99536753458403 ], [ 91.694692017222764, 22.988132833163714 ], [ 91.667613566213035, 22.982629293407165 ], [ 91.654074341157852, 22.978055929637428 ], [ 91.646942993424361, 22.976583150392052 ], [ 91.639914998478304, 22.97800425369331 ], [ 91.632783650744827, 22.980303853440088 ], [ 91.625755655798841, 22.981544088688732 ], [ 91.616660604203489, 22.978055929637428 ], [ 91.612009725168633, 22.969839376286181 ], [ 91.608289022120616, 22.960330913540808 ], [ 91.602397908736449, 22.95296702091127 ], [ 91.586068155720781, 22.944466248518545 ], [ 91.582967570297086, 22.947902731625724 ], [ 91.583070923084591, 22.957798767099398 ], [ 91.576766399449738, 22.968805848411129 ], [ 91.563123819808396, 22.974981180836831 ], [ 91.549791300328167, 22.97722910643807 ], [ 91.536562134534833, 22.981854146151925 ], [ 91.52364302620461, 22.995212504053818 ], [ 91.519405558319789, 23.005625305263603 ], [ 91.518165323970464, 23.035080872184487 ], [ 91.515581502484309, 23.038801575232466 ], [ 91.506073038839631, 23.041178691143664 ], [ 91.503282511778465, 23.04440846867589 ], [ 91.498114868806084, 23.069962464496136 ], [ 91.475067179206903, 23.143084615162817 ], [ 91.470416301071367, 23.153290711696965 ], [ 91.463595011700335, 23.184115702377763 ], [ 91.461217895789204, 23.184425761639538 ], [ 91.446438436384682, 23.19788747142962 ], [ 91.445404908509644, 23.203029276879583 ], [ 91.446748494747141, 23.208791199054584 ], [ 91.446438436384682, 23.215534973160455 ], [ 91.439927205376165, 23.223518983414344 ], [ 91.439617147013664, 23.222640482472279 ], [ 91.436206502328147, 23.215715841213065 ], [ 91.436516560690649, 23.214863180491356 ], [ 91.428144980406486, 23.229513449586015 ], [ 91.413572224778292, 23.24863372786421 ], [ 91.394348591913939, 23.262663879334522 ], [ 91.372127726413382, 23.261888732978598 ], [ 91.360965617269329, 23.247522685623434 ], [ 91.355694621509528, 23.224139099239999 ], [ 91.355901327084538, 23.179645691395532 ], [ 91.374608195112074, 23.095723164992073 ], [ 91.370887492064043, 23.062779439919208 ], [ 91.337401163732679, 23.071073507636235 ], [ 91.313526651833428, 23.101045838494652 ], [ 91.30050419251441, 23.142309469706216 ], [ 91.277249796440884, 23.303255716977727 ], [ 91.272908976667878, 23.313487651034219 ], [ 91.267534627221195, 23.321549173855253 ], [ 91.265777628934387, 23.329352315157216 ], [ 91.272908976667878, 23.338499044495276 ], [ 91.28293420425004, 23.347645772934065 ], [ 91.287275024922437, 23.355552267023477 ], [ 91.283967733024426, 23.361443380407646 ], [ 91.270945271906712, 23.364595643574084 ], [ 91.25812951726337, 23.373639018325996 ], [ 91.247897583206836, 23.393766989654804 ], [ 91.234461710939158, 23.43627085431643 ], [ 91.229707479116797, 23.461178894090658 ], [ 91.227330363205667, 23.468775330716934 ], [ 91.220819133096469, 23.47789621983463 ], [ 91.203352499418244, 23.487921448316168 ], [ 91.195084269223599, 23.495181986359565 ], [ 91.185885864840742, 23.511563416218671 ], [ 91.177514282757869, 23.544274597294812 ], [ 91.169866170187532, 23.561973775869028 ], [ 91.140824015315999, 23.612099915578593 ], [ 91.136276489068649, 23.629514872413434 ], [ 91.13968713375418, 23.653570251465901 ], [ 91.152296183721873, 23.655094707554664 ], [ 91.166455526401336, 23.65408701630275 ], [ 91.175240520533563, 23.670313416530909 ], [ 91.168935995100043, 23.685377095876269 ], [ 91.152399537408698, 23.691009826841984 ], [ 91.136586548330499, 23.698890483409055 ], [ 91.132349080445678, 23.720646260916165 ], [ 91.141754191302809, 23.739895732202278 ], [ 91.157567179481688, 23.744985861708127 ], [ 91.17658410677106, 23.746536154419967 ], [ 91.194980916436094, 23.755166118021915 ], [ 91.205212850492586, 23.771573385403368 ], [ 91.225263305656981, 23.826143698572817 ], [ 91.228157186404957, 23.844979756910217 ], [ 91.224023071307656, 23.857485453191082 ], [ 91.212757609376112, 23.880739848365291 ], [ 91.211930786176794, 23.89445994147308 ], [ 91.216271606849119, 23.908386739256567 ], [ 91.250378051905543, 23.964042257144452 ], [ 91.260920044324536, 23.977271423837117 ], [ 91.274149211017217, 23.988226827406148 ], [ 91.291615844695443, 23.994815573679766 ], [ 91.304948364175601, 23.99385955837192 ], [ 91.308432577001753, 23.992501035294534 ], [ 91.316213827006479, 23.989467062654789 ], [ 91.327065877788002, 23.987865092200245 ], [ 91.339054810131344, 23.99522898393047 ], [ 91.349286743288516, 24.03605336646967 ], [ 91.350837036000357, 24.07424224888063 ], [ 91.363032674818015, 24.09984792154432 ], [ 91.404580525970431, 24.103129374121291 ], [ 91.4804415286536, 24.088014017932547 ], [ 91.517545207245433, 24.085197652449658 ], [ 91.558679647247843, 24.089667663431893 ], [ 91.581830688735209, 24.096101380074622 ], [ 91.596506795352283, 24.104989726094963 ], [ 91.606015258996962, 24.118864847934383 ], [ 91.613766723455498, 24.140103862403286 ], [ 91.624515421449502, 24.203459167906257 ], [ 91.629062947696852, 24.215318909040374 ], [ 91.639501587328354, 24.21170155967922 ], [ 91.657174927480852, 24.171368104454409 ], [ 91.666166626288685, 24.15591685058217 ], [ 91.68415002480377, 24.145478210950664 ], [ 91.703683716030625, 24.142946065408577 ], [ 91.72115035150749, 24.148992208423632 ], [ 91.732622518114653, 24.164314270187383 ], [ 91.732002400490302, 24.181677551078103 ], [ 91.725801228743634, 24.202063903925982 ], [ 91.723010701682469, 24.220977478427866 ], [ 91.732932576477182, 24.234284159486375 ], [ 91.796597941241927, 24.221597595152893 ], [ 91.807036580873415, 24.221132507159432 ], [ 91.809723755147147, 24.214543763583773 ], [ 91.811377401545812, 24.192038676343824 ], [ 91.813754517456942, 24.183124491901758 ], [ 91.844243612252825, 24.155322571379536 ], [ 91.864500772992216, 24.15059417707959 ], [ 91.877109822959923, 24.158035584074916 ], [ 91.88434452348092, 24.175553895495845 ], [ 91.90594527225646, 24.260639140084205 ], [ 91.906875448243269, 24.280353699363726 ], [ 91.896436809511073, 24.32011871470689 ], [ 91.899847453297269, 24.3380504354792 ], [ 91.921861613222845, 24.344509990543592 ], [ 91.930956664818183, 24.336965231660084 ], [ 91.953074178430512, 24.322986755234517 ], [ 91.972194459406722, 24.316062113975359 ], [ 91.971367635308056, 24.329678853396324 ], [ 91.948836711445026, 24.363526916933658 ], [ 91.949973592107526, 24.375386658067775 ], [ 92.033379353674192, 24.368849590436238 ], [ 92.062731567807575, 24.371019999873049 ], [ 92.0882597252061, 24.381639507557217 ], [ 92.10758671085793, 24.405979106550483 ], [ 92.111204061118471, 24.434297791010231 ], [ 92.105933065358585, 24.495250143079595 ], [ 92.110894002755941, 24.514292907891384 ], [ 92.123192993461814, 24.525377503568901 ], [ 92.138592570490658, 24.53372324633073 ], [ 92.149979861781134, 24.542182953880168 ], [ 92.158850538821284, 24.53829580340857 ], [ 92.221689081286044, 24.500416978460745 ], [ 92.227890253032726, 24.495378525798284 ], [ 92.232024367230721, 24.488402207695682 ], [ 92.234401483141852, 24.479384671365487 ], [ 92.234711542403701, 24.448172105258429 ], [ 92.236261835115542, 24.437862656836096 ], [ 92.239465773326714, 24.42892263397237 ], [ 92.257759231103563, 24.396004747321221 ], [ 92.260239698902907, 24.385488593323878 ], [ 92.260756463739739, 24.367040106815463 ], [ 92.258379347828608, 24.352002264992503 ], [ 92.254348586418061, 24.337067775957046 ], [ 92.220242141361709, 24.264333198018669 ], [ 92.225409784334019, 24.254979763105549 ], [ 92.230990839355727, 24.248029283424664 ], [ 92.298480259056632, 24.237719835002331 ] ] ] } },
+ { "type": "Feature", "properties": { "name": "Daman and Diu", "admin": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 72.866038017640378, 20.380826662420528 ], [ 72.838973144594874, 20.376315849197049 ], [ 72.818159459991065, 20.378764517868198 ], [ 72.818111857975836, 20.378770118845857 ], [ 72.820811394330335, 20.38613515811101 ], [ 72.823090039873406, 20.416815497337321 ], [ 72.829437695892906, 20.437933660909714 ], [ 72.840017123491393, 20.458726304075633 ], [ 72.847003983447038, 20.468313264145817 ], [ 72.847043964607209, 20.468298271547948 ], [ 72.86378261057898, 20.462021278858909 ], [ 72.879570453713413, 20.439467218137562 ], [ 72.884081266037569, 20.419168564477669 ], [ 72.881825859875477, 20.392103691432165 ], [ 72.866038017640378, 20.380826662420528 ] ] ], [ [ [ 70.982432487868991, 20.710150458276978 ], [ 70.973008613556644, 20.70962239525732 ], [ 70.971562297761793, 20.715709108488564 ], [ 70.971562297761793, 20.724657378135472 ], [ 70.976036433034935, 20.732859960518734 ], [ 70.982001946432646, 20.738079783954841 ], [ 70.990950216978874, 20.739571162079468 ], [ 70.999152797563497, 20.738825473017123 ], [ 71.005952390790171, 20.73656135422311 ], [ 71.005951368260966, 20.736558335198989 ], [ 71.000824415114593, 20.722154039677147 ], [ 70.982432487868991, 20.710150458276978 ] ] ] ] } }
+ ]
+ }
\ No newline at end of file
diff --git a/ios/.gitignore b/ios/.gitignore
new file mode 100644
index 0000000..ad322bc
--- /dev/null
+++ b/ios/.gitignore
@@ -0,0 +1,34 @@
+**/dgph
+*.mode1v3
+*.mode2v3
+*.moved-aside
+*.pbxuser
+*.perspectivev3
+**/*sync/
+.sconsign.dblite
+.tags*
+**/.vagrant/
+**/DerivedData/
+Icon?
+**/Pods/
+**/.symlinks/
+profile
+xcuserdata
+**/.generated/
+Flutter/App.framework
+Flutter/Flutter.framework
+Flutter/Flutter.podspec
+Flutter/Generated.xcconfig
+Flutter/ephemeral/
+Flutter/app.flx
+Flutter/app.zip
+Flutter/flutter_assets/
+Flutter/flutter_export_environment.sh
+ServiceDefinitions.json
+Runner/GeneratedPluginRegistrant.*
+
+# Exceptions to above rules.
+!default.mode1v3
+!default.mode2v3
+!default.pbxuser
+!default.perspectivev3
diff --git a/ios/Flutter/AppFrameworkInfo.plist b/ios/Flutter/AppFrameworkInfo.plist
new file mode 100644
index 0000000..e041d38
--- /dev/null
+++ b/ios/Flutter/AppFrameworkInfo.plist
@@ -0,0 +1,26 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ en
+ CFBundleExecutable
+ App
+ CFBundleIdentifier
+ io.flutter.flutter.app
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ App
+ CFBundlePackageType
+ FMWK
+ CFBundleShortVersionString
+ 1.0
+ CFBundleSignature
+ ????
+ CFBundleVersion
+ 1.0
+ MinimumOSVersion
+ 12.0
+
+
diff --git a/ios/Flutter/Debug.xcconfig b/ios/Flutter/Debug.xcconfig
new file mode 100644
index 0000000..0b2d479
--- /dev/null
+++ b/ios/Flutter/Debug.xcconfig
@@ -0,0 +1 @@
+#include "Generated.xcconfig"
diff --git a/ios/Flutter/Release.xcconfig b/ios/Flutter/Release.xcconfig
new file mode 100644
index 0000000..0b2d479
--- /dev/null
+++ b/ios/Flutter/Release.xcconfig
@@ -0,0 +1 @@
+#include "Generated.xcconfig"
diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj
new file mode 100644
index 0000000..616f43d
--- /dev/null
+++ b/ios/Runner.xcodeproj/project.pbxproj
@@ -0,0 +1,616 @@
+// !$*UTF8*$!
+{
+ archiveVersion = 1;
+ classes = {
+ };
+ objectVersion = 54;
+ objects = {
+
+/* Begin PBXBuildFile section */
+ 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
+ 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
+ 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
+ 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
+ 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
+ 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
+ 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
+/* End PBXBuildFile section */
+
+/* Begin PBXContainerItemProxy section */
+ 331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 97C146E61CF9000F007C117D /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = 97C146ED1CF9000F007C117D;
+ remoteInfo = Runner;
+ };
+/* End PBXContainerItemProxy section */
+
+/* Begin PBXCopyFilesBuildPhase section */
+ 9705A1C41CF9048500538489 /* Embed Frameworks */ = {
+ isa = PBXCopyFilesBuildPhase;
+ buildActionMask = 2147483647;
+ dstPath = "";
+ dstSubfolderSpec = 10;
+ files = (
+ );
+ name = "Embed Frameworks";
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXCopyFilesBuildPhase section */
+
+/* Begin PBXFileReference section */
+ 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; };
+ 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; };
+ 331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; };
+ 331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
+ 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; };
+ 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; };
+ 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
+ 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; };
+ 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; };
+ 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; };
+ 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
+ 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
+ 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
+ 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
+ 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
+/* End PBXFileReference section */
+
+/* Begin PBXFrameworksBuildPhase section */
+ 97C146EB1CF9000F007C117D /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXFrameworksBuildPhase section */
+
+/* Begin PBXGroup section */
+ 331C8082294A63A400263BE5 /* RunnerTests */ = {
+ isa = PBXGroup;
+ children = (
+ 331C807B294A618700263BE5 /* RunnerTests.swift */,
+ );
+ path = RunnerTests;
+ sourceTree = "";
+ };
+ 9740EEB11CF90186004384FC /* Flutter */ = {
+ isa = PBXGroup;
+ children = (
+ 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
+ 9740EEB21CF90195004384FC /* Debug.xcconfig */,
+ 7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
+ 9740EEB31CF90195004384FC /* Generated.xcconfig */,
+ );
+ name = Flutter;
+ sourceTree = "";
+ };
+ 97C146E51CF9000F007C117D = {
+ isa = PBXGroup;
+ children = (
+ 9740EEB11CF90186004384FC /* Flutter */,
+ 97C146F01CF9000F007C117D /* Runner */,
+ 97C146EF1CF9000F007C117D /* Products */,
+ 331C8082294A63A400263BE5 /* RunnerTests */,
+ );
+ sourceTree = "";
+ };
+ 97C146EF1CF9000F007C117D /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 97C146EE1CF9000F007C117D /* Runner.app */,
+ 331C8081294A63A400263BE5 /* RunnerTests.xctest */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+ 97C146F01CF9000F007C117D /* Runner */ = {
+ isa = PBXGroup;
+ children = (
+ 97C146FA1CF9000F007C117D /* Main.storyboard */,
+ 97C146FD1CF9000F007C117D /* Assets.xcassets */,
+ 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
+ 97C147021CF9000F007C117D /* Info.plist */,
+ 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
+ 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
+ 74858FAE1ED2DC5600515810 /* AppDelegate.swift */,
+ 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,
+ );
+ path = Runner;
+ sourceTree = "";
+ };
+/* End PBXGroup section */
+
+/* Begin PBXNativeTarget section */
+ 331C8080294A63A400263BE5 /* RunnerTests */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
+ buildPhases = (
+ 331C807D294A63A400263BE5 /* Sources */,
+ 331C807F294A63A400263BE5 /* Resources */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ 331C8086294A63A400263BE5 /* PBXTargetDependency */,
+ );
+ name = RunnerTests;
+ productName = RunnerTests;
+ productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */;
+ productType = "com.apple.product-type.bundle.unit-test";
+ };
+ 97C146ED1CF9000F007C117D /* Runner */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
+ buildPhases = (
+ 9740EEB61CF901F6004384FC /* Run Script */,
+ 97C146EA1CF9000F007C117D /* Sources */,
+ 97C146EB1CF9000F007C117D /* Frameworks */,
+ 97C146EC1CF9000F007C117D /* Resources */,
+ 9705A1C41CF9048500538489 /* Embed Frameworks */,
+ 3B06AD1E1E4923F5004D2608 /* Thin Binary */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ );
+ name = Runner;
+ productName = Runner;
+ productReference = 97C146EE1CF9000F007C117D /* Runner.app */;
+ productType = "com.apple.product-type.application";
+ };
+/* End PBXNativeTarget section */
+
+/* Begin PBXProject section */
+ 97C146E61CF9000F007C117D /* Project object */ = {
+ isa = PBXProject;
+ attributes = {
+ BuildIndependentTargetsInParallel = YES;
+ LastUpgradeCheck = 1510;
+ ORGANIZATIONNAME = "";
+ TargetAttributes = {
+ 331C8080294A63A400263BE5 = {
+ CreatedOnToolsVersion = 14.0;
+ TestTargetID = 97C146ED1CF9000F007C117D;
+ };
+ 97C146ED1CF9000F007C117D = {
+ CreatedOnToolsVersion = 7.3.1;
+ LastSwiftMigration = 1100;
+ };
+ };
+ };
+ buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */;
+ compatibilityVersion = "Xcode 9.3";
+ developmentRegion = en;
+ hasScannedForEncodings = 0;
+ knownRegions = (
+ en,
+ Base,
+ );
+ mainGroup = 97C146E51CF9000F007C117D;
+ productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
+ projectDirPath = "";
+ projectRoot = "";
+ targets = (
+ 97C146ED1CF9000F007C117D /* Runner */,
+ 331C8080294A63A400263BE5 /* RunnerTests */,
+ );
+ };
+/* End PBXProject section */
+
+/* Begin PBXResourcesBuildPhase section */
+ 331C807F294A63A400263BE5 /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 97C146EC1CF9000F007C117D /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
+ 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
+ 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
+ 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXResourcesBuildPhase section */
+
+/* Begin PBXShellScriptBuildPhase section */
+ 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
+ isa = PBXShellScriptBuildPhase;
+ alwaysOutOfDate = 1;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputPaths = (
+ "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
+ );
+ name = "Thin Binary";
+ outputPaths = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
+ };
+ 9740EEB61CF901F6004384FC /* Run Script */ = {
+ isa = PBXShellScriptBuildPhase;
+ alwaysOutOfDate = 1;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputPaths = (
+ );
+ name = "Run Script";
+ outputPaths = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
+ };
+/* End PBXShellScriptBuildPhase section */
+
+/* Begin PBXSourcesBuildPhase section */
+ 331C807D294A63A400263BE5 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 97C146EA1CF9000F007C117D /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,
+ 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXSourcesBuildPhase section */
+
+/* Begin PBXTargetDependency section */
+ 331C8086294A63A400263BE5 /* PBXTargetDependency */ = {
+ isa = PBXTargetDependency;
+ target = 97C146ED1CF9000F007C117D /* Runner */;
+ targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */;
+ };
+/* End PBXTargetDependency section */
+
+/* Begin PBXVariantGroup section */
+ 97C146FA1CF9000F007C117D /* Main.storyboard */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 97C146FB1CF9000F007C117D /* Base */,
+ );
+ name = Main.storyboard;
+ sourceTree = "";
+ };
+ 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 97C147001CF9000F007C117D /* Base */,
+ );
+ name = LaunchScreen.storyboard;
+ sourceTree = "";
+ };
+/* End PBXVariantGroup section */
+
+/* Begin XCBuildConfiguration section */
+ 249021D3217E4FDB00AE95B9 /* Profile */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ ENABLE_NS_ASSERTIONS = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
+ GCC_C_LANGUAGE_STANDARD = gnu99;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ MTL_ENABLE_DEBUG_INFO = NO;
+ SDKROOT = iphoneos;
+ SUPPORTED_PLATFORMS = iphoneos;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VALIDATE_PRODUCT = YES;
+ };
+ name = Profile;
+ };
+ 249021D4217E4FDB00AE95B9 /* Profile */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
+ ENABLE_BITCODE = NO;
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.sampleindiamap;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = Profile;
+ };
+ 331C8088294A63A400263BE5 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ BUNDLE_LOADER = "$(TEST_HOST)";
+ CODE_SIGN_STYLE = Automatic;
+ CURRENT_PROJECT_VERSION = 1;
+ GENERATE_INFOPLIST_FILE = YES;
+ MARKETING_VERSION = 1.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.sampleindiamap.RunnerTests;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
+ SWIFT_VERSION = 5.0;
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
+ };
+ name = Debug;
+ };
+ 331C8089294A63A400263BE5 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ BUNDLE_LOADER = "$(TEST_HOST)";
+ CODE_SIGN_STYLE = Automatic;
+ CURRENT_PROJECT_VERSION = 1;
+ GENERATE_INFOPLIST_FILE = YES;
+ MARKETING_VERSION = 1.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.sampleindiamap.RunnerTests;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_VERSION = 5.0;
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
+ };
+ name = Release;
+ };
+ 331C808A294A63A400263BE5 /* Profile */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ BUNDLE_LOADER = "$(TEST_HOST)";
+ CODE_SIGN_STYLE = Automatic;
+ CURRENT_PROJECT_VERSION = 1;
+ GENERATE_INFOPLIST_FILE = YES;
+ MARKETING_VERSION = 1.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.sampleindiamap.RunnerTests;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_VERSION = 5.0;
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
+ };
+ name = Profile;
+ };
+ 97C147031CF9000F007C117D /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = dwarf;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_TESTABILITY = YES;
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
+ GCC_C_LANGUAGE_STANDARD = gnu99;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_OPTIMIZATION_LEVEL = 0;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "DEBUG=1",
+ "$(inherited)",
+ );
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ MTL_ENABLE_DEBUG_INFO = YES;
+ ONLY_ACTIVE_ARCH = YES;
+ SDKROOT = iphoneos;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ };
+ name = Debug;
+ };
+ 97C147041CF9000F007C117D /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ ENABLE_NS_ASSERTIONS = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
+ GCC_C_LANGUAGE_STANDARD = gnu99;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ MTL_ENABLE_DEBUG_INFO = NO;
+ SDKROOT = iphoneos;
+ SUPPORTED_PLATFORMS = iphoneos;
+ SWIFT_COMPILATION_MODE = wholemodule;
+ SWIFT_OPTIMIZATION_LEVEL = "-O";
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VALIDATE_PRODUCT = YES;
+ };
+ name = Release;
+ };
+ 97C147061CF9000F007C117D /* Debug */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
+ ENABLE_BITCODE = NO;
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.sampleindiamap;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = Debug;
+ };
+ 97C147071CF9000F007C117D /* Release */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
+ ENABLE_BITCODE = NO;
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.sampleindiamap;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = Release;
+ };
+/* End XCBuildConfiguration section */
+
+/* Begin XCConfigurationList section */
+ 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 331C8088294A63A400263BE5 /* Debug */,
+ 331C8089294A63A400263BE5 /* Release */,
+ 331C808A294A63A400263BE5 /* Profile */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 97C147031CF9000F007C117D /* Debug */,
+ 97C147041CF9000F007C117D /* Release */,
+ 249021D3217E4FDB00AE95B9 /* Profile */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 97C147061CF9000F007C117D /* Debug */,
+ 97C147071CF9000F007C117D /* Release */,
+ 249021D4217E4FDB00AE95B9 /* Profile */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+/* End XCConfigurationList section */
+ };
+ rootObject = 97C146E61CF9000F007C117D /* Project object */;
+}
diff --git a/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 0000000..c4b79bd
--- /dev/null
+++ b/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644
index 0000000..fc6bf80
--- /dev/null
+++ b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEDidComputeMac32BitWarning
+
+
+
diff --git a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
new file mode 100644
index 0000000..af0309c
--- /dev/null
+++ b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
@@ -0,0 +1,8 @@
+
+
+
+
+ PreviewsEnabled
+
+
+
diff --git a/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
new file mode 100644
index 0000000..2324e91
--- /dev/null
+++ b/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
@@ -0,0 +1,98 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ios/Runner.xcworkspace/contents.xcworkspacedata b/ios/Runner.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 0000000..59c6d39
--- /dev/null
+++ b/ios/Runner.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644
index 0000000..fc6bf80
--- /dev/null
+++ b/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEDidComputeMac32BitWarning
+
+
+
diff --git a/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
new file mode 100644
index 0000000..af0309c
--- /dev/null
+++ b/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
@@ -0,0 +1,8 @@
+
+
+
+
+ PreviewsEnabled
+
+
+
diff --git a/ios/Runner/AppDelegate.swift b/ios/Runner/AppDelegate.swift
new file mode 100644
index 0000000..0bf9c3e
--- /dev/null
+++ b/ios/Runner/AppDelegate.swift
@@ -0,0 +1,13 @@
+import Flutter
+import UIKit
+
+@UIApplicationMain
+@objc class AppDelegate: FlutterAppDelegate {
+ override func application(
+ _ application: UIApplication,
+ didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
+ ) -> Bool {
+ GeneratedPluginRegistrant.register(with: self)
+ return super.application(application, didFinishLaunchingWithOptions: launchOptions)
+ }
+}
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
new file mode 100644
index 0000000..1950fd8
--- /dev/null
+++ b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
@@ -0,0 +1,122 @@
+{
+ "images" : [
+ {
+ "size" : "20x20",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-20x20@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "20x20",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-20x20@3x.png",
+ "scale" : "3x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-29x29@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-29x29@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-29x29@3x.png",
+ "scale" : "3x"
+ },
+ {
+ "size" : "40x40",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-40x40@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "40x40",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-40x40@3x.png",
+ "scale" : "3x"
+ },
+ {
+ "size" : "60x60",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-60x60@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "60x60",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-60x60@3x.png",
+ "scale" : "3x"
+ },
+ {
+ "size" : "20x20",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-20x20@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "20x20",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-20x20@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-29x29@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-29x29@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "40x40",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-40x40@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "40x40",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-40x40@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "76x76",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-76x76@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "76x76",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-76x76@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "83.5x83.5",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-83.5x83.5@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "1024x1024",
+ "idiom" : "ios-marketing",
+ "filename" : "Icon-App-1024x1024@1x.png",
+ "scale" : "1x"
+ }
+ ],
+ "info" : {
+ "version" : 1,
+ "author" : "xcode"
+ }
+}
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
new file mode 100644
index 0000000..dc9ada4
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png differ
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
new file mode 100644
index 0000000..7353c41
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png differ
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
new file mode 100644
index 0000000..797d452
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png differ
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
new file mode 100644
index 0000000..6ed2d93
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png differ
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
new file mode 100644
index 0000000..4cd7b00
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png differ
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
new file mode 100644
index 0000000..fe73094
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png differ
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
new file mode 100644
index 0000000..321773c
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png differ
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
new file mode 100644
index 0000000..797d452
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png differ
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
new file mode 100644
index 0000000..502f463
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png differ
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
new file mode 100644
index 0000000..0ec3034
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png differ
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
new file mode 100644
index 0000000..0ec3034
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png differ
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
new file mode 100644
index 0000000..e9f5fea
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png differ
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
new file mode 100644
index 0000000..84ac32a
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png differ
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
new file mode 100644
index 0000000..8953cba
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png differ
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
new file mode 100644
index 0000000..0467bf1
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png differ
diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
new file mode 100644
index 0000000..d08a4de
--- /dev/null
+++ b/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
@@ -0,0 +1,23 @@
+{
+ "images" : [
+ {
+ "idiom" : "universal",
+ "filename" : "LaunchImage.png",
+ "scale" : "1x"
+ },
+ {
+ "idiom" : "universal",
+ "filename" : "LaunchImage@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "idiom" : "universal",
+ "filename" : "LaunchImage@3x.png",
+ "scale" : "3x"
+ }
+ ],
+ "info" : {
+ "version" : 1,
+ "author" : "xcode"
+ }
+}
diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
new file mode 100644
index 0000000..9da19ea
Binary files /dev/null and b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png differ
diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
new file mode 100644
index 0000000..9da19ea
Binary files /dev/null and b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png differ
diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
new file mode 100644
index 0000000..9da19ea
Binary files /dev/null and b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png differ
diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
new file mode 100644
index 0000000..65a94b5
--- /dev/null
+++ b/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
@@ -0,0 +1,5 @@
+# Launch Screen Assets
+
+You can customize the launch screen with your own desired assets by replacing the image files in this directory.
+
+You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images.
\ No newline at end of file
diff --git a/ios/Runner/Base.lproj/LaunchScreen.storyboard b/ios/Runner/Base.lproj/LaunchScreen.storyboard
new file mode 100644
index 0000000..497371e
--- /dev/null
+++ b/ios/Runner/Base.lproj/LaunchScreen.storyboard
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ios/Runner/Base.lproj/Main.storyboard b/ios/Runner/Base.lproj/Main.storyboard
new file mode 100644
index 0000000..bbb83ca
--- /dev/null
+++ b/ios/Runner/Base.lproj/Main.storyboard
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist
new file mode 100644
index 0000000..1c3afa7
--- /dev/null
+++ b/ios/Runner/Info.plist
@@ -0,0 +1,49 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ $(DEVELOPMENT_LANGUAGE)
+ CFBundleDisplayName
+ Sampleindiamap
+ CFBundleExecutable
+ $(EXECUTABLE_NAME)
+ CFBundleIdentifier
+ $(PRODUCT_BUNDLE_IDENTIFIER)
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ sampleindiamap
+ CFBundlePackageType
+ APPL
+ CFBundleShortVersionString
+ $(FLUTTER_BUILD_NAME)
+ CFBundleSignature
+ ????
+ CFBundleVersion
+ $(FLUTTER_BUILD_NUMBER)
+ LSRequiresIPhoneOS
+
+ UILaunchStoryboardName
+ LaunchScreen
+ UIMainStoryboardFile
+ Main
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ CADisableMinimumFrameDurationOnPhone
+
+ UIApplicationSupportsIndirectInputEvents
+
+
+
diff --git a/ios/Runner/Runner-Bridging-Header.h b/ios/Runner/Runner-Bridging-Header.h
new file mode 100644
index 0000000..fae207f
--- /dev/null
+++ b/ios/Runner/Runner-Bridging-Header.h
@@ -0,0 +1 @@
+#import "GeneratedPluginRegistrant.h"
diff --git a/ios/RunnerTests/RunnerTests.swift b/ios/RunnerTests/RunnerTests.swift
new file mode 100644
index 0000000..4d206de
--- /dev/null
+++ b/ios/RunnerTests/RunnerTests.swift
@@ -0,0 +1,12 @@
+import Flutter
+import UIKit
+import XCTest
+
+class RunnerTests: XCTestCase {
+
+ func testExample() {
+ // If you add code to the Runner application, consider adding tests here.
+ // See https://developer.apple.com/documentation/xctest for more information about using XCTest.
+ }
+
+}
diff --git a/lib/data_source_color_mapping.dart b/lib/data_source_color_mapping.dart
new file mode 100644
index 0000000..51fc168
--- /dev/null
+++ b/lib/data_source_color_mapping.dart
@@ -0,0 +1,103 @@
+import 'package:flutter/material.dart';
+import 'package:syncfusion_flutter_maps/maps.dart';
+
+class DataSourceColorMapping extends StatefulWidget {
+ const DataSourceColorMapping({super.key});
+
+ @override
+ State createState() => _DataSourceColorMappingState();
+}
+
+class _DataSourceColorMappingState extends State {
+ late List _data;
+ late MapShapeSource _dataSource;
+
+ @override
+ void initState() {
+ // maps with color in data source itself.
+ _data = [
+ DataModel('Chandigarh', const Color.fromARGB(255, 112, 30, 24)),
+ DataModel('Tamil Nadu', const Color.fromARGB(255, 138, 82, 18)),
+ DataModel('Kerala', const Color.fromARGB(255, 101, 228, 42)),
+ DataModel('Karnataka', const Color.fromARGB(255, 187, 138, 53)),
+ DataModel('Assam', const Color.fromARGB(255, 94, 168, 10)),
+ DataModel('Goa', const Color.fromARGB(255, 132, 172, 121)),
+ DataModel('Orissa', const Color.fromARGB(255, 157, 186, 76)),
+ DataModel('Gujarat', const Color.fromARGB(255, 12, 120, 10)),
+ DataModel('Delhi', const Color.fromARGB(255, 149, 247, 2)),
+ DataModel('Himachal Pradesh', const Color.fromARGB(255, 180, 234, 224)),
+ DataModel('Haryana', const Color.fromARGB(255, 54, 244, 219)),
+ DataModel('Lakshadweep', const Color.fromARGB(255, 51, 169, 180)),
+ DataModel(
+ 'Dadra and Nagar Haveli', const Color.fromARGB(255, 9, 227, 206)),
+ DataModel('Maharashtra', const Color.fromARGB(255, 2, 94, 96)),
+ DataModel(
+ 'Andaman and Nicobar', const Color.fromARGB(255, 157, 175, 234)),
+ DataModel('Manipur', const Color.fromARGB(255, 54, 108, 244)),
+ DataModel('Nagaland', const Color.fromARGB(255, 12, 54, 241)),
+ DataModel('Meghalaya', const Color.fromARGB(255, 2, 32, 87)),
+ DataModel('Punjab', const Color.fromARGB(255, 54, 64, 202)),
+ DataModel('Rajasthan', const Color.fromARGB(255, 206, 179, 218)),
+ DataModel('Uttar Pradesh', const Color.fromARGB(255, 116, 45, 179)),
+ DataModel('Uttaranchal', const Color.fromARGB(255, 50, 63, 108)),
+ DataModel('Jharkhand', const Color.fromARGB(255, 142, 10, 133)),
+ DataModel('West Bengal', const Color.fromARGB(255, 101, 46, 99)),
+ DataModel('Bihar', const Color.fromARGB(255, 138, 199, 46)),
+ DataModel('Sikkim', const Color.fromARGB(255, 5, 124, 17)),
+ DataModel('Chhattisgarh', const Color.fromARGB(255, 76, 1, 41)),
+ DataModel('Madhya Pradesh', Colors.red),
+ DataModel('Puducherry', Colors.red),
+ DataModel('Arunachal Pradesh', const Color.fromARGB(255, 253, 6, 245)),
+ DataModel('Mizoram', const Color.fromARGB(255, 182, 84, 14)),
+ DataModel('Tripura', const Color.fromARGB(255, 44, 153, 159)),
+ DataModel('Daman and Diu', const Color.fromARGB(255, 60, 5, 15)),
+ DataModel('Telangana', const Color.fromARGB(255, 125, 5, 27)),
+ DataModel('Andhra Pradesh', const Color.fromARGB(255, 235, 8, 50)),
+ DataModel('Jammu & Kashmir', const Color.fromARGB(255, 182, 42, 123)),
+ ];
+
+ _dataSource = MapShapeSource.asset(
+ 'assets/india.json',
+ shapeDataField: 'name',
+ dataCount: _data.length,
+ primaryValueMapper: (int index) => _data[index].state,
+ shapeColorValueMapper: (int index) => _data[index].color,
+ );
+ super.initState();
+ }
+
+ @override
+ Widget build(BuildContext context) {
+ return Scaffold(
+ body: Center(
+ child: SizedBox(
+ height: MediaQuery.of(context).size.height * 0.75,
+ width: MediaQuery.of(context).size.width * 0.75,
+ child: SfMaps(
+ layers: [
+ MapShapeLayer(
+ source: _dataSource,
+ legend: const MapLegend(
+ MapElement.shape,
+ title: Text('Individual state Representation',
+ style:
+ TextStyle(fontSize: 18, fontWeight: FontWeight.bold)),
+ position: MapLegendPosition.right,
+ ),
+ color: Colors.white,
+ strokeColor: const Color.fromARGB(255, 6, 89, 2),
+ strokeWidth: 0.5,
+ ),
+ ],
+ ),
+ ),
+ ),
+ );
+ }
+}
+
+class DataModel {
+ DataModel(this.state, this.color);
+ String state;
+ Color color;
+}
diff --git a/lib/equal_color_mapping.dart b/lib/equal_color_mapping.dart
new file mode 100644
index 0000000..6e142e7
--- /dev/null
+++ b/lib/equal_color_mapping.dart
@@ -0,0 +1,107 @@
+import 'package:flutter/material.dart';
+import 'package:syncfusion_flutter_maps/maps.dart';
+
+class EqualColorMapping extends StatefulWidget {
+ const EqualColorMapping({super.key});
+
+ @override
+ State createState() => _EqualColorMappingState();
+}
+
+class _EqualColorMappingState extends State {
+ late List _equalData;
+ late MapShapeSource _dataSource;
+
+ @override
+ void initState() {
+ _equalData = [
+ EqualModel('Manipur', '0.5'),
+ EqualModel('Nagaland', '0.5'),
+ EqualModel('Meghalaya', '0.5'),
+ EqualModel('Sikkim', '0.5'),
+ EqualModel('Mizoram', '0.5'),
+ EqualModel('Tripura', '0.5'),
+ EqualModel('Daman and Diu', '0.5'),
+ EqualModel('Dadra and Nagar Haveli', '1'),
+ EqualModel('Arunachal Pradesh', '1'),
+ EqualModel('Lakshadweep', '1'),
+ EqualModel('Andaman and Nicobar', '1'),
+ EqualModel('Goa', '1'),
+ EqualModel('Himachal Pradesh', '3'),
+ EqualModel('Uttaranchal', '3'),
+ EqualModel('Assam', '5'),
+ EqualModel('Chhattisgarh', '5'),
+ EqualModel('Orissa', '8'),
+ EqualModel('Bihar', '8'),
+ EqualModel('Puducherry', '10'),
+ EqualModel('Delhi', '10'),
+ EqualModel('Chandigarh', '16'),
+ EqualModel('Karnataka', '16'),
+ EqualModel('Rajasthan', '16'),
+ EqualModel('West Bengal', '16'),
+ ];
+
+ _dataSource = MapShapeSource.asset(
+ 'assets/india.json',
+ shapeDataField: 'name',
+ dataCount: _equalData.length,
+ primaryValueMapper: (int index) => _equalData[index].state,
+ shapeColorValueMapper: (int index) => _equalData[index].value,
+ shapeColorMappers: const [
+ MapColorMapper(
+ value: '0.5',
+ color: Color.fromARGB(255, 246, 251, 122),
+ text: '0.5%'),
+ MapColorMapper(
+ value: '1', color: Color.fromARGB(255, 234, 100, 23), text: '1%'),
+ MapColorMapper(
+ value: '3', color: Color.fromARGB(255, 27, 73, 225), text: '3%'),
+ MapColorMapper(
+ value: '5', color: Color.fromARGB(255, 10, 237, 101), text: '5'),
+ MapColorMapper(
+ value: '8', color: Color.fromARGB(255, 24, 222, 229), text: '8%'),
+ MapColorMapper(
+ value: '10', color: Color.fromARGB(255, 244, 74, 193), text: '10%'),
+ MapColorMapper(
+ value: '16', color: Color.fromARGB(255, 223, 81, 88), text: '16%'),
+ ],
+ );
+
+ super.initState();
+ }
+
+ @override
+ Widget build(BuildContext context) {
+ return Scaffold(
+ body: Center(
+ child: SizedBox(
+ height: MediaQuery.of(context).size.height * 0.85,
+ width: MediaQuery.of(context).size.width * 0.85,
+ child: SfMaps(
+ layers: [
+ MapShapeLayer(
+ source: _dataSource,
+ legend: const MapLegend(
+ MapElement.shape,
+ title: Text('Population in Percentage',
+ style:
+ TextStyle(fontSize: 18, fontWeight: FontWeight.bold)),
+ position: MapLegendPosition.right,
+ ),
+ color: Colors.white,
+ strokeColor: const Color.fromARGB(255, 6, 89, 2),
+ strokeWidth: 0.5,
+ ),
+ ],
+ ),
+ ),
+ ),
+ );
+ }
+}
+
+class EqualModel {
+ EqualModel(this.state, this.value);
+ String state;
+ String value;
+}
diff --git a/lib/main.dart b/lib/main.dart
new file mode 100644
index 0000000..e4a5a46
--- /dev/null
+++ b/lib/main.dart
@@ -0,0 +1,27 @@
+import 'package:flutter/material.dart';
+
+import 'range_color_mapping.dart';
+
+void main() {
+ runApp(const MyApp());
+}
+
+class MyApp extends StatelessWidget {
+ const MyApp({super.key});
+
+ @override
+ Widget build(BuildContext context) {
+ return const MaterialApp(
+ debugShowCheckedModeBanner: false,
+ title: 'Flutter Demo',
+ // To render the range color mapping.
+ home: RangeColorMapping(),
+
+ // Uncomment the below line to render the equal color mapping.
+ // home: EqualColorMapping(),
+
+ // Uncomment the below line to render the data source color mapping.
+ // home: DataSourceColorMapping(),
+ );
+ }
+}
diff --git a/lib/range_color_mapping.dart b/lib/range_color_mapping.dart
new file mode 100644
index 0000000..a31a905
--- /dev/null
+++ b/lib/range_color_mapping.dart
@@ -0,0 +1,125 @@
+import 'package:flutter/material.dart';
+import 'package:syncfusion_flutter_maps/maps.dart';
+
+class RangeColorMapping extends StatefulWidget {
+ const RangeColorMapping({super.key});
+
+ @override
+ State createState() => _RangeColorMappingState();
+}
+
+class _RangeColorMappingState extends State {
+ late List _rangeData;
+ late MapShapeSource _dataSource;
+
+ @override
+ void initState() {
+ // Maps with range color mapping
+ _rangeData = [
+ RangeModel('Chandigarh', 67.98),
+ RangeModel('Tamil Nadu', 69.72),
+ RangeModel('Kerala', 71.27),
+ RangeModel('Karnataka', 70.64),
+ RangeModel('Assam', 81.56),
+ RangeModel('Goa', 76.06),
+ RangeModel('Orissa', 74.44),
+ RangeModel('Gujarat', 60.13),
+ RangeModel('Delhi', 58.69),
+ RangeModel('Himachal Pradesh', 70.90),
+ RangeModel('Haryana', 64.80),
+ RangeModel('Lakshadweep', 84.16),
+ RangeModel('Dadra and Nagar Haveli', 71.31),
+ RangeModel('Maharashtra', 61.33),
+ RangeModel('Andaman and Nicobar', 64.10),
+ RangeModel('Manipur', 78.19),
+ RangeModel('Nagaland', 57.72),
+ RangeModel('Meghalaya', 76.60),
+ RangeModel('Punjab', 62.80),
+ RangeModel('Rajasthan', 61.53),
+ RangeModel('Uttar Pradesh', 56.92),
+ RangeModel('Uttaranchal', 57.22),
+ RangeModel('Jharkhand', 66.19),
+ RangeModel('West Bengal', 79.29),
+ RangeModel('Bihar', 56.19),
+ RangeModel('Sikkim', 79.88),
+ RangeModel('Chhattisgarh', 72.81),
+ RangeModel('Madhya Pradesh', 66.87),
+ RangeModel('Puducherry', 78.90),
+ RangeModel('Arunachal Pradesh', 77.68),
+ RangeModel('Mizoram', 56.87),
+ RangeModel('Tripura', 80.93),
+ RangeModel('Daman and Diu', 71.31),
+ ];
+
+ _dataSource = MapShapeSource.asset(
+ 'assets/india.json',
+ shapeDataField: 'name',
+ dataCount: _rangeData.length,
+ primaryValueMapper: (int index) => _rangeData[index].state,
+ shapeColorValueMapper: (int index) => _rangeData[index].count,
+ shapeColorMappers: const [
+ MapColorMapper(
+ from: 50,
+ to: 60,
+ color: Color.fromARGB(50, 3, 182, 12),
+ text: '50% - 60%'),
+ MapColorMapper(
+ from: 60,
+ to: 70,
+ color: Color.fromARGB(100, 85, 181, 80),
+ text: '60% - 70%'),
+ MapColorMapper(
+ from: 70,
+ to: 80,
+ color: Color.fromARGB(150, 37, 170, 84),
+ text: '70% - 80%'),
+ MapColorMapper(
+ from: 80,
+ to: 90,
+ color: Color.fromARGB(200, 12, 170, 4),
+ text: '80% - 90%'),
+ MapColorMapper(
+ from: 90,
+ to: 100,
+ color: Color.fromARGB(255, 13, 188, 4),
+ text: '90% - 100%'),
+ ],
+ );
+ super.initState();
+ }
+
+ @override
+ Widget build(BuildContext context) {
+ return Scaffold(
+ body: Center(
+ child: SizedBox(
+ height: MediaQuery.of(context).size.height * 0.85,
+ width: MediaQuery.of(context).size.width * 0.85,
+ child: SfMaps(
+ layers: [
+ MapShapeLayer(
+ source: _dataSource,
+ legend: const MapLegend(
+ MapElement.shape,
+ title: Text('Voting Range in percentage',
+ style:
+ TextStyle(fontSize: 18, fontWeight: FontWeight.bold)),
+ position: MapLegendPosition.right,
+ ),
+ color: Colors.white,
+ strokeColor: const Color.fromARGB(255, 6, 89, 2),
+ strokeWidth: 0.5,
+ ),
+ ],
+ ),
+ ),
+ ),
+ );
+ }
+}
+
+class RangeModel {
+ RangeModel(this.state, this.count);
+ String state;
+ double count;
+}
diff --git a/linux/.gitignore b/linux/.gitignore
new file mode 100644
index 0000000..c7ea17f
--- /dev/null
+++ b/linux/.gitignore
@@ -0,0 +1 @@
+flutter/ephemeral
diff --git a/linux/CMakeLists.txt b/linux/CMakeLists.txt
new file mode 100644
index 0000000..e00c4bc
--- /dev/null
+++ b/linux/CMakeLists.txt
@@ -0,0 +1,145 @@
+# Project-level configuration.
+cmake_minimum_required(VERSION 3.10)
+project(runner LANGUAGES CXX)
+
+# The name of the executable created for the application. Change this to change
+# the on-disk name of your application.
+set(BINARY_NAME "sampleindiamap")
+# The unique GTK application identifier for this application. See:
+# https://wiki.gnome.org/HowDoI/ChooseApplicationID
+set(APPLICATION_ID "com.example.sampleindiamap")
+
+# Explicitly opt in to modern CMake behaviors to avoid warnings with recent
+# versions of CMake.
+cmake_policy(SET CMP0063 NEW)
+
+# Load bundled libraries from the lib/ directory relative to the binary.
+set(CMAKE_INSTALL_RPATH "$ORIGIN/lib")
+
+# Root filesystem for cross-building.
+if(FLUTTER_TARGET_PLATFORM_SYSROOT)
+ set(CMAKE_SYSROOT ${FLUTTER_TARGET_PLATFORM_SYSROOT})
+ set(CMAKE_FIND_ROOT_PATH ${CMAKE_SYSROOT})
+ set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
+ set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY)
+ set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
+ set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
+endif()
+
+# Define build configuration options.
+if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
+ set(CMAKE_BUILD_TYPE "Debug" CACHE
+ STRING "Flutter build mode" FORCE)
+ set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS
+ "Debug" "Profile" "Release")
+endif()
+
+# Compilation settings that should be applied to most targets.
+#
+# Be cautious about adding new options here, as plugins use this function by
+# default. In most cases, you should add new options to specific targets instead
+# of modifying this function.
+function(APPLY_STANDARD_SETTINGS TARGET)
+ target_compile_features(${TARGET} PUBLIC cxx_std_14)
+ target_compile_options(${TARGET} PRIVATE -Wall -Werror)
+ target_compile_options(${TARGET} PRIVATE "$<$>:-O3>")
+ target_compile_definitions(${TARGET} PRIVATE "$<$>:NDEBUG>")
+endfunction()
+
+# Flutter library and tool build rules.
+set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter")
+add_subdirectory(${FLUTTER_MANAGED_DIR})
+
+# System-level dependencies.
+find_package(PkgConfig REQUIRED)
+pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0)
+
+add_definitions(-DAPPLICATION_ID="${APPLICATION_ID}")
+
+# Define the application target. To change its name, change BINARY_NAME above,
+# not the value here, or `flutter run` will no longer work.
+#
+# Any new source files that you add to the application should be added here.
+add_executable(${BINARY_NAME}
+ "main.cc"
+ "my_application.cc"
+ "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc"
+)
+
+# Apply the standard set of build settings. This can be removed for applications
+# that need different build settings.
+apply_standard_settings(${BINARY_NAME})
+
+# Add dependency libraries. Add any application-specific dependencies here.
+target_link_libraries(${BINARY_NAME} PRIVATE flutter)
+target_link_libraries(${BINARY_NAME} PRIVATE PkgConfig::GTK)
+
+# Run the Flutter tool portions of the build. This must not be removed.
+add_dependencies(${BINARY_NAME} flutter_assemble)
+
+# Only the install-generated bundle's copy of the executable will launch
+# correctly, since the resources must in the right relative locations. To avoid
+# people trying to run the unbundled copy, put it in a subdirectory instead of
+# the default top-level location.
+set_target_properties(${BINARY_NAME}
+ PROPERTIES
+ RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/intermediates_do_not_run"
+)
+
+
+# Generated plugin build rules, which manage building the plugins and adding
+# them to the application.
+include(flutter/generated_plugins.cmake)
+
+
+# === Installation ===
+# By default, "installing" just makes a relocatable bundle in the build
+# directory.
+set(BUILD_BUNDLE_DIR "${PROJECT_BINARY_DIR}/bundle")
+if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
+ set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE)
+endif()
+
+# Start with a clean build bundle directory every time.
+install(CODE "
+ file(REMOVE_RECURSE \"${BUILD_BUNDLE_DIR}/\")
+ " COMPONENT Runtime)
+
+set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data")
+set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}/lib")
+
+install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}"
+ COMPONENT Runtime)
+
+install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}"
+ COMPONENT Runtime)
+
+install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}"
+ COMPONENT Runtime)
+
+foreach(bundled_library ${PLUGIN_BUNDLED_LIBRARIES})
+ install(FILES "${bundled_library}"
+ DESTINATION "${INSTALL_BUNDLE_LIB_DIR}"
+ COMPONENT Runtime)
+endforeach(bundled_library)
+
+# Copy the native assets provided by the build.dart from all packages.
+set(NATIVE_ASSETS_DIR "${PROJECT_BUILD_DIR}native_assets/linux/")
+install(DIRECTORY "${NATIVE_ASSETS_DIR}"
+ DESTINATION "${INSTALL_BUNDLE_LIB_DIR}"
+ COMPONENT Runtime)
+
+# Fully re-copy the assets directory on each build to avoid having stale files
+# from a previous install.
+set(FLUTTER_ASSET_DIR_NAME "flutter_assets")
+install(CODE "
+ file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\")
+ " COMPONENT Runtime)
+install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}"
+ DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime)
+
+# Install the AOT library on non-Debug builds only.
+if(NOT CMAKE_BUILD_TYPE MATCHES "Debug")
+ install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}"
+ COMPONENT Runtime)
+endif()
diff --git a/linux/flutter/CMakeLists.txt b/linux/flutter/CMakeLists.txt
new file mode 100644
index 0000000..27860e8
--- /dev/null
+++ b/linux/flutter/CMakeLists.txt
@@ -0,0 +1,88 @@
+# This file controls Flutter-level build steps. It should not be edited.
+cmake_minimum_required(VERSION 3.10)
+
+set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral")
+
+# Configuration provided via flutter tool.
+include(${EPHEMERAL_DIR}/generated_config.cmake)
+
+# TODO: Move the rest of this into files in ephemeral. See
+# https://github.com/flutter/flutter/issues/57146.
+
+# Serves the same purpose as list(TRANSFORM ... PREPEND ...),
+# which isn't available in 3.10.
+function(list_prepend LIST_NAME PREFIX)
+ set(NEW_LIST "")
+ foreach(element ${${LIST_NAME}})
+ list(APPEND NEW_LIST "${PREFIX}${element}")
+ endforeach(element)
+ set(${LIST_NAME} "${NEW_LIST}" PARENT_SCOPE)
+endfunction()
+
+# === Flutter Library ===
+# System-level dependencies.
+find_package(PkgConfig REQUIRED)
+pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0)
+pkg_check_modules(GLIB REQUIRED IMPORTED_TARGET glib-2.0)
+pkg_check_modules(GIO REQUIRED IMPORTED_TARGET gio-2.0)
+
+set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/libflutter_linux_gtk.so")
+
+# Published to parent scope for install step.
+set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE)
+set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE)
+set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE)
+set(AOT_LIBRARY "${PROJECT_DIR}/build/lib/libapp.so" PARENT_SCOPE)
+
+list(APPEND FLUTTER_LIBRARY_HEADERS
+ "fl_basic_message_channel.h"
+ "fl_binary_codec.h"
+ "fl_binary_messenger.h"
+ "fl_dart_project.h"
+ "fl_engine.h"
+ "fl_json_message_codec.h"
+ "fl_json_method_codec.h"
+ "fl_message_codec.h"
+ "fl_method_call.h"
+ "fl_method_channel.h"
+ "fl_method_codec.h"
+ "fl_method_response.h"
+ "fl_plugin_registrar.h"
+ "fl_plugin_registry.h"
+ "fl_standard_message_codec.h"
+ "fl_standard_method_codec.h"
+ "fl_string_codec.h"
+ "fl_value.h"
+ "fl_view.h"
+ "flutter_linux.h"
+)
+list_prepend(FLUTTER_LIBRARY_HEADERS "${EPHEMERAL_DIR}/flutter_linux/")
+add_library(flutter INTERFACE)
+target_include_directories(flutter INTERFACE
+ "${EPHEMERAL_DIR}"
+)
+target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}")
+target_link_libraries(flutter INTERFACE
+ PkgConfig::GTK
+ PkgConfig::GLIB
+ PkgConfig::GIO
+)
+add_dependencies(flutter flutter_assemble)
+
+# === Flutter tool backend ===
+# _phony_ is a non-existent file to force this command to run every time,
+# since currently there's no way to get a full input/output list from the
+# flutter tool.
+add_custom_command(
+ OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS}
+ ${CMAKE_CURRENT_BINARY_DIR}/_phony_
+ COMMAND ${CMAKE_COMMAND} -E env
+ ${FLUTTER_TOOL_ENVIRONMENT}
+ "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.sh"
+ ${FLUTTER_TARGET_PLATFORM} ${CMAKE_BUILD_TYPE}
+ VERBATIM
+)
+add_custom_target(flutter_assemble DEPENDS
+ "${FLUTTER_LIBRARY}"
+ ${FLUTTER_LIBRARY_HEADERS}
+)
diff --git a/linux/flutter/generated_plugin_registrant.cc b/linux/flutter/generated_plugin_registrant.cc
new file mode 100644
index 0000000..e71a16d
--- /dev/null
+++ b/linux/flutter/generated_plugin_registrant.cc
@@ -0,0 +1,11 @@
+//
+// Generated file. Do not edit.
+//
+
+// clang-format off
+
+#include "generated_plugin_registrant.h"
+
+
+void fl_register_plugins(FlPluginRegistry* registry) {
+}
diff --git a/linux/flutter/generated_plugin_registrant.h b/linux/flutter/generated_plugin_registrant.h
new file mode 100644
index 0000000..e0f0a47
--- /dev/null
+++ b/linux/flutter/generated_plugin_registrant.h
@@ -0,0 +1,15 @@
+//
+// Generated file. Do not edit.
+//
+
+// clang-format off
+
+#ifndef GENERATED_PLUGIN_REGISTRANT_
+#define GENERATED_PLUGIN_REGISTRANT_
+
+#include
+
+// Registers Flutter plugins.
+void fl_register_plugins(FlPluginRegistry* registry);
+
+#endif // GENERATED_PLUGIN_REGISTRANT_
diff --git a/linux/flutter/generated_plugins.cmake b/linux/flutter/generated_plugins.cmake
new file mode 100644
index 0000000..2e1de87
--- /dev/null
+++ b/linux/flutter/generated_plugins.cmake
@@ -0,0 +1,23 @@
+#
+# Generated file, do not edit.
+#
+
+list(APPEND FLUTTER_PLUGIN_LIST
+)
+
+list(APPEND FLUTTER_FFI_PLUGIN_LIST
+)
+
+set(PLUGIN_BUNDLED_LIBRARIES)
+
+foreach(plugin ${FLUTTER_PLUGIN_LIST})
+ add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin})
+ target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin)
+ list(APPEND PLUGIN_BUNDLED_LIBRARIES $)
+ list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})
+endforeach(plugin)
+
+foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})
+ add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin})
+ list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
+endforeach(ffi_plugin)
diff --git a/linux/main.cc b/linux/main.cc
new file mode 100644
index 0000000..4340ffc
--- /dev/null
+++ b/linux/main.cc
@@ -0,0 +1,6 @@
+#include "my_application.h"
+
+int main(int argc, char** argv) {
+ g_autoptr(MyApplication) app = my_application_new();
+ return g_application_run(G_APPLICATION(app), argc, argv);
+}
diff --git a/linux/my_application.cc b/linux/my_application.cc
new file mode 100644
index 0000000..be7b9b0
--- /dev/null
+++ b/linux/my_application.cc
@@ -0,0 +1,124 @@
+#include "my_application.h"
+
+#include
+#ifdef GDK_WINDOWING_X11
+#include
+#endif
+
+#include "flutter/generated_plugin_registrant.h"
+
+struct _MyApplication {
+ GtkApplication parent_instance;
+ char** dart_entrypoint_arguments;
+};
+
+G_DEFINE_TYPE(MyApplication, my_application, GTK_TYPE_APPLICATION)
+
+// Implements GApplication::activate.
+static void my_application_activate(GApplication* application) {
+ MyApplication* self = MY_APPLICATION(application);
+ GtkWindow* window =
+ GTK_WINDOW(gtk_application_window_new(GTK_APPLICATION(application)));
+
+ // Use a header bar when running in GNOME as this is the common style used
+ // by applications and is the setup most users will be using (e.g. Ubuntu
+ // desktop).
+ // If running on X and not using GNOME then just use a traditional title bar
+ // in case the window manager does more exotic layout, e.g. tiling.
+ // If running on Wayland assume the header bar will work (may need changing
+ // if future cases occur).
+ gboolean use_header_bar = TRUE;
+#ifdef GDK_WINDOWING_X11
+ GdkScreen* screen = gtk_window_get_screen(window);
+ if (GDK_IS_X11_SCREEN(screen)) {
+ const gchar* wm_name = gdk_x11_screen_get_window_manager_name(screen);
+ if (g_strcmp0(wm_name, "GNOME Shell") != 0) {
+ use_header_bar = FALSE;
+ }
+ }
+#endif
+ if (use_header_bar) {
+ GtkHeaderBar* header_bar = GTK_HEADER_BAR(gtk_header_bar_new());
+ gtk_widget_show(GTK_WIDGET(header_bar));
+ gtk_header_bar_set_title(header_bar, "sampleindiamap");
+ gtk_header_bar_set_show_close_button(header_bar, TRUE);
+ gtk_window_set_titlebar(window, GTK_WIDGET(header_bar));
+ } else {
+ gtk_window_set_title(window, "sampleindiamap");
+ }
+
+ gtk_window_set_default_size(window, 1280, 720);
+ gtk_widget_show(GTK_WIDGET(window));
+
+ g_autoptr(FlDartProject) project = fl_dart_project_new();
+ fl_dart_project_set_dart_entrypoint_arguments(project, self->dart_entrypoint_arguments);
+
+ FlView* view = fl_view_new(project);
+ gtk_widget_show(GTK_WIDGET(view));
+ gtk_container_add(GTK_CONTAINER(window), GTK_WIDGET(view));
+
+ fl_register_plugins(FL_PLUGIN_REGISTRY(view));
+
+ gtk_widget_grab_focus(GTK_WIDGET(view));
+}
+
+// Implements GApplication::local_command_line.
+static gboolean my_application_local_command_line(GApplication* application, gchar*** arguments, int* exit_status) {
+ MyApplication* self = MY_APPLICATION(application);
+ // Strip out the first argument as it is the binary name.
+ self->dart_entrypoint_arguments = g_strdupv(*arguments + 1);
+
+ g_autoptr(GError) error = nullptr;
+ if (!g_application_register(application, nullptr, &error)) {
+ g_warning("Failed to register: %s", error->message);
+ *exit_status = 1;
+ return TRUE;
+ }
+
+ g_application_activate(application);
+ *exit_status = 0;
+
+ return TRUE;
+}
+
+// Implements GApplication::startup.
+static void my_application_startup(GApplication* application) {
+ //MyApplication* self = MY_APPLICATION(object);
+
+ // Perform any actions required at application startup.
+
+ G_APPLICATION_CLASS(my_application_parent_class)->startup(application);
+}
+
+// Implements GApplication::shutdown.
+static void my_application_shutdown(GApplication* application) {
+ //MyApplication* self = MY_APPLICATION(object);
+
+ // Perform any actions required at application shutdown.
+
+ G_APPLICATION_CLASS(my_application_parent_class)->shutdown(application);
+}
+
+// Implements GObject::dispose.
+static void my_application_dispose(GObject* object) {
+ MyApplication* self = MY_APPLICATION(object);
+ g_clear_pointer(&self->dart_entrypoint_arguments, g_strfreev);
+ G_OBJECT_CLASS(my_application_parent_class)->dispose(object);
+}
+
+static void my_application_class_init(MyApplicationClass* klass) {
+ G_APPLICATION_CLASS(klass)->activate = my_application_activate;
+ G_APPLICATION_CLASS(klass)->local_command_line = my_application_local_command_line;
+ G_APPLICATION_CLASS(klass)->startup = my_application_startup;
+ G_APPLICATION_CLASS(klass)->shutdown = my_application_shutdown;
+ G_OBJECT_CLASS(klass)->dispose = my_application_dispose;
+}
+
+static void my_application_init(MyApplication* self) {}
+
+MyApplication* my_application_new() {
+ return MY_APPLICATION(g_object_new(my_application_get_type(),
+ "application-id", APPLICATION_ID,
+ "flags", G_APPLICATION_NON_UNIQUE,
+ nullptr));
+}
diff --git a/linux/my_application.h b/linux/my_application.h
new file mode 100644
index 0000000..8f20fb5
--- /dev/null
+++ b/linux/my_application.h
@@ -0,0 +1,18 @@
+#ifndef FLUTTER_MY_APPLICATION_H_
+#define FLUTTER_MY_APPLICATION_H_
+
+#include
+
+G_DECLARE_FINAL_TYPE(MyApplication, my_application, MY, APPLICATION,
+ GtkApplication)
+
+/**
+ * my_application_new:
+ *
+ * Creates a new Flutter-based application.
+ *
+ * Returns: a new #MyApplication.
+ */
+MyApplication* my_application_new();
+
+#endif // FLUTTER_MY_APPLICATION_H_
diff --git a/macos/.gitignore b/macos/.gitignore
new file mode 100644
index 0000000..d4e0569
--- /dev/null
+++ b/macos/.gitignore
@@ -0,0 +1,7 @@
+# Flutter-related
+**/Flutter/ephemeral/
+**/Pods/
+
+# Xcode-related
+**/dgph
+**/xcuserdata/
diff --git a/macos/Flutter/Flutter-Debug.xcconfig b/macos/Flutter/Flutter-Debug.xcconfig
new file mode 100644
index 0000000..f022c34
--- /dev/null
+++ b/macos/Flutter/Flutter-Debug.xcconfig
@@ -0,0 +1 @@
+#include "ephemeral/Flutter-Generated.xcconfig"
diff --git a/macos/Flutter/Flutter-Release.xcconfig b/macos/Flutter/Flutter-Release.xcconfig
new file mode 100644
index 0000000..f022c34
--- /dev/null
+++ b/macos/Flutter/Flutter-Release.xcconfig
@@ -0,0 +1 @@
+#include "ephemeral/Flutter-Generated.xcconfig"
diff --git a/macos/Flutter/GeneratedPluginRegistrant.swift b/macos/Flutter/GeneratedPluginRegistrant.swift
new file mode 100644
index 0000000..cccf817
--- /dev/null
+++ b/macos/Flutter/GeneratedPluginRegistrant.swift
@@ -0,0 +1,10 @@
+//
+// Generated file. Do not edit.
+//
+
+import FlutterMacOS
+import Foundation
+
+
+func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
+}
diff --git a/macos/Runner.xcodeproj/project.pbxproj b/macos/Runner.xcodeproj/project.pbxproj
new file mode 100644
index 0000000..690298a
--- /dev/null
+++ b/macos/Runner.xcodeproj/project.pbxproj
@@ -0,0 +1,705 @@
+// !$*UTF8*$!
+{
+ archiveVersion = 1;
+ classes = {
+ };
+ objectVersion = 54;
+ objects = {
+
+/* Begin PBXAggregateTarget section */
+ 33CC111A2044C6BA0003C045 /* Flutter Assemble */ = {
+ isa = PBXAggregateTarget;
+ buildConfigurationList = 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */;
+ buildPhases = (
+ 33CC111E2044C6BF0003C045 /* ShellScript */,
+ );
+ dependencies = (
+ );
+ name = "Flutter Assemble";
+ productName = FLX;
+ };
+/* End PBXAggregateTarget section */
+
+/* Begin PBXBuildFile section */
+ 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C80D7294CF71000263BE5 /* RunnerTests.swift */; };
+ 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; };
+ 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; };
+ 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; };
+ 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; };
+ 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; };
+/* End PBXBuildFile section */
+
+/* Begin PBXContainerItemProxy section */
+ 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 33CC10E52044A3C60003C045 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = 33CC10EC2044A3C60003C045;
+ remoteInfo = Runner;
+ };
+ 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 33CC10E52044A3C60003C045 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = 33CC111A2044C6BA0003C045;
+ remoteInfo = FLX;
+ };
+/* End PBXContainerItemProxy section */
+
+/* Begin PBXCopyFilesBuildPhase section */
+ 33CC110E2044A8840003C045 /* Bundle Framework */ = {
+ isa = PBXCopyFilesBuildPhase;
+ buildActionMask = 2147483647;
+ dstPath = "";
+ dstSubfolderSpec = 10;
+ files = (
+ );
+ name = "Bundle Framework";
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXCopyFilesBuildPhase section */
+
+/* Begin PBXFileReference section */
+ 331C80D5294CF71000263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
+ 331C80D7294CF71000263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; };
+ 333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = ""; };
+ 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = ""; };
+ 33CC10ED2044A3C60003C045 /* sampleindiamap.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "sampleindiamap.app"; sourceTree = BUILT_PRODUCTS_DIR; };
+ 33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
+ 33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = ""; };
+ 33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = ""; };
+ 33CC10F72044A3C60003C045 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Runner/Info.plist; sourceTree = ""; };
+ 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainFlutterWindow.swift; sourceTree = ""; };
+ 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Debug.xcconfig"; sourceTree = ""; };
+ 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Release.xcconfig"; sourceTree = ""; };
+ 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "Flutter-Generated.xcconfig"; path = "ephemeral/Flutter-Generated.xcconfig"; sourceTree = ""; };
+ 33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = ""; };
+ 33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = ""; };
+ 33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = ""; };
+ 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = ""; };
+ 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = ""; };
+/* End PBXFileReference section */
+
+/* Begin PBXFrameworksBuildPhase section */
+ 331C80D2294CF70F00263BE5 /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 33CC10EA2044A3C60003C045 /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXFrameworksBuildPhase section */
+
+/* Begin PBXGroup section */
+ 331C80D6294CF71000263BE5 /* RunnerTests */ = {
+ isa = PBXGroup;
+ children = (
+ 331C80D7294CF71000263BE5 /* RunnerTests.swift */,
+ );
+ path = RunnerTests;
+ sourceTree = "";
+ };
+ 33BA886A226E78AF003329D5 /* Configs */ = {
+ isa = PBXGroup;
+ children = (
+ 33E5194F232828860026EE4D /* AppInfo.xcconfig */,
+ 9740EEB21CF90195004384FC /* Debug.xcconfig */,
+ 7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
+ 333000ED22D3DE5D00554162 /* Warnings.xcconfig */,
+ );
+ path = Configs;
+ sourceTree = "";
+ };
+ 33CC10E42044A3C60003C045 = {
+ isa = PBXGroup;
+ children = (
+ 33FAB671232836740065AC1E /* Runner */,
+ 33CEB47122A05771004F2AC0 /* Flutter */,
+ 331C80D6294CF71000263BE5 /* RunnerTests */,
+ 33CC10EE2044A3C60003C045 /* Products */,
+ D73912EC22F37F3D000D13A0 /* Frameworks */,
+ );
+ sourceTree = "";
+ };
+ 33CC10EE2044A3C60003C045 /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 33CC10ED2044A3C60003C045 /* sampleindiamap.app */,
+ 331C80D5294CF71000263BE5 /* RunnerTests.xctest */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+ 33CC11242044D66E0003C045 /* Resources */ = {
+ isa = PBXGroup;
+ children = (
+ 33CC10F22044A3C60003C045 /* Assets.xcassets */,
+ 33CC10F42044A3C60003C045 /* MainMenu.xib */,
+ 33CC10F72044A3C60003C045 /* Info.plist */,
+ );
+ name = Resources;
+ path = ..;
+ sourceTree = "";
+ };
+ 33CEB47122A05771004F2AC0 /* Flutter */ = {
+ isa = PBXGroup;
+ children = (
+ 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */,
+ 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */,
+ 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */,
+ 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */,
+ );
+ path = Flutter;
+ sourceTree = "";
+ };
+ 33FAB671232836740065AC1E /* Runner */ = {
+ isa = PBXGroup;
+ children = (
+ 33CC10F02044A3C60003C045 /* AppDelegate.swift */,
+ 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */,
+ 33E51913231747F40026EE4D /* DebugProfile.entitlements */,
+ 33E51914231749380026EE4D /* Release.entitlements */,
+ 33CC11242044D66E0003C045 /* Resources */,
+ 33BA886A226E78AF003329D5 /* Configs */,
+ );
+ path = Runner;
+ sourceTree = "";
+ };
+ D73912EC22F37F3D000D13A0 /* Frameworks */ = {
+ isa = PBXGroup;
+ children = (
+ );
+ name = Frameworks;
+ sourceTree = "";
+ };
+/* End PBXGroup section */
+
+/* Begin PBXNativeTarget section */
+ 331C80D4294CF70F00263BE5 /* RunnerTests */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
+ buildPhases = (
+ 331C80D1294CF70F00263BE5 /* Sources */,
+ 331C80D2294CF70F00263BE5 /* Frameworks */,
+ 331C80D3294CF70F00263BE5 /* Resources */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ 331C80DA294CF71000263BE5 /* PBXTargetDependency */,
+ );
+ name = RunnerTests;
+ productName = RunnerTests;
+ productReference = 331C80D5294CF71000263BE5 /* RunnerTests.xctest */;
+ productType = "com.apple.product-type.bundle.unit-test";
+ };
+ 33CC10EC2044A3C60003C045 /* Runner */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */;
+ buildPhases = (
+ 33CC10E92044A3C60003C045 /* Sources */,
+ 33CC10EA2044A3C60003C045 /* Frameworks */,
+ 33CC10EB2044A3C60003C045 /* Resources */,
+ 33CC110E2044A8840003C045 /* Bundle Framework */,
+ 3399D490228B24CF009A79C7 /* ShellScript */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ 33CC11202044C79F0003C045 /* PBXTargetDependency */,
+ );
+ name = Runner;
+ productName = Runner;
+ productReference = 33CC10ED2044A3C60003C045 /* sampleindiamap.app */;
+ productType = "com.apple.product-type.application";
+ };
+/* End PBXNativeTarget section */
+
+/* Begin PBXProject section */
+ 33CC10E52044A3C60003C045 /* Project object */ = {
+ isa = PBXProject;
+ attributes = {
+ BuildIndependentTargetsInParallel = YES;
+ LastSwiftUpdateCheck = 0920;
+ LastUpgradeCheck = 1510;
+ ORGANIZATIONNAME = "";
+ TargetAttributes = {
+ 331C80D4294CF70F00263BE5 = {
+ CreatedOnToolsVersion = 14.0;
+ TestTargetID = 33CC10EC2044A3C60003C045;
+ };
+ 33CC10EC2044A3C60003C045 = {
+ CreatedOnToolsVersion = 9.2;
+ LastSwiftMigration = 1100;
+ ProvisioningStyle = Automatic;
+ SystemCapabilities = {
+ com.apple.Sandbox = {
+ enabled = 1;
+ };
+ };
+ };
+ 33CC111A2044C6BA0003C045 = {
+ CreatedOnToolsVersion = 9.2;
+ ProvisioningStyle = Manual;
+ };
+ };
+ };
+ buildConfigurationList = 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */;
+ compatibilityVersion = "Xcode 9.3";
+ developmentRegion = en;
+ hasScannedForEncodings = 0;
+ knownRegions = (
+ en,
+ Base,
+ );
+ mainGroup = 33CC10E42044A3C60003C045;
+ productRefGroup = 33CC10EE2044A3C60003C045 /* Products */;
+ projectDirPath = "";
+ projectRoot = "";
+ targets = (
+ 33CC10EC2044A3C60003C045 /* Runner */,
+ 331C80D4294CF70F00263BE5 /* RunnerTests */,
+ 33CC111A2044C6BA0003C045 /* Flutter Assemble */,
+ );
+ };
+/* End PBXProject section */
+
+/* Begin PBXResourcesBuildPhase section */
+ 331C80D3294CF70F00263BE5 /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 33CC10EB2044A3C60003C045 /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */,
+ 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXResourcesBuildPhase section */
+
+/* Begin PBXShellScriptBuildPhase section */
+ 3399D490228B24CF009A79C7 /* ShellScript */ = {
+ isa = PBXShellScriptBuildPhase;
+ alwaysOutOfDate = 1;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputFileListPaths = (
+ );
+ inputPaths = (
+ );
+ outputFileListPaths = (
+ );
+ outputPaths = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "echo \"$PRODUCT_NAME.app\" > \"$PROJECT_DIR\"/Flutter/ephemeral/.app_filename && \"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh embed\n";
+ };
+ 33CC111E2044C6BF0003C045 /* ShellScript */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputFileListPaths = (
+ Flutter/ephemeral/FlutterInputs.xcfilelist,
+ );
+ inputPaths = (
+ Flutter/ephemeral/tripwire,
+ );
+ outputFileListPaths = (
+ Flutter/ephemeral/FlutterOutputs.xcfilelist,
+ );
+ outputPaths = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire";
+ };
+/* End PBXShellScriptBuildPhase section */
+
+/* Begin PBXSourcesBuildPhase section */
+ 331C80D1294CF70F00263BE5 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 33CC10E92044A3C60003C045 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */,
+ 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */,
+ 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXSourcesBuildPhase section */
+
+/* Begin PBXTargetDependency section */
+ 331C80DA294CF71000263BE5 /* PBXTargetDependency */ = {
+ isa = PBXTargetDependency;
+ target = 33CC10EC2044A3C60003C045 /* Runner */;
+ targetProxy = 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */;
+ };
+ 33CC11202044C79F0003C045 /* PBXTargetDependency */ = {
+ isa = PBXTargetDependency;
+ target = 33CC111A2044C6BA0003C045 /* Flutter Assemble */;
+ targetProxy = 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */;
+ };
+/* End PBXTargetDependency section */
+
+/* Begin PBXVariantGroup section */
+ 33CC10F42044A3C60003C045 /* MainMenu.xib */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 33CC10F52044A3C60003C045 /* Base */,
+ );
+ name = MainMenu.xib;
+ path = Runner;
+ sourceTree = "";
+ };
+/* End PBXVariantGroup section */
+
+/* Begin XCBuildConfiguration section */
+ 331C80DB294CF71000263BE5 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ BUNDLE_LOADER = "$(TEST_HOST)";
+ CURRENT_PROJECT_VERSION = 1;
+ GENERATE_INFOPLIST_FILE = YES;
+ MARKETING_VERSION = 1.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.sampleindiamap.RunnerTests;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_VERSION = 5.0;
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/sampleindiamap.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/sampleindiamap";
+ };
+ name = Debug;
+ };
+ 331C80DC294CF71000263BE5 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ BUNDLE_LOADER = "$(TEST_HOST)";
+ CURRENT_PROJECT_VERSION = 1;
+ GENERATE_INFOPLIST_FILE = YES;
+ MARKETING_VERSION = 1.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.sampleindiamap.RunnerTests;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_VERSION = 5.0;
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/sampleindiamap.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/sampleindiamap";
+ };
+ name = Release;
+ };
+ 331C80DD294CF71000263BE5 /* Profile */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ BUNDLE_LOADER = "$(TEST_HOST)";
+ CURRENT_PROJECT_VERSION = 1;
+ GENERATE_INFOPLIST_FILE = YES;
+ MARKETING_VERSION = 1.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.sampleindiamap.RunnerTests;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_VERSION = 5.0;
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/sampleindiamap.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/sampleindiamap";
+ };
+ name = Profile;
+ };
+ 338D0CE9231458BD00FA5F75 /* Profile */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CODE_SIGN_IDENTITY = "-";
+ COPY_PHASE_STRIP = NO;
+ DEAD_CODE_STRIPPING = YES;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ ENABLE_NS_ASSERTIONS = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
+ GCC_C_LANGUAGE_STANDARD = gnu11;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ MTL_ENABLE_DEBUG_INFO = NO;
+ SDKROOT = macosx;
+ SWIFT_COMPILATION_MODE = wholemodule;
+ SWIFT_OPTIMIZATION_LEVEL = "-O";
+ };
+ name = Profile;
+ };
+ 338D0CEA231458BD00FA5F75 /* Profile */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements;
+ CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/../Frameworks",
+ );
+ PROVISIONING_PROFILE_SPECIFIER = "";
+ SWIFT_VERSION = 5.0;
+ };
+ name = Profile;
+ };
+ 338D0CEB231458BD00FA5F75 /* Profile */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ CODE_SIGN_STYLE = Manual;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ };
+ name = Profile;
+ };
+ 33CC10F92044A3C60003C045 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CODE_SIGN_IDENTITY = "-";
+ COPY_PHASE_STRIP = NO;
+ DEAD_CODE_STRIPPING = YES;
+ DEBUG_INFORMATION_FORMAT = dwarf;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_TESTABILITY = YES;
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
+ GCC_C_LANGUAGE_STANDARD = gnu11;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_OPTIMIZATION_LEVEL = 0;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "DEBUG=1",
+ "$(inherited)",
+ );
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ MTL_ENABLE_DEBUG_INFO = YES;
+ ONLY_ACTIVE_ARCH = YES;
+ SDKROOT = macosx;
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
+ };
+ name = Debug;
+ };
+ 33CC10FA2044A3C60003C045 /* Release */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CODE_SIGN_IDENTITY = "-";
+ COPY_PHASE_STRIP = NO;
+ DEAD_CODE_STRIPPING = YES;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ ENABLE_NS_ASSERTIONS = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
+ GCC_C_LANGUAGE_STANDARD = gnu11;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ MTL_ENABLE_DEBUG_INFO = NO;
+ SDKROOT = macosx;
+ SWIFT_COMPILATION_MODE = wholemodule;
+ SWIFT_OPTIMIZATION_LEVEL = "-O";
+ };
+ name = Release;
+ };
+ 33CC10FC2044A3C60003C045 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements;
+ CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/../Frameworks",
+ );
+ PROVISIONING_PROFILE_SPECIFIER = "";
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
+ SWIFT_VERSION = 5.0;
+ };
+ name = Debug;
+ };
+ 33CC10FD2044A3C60003C045 /* Release */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CODE_SIGN_ENTITLEMENTS = Runner/Release.entitlements;
+ CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/../Frameworks",
+ );
+ PROVISIONING_PROFILE_SPECIFIER = "";
+ SWIFT_VERSION = 5.0;
+ };
+ name = Release;
+ };
+ 33CC111C2044C6BA0003C045 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ CODE_SIGN_STYLE = Manual;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ };
+ name = Debug;
+ };
+ 33CC111D2044C6BA0003C045 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ CODE_SIGN_STYLE = Automatic;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ };
+ name = Release;
+ };
+/* End XCBuildConfiguration section */
+
+/* Begin XCConfigurationList section */
+ 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 331C80DB294CF71000263BE5 /* Debug */,
+ 331C80DC294CF71000263BE5 /* Release */,
+ 331C80DD294CF71000263BE5 /* Profile */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 33CC10F92044A3C60003C045 /* Debug */,
+ 33CC10FA2044A3C60003C045 /* Release */,
+ 338D0CE9231458BD00FA5F75 /* Profile */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 33CC10FC2044A3C60003C045 /* Debug */,
+ 33CC10FD2044A3C60003C045 /* Release */,
+ 338D0CEA231458BD00FA5F75 /* Profile */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 33CC111C2044C6BA0003C045 /* Debug */,
+ 33CC111D2044C6BA0003C045 /* Release */,
+ 338D0CEB231458BD00FA5F75 /* Profile */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+/* End XCConfigurationList section */
+ };
+ rootObject = 33CC10E52044A3C60003C045 /* Project object */;
+}
diff --git a/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644
index 0000000..fc6bf80
--- /dev/null
+++ b/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEDidComputeMac32BitWarning
+
+
+
diff --git a/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
new file mode 100644
index 0000000..126f1ac
--- /dev/null
+++ b/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
@@ -0,0 +1,98 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/macos/Runner.xcworkspace/contents.xcworkspacedata b/macos/Runner.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 0000000..59c6d39
--- /dev/null
+++ b/macos/Runner.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644
index 0000000..fc6bf80
--- /dev/null
+++ b/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEDidComputeMac32BitWarning
+
+
+
diff --git a/macos/Runner/AppDelegate.swift b/macos/Runner/AppDelegate.swift
new file mode 100644
index 0000000..553a135
--- /dev/null
+++ b/macos/Runner/AppDelegate.swift
@@ -0,0 +1,9 @@
+import Cocoa
+import FlutterMacOS
+
+@NSApplicationMain
+class AppDelegate: FlutterAppDelegate {
+ override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
+ return true
+ }
+}
diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
new file mode 100644
index 0000000..8d4e7cb
--- /dev/null
+++ b/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
@@ -0,0 +1,68 @@
+{
+ "images" : [
+ {
+ "size" : "16x16",
+ "idiom" : "mac",
+ "filename" : "app_icon_16.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "16x16",
+ "idiom" : "mac",
+ "filename" : "app_icon_32.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "32x32",
+ "idiom" : "mac",
+ "filename" : "app_icon_32.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "32x32",
+ "idiom" : "mac",
+ "filename" : "app_icon_64.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "128x128",
+ "idiom" : "mac",
+ "filename" : "app_icon_128.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "128x128",
+ "idiom" : "mac",
+ "filename" : "app_icon_256.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "256x256",
+ "idiom" : "mac",
+ "filename" : "app_icon_256.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "256x256",
+ "idiom" : "mac",
+ "filename" : "app_icon_512.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "512x512",
+ "idiom" : "mac",
+ "filename" : "app_icon_512.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "512x512",
+ "idiom" : "mac",
+ "filename" : "app_icon_1024.png",
+ "scale" : "2x"
+ }
+ ],
+ "info" : {
+ "version" : 1,
+ "author" : "xcode"
+ }
+}
diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png
new file mode 100644
index 0000000..82b6f9d
Binary files /dev/null and b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png differ
diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png
new file mode 100644
index 0000000..13b35eb
Binary files /dev/null and b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png differ
diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png
new file mode 100644
index 0000000..0a3f5fa
Binary files /dev/null and b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png differ
diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png
new file mode 100644
index 0000000..bdb5722
Binary files /dev/null and b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png differ
diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png
new file mode 100644
index 0000000..f083318
Binary files /dev/null and b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png differ
diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png
new file mode 100644
index 0000000..326c0e7
Binary files /dev/null and b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png differ
diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png
new file mode 100644
index 0000000..2f1632c
Binary files /dev/null and b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png differ
diff --git a/macos/Runner/Base.lproj/MainMenu.xib b/macos/Runner/Base.lproj/MainMenu.xib
new file mode 100644
index 0000000..4632c69
--- /dev/null
+++ b/macos/Runner/Base.lproj/MainMenu.xib
@@ -0,0 +1,343 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/macos/Runner/Configs/AppInfo.xcconfig b/macos/Runner/Configs/AppInfo.xcconfig
new file mode 100644
index 0000000..d6683ed
--- /dev/null
+++ b/macos/Runner/Configs/AppInfo.xcconfig
@@ -0,0 +1,14 @@
+// Application-level settings for the Runner target.
+//
+// This may be replaced with something auto-generated from metadata (e.g., pubspec.yaml) in the
+// future. If not, the values below would default to using the project name when this becomes a
+// 'flutter create' template.
+
+// The application's name. By default this is also the title of the Flutter window.
+PRODUCT_NAME = sampleindiamap
+
+// The application's bundle identifier
+PRODUCT_BUNDLE_IDENTIFIER = com.example.sampleindiamap
+
+// The copyright displayed in application information
+PRODUCT_COPYRIGHT = Copyright © 2024 com.example. All rights reserved.
diff --git a/macos/Runner/Configs/Debug.xcconfig b/macos/Runner/Configs/Debug.xcconfig
new file mode 100644
index 0000000..b398823
--- /dev/null
+++ b/macos/Runner/Configs/Debug.xcconfig
@@ -0,0 +1,2 @@
+#include "../../Flutter/Flutter-Debug.xcconfig"
+#include "Warnings.xcconfig"
diff --git a/macos/Runner/Configs/Release.xcconfig b/macos/Runner/Configs/Release.xcconfig
new file mode 100644
index 0000000..d93e5dc
--- /dev/null
+++ b/macos/Runner/Configs/Release.xcconfig
@@ -0,0 +1,2 @@
+#include "../../Flutter/Flutter-Release.xcconfig"
+#include "Warnings.xcconfig"
diff --git a/macos/Runner/Configs/Warnings.xcconfig b/macos/Runner/Configs/Warnings.xcconfig
new file mode 100644
index 0000000..fb4d7d3
--- /dev/null
+++ b/macos/Runner/Configs/Warnings.xcconfig
@@ -0,0 +1,13 @@
+WARNING_CFLAGS = -Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings
+GCC_WARN_UNDECLARED_SELECTOR = YES
+CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES
+CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE
+CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
+CLANG_WARN_PRAGMA_PACK = YES
+CLANG_WARN_STRICT_PROTOTYPES = YES
+CLANG_WARN_COMMA = YES
+GCC_WARN_STRICT_SELECTOR_MATCH = YES
+CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES
+CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES
+GCC_WARN_SHADOW = YES
+CLANG_WARN_UNREACHABLE_CODE = YES
diff --git a/macos/Runner/DebugProfile.entitlements b/macos/Runner/DebugProfile.entitlements
new file mode 100644
index 0000000..51d0967
--- /dev/null
+++ b/macos/Runner/DebugProfile.entitlements
@@ -0,0 +1,12 @@
+
+
+
+
+ com.apple.security.app-sandbox
+
+ com.apple.security.cs.allow-jit
+
+ com.apple.security.network.server
+
+
+
diff --git a/macos/Runner/Info.plist b/macos/Runner/Info.plist
new file mode 100644
index 0000000..3733c1a
--- /dev/null
+++ b/macos/Runner/Info.plist
@@ -0,0 +1,32 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ $(DEVELOPMENT_LANGUAGE)
+ CFBundleExecutable
+ $(EXECUTABLE_NAME)
+ CFBundleIconFile
+
+ CFBundleIdentifier
+ $(PRODUCT_BUNDLE_IDENTIFIER)
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ $(PRODUCT_NAME)
+ CFBundlePackageType
+ APPL
+ CFBundleShortVersionString
+ $(FLUTTER_BUILD_NAME)
+ CFBundleVersion
+ $(FLUTTER_BUILD_NUMBER)
+ LSMinimumSystemVersion
+ $(MACOSX_DEPLOYMENT_TARGET)
+ NSHumanReadableCopyright
+ $(PRODUCT_COPYRIGHT)
+ NSMainNibFile
+ MainMenu
+ NSPrincipalClass
+ NSApplication
+
+
diff --git a/macos/Runner/MainFlutterWindow.swift b/macos/Runner/MainFlutterWindow.swift
new file mode 100644
index 0000000..ab30cba
--- /dev/null
+++ b/macos/Runner/MainFlutterWindow.swift
@@ -0,0 +1,15 @@
+import Cocoa
+import FlutterMacOS
+
+class MainFlutterWindow: NSWindow {
+ override func awakeFromNib() {
+ let flutterViewController = FlutterViewController()
+ let windowFrame = self.frame
+ self.contentViewController = flutterViewController
+ self.setFrame(windowFrame, display: true)
+
+ RegisterGeneratedPlugins(registry: flutterViewController)
+
+ super.awakeFromNib()
+ }
+}
diff --git a/macos/Runner/Release.entitlements b/macos/Runner/Release.entitlements
new file mode 100644
index 0000000..04336df
--- /dev/null
+++ b/macos/Runner/Release.entitlements
@@ -0,0 +1,8 @@
+
+
+
+
+ com.apple.security.app-sandbox
+
+
+
diff --git a/macos/RunnerTests/RunnerTests.swift b/macos/RunnerTests/RunnerTests.swift
new file mode 100644
index 0000000..21fe1ab
--- /dev/null
+++ b/macos/RunnerTests/RunnerTests.swift
@@ -0,0 +1,12 @@
+import Cocoa
+import FlutterMacOS
+import XCTest
+
+class RunnerTests: XCTestCase {
+
+ func testExample() {
+ // If you add code to the Runner application, consider adding tests here.
+ // See https://developer.apple.com/documentation/xctest for more information about using XCTest.
+ }
+
+}
diff --git a/pubspec.yaml b/pubspec.yaml
new file mode 100644
index 0000000..26128cd
--- /dev/null
+++ b/pubspec.yaml
@@ -0,0 +1,84 @@
+name: sampleindiamap
+description: "A new Flutter project."
+# The following line prevents the package from being accidentally published to
+# pub.dev using `flutter pub publish`. This is preferred for private packages.
+publish_to: 'none' # Remove this line if you wish to publish to pub.dev
+
+# The following defines the version and build number for your application.
+# A version number is three numbers separated by dots, like 1.2.43
+# followed by an optional build number separated by a +.
+# Both the version and the builder number may be overridden in flutter
+# build by specifying --build-name and --build-number, respectively.
+# In Android, build-name is used as versionName while build-number used as versionCode.
+# Read more about Android versioning at https://developer.android.com/studio/publish/versioning
+# In iOS, build-name is used as CFBundleShortVersionString while build-number is used as CFBundleVersion.
+# Read more about iOS versioning at
+# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
+# In Windows, build-name is used as the major, minor, and patch parts
+# of the product and file versions while build-number is used as the build suffix.
+version: 1.0.0+1
+
+environment:
+ sdk: '>=3.4.4 <4.0.0'
+
+# Dependencies specify other packages that your package needs in order to work.
+# To automatically upgrade your package dependencies to the latest versions
+# consider running `flutter pub upgrade --major-versions`. Alternatively,
+# dependencies can be manually updated by changing the version numbers below to
+# the latest version available on pub.dev. To see which dependencies have newer
+# versions available, run `flutter pub outdated`.
+dependencies:
+ flutter:
+ sdk: flutter
+
+
+ # The following adds the Cupertino Icons font to your application.
+ # Use with the CupertinoIcons class for iOS style icons.
+ cupertino_icons: ^1.0.6
+ syncfusion_flutter_maps: ^26.2.4
+
+dev_dependencies:
+ flutter_test:
+ sdk: flutter
+
+ # The "flutter_lints" package below contains a set of recommended lints to
+ # encourage good coding practices. The lint set provided by the package is
+ # activated in the `analysis_options.yaml` file located at the root of your
+ # package. See that file for information about deactivating specific lint
+ # rules and activating additional ones.
+ flutter_lints: ^3.0.0
+
+# For information on the generic Dart part of this file, see the
+# following page: https://dart.dev/tools/pub/pubspec
+
+# The following section is specific to Flutter packages.
+flutter:
+ uses-material-design: true
+ assets:
+ - assets/india.json
+
+ # An image asset can refer to one or more resolution-specific "variants", see
+ # https://flutter.dev/assets-and-images/#resolution-aware
+
+ # For details regarding adding assets from package dependencies, see
+ # https://flutter.dev/assets-and-images/#from-packages
+
+ # To add custom fonts to your application, add a fonts section here,
+ # in this "flutter" section. Each entry in this list should have a
+ # "family" key with the font family name, and a "fonts" key with a
+ # list giving the asset and other descriptors for the font. For
+ # example:
+ # fonts:
+ # - family: Schyler
+ # fonts:
+ # - asset: fonts/Schyler-Regular.ttf
+ # - asset: fonts/Schyler-Italic.ttf
+ # style: italic
+ # - family: Trajan Pro
+ # fonts:
+ # - asset: fonts/TrajanPro.ttf
+ # - asset: fonts/TrajanPro_Bold.ttf
+ # weight: 700
+ #
+ # For details regarding fonts from package dependencies,
+ # see https://flutter.dev/custom-fonts/#from-packages
diff --git a/test/widget_test.dart b/test/widget_test.dart
new file mode 100644
index 0000000..a290057
--- /dev/null
+++ b/test/widget_test.dart
@@ -0,0 +1,30 @@
+// This is a basic Flutter widget test.
+//
+// To perform an interaction with a widget in your test, use the WidgetTester
+// utility in the flutter_test package. For example, you can send tap and scroll
+// gestures. You can also use WidgetTester to find child widgets in the widget
+// tree, read text, and verify that the values of widget properties are correct.
+
+import 'package:flutter/material.dart';
+import 'package:flutter_test/flutter_test.dart';
+
+import 'package:sampleindiamap/main.dart';
+
+void main() {
+ testWidgets('Counter increments smoke test', (WidgetTester tester) async {
+ // Build our app and trigger a frame.
+ await tester.pumpWidget(const MyApp());
+
+ // Verify that our counter starts at 0.
+ expect(find.text('0'), findsOneWidget);
+ expect(find.text('1'), findsNothing);
+
+ // Tap the '+' icon and trigger a frame.
+ await tester.tap(find.byIcon(Icons.add));
+ await tester.pump();
+
+ // Verify that our counter has incremented.
+ expect(find.text('0'), findsNothing);
+ expect(find.text('1'), findsOneWidget);
+ });
+}
diff --git a/web/favicon.png b/web/favicon.png
new file mode 100644
index 0000000..8aaa46a
Binary files /dev/null and b/web/favicon.png differ
diff --git a/web/icons/Icon-192.png b/web/icons/Icon-192.png
new file mode 100644
index 0000000..b749bfe
Binary files /dev/null and b/web/icons/Icon-192.png differ
diff --git a/web/icons/Icon-512.png b/web/icons/Icon-512.png
new file mode 100644
index 0000000..88cfd48
Binary files /dev/null and b/web/icons/Icon-512.png differ
diff --git a/web/icons/Icon-maskable-192.png b/web/icons/Icon-maskable-192.png
new file mode 100644
index 0000000..eb9b4d7
Binary files /dev/null and b/web/icons/Icon-maskable-192.png differ
diff --git a/web/icons/Icon-maskable-512.png b/web/icons/Icon-maskable-512.png
new file mode 100644
index 0000000..d69c566
Binary files /dev/null and b/web/icons/Icon-maskable-512.png differ
diff --git a/web/index.html b/web/index.html
new file mode 100644
index 0000000..2f79f8a
--- /dev/null
+++ b/web/index.html
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ sampleindiamap
+
+
+
+
+
+
diff --git a/web/manifest.json b/web/manifest.json
new file mode 100644
index 0000000..846934a
--- /dev/null
+++ b/web/manifest.json
@@ -0,0 +1,35 @@
+{
+ "name": "sampleindiamap",
+ "short_name": "sampleindiamap",
+ "start_url": ".",
+ "display": "standalone",
+ "background_color": "#0175C2",
+ "theme_color": "#0175C2",
+ "description": "A new Flutter project.",
+ "orientation": "portrait-primary",
+ "prefer_related_applications": false,
+ "icons": [
+ {
+ "src": "icons/Icon-192.png",
+ "sizes": "192x192",
+ "type": "image/png"
+ },
+ {
+ "src": "icons/Icon-512.png",
+ "sizes": "512x512",
+ "type": "image/png"
+ },
+ {
+ "src": "icons/Icon-maskable-192.png",
+ "sizes": "192x192",
+ "type": "image/png",
+ "purpose": "maskable"
+ },
+ {
+ "src": "icons/Icon-maskable-512.png",
+ "sizes": "512x512",
+ "type": "image/png",
+ "purpose": "maskable"
+ }
+ ]
+}
diff --git a/windows/.gitignore b/windows/.gitignore
new file mode 100644
index 0000000..ec4098a
--- /dev/null
+++ b/windows/.gitignore
@@ -0,0 +1,17 @@
+flutter/ephemeral/
+
+# Visual Studio user-specific files.
+*.suo
+*.user
+*.userosscache
+*.sln.docstates
+
+# Visual Studio build-related files.
+x64/
+x86/
+
+# Visual Studio cache files
+# files ending in .cache can be ignored
+*.[Cc]ache
+# but keep track of directories ending in .cache
+!*.[Cc]ache/
diff --git a/windows/CMakeLists.txt b/windows/CMakeLists.txt
new file mode 100644
index 0000000..2d9f890
--- /dev/null
+++ b/windows/CMakeLists.txt
@@ -0,0 +1,108 @@
+# Project-level configuration.
+cmake_minimum_required(VERSION 3.14)
+project(sampleindiamap LANGUAGES CXX)
+
+# The name of the executable created for the application. Change this to change
+# the on-disk name of your application.
+set(BINARY_NAME "sampleindiamap")
+
+# Explicitly opt in to modern CMake behaviors to avoid warnings with recent
+# versions of CMake.
+cmake_policy(VERSION 3.14...3.25)
+
+# Define build configuration option.
+get_property(IS_MULTICONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG)
+if(IS_MULTICONFIG)
+ set(CMAKE_CONFIGURATION_TYPES "Debug;Profile;Release"
+ CACHE STRING "" FORCE)
+else()
+ if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
+ set(CMAKE_BUILD_TYPE "Debug" CACHE
+ STRING "Flutter build mode" FORCE)
+ set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS
+ "Debug" "Profile" "Release")
+ endif()
+endif()
+# Define settings for the Profile build mode.
+set(CMAKE_EXE_LINKER_FLAGS_PROFILE "${CMAKE_EXE_LINKER_FLAGS_RELEASE}")
+set(CMAKE_SHARED_LINKER_FLAGS_PROFILE "${CMAKE_SHARED_LINKER_FLAGS_RELEASE}")
+set(CMAKE_C_FLAGS_PROFILE "${CMAKE_C_FLAGS_RELEASE}")
+set(CMAKE_CXX_FLAGS_PROFILE "${CMAKE_CXX_FLAGS_RELEASE}")
+
+# Use Unicode for all projects.
+add_definitions(-DUNICODE -D_UNICODE)
+
+# Compilation settings that should be applied to most targets.
+#
+# Be cautious about adding new options here, as plugins use this function by
+# default. In most cases, you should add new options to specific targets instead
+# of modifying this function.
+function(APPLY_STANDARD_SETTINGS TARGET)
+ target_compile_features(${TARGET} PUBLIC cxx_std_17)
+ target_compile_options(${TARGET} PRIVATE /W4 /WX /wd"4100")
+ target_compile_options(${TARGET} PRIVATE /EHsc)
+ target_compile_definitions(${TARGET} PRIVATE "_HAS_EXCEPTIONS=0")
+ target_compile_definitions(${TARGET} PRIVATE "$<$:_DEBUG>")
+endfunction()
+
+# Flutter library and tool build rules.
+set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter")
+add_subdirectory(${FLUTTER_MANAGED_DIR})
+
+# Application build; see runner/CMakeLists.txt.
+add_subdirectory("runner")
+
+
+# Generated plugin build rules, which manage building the plugins and adding
+# them to the application.
+include(flutter/generated_plugins.cmake)
+
+
+# === Installation ===
+# Support files are copied into place next to the executable, so that it can
+# run in place. This is done instead of making a separate bundle (as on Linux)
+# so that building and running from within Visual Studio will work.
+set(BUILD_BUNDLE_DIR "$")
+# Make the "install" step default, as it's required to run.
+set(CMAKE_VS_INCLUDE_INSTALL_TO_DEFAULT_BUILD 1)
+if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
+ set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE)
+endif()
+
+set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data")
+set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}")
+
+install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}"
+ COMPONENT Runtime)
+
+install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}"
+ COMPONENT Runtime)
+
+install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}"
+ COMPONENT Runtime)
+
+if(PLUGIN_BUNDLED_LIBRARIES)
+ install(FILES "${PLUGIN_BUNDLED_LIBRARIES}"
+ DESTINATION "${INSTALL_BUNDLE_LIB_DIR}"
+ COMPONENT Runtime)
+endif()
+
+# Copy the native assets provided by the build.dart from all packages.
+set(NATIVE_ASSETS_DIR "${PROJECT_BUILD_DIR}native_assets/windows/")
+install(DIRECTORY "${NATIVE_ASSETS_DIR}"
+ DESTINATION "${INSTALL_BUNDLE_LIB_DIR}"
+ COMPONENT Runtime)
+
+# Fully re-copy the assets directory on each build to avoid having stale files
+# from a previous install.
+set(FLUTTER_ASSET_DIR_NAME "flutter_assets")
+install(CODE "
+ file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\")
+ " COMPONENT Runtime)
+install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}"
+ DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime)
+
+# Install the AOT library on non-Debug builds only.
+install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}"
+ CONFIGURATIONS Profile;Release
+ COMPONENT Runtime)
diff --git a/windows/flutter/CMakeLists.txt b/windows/flutter/CMakeLists.txt
new file mode 100644
index 0000000..efb62eb
--- /dev/null
+++ b/windows/flutter/CMakeLists.txt
@@ -0,0 +1,109 @@
+# This file controls Flutter-level build steps. It should not be edited.
+cmake_minimum_required(VERSION 3.14)
+
+set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral")
+
+# Configuration provided via flutter tool.
+include(${EPHEMERAL_DIR}/generated_config.cmake)
+
+# TODO: Move the rest of this into files in ephemeral. See
+# https://github.com/flutter/flutter/issues/57146.
+set(WRAPPER_ROOT "${EPHEMERAL_DIR}/cpp_client_wrapper")
+
+# Set fallback configurations for older versions of the flutter tool.
+if (NOT DEFINED FLUTTER_TARGET_PLATFORM)
+ set(FLUTTER_TARGET_PLATFORM "windows-x64")
+endif()
+
+# === Flutter Library ===
+set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/flutter_windows.dll")
+
+# Published to parent scope for install step.
+set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE)
+set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE)
+set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE)
+set(AOT_LIBRARY "${PROJECT_DIR}/build/windows/app.so" PARENT_SCOPE)
+
+list(APPEND FLUTTER_LIBRARY_HEADERS
+ "flutter_export.h"
+ "flutter_windows.h"
+ "flutter_messenger.h"
+ "flutter_plugin_registrar.h"
+ "flutter_texture_registrar.h"
+)
+list(TRANSFORM FLUTTER_LIBRARY_HEADERS PREPEND "${EPHEMERAL_DIR}/")
+add_library(flutter INTERFACE)
+target_include_directories(flutter INTERFACE
+ "${EPHEMERAL_DIR}"
+)
+target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}.lib")
+add_dependencies(flutter flutter_assemble)
+
+# === Wrapper ===
+list(APPEND CPP_WRAPPER_SOURCES_CORE
+ "core_implementations.cc"
+ "standard_codec.cc"
+)
+list(TRANSFORM CPP_WRAPPER_SOURCES_CORE PREPEND "${WRAPPER_ROOT}/")
+list(APPEND CPP_WRAPPER_SOURCES_PLUGIN
+ "plugin_registrar.cc"
+)
+list(TRANSFORM CPP_WRAPPER_SOURCES_PLUGIN PREPEND "${WRAPPER_ROOT}/")
+list(APPEND CPP_WRAPPER_SOURCES_APP
+ "flutter_engine.cc"
+ "flutter_view_controller.cc"
+)
+list(TRANSFORM CPP_WRAPPER_SOURCES_APP PREPEND "${WRAPPER_ROOT}/")
+
+# Wrapper sources needed for a plugin.
+add_library(flutter_wrapper_plugin STATIC
+ ${CPP_WRAPPER_SOURCES_CORE}
+ ${CPP_WRAPPER_SOURCES_PLUGIN}
+)
+apply_standard_settings(flutter_wrapper_plugin)
+set_target_properties(flutter_wrapper_plugin PROPERTIES
+ POSITION_INDEPENDENT_CODE ON)
+set_target_properties(flutter_wrapper_plugin PROPERTIES
+ CXX_VISIBILITY_PRESET hidden)
+target_link_libraries(flutter_wrapper_plugin PUBLIC flutter)
+target_include_directories(flutter_wrapper_plugin PUBLIC
+ "${WRAPPER_ROOT}/include"
+)
+add_dependencies(flutter_wrapper_plugin flutter_assemble)
+
+# Wrapper sources needed for the runner.
+add_library(flutter_wrapper_app STATIC
+ ${CPP_WRAPPER_SOURCES_CORE}
+ ${CPP_WRAPPER_SOURCES_APP}
+)
+apply_standard_settings(flutter_wrapper_app)
+target_link_libraries(flutter_wrapper_app PUBLIC flutter)
+target_include_directories(flutter_wrapper_app PUBLIC
+ "${WRAPPER_ROOT}/include"
+)
+add_dependencies(flutter_wrapper_app flutter_assemble)
+
+# === Flutter tool backend ===
+# _phony_ is a non-existent file to force this command to run every time,
+# since currently there's no way to get a full input/output list from the
+# flutter tool.
+set(PHONY_OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/_phony_")
+set_source_files_properties("${PHONY_OUTPUT}" PROPERTIES SYMBOLIC TRUE)
+add_custom_command(
+ OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS}
+ ${CPP_WRAPPER_SOURCES_CORE} ${CPP_WRAPPER_SOURCES_PLUGIN}
+ ${CPP_WRAPPER_SOURCES_APP}
+ ${PHONY_OUTPUT}
+ COMMAND ${CMAKE_COMMAND} -E env
+ ${FLUTTER_TOOL_ENVIRONMENT}
+ "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.bat"
+ ${FLUTTER_TARGET_PLATFORM} $
+ VERBATIM
+)
+add_custom_target(flutter_assemble DEPENDS
+ "${FLUTTER_LIBRARY}"
+ ${FLUTTER_LIBRARY_HEADERS}
+ ${CPP_WRAPPER_SOURCES_CORE}
+ ${CPP_WRAPPER_SOURCES_PLUGIN}
+ ${CPP_WRAPPER_SOURCES_APP}
+)
diff --git a/windows/flutter/generated_plugin_registrant.cc b/windows/flutter/generated_plugin_registrant.cc
new file mode 100644
index 0000000..8b6d468
--- /dev/null
+++ b/windows/flutter/generated_plugin_registrant.cc
@@ -0,0 +1,11 @@
+//
+// Generated file. Do not edit.
+//
+
+// clang-format off
+
+#include "generated_plugin_registrant.h"
+
+
+void RegisterPlugins(flutter::PluginRegistry* registry) {
+}
diff --git a/windows/flutter/generated_plugin_registrant.h b/windows/flutter/generated_plugin_registrant.h
new file mode 100644
index 0000000..dc139d8
--- /dev/null
+++ b/windows/flutter/generated_plugin_registrant.h
@@ -0,0 +1,15 @@
+//
+// Generated file. Do not edit.
+//
+
+// clang-format off
+
+#ifndef GENERATED_PLUGIN_REGISTRANT_
+#define GENERATED_PLUGIN_REGISTRANT_
+
+#include
+
+// Registers Flutter plugins.
+void RegisterPlugins(flutter::PluginRegistry* registry);
+
+#endif // GENERATED_PLUGIN_REGISTRANT_
diff --git a/windows/flutter/generated_plugins.cmake b/windows/flutter/generated_plugins.cmake
new file mode 100644
index 0000000..b93c4c3
--- /dev/null
+++ b/windows/flutter/generated_plugins.cmake
@@ -0,0 +1,23 @@
+#
+# Generated file, do not edit.
+#
+
+list(APPEND FLUTTER_PLUGIN_LIST
+)
+
+list(APPEND FLUTTER_FFI_PLUGIN_LIST
+)
+
+set(PLUGIN_BUNDLED_LIBRARIES)
+
+foreach(plugin ${FLUTTER_PLUGIN_LIST})
+ add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/windows plugins/${plugin})
+ target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin)
+ list(APPEND PLUGIN_BUNDLED_LIBRARIES $)
+ list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})
+endforeach(plugin)
+
+foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})
+ add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/windows plugins/${ffi_plugin})
+ list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
+endforeach(ffi_plugin)
diff --git a/windows/runner/CMakeLists.txt b/windows/runner/CMakeLists.txt
new file mode 100644
index 0000000..2041a04
--- /dev/null
+++ b/windows/runner/CMakeLists.txt
@@ -0,0 +1,40 @@
+cmake_minimum_required(VERSION 3.14)
+project(runner LANGUAGES CXX)
+
+# Define the application target. To change its name, change BINARY_NAME in the
+# top-level CMakeLists.txt, not the value here, or `flutter run` will no longer
+# work.
+#
+# Any new source files that you add to the application should be added here.
+add_executable(${BINARY_NAME} WIN32
+ "flutter_window.cpp"
+ "main.cpp"
+ "utils.cpp"
+ "win32_window.cpp"
+ "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc"
+ "Runner.rc"
+ "runner.exe.manifest"
+)
+
+# Apply the standard set of build settings. This can be removed for applications
+# that need different build settings.
+apply_standard_settings(${BINARY_NAME})
+
+# Add preprocessor definitions for the build version.
+target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION=\"${FLUTTER_VERSION}\"")
+target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_MAJOR=${FLUTTER_VERSION_MAJOR}")
+target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_MINOR=${FLUTTER_VERSION_MINOR}")
+target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_PATCH=${FLUTTER_VERSION_PATCH}")
+target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_BUILD=${FLUTTER_VERSION_BUILD}")
+
+# Disable Windows macros that collide with C++ standard library functions.
+target_compile_definitions(${BINARY_NAME} PRIVATE "NOMINMAX")
+
+# Add dependency libraries and include directories. Add any application-specific
+# dependencies here.
+target_link_libraries(${BINARY_NAME} PRIVATE flutter flutter_wrapper_app)
+target_link_libraries(${BINARY_NAME} PRIVATE "dwmapi.lib")
+target_include_directories(${BINARY_NAME} PRIVATE "${CMAKE_SOURCE_DIR}")
+
+# Run the Flutter tool portions of the build. This must not be removed.
+add_dependencies(${BINARY_NAME} flutter_assemble)
diff --git a/windows/runner/Runner.rc b/windows/runner/Runner.rc
new file mode 100644
index 0000000..2aa6b8c
--- /dev/null
+++ b/windows/runner/Runner.rc
@@ -0,0 +1,121 @@
+// Microsoft Visual C++ generated resource script.
+//
+#pragma code_page(65001)
+#include "resource.h"
+
+#define APSTUDIO_READONLY_SYMBOLS
+/////////////////////////////////////////////////////////////////////////////
+//
+// Generated from the TEXTINCLUDE 2 resource.
+//
+#include "winres.h"
+
+/////////////////////////////////////////////////////////////////////////////
+#undef APSTUDIO_READONLY_SYMBOLS
+
+/////////////////////////////////////////////////////////////////////////////
+// English (United States) resources
+
+#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
+LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
+
+#ifdef APSTUDIO_INVOKED
+/////////////////////////////////////////////////////////////////////////////
+//
+// TEXTINCLUDE
+//
+
+1 TEXTINCLUDE
+BEGIN
+ "resource.h\0"
+END
+
+2 TEXTINCLUDE
+BEGIN
+ "#include ""winres.h""\r\n"
+ "\0"
+END
+
+3 TEXTINCLUDE
+BEGIN
+ "\r\n"
+ "\0"
+END
+
+#endif // APSTUDIO_INVOKED
+
+
+/////////////////////////////////////////////////////////////////////////////
+//
+// Icon
+//
+
+// Icon with lowest ID value placed first to ensure application icon
+// remains consistent on all systems.
+IDI_APP_ICON ICON "resources\\app_icon.ico"
+
+
+/////////////////////////////////////////////////////////////////////////////
+//
+// Version
+//
+
+#if defined(FLUTTER_VERSION_MAJOR) && defined(FLUTTER_VERSION_MINOR) && defined(FLUTTER_VERSION_PATCH) && defined(FLUTTER_VERSION_BUILD)
+#define VERSION_AS_NUMBER FLUTTER_VERSION_MAJOR,FLUTTER_VERSION_MINOR,FLUTTER_VERSION_PATCH,FLUTTER_VERSION_BUILD
+#else
+#define VERSION_AS_NUMBER 1,0,0,0
+#endif
+
+#if defined(FLUTTER_VERSION)
+#define VERSION_AS_STRING FLUTTER_VERSION
+#else
+#define VERSION_AS_STRING "1.0.0"
+#endif
+
+VS_VERSION_INFO VERSIONINFO
+ FILEVERSION VERSION_AS_NUMBER
+ PRODUCTVERSION VERSION_AS_NUMBER
+ FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
+#ifdef _DEBUG
+ FILEFLAGS VS_FF_DEBUG
+#else
+ FILEFLAGS 0x0L
+#endif
+ FILEOS VOS__WINDOWS32
+ FILETYPE VFT_APP
+ FILESUBTYPE 0x0L
+BEGIN
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "040904e4"
+ BEGIN
+ VALUE "CompanyName", "com.example" "\0"
+ VALUE "FileDescription", "sampleindiamap" "\0"
+ VALUE "FileVersion", VERSION_AS_STRING "\0"
+ VALUE "InternalName", "sampleindiamap" "\0"
+ VALUE "LegalCopyright", "Copyright (C) 2024 com.example. All rights reserved." "\0"
+ VALUE "OriginalFilename", "sampleindiamap.exe" "\0"
+ VALUE "ProductName", "sampleindiamap" "\0"
+ VALUE "ProductVersion", VERSION_AS_STRING "\0"
+ END
+ END
+ BLOCK "VarFileInfo"
+ BEGIN
+ VALUE "Translation", 0x409, 1252
+ END
+END
+
+#endif // English (United States) resources
+/////////////////////////////////////////////////////////////////////////////
+
+
+
+#ifndef APSTUDIO_INVOKED
+/////////////////////////////////////////////////////////////////////////////
+//
+// Generated from the TEXTINCLUDE 3 resource.
+//
+
+
+/////////////////////////////////////////////////////////////////////////////
+#endif // not APSTUDIO_INVOKED
diff --git a/windows/runner/flutter_window.cpp b/windows/runner/flutter_window.cpp
new file mode 100644
index 0000000..c819cb0
--- /dev/null
+++ b/windows/runner/flutter_window.cpp
@@ -0,0 +1,71 @@
+#include "flutter_window.h"
+
+#include
+
+#include "flutter/generated_plugin_registrant.h"
+
+FlutterWindow::FlutterWindow(const flutter::DartProject& project)
+ : project_(project) {}
+
+FlutterWindow::~FlutterWindow() {}
+
+bool FlutterWindow::OnCreate() {
+ if (!Win32Window::OnCreate()) {
+ return false;
+ }
+
+ RECT frame = GetClientArea();
+
+ // The size here must match the window dimensions to avoid unnecessary surface
+ // creation / destruction in the startup path.
+ flutter_controller_ = std::make_unique(
+ frame.right - frame.left, frame.bottom - frame.top, project_);
+ // Ensure that basic setup of the controller was successful.
+ if (!flutter_controller_->engine() || !flutter_controller_->view()) {
+ return false;
+ }
+ RegisterPlugins(flutter_controller_->engine());
+ SetChildContent(flutter_controller_->view()->GetNativeWindow());
+
+ flutter_controller_->engine()->SetNextFrameCallback([&]() {
+ this->Show();
+ });
+
+ // Flutter can complete the first frame before the "show window" callback is
+ // registered. The following call ensures a frame is pending to ensure the
+ // window is shown. It is a no-op if the first frame hasn't completed yet.
+ flutter_controller_->ForceRedraw();
+
+ return true;
+}
+
+void FlutterWindow::OnDestroy() {
+ if (flutter_controller_) {
+ flutter_controller_ = nullptr;
+ }
+
+ Win32Window::OnDestroy();
+}
+
+LRESULT
+FlutterWindow::MessageHandler(HWND hwnd, UINT const message,
+ WPARAM const wparam,
+ LPARAM const lparam) noexcept {
+ // Give Flutter, including plugins, an opportunity to handle window messages.
+ if (flutter_controller_) {
+ std::optional result =
+ flutter_controller_->HandleTopLevelWindowProc(hwnd, message, wparam,
+ lparam);
+ if (result) {
+ return *result;
+ }
+ }
+
+ switch (message) {
+ case WM_FONTCHANGE:
+ flutter_controller_->engine()->ReloadSystemFonts();
+ break;
+ }
+
+ return Win32Window::MessageHandler(hwnd, message, wparam, lparam);
+}
diff --git a/windows/runner/flutter_window.h b/windows/runner/flutter_window.h
new file mode 100644
index 0000000..28c2383
--- /dev/null
+++ b/windows/runner/flutter_window.h
@@ -0,0 +1,33 @@
+#ifndef RUNNER_FLUTTER_WINDOW_H_
+#define RUNNER_FLUTTER_WINDOW_H_
+
+#include
+#include
+
+#include
+
+#include "win32_window.h"
+
+// A window that does nothing but host a Flutter view.
+class FlutterWindow : public Win32Window {
+ public:
+ // Creates a new FlutterWindow hosting a Flutter view running |project|.
+ explicit FlutterWindow(const flutter::DartProject& project);
+ virtual ~FlutterWindow();
+
+ protected:
+ // Win32Window:
+ bool OnCreate() override;
+ void OnDestroy() override;
+ LRESULT MessageHandler(HWND window, UINT const message, WPARAM const wparam,
+ LPARAM const lparam) noexcept override;
+
+ private:
+ // The project to run.
+ flutter::DartProject project_;
+
+ // The Flutter instance hosted by this window.
+ std::unique_ptr flutter_controller_;
+};
+
+#endif // RUNNER_FLUTTER_WINDOW_H_
diff --git a/windows/runner/main.cpp b/windows/runner/main.cpp
new file mode 100644
index 0000000..ec2b444
--- /dev/null
+++ b/windows/runner/main.cpp
@@ -0,0 +1,43 @@
+#include
+#include
+#include
+
+#include "flutter_window.h"
+#include "utils.h"
+
+int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev,
+ _In_ wchar_t *command_line, _In_ int show_command) {
+ // Attach to console when present (e.g., 'flutter run') or create a
+ // new console when running with a debugger.
+ if (!::AttachConsole(ATTACH_PARENT_PROCESS) && ::IsDebuggerPresent()) {
+ CreateAndAttachConsole();
+ }
+
+ // Initialize COM, so that it is available for use in the library and/or
+ // plugins.
+ ::CoInitializeEx(nullptr, COINIT_APARTMENTTHREADED);
+
+ flutter::DartProject project(L"data");
+
+ std::vector command_line_arguments =
+ GetCommandLineArguments();
+
+ project.set_dart_entrypoint_arguments(std::move(command_line_arguments));
+
+ FlutterWindow window(project);
+ Win32Window::Point origin(10, 10);
+ Win32Window::Size size(1280, 720);
+ if (!window.Create(L"sampleindiamap", origin, size)) {
+ return EXIT_FAILURE;
+ }
+ window.SetQuitOnClose(true);
+
+ ::MSG msg;
+ while (::GetMessage(&msg, nullptr, 0, 0)) {
+ ::TranslateMessage(&msg);
+ ::DispatchMessage(&msg);
+ }
+
+ ::CoUninitialize();
+ return EXIT_SUCCESS;
+}
diff --git a/windows/runner/resource.h b/windows/runner/resource.h
new file mode 100644
index 0000000..ddc7f3e
--- /dev/null
+++ b/windows/runner/resource.h
@@ -0,0 +1,16 @@
+//{{NO_DEPENDENCIES}}
+// Microsoft Visual C++ generated include file.
+// Used by Runner.rc
+//
+#define IDI_APP_ICON 101
+
+// Next default values for new objects
+//
+#ifdef APSTUDIO_INVOKED
+#ifndef APSTUDIO_READONLY_SYMBOLS
+#define _APS_NEXT_RESOURCE_VALUE 102
+#define _APS_NEXT_COMMAND_VALUE 40001
+#define _APS_NEXT_CONTROL_VALUE 1001
+#define _APS_NEXT_SYMED_VALUE 101
+#endif
+#endif
diff --git a/windows/runner/resources/app_icon.ico b/windows/runner/resources/app_icon.ico
new file mode 100644
index 0000000..c04e20c
Binary files /dev/null and b/windows/runner/resources/app_icon.ico differ
diff --git a/windows/runner/runner.exe.manifest b/windows/runner/runner.exe.manifest
new file mode 100644
index 0000000..157e871
--- /dev/null
+++ b/windows/runner/runner.exe.manifest
@@ -0,0 +1,20 @@
+
+
+
+
+ PerMonitorV2
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/windows/runner/utils.cpp b/windows/runner/utils.cpp
new file mode 100644
index 0000000..259d85b
--- /dev/null
+++ b/windows/runner/utils.cpp
@@ -0,0 +1,65 @@
+#include "utils.h"
+
+#include
+#include
+#include
+#include
+
+#include
+
+void CreateAndAttachConsole() {
+ if (::AllocConsole()) {
+ FILE *unused;
+ if (freopen_s(&unused, "CONOUT$", "w", stdout)) {
+ _dup2(_fileno(stdout), 1);
+ }
+ if (freopen_s(&unused, "CONOUT$", "w", stderr)) {
+ _dup2(_fileno(stdout), 2);
+ }
+ std::ios::sync_with_stdio();
+ FlutterDesktopResyncOutputStreams();
+ }
+}
+
+std::vector GetCommandLineArguments() {
+ // Convert the UTF-16 command line arguments to UTF-8 for the Engine to use.
+ int argc;
+ wchar_t** argv = ::CommandLineToArgvW(::GetCommandLineW(), &argc);
+ if (argv == nullptr) {
+ return std::vector();
+ }
+
+ std::vector command_line_arguments;
+
+ // Skip the first argument as it's the binary name.
+ for (int i = 1; i < argc; i++) {
+ command_line_arguments.push_back(Utf8FromUtf16(argv[i]));
+ }
+
+ ::LocalFree(argv);
+
+ return command_line_arguments;
+}
+
+std::string Utf8FromUtf16(const wchar_t* utf16_string) {
+ if (utf16_string == nullptr) {
+ return std::string();
+ }
+ unsigned int target_length = ::WideCharToMultiByte(
+ CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string,
+ -1, nullptr, 0, nullptr, nullptr)
+ -1; // remove the trailing null character
+ int input_length = (int)wcslen(utf16_string);
+ std::string utf8_string;
+ if (target_length == 0 || target_length > utf8_string.max_size()) {
+ return utf8_string;
+ }
+ utf8_string.resize(target_length);
+ int converted_length = ::WideCharToMultiByte(
+ CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string,
+ input_length, utf8_string.data(), target_length, nullptr, nullptr);
+ if (converted_length == 0) {
+ return std::string();
+ }
+ return utf8_string;
+}
diff --git a/windows/runner/utils.h b/windows/runner/utils.h
new file mode 100644
index 0000000..3f0e05c
--- /dev/null
+++ b/windows/runner/utils.h
@@ -0,0 +1,19 @@
+#ifndef RUNNER_UTILS_H_
+#define RUNNER_UTILS_H_
+
+#include
+#include
+
+// Creates a console for the process, and redirects stdout and stderr to
+// it for both the runner and the Flutter library.
+void CreateAndAttachConsole();
+
+// Takes a null-terminated wchar_t* encoded in UTF-16 and returns a std::string
+// encoded in UTF-8. Returns an empty std::string on failure.
+std::string Utf8FromUtf16(const wchar_t* utf16_string);
+
+// Gets the command line arguments passed in as a std::vector,
+// encoded in UTF-8. Returns an empty std::vector on failure.
+std::vector GetCommandLineArguments();
+
+#endif // RUNNER_UTILS_H_
diff --git a/windows/runner/win32_window.cpp b/windows/runner/win32_window.cpp
new file mode 100644
index 0000000..b5ba2a0
--- /dev/null
+++ b/windows/runner/win32_window.cpp
@@ -0,0 +1,288 @@
+#include "win32_window.h"
+
+#include
+#include
+
+#include "resource.h"
+
+namespace {
+
+/// Window attribute that enables dark mode window decorations.
+///
+/// Redefined in case the developer's machine has a Windows SDK older than
+/// version 10.0.22000.0.
+/// See: https://docs.microsoft.com/windows/win32/api/dwmapi/ne-dwmapi-dwmwindowattribute
+#ifndef DWMWA_USE_IMMERSIVE_DARK_MODE
+#define DWMWA_USE_IMMERSIVE_DARK_MODE 20
+#endif
+
+constexpr const wchar_t kWindowClassName[] = L"FLUTTER_RUNNER_WIN32_WINDOW";
+
+/// Registry key for app theme preference.
+///
+/// A value of 0 indicates apps should use dark mode. A non-zero or missing
+/// value indicates apps should use light mode.
+constexpr const wchar_t kGetPreferredBrightnessRegKey[] =
+ L"Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize";
+constexpr const wchar_t kGetPreferredBrightnessRegValue[] = L"AppsUseLightTheme";
+
+// The number of Win32Window objects that currently exist.
+static int g_active_window_count = 0;
+
+using EnableNonClientDpiScaling = BOOL __stdcall(HWND hwnd);
+
+// Scale helper to convert logical scaler values to physical using passed in
+// scale factor
+int Scale(int source, double scale_factor) {
+ return static_cast(source * scale_factor);
+}
+
+// Dynamically loads the |EnableNonClientDpiScaling| from the User32 module.
+// This API is only needed for PerMonitor V1 awareness mode.
+void EnableFullDpiSupportIfAvailable(HWND hwnd) {
+ HMODULE user32_module = LoadLibraryA("User32.dll");
+ if (!user32_module) {
+ return;
+ }
+ auto enable_non_client_dpi_scaling =
+ reinterpret_cast(
+ GetProcAddress(user32_module, "EnableNonClientDpiScaling"));
+ if (enable_non_client_dpi_scaling != nullptr) {
+ enable_non_client_dpi_scaling(hwnd);
+ }
+ FreeLibrary(user32_module);
+}
+
+} // namespace
+
+// Manages the Win32Window's window class registration.
+class WindowClassRegistrar {
+ public:
+ ~WindowClassRegistrar() = default;
+
+ // Returns the singleton registrar instance.
+ static WindowClassRegistrar* GetInstance() {
+ if (!instance_) {
+ instance_ = new WindowClassRegistrar();
+ }
+ return instance_;
+ }
+
+ // Returns the name of the window class, registering the class if it hasn't
+ // previously been registered.
+ const wchar_t* GetWindowClass();
+
+ // Unregisters the window class. Should only be called if there are no
+ // instances of the window.
+ void UnregisterWindowClass();
+
+ private:
+ WindowClassRegistrar() = default;
+
+ static WindowClassRegistrar* instance_;
+
+ bool class_registered_ = false;
+};
+
+WindowClassRegistrar* WindowClassRegistrar::instance_ = nullptr;
+
+const wchar_t* WindowClassRegistrar::GetWindowClass() {
+ if (!class_registered_) {
+ WNDCLASS window_class{};
+ window_class.hCursor = LoadCursor(nullptr, IDC_ARROW);
+ window_class.lpszClassName = kWindowClassName;
+ window_class.style = CS_HREDRAW | CS_VREDRAW;
+ window_class.cbClsExtra = 0;
+ window_class.cbWndExtra = 0;
+ window_class.hInstance = GetModuleHandle(nullptr);
+ window_class.hIcon =
+ LoadIcon(window_class.hInstance, MAKEINTRESOURCE(IDI_APP_ICON));
+ window_class.hbrBackground = 0;
+ window_class.lpszMenuName = nullptr;
+ window_class.lpfnWndProc = Win32Window::WndProc;
+ RegisterClass(&window_class);
+ class_registered_ = true;
+ }
+ return kWindowClassName;
+}
+
+void WindowClassRegistrar::UnregisterWindowClass() {
+ UnregisterClass(kWindowClassName, nullptr);
+ class_registered_ = false;
+}
+
+Win32Window::Win32Window() {
+ ++g_active_window_count;
+}
+
+Win32Window::~Win32Window() {
+ --g_active_window_count;
+ Destroy();
+}
+
+bool Win32Window::Create(const std::wstring& title,
+ const Point& origin,
+ const Size& size) {
+ Destroy();
+
+ const wchar_t* window_class =
+ WindowClassRegistrar::GetInstance()->GetWindowClass();
+
+ const POINT target_point = {static_cast(origin.x),
+ static_cast(origin.y)};
+ HMONITOR monitor = MonitorFromPoint(target_point, MONITOR_DEFAULTTONEAREST);
+ UINT dpi = FlutterDesktopGetDpiForMonitor(monitor);
+ double scale_factor = dpi / 96.0;
+
+ HWND window = CreateWindow(
+ window_class, title.c_str(), WS_OVERLAPPEDWINDOW,
+ Scale(origin.x, scale_factor), Scale(origin.y, scale_factor),
+ Scale(size.width, scale_factor), Scale(size.height, scale_factor),
+ nullptr, nullptr, GetModuleHandle(nullptr), this);
+
+ if (!window) {
+ return false;
+ }
+
+ UpdateTheme(window);
+
+ return OnCreate();
+}
+
+bool Win32Window::Show() {
+ return ShowWindow(window_handle_, SW_SHOWNORMAL);
+}
+
+// static
+LRESULT CALLBACK Win32Window::WndProc(HWND const window,
+ UINT const message,
+ WPARAM const wparam,
+ LPARAM const lparam) noexcept {
+ if (message == WM_NCCREATE) {
+ auto window_struct = reinterpret_cast(lparam);
+ SetWindowLongPtr(window, GWLP_USERDATA,
+ reinterpret_cast(window_struct->lpCreateParams));
+
+ auto that = static_cast(window_struct->lpCreateParams);
+ EnableFullDpiSupportIfAvailable(window);
+ that->window_handle_ = window;
+ } else if (Win32Window* that = GetThisFromHandle(window)) {
+ return that->MessageHandler(window, message, wparam, lparam);
+ }
+
+ return DefWindowProc(window, message, wparam, lparam);
+}
+
+LRESULT
+Win32Window::MessageHandler(HWND hwnd,
+ UINT const message,
+ WPARAM const wparam,
+ LPARAM const lparam) noexcept {
+ switch (message) {
+ case WM_DESTROY:
+ window_handle_ = nullptr;
+ Destroy();
+ if (quit_on_close_) {
+ PostQuitMessage(0);
+ }
+ return 0;
+
+ case WM_DPICHANGED: {
+ auto newRectSize = reinterpret_cast(lparam);
+ LONG newWidth = newRectSize->right - newRectSize->left;
+ LONG newHeight = newRectSize->bottom - newRectSize->top;
+
+ SetWindowPos(hwnd, nullptr, newRectSize->left, newRectSize->top, newWidth,
+ newHeight, SWP_NOZORDER | SWP_NOACTIVATE);
+
+ return 0;
+ }
+ case WM_SIZE: {
+ RECT rect = GetClientArea();
+ if (child_content_ != nullptr) {
+ // Size and position the child window.
+ MoveWindow(child_content_, rect.left, rect.top, rect.right - rect.left,
+ rect.bottom - rect.top, TRUE);
+ }
+ return 0;
+ }
+
+ case WM_ACTIVATE:
+ if (child_content_ != nullptr) {
+ SetFocus(child_content_);
+ }
+ return 0;
+
+ case WM_DWMCOLORIZATIONCOLORCHANGED:
+ UpdateTheme(hwnd);
+ return 0;
+ }
+
+ return DefWindowProc(window_handle_, message, wparam, lparam);
+}
+
+void Win32Window::Destroy() {
+ OnDestroy();
+
+ if (window_handle_) {
+ DestroyWindow(window_handle_);
+ window_handle_ = nullptr;
+ }
+ if (g_active_window_count == 0) {
+ WindowClassRegistrar::GetInstance()->UnregisterWindowClass();
+ }
+}
+
+Win32Window* Win32Window::GetThisFromHandle(HWND const window) noexcept {
+ return reinterpret_cast(
+ GetWindowLongPtr(window, GWLP_USERDATA));
+}
+
+void Win32Window::SetChildContent(HWND content) {
+ child_content_ = content;
+ SetParent(content, window_handle_);
+ RECT frame = GetClientArea();
+
+ MoveWindow(content, frame.left, frame.top, frame.right - frame.left,
+ frame.bottom - frame.top, true);
+
+ SetFocus(child_content_);
+}
+
+RECT Win32Window::GetClientArea() {
+ RECT frame;
+ GetClientRect(window_handle_, &frame);
+ return frame;
+}
+
+HWND Win32Window::GetHandle() {
+ return window_handle_;
+}
+
+void Win32Window::SetQuitOnClose(bool quit_on_close) {
+ quit_on_close_ = quit_on_close;
+}
+
+bool Win32Window::OnCreate() {
+ // No-op; provided for subclasses.
+ return true;
+}
+
+void Win32Window::OnDestroy() {
+ // No-op; provided for subclasses.
+}
+
+void Win32Window::UpdateTheme(HWND const window) {
+ DWORD light_mode;
+ DWORD light_mode_size = sizeof(light_mode);
+ LSTATUS result = RegGetValue(HKEY_CURRENT_USER, kGetPreferredBrightnessRegKey,
+ kGetPreferredBrightnessRegValue,
+ RRF_RT_REG_DWORD, nullptr, &light_mode,
+ &light_mode_size);
+
+ if (result == ERROR_SUCCESS) {
+ BOOL enable_dark_mode = light_mode == 0;
+ DwmSetWindowAttribute(window, DWMWA_USE_IMMERSIVE_DARK_MODE,
+ &enable_dark_mode, sizeof(enable_dark_mode));
+ }
+}
diff --git a/windows/runner/win32_window.h b/windows/runner/win32_window.h
new file mode 100644
index 0000000..49b847f
--- /dev/null
+++ b/windows/runner/win32_window.h
@@ -0,0 +1,102 @@
+#ifndef RUNNER_WIN32_WINDOW_H_
+#define RUNNER_WIN32_WINDOW_H_
+
+#include
+
+#include
+#include
+#include
+
+// A class abstraction for a high DPI-aware Win32 Window. Intended to be
+// inherited from by classes that wish to specialize with custom
+// rendering and input handling
+class Win32Window {
+ public:
+ struct Point {
+ unsigned int x;
+ unsigned int y;
+ Point(unsigned int x, unsigned int y) : x(x), y(y) {}
+ };
+
+ struct Size {
+ unsigned int width;
+ unsigned int height;
+ Size(unsigned int width, unsigned int height)
+ : width(width), height(height) {}
+ };
+
+ Win32Window();
+ virtual ~Win32Window();
+
+ // Creates a win32 window with |title| that is positioned and sized using
+ // |origin| and |size|. New windows are created on the default monitor. Window
+ // sizes are specified to the OS in physical pixels, hence to ensure a
+ // consistent size this function will scale the inputted width and height as
+ // as appropriate for the default monitor. The window is invisible until
+ // |Show| is called. Returns true if the window was created successfully.
+ bool Create(const std::wstring& title, const Point& origin, const Size& size);
+
+ // Show the current window. Returns true if the window was successfully shown.
+ bool Show();
+
+ // Release OS resources associated with window.
+ void Destroy();
+
+ // Inserts |content| into the window tree.
+ void SetChildContent(HWND content);
+
+ // Returns the backing Window handle to enable clients to set icon and other
+ // window properties. Returns nullptr if the window has been destroyed.
+ HWND GetHandle();
+
+ // If true, closing this window will quit the application.
+ void SetQuitOnClose(bool quit_on_close);
+
+ // Return a RECT representing the bounds of the current client area.
+ RECT GetClientArea();
+
+ protected:
+ // Processes and route salient window messages for mouse handling,
+ // size change and DPI. Delegates handling of these to member overloads that
+ // inheriting classes can handle.
+ virtual LRESULT MessageHandler(HWND window,
+ UINT const message,
+ WPARAM const wparam,
+ LPARAM const lparam) noexcept;
+
+ // Called when CreateAndShow is called, allowing subclass window-related
+ // setup. Subclasses should return false if setup fails.
+ virtual bool OnCreate();
+
+ // Called when Destroy is called.
+ virtual void OnDestroy();
+
+ private:
+ friend class WindowClassRegistrar;
+
+ // OS callback called by message pump. Handles the WM_NCCREATE message which
+ // is passed when the non-client area is being created and enables automatic
+ // non-client DPI scaling so that the non-client area automatically
+ // responds to changes in DPI. All other messages are handled by
+ // MessageHandler.
+ static LRESULT CALLBACK WndProc(HWND const window,
+ UINT const message,
+ WPARAM const wparam,
+ LPARAM const lparam) noexcept;
+
+ // Retrieves a class instance pointer for |window|
+ static Win32Window* GetThisFromHandle(HWND const window) noexcept;
+
+ // Update the window frame's theme to match the system theme.
+ static void UpdateTheme(HWND const window);
+
+ bool quit_on_close_ = false;
+
+ // window handle for top level window.
+ HWND window_handle_ = nullptr;
+
+ // window handle for hosted content.
+ HWND child_content_ = nullptr;
+};
+
+#endif // RUNNER_WIN32_WINDOW_H_